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

Version Description

[6 April 2021] = * [New] Plugin now supports Amazon, Stack Overflow and Discord for social login * [New] Added an option to disable Social Login for administrators of the website * [Bugfix] Third party libraries being used for social login were conflicting with the same libraries being used in other plugins * [Improvement] Updated the Facebook SDK being used throughout the plugin to the latest version 10.0 * [Improvement] "More", "Copy Link" and "Search" strings were not being translated More details on What's new

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.16
Comparing to
See all releases

Code changes from version 7.13.15 to 7.13.16

admin/help.php CHANGED
@@ -14,7 +14,7 @@
14
 
15
  <div style="margin-bottom: 21px">
16
  <div class="inside" style="padding-top:10px">
17
- <a href="https://www.heateor.com/donate/?action=Super+Socializer" style="text-decoration:none" target="_blank"><input type="button" class="ss_demo" style="background-color:#D51F1F;background: linear-gradient(#2e9fff, #2481d0);" value="<?php _e( 'Donate Now', 'super-socializer' ) ?>" /></a>
18
  </div>
19
  </div>
20
 
@@ -62,7 +62,7 @@
62
 
63
  <div style="margin-bottom: 21px">
64
  <div class="inside" style="padding-top:10px">
65
- <a target="_blank" style="text-decoration:none" href="https://wordpress.org/support/plugin/super-socializer"><input type="button" class="ss_demo" value="<?php _e( 'Support Forum', 'super-socializer' ) ?>" /></a>
66
  </div>
67
  </div>
68
 
14
 
15
  <div style="margin-bottom: 21px">
16
  <div class="inside" style="padding-top:10px">
17
+ <a href="https://www.heateor.com/donate/?action=Super+Socializer" style="text-decoration:none" target="_blank"><input type="button" class="ss_demo" style="background-color:#D51F1F;background: linear-gradient(#2e9fff, #2481d0);" value="<?php _e('Donate Now', 'super-socializer') ?>" /></a>
18
  </div>
19
  </div>
20
 
62
 
63
  <div style="margin-bottom: 21px">
64
  <div class="inside" style="padding-top:10px">
65
+ <a target="_blank" style="text-decoration:none" href="https://wordpress.org/support/plugin/super-socializer"><input type="button" class="ss_demo" value="<?php _e('Support Forum', 'super-socializer') ?>" /></a>
66
  </div>
67
  </div>
68
 
admin/social_login.php CHANGED
@@ -18,7 +18,7 @@
18
  <label for="the_champ_login_enable"><?php _e("Enable Social Login", 'super-socializer'); ?></label><img id="the_champ_sl_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
19
  </th>
20
  <td>
21
- <input id="the_champ_login_enable" name="the_champ_login[enable]" type="checkbox" <?php echo isset($theChampLoginOptions['enable']) ? 'checked = "checked"' : '';?> value="1" />
22
  </td>
23
  </tr>
24
 
@@ -62,7 +62,7 @@
62
  <label for="the_champ_sl_disable_reg"><?php _e("Disable user registration via Social Login", 'super-socializer'); ?></label><img id="the_champ_sl_disable_reg_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
63
  </th>
64
  <td>
65
- <input id="the_champ_sl_disable_reg" name="the_champ_login[disable_reg]" onclick="if(this.checked){jQuery('#the_champ_disable_reg_options').css('display', 'table-row-group')}else{ jQuery('#the_champ_disable_reg_options').css('display', 'none') }" type="checkbox" <?php echo isset($theChampLoginOptions['disable_reg']) ? 'checked = "checked"' : '';?> value="1" />
66
  </td>
67
  </tr>
68
 
@@ -93,88 +93,117 @@
93
  </tr>
94
  </tbody>
95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
  <tr>
97
  <th>
98
  <label><?php _e("Select Social Networks", 'super-socializer'); ?></label><img id="the_champ_sl_providers_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
99
  </th>
100
  <td>
101
  <div class="theChampHorizontalSharingProviderContainer">
102
- <input id="the_champ_login_facebook" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('facebook', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="facebook" />
103
  <label for="the_champ_login_facebook"><?php _e("Facebook", 'super-socializer'); ?></label>
104
  </div>
105
  <div class="theChampHorizontalSharingProviderContainer">
106
- <input id="the_champ_login_twitter" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('twitter', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="twitter" />
107
  <label for="the_champ_login_twitter"><?php _e("Twitter", 'super-socializer'); ?></label>
108
  </div>
109
  <div class="theChampHorizontalSharingProviderContainer">
110
- <input id="the_champ_login_linkedin" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('linkedin', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="linkedin" />
111
  <label for="the_champ_login_linkedin"><?php _e("LinkedIn", 'super-socializer'); ?></label>
112
  </div>
113
  <div class="theChampHorizontalSharingProviderContainer">
114
- <input id="the_champ_login_google" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('google', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="google" />
115
  <label for="the_champ_login_google"><?php _e("Google", 'super-socializer'); ?></label>
116
  </div>
117
  <div class="theChampHorizontalSharingProviderContainer">
118
- <input id="the_champ_login_vkontakte" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('vkontakte', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="vkontakte" />
119
  <label for="the_champ_login_vkontakte"><?php _e("Vkontakte", 'super-socializer'); ?></label>
120
  </div>
121
  <div class="theChampHorizontalSharingProviderContainer">
122
- <input id="the_champ_login_instagram" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('instagram', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="instagram" />
123
  <label for="the_champ_login_instagram"><?php _e("Instagram", 'super-socializer'); ?></label>
124
  </div>
125
  <div class="theChampHorizontalSharingProviderContainer">
126
- <input id="the_champ_login_steam" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('steam', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="steam" />
127
  <label for="the_champ_login_steam"><?php _e("Steam", 'super-socializer'); ?></label>
128
  </div>
129
  <div class="theChampHorizontalSharingProviderContainer">
130
- <input id="the_champ_login_line" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('line', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="line" />
131
  <label for="the_champ_login_line"><?php _e("Line", 'super-socializer'); ?></label>
132
  </div>
133
  <div class="theChampHorizontalSharingProviderContainer">
134
- <input id="the_champ_login_wordpress" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('wordpress', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="wordpress" />
135
  <label for="the_champ_login_wordpress"><?php _e("Wordpress", 'super-socializer'); ?></label>
136
  </div>
137
  <div class="theChampHorizontalSharingProviderContainer">
138
- <input id="the_champ_login_live" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('microsoft', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="microsoft" />
139
  <label for="the_champ_login_live"><?php _e("Windows Live", 'super-socializer'); ?></label>
140
  </div>
141
  <div class="theChampHorizontalSharingProviderContainer">
142
- <input id="the_champ_login_yahoo" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('yahoo', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="yahoo" />
143
  <label for="the_champ_login_yahoo"><?php _e("Yahoo", 'super-socializer'); ?></label>
144
  </div>
145
  <div class="theChampHorizontalSharingProviderContainer">
146
- <input id="the_champ_login_spotify" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('spotify', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="spotify" />
 
 
 
 
 
 
 
 
 
 
 
 
147
  <label for="the_champ_login_spotify"><?php _e("Spotify", 'super-socializer'); ?></label>
148
  </div><div class="theChampHorizontalSharingProviderContainer">
149
- <input id="the_champ_login_dribbble" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('dribbble', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="dribbble" />
150
  <label for="the_champ_login_dribbble"><?php _e("Dribbble", 'super-socializer'); ?></label>
151
  </div>
152
  <div class="theChampHorizontalSharingProviderContainer">
153
- <input id="the_champ_login_twitch" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('twitch', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="twitch" />
154
  <label for="the_champ_login_twitch"><?php _e("Twitch", 'super-socializer'); ?></label>
155
  </div>
156
  <div class="theChampHorizontalSharingProviderContainer">
157
- <input id="the_champ_login_foursquare" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('foursquare', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="foursquare" />
158
  <label for="the_champ_login_foursquare"><?php _e("Foursquare", 'super-socializer'); ?></label>
159
  </div>
160
  <div class="theChampHorizontalSharingProviderContainer">
161
- <input id="the_champ_login_dropbox" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('dropbox', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="dropbox" />
162
  <label for="the_champ_login_dropbox"><?php _e("Dropbox", 'super-socializer'); ?></label>
163
  </div>
164
  <div class="theChampHorizontalSharingProviderContainer">
165
- <input id="the_champ_login_disqus" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('disqus', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="disqus" />
166
  <label for="the_champ_login_disqus"><?php _e("Disqus", 'super-socializer'); ?></label>
167
  </div>
168
  <div class="theChampHorizontalSharingProviderContainer">
169
- <input id="the_champ_login_reddit" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('reddit', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="reddit" />
170
  <label for="the_champ_login_reddit"><?php _e("Reddit", 'super-socializer'); ?></label>
171
  </div>
172
  <div class="theChampHorizontalSharingProviderContainer">
173
- <input id="the_champ_login_github" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('github', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="github" />
174
  <label for="the_champ_login_github"><?php _e("Github", 'super-socializer'); ?></label>
175
  </div>
176
  <div class="theChampHorizontalSharingProviderContainer">
177
- <input id="the_champ_login_kakao" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('kakao', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="kakao" />
178
  <label for="the_champ_login_kakao"><?php _e("Kakao", 'super-socializer'); ?></label>
179
  </div>
180
  </td>
@@ -599,7 +628,7 @@
599
  <div>
600
  <?php echo sprintf(__('Required for Yahoo Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Yahoo Client ID', 'super-socializer'), 'http://support.heateor.com/get-yahoo-client-id-client-secret') ?>
601
  <br/>
602
- <span style="color:#14ACDF"><?php _e('Paste following url in <strong>Redirect URI(s)</strong> option mentioned at the link', 'super-socializer'); ?></span>
603
  <br/>
604
  <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/Yahoo'; ?></strong>
605
  </div>
@@ -619,13 +648,147 @@
619
  <div>
620
  <?php echo sprintf(__('Required for Yahoo Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Yahoo Client Secret key', 'super-socializer'), 'http://support.heateor.com/get-yahoo-client-id-client-secret') ?>
621
  <br/>
622
- <span style="color:#14ACDF"><?php _e('Paste following url in <strong>Redirect URI(s)</strong> option mentioned at the link', 'super-socializer'); ?></span>
623
  <br/>
624
  <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/Yahoo'; ?></strong>
625
  </div>
626
  </td>
627
  </tr>
628
  <!-- end of yahoo -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
629
  <!-- Spotify -->
630
  <tr>
631
  <th>
@@ -1039,7 +1202,7 @@
1039
  <label for="the_champ_sl_same_tab"><?php _e("Trigger social login in the same browser tab", 'super-socializer'); ?></label><img id="the_champ_sl_same_tab_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1040
  </th>
1041
  <td>
1042
- <input id="the_champ_sl_same_tab" name="the_champ_login[same_tab_login]" type="checkbox" <?php echo isset($theChampLoginOptions['same_tab_login']) ? 'checked = "checked"' : '';?> value="1" />
1043
  </td>
1044
  </tr>
1045
 
@@ -1056,7 +1219,7 @@
1056
  <label for="the_champ_sl_align"><?php _e("Center align icons", 'super-socializer'); ?></label><img id="the_champ_sl_align_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1057
  </th>
1058
  <td>
1059
- <input id="the_champ_sl_align" name="the_champ_login[center_align]" type="checkbox" <?php echo isset($theChampLoginOptions['center_align']) ? 'checked = "checked"' : '';?> value="1" />
1060
  </td>
1061
  </tr>
1062
 
@@ -1073,7 +1236,7 @@
1073
  <label for="the_champ_fblogin_enableAtLogin"><?php _e("Enable at login page", 'super-socializer'); ?></label><img id="the_champ_sl_loginpage_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1074
  </th>
1075
  <td>
1076
- <input id="the_champ_fblogin_enableAtLogin" name="the_champ_login[enableAtLogin]" type="checkbox" <?php echo isset($theChampLoginOptions['enableAtLogin']) ? 'checked = "checked"' : '';?> value="1" />
1077
  </td>
1078
  </tr>
1079
 
@@ -1090,7 +1253,7 @@
1090
  <label for="the_champ_fblogin_enableAtRegister"><?php _e("Enable at register page", 'super-socializer'); ?></label><img id="the_champ_sl_regpage_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1091
  </th>
1092
  <td>
1093
- <input id="the_champ_fblogin_enableAtRegister" name="the_champ_login[enableAtRegister]" type="checkbox" <?php echo isset($theChampLoginOptions['enableAtRegister']) ? 'checked = "checked"' : '';?> value="1" />
1094
  </td>
1095
  </tr>
1096
 
@@ -1107,7 +1270,7 @@
1107
  <label for="the_champ_fblogin_enableAtComment"><?php _e("Enable at comment form", 'super-socializer'); ?></label><img id="the_champ_sl_cmntform_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1108
  </th>
1109
  <td>
1110
- <input id="the_champ_fblogin_enableAtComment" name="the_champ_login[enableAtComment]" type="checkbox" <?php echo isset($theChampLoginOptions['enableAtComment']) ? 'checked = "checked"' : '';?> value="1" />
1111
  </td>
1112
  </tr>
1113
 
@@ -1131,7 +1294,7 @@
1131
  <label for="the_champ_sl_wc_before_form"><?php _e("Enable before WooCommerce Customer Login Form", 'super-socializer'); ?></label><img id="the_champ_sl_wc_before_form_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1132
  </th>
1133
  <td>
1134
- <input id="the_champ_sl_wc_before_form" name="the_champ_login[enable_before_wc]" type="checkbox" <?php echo isset($theChampLoginOptions['enable_before_wc']) ? 'checked = "checked"' : '';?> value="1" />
1135
  </td>
1136
  </tr>
1137
 
@@ -1148,7 +1311,7 @@
1148
  <label for="the_champ_sl_wc_after_form"><?php _e("Enable at WooCommerce Customer Login Form", 'super-socializer'); ?></label><img id="the_champ_sl_wc_after_form_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1149
  </th>
1150
  <td>
1151
- <input id="the_champ_sl_wc_after_form" name="the_champ_login[enable_after_wc]" type="checkbox" <?php echo isset($theChampLoginOptions['enable_after_wc']) ? 'checked = "checked"' : '';?> value="1" />
1152
  </td>
1153
  </tr>
1154
 
@@ -1165,7 +1328,7 @@
1165
  <label for="the_champ_sl_wc_register_form"><?php _e("Enable at WooCommerce Customer Register Form", 'super-socializer'); ?></label><img id="the_champ_sl_wc_register_form_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1166
  </th>
1167
  <td>
1168
- <input id="the_champ_sl_wc_register_form" name="the_champ_login[enable_register_wc]" type="checkbox" <?php echo isset($theChampLoginOptions['enable_register_wc']) ? 'checked = "checked"' : '';?> value="1" />
1169
  </td>
1170
  </tr>
1171
 
@@ -1182,7 +1345,7 @@
1182
  <label for="the_champ_sl_wc_checkout"><?php _e("Enable at WooCommerce checkout page", 'super-socializer'); ?></label><img id="the_champ_sl_wc_checkout_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1183
  </th>
1184
  <td>
1185
- <input id="the_champ_sl_wc_checkout" name="the_champ_login[enable_wc_checkout]" type="checkbox" <?php echo isset($theChampLoginOptions['enable_wc_checkout']) ? 'checked = "checked"' : '';?> value="1" />
1186
  </td>
1187
  </tr>
1188
 
@@ -1202,7 +1365,7 @@
1202
  <label for="the_champ_approve_comment"><?php _e("Auto-approve comments made by Social Login users", 'super-socializer'); ?></label><img id="the_champ_approve_comment_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1203
  </th>
1204
  <td>
1205
- <input id="the_champ_approve_comment" name="the_champ_login[autoApproveComment]" type="checkbox" <?php echo isset($theChampLoginOptions['autoApproveComment']) ? 'checked = "checked"' : '';?> value="1" />
1206
  </td>
1207
  </tr>
1208
 
@@ -1222,7 +1385,7 @@
1222
  <label for="the_champ_login_avatar"><?php _e("Enable social avatar", 'super-socializer'); ?></label><img id="the_champ_sl_avatar_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1223
  </th>
1224
  <td>
1225
- <input id="the_champ_login_avatar" onclick="if(this.checked){jQuery('#the_champ_avatar_options').css('display', 'table-row-group')}else{ jQuery('#the_champ_avatar_options').css('display', 'none') }" name="the_champ_login[avatar]" type="checkbox" <?php echo isset($theChampLoginOptions['avatar']) ? 'checked = "checked"' : '';?> value="1" />
1226
  </td>
1227
  </tr>
1228
 
@@ -1241,8 +1404,8 @@
1241
  <label><?php _e("Avatar quality", 'super-socializer'); ?></label><img id="the_champ_sl_avatar_quality_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1242
  </th>
1243
  <td>
1244
- <input id="the_champ_login_average_avatar" name="the_champ_login[avatar_quality]" type="radio" <?php echo !isset($theChampLoginOptions['avatar_quality']) || $theChampLoginOptions['avatar_quality'] == 'average' ? 'checked = "checked"' : '';?> value="average" /> <label for="the_champ_login_average_avatar"><?php _e("Average", 'super-socializer'); ?></label><br/>
1245
- <input id="the_champ_login_better_avatar" name="the_champ_login[avatar_quality]" type="radio" <?php echo isset($theChampLoginOptions['avatar_quality']) && $theChampLoginOptions['avatar_quality'] == 'better' ? 'checked = "checked"' : '';?> value="better" /> <label for="the_champ_login_better_avatar"><?php _e("Best", 'super-socializer'); ?></label>
1246
  </td>
1247
  </tr>
1248
 
@@ -1260,7 +1423,7 @@
1260
  <label for="the_champ_sl_avatar_options"><?php _e("Show option for users to update social avatar at BuddyPress profile page", 'super-socializer'); ?></label><img id="the_champ_sl_avatar_options_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1261
  </th>
1262
  <td>
1263
- <input id="the_champ_sl_avatar_options" name="the_champ_login[avatar_options]" type="checkbox" <?php echo isset($theChampLoginOptions['avatar_options']) ? 'checked = "checked"' : '';?> value="1" />
1264
  </td>
1265
  </tr>
1266
 
@@ -1280,7 +1443,7 @@
1280
  <label for="the_champ_login_email_required"><?php _e("Email required", 'super-socializer'); ?></label><img id="the_champ_sl_emailreq_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1281
  </th>
1282
  <td>
1283
- <input onclick="theChampEmailPopupOptions(this)" id="the_champ_login_email_required" name="the_champ_login[email_required]" type="checkbox" <?php echo isset($theChampLoginOptions['email_required']) ? 'checked = "checked"' : '';?> value="1" />
1284
  </td>
1285
  </tr>
1286
 
@@ -1298,7 +1461,7 @@
1298
  <label for="the_champ_password_email"><?php _e("Send post-registration email to user to set account password", 'super-socializer'); ?></label><img id="the_champ_sl_postreg_email_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1299
  </th>
1300
  <td>
1301
- <input id="the_champ_password_email" name="the_champ_login[password_email]" type="checkbox" <?php echo isset($theChampLoginOptions['password_email']) ? 'checked = "checked"' : '';?> value="1" />
1302
  </td>
1303
  </tr>
1304
 
@@ -1315,7 +1478,7 @@
1315
  <label for="the_champ_sl_postreg_admin_email"><?php _e("Send new user registration notification email to admin", 'super-socializer'); ?></label><img id="the_champ_sl_postreg_admin_email_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1316
  </th>
1317
  <td>
1318
- <input id="the_champ_sl_postreg_admin_email" name="the_champ_login[new_user_admin_email]" type="checkbox" <?php echo isset($theChampLoginOptions['new_user_admin_email']) ? 'checked = "checked"' : '';?> value="1" />
1319
  </td>
1320
  </tr>
1321
 
@@ -1332,17 +1495,17 @@
1332
  <label><?php _e("Login redirection", 'super-socializer'); ?></label><img id="the_champ_sl_loginredirect_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1333
  </th>
1334
  <td id="the_champ_login_redirection_column">
1335
- <input id="the_champ_login_redirection_same" name="the_champ_login[login_redirection]" type="radio" <?php echo !isset($theChampLoginOptions['login_redirection']) || $theChampLoginOptions['login_redirection'] == 'same' ? 'checked = "checked"' : '';?> value="same" />
1336
  <label for="the_champ_login_redirection_same"><?php _e('Same page where user logged in', 'super-socializer') ?></label><br/>
1337
- <input id="the_champ_login_redirection_home" name="the_champ_login[login_redirection]" type="radio" <?php echo isset($theChampLoginOptions['login_redirection']) && $theChampLoginOptions['login_redirection'] == 'homepage' ? 'checked = "checked"' : '';?> value="homepage" />
1338
  <label for="the_champ_login_redirection_home"><?php _e('Homepage', 'super-socializer') ?></label><br/>
1339
- <input id="the_champ_login_redirection_account" name="the_champ_login[login_redirection]" type="radio" <?php echo isset($theChampLoginOptions['login_redirection']) && $theChampLoginOptions['login_redirection'] == 'account' ? 'checked = "checked"' : '';?> value="account" />
1340
  <label for="the_champ_login_redirection_account"><?php _e('Account dashboard', 'super-socializer') ?></label><br/>
1341
  <?php if($theChampIsBpActive){ ?>
1342
- <input id="the_champ_login_redirection_bp" name="the_champ_login[login_redirection]" type="radio" <?php echo isset($theChampLoginOptions['login_redirection']) && $theChampLoginOptions['login_redirection'] == 'bp_profile' ? 'checked = "checked"' : '';?> value="bp_profile" />
1343
  <label for="the_champ_login_redirection_bp"><?php _e('BuddyPress profile page', 'super-socializer') ?></label><br/>
1344
  <?php } ?>
1345
- <input id="the_champ_login_redirection_custom" name="the_champ_login[login_redirection]" type="radio" <?php echo isset($theChampLoginOptions['login_redirection']) && $theChampLoginOptions['login_redirection'] == 'custom' ? 'checked = "checked"' : '';?> value="custom" />
1346
  <label for="the_champ_login_redirection_custom"><?php _e('Custom Url', 'super-socializer') ?></label><br/>
1347
  <input id="the_champ_login_redirection_url" name="the_champ_login[login_redirection_url]" type="text" value="<?php echo isset($theChampLoginOptions['login_redirection_url']) ? $theChampLoginOptions['login_redirection_url'] : '' ?>" />
1348
  </td>
@@ -1361,17 +1524,17 @@
1361
  <label><?php _e("Registration redirection", 'super-socializer'); ?></label><img id="the_champ_sl_register_redirect_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1362
  </th>
1363
  <td id="the_champ_register_redirection_column">
1364
- <input id="the_champ_register_redirection_same" name="the_champ_login[register_redirection]" type="radio" <?php echo !isset($theChampLoginOptions['register_redirection']) || $theChampLoginOptions['register_redirection'] == 'same' ? 'checked = "checked"' : '';?> value="same" />
1365
  <label for="the_champ_register_redirection_same"><?php _e('Same page from where user registered', 'super-socializer') ?></label><br/>
1366
- <input id="the_champ_register_redirection_home" name="the_champ_login[register_redirection]" type="radio" <?php echo isset($theChampLoginOptions['register_redirection']) && $theChampLoginOptions['register_redirection'] == 'homepage' ? 'checked = "checked"' : '';?> value="homepage" />
1367
  <label for="the_champ_register_redirection_home"><?php _e('Homepage', 'super-socializer') ?></label><br/>
1368
- <input id="the_champ_register_redirection_account" name="the_champ_login[register_redirection]" type="radio" <?php echo isset($theChampLoginOptions['register_redirection']) && $theChampLoginOptions['register_redirection'] == 'account' ? 'checked = "checked"' : '';?> value="account" />
1369
  <label for="the_champ_register_redirection_account"><?php _e('Account dashboard', 'super-socializer') ?></label><br/>
1370
  <?php if($theChampIsBpActive){ ?>
1371
- <input id="the_champ_register_redirection_bp" name="the_champ_login[register_redirection]" type="radio" <?php echo isset($theChampLoginOptions['register_redirection']) && $theChampLoginOptions['register_redirection'] == 'bp_profile' ? 'checked = "checked"' : '';?> value="bp_profile" />
1372
  <label for="the_champ_register_redirection_bp"><?php _e('BuddyPress profile page', 'super-socializer') ?></label><br/>
1373
  <?php } ?>
1374
- <input id="the_champ_register_redirection_custom" name="the_champ_login[register_redirection]" type="radio" <?php echo isset($theChampLoginOptions['register_redirection']) && $theChampLoginOptions['register_redirection'] == 'custom' ? 'checked = "checked"' : '';?> value="custom" />
1375
  <label for="the_champ_register_redirection_custom"><?php _e('Custom Url', 'super-socializer') ?></label><br/>
1376
  <input id="the_champ_register_redirection_url" name="the_champ_login[register_redirection_url]" type="text" value="<?php echo isset($theChampLoginOptions['register_redirection_url']) ? $theChampLoginOptions['register_redirection_url'] : '' ?>" />
1377
  </td>
@@ -1414,7 +1577,7 @@
1414
  <label for="the_champ_sl_linking"><?php _e("Link social account to already existing account, if email address matches", 'super-socializer'); ?></label><img id="the_champ_sl_linking_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1415
  </th>
1416
  <td>
1417
- <input id="the_champ_sl_linking" name="the_champ_login[link_account]" type="checkbox" <?php echo isset($theChampLoginOptions['link_account']) ? 'checked = "checked"' : '';?> value="1" />
1418
  </td>
1419
  </tr>
1420
 
@@ -1432,7 +1595,7 @@
1432
  <label for="the_champ_sl_bp_linking"><?php _e("Enable social account linking at BuddyPress profile page", 'super-socializer'); ?></label><img id="the_champ_sl_bp_linking_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1433
  </th>
1434
  <td>
1435
- <input id="the_champ_sl_bp_linking" name="the_champ_login[bp_linking]" type="checkbox" <?php echo isset($theChampLoginOptions['bp_linking']) ? 'checked = "checked"' : '';?> value="1" />
1436
  </td>
1437
  </tr>
1438
 
@@ -1511,7 +1674,7 @@
1511
  <label for="the_champ_password_email_verification"><?php _e("Enable email verification", 'super-socializer'); ?></label><img id="the_champ_sl_emailver_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1512
  </th>
1513
  <td>
1514
- <input id="the_champ_password_email_verification" name="the_champ_login[email_verification]" type="checkbox" <?php echo isset($theChampLoginOptions['email_verification']) ? 'checked = "checked"' : '';?> value="1" />
1515
  </td>
1516
  </tr>
1517
 
@@ -1541,7 +1704,7 @@
1541
  <label for="the_champ_gdpr_enable"><?php _e("Enable GDPR opt-in", 'super-socializer'); ?></label><img id="the_champ_gdpr_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1542
  </th>
1543
  <td>
1544
- <input id="the_champ_gdpr_enable" name="the_champ_login[gdpr_enable]" type="checkbox" <?php echo isset($theChampLoginOptions['gdpr_enable']) ? 'checked = "checked"' : '';?> value="1" />
1545
  </td>
1546
  </tr>
1547
 
@@ -1559,9 +1722,9 @@
1559
  <label for="the_champ_gdpr_placement_above"><?php _e( "Placement of GDPR opt-in", 'super-socializer'); ?></label><img id="the_champ_gdpr_placement_help" class="the_champ_help_bubble" src="<?php echo plugins_url( '../images/info.png', __FILE__) ?>" />
1560
  </th>
1561
  <td>
1562
- <input id="the_champ_gdpr_placement_above" name="the_champ_login[gdpr_placement]" type="radio" <?php echo ! isset( $theChampLoginOptions['gdpr_placement'] ) || $theChampLoginOptions['gdpr_placement'] == 'above' ? 'checked = "checked"' : '';?> value="above" />
1563
  <label for="the_champ_gdpr_placement_above"><?php _e( 'Above Social Login icons', 'super-socializer' ) ?></label><br/>
1564
- <input id="the_champ_gdpr_placement_below" name="the_champ_login[gdpr_placement]" type="radio" <?php echo $theChampLoginOptions['gdpr_placement'] == 'below' ? 'checked = "checked"' : '';?> value="below" />
1565
  <label for="the_champ_gdpr_placement_below"><?php _e( 'Below Social Login icons', 'super-socializer' ) ?></label>
1566
  </td>
1567
  </tr>
18
  <label for="the_champ_login_enable"><?php _e("Enable Social Login", 'super-socializer'); ?></label><img id="the_champ_sl_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
19
  </th>
20
  <td>
21
+ <input id="the_champ_login_enable" name="the_champ_login[enable]" type="checkbox" <?php echo isset($theChampLoginOptions['enable']) ? 'checked' : '';?> value="1" />
22
  </td>
23
  </tr>
24
 
62
  <label for="the_champ_sl_disable_reg"><?php _e("Disable user registration via Social Login", 'super-socializer'); ?></label><img id="the_champ_sl_disable_reg_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
63
  </th>
64
  <td>
65
+ <input id="the_champ_sl_disable_reg" name="the_champ_login[disable_reg]" onclick="if(this.checked){jQuery('#the_champ_disable_reg_options').css('display', 'table-row-group')}else{ jQuery('#the_champ_disable_reg_options').css('display', 'none') }" type="checkbox" <?php echo isset($theChampLoginOptions['disable_reg']) ? 'checked' : '';?> value="1" />
66
  </td>
67
  </tr>
68
 
93
  </tr>
94
  </tbody>
95
 
96
+ <tr>
97
+ <th>
98
+ <label for="the_champ_sl_disable_sl_admin"><?php _e("Disable Social Login for admin accounts", 'super-socializer'); ?></label><img id="the_champ_sl_disable_sl_admin_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
99
+ </th>
100
+ <td>
101
+ <input id="the_champ_sl_disable_sl_admin" name="the_champ_login[disable_sl_admin]" type="checkbox" <?php echo isset($theChampLoginOptions['disable_sl_admin']) ? 'checked' : '';?> value="1" />
102
+ </td>
103
+ </tr>
104
+
105
+ <tr class="the_champ_help_content" id="the_champ_sl_disable_sl_admin_help_cont">
106
+ <td colspan="2">
107
+ <div>
108
+ <?php _e('After enabling this option, administrator users will not be able to login through social login. Other users will be able to login via social login.', 'super-socializer') ?>
109
+ </div>
110
+ </td>
111
+ </tr>
112
+
113
  <tr>
114
  <th>
115
  <label><?php _e("Select Social Networks", 'super-socializer'); ?></label><img id="the_champ_sl_providers_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
116
  </th>
117
  <td>
118
  <div class="theChampHorizontalSharingProviderContainer">
119
+ <input id="the_champ_login_facebook" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('facebook', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="facebook" />
120
  <label for="the_champ_login_facebook"><?php _e("Facebook", 'super-socializer'); ?></label>
121
  </div>
122
  <div class="theChampHorizontalSharingProviderContainer">
123
+ <input id="the_champ_login_twitter" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('twitter', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="twitter" />
124
  <label for="the_champ_login_twitter"><?php _e("Twitter", 'super-socializer'); ?></label>
125
  </div>
126
  <div class="theChampHorizontalSharingProviderContainer">
127
+ <input id="the_champ_login_linkedin" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('linkedin', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="linkedin" />
128
  <label for="the_champ_login_linkedin"><?php _e("LinkedIn", 'super-socializer'); ?></label>
129
  </div>
130
  <div class="theChampHorizontalSharingProviderContainer">
131
+ <input id="the_champ_login_google" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('google', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="google" />
132
  <label for="the_champ_login_google"><?php _e("Google", 'super-socializer'); ?></label>
133
  </div>
134
  <div class="theChampHorizontalSharingProviderContainer">
135
+ <input id="the_champ_login_vkontakte" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('vkontakte', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="vkontakte" />
136
  <label for="the_champ_login_vkontakte"><?php _e("Vkontakte", 'super-socializer'); ?></label>
137
  </div>
138
  <div class="theChampHorizontalSharingProviderContainer">
139
+ <input id="the_champ_login_instagram" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('instagram', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="instagram" />
140
  <label for="the_champ_login_instagram"><?php _e("Instagram", 'super-socializer'); ?></label>
141
  </div>
142
  <div class="theChampHorizontalSharingProviderContainer">
143
+ <input id="the_champ_login_steam" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('steam', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="steam" />
144
  <label for="the_champ_login_steam"><?php _e("Steam", 'super-socializer'); ?></label>
145
  </div>
146
  <div class="theChampHorizontalSharingProviderContainer">
147
+ <input id="the_champ_login_line" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('line', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="line" />
148
  <label for="the_champ_login_line"><?php _e("Line", 'super-socializer'); ?></label>
149
  </div>
150
  <div class="theChampHorizontalSharingProviderContainer">
151
+ <input id="the_champ_login_wordpress" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('wordpress', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="wordpress" />
152
  <label for="the_champ_login_wordpress"><?php _e("Wordpress", 'super-socializer'); ?></label>
153
  </div>
154
  <div class="theChampHorizontalSharingProviderContainer">
155
+ <input id="the_champ_login_live" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('microsoft', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="microsoft" />
156
  <label for="the_champ_login_live"><?php _e("Windows Live", 'super-socializer'); ?></label>
157
  </div>
158
  <div class="theChampHorizontalSharingProviderContainer">
159
+ <input id="the_champ_login_yahoo" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('yahoo', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="yahoo" />
160
  <label for="the_champ_login_yahoo"><?php _e("Yahoo", 'super-socializer'); ?></label>
161
  </div>
162
  <div class="theChampHorizontalSharingProviderContainer">
163
+ <input id="the_champ_login_discord" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('discord', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="discord" />
164
+ <label for="the_champ_login_discord"><?php _e("Discord", 'super-socializer'); ?></label>
165
+ </div>
166
+ <div class="theChampHorizontalSharingProviderContainer">
167
+ <input id="the_champ_login_amazon" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('amazon', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="amazon" />
168
+ <label for="the_champ_login_amazon"><?php _e("Amazon", 'super-socializer'); ?></label>
169
+ </div>
170
+ <div class="theChampHorizontalSharingProviderContainer">
171
+ <input id="the_champ_login_stackoverflow" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('stackoverflow', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="stackoverflow" />
172
+ <label for="the_champ_login_stackoverflow"><?php _e("Stack Overflow", 'super-socializer'); ?></label>
173
+ </div>
174
+ <div class="theChampHorizontalSharingProviderContainer">
175
+ <input id="the_champ_login_spotify" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('spotify', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="spotify" />
176
  <label for="the_champ_login_spotify"><?php _e("Spotify", 'super-socializer'); ?></label>
177
  </div><div class="theChampHorizontalSharingProviderContainer">
178
+ <input id="the_champ_login_dribbble" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('dribbble', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="dribbble" />
179
  <label for="the_champ_login_dribbble"><?php _e("Dribbble", 'super-socializer'); ?></label>
180
  </div>
181
  <div class="theChampHorizontalSharingProviderContainer">
182
+ <input id="the_champ_login_twitch" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('twitch', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="twitch" />
183
  <label for="the_champ_login_twitch"><?php _e("Twitch", 'super-socializer'); ?></label>
184
  </div>
185
  <div class="theChampHorizontalSharingProviderContainer">
186
+ <input id="the_champ_login_foursquare" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('foursquare', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="foursquare" />
187
  <label for="the_champ_login_foursquare"><?php _e("Foursquare", 'super-socializer'); ?></label>
188
  </div>
189
  <div class="theChampHorizontalSharingProviderContainer">
190
+ <input id="the_champ_login_dropbox" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('dropbox', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="dropbox" />
191
  <label for="the_champ_login_dropbox"><?php _e("Dropbox", 'super-socializer'); ?></label>
192
  </div>
193
  <div class="theChampHorizontalSharingProviderContainer">
194
+ <input id="the_champ_login_disqus" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('disqus', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="disqus" />
195
  <label for="the_champ_login_disqus"><?php _e("Disqus", 'super-socializer'); ?></label>
196
  </div>
197
  <div class="theChampHorizontalSharingProviderContainer">
198
+ <input id="the_champ_login_reddit" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('reddit', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="reddit" />
199
  <label for="the_champ_login_reddit"><?php _e("Reddit", 'super-socializer'); ?></label>
200
  </div>
201
  <div class="theChampHorizontalSharingProviderContainer">
202
+ <input id="the_champ_login_github" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('github', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="github" />
203
  <label for="the_champ_login_github"><?php _e("Github", 'super-socializer'); ?></label>
204
  </div>
205
  <div class="theChampHorizontalSharingProviderContainer">
206
+ <input id="the_champ_login_kakao" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('kakao', $theChampLoginOptions['providers']) ? 'checked' : '';?> value="kakao" />
207
  <label for="the_champ_login_kakao"><?php _e("Kakao", 'super-socializer'); ?></label>
208
  </div>
209
  </td>
628
  <div>
629
  <?php echo sprintf(__('Required for Yahoo Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Yahoo Client ID', 'super-socializer'), 'http://support.heateor.com/get-yahoo-client-id-client-secret') ?>
630
  <br/>
631
+ <span style="color:#14ACDF"><?php _e('Paste following url in the <strong>Redirect URI(s)</strong> option mentioned at the link', 'super-socializer'); ?></span>
632
  <br/>
633
  <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/Yahoo'; ?></strong>
634
  </div>
648
  <div>
649
  <?php echo sprintf(__('Required for Yahoo Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Yahoo Client Secret key', 'super-socializer'), 'http://support.heateor.com/get-yahoo-client-id-client-secret') ?>
650
  <br/>
651
+ <span style="color:#14ACDF"><?php _e('Paste following url in the <strong>Redirect URI(s)</strong> option mentioned at the link', 'super-socializer'); ?></span>
652
  <br/>
653
  <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/Yahoo'; ?></strong>
654
  </div>
655
  </td>
656
  </tr>
657
  <!-- end of yahoo -->
658
+
659
+ <!-- discord -->
660
+ <tr>
661
+ <th>
662
+ <label for="the_champ_discord_key"><?php _e("Discord Client ID", 'super-socializer'); ?><img id="the_champ_discord_key_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" /></label>
663
+ </th>
664
+ <td>
665
+ <input id="the_champ_discord_key" name="the_champ_login[discord_channel_id]" type="text" value="<?php echo isset($theChampLoginOptions['discord_channel_id']) ? $theChampLoginOptions['discord_channel_id'] : '' ?>" />
666
+ </td>
667
+ </tr>
668
+ <tr class="the_champ_help_content" id="the_champ_discord_key_help_cont">
669
+ <td colspan="2">
670
+ <div>
671
+ <?php echo sprintf(__('Required for Discord Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Discord Client ID', 'super-socializer'), 'http://support.heateor.com/discord-client-id-discord-client-secret') ?>
672
+ <br/>
673
+ <span style="color:#14ACDF"><?php _e('Paste following url in the <strong>Redirects</strong> option mentioned at the link', 'super-socializer'); ?></span>
674
+ <br/>
675
+ <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/Discord'; ?></strong>
676
+ </div>
677
+ </td>
678
+ </tr>
679
+
680
+ <tr>
681
+ <th>
682
+ <label for="the_champ_discord_secret"><?php _e("Discord Client Secret", 'super-socializer'); ?><img id="the_champ_discord_secret_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" /></label>
683
+ </th>
684
+ <td>
685
+ <input id="the_champ_discord_secret" name="the_champ_login[discord_channel_secret]" type="text" value="<?php echo isset($theChampLoginOptions['discord_channel_secret']) ? $theChampLoginOptions['discord_channel_secret'] : '' ?>" />
686
+ </td>
687
+ </tr>
688
+ <tr class="the_champ_help_content" id="the_champ_discord_secret_help_cont">
689
+ <td colspan="2">
690
+ <div>
691
+ <?php echo sprintf(__('Required for Discord Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Discord Client Secret key', 'super-socializer'), 'http://support.heateor.com/discord-client-id-discord-client-secret') ?>
692
+ <br/>
693
+ <span style="color:#14ACDF"><?php _e('Paste following url in the <strong>Redirects</strong> option mentioned at the link', 'super-socializer'); ?></span>
694
+ <br/>
695
+ <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/Discord'; ?></strong>
696
+ </div>
697
+ </td>
698
+ </tr>
699
+ <!-- end of discord -->
700
+
701
+ <!-- amazon -->
702
+ <tr>
703
+ <th>
704
+ <label for="the_champ_amazon_key"><?php _e("Amazon Client ID", 'super-socializer'); ?><img id="the_champ_amazon_key_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" /></label>
705
+ </th>
706
+ <td>
707
+ <input id="the_champ_amazon_key" name="the_champ_login[amazon_client_id]" type="text" value="<?php echo isset($theChampLoginOptions['amazon_client_id']) ? $theChampLoginOptions['amazon_client_id'] : '' ?>" />
708
+ </td>
709
+ </tr>
710
+ <tr class="the_champ_help_content" id="the_champ_amazon_key_help_cont">
711
+ <td colspan="2">
712
+ <div>
713
+ <?php echo sprintf(__('Required for Amazon Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Amazon Client ID', 'super-socializer'), 'http://support.heateor.com/amazon-client-id-client-secret-amazon-developer-center') ?>
714
+ <br/>
715
+ <span style="color:#14ACDF"><?php _e('Paste following url in the <strong>Allowed Return URLs</strong> option mentioned at the link', 'super-socializer'); ?></span>
716
+ <br/>
717
+ <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/Amazon'; ?></strong>
718
+ </div>
719
+ </td>
720
+ </tr>
721
+
722
+ <tr>
723
+ <th>
724
+ <label for="the_champ_amazon_secret"><?php _e("Amazon Client Secret", 'super-socializer'); ?><img id="the_champ_amazon_secret_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" /></label>
725
+ </th>
726
+ <td>
727
+ <input id="the_champ_amazon_secret" name="the_champ_login[amazon_client_secret]" type="text" value="<?php echo isset($theChampLoginOptions['amazon_client_secret']) ? $theChampLoginOptions['amazon_client_secret'] : '' ?>" />
728
+ </td>
729
+ </tr>
730
+ <tr class="the_champ_help_content" id="the_champ_amazon_secret_help_cont">
731
+ <td colspan="2">
732
+ <div>
733
+ <?php echo sprintf(__('Required for Amazon Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Amazon Client Secret key', 'super-socializer'), 'http://support.heateor.com/amazon-client-id-client-secret-amazon-developer-center') ?>
734
+ <br/>
735
+ <span style="color:#14ACDF"><?php _e('Paste following url in the <strong>Allowed Return URLs</strong> option mentioned at the link', 'super-socializer'); ?></span>
736
+ <br/>
737
+ <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/Amazon'; ?></strong>
738
+ </div>
739
+ </td>
740
+ </tr>
741
+ <!-- end of amazon -->
742
+
743
+ <!-- Stack Overflow -->
744
+ <tr>
745
+ <th>
746
+ <label for="the_champ_stackoverflow_client_id"><?php _e("Stack Overflow Client ID", 'super-socializer'); ?><img id="the_champ_stackoverflow_client_id_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" /></label>
747
+ </th>
748
+ <td>
749
+ <input id="the_champ_stackoverflow_client_id" name="the_champ_login[stackoverflow_client_id]" type="text" value="<?php echo isset($theChampLoginOptions['stackoverflow_client_id']) ? $theChampLoginOptions['stackoverflow_client_id'] : '' ?>" />
750
+ </td>
751
+ </tr>
752
+ <tr class="the_champ_help_content" id="the_champ_stackoverflow_client_id_help_cont">
753
+ <td colspan="2">
754
+ <div>
755
+ <?php echo sprintf(__('Required for Stack Overflow Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Stack Overflow Client ID', 'super-socializer'), 'http://support.heateor.com/stackoverflow-client-id-stackoverflow-client-secret') ?>
756
+ </div>
757
+ </td>
758
+ </tr>
759
+ <tr>
760
+ <th>
761
+ <label for="the_champ_stackoverflow_secret"><?php _e("Stack Overflow Client Secret", 'super-socializer'); ?><img id="the_champ_stackoverflow_secret_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" /></label>
762
+ </th>
763
+ <td>
764
+ <input id="the_champ_stackoverflow_secret" name="the_champ_login[stackoverflow_client_secret]" type="text" value="<?php echo isset($theChampLoginOptions['stackoverflow_client_secret']) ? $theChampLoginOptions['stackoverflow_client_secret'] : '' ?>" />
765
+ </td>
766
+ </tr>
767
+ <tr class="the_champ_help_content" id="the_champ_stackoverflow_secret_help_cont">
768
+ <td colspan="2">
769
+ <div>
770
+ <?php echo sprintf(__('Required for Stack Overflow Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Stack Overflow Client Secret key', 'super-socializer'), 'http://support.heateor.com/stackoverflow-client-id-stackoverflow-client-secret') ?>
771
+ </div>
772
+ </td>
773
+ </tr>
774
+ <tr>
775
+ <th>
776
+ <label for="the_champ_stackoverflow_key"><?php _e("Stack Overflow Key", 'super-socializer'); ?></label>
777
+ <img id="the_champ_stackoverflow_key_help" class="the_champ_help_bubble" src="<?php echo plugins_url( '../images/info.png', __FILE__ ) ?>" />
778
+ </th>
779
+ <td>
780
+ <input id="the_champ_stackoverflow_key" name="the_champ_login[stackoverflow_key]" type="text" value="<?php echo $theChampLoginOptions['stackoverflow_key'] ?>" />
781
+ </td>
782
+ </tr>
783
+ <tr class="the_champ_help_content" id="the_champ_stackoverflow_key_help_cont">
784
+ <td colspan="2">
785
+ <div>
786
+ <?php echo sprintf(__('Required for Stack Overflow Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Stack Overflow Key', 'super-socializer'), 'http://support.heateor.com/stackoverflow-client-id-stackoverflow-client-secret') ?>
787
+ </div>
788
+ </td>
789
+ </tr>
790
+ <!-- Stack Overflow -->
791
+
792
  <!-- Spotify -->
793
  <tr>
794
  <th>
1202
  <label for="the_champ_sl_same_tab"><?php _e("Trigger social login in the same browser tab", 'super-socializer'); ?></label><img id="the_champ_sl_same_tab_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1203
  </th>
1204
  <td>
1205
+ <input id="the_champ_sl_same_tab" name="the_champ_login[same_tab_login]" type="checkbox" <?php echo isset($theChampLoginOptions['same_tab_login']) ? 'checked' : '';?> value="1" />
1206
  </td>
1207
  </tr>
1208
 
1219
  <label for="the_champ_sl_align"><?php _e("Center align icons", 'super-socializer'); ?></label><img id="the_champ_sl_align_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1220
  </th>
1221
  <td>
1222
+ <input id="the_champ_sl_align" name="the_champ_login[center_align]" type="checkbox" <?php echo isset($theChampLoginOptions['center_align']) ? 'checked' : '';?> value="1" />
1223
  </td>
1224
  </tr>
1225
 
1236
  <label for="the_champ_fblogin_enableAtLogin"><?php _e("Enable at login page", 'super-socializer'); ?></label><img id="the_champ_sl_loginpage_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1237
  </th>
1238
  <td>
1239
+ <input id="the_champ_fblogin_enableAtLogin" name="the_champ_login[enableAtLogin]" type="checkbox" <?php echo isset($theChampLoginOptions['enableAtLogin']) ? 'checked' : '';?> value="1" />
1240
  </td>
1241
  </tr>
1242
 
1253
  <label for="the_champ_fblogin_enableAtRegister"><?php _e("Enable at register page", 'super-socializer'); ?></label><img id="the_champ_sl_regpage_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1254
  </th>
1255
  <td>
1256
+ <input id="the_champ_fblogin_enableAtRegister" name="the_champ_login[enableAtRegister]" type="checkbox" <?php echo isset($theChampLoginOptions['enableAtRegister']) ? 'checked' : '';?> value="1" />
1257
  </td>
1258
  </tr>
1259
 
1270
  <label for="the_champ_fblogin_enableAtComment"><?php _e("Enable at comment form", 'super-socializer'); ?></label><img id="the_champ_sl_cmntform_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1271
  </th>
1272
  <td>
1273
+ <input id="the_champ_fblogin_enableAtComment" name="the_champ_login[enableAtComment]" type="checkbox" <?php echo isset($theChampLoginOptions['enableAtComment']) ? 'checked' : '';?> value="1" />
1274
  </td>
1275
  </tr>
1276
 
1294
  <label for="the_champ_sl_wc_before_form"><?php _e("Enable before WooCommerce Customer Login Form", 'super-socializer'); ?></label><img id="the_champ_sl_wc_before_form_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1295
  </th>
1296
  <td>
1297
+ <input id="the_champ_sl_wc_before_form" name="the_champ_login[enable_before_wc]" type="checkbox" <?php echo isset($theChampLoginOptions['enable_before_wc']) ? 'checked' : '';?> value="1" />
1298
  </td>
1299
  </tr>
1300
 
1311
  <label for="the_champ_sl_wc_after_form"><?php _e("Enable at WooCommerce Customer Login Form", 'super-socializer'); ?></label><img id="the_champ_sl_wc_after_form_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1312
  </th>
1313
  <td>
1314
+ <input id="the_champ_sl_wc_after_form" name="the_champ_login[enable_after_wc]" type="checkbox" <?php echo isset($theChampLoginOptions['enable_after_wc']) ? 'checked' : '';?> value="1" />
1315
  </td>
1316
  </tr>
1317
 
1328
  <label for="the_champ_sl_wc_register_form"><?php _e("Enable at WooCommerce Customer Register Form", 'super-socializer'); ?></label><img id="the_champ_sl_wc_register_form_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1329
  </th>
1330
  <td>
1331
+ <input id="the_champ_sl_wc_register_form" name="the_champ_login[enable_register_wc]" type="checkbox" <?php echo isset($theChampLoginOptions['enable_register_wc']) ? 'checked' : '';?> value="1" />
1332
  </td>
1333
  </tr>
1334
 
1345
  <label for="the_champ_sl_wc_checkout"><?php _e("Enable at WooCommerce checkout page", 'super-socializer'); ?></label><img id="the_champ_sl_wc_checkout_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1346
  </th>
1347
  <td>
1348
+ <input id="the_champ_sl_wc_checkout" name="the_champ_login[enable_wc_checkout]" type="checkbox" <?php echo isset($theChampLoginOptions['enable_wc_checkout']) ? 'checked' : '';?> value="1" />
1349
  </td>
1350
  </tr>
1351
 
1365
  <label for="the_champ_approve_comment"><?php _e("Auto-approve comments made by Social Login users", 'super-socializer'); ?></label><img id="the_champ_approve_comment_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1366
  </th>
1367
  <td>
1368
+ <input id="the_champ_approve_comment" name="the_champ_login[autoApproveComment]" type="checkbox" <?php echo isset($theChampLoginOptions['autoApproveComment']) ? 'checked' : '';?> value="1" />
1369
  </td>
1370
  </tr>
1371
 
1385
  <label for="the_champ_login_avatar"><?php _e("Enable social avatar", 'super-socializer'); ?></label><img id="the_champ_sl_avatar_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1386
  </th>
1387
  <td>
1388
+ <input id="the_champ_login_avatar" onclick="if(this.checked){jQuery('#the_champ_avatar_options').css('display', 'table-row-group')}else{ jQuery('#the_champ_avatar_options').css('display', 'none') }" name="the_champ_login[avatar]" type="checkbox" <?php echo isset($theChampLoginOptions['avatar']) ? 'checked' : '';?> value="1" />
1389
  </td>
1390
  </tr>
1391
 
1404
  <label><?php _e("Avatar quality", 'super-socializer'); ?></label><img id="the_champ_sl_avatar_quality_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1405
  </th>
1406
  <td>
1407
+ <input id="the_champ_login_average_avatar" name="the_champ_login[avatar_quality]" type="radio" <?php echo !isset($theChampLoginOptions['avatar_quality']) || $theChampLoginOptions['avatar_quality'] == 'average' ? 'checked' : '';?> value="average" /> <label for="the_champ_login_average_avatar"><?php _e("Average", 'super-socializer'); ?></label><br/>
1408
+ <input id="the_champ_login_better_avatar" name="the_champ_login[avatar_quality]" type="radio" <?php echo isset($theChampLoginOptions['avatar_quality']) && $theChampLoginOptions['avatar_quality'] == 'better' ? 'checked' : '';?> value="better" /> <label for="the_champ_login_better_avatar"><?php _e("Best", 'super-socializer'); ?></label>
1409
  </td>
1410
  </tr>
1411
 
1423
  <label for="the_champ_sl_avatar_options"><?php _e("Show option for users to update social avatar at BuddyPress profile page", 'super-socializer'); ?></label><img id="the_champ_sl_avatar_options_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1424
  </th>
1425
  <td>
1426
+ <input id="the_champ_sl_avatar_options" name="the_champ_login[avatar_options]" type="checkbox" <?php echo isset($theChampLoginOptions['avatar_options']) ? 'checked' : '';?> value="1" />
1427
  </td>
1428
  </tr>
1429
 
1443
  <label for="the_champ_login_email_required"><?php _e("Email required", 'super-socializer'); ?></label><img id="the_champ_sl_emailreq_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1444
  </th>
1445
  <td>
1446
+ <input onclick="theChampEmailPopupOptions(this)" id="the_champ_login_email_required" name="the_champ_login[email_required]" type="checkbox" <?php echo isset($theChampLoginOptions['email_required']) ? 'checked' : '';?> value="1" />
1447
  </td>
1448
  </tr>
1449
 
1461
  <label for="the_champ_password_email"><?php _e("Send post-registration email to user to set account password", 'super-socializer'); ?></label><img id="the_champ_sl_postreg_email_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1462
  </th>
1463
  <td>
1464
+ <input id="the_champ_password_email" name="the_champ_login[password_email]" type="checkbox" <?php echo isset($theChampLoginOptions['password_email']) ? 'checked' : '';?> value="1" />
1465
  </td>
1466
  </tr>
1467
 
1478
  <label for="the_champ_sl_postreg_admin_email"><?php _e("Send new user registration notification email to admin", 'super-socializer'); ?></label><img id="the_champ_sl_postreg_admin_email_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1479
  </th>
1480
  <td>
1481
+ <input id="the_champ_sl_postreg_admin_email" name="the_champ_login[new_user_admin_email]" type="checkbox" <?php echo isset($theChampLoginOptions['new_user_admin_email']) ? 'checked' : '';?> value="1" />
1482
  </td>
1483
  </tr>
1484
 
1495
  <label><?php _e("Login redirection", 'super-socializer'); ?></label><img id="the_champ_sl_loginredirect_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1496
  </th>
1497
  <td id="the_champ_login_redirection_column">
1498
+ <input id="the_champ_login_redirection_same" name="the_champ_login[login_redirection]" type="radio" <?php echo !isset($theChampLoginOptions['login_redirection']) || $theChampLoginOptions['login_redirection'] == 'same' ? 'checked' : '';?> value="same" />
1499
  <label for="the_champ_login_redirection_same"><?php _e('Same page where user logged in', 'super-socializer') ?></label><br/>
1500
+ <input id="the_champ_login_redirection_home" name="the_champ_login[login_redirection]" type="radio" <?php echo isset($theChampLoginOptions['login_redirection']) && $theChampLoginOptions['login_redirection'] == 'homepage' ? 'checked' : '';?> value="homepage" />
1501
  <label for="the_champ_login_redirection_home"><?php _e('Homepage', 'super-socializer') ?></label><br/>
1502
+ <input id="the_champ_login_redirection_account" name="the_champ_login[login_redirection]" type="radio" <?php echo isset($theChampLoginOptions['login_redirection']) && $theChampLoginOptions['login_redirection'] == 'account' ? 'checked' : '';?> value="account" />
1503
  <label for="the_champ_login_redirection_account"><?php _e('Account dashboard', 'super-socializer') ?></label><br/>
1504
  <?php if($theChampIsBpActive){ ?>
1505
+ <input id="the_champ_login_redirection_bp" name="the_champ_login[login_redirection]" type="radio" <?php echo isset($theChampLoginOptions['login_redirection']) && $theChampLoginOptions['login_redirection'] == 'bp_profile' ? 'checked' : '';?> value="bp_profile" />
1506
  <label for="the_champ_login_redirection_bp"><?php _e('BuddyPress profile page', 'super-socializer') ?></label><br/>
1507
  <?php } ?>
1508
+ <input id="the_champ_login_redirection_custom" name="the_champ_login[login_redirection]" type="radio" <?php echo isset($theChampLoginOptions['login_redirection']) && $theChampLoginOptions['login_redirection'] == 'custom' ? 'checked' : '';?> value="custom" />
1509
  <label for="the_champ_login_redirection_custom"><?php _e('Custom Url', 'super-socializer') ?></label><br/>
1510
  <input id="the_champ_login_redirection_url" name="the_champ_login[login_redirection_url]" type="text" value="<?php echo isset($theChampLoginOptions['login_redirection_url']) ? $theChampLoginOptions['login_redirection_url'] : '' ?>" />
1511
  </td>
1524
  <label><?php _e("Registration redirection", 'super-socializer'); ?></label><img id="the_champ_sl_register_redirect_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1525
  </th>
1526
  <td id="the_champ_register_redirection_column">
1527
+ <input id="the_champ_register_redirection_same" name="the_champ_login[register_redirection]" type="radio" <?php echo !isset($theChampLoginOptions['register_redirection']) || $theChampLoginOptions['register_redirection'] == 'same' ? 'checked' : '';?> value="same" />
1528
  <label for="the_champ_register_redirection_same"><?php _e('Same page from where user registered', 'super-socializer') ?></label><br/>
1529
+ <input id="the_champ_register_redirection_home" name="the_champ_login[register_redirection]" type="radio" <?php echo isset($theChampLoginOptions['register_redirection']) && $theChampLoginOptions['register_redirection'] == 'homepage' ? 'checked' : '';?> value="homepage" />
1530
  <label for="the_champ_register_redirection_home"><?php _e('Homepage', 'super-socializer') ?></label><br/>
1531
+ <input id="the_champ_register_redirection_account" name="the_champ_login[register_redirection]" type="radio" <?php echo isset($theChampLoginOptions['register_redirection']) && $theChampLoginOptions['register_redirection'] == 'account' ? 'checked' : '';?> value="account" />
1532
  <label for="the_champ_register_redirection_account"><?php _e('Account dashboard', 'super-socializer') ?></label><br/>
1533
  <?php if($theChampIsBpActive){ ?>
1534
+ <input id="the_champ_register_redirection_bp" name="the_champ_login[register_redirection]" type="radio" <?php echo isset($theChampLoginOptions['register_redirection']) && $theChampLoginOptions['register_redirection'] == 'bp_profile' ? 'checked' : '';?> value="bp_profile" />
1535
  <label for="the_champ_register_redirection_bp"><?php _e('BuddyPress profile page', 'super-socializer') ?></label><br/>
1536
  <?php } ?>
1537
+ <input id="the_champ_register_redirection_custom" name="the_champ_login[register_redirection]" type="radio" <?php echo isset($theChampLoginOptions['register_redirection']) && $theChampLoginOptions['register_redirection'] == 'custom' ? 'checked' : '';?> value="custom" />
1538
  <label for="the_champ_register_redirection_custom"><?php _e('Custom Url', 'super-socializer') ?></label><br/>
1539
  <input id="the_champ_register_redirection_url" name="the_champ_login[register_redirection_url]" type="text" value="<?php echo isset($theChampLoginOptions['register_redirection_url']) ? $theChampLoginOptions['register_redirection_url'] : '' ?>" />
1540
  </td>
1577
  <label for="the_champ_sl_linking"><?php _e("Link social account to already existing account, if email address matches", 'super-socializer'); ?></label><img id="the_champ_sl_linking_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1578
  </th>
1579
  <td>
1580
+ <input id="the_champ_sl_linking" name="the_champ_login[link_account]" type="checkbox" <?php echo isset($theChampLoginOptions['link_account']) ? 'checked' : '';?> value="1" />
1581
  </td>
1582
  </tr>
1583
 
1595
  <label for="the_champ_sl_bp_linking"><?php _e("Enable social account linking at BuddyPress profile page", 'super-socializer'); ?></label><img id="the_champ_sl_bp_linking_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1596
  </th>
1597
  <td>
1598
+ <input id="the_champ_sl_bp_linking" name="the_champ_login[bp_linking]" type="checkbox" <?php echo isset($theChampLoginOptions['bp_linking']) ? 'checked' : '';?> value="1" />
1599
  </td>
1600
  </tr>
1601
 
1674
  <label for="the_champ_password_email_verification"><?php _e("Enable email verification", 'super-socializer'); ?></label><img id="the_champ_sl_emailver_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1675
  </th>
1676
  <td>
1677
+ <input id="the_champ_password_email_verification" name="the_champ_login[email_verification]" type="checkbox" <?php echo isset($theChampLoginOptions['email_verification']) ? 'checked' : '';?> value="1" />
1678
  </td>
1679
  </tr>
1680
 
1704
  <label for="the_champ_gdpr_enable"><?php _e("Enable GDPR opt-in", 'super-socializer'); ?></label><img id="the_champ_gdpr_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1705
  </th>
1706
  <td>
1707
+ <input id="the_champ_gdpr_enable" name="the_champ_login[gdpr_enable]" type="checkbox" <?php echo isset($theChampLoginOptions['gdpr_enable']) ? 'checked' : '';?> value="1" />
1708
  </td>
1709
  </tr>
1710
 
1722
  <label for="the_champ_gdpr_placement_above"><?php _e( "Placement of GDPR opt-in", 'super-socializer'); ?></label><img id="the_champ_gdpr_placement_help" class="the_champ_help_bubble" src="<?php echo plugins_url( '../images/info.png', __FILE__) ?>" />
1723
  </th>
1724
  <td>
1725
+ <input id="the_champ_gdpr_placement_above" name="the_champ_login[gdpr_placement]" type="radio" <?php echo ! isset( $theChampLoginOptions['gdpr_placement'] ) || $theChampLoginOptions['gdpr_placement'] == 'above' ? 'checked' : '';?> value="above" />
1726
  <label for="the_champ_gdpr_placement_above"><?php _e( 'Above Social Login icons', 'super-socializer' ) ?></label><br/>
1727
+ <input id="the_champ_gdpr_placement_below" name="the_champ_login[gdpr_placement]" type="radio" <?php echo $theChampLoginOptions['gdpr_placement'] == 'below' ? 'checked' : '';?> value="below" />
1728
  <label for="the_champ_gdpr_placement_below"><?php _e( 'Below Social Login icons', 'super-socializer' ) ?></label>
1729
  </td>
1730
  </tr>
css/front.css CHANGED
@@ -1 +1 @@
1
- #the_champ_error{color:red;margin:7px 0}.the_champ_login_container{margin:2px 0}.the_champ_login_container img,.the_champ_sharing_container img{cursor:pointer;margin:2px;border:none}.the_champ_login_container img{display:none;float:left}#the_champ_loading_image{display:block!important;float:none}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#the_champ_sharing_more_providers{position:fixed;top:50%;left:47%;background:#FAFAFA;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important;height:308px}#the_champ_popup_bg,#heateor_ss_browser_popup_bg,#heateor_ss_lj_popup_bg{background:url(../images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#the_champ_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#58B8F8!important;border-bottom:1px solid #D7D7D7!important;color:#fff;font-weight:700;letter-spacing:inherit;line-height:34px!important;padding:0!important;text-align:center;text-transform:none;margin:0!important;text-shadow:none!important;width:100%}#the_champ_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#the_champ_sharing_more_providers #the_champ_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:auto;width:100%}#the_champ_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#the_champ_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#the_champ_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#the_champ_sharing_more_content .all-services ul li{margin:0;background:0 0!important;float:left;width:33.3333%!important;text-align:left!important}#the_champ_sharing_more_providers .close-button img{margin:0;}#the_champ_sharing_more_providers .close-button.separated{background:0 0!important;border:none!important;box-shadow:none!important;width:auto!important;height:auto!important;z-index:1000}#the_champ_sharing_more_providers .close-button{height:auto!important;width:auto!important;left:auto!important;display:block!important;color:#555!important;cursor:pointer!important;font-size:29px!important;line-height:29px!important;margin:0!important;padding:0!important;position:absolute;right:-13px;top:-11px}#the_champ_sharing_more_providers .filter input.search{width:94%;display:block;float:none;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-weight:300;height:auto;line-height:inherit;margin:0 auto;padding:5px 8px 5px 10px;border:1px solid #ccc!important;color:#000;background:#FFF!important;font-size:16px!important;text-align:left!important}#the_champ_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#the_champ_sharing_more_providers .footer-panel p{background-color:transparent;top:0;text-align:left!important;color:#000;font-family:'helvetica neue',arial,helvetica,sans-serif;font-size:12px;line-height:1.2;margin:0!important;padding:0 6px!important;text-indent:0!important}#the_champ_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#the_champ_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:18px;height:auto;line-height:28px;overflow:hidden;padding:8px;text-decoration:none!important;text-overflow:ellipsis;white-space:nowrap;border:none!important;text-indent:0!important;background:0 0!important;text-shadow:none;box-shadow:none!important}.the_champ_share_count{display:block;text-indent:0!important;visibility:hidden;background-color:#58B8F8!important;width:5px;height:auto;text-align:center;min-width:8px!important;padding:1px 4px!important;color:#fff!important;font-family:'Open Sans',arial,sans-serif!important;font-size:10px!important;font-weight:600!important;-webkit-border-radius:15px!important;border-radius:15px!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.4);box-shadow:0 2px 2px rgba(0,0,0,.4);text-shadow:0 -1px 0 rgba(0,0,0,.2);line-height:14px!important;border:2px solid #fff!important;z-index:1;margin:2px auto!important;box-sizing:content-box!important}.the_champ_share_count,.the_champ_vertical_counter,.the_champ_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}ul.the_champ_login_ul,ul.the_champ_sharing_ul,ul.heateor_ss_follow_ul{list-style:none!important;padding-left:0!important}#the_champ_comment_toggle{margin-bottom:10px}ul.the_champ_login_ul{margin:3px 0!important}ul.the_champ_login_ul li{background:none;float:left;padding:0!important;margin:0!important;border:0!important;width:auto!important;clear:none!important;list-style-type:none!important}.theChampLoginSvg{-webkit-box-sizing:content-box;-moz-box-sizing:border-box;box-sizing:content-box;width:100%;height:100%;background-position:center!important}.theChampXingLoginSvg{background-size:109%!important;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgOSBoIDUgbCA0IDQgbCAtNSA3IGggLTUgbCA1IC03IHogbSAxNSAtNCBoIDUgbCAtOSAxMyBsIDQgOCBoIC01IGwgLTQgLTggeiIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampWordpressLoginSvg{background-size:84%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22%23FFF%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%2F%3E%3Cg%20fill%3D%22%23464646%22%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%2F%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampGoogleLoginSvg{background-size:101%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-8%20-8%2064%2064%22%3E%3Cdefs%3E%3Cpath%20id%3D%22a%22%20d%3D%22M44.5%2020H24v8.5h11.8C34.7%2033.9%2030.1%2037%2024%2037c-7.2%200-13-5.8-13-13s5.8-13%2013-13c3.1%200%205.9%201.1%208.1%202.9l6.4-6.4C34.6%204.1%2029.6%202%2024%202%2011.8%202%202%2011.8%202%2024s9.8%2022%2022%2022c11%200%2021-8%2021-22%200-1.3-.2-2.7-.5-4z%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22b%22%3E%3Cuse%20xlink%3Ahref%3D%22%23a%22%20overflow%3D%22visible%22%2F%3E%3C%2FclipPath%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%23FBBC05%22%20d%3D%22M0%2037V11l17%2013z%22%2F%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%23EA4335%22%20d%3D%22M0%2011l17%2013%207-6.1L48%2014V0H0z%22%2F%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%2334A853%22%20d%3D%22M0%2037l30-23%207.9%201L48%200v48H0z%22%2F%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%234285F4%22%20d%3D%22M48%2048L17%2024l-4-3%2035-10z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampLinkedinLoginSvg{background-size:106%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-1%200%2033%2035%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampTwitterLoginSvg{background-size:106%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%0A%3Cpath%20d%3D%22M28%208.557a9.913%209.913%200%200%201-2.828.775%204.93%204.93%200%200%200%202.166-2.725%209.738%209.738%200%200%201-3.13%201.194%204.92%204.92%200%200%200-3.593-1.55%204.924%204.924%200%200%200-4.794%206.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942%204.942%200%200%200-.665%202.477c0%201.71.87%203.214%202.19%204.1a4.968%204.968%200%200%201-2.23-.616v.06c0%202.39%201.7%204.38%203.952%204.83-.414.115-.85.174-1.297.174-.318%200-.626-.03-.928-.086a4.935%204.935%200%200%200%204.6%203.42%209.893%209.893%200%200%201-6.114%202.107c-.398%200-.79-.023-1.175-.068a13.953%2013.953%200%200%200%207.55%202.213c9.056%200%2014.01-7.507%2014.01-14.013%200-.213-.005-.426-.015-.637.96-.695%201.795-1.56%202.455-2.55z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') left no-repeat}.theChampVkontakteLoginSvg{background-size:113%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%221%202%2030%2028%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M15.764%2022.223h1.315s.394-.044.6-.262c.184-.2.18-.574.18-.574s-.03-1.764.79-2.023c.81-.255%201.844%201.705%202.942%202.46.832.57%201.464.445%201.464.445l2.936-.04s1.538-.097.81-1.304c-.06-.1-.426-.894-2.186-2.526-1.843-1.71-1.594-1.434.624-4.39%201.353-1.804%201.893-2.902%201.724-3.374-.16-.45-1.153-.33-1.153-.33l-3.306.02s-.247-.034-.428.074c-.178.108-.293.356-.293.356s-.522%201.394-1.223%202.58c-1.47%202.5-2.06%202.633-2.3%202.476-.563-.36-.42-1.454-.42-2.23%200-2.423.365-3.435-.72-3.696-.357-.085-.623-.143-1.544-.15-1.182-.014-2.18.003-2.743.28-.378.185-.667.595-.49.62.218.027.713.13.975.49.34.46.33%201.496.33%201.496s.193%202.852-.46%203.206c-.442.245-1.056-.252-2.37-2.52-.67-1.163-1.18-2.446-1.18-2.446s-.1-.24-.273-.37c-.212-.155-.506-.204-.506-.204l-3.145.02s-.473.015-.647.22c-.154.183-.01.56-.01.56s2.46%205.757%205.245%208.657c2.553%202.66%205.454%202.485%205.454%202.485z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampLineLoginSvg{background-size:91%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampMicrosoftLoginSvg{background-size:91%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-16.61977%20-16.61977%20123.565208%20123.834167%22%20id%3D%22svg8375%22%3E%3Cpath%20d%3D%22M%200%2C12.40183%2035.68737%2C7.5416%2035.70297%2C41.96435%200.03321%2C42.16748%20z%20m%2035.67037%2C33.52906%200.0277%2C34.45332%20-35.66989%2C-4.9041%20-0.002%2C-29.77972%20z%20M%2039.99644%2C6.90595%2087.31462%2C0%20l%200%2C41.527%20-47.31818%2C0.37565%20z%20M%2087.32567%2C46.25471%2087.31457%2C87.59463%2039.9964%2C80.91625%2039.9301%2C46.17767%20z%22%20id%3D%22path13%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') left no-repeat}.theChampKakaoLoginSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.345%206h-8.688c-.583%200-1.06.45-1.06%201.005v8.814c0%20.553.477%201.003%201.06%201.003h4.007c-.03.98-.445%202.056-1.077%202.996-.612.904-1.613%201.796-2.156%202.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022%202.774%202.975s.137.137.247.163c.126.03.27.032.368-.042%204.84-3.56%205.537-8.023%205.66-10.44V7.004C21.403%206.45%2020.93%206%2020.346%206%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampSpotifyLoginSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20186.845%20186.845%22%20style%3D%22enable-background%3Anew%200%200%20186.845%20186.845%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M128.875%2C120.962c-31.094-14.37-74.616-8.014-76.453-7.737c-4.096%2C0.619-6.915%2C4.44-6.296%2C8.536%20c0.619%2C4.096%2C4.443%2C6.912%2C8.536%2C6.296c0.406-0.062%2C40.867-5.982%2C67.92%2C6.521c1.018%2C0.471%2C2.089%2C0.694%2C3.142%2C0.694%20c2.834-0.001%2C5.546-1.614%2C6.813-4.355C134.274%2C127.157%2C132.635%2C122.7%2C128.875%2C120.962z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M137.614%2C93.953c-35.313-16.319-84.833-9.087-86.924-8.772c-4.094%2C0.619-6.911%2C4.438-6.294%2C8.532%20c0.616%2C4.095%2C4.438%2C6.916%2C8.531%2C6.301c0.468-0.071%2C47.206-6.857%2C78.394%2C7.556c1.02%2C0.471%2C2.089%2C0.694%2C3.142%2C0.694%20c2.834-0.001%2C5.546-1.614%2C6.814-4.356C143.014%2C100.148%2C141.374%2C95.691%2C137.614%2C93.953z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M143.49%2C65.736c-39.006-18.027-93.79-10.028-96.103-9.679c-4.094%2C0.619-6.911%2C4.438-6.294%2C8.532s4.44%2C6.919%2C8.531%2C6.3%20c0.523-0.079%2C52.691-7.657%2C87.573%2C8.463c1.018%2C0.471%2C2.089%2C0.694%2C3.142%2C0.694c2.834%2C0%2C5.546-1.614%2C6.813-4.355%20C148.89%2C71.93%2C147.25%2C67.474%2C143.49%2C65.736z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') left no-repeat;background-size:128%}.theChampGithubLoginSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20focusable%3D%27false%27%20aria-hidden%3D%27true%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2032%2032%27%3E%3Cpath%20fill%3D%27%23FFF%27%20d%3D%27M16%203.32c-7.182%200-13%205.82-13%2013%200%205.754%203.72%2010.612%208.89%2012.335.65.114.893-.276.893-.617%200-.31-.016-1.333-.016-2.42-3.266.6-4.11-.797-4.37-1.53-.147-.373-.78-1.527-1.334-1.835-.455-.244-1.105-.845-.016-.86%201.024-.017%201.755.942%202%201.332%201.17%201.966%203.038%201.414%203.785%201.073.114-.845.455-1.414.83-1.74-2.893-.324-5.916-1.445-5.916-6.418%200-1.414.504-2.584%201.333-3.494-.13-.325-.59-1.657.13-3.445%200%200%201.085-.34%203.57%201.337%201.04-.293%202.146-.44%203.25-.44s2.21.147%203.25.44c2.49-1.69%203.58-1.337%203.58-1.337.714%201.79.26%203.12.13%203.446.828.91%201.332%202.064%201.332%203.494%200%204.99-3.04%206.094-5.93%206.42.47.405.876%201.185.876%202.404%200%201.74-.016%203.136-.016%203.575%200%20.34.244.743.894.613C25.28%2026.933%2029%2022.053%2029%2016.32c0-7.182-5.817-13-13-13z%27%3E%3C%2Fpath%3E%3C%2Fsvg%3E') left no-repeat;background-size:94%}.theChampDribbbleLoginSvg{background:url('data:image/svg+xml;charset=utf8,%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-10%2010%201000%201000%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%20500c0-90.667%2022.334-174.333%2067-251%2044.667-76.667%20105.334-137.333%20182-182C325.667%2022.333%20409.334%200%20500%200c90.667%200%20174.334%2022.333%20251%2067%2076.667%2044.667%20137.334%20105.333%20182%20182%2044.667%2076.667%2067%20160.333%2067%20251s-22.333%20174.333-67%20251c-44.666%2076.667-105.333%20137.333-182%20182-76.666%2044.667-160.333%2067-251%2067-90.666%200-174.333-22.333-251-67-76.666-44.667-137.333-105.333-182-182C22.334%20674.333%200%20590.667%200%20500zm83%200c0%20104%2035%20195.667%20105%20275%2032-62.667%2082.667-122.333%20152-179%2069.334-56.667%20137-92.333%20203-107-10-23.333-19.666-44.333-29-63-114.666%2036.667-238.666%2055-372%2055-26%200-45.333-.333-58-1%200%202.667-.166%206-.5%2010-.333%204-.5%207.333-.5%2010zm13-103c14.667%201.333%2036.334%202%2065%202%20111.334%200%20217-15%20317-45-50.666-90-106.333-165-167-225-52.666%2026.667-97.833%2063.667-135.5%20111-37.666%2047.333-64.166%2099.667-79.5%20157zm149%20432c75.334%2058.667%20160.334%2088%20255%2088%2049.334%200%2098.334-9.333%20147-28-13.333-114-39.333-224.333-78-331-61.333%2013.333-123.166%2047-185.5%20101C321.167%20713%20275%20769.667%20245%20829zM398%2097c58.667%2060.667%20113%20136.333%20163%20227%2090.667-38%20159-86.333%20205-145-77.333-64-166-96-266-96-34%200-68%204.667-102%2014zm199%20298c10%2021.333%2021.334%2048.333%2034%2081%2049.334-4.667%20103-7%20161-7%2041.334%200%2082.334%201%20123%203-5.333-90.667-38-171.333-98-242-43.333%2064.667-116.666%20119.667-220%20165zm59%20151c34%2098.667%2057%20200%2069%20304%2052.667-34%2095.667-77.667%20129-131%2033.334-53.333%2053.334-111%2060-173-48.666-3.333-93-5-133-5-36.666%200-78.333%201.667-125%205z%22%2F%3E%3C%2Fsvg%3E') left no-repeat;background-size:78%}.theChampYahooLoginSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') left no-repeat;background-size:95%}.theChampFacebookLoginSvg{background-size:147%!important;padding-top:5px;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23218cf2%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') left no-repeat}.theChampSteamLoginSvg{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20300%20300%22%3E%3Ccircle%20cx%3D%2245%22%20cy%3D%22130%22%20r%3D%2225%22%20stroke%3D%22%23fff%22%20stroke-width%3D%227%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%22155%22%20cy%3D%22198%22%20r%3D%2225%22%20stroke%3D%22%23fff%22%20stroke-width%3D%227%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%22245%22%20cy%3D%22110%22%20r%3D%2235%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2210%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%22245%22%20cy%3D%22110%22%20r%3D%2215%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2210%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%20160%20170%20l%2045%20-64%20l%2040%2044%20l%20-62%2044%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2045%20130%20l%20110%2068%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2230%22%20fill%3D%22%23fff%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat;background-size:80%!important}.theChampInstagramLoginSvg{background-size:94%!important;background:url(data:image/svg+xml;charset=utf8,%3Csvg%20enable-background%3D%22new%200%200%20128%20128%22%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%220%200%20128%20128%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E) left no-repeat}.theChampLoginButton{background:url(../images/login/login.png) no-repeat}.theChampLogin{padding:0!important;margin:2px;height:35px;width:35px;float:left;cursor:pointer;border:none}.theChampInstagramLogin,.theChampTwitterLogin,.theChampXingLogin{display:block}.theChampXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.theChampFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.theChampLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.theChampGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.theChampInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.theChampVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.the_champ_sharing_ul,ul.heateor_ss_follow_ul{margin:1px 0!important}#heateor_ss_lj_popup_close img,#the_champ_sharing_popup_close img{opacity: 1!important;background:0 0!important;border:none!important;outline:0!important;box-shadow:none!important;width:auto!important;height:auto!important;top:inherit!important;right:inherit!important;left:9px!important;padding:0!important}ul.the_champ_sharing_ul li.theChampSharingRound,ul.heateor_ss_follow_ul li.theChampSharingRound{background:0 0!important}.the_champ_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style: normal;font-size: .8em;visibility:hidden;word-wrap:normal!important}ul.heateor_ss_follow_ul li{width:auto;}ul.heateor_ss_follow_ul li,ul.the_champ_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important;clear:none;}.theChampSharing{display:block;cursor:pointer;margin:2px}ul.the_champ_login_ul li:before,ul.the_champ_sharing_ul li:before,ul.heateor_ss_follow_ul li:before{content:none!important}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingXingButton{background-position:0 -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}.theChampSharingYummlyButton{background-position:-64px -128px;width:32px;height:32px}.theChampSharingBufferButton{background-position:-96px -128px;width:32px;height:32px}.theChampSharingTotalsharesButton{background-position: -200px -200px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingMoreButton{background-position:-96px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.the_champ_vertical_counter,.the_champ_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);box-shadow:0 1px 4px 1px rgba(0,0,0,.1);position:fixed;overflow:visible;z-index:10000000;display:block;padding:10px;border-radius:4px;opacity:1;box-sizing:content-box!important}.the_champ_vertical_counter li{clear:both}li.the_champ_facebook_share .fb-share-button span,li.the_champ_facebook_like .fb-like span,li.the_champ_facebook_recommend .fb-like span{vertical-align:top!important}li.the_champ_facebook_like .fb-like span iframe,li.the_champ_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000}div.the_champ_horizontal_sharing li{width:auto}div.the_champ_horizontal_sharing li.the_champ_facebook_share, div.the_champ_horizontal_counter li.the_champ_facebook_share{width:76px}div.the_champ_horizontal_sharing li.the_champ_facebook_like, div.the_champ_horizontal_counter li.the_champ_facebook_like{width:56px}div.the_champ_horizontal_sharing li.the_champ_facebook_recommend, div.the_champ_horizontal_counter li.the_champ_facebook_recommend{width:111px}div.the_champ_horizontal_sharing li.the_champ_twitter_tweet, div.the_champ_horizontal_counter li.the_champ_twitter_tweet{width:65px}div.the_champ_horizontal_counter li.the_champ_linkedin_share span, div.the_champ_horizontal_sharing li.the_champ_linkedin_share span{vertical-align:text-top!important}div.the_champ_horizontal_sharing li.the_champ_buffer_share{width:89px}div.the_champ_horizontal_sharing li.the_champ_linkedin_share, div.the_champ_horizontal_counter li.the_champ_linkedin_share{width:67px}div.the_champ_horizontal_sharing li.the_champ_buffer, div.the_champ_horizontal_counter li.the_champ_buffer{width:81px;}div.the_champ_horizontal_sharing li.the_champ_reddit, div.the_champ_horizontal_counter li.the_champ_reddit{width:124px}div.the_champ_horizontal_sharing li.the_champ_yummly, div.the_champ_horizontal_counter li.the_champ_yummly{width:61px}div.the_champ_horizontal_sharing li.the_champ_pinterest_pin, div.the_champ_horizontal_counter li.the_champ_pinterest_pin{width:58px}div.the_champ_horizontal_counter li.the_champ_pinterest_pin{line-height:1px}div.the_champ_horizontal_sharing li.the_champ_xing, div.the_champ_horizontal_counter li.the_champ_xing{width:67px}.the_champ_counter_container li{height:21px}input#user_login,input#user_pass{height:auto!important}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampInstagramBackground{background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%)}.theChampYummlyBackground{background-color:#E16120}.theChampBufferBackground{background-color:#000}.theChampYahooBackground{background-color:#400090}.theChampGithubBackground{background-color:#2a2a2a}.theChampSpotifyBackground{background-color:#1DB954}.theChampDribbbleBackground{background-color:#ea4c89}.theChampKakaoBackground{background-color:#FCB700}.theChampDropboxBackground{background-color:#0061ff}.theChampFoursquareBackground{background-color:#f94877}.theChampDisqusBackground{background-color:#2e9fff}.theChampFacebookBackground{background-color:#4267B2}.theChampSteamBackground{background-color:#393939}.theChampLiveJournalBackground{background-color:#EDEDED}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:white;box-sizing:border-box;border:1px #4184F3 solid}.theChampLinkedinBackground{background-color:#0077B5}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#FF5700}.theChampStockTwitsBackground{background-color: #40576F}.theChampTumblrBackground{background-color:#29435D}.theChampLineBackground{background-color:#00C300}.theChampMicrosoftBackground{background-color:#2672ec}.theChampParlerBackground{background-color:#C63240}.theChampTwitterBackground{background-color:#55acee}.theChampVkontakteBackground{background-color:#5E84AC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampMeWeBackground{background-color:#007da1}.theChampMixBackground{background-color:#ff8226}.theChampTCBackground,.theChampTCBackground:hover{border-width: 0!important;background-color:transparent;}ul.the_champ_sharing_ul i.theChampTCBackground{background-color:transparent;font-style:normal!important;word-wrap:normal;color:#666;line-height:1;visibility:hidden;}.theChampSharingTotalsharesButton{font-style:normal!important;word-wrap:normal;color:#666;line-height:1}.theChampSharingSvg{width:100%;height:100%}.theChampYummlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBufferSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFacebookSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampDiggSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.theChampEmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFloatitSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%203C8.814%203%203%208.814%203%2016s5.814%2013%2013%2013%2013-5.814%2013-13S23.187%203%2016%203zm0%2025.152c-6.712%200-12.153-5.44-12.153-12.152C3.847%209.288%209.287%203.848%2016%203.848S28.152%209.288%2028.152%2016c0%206.712-5.44%2012.152-12.152%2012.152z%22%2F%3E%3Cpath%20d%3D%22M22.406%2016A6.402%206.402%200%200%200%2016%209.593%206.402%206.402%200%200%200%209.593%2016%206.4%206.4%200%200%200%2016%2022.406%206.4%206.4%200%200%200%2022.406%2016zM16%2021.39A5.392%205.392%200%200%201%2010.61%2016%205.403%205.403%200%200%201%2016%2010.61%205.393%205.393%200%200%201%2021.39%2016%205.382%205.382%200%200%201%2016%2021.39z%22%2F%3E%3Cpath%20d%3D%22M13.763%209.187V4.864c-4.475.9-8%204.424-8.898%208.898h4.322a7.226%207.226%200%200%201%204.576-4.575zm9.05%204.576h4.32c-.896-4.475-4.422-8-8.896-8.898v4.322a7.224%207.224%200%200%201%204.575%204.576zm-4.576%209.052v4.322c4.475-.9%208-4.424%208.897-8.9h-4.322a7.232%207.232%200%200%201-4.575%204.578zm-9.05-4.578H4.863c.898%204.475%204.424%208%208.898%208.9v-4.323a7.233%207.233%200%200%201-4.574-4.577z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2039%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMediumSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20focusable%3D%22false%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20d%3D%22M7.8%2011a.8.8%200%200%200-.27-.7l-2-2.42v-.41h6.23L16.57%2018l4.24-10.53h5.94v.36L25%209.47a.5.5%200%200%200-.19.48v12.1a.5.5%200%200%200%20.19.48l1.68%201.64v.36h-8.4v-.36L20%2022.49c.18-.17.18-.22.18-.49v-9.77l-4.82%2012.26h-.65L9.09%2012.23v8.22a1.09%201.09%200%200%200%20.31.94l2.25%202.74v.36h-6.4v-.36l2.26-2.74a1.09%201.09%200%200%200%20.29-.94z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampPinterestSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.539%204.5c-6.277%200-9.442%204.5-9.442%208.253%200%202.272.86%204.293%202.705%205.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591%200-3.338%202.498-6.327%206.505-6.327%203.548%200%205.497%202.168%205.497%205.062%200%203.81-1.686%207.025-4.188%207.025-1.382%200-2.416-1.142-2.085-2.545.397-1.674%201.166-3.48%201.166-4.689%200-1.081-.581-1.983-1.782-1.983-1.413%200-2.548%201.462-2.548%203.419%200%201.247.421%202.091.421%202.091l-1.699%207.199c-.505%202.137-.076%204.755-.039%205.019.021.158.223.196.314.077.13-.17%201.813-2.247%202.384-4.324.162-.587.929-3.631.929-3.631.46.876%201.801%201.646%203.227%201.646%204.247%200%207.128-3.871%207.128-9.053.003-3.918-3.317-7.568-8.361-7.568z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC02IDM4IDM4Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gNyAxMCBoIDIgdiAzIGggMTIgdiAtMyBoIDIgdiA3IGggLTIgdiAtMyBoIC0xMiB2IDMgaCAtMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS44IiBoZWlnaHQ9IjciIHdpZHRoPSIxMCIgeD0iMTAiIHk9IjUiIGZpbGw9Im5vbmUiPjwvcmVjdD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIgaGVpZ2h0PSI1IiB3aWR0aD0iOCIgeD0iMTEiIHk9IjE2IiBmaWxsPSIjZmZmIj48L3JlY3Q+PC9zdmc+) left no-repeat}.theChampRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj48ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMiIgY3k9IjciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSI3IiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMyIgY3k9IjE0IiByPSIyIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PHBhdGggZD0iTSAxMCAyMiBxIDUgMyAxMCAwIE0gMTUgMTIgbCAxIC02IGwgNiAxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii04IC04IDY0IDY0Ij4NCjxwYXRoIGQ9Ik0gMzggMTkgcSAyIC0xIDQgLTUgcSAtMS41IDIgLTQgMiBxIDEuNSAtMSAzLjUgLTUgcSAtMS41IDIgLTUgMiBjIC01IC01IC0xMyAtMiAtMTIgNiBxIC03IDEgLTE1IC04IHEgLTIgNCAxIDkgcSAtMSAwIC0zIC0xIHEgMCA1IDUgNyBxIC0xIC41IC0zIDAgcSAxIDQgOCA2IHEgLTUgMyAtMTEgMyBjIDE0IDggMzAgMCAzMS41IC0xNCIgc3Ryb2tlLXdpZHRoPSIwLjMiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj4NCjxwYXRoIGQ9Ik0gMi41IDkgaCA0LjUgbCA1IDcgdiAtNyBoIDQuNSB2IDcgbCA1IC03IGggNSBsIC01IDcgbCA1IDcgaCAtNSBsIC01IC03IHYgNyBoIC00LjUgcSAtMiAwIC01IC02IHoiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj4NCjxwYXRoIGQ9Ik0gNiA5IGggNSBsIDQgNCBsIC01IDcgaCAtNSBsIDUgLTcgeiBtIDE1IC00IGggNSBsIC05IDEzIGwgNCA4IGggLTUgbCAtNCAtOCB6IiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBpZD0iYXJjMSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIGQ9Ik0gMTEuNTc5Nzk4NTY2NzQzMzE0IDI0LjM5NjkyNjIwNzg1OTA4NSBBIDEwIDEwIDAgMSAwIDYuODA4NDc5NTU3MTEwMDc5IDIwLjczNTc2NDM2MzUxMDQ2Ij48L3BhdGg+PHBhdGggZD0iTSA3IDE5IGwgLTEgNiBsIDYgLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSAxMCAxMCBxIC0xIDggOCAxMSBjIDUgLTEgMCAtNiAtMSAtMyBxIC00IC0zIC01IC01IGMgNCAtMiAtMSAtNSAtMSAtNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampSharing{float:left;border:none}.theChampSharingArrow{height:16px;width:16px;cursor:pointer;margin-top:10px}.theChampPushIn{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%207%206%20q%202%206%2010%206%20v%20-6%20l%206%209%20l%20-6%209%20v%20-6%20q%20-10%202%20-10%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.theChampPullOut{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%2023%206%20q%20-2%206%20-10%206%20v%20-6%20l%20-6%209%20l%206%209%20v%20-6%20q%2010%202%2010%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.theChampCommentingTabs li{padding-left:0!important;float:left;margin:0 1em 0 0!important;list-style:none;color:#aaa;display:block;cursor:pointer;font-size:.85em}.theChampCommentingTabs ul{float:left;padding-left:0;margin-left:0}li.theChampSelectedTab{color:#333;border-bottom:2px solid #23a9e1}.fb-comments,.fb-comments span,.fb-comments span iframe[style]{min-width:100%!important;width:100%!important}#mc-input,#user_email,#user_login{height:auto!important}div.the_champ_horizontal_counter li{margin-right:14px!important}div.theChampTotalShareCount{word-wrap:normal!important;font-weight: bolder;font-family: sans-serif;padding: 0;margin: 0;text-align:center}div.theChampTotalShareText{word-wrap:normal!important;margin: 0;padding: 0;text-align: center;}.theChampAIMBackground{background-color: #10ff00}.theChampAmazonWishListBackground{background-color: #ffe000}.theChampAOLMailBackground{background-color: #2A2A2A}.theChampAppnetBackground{background-color: #5D5D5D}.theChampBalatarinBackground{background-color: #fff}.theChampBibSonomyBackground{background-color: #000}.theChampBittyBrowserBackground{background-color: #EFEFEF}.theChampBlinklistBackground{background-color: #3D3C3B}.theChampBloggerPostBackground{background-color: #FDA352}.theChampBlogMarksBackground{background-color: #535353}.theChampBookmarksfrBackground{background-color: #E8EAD4}.theChampBoxnetBackground{background-color: #1A74B0}.theChampBuddyMarksBackground{background-color: #ffd400}.theChampCare2NewsBackground{background-color: #6EB43F}.theChampCopyLinkBackground{background-color: #FFC112}.theChampCommentBackground{background-color: #444}.theChampCiteULikeBackground{background-color: #2781CD}.theChampDiaryRuBackground{background-color: #E8D8C6}.theChampDiasporaBackground{background-color: #0166FF}.theChampDiigoBackground{background-color: #4A8BCA}.theChampDoubanBackground{background-color: #497700}.theChampDraugiemBackground{background-color: #ffad66}.theChampDZoneBackground{background-color: #fff088}.theChampEvernoteBackground{background-color: #8BE056}.theChampFacebookMessengerBackground{background-color: #0084FF}.theChampFarkBackground{background-color: #555}.theChampFintelBackground{background-color:#087515}.theChampFlipboardBackground{background-color: #CC0000}.theChampFolkdBackground{background-color: #0F70B2}.theChampGoogleClassroomBackground{background-color: #FFC112}.theChampGoogleBookmarksBackground{background-color: #CB0909}.theChampGoogleGmailBackground{background-color: #E5E5E5}.theChampHackerNewsBackground{background-color: #F60}.theChampHatenaBackground{background-color: #00A6DB}.theChampInstapaperBackground{background-color: #EDEDED}.theChampJamespotBackground{background-color: #FF9E2C}.theChampKakaoBackground{background-color: #FCB700}.theChampKindleItBackground{background-color: #2A2A2A}.theChampKikBackground{background-color: #2A2A2A}.theChampKnownBackground{background-color: #fff101}.theChampMailRuBackground{background-color: #356FAC}.theChampMendeleyBackground{background-color: #A70805}.theChampMeneameBackground{background-color: #FF7D12}.theChampMixiBackground{background-color: #EDEDED}.theChampMySpaceBackground{background-color: #2A2A2A}.theChampNetvouzBackground{background-color: #c0ff00}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampOutlookcomBackground{background-color: #0072C6}.theChampPapalyBackground{background-color: #3AC0F6}.theChampPinboardBackground{background-color: #1341DE}.theChampPlurkBackground{background-color: #CF682F}.theChampPocketBackground{background-color: #f0f0f0}.theChampPrintFriendlyBackground{background-color: #61D1D5}.theChampProtopageBookmarksBackground{background-color: #413FFF}.theChampPushaBackground{background-color: #0072B8}.theChampQzoneBackground{background-color: #2B82D9}.theChampRefindBackground{background-color: #1492ef}.theChampRediffMyPageBackground{background-color: #D20000}.theChampRenrenBackground{background-color: #005EAC}.theChampSinaWeiboBackground{background-color: #ff0}.theChampSiteJotBackground{background-color: #ffc800}.theChampSkypeBackground{background-color: #00AFF0}.theChampSMSBackground{background-color: #6ebe45}.theChampSlashdotBackground{background-color: #004242}.theChampSvejoBackground{background-color: #fa7aa3}.theChampSymbalooFeedsBackground{background-color: #6DA8F7}.theChampTelegramBackground{background-color: #3DA5f1}.theChampThreemaBackground{background-color:#2A2A2A}.theChampTrelloBackground{background-color: #1189CE}.theChampTuentiBackground{background-color: #0075C9}.theChampTwiddlaBackground{background-color: #EDEDED}.theChampTypePadPostBackground{background-color: #2A2A2A}.theChampViadeoBackground{background-color: #2A2A2A}.theChampViberBackground{background-color: #8B628F}.theChampWaneloBackground{background-color: #fff}.theChampWebnewsBackground{background-color: #CC2512}.theChampWordPressBackground,.theChampWordpressBackground{background-color: #464646}.theChampWykopBackground{background-color: #367DA9}.theChampYahooMailBackground{background-color: #400090}.theChampYoolinkBackground{background-color: #A2C538}.theChampBehanceBackground{background-color: #053eff}.theChampFlickrBackground{background-color: #ff0084}.theChampFoursquareBackground{background-color: #f94877}.theChampGithubBackground{background-color: #2a2a2a}.theChampMediumBackground{background-color: #2a2a2a}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampSnapchatBackground{background-color: #ffe900}.theChampVimeoBackground{background-color: #1ab7ea}.theChampYoutubeBackground{background-color: #ff0000}.theChampRSSBackground{background-color: #e3702d}.theChampGentleReaderBackground{background-color:#46aecf}.theChampBehanceSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20d%3D%22M3.862%208.136h5.66c1.377%200%203.19%200%204.13.566a3.705%203.705%200%200%201%201.837%203.26c0%201.66-.88%202.905-2.32%203.494v.042c1.924.397%202.97%201.838%202.97%203.76%200%202.297-1.636%204.483-4.743%204.483H3.86V8.14zm2.078%206.71h4.152c2.36%200%203.322-.856%203.322-2.493%200-2.16-1.53-2.468-3.322-2.468H5.94v4.96zm0%207.144h5.2c1.792%200%202.93-1.09%202.93-2.797%200-2.03-1.64-2.598-3.388-2.598H5.94v5.395zm22.017-1.833C27.453%2022.65%2025.663%2024%2023.127%2024c-3.607%200-5.31-2.49-5.422-5.944%200-3.386%202.23-5.878%205.31-5.878%204%200%205.225%203.74%205.116%206.47h-8.455c-.067%201.966%201.05%203.716%203.52%203.716%201.53%200%202.6-.742%202.928-2.206h1.838zm-1.793-3.15c-.088-1.77-1.42-3.19-3.256-3.19-1.946%200-3.106%201.466-3.236%203.19h6.492zM20.614%208h4.935v1.68h-4.94z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFlickrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2223%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%229%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFoursquareSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.516%203H7.586C5.66%203%205%204.358%205%205.383v21.995c0%201.097.65%201.407.958%201.53.31.126%201.105.206%201.676-.36l6.72-7.455c.105-.12.49-.284.552-.284h4.184c1.79%200%201.81-1.45%201.997-2.206.157-.63%201.946-9.57%202.58-12.395.523-2.32-.104-3.21-2.15-3.21zM20.2%209.682c-.07.33-.368.66-.75.693h-5.44c-.61-.034-1.108.422-1.108%201.032v.665c0%20.61.5%201.24%201.108%201.24h4.607c.43%200%20.794.276.7.737-.093.46-.573%202.82-.627%203.07-.052.254-.282.764-.716.764h-3.62c-.682%200-1.36-.008-1.816.56-.458.573-4.534%205.293-4.534%205.293V6.403c0-.438.31-.746.715-.74h11.274c.41-.006.915.41.834%201L20.2%209.68z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampGithubSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203.32c-7.182%200-13%205.82-13%2013%200%205.754%203.72%2010.612%208.89%2012.335.65.114.893-.276.893-.617%200-.31-.016-1.333-.016-2.42-3.266.6-4.11-.797-4.37-1.53-.147-.373-.78-1.527-1.334-1.835-.455-.244-1.105-.845-.016-.86%201.024-.017%201.755.942%202%201.332%201.17%201.966%203.038%201.414%203.785%201.073.114-.845.455-1.414.83-1.74-2.893-.324-5.916-1.445-5.916-6.418%200-1.414.504-2.584%201.333-3.494-.13-.325-.59-1.657.13-3.445%200%200%201.085-.34%203.57%201.337%201.04-.293%202.146-.44%203.25-.44s2.21.147%203.25.44c2.49-1.69%203.58-1.337%203.58-1.337.714%201.79.26%203.12.13%203.446.828.91%201.332%202.064%201.332%203.494%200%204.99-3.04%206.094-5.93%206.42.47.405.876%201.185.876%202.404%200%201.74-.016%203.136-.016%203.575%200%20.34.244.743.894.613C25.28%2026.933%2029%2022.053%2029%2016.32c0-7.182-5.817-13-13-13z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampSnapchatSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.177%2020.978c-2.867-.473-4.157-3.414-4.21-3.54l-.01-.02c-.153-.31-.187-.57-.1-.772.164-.39.774-.583%201.177-.71.113-.037.22-.07.306-.105.715-.28%201.073-.625%201.066-1.03-.006-.312-.252-.593-.642-.732a1.168%201.168%200%200%200-.44-.084.975.975%200%200%200-.405.083c-.34.16-.65.246-.91.258a.789.789%200%200%201-.357-.087l.027-.45.005-.062c.09-1.432.203-3.215-.266-4.264C20.03%206.34%2017.073%206.1%2016.2%206.1h-.052l-.363.003c-.87%200-3.818.243-5.208%203.36-.47%201.05-.357%202.833-.268%204.264l.03.513a.83.83%200%200%201-.41.09c-.276%200-.6-.087-.97-.26a.795.795%200%200%200-.335-.067c-.43%200-.946.282-1.026.704-.06.305.077.748%201.054%201.134.087.036.193.07.305.105.403.128%201.012.322%201.18.71.084.203.05.463-.103.773l-.01.022c-.054.125-1.344%203.068-4.21%203.54a.437.437%200%200%200-.366.455.6.6%200%200%200%20.048.196c.216.504%201.123.87%202.775%201.13.055.075.113.34.148.5.036.16.07.32.12.494.05.17.18.374.514.374.133%200%20.292-.03.475-.067.275-.053.652-.127%201.124-.127.26%200%20.532.022.805.067.532.09.985.41%201.51.78.75.53%201.6%201.132%202.894%201.132.034%200%20.07%200%20.105-.005.04.002.095.004.153.004%201.29%200%202.142-.6%202.892-1.132.526-.37.978-.69%201.51-.78.274-.045.545-.068.807-.068.45%200%20.805.056%201.123.12.2.037.36.057.476.057h.024c.246%200%20.42-.13.488-.365.05-.17.086-.327.12-.49.037-.16.094-.422.15-.496%201.65-.256%202.56-.624%202.773-1.125a.568.568%200%200%200%20.047-.196.433.433%200%200%200-.363-.458z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampTumblrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.775%2021.962c-.37.177-1.08.33-1.61.345-1.598.043-1.907-1.122-1.92-1.968v-6.217h4.007V11.1H17.26V6.02h-2.925s-.132.044-.144.15c-.17%201.556-.895%204.287-3.923%205.378v2.578h2.02v6.522c0%202.232%201.647%205.404%205.994%205.33%201.467-.025%203.096-.64%203.456-1.17l-.96-2.846z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampVimeoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.926%2010.627c-.103%202.25-1.675%205.332-4.716%209.245C19.066%2023.957%2016.406%2026%2014.23%2026c-1.348%200-2.49-1.244-3.42-3.732l-1.867-6.844C8.25%2012.937%207.51%2011.69%206.715%2011.69c-.173%200-.778.365-1.815%201.09l-1.088-1.4a300.012%20300.012%200%200%200%203.374-3.01c1.522-1.315%202.666-2.007%203.427-2.076%201.8-.173%202.907%201.057%203.322%203.69.45%202.84.76%204.608.935%205.3.52%202.356%201.09%203.534%201.713%203.534.483%200%201.21-.764%202.18-2.294.97-1.528%201.488-2.692%201.558-3.49.14-1.32-.38-1.98-1.553-1.98-.554%200-1.125.126-1.712.378%201.137-3.722%203.308-5.53%206.513-5.426%202.378.068%203.498%201.61%203.36%204.62z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampRSSSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cellipse%20cx%3D%227.952%22%20cy%3D%2224.056%22%20rx%3D%222.952%22%20ry%3D%222.944%22%3E%3C%2Fellipse%3E%3Cpath%20d%3D%22M5.153%2016.625c2.73%200%205.295%201.064%207.22%202.996a10.2%2010.2%200%200%201%202.996%207.255h4.2c0-7.962-6.47-14.44-14.42-14.44v4.193zm.007-7.432c9.724%200%2017.636%207.932%2017.636%2017.682H27C27%2014.812%2017.203%205%205.16%205v4.193z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMeWeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M9.636%2010.427a1.22%201.22%200%201%201-2.44%200%201.22%201.22%200%201%201%202.44%200zM15.574%2010.431a1.22%201.22%200%200%201-2.438%200%201.22%201.22%200%201%201%202.438%200zM22.592%2010.431a1.221%201.221%200%201%201-2.443%200%201.221%201.221%200%200%201%202.443%200zM29.605%2010.431a1.221%201.221%200%201%201-2.442%200%201.221%201.221%200%200%201%202.442%200zM3.605%2013.772c0-.471.374-.859.859-.859h.18c.374%200%20.624.194.789.457l2.935%204.597%202.95-4.611c.18-.291.43-.443.774-.443h.18c.485%200%20.859.387.859.859v8.113a.843.843%200%200%201-.859.845.857.857%200%200%201-.845-.845V16.07l-2.366%203.559c-.18.276-.402.443-.72.443-.304%200-.526-.167-.706-.443l-2.354-3.53V21.9c0%20.471-.374.83-.845.83a.815.815%200%200%201-.83-.83v-8.128h-.001zM14.396%2014.055a.9.9%200%200%201-.069-.333c0-.471.402-.83.872-.83.415%200%20.735.263.845.624l2.23%206.66%202.187-6.632c.139-.402.428-.678.859-.678h.124c.428%200%20.735.278.859.678l2.187%206.632%202.23-6.675c.126-.346.415-.609.83-.609.457%200%20.845.361.845.817a.96.96%200%200%201-.083.346l-2.867%208.032c-.152.43-.471.706-.887.706h-.165c-.415%200-.721-.263-.872-.706l-2.161-6.328-2.16%206.328c-.152.443-.47.706-.887.706h-.165c-.415%200-.72-.263-.887-.706l-2.865-8.032z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampYoutubeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.78%2011.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618%200-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874%202.184-.874%202.184S5%2013.386%205%2015.166v1.67c0%201.78.22%203.56.22%203.56s.215%201.516.874%202.184c.837.875%201.936.85%202.426.94%201.76.17%207.48.22%207.48.22s4.623-.007%207.7-.23c.43-.05%201.37-.056%202.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052%207.254v-6.18l5.944%203.1-5.944%203.08z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampTelegramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-3%2036%2036%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.515%206.896L6.027%2014.41c-1.33.534-1.322%201.276-.243%201.606l5%201.56%201.72%205.66c.226.625.115.873.77.873.506%200%20.73-.235%201.012-.51l2.43-2.363%205.056%203.734c.93.514%201.602.25%201.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampInstagramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%22-10%20-10%20148%20148%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampWhatsappBackground a,i.theChampLineBackground a,i.theChampViberBackground a{display:inline!important}.the_champ_sharing_container a{padding:0!important;box-shadow:none!important;border:none!important}div.course_instructor_widget .the_champ_vertical_sharing{display:none!important;}@media screen and (max-width:783px){#the_champ_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}#the_champ_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92%}}@media screen and (max-width:475px){#the_champ_sharing_more_content .all-services ul li{width:100%!important;}}#ss_openid{border:1px solid gray;display:inline;font-family:"Trebuchet MS";font-size:12px;width:98%;padding:.35em .325em .75em;margin-bottom:20px}#ss_openid form{margin-top:25px;margin-left:0;padding:0;background:transparent;-webkit-box-shadow:none;box-shadow:none}#ss_openid input{font-family:"Trebuchet MS";font-size:12px;width:100px;float:left}#ss_openid input[type=submit]{background:#767676;padding:.75em 2em;border:0;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:none;box-shadow:none;color:#fff;cursor:pointer;display:inline-block;font-weight:800;line-height:1;text-shadow:none;-webkit-transition:background .2s;transition:background .2s}#ss_openid legend{color:#FF6200;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:table;max-width:100%;padding:0;white-space:normal}#ss_openid input.openid_login{background-color:#fff;background-position:0 50%;color:#000;width:220px;margin-right:10px;height:30px;margin-bottom:5px;background:#fff;background-image:-webkit-linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0));border:1px solid #bbb;-webkit-border-radius:3px;border-radius:3px;display:block;padding:.7em;line-height:1.5}#ss_openid a{color:silver}#ss_openid a:hover{color:#5e5e5e}.heateor_ms_subscribe_option{line-height: 14px;margin-top: 8px;}.heateor_ms_subscribe_option input.heateor_ms_checkbox, .heateor_ms_subscribe_option label.heateor_ms_checkbox_label{float:left;font-size: 15px;margin: 0;color: #666;}.heateor_ms_subscribe_option input.heateor_ms_checkbox{margin: 0 4px 0 0;width: 15px;height: 15px;float: left;}div.heateor_ss_sl_optin_container{clear:both}div.heateor_ss_sl_optin_container a{color:blue}div.heateor_ss_sl_optin_container label{font-size:11px;font-weight:normal}input.heateor_ss_social_login_optin{vertical-align:middle}div.theChampFacebookLogoContainer{width:25px;height:25px;border-radius:999px;background-color:white;margin:5px auto;}div.the_champ_login_container i.theChampFacebookBackground{background-color:#218cf2!important}div.the_champ_bottom_sharing{margin-bottom:0}.theChampTwitchBackground{background-color:#6441A5}.theChampTwitchLoginSvg{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20300%20300%22%3E%3Cpath%20d%3D%22M%2055%2030%20h%20200%20v%20160%20l%20-40%2040%20h%20-50%20l%20-40%2040%20v%20-40%20l%2030%20-30%20h%2060%20l%2020%20-20%20v%20-132%20h%20-165%20v%20152%20h%2055%20v%2070%20h%20-20%20v%20-40%20h%20-65%20v%20-160%20z%20M%20130%2090%20v%2060%20h%2015%20v%20-60%20z%20M%20185%2090%20v%2060%20h%2015%20v%20-60%20z%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.theChampParlerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20height%3D%27100%25%27%20width%3D%27100%25%27%20viewBox%3D%27-24%20-30%20140%20160%27%3E%3Cg%20fill%3D%27%23fff%27%3E%3Cpath%20d%3D%27M58.34%2083.31h-25v-8.49c0-4.5%203.64-8.14%208.14-8.14h16.87c13.8%200%2025.02-11.19%2025.02-24.94%200-13.75-11.23-24.94-25.03-24.94h-.26l-5.3-.16H0C0%207.45%207.45%200%2016.63%200h36.41l5.44.17C81.39.24%20100%2018.86%20100%2041.74c0%2022.92-18.69%2041.57-41.66%2041.57z%27%3E%3C%2Fpath%3E%3Cpath%20d%3D%27M16.65%20100C7.46%20100%20.02%2092.55.02%2083.37V49.49c0-8.92%207.23-16.16%2016.16-16.16h42.19a8.32%208.32%200%20010%2016.64h-33.5c-4.53%200-8.21%203.67-8.21%208.21V100z%27%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}div#the_champ_sharing_more_content ss.theChampParlerSvg{width:92%!important}.theChampRedditLoginSvg{background-size:125%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2.5%20-3.5%2039%2039%22%3E%3Cpath%20d%3D%22M28.543%2015.774a2.953%202.953%200%200%200-2.951-2.949%202.882%202.882%200%200%200-1.9.713%2014.075%2014.075%200%200%200-6.85-2.044l1.38-4.349%203.768.884a2.452%202.452%200%201%200%20.24-1.176l-4.274-1a.6.6%200%200%200-.709.4l-1.659%205.224a14.314%2014.314%200%200%200-7.316%202.029%202.908%202.908%200%200%200-1.872-.681%202.942%202.942%200%200%200-1.618%205.4%205.109%205.109%200%200%200-.062.765c0%204.158%205.037%207.541%2011.229%207.541s11.22-3.383%2011.22-7.541a5.2%205.2%200%200%200-.053-.706%202.963%202.963%200%200%200%201.427-2.51zm-18.008%201.88a1.753%201.753%200%200%201%201.73-1.74%201.73%201.73%200%200%201%201.709%201.74%201.709%201.709%200%200%201-1.709%201.711%201.733%201.733%200%200%201-1.73-1.711zm9.565%204.968a5.573%205.573%200%200%201-4.081%201.272h-.032a5.576%205.576%200%200%201-4.087-1.272.6.6%200%200%201%20.844-.854%204.5%204.5%200%200%200%203.238.927h.032a4.5%204.5%200%200%200%203.237-.927.6.6%200%201%201%20.844.854zm-.331-3.256a1.726%201.726%200%201%201%201.709-1.712%201.717%201.717%200%200%201-1.712%201.712z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampDisqusLoginSvg{background-size:112%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer%5f1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%20200%20200%22%20enable-background%3D%22new%200%200%20200%20200%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%20id%3D%22Layer%5f2%22%3E%3C%2Fg%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M102.535%2C167.5c-16.518%2C0-31.621-6.036-43.298-16.021L30.5%2C155.405l11.102-27.401%0A%09c-3.868-8.535-6.038-18.01-6.038-28.004c0-37.277%2C29.984-67.5%2C66.971-67.5c36.984%2C0%2C66.965%2C30.223%2C66.965%2C67.5%0A%09C169.5%2C137.284%2C139.52%2C167.5%2C102.535%2C167.5z%20M139.102%2C99.807v-0.188c0-19.478-13.736-33.367-37.42-33.367h-25.58v67.5h25.201%0A%09C125.171%2C133.753%2C139.102%2C119.284%2C139.102%2C99.807L139.102%2C99.807z%20M101.964%2C117.168h-7.482V82.841h7.482%0A%09c10.989%2C0%2C18.283%2C6.265%2C18.283%2C17.07v0.188C120.247%2C110.995%2C112.953%2C117.168%2C101.964%2C117.168z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampDropboxLoginSvg{background-size:113%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%20id%3D%22svg126%22%20version%3D%221.1%22%20viewBox%3D%22-35.3175%20-50%20306.085%20300%22%3E%3Cdefs%20id%3D%22defs112%22%3E%3Cstyle%20id%3D%22style110%22%3E.cls-1%7Bfill%3A%23ffffff%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20id%3D%22polygon116%22%20class%3D%22cls-1%22%20d%3D%22M58.86%2075l58.87-37.5L58.86%200%200%2037.5z%22%2F%3E%3Cpath%20id%3D%22polygon118%22%20class%3D%22cls-1%22%20d%3D%22M176.59%2075l58.86-37.5L176.59%200l-58.86%2037.5z%22%2F%3E%3Cpath%20id%3D%22polygon120%22%20class%3D%22cls-1%22%20d%3D%22M117.73%20112.5L58.86%2075%200%20112.5%2058.86%20150z%22%2F%3E%3Cpath%20id%3D%22polygon122%22%20class%3D%22cls-1%22%20d%3D%22M176.59%20150l58.86-37.5L176.59%2075l-58.86%2037.5z%22%2F%3E%3Cpath%20id%3D%22polygon124%22%20class%3D%22cls-1%22%20d%3D%22M176.59%20162.5L117.73%20125l-58.87%2037.5%2058.87%2037.5z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampFoursquareLoginSvg{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-6.25%20-4%2040%2040%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.516%203H7.586C5.66%203%205%204.358%205%205.383v21.995c0%201.097.65%201.407.958%201.53.31.126%201.105.206%201.676-.36l6.72-7.455c.105-.12.49-.284.552-.284h4.184c1.79%200%201.81-1.45%201.997-2.206.157-.63%201.946-9.57%202.58-12.395.523-2.32-.104-3.21-2.15-3.21zM20.2%209.682c-.07.33-.368.66-.75.693h-5.44c-.61-.034-1.108.422-1.108%201.032v.665c0%20.61.5%201.24%201.108%201.24h4.607c.43%200%20.794.276.7.737-.093.46-.573%202.82-.627%203.07-.052.254-.282.764-.716.764h-3.62c-.682%200-1.36-.008-1.816.56-.458.573-4.534%205.293-4.534%205.293V6.403c0-.438.31-.746.715-.74h11.274c.41-.006.915.41.834%201L20.2%209.68z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) no-repeat center center}
1
+ #the_champ_error{color:red;margin:7px 0}.the_champ_login_container{margin:2px 0}.the_champ_login_container img,.the_champ_sharing_container img{cursor:pointer;margin:2px;border:none}.the_champ_login_container img{display:none;float:left}#the_champ_loading_image{display:block!important;float:none}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#the_champ_sharing_more_providers{position:fixed;top:50%;left:47%;background:#FAFAFA;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important;height:308px}#the_champ_popup_bg,#heateor_ss_browser_popup_bg,#heateor_ss_lj_popup_bg{background:url(../images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#the_champ_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#58B8F8!important;border-bottom:1px solid #D7D7D7!important;color:#fff;font-weight:700;letter-spacing:inherit;line-height:34px!important;padding:0!important;text-align:center;text-transform:none;margin:0!important;text-shadow:none!important;width:100%}#the_champ_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#the_champ_sharing_more_providers #the_champ_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:auto;width:100%}#the_champ_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#the_champ_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#the_champ_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#the_champ_sharing_more_content .all-services ul li{margin:0;background:0 0!important;float:left;width:33.3333%!important;text-align:left!important}#the_champ_sharing_more_providers .close-button img{margin:0;}#the_champ_sharing_more_providers .close-button.separated{background:0 0!important;border:none!important;box-shadow:none!important;width:auto!important;height:auto!important;z-index:1000}#the_champ_sharing_more_providers .close-button{height:auto!important;width:auto!important;left:auto!important;display:block!important;color:#555!important;cursor:pointer!important;font-size:29px!important;line-height:29px!important;margin:0!important;padding:0!important;position:absolute;right:-13px;top:-11px}#the_champ_sharing_more_providers .filter input.search{width:94%;display:block;float:none;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-weight:300;height:auto;line-height:inherit;margin:0 auto;padding:5px 8px 5px 10px;border:1px solid #ccc!important;color:#000;background:#FFF!important;font-size:16px!important;text-align:left!important}#the_champ_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#the_champ_sharing_more_providers .footer-panel p{background-color:transparent;top:0;text-align:left!important;color:#000;font-family:'helvetica neue',arial,helvetica,sans-serif;font-size:12px;line-height:1.2;margin:0!important;padding:0 6px!important;text-indent:0!important}#the_champ_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#the_champ_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:18px;height:auto;line-height:28px;overflow:hidden;padding:8px;text-decoration:none!important;text-overflow:ellipsis;white-space:nowrap;border:none!important;text-indent:0!important;background:0 0!important;text-shadow:none;box-shadow:none!important}.the_champ_share_count{display:block;text-indent:0!important;visibility:hidden;background-color:#58B8F8!important;width:5px;height:auto;text-align:center;min-width:8px!important;padding:1px 4px!important;color:#fff!important;font-family:'Open Sans',arial,sans-serif!important;font-size:10px!important;font-weight:600!important;-webkit-border-radius:15px!important;border-radius:15px!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.4);box-shadow:0 2px 2px rgba(0,0,0,.4);text-shadow:0 -1px 0 rgba(0,0,0,.2);line-height:14px!important;border:2px solid #fff!important;z-index:1;margin:2px auto!important;box-sizing:content-box!important}.the_champ_share_count,.the_champ_vertical_counter,.the_champ_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}ul.the_champ_login_ul,ul.the_champ_sharing_ul,ul.heateor_ss_follow_ul{list-style:none!important;padding-left:0!important}#the_champ_comment_toggle{margin-bottom:10px}ul.the_champ_login_ul{margin:3px 0!important}ul.the_champ_login_ul li{background:none;float:left;padding:0!important;margin:0!important;border:0!important;width:auto!important;clear:none!important;list-style-type:none!important}.theChampLoginSvg{-webkit-box-sizing:content-box;-moz-box-sizing:border-box;box-sizing:content-box;width:100%;height:100%;background-position:center!important}.theChampXingLoginSvg{background-size:109%!important;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgOSBoIDUgbCA0IDQgbCAtNSA3IGggLTUgbCA1IC03IHogbSAxNSAtNCBoIDUgbCAtOSAxMyBsIDQgOCBoIC01IGwgLTQgLTggeiIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampWordpressLoginSvg{background-size:83%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22%23FFF%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%2F%3E%3Cg%20fill%3D%22%23464646%22%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%2F%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampGoogleLoginSvg{background-size:101%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-8%20-8%2064%2064%22%3E%3Cdefs%3E%3Cpath%20id%3D%22a%22%20d%3D%22M44.5%2020H24v8.5h11.8C34.7%2033.9%2030.1%2037%2024%2037c-7.2%200-13-5.8-13-13s5.8-13%2013-13c3.1%200%205.9%201.1%208.1%202.9l6.4-6.4C34.6%204.1%2029.6%202%2024%202%2011.8%202%202%2011.8%202%2024s9.8%2022%2022%2022c11%200%2021-8%2021-22%200-1.3-.2-2.7-.5-4z%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22b%22%3E%3Cuse%20xlink%3Ahref%3D%22%23a%22%20overflow%3D%22visible%22%2F%3E%3C%2FclipPath%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%23FBBC05%22%20d%3D%22M0%2037V11l17%2013z%22%2F%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%23EA4335%22%20d%3D%22M0%2011l17%2013%207-6.1L48%2014V0H0z%22%2F%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%2334A853%22%20d%3D%22M0%2037l30-23%207.9%201L48%200v48H0z%22%2F%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%234285F4%22%20d%3D%22M48%2048L17%2024l-4-3%2035-10z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampLinkedinLoginSvg{background-size:106%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-1%200%2033%2035%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampTwitterLoginSvg{background-size:106%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%0A%3Cpath%20d%3D%22M28%208.557a9.913%209.913%200%200%201-2.828.775%204.93%204.93%200%200%200%202.166-2.725%209.738%209.738%200%200%201-3.13%201.194%204.92%204.92%200%200%200-3.593-1.55%204.924%204.924%200%200%200-4.794%206.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942%204.942%200%200%200-.665%202.477c0%201.71.87%203.214%202.19%204.1a4.968%204.968%200%200%201-2.23-.616v.06c0%202.39%201.7%204.38%203.952%204.83-.414.115-.85.174-1.297.174-.318%200-.626-.03-.928-.086a4.935%204.935%200%200%200%204.6%203.42%209.893%209.893%200%200%201-6.114%202.107c-.398%200-.79-.023-1.175-.068a13.953%2013.953%200%200%200%207.55%202.213c9.056%200%2014.01-7.507%2014.01-14.013%200-.213-.005-.426-.015-.637.96-.695%201.795-1.56%202.455-2.55z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') left no-repeat}.theChampVkontakteLoginSvg{background-size:113%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%221%202%2030%2028%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M15.764%2022.223h1.315s.394-.044.6-.262c.184-.2.18-.574.18-.574s-.03-1.764.79-2.023c.81-.255%201.844%201.705%202.942%202.46.832.57%201.464.445%201.464.445l2.936-.04s1.538-.097.81-1.304c-.06-.1-.426-.894-2.186-2.526-1.843-1.71-1.594-1.434.624-4.39%201.353-1.804%201.893-2.902%201.724-3.374-.16-.45-1.153-.33-1.153-.33l-3.306.02s-.247-.034-.428.074c-.178.108-.293.356-.293.356s-.522%201.394-1.223%202.58c-1.47%202.5-2.06%202.633-2.3%202.476-.563-.36-.42-1.454-.42-2.23%200-2.423.365-3.435-.72-3.696-.357-.085-.623-.143-1.544-.15-1.182-.014-2.18.003-2.743.28-.378.185-.667.595-.49.62.218.027.713.13.975.49.34.46.33%201.496.33%201.496s.193%202.852-.46%203.206c-.442.245-1.056-.252-2.37-2.52-.67-1.163-1.18-2.446-1.18-2.446s-.1-.24-.273-.37c-.212-.155-.506-.204-.506-.204l-3.145.02s-.473.015-.647.22c-.154.183-.01.56-.01.56s2.46%205.757%205.245%208.657c2.553%202.66%205.454%202.485%205.454%202.485z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampLineLoginSvg{background-size:91%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampMicrosoftLoginSvg{background-size:91%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-16.61977%20-16.61977%20123.565208%20123.834167%22%20id%3D%22svg8375%22%3E%3Cpath%20d%3D%22M%200%2C12.40183%2035.68737%2C7.5416%2035.70297%2C41.96435%200.03321%2C42.16748%20z%20m%2035.67037%2C33.52906%200.0277%2C34.45332%20-35.66989%2C-4.9041%20-0.002%2C-29.77972%20z%20M%2039.99644%2C6.90595%2087.31462%2C0%20l%200%2C41.527%20-47.31818%2C0.37565%20z%20M%2087.32567%2C46.25471%2087.31457%2C87.59463%2039.9964%2C80.91625%2039.9301%2C46.17767%20z%22%20id%3D%22path13%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') left no-repeat}.theChampKakaoLoginSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.345%206h-8.688c-.583%200-1.06.45-1.06%201.005v8.814c0%20.553.477%201.003%201.06%201.003h4.007c-.03.98-.445%202.056-1.077%202.996-.612.904-1.613%201.796-2.156%202.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022%202.774%202.975s.137.137.247.163c.126.03.27.032.368-.042%204.84-3.56%205.537-8.023%205.66-10.44V7.004C21.403%206.45%2020.93%206%2020.346%206%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampSpotifyLoginSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20186.845%20186.845%22%20style%3D%22enable-background%3Anew%200%200%20186.845%20186.845%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M128.875%2C120.962c-31.094-14.37-74.616-8.014-76.453-7.737c-4.096%2C0.619-6.915%2C4.44-6.296%2C8.536%20c0.619%2C4.096%2C4.443%2C6.912%2C8.536%2C6.296c0.406-0.062%2C40.867-5.982%2C67.92%2C6.521c1.018%2C0.471%2C2.089%2C0.694%2C3.142%2C0.694%20c2.834-0.001%2C5.546-1.614%2C6.813-4.355C134.274%2C127.157%2C132.635%2C122.7%2C128.875%2C120.962z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M137.614%2C93.953c-35.313-16.319-84.833-9.087-86.924-8.772c-4.094%2C0.619-6.911%2C4.438-6.294%2C8.532%20c0.616%2C4.095%2C4.438%2C6.916%2C8.531%2C6.301c0.468-0.071%2C47.206-6.857%2C78.394%2C7.556c1.02%2C0.471%2C2.089%2C0.694%2C3.142%2C0.694%20c2.834-0.001%2C5.546-1.614%2C6.814-4.356C143.014%2C100.148%2C141.374%2C95.691%2C137.614%2C93.953z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M143.49%2C65.736c-39.006-18.027-93.79-10.028-96.103-9.679c-4.094%2C0.619-6.911%2C4.438-6.294%2C8.532s4.44%2C6.919%2C8.531%2C6.3%20c0.523-0.079%2C52.691-7.657%2C87.573%2C8.463c1.018%2C0.471%2C2.089%2C0.694%2C3.142%2C0.694c2.834%2C0%2C5.546-1.614%2C6.813-4.355%20C148.89%2C71.93%2C147.25%2C67.474%2C143.49%2C65.736z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') left no-repeat;background-size:128%}.theChampGithubLoginSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20focusable%3D%27false%27%20aria-hidden%3D%27true%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2032%2032%27%3E%3Cpath%20fill%3D%27%23FFF%27%20d%3D%27M16%203.32c-7.182%200-13%205.82-13%2013%200%205.754%203.72%2010.612%208.89%2012.335.65.114.893-.276.893-.617%200-.31-.016-1.333-.016-2.42-3.266.6-4.11-.797-4.37-1.53-.147-.373-.78-1.527-1.334-1.835-.455-.244-1.105-.845-.016-.86%201.024-.017%201.755.942%202%201.332%201.17%201.966%203.038%201.414%203.785%201.073.114-.845.455-1.414.83-1.74-2.893-.324-5.916-1.445-5.916-6.418%200-1.414.504-2.584%201.333-3.494-.13-.325-.59-1.657.13-3.445%200%200%201.085-.34%203.57%201.337%201.04-.293%202.146-.44%203.25-.44s2.21.147%203.25.44c2.49-1.69%203.58-1.337%203.58-1.337.714%201.79.26%203.12.13%203.446.828.91%201.332%202.064%201.332%203.494%200%204.99-3.04%206.094-5.93%206.42.47.405.876%201.185.876%202.404%200%201.74-.016%203.136-.016%203.575%200%20.34.244.743.894.613C25.28%2026.933%2029%2022.053%2029%2016.32c0-7.182-5.817-13-13-13z%27%3E%3C%2Fpath%3E%3C%2Fsvg%3E') left no-repeat;background-size:94%}.theChampDribbbleLoginSvg{background:url('data:image/svg+xml;charset=utf8,%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-10%2010%201000%201000%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%20500c0-90.667%2022.334-174.333%2067-251%2044.667-76.667%20105.334-137.333%20182-182C325.667%2022.333%20409.334%200%20500%200c90.667%200%20174.334%2022.333%20251%2067%2076.667%2044.667%20137.334%20105.333%20182%20182%2044.667%2076.667%2067%20160.333%2067%20251s-22.333%20174.333-67%20251c-44.666%2076.667-105.333%20137.333-182%20182-76.666%2044.667-160.333%2067-251%2067-90.666%200-174.333-22.333-251-67-76.666-44.667-137.333-105.333-182-182C22.334%20674.333%200%20590.667%200%20500zm83%200c0%20104%2035%20195.667%20105%20275%2032-62.667%2082.667-122.333%20152-179%2069.334-56.667%20137-92.333%20203-107-10-23.333-19.666-44.333-29-63-114.666%2036.667-238.666%2055-372%2055-26%200-45.333-.333-58-1%200%202.667-.166%206-.5%2010-.333%204-.5%207.333-.5%2010zm13-103c14.667%201.333%2036.334%202%2065%202%20111.334%200%20217-15%20317-45-50.666-90-106.333-165-167-225-52.666%2026.667-97.833%2063.667-135.5%20111-37.666%2047.333-64.166%2099.667-79.5%20157zm149%20432c75.334%2058.667%20160.334%2088%20255%2088%2049.334%200%2098.334-9.333%20147-28-13.333-114-39.333-224.333-78-331-61.333%2013.333-123.166%2047-185.5%20101C321.167%20713%20275%20769.667%20245%20829zM398%2097c58.667%2060.667%20113%20136.333%20163%20227%2090.667-38%20159-86.333%20205-145-77.333-64-166-96-266-96-34%200-68%204.667-102%2014zm199%20298c10%2021.333%2021.334%2048.333%2034%2081%2049.334-4.667%20103-7%20161-7%2041.334%200%2082.334%201%20123%203-5.333-90.667-38-171.333-98-242-43.333%2064.667-116.666%20119.667-220%20165zm59%20151c34%2098.667%2057%20200%2069%20304%2052.667-34%2095.667-77.667%20129-131%2033.334-53.333%2053.334-111%2060-173-48.666-3.333-93-5-133-5-36.666%200-78.333%201.667-125%205z%22%2F%3E%3C%2Fsvg%3E') left no-repeat;background-size:78%}.theChampYahooLoginSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') left no-repeat;background-size:92%}.theChampDiscordLoginSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-3%20-3%2054%2054%22%20version%3D%221.1%22%3E%3Cpath%20d%3D%22M40%2012s-4.586-3.59-10-4l-.488.977C34.406%2010.176%2036.652%2011.89%2039%2014c-4.047-2.066-8.04-4-15-4-6.96%200-10.953%201.934-15%204%202.348-2.11%205.02-4.016%209.488-5.023L18%208c-5.68.535-10%204-10%204s-5.121%207.426-6%2022c5.16%205.953%2013%206%2013%206l1.64-2.184C13.856%2036.848%2010.716%2035.121%208%2032c3.238%202.45%208.125%205%2016%205s12.762-2.55%2016-5c-2.715%203.121-5.855%204.848-8.64%205.816L33%2040s7.84-.047%2013-6c-.879-14.574-6-22-6-22zM17.5%2030c-1.934%200-3.5-1.79-3.5-4s1.566-4%203.5-4%203.5%201.79%203.5%204-1.566%204-3.5%204zm13%200c-1.934%200-3.5-1.79-3.5-4s1.566-4%203.5-4%203.5%201.79%203.5%204-1.566%204-3.5%204z%22%20fill%3D%22%23fff%22%20id%3D%22surface1%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') left no-repeat}.theChampStackoverflowLoginSvg{background-size:88%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-20.5%20-20.5%20140%20170%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2288%2080%2099%2080%2099%20124%200%20124%200%2080%2011%2080%2011%20113%2088%20113%22%3E%3C%2Fpolygon%3E%3Cpath%20fill%3D%22%23fff%22%20fill-rule%3D%22nonzero%22%20d%3D%22M22.9878906%2C76.73%20L77.0128906%2C88.085%20L79.2838906%2C77.285%20L25.2588906%2C65.925%20L22.9878906%2C76.73%20Z%20M30.1368906%2C50.861%20L80.1828906%2C74.169%20L84.8448906%2C64.16%20L34.7978906%2C40.852%20L30.1368906%2C50.861%20Z%20M43.9848906%2C26.308%20L86.4128906%2C61.639%20L93.4788906%2C53.154%20L51.0508906%2C17.824%20L43.9848906%2C26.308%20Z%20M71.3718906%2C0.192%20L62.5118906%2C6.782%20L95.4598906%2C51.082%20L104.319891%2C44.493%20L71.3718906%2C0.192%20Z%20M22%2C102%20L77%2C102%20L77%2C91%20L22%2C91%20L22%2C102%20Z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') left no-repeat}.theChampAmazonLoginSvg{background-size:71%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%201100%201000%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M2%20776c3.333-5.333%208.666-5.667%2016-1%20166.666%2096.667%20348%20145%20544%20145%20130.666%200%20259.666-24.333%20387-73%203.333-1.333%208.166-3.333%2014.5-6%206.333-2.667%2010.833-4.667%2013.5-6%2010-4%2017.833-2%2023.5%206%205.666%208%203.833%2015.333-5.5%2022-12%208.667-27.334%2018.667-46%2030-57.334%2034-121.334%2060.333-192%2079-70.667%2018.667-139.667%2028-207%2028-104%200-202.334-18.167-295-54.5C162.333%20909.167%2079.333%20858%206%20792c-4-3.333-6-6.667-6-10%200-2%20.666-4%202-6zm301-285c0-46%2011.333-85.333%2034-118%2022.666-32.667%2053.666-57.333%2093-74%2036-15.333%2080.333-26.333%20133-33%2018-2%2047.333-4.667%2088-8v-17c0-42.667-4.667-71.333-14-86-14-20-36-30-66-30h-8c-22%202-41%209-57%2021s-26.334%2028.667-31%2050c-2.667%2013.333-9.334%2021-20%2023l-115-14c-11.334-2.667-17-8.667-17-18%200-2%20.333-4.333%201-7%2011.333-59.333%2039.166-103.333%2083.5-132C451.833%2019.333%20503.666%203.333%20563%200h25c76%200%20135.333%2019.667%20178%2059a190.52%20190.52%200%200%201%2018.5%2021.5c5.666%207.667%2010.166%2014.5%2013.5%2020.5%203.333%206%206.333%2014.667%209%2026%202.666%2011.333%204.666%2019.167%206%2023.5%201.333%204.333%202.333%2013.667%203%2028%20.666%2014.333%201%2022.833%201%2025.5v242c0%2017.333%202.5%2033.167%207.5%2047.5s9.833%2024.667%2014.5%2031c4.666%206.333%2012.333%2016.5%2023%2030.5%204%206%206%2011.333%206%2016%200%205.333-2.667%2010-8%2014-55.334%2048-85.334%2074-90%2078-8%206-17.667%206.667-29%202-9.334-8-17.5-15.667-24.5-23s-12-12.667-15-16-7.834-9.833-14.5-19.5c-6.667-9.667-11.334-16.167-14-19.5-37.334%2040.667-74%2066-110%2076-22.667%206.667-50.667%2010-84%2010-51.334%200-93.5-15.833-126.5-47.5S303%20549%20303%20491zm172-20c0%2026%206.5%2046.833%2019.5%2062.5S525%20557%20547%20557c2%200%204.833-.333%208.5-1%203.666-.667%206.166-1%207.5-1%2028-7.333%2049.666-25.333%2065-54%207.333-12.667%2012.833-26.5%2016.5-41.5%203.666-15%205.666-27.167%206-36.5.333-9.333.5-24.667.5-46v-25c-38.667%200-68%202.667-88%208-58.667%2016.667-88%2053.667-88%20111zm420%20322c1.333-2.667%203.333-5.333%206-8%2016.666-11.333%2032.666-19%2048-23%2025.333-6.667%2050-10.333%2074-11%206.666-.667%2013-.333%2019%201%2030%202.667%2048%207.667%2054%2015%202.666%204%204%2010%204%2018v7c0%2023.333-6.334%2050.833-19%2082.5-12.667%2031.667-30.334%2057.167-53%2076.5-3.334%202.667-6.334%204-9%204-1.334%200-2.667-.333-4-1-4-2-5-5.667-3-11%2024.666-58%2037-98.333%2037-121%200-7.333-1.334-12.667-4-16-6.667-8-25.334-12-56-12-11.334%200-24.667.667-40%202-16.667%202-32%204-46%206-4%200-6.667-.667-8-2-1.334-1.333-1.667-2.667-1-4%200-.667.333-1.667%201-3z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampFacebookLoginSvg{background-size:147%!important;padding-top:5px;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23218cf2%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') left no-repeat}.theChampSteamLoginSvg{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20300%20300%22%3E%3Ccircle%20cx%3D%2245%22%20cy%3D%22130%22%20r%3D%2225%22%20stroke%3D%22%23fff%22%20stroke-width%3D%227%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%22155%22%20cy%3D%22198%22%20r%3D%2225%22%20stroke%3D%22%23fff%22%20stroke-width%3D%227%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%22245%22%20cy%3D%22110%22%20r%3D%2235%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2210%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%22245%22%20cy%3D%22110%22%20r%3D%2215%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2210%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%20160%20170%20l%2045%20-64%20l%2040%2044%20l%20-62%2044%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2045%20130%20l%20110%2068%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2230%22%20fill%3D%22%23fff%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat;background-size:80%!important}.theChampInstagramLoginSvg{background-size:94%!important;background:url(data:image/svg+xml;charset=utf8,%3Csvg%20enable-background%3D%22new%200%200%20128%20128%22%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%220%200%20128%20128%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E) left no-repeat}.theChampLoginButton{background:url(../images/login/login.png) no-repeat}.theChampLogin{padding:0!important;margin:2px;height:35px;width:35px;float:left;cursor:pointer;border:none}.theChampInstagramLogin,.theChampTwitterLogin,.theChampXingLogin{display:block}.theChampXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.theChampFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.theChampLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.theChampGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.theChampInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.theChampVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.the_champ_sharing_ul,ul.heateor_ss_follow_ul{margin:1px 0!important}#heateor_ss_lj_popup_close img,#the_champ_sharing_popup_close img{opacity: 1!important;background:0 0!important;border:none!important;outline:0!important;box-shadow:none!important;width:auto!important;height:auto!important;top:inherit!important;right:inherit!important;left:9px!important;padding:0!important}ul.the_champ_sharing_ul li.theChampSharingRound,ul.heateor_ss_follow_ul li.theChampSharingRound{background:0 0!important}.the_champ_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style: normal;font-size: .8em;visibility:hidden;word-wrap:normal!important}ul.heateor_ss_follow_ul li{width:auto;}ul.heateor_ss_follow_ul li,ul.the_champ_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important;clear:none;}.theChampSharing{display:block;cursor:pointer;margin:2px}ul.the_champ_login_ul li:before,ul.the_champ_sharing_ul li:before,ul.heateor_ss_follow_ul li:before{content:none!important}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingXingButton{background-position:0 -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}.theChampSharingYummlyButton{background-position:-64px -128px;width:32px;height:32px}.theChampSharingBufferButton{background-position:-96px -128px;width:32px;height:32px}.theChampSharingTotalsharesButton{background-position: -200px -200px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingMoreButton{background-position:-96px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.the_champ_vertical_counter,.the_champ_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);box-shadow:0 1px 4px 1px rgba(0,0,0,.1);position:fixed;overflow:visible;z-index:10000000;display:block;padding:10px;border-radius:4px;opacity:1;box-sizing:content-box!important}.the_champ_vertical_counter li{clear:both}li.the_champ_facebook_share .fb-share-button span,li.the_champ_facebook_like .fb-like span,li.the_champ_facebook_recommend .fb-like span{vertical-align:top!important}li.the_champ_facebook_like .fb-like span iframe,li.the_champ_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000}div.the_champ_horizontal_sharing li{width:auto}div.the_champ_horizontal_sharing li.the_champ_facebook_share, div.the_champ_horizontal_counter li.the_champ_facebook_share{width:76px}div.the_champ_horizontal_sharing li.the_champ_facebook_like, div.the_champ_horizontal_counter li.the_champ_facebook_like{width:56px}div.the_champ_horizontal_sharing li.the_champ_facebook_recommend, div.the_champ_horizontal_counter li.the_champ_facebook_recommend{width:111px}div.the_champ_horizontal_sharing li.the_champ_twitter_tweet, div.the_champ_horizontal_counter li.the_champ_twitter_tweet{width:65px}div.the_champ_horizontal_counter li.the_champ_linkedin_share span, div.the_champ_horizontal_sharing li.the_champ_linkedin_share span{vertical-align:text-top!important}div.the_champ_horizontal_sharing li.the_champ_buffer_share{width:89px}div.the_champ_horizontal_sharing li.the_champ_linkedin_share, div.the_champ_horizontal_counter li.the_champ_linkedin_share{width:67px}div.the_champ_horizontal_sharing li.the_champ_buffer, div.the_champ_horizontal_counter li.the_champ_buffer{width:81px;}div.the_champ_horizontal_sharing li.the_champ_reddit, div.the_champ_horizontal_counter li.the_champ_reddit{width:124px}div.the_champ_horizontal_sharing li.the_champ_yummly, div.the_champ_horizontal_counter li.the_champ_yummly{width:61px}div.the_champ_horizontal_sharing li.the_champ_pinterest_pin, div.the_champ_horizontal_counter li.the_champ_pinterest_pin{width:58px}div.the_champ_horizontal_counter li.the_champ_pinterest_pin{line-height:1px}div.the_champ_horizontal_sharing li.the_champ_xing, div.the_champ_horizontal_counter li.the_champ_xing{width:67px}.the_champ_counter_container li{height:21px}input#user_login,input#user_pass{height:auto!important}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampInstagramBackground{background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%)}.theChampYummlyBackground{background-color:#E16120}.theChampBufferBackground{background-color:#000}.theChampYahooBackground{background-color:#400090}.theChampGithubBackground{background-color:#2a2a2a}.theChampSpotifyBackground{background-color:#1DB954}.theChampAmazonBackground{background-color:#f59829}.theChampDiscordBackground{background-color:#7289DA}.theChampStackoverflowBackground{background-color:#f3802e}.theChampDribbbleBackground{background-color:#ea4c89}.theChampKakaoBackground{background-color:#FCB700}.theChampDropboxBackground{background-color:#0061ff}.theChampFoursquareBackground{background-color:#f94877}.theChampDisqusBackground{background-color:#2e9fff}.theChampFacebookBackground{background-color:#4267B2}.theChampSteamBackground{background-color:#393939}.theChampLiveJournalBackground{background-color:#EDEDED}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:white;box-sizing:border-box;border:1px #4184F3 solid}.theChampLinkedinBackground{background-color:#0077B5}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#FF5700}.theChampStockTwitsBackground{background-color: #40576F}.theChampTumblrBackground{background-color:#29435D}.theChampLineBackground{background-color:#00C300}.theChampMicrosoftBackground{background-color:#2672ec}.theChampParlerBackground{background-color:#C63240}.theChampTwitterBackground{background-color:#55acee}.theChampVkontakteBackground{background-color:#5E84AC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampMeWeBackground{background-color:#007da1}.theChampMixBackground{background-color:#ff8226}.theChampTCBackground,.theChampTCBackground:hover{border-width: 0!important;background-color:transparent;}ul.the_champ_sharing_ul i.theChampTCBackground{background-color:transparent;font-style:normal!important;word-wrap:normal;color:#666;line-height:1;visibility:hidden;}.theChampSharingTotalsharesButton{font-style:normal!important;word-wrap:normal;color:#666;line-height:1}.theChampSharingSvg{width:100%;height:100%}.theChampYummlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBufferSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFacebookSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampDiggSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.theChampEmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFloatitSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%203C8.814%203%203%208.814%203%2016s5.814%2013%2013%2013%2013-5.814%2013-13S23.187%203%2016%203zm0%2025.152c-6.712%200-12.153-5.44-12.153-12.152C3.847%209.288%209.287%203.848%2016%203.848S28.152%209.288%2028.152%2016c0%206.712-5.44%2012.152-12.152%2012.152z%22%2F%3E%3Cpath%20d%3D%22M22.406%2016A6.402%206.402%200%200%200%2016%209.593%206.402%206.402%200%200%200%209.593%2016%206.4%206.4%200%200%200%2016%2022.406%206.4%206.4%200%200%200%2022.406%2016zM16%2021.39A5.392%205.392%200%200%201%2010.61%2016%205.403%205.403%200%200%201%2016%2010.61%205.393%205.393%200%200%201%2021.39%2016%205.382%205.382%200%200%201%2016%2021.39z%22%2F%3E%3Cpath%20d%3D%22M13.763%209.187V4.864c-4.475.9-8%204.424-8.898%208.898h4.322a7.226%207.226%200%200%201%204.576-4.575zm9.05%204.576h4.32c-.896-4.475-4.422-8-8.896-8.898v4.322a7.224%207.224%200%200%201%204.575%204.576zm-4.576%209.052v4.322c4.475-.9%208-4.424%208.897-8.9h-4.322a7.232%207.232%200%200%201-4.575%204.578zm-9.05-4.578H4.863c.898%204.475%204.424%208%208.898%208.9v-4.323a7.233%207.233%200%200%201-4.574-4.577z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2039%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMediumSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20focusable%3D%22false%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20d%3D%22M7.8%2011a.8.8%200%200%200-.27-.7l-2-2.42v-.41h6.23L16.57%2018l4.24-10.53h5.94v.36L25%209.47a.5.5%200%200%200-.19.48v12.1a.5.5%200%200%200%20.19.48l1.68%201.64v.36h-8.4v-.36L20%2022.49c.18-.17.18-.22.18-.49v-9.77l-4.82%2012.26h-.65L9.09%2012.23v8.22a1.09%201.09%200%200%200%20.31.94l2.25%202.74v.36h-6.4v-.36l2.26-2.74a1.09%201.09%200%200%200%20.29-.94z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampPinterestSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.539%204.5c-6.277%200-9.442%204.5-9.442%208.253%200%202.272.86%204.293%202.705%205.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591%200-3.338%202.498-6.327%206.505-6.327%203.548%200%205.497%202.168%205.497%205.062%200%203.81-1.686%207.025-4.188%207.025-1.382%200-2.416-1.142-2.085-2.545.397-1.674%201.166-3.48%201.166-4.689%200-1.081-.581-1.983-1.782-1.983-1.413%200-2.548%201.462-2.548%203.419%200%201.247.421%202.091.421%202.091l-1.699%207.199c-.505%202.137-.076%204.755-.039%205.019.021.158.223.196.314.077.13-.17%201.813-2.247%202.384-4.324.162-.587.929-3.631.929-3.631.46.876%201.801%201.646%203.227%201.646%204.247%200%207.128-3.871%207.128-9.053.003-3.918-3.317-7.568-8.361-7.568z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC02IDM4IDM4Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gNyAxMCBoIDIgdiAzIGggMTIgdiAtMyBoIDIgdiA3IGggLTIgdiAtMyBoIC0xMiB2IDMgaCAtMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS44IiBoZWlnaHQ9IjciIHdpZHRoPSIxMCIgeD0iMTAiIHk9IjUiIGZpbGw9Im5vbmUiPjwvcmVjdD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIgaGVpZ2h0PSI1IiB3aWR0aD0iOCIgeD0iMTEiIHk9IjE2IiBmaWxsPSIjZmZmIj48L3JlY3Q+PC9zdmc+) left no-repeat}.theChampRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj48ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMiIgY3k9IjciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSI3IiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMyIgY3k9IjE0IiByPSIyIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PHBhdGggZD0iTSAxMCAyMiBxIDUgMyAxMCAwIE0gMTUgMTIgbCAxIC02IGwgNiAxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii04IC04IDY0IDY0Ij4NCjxwYXRoIGQ9Ik0gMzggMTkgcSAyIC0xIDQgLTUgcSAtMS41IDIgLTQgMiBxIDEuNSAtMSAzLjUgLTUgcSAtMS41IDIgLTUgMiBjIC01IC01IC0xMyAtMiAtMTIgNiBxIC03IDEgLTE1IC04IHEgLTIgNCAxIDkgcSAtMSAwIC0zIC0xIHEgMCA1IDUgNyBxIC0xIC41IC0zIDAgcSAxIDQgOCA2IHEgLTUgMyAtMTEgMyBjIDE0IDggMzAgMCAzMS41IC0xNCIgc3Ryb2tlLXdpZHRoPSIwLjMiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj4NCjxwYXRoIGQ9Ik0gMi41IDkgaCA0LjUgbCA1IDcgdiAtNyBoIDQuNSB2IDcgbCA1IC03IGggNSBsIC01IDcgbCA1IDcgaCAtNSBsIC01IC03IHYgNyBoIC00LjUgcSAtMiAwIC01IC02IHoiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj4NCjxwYXRoIGQ9Ik0gNiA5IGggNSBsIDQgNCBsIC01IDcgaCAtNSBsIDUgLTcgeiBtIDE1IC00IGggNSBsIC05IDEzIGwgNCA4IGggLTUgbCAtNCAtOCB6IiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBpZD0iYXJjMSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIGQ9Ik0gMTEuNTc5Nzk4NTY2NzQzMzE0IDI0LjM5NjkyNjIwNzg1OTA4NSBBIDEwIDEwIDAgMSAwIDYuODA4NDc5NTU3MTEwMDc5IDIwLjczNTc2NDM2MzUxMDQ2Ij48L3BhdGg+PHBhdGggZD0iTSA3IDE5IGwgLTEgNiBsIDYgLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSAxMCAxMCBxIC0xIDggOCAxMSBjIDUgLTEgMCAtNiAtMSAtMyBxIC00IC0zIC01IC01IGMgNCAtMiAtMSAtNSAtMSAtNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampSharing{float:left;border:none}.theChampSharingArrow{height:16px;width:16px;cursor:pointer;margin-top:10px}.theChampPushIn{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%207%206%20q%202%206%2010%206%20v%20-6%20l%206%209%20l%20-6%209%20v%20-6%20q%20-10%202%20-10%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.theChampPullOut{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%2023%206%20q%20-2%206%20-10%206%20v%20-6%20l%20-6%209%20l%206%209%20v%20-6%20q%2010%202%2010%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.theChampCommentingTabs li{padding-left:0!important;float:left;margin:0 1em 0 0!important;list-style:none;color:#aaa;display:block;cursor:pointer;font-size:.85em}.theChampCommentingTabs ul{float:left;padding-left:0;margin-left:0}li.theChampSelectedTab{color:#333;border-bottom:2px solid #23a9e1}.fb-comments,.fb-comments span,.fb-comments span iframe[style]{min-width:100%!important;width:100%!important}#mc-input,#user_email,#user_login{height:auto!important}div.the_champ_horizontal_counter li{margin-right:14px!important}div.theChampTotalShareCount{word-wrap:normal!important;font-weight: bolder;font-family: sans-serif;padding: 0;margin: 0;text-align:center}div.theChampTotalShareText{word-wrap:normal!important;margin: 0;padding: 0;text-align: center;}.theChampAIMBackground{background-color: #10ff00}.theChampAmazonWishListBackground{background-color: #ffe000}.theChampAOLMailBackground{background-color: #2A2A2A}.theChampAppnetBackground{background-color: #5D5D5D}.theChampBalatarinBackground{background-color: #fff}.theChampBibSonomyBackground{background-color: #000}.theChampBittyBrowserBackground{background-color: #EFEFEF}.theChampBlinklistBackground{background-color: #3D3C3B}.theChampBloggerPostBackground{background-color: #FDA352}.theChampBlogMarksBackground{background-color: #535353}.theChampBookmarksfrBackground{background-color: #E8EAD4}.theChampBoxnetBackground{background-color: #1A74B0}.theChampBuddyMarksBackground{background-color: #ffd400}.theChampCare2NewsBackground{background-color: #6EB43F}.theChampCopyLinkBackground{background-color: #FFC112}.theChampCommentBackground{background-color: #444}.theChampCiteULikeBackground{background-color: #2781CD}.theChampDiaryRuBackground{background-color: #E8D8C6}.theChampDiasporaBackground{background-color: #0166FF}.theChampDiigoBackground{background-color: #4A8BCA}.theChampDoubanBackground{background-color: #497700}.theChampDraugiemBackground{background-color: #ffad66}.theChampDZoneBackground{background-color: #fff088}.theChampEvernoteBackground{background-color: #8BE056}.theChampFacebookMessengerBackground{background-color: #0084FF}.theChampFarkBackground{background-color: #555}.theChampFintelBackground{background-color:#087515}.theChampFlipboardBackground{background-color: #CC0000}.theChampFolkdBackground{background-color: #0F70B2}.theChampGoogleClassroomBackground{background-color: #FFC112}.theChampGoogleBookmarksBackground{background-color: #CB0909}.theChampGoogleGmailBackground{background-color: #E5E5E5}.theChampHackerNewsBackground{background-color: #F60}.theChampHatenaBackground{background-color: #00A6DB}.theChampInstapaperBackground{background-color: #EDEDED}.theChampJamespotBackground{background-color: #FF9E2C}.theChampKakaoBackground{background-color: #FCB700}.theChampKindleItBackground{background-color: #2A2A2A}.theChampKikBackground{background-color: #2A2A2A}.theChampKnownBackground{background-color: #fff101}.theChampMailRuBackground{background-color: #356FAC}.theChampMendeleyBackground{background-color: #A70805}.theChampMeneameBackground{background-color: #FF7D12}.theChampMixiBackground{background-color: #EDEDED}.theChampMySpaceBackground{background-color: #2A2A2A}.theChampNetvouzBackground{background-color: #c0ff00}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampOutlookcomBackground{background-color: #0072C6}.theChampPapalyBackground{background-color: #3AC0F6}.theChampPinboardBackground{background-color: #1341DE}.theChampPlurkBackground{background-color: #CF682F}.theChampPocketBackground{background-color: #f0f0f0}.theChampPrintFriendlyBackground{background-color: #61D1D5}.theChampProtopageBookmarksBackground{background-color: #413FFF}.theChampPushaBackground{background-color: #0072B8}.theChampQzoneBackground{background-color: #2B82D9}.theChampRefindBackground{background-color: #1492ef}.theChampRediffMyPageBackground{background-color: #D20000}.theChampRenrenBackground{background-color: #005EAC}.theChampSinaWeiboBackground{background-color: #ff0}.theChampSiteJotBackground{background-color: #ffc800}.theChampSkypeBackground{background-color: #00AFF0}.theChampSMSBackground{background-color: #6ebe45}.theChampSlashdotBackground{background-color: #004242}.theChampSvejoBackground{background-color: #fa7aa3}.theChampSymbalooFeedsBackground{background-color: #6DA8F7}.theChampTelegramBackground{background-color: #3DA5f1}.theChampThreemaBackground{background-color:#2A2A2A}.theChampTrelloBackground{background-color: #1189CE}.theChampTuentiBackground{background-color: #0075C9}.theChampTwiddlaBackground{background-color: #EDEDED}.theChampTypePadPostBackground{background-color: #2A2A2A}.theChampViadeoBackground{background-color: #2A2A2A}.theChampViberBackground{background-color: #8B628F}.theChampWaneloBackground{background-color: #fff}.theChampWebnewsBackground{background-color: #CC2512}.theChampWordPressBackground,.theChampWordpressBackground{background-color: #464646}.theChampWykopBackground{background-color: #367DA9}.theChampYahooMailBackground{background-color: #400090}.theChampYoolinkBackground{background-color: #A2C538}.theChampBehanceBackground{background-color: #053eff}.theChampFlickrBackground{background-color: #ff0084}.theChampFoursquareBackground{background-color: #f94877}.theChampGithubBackground{background-color: #2a2a2a}.theChampMediumBackground{background-color: #2a2a2a}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampSnapchatBackground{background-color: #ffe900}.theChampVimeoBackground{background-color: #1ab7ea}.theChampYoutubeBackground{background-color: #ff0000}.theChampRSSBackground{background-color: #e3702d}.theChampGentleReaderBackground{background-color:#46aecf}.theChampBehanceSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20d%3D%22M3.862%208.136h5.66c1.377%200%203.19%200%204.13.566a3.705%203.705%200%200%201%201.837%203.26c0%201.66-.88%202.905-2.32%203.494v.042c1.924.397%202.97%201.838%202.97%203.76%200%202.297-1.636%204.483-4.743%204.483H3.86V8.14zm2.078%206.71h4.152c2.36%200%203.322-.856%203.322-2.493%200-2.16-1.53-2.468-3.322-2.468H5.94v4.96zm0%207.144h5.2c1.792%200%202.93-1.09%202.93-2.797%200-2.03-1.64-2.598-3.388-2.598H5.94v5.395zm22.017-1.833C27.453%2022.65%2025.663%2024%2023.127%2024c-3.607%200-5.31-2.49-5.422-5.944%200-3.386%202.23-5.878%205.31-5.878%204%200%205.225%203.74%205.116%206.47h-8.455c-.067%201.966%201.05%203.716%203.52%203.716%201.53%200%202.6-.742%202.928-2.206h1.838zm-1.793-3.15c-.088-1.77-1.42-3.19-3.256-3.19-1.946%200-3.106%201.466-3.236%203.19h6.492zM20.614%208h4.935v1.68h-4.94z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFlickrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2223%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%229%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFoursquareSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.516%203H7.586C5.66%203%205%204.358%205%205.383v21.995c0%201.097.65%201.407.958%201.53.31.126%201.105.206%201.676-.36l6.72-7.455c.105-.12.49-.284.552-.284h4.184c1.79%200%201.81-1.45%201.997-2.206.157-.63%201.946-9.57%202.58-12.395.523-2.32-.104-3.21-2.15-3.21zM20.2%209.682c-.07.33-.368.66-.75.693h-5.44c-.61-.034-1.108.422-1.108%201.032v.665c0%20.61.5%201.24%201.108%201.24h4.607c.43%200%20.794.276.7.737-.093.46-.573%202.82-.627%203.07-.052.254-.282.764-.716.764h-3.62c-.682%200-1.36-.008-1.816.56-.458.573-4.534%205.293-4.534%205.293V6.403c0-.438.31-.746.715-.74h11.274c.41-.006.915.41.834%201L20.2%209.68z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampGithubSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203.32c-7.182%200-13%205.82-13%2013%200%205.754%203.72%2010.612%208.89%2012.335.65.114.893-.276.893-.617%200-.31-.016-1.333-.016-2.42-3.266.6-4.11-.797-4.37-1.53-.147-.373-.78-1.527-1.334-1.835-.455-.244-1.105-.845-.016-.86%201.024-.017%201.755.942%202%201.332%201.17%201.966%203.038%201.414%203.785%201.073.114-.845.455-1.414.83-1.74-2.893-.324-5.916-1.445-5.916-6.418%200-1.414.504-2.584%201.333-3.494-.13-.325-.59-1.657.13-3.445%200%200%201.085-.34%203.57%201.337%201.04-.293%202.146-.44%203.25-.44s2.21.147%203.25.44c2.49-1.69%203.58-1.337%203.58-1.337.714%201.79.26%203.12.13%203.446.828.91%201.332%202.064%201.332%203.494%200%204.99-3.04%206.094-5.93%206.42.47.405.876%201.185.876%202.404%200%201.74-.016%203.136-.016%203.575%200%20.34.244.743.894.613C25.28%2026.933%2029%2022.053%2029%2016.32c0-7.182-5.817-13-13-13z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampSnapchatSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.177%2020.978c-2.867-.473-4.157-3.414-4.21-3.54l-.01-.02c-.153-.31-.187-.57-.1-.772.164-.39.774-.583%201.177-.71.113-.037.22-.07.306-.105.715-.28%201.073-.625%201.066-1.03-.006-.312-.252-.593-.642-.732a1.168%201.168%200%200%200-.44-.084.975.975%200%200%200-.405.083c-.34.16-.65.246-.91.258a.789.789%200%200%201-.357-.087l.027-.45.005-.062c.09-1.432.203-3.215-.266-4.264C20.03%206.34%2017.073%206.1%2016.2%206.1h-.052l-.363.003c-.87%200-3.818.243-5.208%203.36-.47%201.05-.357%202.833-.268%204.264l.03.513a.83.83%200%200%201-.41.09c-.276%200-.6-.087-.97-.26a.795.795%200%200%200-.335-.067c-.43%200-.946.282-1.026.704-.06.305.077.748%201.054%201.134.087.036.193.07.305.105.403.128%201.012.322%201.18.71.084.203.05.463-.103.773l-.01.022c-.054.125-1.344%203.068-4.21%203.54a.437.437%200%200%200-.366.455.6.6%200%200%200%20.048.196c.216.504%201.123.87%202.775%201.13.055.075.113.34.148.5.036.16.07.32.12.494.05.17.18.374.514.374.133%200%20.292-.03.475-.067.275-.053.652-.127%201.124-.127.26%200%20.532.022.805.067.532.09.985.41%201.51.78.75.53%201.6%201.132%202.894%201.132.034%200%20.07%200%20.105-.005.04.002.095.004.153.004%201.29%200%202.142-.6%202.892-1.132.526-.37.978-.69%201.51-.78.274-.045.545-.068.807-.068.45%200%20.805.056%201.123.12.2.037.36.057.476.057h.024c.246%200%20.42-.13.488-.365.05-.17.086-.327.12-.49.037-.16.094-.422.15-.496%201.65-.256%202.56-.624%202.773-1.125a.568.568%200%200%200%20.047-.196.433.433%200%200%200-.363-.458z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampTumblrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.775%2021.962c-.37.177-1.08.33-1.61.345-1.598.043-1.907-1.122-1.92-1.968v-6.217h4.007V11.1H17.26V6.02h-2.925s-.132.044-.144.15c-.17%201.556-.895%204.287-3.923%205.378v2.578h2.02v6.522c0%202.232%201.647%205.404%205.994%205.33%201.467-.025%203.096-.64%203.456-1.17l-.96-2.846z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampVimeoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.926%2010.627c-.103%202.25-1.675%205.332-4.716%209.245C19.066%2023.957%2016.406%2026%2014.23%2026c-1.348%200-2.49-1.244-3.42-3.732l-1.867-6.844C8.25%2012.937%207.51%2011.69%206.715%2011.69c-.173%200-.778.365-1.815%201.09l-1.088-1.4a300.012%20300.012%200%200%200%203.374-3.01c1.522-1.315%202.666-2.007%203.427-2.076%201.8-.173%202.907%201.057%203.322%203.69.45%202.84.76%204.608.935%205.3.52%202.356%201.09%203.534%201.713%203.534.483%200%201.21-.764%202.18-2.294.97-1.528%201.488-2.692%201.558-3.49.14-1.32-.38-1.98-1.553-1.98-.554%200-1.125.126-1.712.378%201.137-3.722%203.308-5.53%206.513-5.426%202.378.068%203.498%201.61%203.36%204.62z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampRSSSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cellipse%20cx%3D%227.952%22%20cy%3D%2224.056%22%20rx%3D%222.952%22%20ry%3D%222.944%22%3E%3C%2Fellipse%3E%3Cpath%20d%3D%22M5.153%2016.625c2.73%200%205.295%201.064%207.22%202.996a10.2%2010.2%200%200%201%202.996%207.255h4.2c0-7.962-6.47-14.44-14.42-14.44v4.193zm.007-7.432c9.724%200%2017.636%207.932%2017.636%2017.682H27C27%2014.812%2017.203%205%205.16%205v4.193z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMeWeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M9.636%2010.427a1.22%201.22%200%201%201-2.44%200%201.22%201.22%200%201%201%202.44%200zM15.574%2010.431a1.22%201.22%200%200%201-2.438%200%201.22%201.22%200%201%201%202.438%200zM22.592%2010.431a1.221%201.221%200%201%201-2.443%200%201.221%201.221%200%200%201%202.443%200zM29.605%2010.431a1.221%201.221%200%201%201-2.442%200%201.221%201.221%200%200%201%202.442%200zM3.605%2013.772c0-.471.374-.859.859-.859h.18c.374%200%20.624.194.789.457l2.935%204.597%202.95-4.611c.18-.291.43-.443.774-.443h.18c.485%200%20.859.387.859.859v8.113a.843.843%200%200%201-.859.845.857.857%200%200%201-.845-.845V16.07l-2.366%203.559c-.18.276-.402.443-.72.443-.304%200-.526-.167-.706-.443l-2.354-3.53V21.9c0%20.471-.374.83-.845.83a.815.815%200%200%201-.83-.83v-8.128h-.001zM14.396%2014.055a.9.9%200%200%201-.069-.333c0-.471.402-.83.872-.83.415%200%20.735.263.845.624l2.23%206.66%202.187-6.632c.139-.402.428-.678.859-.678h.124c.428%200%20.735.278.859.678l2.187%206.632%202.23-6.675c.126-.346.415-.609.83-.609.457%200%20.845.361.845.817a.96.96%200%200%201-.083.346l-2.867%208.032c-.152.43-.471.706-.887.706h-.165c-.415%200-.721-.263-.872-.706l-2.161-6.328-2.16%206.328c-.152.443-.47.706-.887.706h-.165c-.415%200-.72-.263-.887-.706l-2.865-8.032z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampYoutubeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.78%2011.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618%200-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874%202.184-.874%202.184S5%2013.386%205%2015.166v1.67c0%201.78.22%203.56.22%203.56s.215%201.516.874%202.184c.837.875%201.936.85%202.426.94%201.76.17%207.48.22%207.48.22s4.623-.007%207.7-.23c.43-.05%201.37-.056%202.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052%207.254v-6.18l5.944%203.1-5.944%203.08z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampTelegramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-3%2036%2036%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.515%206.896L6.027%2014.41c-1.33.534-1.322%201.276-.243%201.606l5%201.56%201.72%205.66c.226.625.115.873.77.873.506%200%20.73-.235%201.012-.51l2.43-2.363%205.056%203.734c.93.514%201.602.25%201.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampInstagramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%22-10%20-10%20148%20148%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampWhatsappBackground a,i.theChampLineBackground a,i.theChampViberBackground a{display:inline!important}.the_champ_sharing_container a{padding:0!important;box-shadow:none!important;border:none!important}div.course_instructor_widget .the_champ_vertical_sharing{display:none!important;}@media screen and (max-width:783px){#the_champ_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}#the_champ_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92%}}@media screen and (max-width:475px){#the_champ_sharing_more_content .all-services ul li{width:100%!important;}}#ss_openid{border:1px solid gray;display:inline;font-family:"Trebuchet MS";font-size:12px;width:98%;padding:.35em .325em .75em;margin-bottom:20px}#ss_openid form{margin-top:25px;margin-left:0;padding:0;background:transparent;-webkit-box-shadow:none;box-shadow:none}#ss_openid input{font-family:"Trebuchet MS";font-size:12px;width:100px;float:left}#ss_openid input[type=submit]{background:#767676;padding:.75em 2em;border:0;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:none;box-shadow:none;color:#fff;cursor:pointer;display:inline-block;font-weight:800;line-height:1;text-shadow:none;-webkit-transition:background .2s;transition:background .2s}#ss_openid legend{color:#FF6200;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:table;max-width:100%;padding:0;white-space:normal}#ss_openid input.openid_login{background-color:#fff;background-position:0 50%;color:#000;width:220px;margin-right:10px;height:30px;margin-bottom:5px;background:#fff;background-image:-webkit-linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0));border:1px solid #bbb;-webkit-border-radius:3px;border-radius:3px;display:block;padding:.7em;line-height:1.5}#ss_openid a{color:silver}#ss_openid a:hover{color:#5e5e5e}.heateor_ms_subscribe_option{line-height: 14px;margin-top: 8px;}.heateor_ms_subscribe_option input.heateor_ms_checkbox, .heateor_ms_subscribe_option label.heateor_ms_checkbox_label{float:left;font-size: 15px;margin: 0;color: #666;}.heateor_ms_subscribe_option input.heateor_ms_checkbox{margin: 0 4px 0 0;width: 15px;height: 15px;float: left;}div.heateor_ss_sl_optin_container{clear:both}div.heateor_ss_sl_optin_container a{color:blue}div.heateor_ss_sl_optin_container label{font-size:11px;font-weight:normal}input.heateor_ss_social_login_optin{vertical-align:middle}div.theChampFacebookLogoContainer{width:25px;height:25px;border-radius:999px;background-color:white;margin:5px auto;}div.the_champ_login_container i.theChampFacebookBackground{background-color:#218cf2!important}div.the_champ_bottom_sharing{margin-bottom:0}.theChampTwitchBackground{background-color:#6441A5}.theChampTwitchLoginSvg{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20300%20300%22%3E%3Cpath%20d%3D%22M%2055%2030%20h%20200%20v%20160%20l%20-40%2040%20h%20-50%20l%20-40%2040%20v%20-40%20l%2030%20-30%20h%2060%20l%2020%20-20%20v%20-132%20h%20-165%20v%20152%20h%2055%20v%2070%20h%20-20%20v%20-40%20h%20-65%20v%20-160%20z%20M%20130%2090%20v%2060%20h%2015%20v%20-60%20z%20M%20185%2090%20v%2060%20h%2015%20v%20-60%20z%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.theChampParlerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20height%3D%27100%25%27%20width%3D%27100%25%27%20viewBox%3D%27-24%20-30%20140%20160%27%3E%3Cg%20fill%3D%27%23fff%27%3E%3Cpath%20d%3D%27M58.34%2083.31h-25v-8.49c0-4.5%203.64-8.14%208.14-8.14h16.87c13.8%200%2025.02-11.19%2025.02-24.94%200-13.75-11.23-24.94-25.03-24.94h-.26l-5.3-.16H0C0%207.45%207.45%200%2016.63%200h36.41l5.44.17C81.39.24%20100%2018.86%20100%2041.74c0%2022.92-18.69%2041.57-41.66%2041.57z%27%3E%3C%2Fpath%3E%3Cpath%20d%3D%27M16.65%20100C7.46%20100%20.02%2092.55.02%2083.37V49.49c0-8.92%207.23-16.16%2016.16-16.16h42.19a8.32%208.32%200%20010%2016.64h-33.5c-4.53%200-8.21%203.67-8.21%208.21V100z%27%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}div#the_champ_sharing_more_content ss.theChampParlerSvg{width:92%!important}.theChampRedditLoginSvg{background-size:125%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2.5%20-3.5%2039%2039%22%3E%3Cpath%20d%3D%22M28.543%2015.774a2.953%202.953%200%200%200-2.951-2.949%202.882%202.882%200%200%200-1.9.713%2014.075%2014.075%200%200%200-6.85-2.044l1.38-4.349%203.768.884a2.452%202.452%200%201%200%20.24-1.176l-4.274-1a.6.6%200%200%200-.709.4l-1.659%205.224a14.314%2014.314%200%200%200-7.316%202.029%202.908%202.908%200%200%200-1.872-.681%202.942%202.942%200%200%200-1.618%205.4%205.109%205.109%200%200%200-.062.765c0%204.158%205.037%207.541%2011.229%207.541s11.22-3.383%2011.22-7.541a5.2%205.2%200%200%200-.053-.706%202.963%202.963%200%200%200%201.427-2.51zm-18.008%201.88a1.753%201.753%200%200%201%201.73-1.74%201.73%201.73%200%200%201%201.709%201.74%201.709%201.709%200%200%201-1.709%201.711%201.733%201.733%200%200%201-1.73-1.711zm9.565%204.968a5.573%205.573%200%200%201-4.081%201.272h-.032a5.576%205.576%200%200%201-4.087-1.272.6.6%200%200%201%20.844-.854%204.5%204.5%200%200%200%203.238.927h.032a4.5%204.5%200%200%200%203.237-.927.6.6%200%201%201%20.844.854zm-.331-3.256a1.726%201.726%200%201%201%201.709-1.712%201.717%201.717%200%200%201-1.712%201.712z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampDisqusLoginSvg{background-size:112%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer%5f1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%20200%20200%22%20enable-background%3D%22new%200%200%20200%20200%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%20id%3D%22Layer%5f2%22%3E%3C%2Fg%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M102.535%2C167.5c-16.518%2C0-31.621-6.036-43.298-16.021L30.5%2C155.405l11.102-27.401%0A%09c-3.868-8.535-6.038-18.01-6.038-28.004c0-37.277%2C29.984-67.5%2C66.971-67.5c36.984%2C0%2C66.965%2C30.223%2C66.965%2C67.5%0A%09C169.5%2C137.284%2C139.52%2C167.5%2C102.535%2C167.5z%20M139.102%2C99.807v-0.188c0-19.478-13.736-33.367-37.42-33.367h-25.58v67.5h25.201%0A%09C125.171%2C133.753%2C139.102%2C119.284%2C139.102%2C99.807L139.102%2C99.807z%20M101.964%2C117.168h-7.482V82.841h7.482%0A%09c10.989%2C0%2C18.283%2C6.265%2C18.283%2C17.07v0.188C120.247%2C110.995%2C112.953%2C117.168%2C101.964%2C117.168z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampDropboxLoginSvg{background-size:113%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%20id%3D%22svg126%22%20version%3D%221.1%22%20viewBox%3D%22-35.3175%20-50%20306.085%20300%22%3E%3Cdefs%20id%3D%22defs112%22%3E%3Cstyle%20id%3D%22style110%22%3E.cls-1%7Bfill%3A%23ffffff%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20id%3D%22polygon116%22%20class%3D%22cls-1%22%20d%3D%22M58.86%2075l58.87-37.5L58.86%200%200%2037.5z%22%2F%3E%3Cpath%20id%3D%22polygon118%22%20class%3D%22cls-1%22%20d%3D%22M176.59%2075l58.86-37.5L176.59%200l-58.86%2037.5z%22%2F%3E%3Cpath%20id%3D%22polygon120%22%20class%3D%22cls-1%22%20d%3D%22M117.73%20112.5L58.86%2075%200%20112.5%2058.86%20150z%22%2F%3E%3Cpath%20id%3D%22polygon122%22%20class%3D%22cls-1%22%20d%3D%22M176.59%20150l58.86-37.5L176.59%2075l-58.86%2037.5z%22%2F%3E%3Cpath%20id%3D%22polygon124%22%20class%3D%22cls-1%22%20d%3D%22M176.59%20162.5L117.73%20125l-58.87%2037.5%2058.87%2037.5z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampFoursquareLoginSvg{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-6.25%20-4%2040%2040%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.516%203H7.586C5.66%203%205%204.358%205%205.383v21.995c0%201.097.65%201.407.958%201.53.31.126%201.105.206%201.676-.36l6.72-7.455c.105-.12.49-.284.552-.284h4.184c1.79%200%201.81-1.45%201.997-2.206.157-.63%201.946-9.57%202.58-12.395.523-2.32-.104-3.21-2.15-3.21zM20.2%209.682c-.07.33-.368.66-.75.693h-5.44c-.61-.034-1.108.422-1.108%201.032v.665c0%20.61.5%201.24%201.108%201.24h4.607c.43%200%20.794.276.7.737-.093.46-.573%202.82-.627%203.07-.052.254-.282.764-.716.764h-3.62c-.682%200-1.36-.008-1.816.56-.458.573-4.534%205.293-4.534%205.293V6.403c0-.438.31-.746.715-.74h11.274c.41-.006.915.41.834%201L20.2%209.68z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) no-repeat center center}
helper.php CHANGED
@@ -15,58 +15,67 @@ function the_champ_login_notifications($loginOptions){
15
  $errorHtml = '';
16
  if(isset($loginOptions['enable']) && isset($loginOptions['providers'])){
17
  if(in_array('facebook', $loginOptions['providers']) && (!isset($loginOptions['fb_key']) || $loginOptions['fb_key'] == '' || !isset($loginOptions['fb_secret']) || $loginOptions['fb_secret'] == '')){
18
- $errorHtml .= the_champ_error_message('Specify Facebook App ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Facebook Login to work');
19
  }
20
  if(in_array('twitter', $loginOptions['providers']) && (!isset($loginOptions['twitter_key']) || $loginOptions['twitter_key'] == '' || !isset($loginOptions['twitter_secret']) || $loginOptions['twitter_secret'] == '')){
21
- $errorHtml .= the_champ_error_message('Specify Twitter Consumer Key and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Twitter Login to work');
22
  }
23
  if(in_array('linkedin', $loginOptions['providers']) && (!isset($loginOptions['li_key']) || $loginOptions['li_key'] == '' || !isset($loginOptions['li_secret']) || $loginOptions['li_secret'] == '')){
24
- $errorHtml .= the_champ_error_message('Specify LinkedIn Client ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for LinkedIn Login to work');
25
  }
26
  if(in_array('google', $loginOptions['providers']) && (!isset($loginOptions['google_key']) || $loginOptions['google_key'] == '' || !isset($loginOptions['google_secret']) || $loginOptions['google_secret'] == '')){
27
- $errorHtml .= the_champ_error_message('Specify Google Client ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Google Login to work');
28
  }
29
  if(in_array('vkontakte', $loginOptions['providers']) && (!isset($loginOptions['vk_key']) || $loginOptions['vk_key'] == '' || !isset($loginOptions['vk_secure_key']) || $loginOptions['vk_secure_key'] == '')){
30
- $errorHtml .= the_champ_error_message('Specify Vkontakte Application ID and Secret Key in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Vkontakte Login to work');
31
  }
32
  if(in_array('instagram', $loginOptions['providers']) && (!isset($loginOptions['insta_id']) || $loginOptions['insta_id'] == '' || !isset($loginOptions['insta_app_secret']) || $loginOptions['insta_app_secret'] == '')){
33
- $errorHtml .= the_champ_error_message('Specify Instagram App ID and Instagram App Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Instagram Login to work');
34
  }
35
  if(in_array('steam', $loginOptions['providers']) && (!isset($loginOptions['steam_api_key']) || $loginOptions['steam_api_key'] == '')){
36
- $errorHtml .= the_champ_error_message('Specify Steam API Key in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Steam Login to work');
37
  }
38
  if(in_array('yahoo', $loginOptions['providers']) && (!isset($loginOptions['yahoo_channel_id']) || $loginOptions['yahoo_channel_id'] == '' || !isset($loginOptions['yahoo_channel_secret']) || $loginOptions['yahoo_channel_secret'] == '')){
39
- $errorHtml .= the_champ_error_message('Specify Yahoo Client ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Yahoo Login to work');
40
  }
41
  if(in_array('wordpress', $loginOptions['providers']) && (!isset($loginOptions['wordpress_client_id']) || $loginOptions['wordpress_client_id'] == '' || !isset($loginOptions['wordpress_client_secret']) || $loginOptions['wordpress_client_secret'] == '')){
42
- $errorHtml .= the_champ_error_message('Specify WordPress Client ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for WordPress Login to work');
43
  }
44
  if(in_array('dribbble', $loginOptions['providers']) && (!isset($loginOptions['dribbble_client_id']) || $loginOptions['dribbble_client_id'] == '' || !isset($loginOptions['dribbble_client_secret']) || $loginOptions['dribbble_client_secret'] == '')){
45
- $errorHtml .= the_champ_error_message('Specify Dribbble Client ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Dribbble Login to work');
46
  }
47
  if(in_array('spotify', $loginOptions['providers']) && (!isset($loginOptions['spotify_client_id']) || $loginOptions['spotify_client_id'] == '' || !isset($loginOptions['spotify_client_secret']) || $loginOptions['spotify_client_secret'] == '')){
48
- $errorHtml .= the_champ_error_message('Specify Spotify Client ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Spotify Login to work');
49
  }
50
  if(in_array('kakao', $loginOptions['providers']) && (!isset($loginOptions['kakao_client_id']) || $loginOptions['kakao_client_id'] == '' || !isset($loginOptions['kakao_client_secret']) || $loginOptions['kakao_client_secret'] == '')){
51
- $errorHtml .= the_champ_error_message('Specify Kakao Client ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Kakao Login to work');
52
  }
53
  if(in_array('github', $loginOptions['providers']) && (!isset($loginOptions['github_client_id']) || $loginOptions['github_client_id'] == '' || !isset($loginOptions['github_client_secret']) || $loginOptions['github_client_secret'] == '')){
54
- $errorHtml .= the_champ_error_message('Specify Github Client ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Github Login to work');
55
  }
56
- if(in_array('twitch', $loginOptions['providers']) && (!$loginOptions['twitch_client_id'] || !$loginOptions['twitch_client_secret'])){
57
- $errorHtml .= the_champ_error_message('Specify Twitch Client ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Twitch Login to work');
58
  }
59
- if(in_array('reddit', $loginOptions['providers']) && (!$loginOptions['reddit_client_id'] || !$loginOptions['reddit_client_secret'])){
60
- $errorHtml .= the_champ_error_message('Specify Reddit Client ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Reddit Login to work');
61
  }
62
- if(in_array('foursquare', $loginOptions['providers']) && (!$loginOptions['foursquare_client_id'] || !$loginOptions['foursquare_client_secret'])){
63
- $errorHtml .= the_champ_error_message('Specify Foursquare Client ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Foursquare Login to work');
64
  }
65
- if(in_array('disqus', $loginOptions['providers']) && (!$loginOptions['disqus_public_key'] || !$loginOptions['disqus_secret_key'])){
66
- $errorHtml .= the_champ_error_message('Specify Disqus Client ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Disqus Login to work');
67
  }
68
- if(in_array('dropbox', $loginOptions['providers']) && (!$loginOptions['dropbox_app_key'] || !$loginOptions['dropbox_app_secret'])){
69
- $errorHtml .= the_champ_error_message('Specify Dropbox Client ID and Secret in <strong>Super Socializer</strong> > <strong>Social Login</strong> section in admin panel for Dropbox Login to work');
 
 
 
 
 
 
 
 
 
70
  }
71
  }
72
  return $errorHtml;
@@ -545,7 +554,7 @@ function the_champ_account_linking(){
545
  <style type="text/css">
546
  #ss_openid{border:1px solid gray;display:inline;font-family:"Trebuchet MS";font-size:12px;width:98%;padding:.35em .325em .75em;margin-bottom:20px}#ss_openid form{margin-top:25px;margin-left:0;padding:0;background:transparent;-webkit-box-shadow:none;box-shadow:none}#ss_openid input{font-family:"Trebuchet MS";font-size:12px;width:100px;float:left}#ss_openid input[type=submit]{background:#767676;padding:.75em 2em;border:0;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:none;box-shadow:none;color:#fff;cursor:pointer;display:inline-block;font-weight:800;line-height:1;text-shadow:none;-webkit-transition:background .2s;transition:background .2s}#ss_openid legend{color:#FF6200;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:table;max-width:100%;padding:0;white-space:normal}#ss_openid input.openid_login{background-color:#fff;background-position:0 50%;color:#000;width:220px;margin-right:10px;height:30px;margin-bottom:5px;background:#fff;background-image:-webkit-linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0));border:1px solid #bbb;-webkit-border-radius:3px;border-radius:3px;display:block;padding:.7em;line-height:1.5}#ss_openid a{color:silver}#ss_openid a:hover{color:#5e5e5e}
547
  </style>
548
- <script> var theChampLoadingImgPath = '<?php echo $loadingImagePath ?>'; var theChampAjaxUrl = '<?php echo $theChampAjaxUrl ?>'; var theChampRedirectionUrl = '<?php echo $redirectionUrl ?>'; var theChampRegRedirectionUrl = '<?php echo $regRedirectionUrl ?>', theChampSteamAuthUrl = "<?php echo $theChampSteamLogin ? $theChampSteamLogin->url( esc_url(home_url()).'?SuperSocializerSteamAuth='.$twitterRedirect ) : ''; ?>"; var heateorMSEnabled = 0, theChampTwitterAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitter&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampLineAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Line&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampLiveAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Live&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampFacebookAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Facebook&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampYahooAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Yahoo&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampGoogleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Google&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampVkontakteAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Vkontakte&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampLinkedinAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Linkedin&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampInstagramAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Instagram&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampWordpressAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Wordpress&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampDribbbleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Dribbble&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampGithubAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Github&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampSpotifyAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Spotify&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampKakaoAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Kakao&super_socializer_redirect_to=" + theChampCurrentPageUrl,theChampTwitchAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitch&super_socializer_redirect_to=" + theChampCurrentPageUrl,theChampDropboxAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Dropbox&super_socializer_redirect_to=" + theChampCurrentPageUrl,theChampRedditAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Reddit&super_socializer_redirect_to=" + theChampCurrentPageUrl,theChampFoursquareAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Foursquare&super_socializer_redirect_to=" + theChampCurrentPageUrl,theChampDisqusAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Disqus&super_socializer_redirect_to=" + theChampCurrentPageUrl</script>
549
  <?php
550
  $userVerified = false;
551
  $ajaxUrl = 'admin-ajax.php';
15
  $errorHtml = '';
16
  if(isset($loginOptions['enable']) && isset($loginOptions['providers'])){
17
  if(in_array('facebook', $loginOptions['providers']) && (!isset($loginOptions['fb_key']) || $loginOptions['fb_key'] == '' || !isset($loginOptions['fb_secret']) || $loginOptions['fb_secret'] == '')){
18
+ $errorHtml .= the_champ_error_message('Specify Facebook App ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Facebook Login to work');
19
  }
20
  if(in_array('twitter', $loginOptions['providers']) && (!isset($loginOptions['twitter_key']) || $loginOptions['twitter_key'] == '' || !isset($loginOptions['twitter_secret']) || $loginOptions['twitter_secret'] == '')){
21
+ $errorHtml .= the_champ_error_message('Specify Twitter Consumer Key and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Twitter Login to work');
22
  }
23
  if(in_array('linkedin', $loginOptions['providers']) && (!isset($loginOptions['li_key']) || $loginOptions['li_key'] == '' || !isset($loginOptions['li_secret']) || $loginOptions['li_secret'] == '')){
24
+ $errorHtml .= the_champ_error_message('Specify LinkedIn Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for LinkedIn Login to work');
25
  }
26
  if(in_array('google', $loginOptions['providers']) && (!isset($loginOptions['google_key']) || $loginOptions['google_key'] == '' || !isset($loginOptions['google_secret']) || $loginOptions['google_secret'] == '')){
27
+ $errorHtml .= the_champ_error_message('Specify Google Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Google Login to work');
28
  }
29
  if(in_array('vkontakte', $loginOptions['providers']) && (!isset($loginOptions['vk_key']) || $loginOptions['vk_key'] == '' || !isset($loginOptions['vk_secure_key']) || $loginOptions['vk_secure_key'] == '')){
30
+ $errorHtml .= the_champ_error_message('Specify Vkontakte Application ID and Secret Key in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Vkontakte Login to work');
31
  }
32
  if(in_array('instagram', $loginOptions['providers']) && (!isset($loginOptions['insta_id']) || $loginOptions['insta_id'] == '' || !isset($loginOptions['insta_app_secret']) || $loginOptions['insta_app_secret'] == '')){
33
+ $errorHtml .= the_champ_error_message('Specify Instagram App ID and Instagram App Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Instagram Login to work');
34
  }
35
  if(in_array('steam', $loginOptions['providers']) && (!isset($loginOptions['steam_api_key']) || $loginOptions['steam_api_key'] == '')){
36
+ $errorHtml .= the_champ_error_message('Specify Steam API Key in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Steam Login to work');
37
  }
38
  if(in_array('yahoo', $loginOptions['providers']) && (!isset($loginOptions['yahoo_channel_id']) || $loginOptions['yahoo_channel_id'] == '' || !isset($loginOptions['yahoo_channel_secret']) || $loginOptions['yahoo_channel_secret'] == '')){
39
+ $errorHtml .= the_champ_error_message('Specify Yahoo Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Yahoo Login to work');
40
  }
41
  if(in_array('wordpress', $loginOptions['providers']) && (!isset($loginOptions['wordpress_client_id']) || $loginOptions['wordpress_client_id'] == '' || !isset($loginOptions['wordpress_client_secret']) || $loginOptions['wordpress_client_secret'] == '')){
42
+ $errorHtml .= the_champ_error_message('Specify WordPress Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for WordPress Login to work');
43
  }
44
  if(in_array('dribbble', $loginOptions['providers']) && (!isset($loginOptions['dribbble_client_id']) || $loginOptions['dribbble_client_id'] == '' || !isset($loginOptions['dribbble_client_secret']) || $loginOptions['dribbble_client_secret'] == '')){
45
+ $errorHtml .= the_champ_error_message('Specify Dribbble Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Dribbble Login to work');
46
  }
47
  if(in_array('spotify', $loginOptions['providers']) && (!isset($loginOptions['spotify_client_id']) || $loginOptions['spotify_client_id'] == '' || !isset($loginOptions['spotify_client_secret']) || $loginOptions['spotify_client_secret'] == '')){
48
+ $errorHtml .= the_champ_error_message('Specify Spotify Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Spotify Login to work');
49
  }
50
  if(in_array('kakao', $loginOptions['providers']) && (!isset($loginOptions['kakao_client_id']) || $loginOptions['kakao_client_id'] == '' || !isset($loginOptions['kakao_client_secret']) || $loginOptions['kakao_client_secret'] == '')){
51
+ $errorHtml .= the_champ_error_message('Specify Kakao Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Kakao Login to work');
52
  }
53
  if(in_array('github', $loginOptions['providers']) && (!isset($loginOptions['github_client_id']) || $loginOptions['github_client_id'] == '' || !isset($loginOptions['github_client_secret']) || $loginOptions['github_client_secret'] == '')){
54
+ $errorHtml .= the_champ_error_message('Specify Github Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Github Login to work');
55
  }
56
+ if(in_array('twitch', $loginOptions['providers']) && (!isset($loginOptions['twitch_client_id']) || !$loginOptions['twitch_client_id'] || !isset($loginOptions['twitch_client_secret']) || !$loginOptions['twitch_client_secret'])){
57
+ $errorHtml .= the_champ_error_message('Specify Twitch Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Twitch Login to work');
58
  }
59
+ if(in_array('reddit', $loginOptions['providers']) && (!isset($loginOptions['reddit_client_id']) || !$loginOptions['reddit_client_id'] || !isset($loginOptions['reddit_client_secret']) || !$loginOptions['reddit_client_secret'])){
60
+ $errorHtml .= the_champ_error_message('Specify Reddit Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Reddit Login to work');
61
  }
62
+ if(in_array('foursquare', $loginOptions['providers']) && (!isset($loginOptions['foursquare_client_id']) || !$loginOptions['foursquare_client_id'] || !isset($loginOptions['foursquare_client_secret']) || !$loginOptions['foursquare_client_secret'])){
63
+ $errorHtml .= the_champ_error_message('Specify Foursquare Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Foursquare Login to work');
64
  }
65
+ if(in_array('disqus', $loginOptions['providers']) && (!isset($loginOptions['disqus_public_key']) || !$loginOptions['disqus_public_key'] || !isset($loginOptions['disqus_secret_key']) || !$loginOptions['disqus_secret_key'])){
66
+ $errorHtml .= the_champ_error_message('Specify Disqus Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Disqus Login to work');
67
  }
68
+ if(in_array('dropbox', $loginOptions['providers']) && (!isset($loginOptions['dropbox_app_key']) || !$loginOptions['dropbox_app_key'] || !isset($loginOptions['dropbox_app_secret']) || !$loginOptions['dropbox_app_secret'])){
69
+ $errorHtml .= the_champ_error_message('Specify Dropbox Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Dropbox Login to work');
70
+ }
71
+ if(in_array('stackoverflow', $loginOptions['providers']) && (!$loginOptions['stackoverflow_client_id'] || !$loginOptions['stackoverflow_client_secret'] || !$loginOptions['stackoverflow_key'])){
72
+ $errorHtml .= the_champ_error_message('Specify Stackoverflow Client ID, Secret and Key in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Stackoverflow Login to work');
73
+ }
74
+ if(in_array('amazon', $loginOptions['providers']) && (!$loginOptions['amazon_client_id'] || !$loginOptions['amazon_client_secret'])){
75
+ $errorHtml .= the_champ_error_message('Specify Amazon Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Amazon Login to work');
76
+ }
77
+ if(in_array('discord', $loginOptions['providers']) && (!$loginOptions['discord_channel_id'] || !$loginOptions['discord_channel_secret'])){
78
+ $errorHtml .= the_champ_error_message('Specify Discord Client ID and Secret in the <strong>Super Socializer</strong> > <strong>Social Login</strong> section in the admin panel for Discord Login to work');
79
  }
80
  }
81
  return $errorHtml;
554
  <style type="text/css">
555
  #ss_openid{border:1px solid gray;display:inline;font-family:"Trebuchet MS";font-size:12px;width:98%;padding:.35em .325em .75em;margin-bottom:20px}#ss_openid form{margin-top:25px;margin-left:0;padding:0;background:transparent;-webkit-box-shadow:none;box-shadow:none}#ss_openid input{font-family:"Trebuchet MS";font-size:12px;width:100px;float:left}#ss_openid input[type=submit]{background:#767676;padding:.75em 2em;border:0;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:none;box-shadow:none;color:#fff;cursor:pointer;display:inline-block;font-weight:800;line-height:1;text-shadow:none;-webkit-transition:background .2s;transition:background .2s}#ss_openid legend{color:#FF6200;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:table;max-width:100%;padding:0;white-space:normal}#ss_openid input.openid_login{background-color:#fff;background-position:0 50%;color:#000;width:220px;margin-right:10px;height:30px;margin-bottom:5px;background:#fff;background-image:-webkit-linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0));border:1px solid #bbb;-webkit-border-radius:3px;border-radius:3px;display:block;padding:.7em;line-height:1.5}#ss_openid a{color:silver}#ss_openid a:hover{color:#5e5e5e}
556
  </style>
557
+ <script> var theChampLoadingImgPath = '<?php echo $loadingImagePath ?>'; var theChampAjaxUrl = '<?php echo $theChampAjaxUrl ?>'; var theChampRedirectionUrl = '<?php echo $redirectionUrl ?>'; var theChampRegRedirectionUrl = '<?php echo $regRedirectionUrl ?>', theChampSteamAuthUrl = "<?php echo $theChampSteamLogin ? $theChampSteamLogin->url( esc_url(home_url()).'?SuperSocializerSteamAuth='.$twitterRedirect ) : ''; ?>"; var heateorMSEnabled = 0, theChampTwitterAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitter&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampLineAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Line&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampLiveAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Live&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampFacebookAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Facebook&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampYahooAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Yahoo&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampGoogleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Google&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampVkontakteAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Vkontakte&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampLinkedinAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Linkedin&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampInstagramAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Instagram&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampWordpressAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Wordpress&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampDribbbleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Dribbble&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampGithubAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Github&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampSpotifyAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Spotify&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampKakaoAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Kakao&super_socializer_redirect_to=" + theChampCurrentPageUrl,theChampTwitchAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitch&super_socializer_redirect_to=" + theChampCurrentPageUrl,theChampDropboxAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Dropbox&super_socializer_redirect_to=" + theChampCurrentPageUrl,theChampRedditAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Reddit&super_socializer_redirect_to=" + theChampCurrentPageUrl,theChampFoursquareAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Foursquare&super_socializer_redirect_to=" + theChampCurrentPageUrl,theChampDisqusAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Disqus&super_socializer_redirect_to=" + theChampCurrentPageUrl,theChampAmazonAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Amazon&super_socializer_redirect_to=" + theChampCurrentPageUrl,theChampStackoverflowAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Stackoverflow&super_socializer_redirect_to=" + theChampCurrentPageUrl,theChampDiscordAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Discord&super_socializer_redirect_to=" + theChampCurrentPageUrl;</script>
558
  <?php
559
  $userVerified = false;
560
  $ajaxUrl = 'admin-ajax.php';
inc/shortcode.php CHANGED
@@ -228,7 +228,7 @@ function the_champ_login_shortcode($params){
228
  $html .= the_champ_login_button(true);
229
  $html .= '</div><div style="clear:both"></div>';
230
  if($redirect_url){
231
- $html .= '<script type="text/javascript">theChampCustomRedirect = encodeURI("'. $redirect_url .'");var theChampSteamAuthUrl = "";theChampTwitterAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitter&super_socializer_redirect_to=" + theChampCustomRedirect, theChampLineAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Line&super_socializer_redirect_to=" + theChampCustomRedirect, theChampLiveAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Live&super_socializer_redirect_to=" + theChampCustomRedirect, theChampFacebookAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Facebook&super_socializer_redirect_to=" + theChampCustomRedirect, theChampYahooAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Yahoo&super_socializer_redirect_to=" + theChampCustomRedirect, theChampGoogleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Google&super_socializer_redirect_to=" + theChampCustomRedirect, theChampVkontakteAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Vkontakte&super_socializer_redirect_to=" + theChampCustomRedirect, theChampLinkedinAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Linkedin&super_socializer_redirect_to=" + theChampCustomRedirect, theChampInstagramAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Instagram&super_socializer_redirect_to=" + theChampCustomRedirect, theChampWordpressAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Wordpress&super_socializer_redirect_to=" + theChampCustomRedirect, theChampDribbbleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Dribbble&super_socializer_redirect_to=" + theChampCustomRedirect, theChampGithubAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Github&super_socializer_redirect_to=" + theChampCustomRedirect, theChampSpotifyAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Spotify&super_socializer_redirect_to=" + theChampCustomRedirect, theChampKakaoAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Kakao&super_socializer_redirect_to=" + theChampCustomRedirect; theChampTwitchAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitch&super_socializer_redirect_to=" + theChampCustomRedirect; theChampRedditAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Reddit&super_socializer_redirect_to=" + theChampCustomRedirect; theChampDisqusAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Disqus&super_socializer_redirect_to=" + theChampCustomRedirect; theChampDropboxAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Dropbox&super_socializer_redirect_to=" + theChampCustomRedirect; theChampFoursquareAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Foursquare&super_socializer_redirect_to=" + theChampCustomRedirect;</script>';
232
  }
233
  }
234
  return $html;
@@ -264,7 +264,7 @@ function the_champ_fb_commenting_shortcode($params){
264
  $html .= ' data-numposts="' . $num_posts . '"';
265
  $html .= ' data-width="' . ($width == '' ? '100%' : $width) . '"';
266
  $html .= ' ></div></div><script type="text/javascript" src="//connect.facebook.net/' . $language . '/sdk.js
267
- "></script><script>FB.init({xfbml:1,version: "v7.0"});</script>';
268
  if(defined('HEATEOR_FB_COM_NOT_VERSION') && version_compare('1.1.5', HEATEOR_FB_COM_NOT_VERSION) < 0){
269
  $html .= '<script type="text/javascript">jQuery(window).load(function(){"undefined"!=typeof theChampFacebookCommentsNotifierOptinText&&(null!=heateorFcnGetCookie("heateorFcnOptin")&&jQuery("input.heateor_ss_fb_comments_notifier_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_notifier_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcnOptin=1,null==heateorFcnGetCookie("heateorFcnOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcnOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcnOptin=0,document.cookie="heateorFcnOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}));});</script>';
270
  }
228
  $html .= the_champ_login_button(true);
229
  $html .= '</div><div style="clear:both"></div>';
230
  if($redirect_url){
231
+ $html .= '<script type="text/javascript">theChampCustomRedirect = encodeURI("'. $redirect_url .'");var theChampSteamAuthUrl = "",theChampTwitterAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitter&super_socializer_redirect_to=" + theChampCustomRedirect, theChampLineAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Line&super_socializer_redirect_to=" + theChampCustomRedirect, theChampLiveAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Live&super_socializer_redirect_to=" + theChampCustomRedirect, theChampFacebookAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Facebook&super_socializer_redirect_to=" + theChampCustomRedirect, theChampYahooAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Yahoo&super_socializer_redirect_to=" + theChampCustomRedirect, theChampGoogleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Google&super_socializer_redirect_to=" + theChampCustomRedirect, theChampVkontakteAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Vkontakte&super_socializer_redirect_to=" + theChampCustomRedirect, theChampLinkedinAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Linkedin&super_socializer_redirect_to=" + theChampCustomRedirect, theChampInstagramAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Instagram&super_socializer_redirect_to=" + theChampCustomRedirect, theChampWordpressAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Wordpress&super_socializer_redirect_to=" + theChampCustomRedirect, theChampDribbbleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Dribbble&super_socializer_redirect_to=" + theChampCustomRedirect, theChampGithubAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Github&super_socializer_redirect_to=" + theChampCustomRedirect, theChampSpotifyAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Spotify&super_socializer_redirect_to=" + theChampCustomRedirect, theChampKakaoAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Kakao&super_socializer_redirect_to=" + theChampCustomRedirect, theChampTwitchAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitch&super_socializer_redirect_to=" + theChampCustomRedirect, theChampRedditAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Reddit&super_socializer_redirect_to=" + theChampCustomRedirect, theChampDisqusAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Disqus&super_socializer_redirect_to=" + theChampCustomRedirect, theChampDropboxAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Dropbox&super_socializer_redirect_to=" + theChampCustomRedirect, theChampFoursquareAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Foursquare&super_socializer_redirect_to=" + theChampCustomRedirect, theChampStackoverflowAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Stackoverflow&super_socializer_redirect_to=" + theChampCustomRedirect, theChampDiscordAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Discord&super_socializer_redirect_to=" + theChampCustomRedirect, theChampAmazonAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Amazon&super_socializer_redirect_to=" + theChampCustomRedirect;</script>';
232
  }
233
  }
234
  return $html;
264
  $html .= ' data-numposts="' . $num_posts . '"';
265
  $html .= ' data-width="' . ($width == '' ? '100%' : $width) . '"';
266
  $html .= ' ></div></div><script type="text/javascript" src="//connect.facebook.net/' . $language . '/sdk.js
267
+ "></script><script>FB.init({xfbml:1,version: "v10.0"});</script>';
268
  if(defined('HEATEOR_FB_COM_NOT_VERSION') && version_compare('1.1.5', HEATEOR_FB_COM_NOT_VERSION) < 0){
269
  $html .= '<script type="text/javascript">jQuery(window).load(function(){"undefined"!=typeof theChampFacebookCommentsNotifierOptinText&&(null!=heateorFcnGetCookie("heateorFcnOptin")&&jQuery("input.heateor_ss_fb_comments_notifier_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_notifier_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcnOptin=1,null==heateorFcnGetCookie("heateorFcnOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcnOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcnOptin=0,document.cookie="heateorFcnOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}));});</script>';
270
  }
inc/social_login.php CHANGED
@@ -730,6 +730,43 @@ function the_champ_sanitize_profile_data($profileData, $provider){
730
  $temp['last_name'] = isset($profileData->response) && isset($profileData->response->user) && isset($profileData->response->user->lastName) ? sanitize_text_field($profileData->response->user->lastName) : '';
731
  $temp['id'] = isset($profileData->response) && isset($profileData->response->user) && isset($profileData->response->user->id) ? sanitize_text_field($profileData->response->user->id) : '';
732
  $temp['large_avatar'] = isset($profileData->response) && isset($profileData->response->user) && isset($profileData->response->user->photo) && isset($profileData->response->user->photo->prefix) && isset($profileData->response->user->photo->suffix) ? sanitize_text_field($profileData->response->user->photo->prefix) . "190x190" . sanitize_text_field($profileData->response->user->photo->suffix) : '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
733
  }
734
  if($provider != 'steam'){
735
  $temp['avatar'] = str_replace('http://', '//', $temp['avatar']);
@@ -744,6 +781,22 @@ function the_champ_sanitize_profile_data($profileData, $provider){
744
  return $temp;
745
  }
746
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
747
  /**
748
  * User authentication after Social Login
749
  */
@@ -754,6 +807,7 @@ function the_champ_user_auth($profileData, $provider = 'facebook', $twitterRedir
754
  if($profileData['id'] == ''){
755
  return array('status' => false, 'message' => '');
756
  }
 
757
  $oldInstagramUsers = array();
758
  $oldInstagramUser = ($profileData['provider'] == 'instagram' && !empty($profileData['ig_id']));
759
  if($oldInstagramUser){
@@ -797,6 +851,10 @@ function the_champ_user_auth($profileData, $provider = 'facebook', $twitterRedir
797
  if(is_user_logged_in()){
798
  return array('status' => false, 'message' => 'not linked');
799
  }else{
 
 
 
 
800
  // hook to update profile data
801
  do_action('the_champ_hook_update_profile_data', $existingUser[0]->ID, $profileData);
802
  // update Xprofile fields
@@ -901,8 +959,12 @@ function the_champ_user_auth($profileData, $provider = 'facebook', $twitterRedir
901
  the_champ_close_login_popup(esc_url(home_url()).'?SuperSocializerEmail=1&par='.$uniqueId);
902
  }
903
  }
904
- // check if email exists in database
905
  if(isset($profileData['email']) && $userId = email_exists($profileData['email'])){
 
 
 
 
906
  // email exists in WP DB
907
  $error = the_champ_login_user($userId, $profileData, isset($theChampLoginOptions['link_account']) ? $profileData['id'] : '', true);
908
  if(isset($error) && $error === 0){
730
  $temp['last_name'] = isset($profileData->response) && isset($profileData->response->user) && isset($profileData->response->user->lastName) ? sanitize_text_field($profileData->response->user->lastName) : '';
731
  $temp['id'] = isset($profileData->response) && isset($profileData->response->user) && isset($profileData->response->user->id) ? sanitize_text_field($profileData->response->user->id) : '';
732
  $temp['large_avatar'] = isset($profileData->response) && isset($profileData->response->user) && isset($profileData->response->user->photo) && isset($profileData->response->user->photo->prefix) && isset($profileData->response->user->photo->suffix) ? sanitize_text_field($profileData->response->user->photo->prefix) . "190x190" . sanitize_text_field($profileData->response->user->photo->suffix) : '';
733
+ }elseif($provider == 'amazon'){
734
+ $temp['id'] = isset($profileData->user_id) ? sanitize_text_field($profileData->user_id) : '';
735
+ $temp['email'] = isset($profileData->email) ? sanitize_email($profileData->email) : '';
736
+ $temp['name'] = isset($profileData->name) ? $profileData->name : '';
737
+ $temp['username'] = '';
738
+ $temp['first_name'] = '';
739
+ $temp['last_name'] = '';
740
+ $temp['bio'] = '';
741
+ $temp['link'] = '';
742
+ $temp['avatar'] = '';
743
+ $temp['large_avatar'] = '';
744
+ }elseif($provider == 'stackoverflow'){
745
+ $temp['email'] = '';
746
+ $temp['bio'] = '';
747
+ $temp['username'] = '';
748
+ $temp['link'] = isset($profileData->link) && heateor_ss_validate_url($profileData->link) ? trim($profileData->link) : '';
749
+ $temp['avatar'] = isset($profileData->profile_image) && heateor_ss_validate_url($profileData->profile_image) ? trim($profileData->profile_image) : '';
750
+ $temp['name'] = isset($profileData->display_name) ? $profileData->display_name : '';
751
+ $temp['first_name'] = '';
752
+ $temp['last_name'] = '';
753
+ $temp['id'] = isset($profileData->account_id) ? sanitize_text_field($profileData->account_id) : '';
754
+ $temp['large_avatar'] = '';
755
+ }elseif($provider == 'discord'){
756
+ if(!empty($profileData->email)){
757
+ $temp['email'] = sanitize_email($profileData->email);
758
+ } else {
759
+ $temp['email'] = '';
760
+ }
761
+ $temp['bio'] = '';
762
+ $temp['username'] = isset($profileData->username) ? sanitize_text_field($profileData->username) : '';
763
+ $temp['link'] = '';
764
+ $temp['avatar'] = '';
765
+ $temp['name'] = '';
766
+ $temp['first_name'] = '';
767
+ $temp['last_name'] = '';
768
+ $temp['id'] = isset($profileData->id) ? sanitize_text_field($profileData->id) : '';
769
+ $temp['large_avatar'] = '';
770
  }
771
  if($provider != 'steam'){
772
  $temp['avatar'] = str_replace('http://', '//', $temp['avatar']);
781
  return $temp;
782
  }
783
 
784
+ /**
785
+ * Check if user is an admin
786
+ */
787
+ function heateor_ss_check_if_admin($userId){
788
+ global $theChampLoginOptions;
789
+ if(isset($theChampLoginOptions['disable_sl_admin'])){
790
+ $user = get_userdata($userId);
791
+ if(!empty($user) && is_array($user->roles)){
792
+ if(in_array('administrator', $user->roles)){
793
+ return true;
794
+ }
795
+ }
796
+ }
797
+ return false;
798
+ }
799
+
800
  /**
801
  * User authentication after Social Login
802
  */
807
  if($profileData['id'] == ''){
808
  return array('status' => false, 'message' => '');
809
  }
810
+
811
  $oldInstagramUsers = array();
812
  $oldInstagramUser = ($profileData['provider'] == 'instagram' && !empty($profileData['ig_id']));
813
  if($oldInstagramUser){
851
  if(is_user_logged_in()){
852
  return array('status' => false, 'message' => 'not linked');
853
  }else{
854
+ // return if social login is disabled for admin accounts
855
+ if(heateor_ss_check_if_admin($existingUser[0]->ID)){
856
+ return array('status' => false, 'message' => '');
857
+ }
858
  // hook to update profile data
859
  do_action('the_champ_hook_update_profile_data', $existingUser[0]->ID, $profileData);
860
  // update Xprofile fields
959
  the_champ_close_login_popup(esc_url(home_url()).'?SuperSocializerEmail=1&par='.$uniqueId);
960
  }
961
  }
962
+ // check if email exists in the database
963
  if(isset($profileData['email']) && $userId = email_exists($profileData['email'])){
964
+ // return if social login is disabled for admin accounts
965
+ if(heateor_ss_check_if_admin($userId)){
966
+ return array('status' => false, 'message' => '');
967
+ }
968
  // email exists in WP DB
969
  $error = the_champ_login_user($userId, $profileData, isset($theChampLoginOptions['link_account']) ? $profileData['id'] : '', true);
970
  if(isset($error) && $error === 0){
inc/social_sharing.php CHANGED
@@ -7,76 +7,76 @@ defined('ABSPATH') or die("Cheating........Uh!!");
7
  /**
8
  * Render sharing interface html
9
  */
10
- function the_champ_prepare_sharing_html( $postUrl, $shareCountUrl, $sharingType = 'horizontal', $displayCount, $totalShares, $shareCountTransientId, $standardWidget = false ) {
11
 
12
  global $post, $theChampSharingOptions;
13
 
14
- if ( NULL === $post || ! is_object( $post ) ) {
15
- $post = get_post( $shareCountTransientId );
16
  }
17
 
18
- if ( ! is_object( $post ) ) {
19
  return '';
20
  }
21
 
22
- if ( ( $sharingType == 'vertical' && ! is_singular() ) || $standardWidget ) {
23
- $postTitle = get_bloginfo( 'name' ) . " - " . get_bloginfo( 'description' );
24
- if ( is_category() ) {
25
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_cat_title( '', false ) ), true ) );
26
- } elseif ( is_tag() ) {
27
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_tag_title( '', false ) ), true ) );
28
- } elseif ( is_tax() ) {
29
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_term_title( '', false ) ), true ) );
30
- } elseif ( is_search() ) {
31
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( __( 'Search for' ) .' "' .get_search_query() .'"' ), true ) );
32
- } elseif ( is_author() ) {
33
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( get_the_author_meta( 'display_name', get_query_var( 'author' ) ) ), true ) );
34
- } elseif ( is_archive() ) {
35
- if ( is_day() ) {
36
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( get_query_var( 'day' ) . ' ' .single_month_title( ' ', false ) . ' ' . __( 'Archives' ) ), true ) );
37
- } elseif ( is_month() ) {
38
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_month_title( ' ', false ) . ' ' . __( 'Archives' ) ), true ) );
39
- } elseif ( is_year() ) {
40
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( get_query_var( 'year' ) . ' ' . __( 'Archives' ) ), true ) );
41
  }
42
  }
43
- } else {
44
  $postTitle = $post->post_title;
45
  }
46
 
47
  $originalPostTitle = html_entity_decode($postTitle, ENT_QUOTES, 'UTF-8');
48
  $postTitle = heateor_ss_sanitize_post_title($postTitle);
49
 
50
- $output = apply_filters( 'the_champ_sharing_interface_filter', '', $postUrl, $sharingType, $theChampSharingOptions, $post, $displayCount, $totalShares );
51
- if ( $output != '' ) {
52
  return $output;
53
  }
54
  $html = '';
55
 
56
- $sharingMeta = get_post_meta( $post->ID, '_the_champ_meta', true );
57
 
58
- if ( isset( $theChampSharingOptions[$sharingType.'_re_providers'] ) ) {
59
 
60
- if ( the_champ_is_amp_page() ) {
61
  $sharingNetworks = heateor_ss_fetch_amp_sharing_networks();
62
- } else {
63
  $sharingNetworks = heateor_ss_fetch_sharing_networks($sharingType);
64
  }
65
 
66
  $html = the_champ_is_amp_page() ? '' : '<ul class="the_champ_sharing_ul">';
67
  $iconHeight = $theChampSharingOptions[$sharingType . '_sharing_shape'] != 'rectangle' ? $theChampSharingOptions[$sharingType . '_sharing_size'] : $theChampSharingOptions[$sharingType . '_sharing_height'];
68
- $style = 'style="width:' . ( $theChampSharingOptions[$sharingType . '_sharing_shape'] != 'rectangle' ? $theChampSharingOptions[$sharingType . '_sharing_size'] : $theChampSharingOptions[$sharingType . '_sharing_width'] ) . 'px;height:' . $iconHeight . 'px;';
69
  $counterContainerInitHtml = '<ss class="the_champ_square_count';
70
  $counterContainerEndHtml = '</ss>';
71
  $innerStyle = 'display:block;';
72
  $liClass = 'theChampSharingRound';
73
- if ( $theChampSharingOptions[$sharingType . '_sharing_shape'] == 'round' ) {
74
  $style .= 'border-radius:999px;';
75
  $innerStyle .= 'border-radius:999px;';
76
- } elseif ( $theChampSharingOptions[$sharingType . '_border_radius'] != '' ) {
77
  $style .= 'border-radius:' . $theChampSharingOptions[$sharingType . '_border_radius'] . 'px;';
78
  }
79
- if ( $sharingType == 'vertical' && $theChampSharingOptions[$sharingType . '_sharing_shape'] == 'square' ) {
80
  $style .= 'margin:0;';
81
  $liClass = '';
82
  }
@@ -84,16 +84,16 @@ function the_champ_prepare_sharing_html( $postUrl, $shareCountUrl, $sharingType
84
  $liItems = '';
85
  $language = $theChampSharingOptions['language'] != '' ? $theChampSharingOptions['language'] : '';
86
  $likeButtonCountContainer = '';
87
- if ( $displayCount ) {
88
  $likeButtonCountContainer = $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
89
  }
90
 
91
  // share count
92
- if ( $savedShareCount = heateor_ss_get_saved_share_counts( $shareCountTransientId, $postUrl ) ) {
93
  $shareCounts = $savedShareCount;
94
- } elseif ( false !== ( $cachedShareCount = heateor_ss_get_cached_share_count( $shareCountTransientId ) ) ) {
95
  $shareCounts = $cachedShareCount;
96
- } else {
97
  $shareCounts = '&nbsp;';
98
  }
99
 
@@ -101,13 +101,13 @@ function the_champ_prepare_sharing_html( $postUrl, $shareCountUrl, $sharingType
101
  $counterPlaceholderValue = '';
102
  $innerStyleConditional = '';
103
 
104
- if ( $displayCount ) {
105
- if ( ! isset( $theChampSharingOptions[$sharingType . '_counter_position'] ) ) {
106
  $counterPosition = $sharingType == 'horizontal' ? 'top' : 'inner_top';
107
- } else {
108
  $counterPosition = $theChampSharingOptions[$sharingType . '_counter_position'];
109
  }
110
- switch ( $counterPosition ) {
111
  case 'left':
112
  $innerStyleConditional = 'display:block;';
113
  $counterPlaceholder = '><i';
@@ -141,7 +141,7 @@ function the_champ_prepare_sharing_html( $postUrl, $shareCountUrl, $sharingType
141
  break;
142
  default:
143
  }
144
- $counterPlaceholderValue = str_replace( '>', '>' . $counterContainerInitHtml . ' the_champ_%network%_count">&nbsp;' . $counterContainerEndHtml, $counterPlaceholder );
145
  }
146
 
147
  $twitterUsername = $theChampSharingOptions['twitter_username'] != '' ? $theChampSharingOptions['twitter_username'] : '';
@@ -167,11 +167,11 @@ function the_champ_prepare_sharing_html( $postUrl, $shareCountUrl, $sharingType
167
  }
168
 
169
  $shareCount = array();
170
- foreach ( $theChampSharingOptions[$sharingType.'_re_providers'] as $provider ) {
171
- $shareCount[$provider] = $shareCounts == '&nbsp;' ? '' : ( isset( $shareCounts[$provider] ) ? $shareCounts[$provider] : '' );
172
- $issetStartingShareCount = isset( $sharingMeta[$provider . '_' . $sharingType . '_count'] ) && intval($sharingMeta[$provider . '_' . $sharingType . '_count']) != 0 ? true : false;
173
- $totalShareCount += intval( $shareCount[$provider] ) + ($issetStartingShareCount ? $sharingMeta[$provider . '_' . $sharingType . '_count'] : 0) ;
174
- $sharingNetworks[$provider] = str_replace( $toBeReplaced, $replaceBy, $sharingNetworks[$provider] );
175
  $liItems .= str_replace(
176
  array(
177
  '%padding%',
@@ -194,11 +194,11 @@ function the_champ_prepare_sharing_html( $postUrl, $shareCountUrl, $sharingType
194
  '%title%'
195
  ),
196
  array(
197
- ( $theChampSharingOptions[$sharingType . '_sharing_shape'] == 'rectangle' ? $theChampSharingOptions[$sharingType . '_sharing_height'] : $theChampSharingOptions[$sharingType . '_sharing_size'] ) * 21/100,
198
  $provider,
199
- ucfirst( str_replace( array( ' ', '_', '.' ), '', $provider ) ),
200
  $likeButtonCountContainer,
201
- urlencode( $postUrl ),
202
  $shareCountUrl,
203
  $postTitle,
204
  $wpseoPostTitle,
@@ -208,42 +208,42 @@ function the_champ_prepare_sharing_html( $postUrl, $shareCountUrl, $sharingType
208
  $language,
209
  $theChampSharingOptions['buffer_username'] != '' ? $theChampSharingOptions['buffer_username'] : '',
210
  $style,
211
- $innerStyle . ( $shareCount[$provider] || ($issetStartingShareCount && $shareCounts != '&nbsp;') ? $innerStyleConditional : '' ),
212
  $liClass,
213
- str_replace( '%network%', $provider, $issetStartingShareCount ? str_replace( '>&nbsp;', ' ss_st_count="' . $sharingMeta[$provider . '_' . $sharingType . '_count'] . '"' . ( $shareCounts == '&nbsp;' ? '>&nbsp;' : ' style="visibility:visible;' . ( $innerStyleConditional ? 'display:block;' : '' ) . '">' . heateor_ss_round_off_counts( intval( $shareCount[$provider] ) + $sharingMeta[$provider . '_' . $sharingType . '_count'] ) ) , $counterPlaceholderValue ) : str_replace( '>&nbsp;', $shareCount[$provider] ? ' style="visibility:visible;' . ( $innerStyleConditional ? 'display:block;' : '' ) . '">' . heateor_ss_round_off_counts( intval( $shareCount[$provider] ) ) : '>&nbsp;', $counterPlaceholderValue ) ),
214
- ucfirst( str_replace( '_', ' ', $provider ) )
215
  ),
216
  $sharingNetworks[$provider]
217
  );
218
  }
219
 
220
  if(isset($theChampSharingOptions[$sharingType . '_more']) && !the_champ_is_amp_page()){
221
- $liItems .= '<li class="' . ( $liClass != '' ? $liClass : '' ) . '">';
222
- if ( $displayCount) {
223
  $liItems .= $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
224
  }
225
- $liItems .= '<i ' . $style . ' title="More" alt="More" class="theChampSharing theChampMoreBackground" onclick="theChampMoreSharingPopup(this, \'' . $postUrl . '\', \''.$postTitle.'\', \'' . heateor_ss_sanitize_post_title(heateor_ss_wpseo_twitter_title($post)) . '\')" ><ss style="display:block" class="theChampSharingSvg theChampMoreSvg"></ss></i></li>';
226
  }
227
 
228
  $totalSharesHtml = '';
229
- if ( $totalShares && ! the_champ_is_amp_page() ) {
230
  $totalSharesHtml = '<li class="' . $liClass . '">';
231
- if ( $displayCount) {
232
  $totalSharesHtml .= $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
233
  }
234
- if ( $sharingType == 'horizontal' ) {
235
  $addStyle = ';margin-left:9px !important;';
236
- } else {
237
  $addStyle = ';margin-bottom:9px !important;';
238
  }
239
- $addStyle .= ( $totalShareCount && $shareCounts != '&nbsp;' ? 'visibility:visible;' : '' ) . '"';
240
- $style = str_replace( ';"', $addStyle, $style );
241
- $totalSharesHtml .= '<i ' . $style . ' title="Total Shares" alt="Total Shares" class="theChampSharing theChampTCBackground">' . ( $totalShareCount ? '<div class="theChampTotalShareCount" style="font-size: ' . ( $iconHeight * 62/100 ) . 'px">' . heateor_ss_round_off_counts( $totalShareCount ) . '</div><div class="theChampTotalShareText" style="font-size: ' . ( $iconHeight * 38/100 ) . 'px">' . ( $totalShareCount < 2 ? __( 'Share', 'super-socializer' ) : __( 'Shares', 'super-socializer' ) ) . '</div>' : '' ) . '</i></li>';
242
  }
243
 
244
- if ( $sharingType == 'vertical' ) {
245
  $html .= $totalSharesHtml . $liItems;
246
- } else {
247
  $html .= $liItems . $totalSharesHtml;
248
  }
249
 
@@ -300,14 +300,14 @@ function heateor_ss_wpseo_twitter_title($post){
300
  * Roud off share counts
301
  */
302
  function heateor_ss_round_off_counts($sharingCount){
303
- if ( $sharingCount > 999 && $sharingCount < 10000 ) {
304
- $sharingCount = round( $sharingCount/1000, 1 ) . 'K';
305
- } elseif ( $sharingCount > 9999 && $sharingCount < 100000 ) {
306
- $sharingCount = round( $sharingCount/1000, 1 ) . 'K';
307
- } else if ( $sharingCount > 99999 && $sharingCount < 1000000 ) {
308
- $sharingCount = round( $sharingCount/1000, 1 ) . 'K';
309
- } else if ( $sharingCount > 999999 ) {
310
- $sharingCount = round( $sharingCount/1000000, 1 ) . 'M';
311
  }
312
 
313
  return $sharingCount;
@@ -317,8 +317,8 @@ function heateor_ss_round_off_counts($sharingCount){
317
  * Get cached share counts for given post ID
318
  */
319
  function heateor_ss_get_cached_share_count($postId){
320
- $shareCountTransient = get_transient( 'heateor_ss_share_count_' . $postId );
321
- do_action( 'heateor_ss_share_count_transient_hook', $shareCountTransient, $postId );
322
  return $shareCountTransient;
323
  }
324
 
@@ -328,28 +328,28 @@ function heateor_ss_get_cached_share_count($postId){
328
  function the_champ_prepare_counter_html($postUrl, $sharingType = 'horizontal', $shortUrl, $standardWidget = false){
329
  global $theChampCounterOptions, $post;
330
 
331
- if ( ( $sharingType == 'vertical' && !is_singular() ) || $standardWidget ) {
332
- $postTitle = get_bloginfo( 'name' ) . " - " . get_bloginfo( 'description' );
333
- if ( is_category() ) {
334
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_cat_title( '', false ) ), true ) );
335
- } elseif ( is_tag() ) {
336
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_tag_title( '', false ) ), true ) );
337
- } elseif ( is_tax() ) {
338
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_term_title( '', false ) ), true ) );
339
- } elseif ( is_search() ) {
340
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( __( 'Search for' ) .' "' .get_search_query() .'"' ), true ) );
341
- } elseif ( is_author() ) {
342
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( get_the_author_meta( 'display_name', get_query_var( 'author' ) ) ), true ) );
343
- } elseif ( is_archive() ) {
344
- if ( is_day() ) {
345
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( get_query_var( 'day' ) . ' ' .single_month_title( ' ', false ) . ' ' . __( 'Archives' ) ), true ) );
346
- } elseif ( is_month() ) {
347
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_month_title( ' ', false ) . ' ' . __( 'Archives' ) ), true ) );
348
- } elseif ( is_year() ) {
349
- $postTitle = esc_attr( wp_strip_all_tags( stripslashes( get_query_var( 'year' ) . ' ' . __( 'Archives' ) ), true ) );
350
  }
351
  }
352
- } else {
353
  $postTitle = $post->post_title;
354
  }
355
 
@@ -389,7 +389,7 @@ function the_champ_prepare_counter_html($postUrl, $sharingType = 'horizontal', $
389
  }elseif($provider == 'buffer'){
390
  $html .= '<li style="padding:7.35px 0 !important" class="the_champ_buffer"><a href="http://bufferapp.com/add" class="buffer-add-button" data-text="' . $postTitle . '" data-url="' . $postUrl . '" data-count="horizontal" data-via="'. (isset($theChampCounterOptions['buffer_username']) && $theChampCounterOptions['buffer_username'] != '' ? $theChampCounterOptions['buffer_username'] : '') .'" ></a><script type="text/javascript" src="https://d389zggrogs7qo.cloudfront.net/js/button.js"></script></li>';
391
  }elseif($provider == 'xing'){
392
- $html .= '<li style="padding:7.35px 0 !important" class="the_champ_xing"><div data-type="XING/Share" data-counter="right" data-url="'. $postUrl .'" data-lang="'. $language .'"></div><script>(function (d, s) {var x = d.createElement(s), s = d.getElementsByTagName(s)[0]; x.src = "https://www.xing-share.com/js/external/share.js"; s.parentNode.insertBefore(x, s); })(document, "script");</script></li>';
393
  }
394
  }
395
  $html .= '</ul><div style="clear:both"></div>';
@@ -567,15 +567,15 @@ function the_champ_render_sharing($content){
567
  }
568
  }
569
 
570
- $post_types = get_post_types( array( 'public' => true ), 'names', 'and' );
571
- $post_types = array_diff( $post_types, array( 'post', 'page' ) );
572
 
573
  $customUrl = apply_filters('heateor_ss_custom_share_url', '', $post);
574
 
575
  if(isset($theChampCounterOptions['enable'])){
576
  //counter interface
577
- if(isset($theChampCounterOptions['hor_enable']) && !(isset($sharingMeta['counter']) && $sharingMeta['counter'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))) )){
578
- $postId = $post-> ID;
579
  if($customUrl != ''){
580
  $counterPostUrl = $customUrl;
581
  }elseif($counterBpActivity){
@@ -614,11 +614,11 @@ function the_champ_render_sharing($content){
614
  echo $horizontalDiv;
615
  }
616
  // show horizontal counter
617
- if((isset($theChampCounterOptions['home']) && is_front_page()) || (isset( $theChampCounterOptions['category']) && is_category()) || (isset( $theChampCounterOptions['archive']) && is_archive()) || ( isset( $theChampCounterOptions['post'] ) && is_single() && isset($post-> post_type) && $post-> post_type == 'post' ) || ( isset( $theChampCounterOptions['page'] ) && is_page() && isset($post-> post_type) && $post-> post_type == 'page' ) || ( isset( $theChampCounterOptions['excerpt'] ) && (is_home() || current_filter() == 'the_excerpt') ) || ( isset( $theChampCounterOptions['bb_reply'] ) && current_filter() == 'bbp_get_reply_content' ) || ( isset( $theChampCounterOptions['bb_forum'] ) && (isset( $theChampCounterOptions['top'] ) && current_filter() == 'bbp_template_before_single_forum' || isset( $theChampCounterOptions['bottom'] ) && current_filter() == 'bbp_template_after_single_forum' )) || ( isset( $theChampCounterOptions['bb_topic'] ) && (isset( $theChampCounterOptions['top'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic')) || isset( $theChampCounterOptions['bottom'] ) && in_array(current_filter(), array('bbp_template_after_single_topic', 'bbp_template_after_lead_topic')) )) || (isset( $theChampCounterOptions['woocom_shop'] ) && current_filter() == 'woocommerce_after_shop_loop_item') || (isset( $theChampCounterOptions['woocom_product'] ) && current_filter() == 'woocommerce_share') || (isset( $theChampCounterOptions['woocom_thankyou'] ) && current_filter() == 'woocommerce_thankyou') || (current_filter() == 'bp_before_group_header' && isset($theChampCounterOptions['bp_group'])) ) {
618
- if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bbp_template_after_single_topic', 'bbp_template_after_lead_topic', 'bbp_template_after_single_forum','woocommerce_after_shop_loop_item', 'woocommerce_share', 'woocommerce_thankyou', 'bp_before_group_header') ) ){
619
  echo '<div style="clear:both"></div>'.$horizontalDiv.'<div style="clear:both"></div>';
620
  }else{
621
- if(isset($theChampCounterOptions['top'] ) && isset($theChampCounterOptions['bottom'])){
622
  $content = $horizontalDiv.'<br/>'.$content.'<br/>'.$horizontalDiv;
623
  }else{
624
  if(isset($theChampCounterOptions['top'])){
@@ -628,10 +628,10 @@ function the_champ_render_sharing($content){
628
  }
629
  }
630
  }
631
- } elseif( count( $post_types ) ) {
632
- foreach ( $post_types as $post_type ) {
633
- if( isset( $theChampCounterOptions[$post_type] ) && ( is_single() || is_page() ) && isset($post-> post_type) && $post-> post_type == $post_type ) {
634
- if(isset($theChampCounterOptions['top'] ) && isset($theChampCounterOptions['bottom'])){
635
  $content = $horizontalDiv.'<br/>'.$content.'<br/>'.$horizontalDiv;
636
  }else{
637
  if(isset($theChampCounterOptions['top'])){
@@ -644,8 +644,8 @@ function the_champ_render_sharing($content){
644
  }
645
  }
646
  }
647
- if(isset($theChampCounterOptions['vertical_enable']) && !the_champ_is_amp_page() && !(isset($sharingMeta['vertical_counter']) && $sharingMeta['vertical_counter'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))) )){
648
- $postId = $post-> ID;
649
  if($customUrl != ''){
650
  $counterPostUrl = $customUrl;
651
  }elseif(isset($theChampCounterOptions['vertical_target_url'])){
@@ -673,11 +673,11 @@ function the_champ_render_sharing($content){
673
  $counterUrl = the_champ_generate_like_buttons_short_url($counterPostUrl, $postId);
674
 
675
  $sharingDiv = the_champ_prepare_counter_html($counterPostUrl, 'vertical', $counterUrl);
676
- $offset = (isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) ? $theChampCounterOptions['alignment'].': '. ( $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] == '' ? 0 : $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] ) .'px;' : '').(isset($theChampCounterOptions['top_offset']) ? 'top: '. ( $theChampCounterOptions['top_offset'] == '' ? 0 : $theChampCounterOptions['top_offset'] ) .'px;' : '');
677
- $verticalDiv = "<div class='the_champ_counter_container the_champ_vertical_counter" . ( isset( $theChampCounterOptions['hide_mobile_likeb'] ) ? ' the_champ_hide_sharing' : '' ) . "' style='". $offset . (isset($theChampCounterOptions['vertical_bg']) && $theChampCounterOptions['vertical_bg'] != '' ? 'background-color: '.$theChampCounterOptions['vertical_bg'] . ';' : '-webkit-box-shadow:none;box-shadow:none;') . "'>".$sharingDiv."</div>";
678
  // show vertical counter
679
- if((isset($theChampCounterOptions['vertical_home']) && is_front_page()) || (isset( $theChampCounterOptions['vertical_category']) && is_category()) || (isset( $theChampCounterOptions['vertical_archive']) && is_archive()) || ( isset( $theChampCounterOptions['vertical_post'] ) && is_single() && isset($post-> post_type) && $post-> post_type == 'post' ) || ( isset( $theChampCounterOptions['vertical_page'] ) && is_page() && isset($post-> post_type) && $post-> post_type == 'page' ) || ( isset( $theChampCounterOptions['vertical_excerpt'] ) && (is_home() || current_filter() == 'the_excerpt') ) || ( isset( $theChampCounterOptions['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum') || ( isset( $theChampCounterOptions['vertical_bb_topic'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic'))) || (current_filter() == 'bp_before_group_header' && isset($theChampCounterOptions['vertical_bp_group'])) ){
680
- if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bp_before_group_header') ) ){
681
  echo $verticalDiv;
682
  }else{
683
  if(is_front_page()){
@@ -695,7 +695,7 @@ function the_champ_render_sharing($content){
695
  $counterUrl = the_champ_generate_like_buttons_short_url($counterPostUrl, 0);
696
 
697
  $sharingDiv = the_champ_prepare_counter_html($counterPostUrl, 'vertical', $counterUrl);
698
- $verticalDiv = "<div class='the_champ_counter_container the_champ_vertical_counter" . ( isset( $theChampCounterOptions['hide_mobile_likeb'] ) ? ' the_champ_hide_sharing' : '' ) . "' style='". $offset . (isset($theChampCounterOptions['vertical_bg']) && $theChampCounterOptions['vertical_bg'] != '' ? 'background-color: '.$theChampCounterOptions['vertical_bg'] . ';' : '-webkit-box-shadow:none;box-shadow:none;') . "'>".$sharingDiv."</div>";
699
  }
700
  $content = $content.$verticalDiv;
701
  $$var++;
@@ -704,9 +704,9 @@ function the_champ_render_sharing($content){
704
  $content = $content.$verticalDiv;
705
  }
706
  }
707
- } elseif( count( $post_types ) ) {
708
- foreach ( $post_types as $post_type ) {
709
- if( isset( $theChampCounterOptions['vertical_' . $post_type] ) && ( is_single() || is_page() ) && isset($post-> post_type) && $post-> post_type == $post_type ) {
710
  $content = $content . $verticalDiv;
711
  }
712
  }
@@ -716,7 +716,7 @@ function the_champ_render_sharing($content){
716
 
717
  if(isset($theChampSharingOptions['enable'])){
718
  // sharing interface
719
- if(isset($theChampSharingOptions['hor_enable']) && !(isset($sharingMeta['sharing']) && $sharingMeta['sharing'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))) )){
720
  $postId = $post->ID;
721
  if($customUrl != ''){
722
  $postUrl = $customUrl;
@@ -766,16 +766,16 @@ function the_champ_render_sharing($content){
766
  $sharingContainerStyle = 'style="float: right"';
767
  }
768
  }
769
- $horizontalDiv = "<div style='clear: both'></div><div ". $sharingContainerStyle ." class='the_champ_sharing_container the_champ_horizontal_sharing' " . ( the_champ_is_amp_page() ? '' : 'super-socializer-data-href="' . (isset($shareCountUrl) && $shareCountUrl ? $shareCountUrl : $postUrl) . '"' ) . ( heateor_ss_get_cached_share_count($shareCountTransientId) === false || the_champ_is_amp_page() ? "" : 'super-socializer-no-counts="1"' ) . "><div class='the_champ_sharing_title' ". $sharingTitleStyle ." >".ucfirst($theChampSharingOptions['title'])."</div>".$sharingDiv."</div><div style='clear: both'></div>";
770
  if($sharingBpActivity){
771
  echo $horizontalDiv;
772
  }
773
  // show horizontal sharing
774
- if((isset($theChampSharingOptions['home']) && is_front_page()) || (isset( $theChampSharingOptions['category']) && is_category()) || (isset( $theChampSharingOptions['archive']) && is_archive()) || ( isset( $theChampSharingOptions['post'] ) && is_single() && isset($post-> post_type) && $post-> post_type == 'post' ) || ( isset( $theChampSharingOptions['page'] ) && is_page() && isset($post-> post_type) && $post-> post_type == 'page' ) || ( isset( $theChampSharingOptions['excerpt'] ) && (is_home() || current_filter() == 'the_excerpt') ) || ( isset( $theChampSharingOptions['bb_reply'] ) && current_filter() == 'bbp_get_reply_content' ) || ( isset( $theChampSharingOptions['bb_forum'] ) && (isset( $theChampSharingOptions['top'] ) && current_filter() == 'bbp_template_before_single_forum' || isset( $theChampSharingOptions['bottom'] ) && current_filter() == 'bbp_template_after_single_forum' )) || ( isset( $theChampSharingOptions['bb_topic'] ) && (isset( $theChampSharingOptions['top'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic')) || isset( $theChampSharingOptions['bottom'] ) && in_array(current_filter(), array('bbp_template_after_single_topic', 'bbp_template_after_lead_topic')) )) || (isset( $theChampSharingOptions['woocom_shop'] ) && current_filter() == 'woocommerce_after_shop_loop_item') || (isset( $theChampSharingOptions['woocom_product'] ) && current_filter() == 'woocommerce_share') || (isset( $theChampSharingOptions['woocom_thankyou'] ) && current_filter() == 'woocommerce_thankyou') || (current_filter() == 'bp_before_group_header' && isset($theChampSharingOptions['bp_group'])) ) {
775
- if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bbp_template_after_single_topic', 'bbp_template_after_lead_topic', 'bbp_template_after_single_forum', 'woocommerce_after_shop_loop_item', 'woocommerce_share', 'woocommerce_thankyou', 'bp_before_group_header') ) ){
776
  echo '<div style="clear:both"></div>'.$horizontalDiv.'<div style="clear:both"></div>';
777
  }else{
778
- if(isset($theChampSharingOptions['top'] ) && isset($theChampSharingOptions['bottom'])){
779
  $content = $horizontalDiv.'<br/>'.$content.'<br/>'.$horizontalDiv;
780
  }else{
781
  if(isset($theChampSharingOptions['top'])){
@@ -785,10 +785,10 @@ function the_champ_render_sharing($content){
785
  }
786
  }
787
  }
788
- } elseif( count( $post_types ) ) {
789
- foreach ( $post_types as $post_type ) {
790
- if( isset( $theChampSharingOptions[$post_type] ) && ( is_single() || is_page() ) && isset($post-> post_type) && $post-> post_type == $post_type ) {
791
- if(isset($theChampSharingOptions['top'] ) && isset($theChampSharingOptions['bottom'])){
792
  $content = $horizontalDiv.'<br/>'.$content.'<br/>'.$horizontalDiv;
793
  }else{
794
  if(isset($theChampSharingOptions['top'])){
@@ -801,8 +801,8 @@ function the_champ_render_sharing($content){
801
  }
802
  }
803
  }
804
- if(isset($theChampSharingOptions['vertical_enable']) && !the_champ_is_amp_page() && !(isset($sharingMeta['vertical_sharing']) && $sharingMeta['vertical_sharing'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))) )){
805
- $postId = $post-> ID;
806
  if($customUrl != ''){
807
  $postUrl = $customUrl;
808
  $shareCountUrl = $postUrl;
@@ -845,10 +845,10 @@ function the_champ_render_sharing($content){
845
  $shareCountTransientId = heateor_ss_get_share_count_transient_id($postUrl);
846
  $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, $shareCountUrl, 'vertical', isset($theChampSharingOptions['vertical_counts']), isset($theChampSharingOptions['vertical_total_shares']), $shareCountTransientId);
847
  $offset = (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions['alignment'].': '.$theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'].'px;' : '').(isset($theChampSharingOptions['top_offset']) && $theChampSharingOptions['top_offset'] != '' ? 'top: '.$theChampSharingOptions['top_offset'].'px;' : '');
848
- $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing" . ( isset( $theChampSharingOptions['hide_mobile_sharing'] ) ? ' the_champ_hide_sharing' : '' ) . ( isset( $theChampSharingOptions['bottom_mobile_sharing'] ) ? ' the_champ_bottom_sharing' : '' ) . "' style='width:" . ($theChampSharingOptions['vertical_sharing_size'] + 4) . "px;" . $offset . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;box-shadow:none;') . "' " . ( the_champ_is_amp_page() ? '' : 'super-socializer-data-href="' . (isset($shareCountUrl) && $shareCountUrl ? $shareCountUrl : $postUrl) . '"' ) . ( heateor_ss_get_cached_share_count( $shareCountTransientId ) === false || the_champ_is_amp_page() ? "" : 'super-socializer-no-counts="1"' ) . ">".$sharingDiv."</div>";
849
  // show vertical sharing
850
- if((isset($theChampSharingOptions['vertical_home']) && is_front_page()) || (isset( $theChampSharingOptions['vertical_category']) && is_category()) || (isset( $theChampSharingOptions['vertical_archive']) && is_archive()) || ( isset( $theChampSharingOptions['vertical_post'] ) && is_single() && isset($post-> post_type) && $post-> post_type == 'post' ) || ( isset( $theChampSharingOptions['vertical_page'] ) && is_page() && isset($post-> post_type) && $post-> post_type == 'page' ) || ( isset( $theChampSharingOptions['vertical_excerpt'] ) && (is_home() || current_filter() == 'the_excerpt') ) || ( isset( $theChampSharingOptions['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum') || ( isset( $theChampSharingOptions['vertical_bb_topic'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic'))) || (current_filter() == 'bp_before_group_header' && isset($theChampSharingOptions['vertical_bp_group']))) {
851
- if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bp_before_group_header') ) ){
852
  echo $verticalDiv;
853
  }else{
854
  if(is_front_page()){
@@ -869,7 +869,7 @@ function the_champ_render_sharing($content){
869
  $sharingUrl = the_champ_generate_social_sharing_short_url($postUrl, 0);
870
  $shareCountTransientId = heateor_ss_get_share_count_transient_id($postUrl);
871
  $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, $shareCountUrl, 'vertical', isset($theChampSharingOptions['vertical_counts']), isset($theChampSharingOptions['vertical_total_shares']), $shareCountTransientId);
872
- $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing" . ( isset( $theChampSharingOptions['hide_mobile_sharing'] ) ? ' the_champ_hide_sharing' : '' ) . ( isset( $theChampSharingOptions['bottom_mobile_sharing'] ) ? ' the_champ_bottom_sharing' : '' ) . "' style='width:" . ($theChampSharingOptions['vertical_sharing_size'] + 4) . "px;" . $offset . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;box-shadow:none;') . "' " . ( the_champ_is_amp_page() ? '' : 'super-socializer-data-href="' . (isset($shareCountUrl) && $shareCountUrl ? $shareCountUrl : $postUrl) . '"' ) . ( heateor_ss_get_cached_share_count($shareCountTransientId) === false || the_champ_is_amp_page() ? "" : 'super-socializer-no-counts="1"' ) . ">".$sharingDiv."</div>";
873
  }
874
  $content = $content.$verticalDiv;
875
  $$var++;
@@ -878,9 +878,9 @@ function the_champ_render_sharing($content){
878
  $content = $content.$verticalDiv;
879
  }
880
  }
881
- } elseif( count( $post_types ) ) {
882
- foreach ( $post_types as $post_type ) {
883
- if( isset( $theChampSharingOptions['vertical_' . $post_type] ) && ( is_single() || is_page() ) && isset($post-> post_type) && $post-> post_type == $post_type ) {
884
  $content = $content . $verticalDiv;
885
  }
886
  }
@@ -953,8 +953,8 @@ function the_champ_sharing_count(){
953
  $ajaxResponse = array();
954
 
955
  $multiplier = 60;
956
- if ( $theChampSharingOptions['share_count_cache_refresh_count'] != '' ) {
957
- switch ( $theChampSharingOptions['share_count_cache_refresh_unit'] ) {
958
  case 'seconds':
959
  $multiplier = 1;
960
  break;
@@ -1044,23 +1044,23 @@ function the_champ_sharing_count(){
1044
  }
1045
  break;
1046
  case 'twitter':
1047
- if(!empty($body-> count)){
1048
- $shareCountTransient['twitter'] = $body-> count;
1049
  }else{
1050
  $shareCountTransient['twitter'] = 0;
1051
  }
1052
  break;
1053
  case 'linkedin':
1054
- if(!empty($body-> count)){
1055
- $shareCountTransient['linkedin'] = $body-> count;
1056
  }else{
1057
  $shareCountTransient['linkedin'] = 0;
1058
  }
1059
  break;
1060
  case 'reddit':
1061
  $shareCountTransient['reddit'] = 0;
1062
- if(!empty($body-> data-> children)){
1063
- $children = $body-> data-> children;
1064
  $ups = $downs = 0;
1065
  foreach($children as $child){
1066
  $ups += (int) $child->data->ups;
@@ -1074,15 +1074,15 @@ function the_champ_sharing_count(){
1074
  }
1075
  break;
1076
  case 'pinterest':
1077
- if(!empty($body-> count)){
1078
- $shareCountTransient['pinterest'] = $body-> count;
1079
  }else{
1080
  $shareCountTransient['pinterest'] = 0;
1081
  }
1082
  break;
1083
  case 'buffer':
1084
- if(!empty($body-> shares)){
1085
- $shareCountTransient['buffer'] = $body-> shares;
1086
  }else{
1087
  $shareCountTransient['buffer'] = 0;
1088
  }
@@ -1127,7 +1127,7 @@ function the_champ_sharing_count(){
1127
  }
1128
  }
1129
  $responseData[$targetUrlsArray[0][$i]] = $finalShareCountTransient;
1130
- if ( $theChampSharingOptions['share_count_cache_refresh_count'] != '' ) {
1131
  set_transient('heateor_ss_share_count_' . heateor_ss_get_share_count_transient_id($targetUrlsArray[0][$i]), $finalShareCountTransient, $transientExpirationTime);
1132
  // update share counts saved in the database
1133
  heateor_ss_update_share_counts($targetUrlsArray[0][$i], $finalShareCountTransient);
@@ -1183,8 +1183,8 @@ function the_champ_save_facebook_shares(){
1183
  global $theChampSharingOptions;
1184
 
1185
  $multiplier = 60;
1186
- if ( $theChampSharingOptions['share_count_cache_refresh_count'] != '' ) {
1187
- switch ( $theChampSharingOptions['share_count_cache_refresh_unit'] ) {
1188
  case 'seconds':
1189
  $multiplier = 1;
1190
  break;
@@ -1212,7 +1212,7 @@ function the_champ_save_facebook_shares(){
1212
  $shareCountTransient = get_transient('heateor_ss_share_count_' . $transientId);
1213
  if($shareCountTransient !== false){
1214
  $shareCountTransient['facebook'] = $value;
1215
- if($theChampSharingOptions['share_count_cache_refresh_count'] != '' ){
1216
  $savedShareCount = heateor_ss_get_saved_share_counts($transientId, $key);
1217
  $savedShareCount['facebook'] = $value;
1218
  set_transient('heateor_ss_share_count_' . $transientId, $shareCountTransient, $transientExpirationTime);
7
  /**
8
  * Render sharing interface html
9
  */
10
+ function the_champ_prepare_sharing_html($postUrl, $shareCountUrl, $sharingType = 'horizontal', $displayCount, $totalShares, $shareCountTransientId, $standardWidget = false ){
11
 
12
  global $post, $theChampSharingOptions;
13
 
14
+ if( NULL === $post ||!is_object($post )){
15
+ $post = get_post($shareCountTransientId );
16
  }
17
 
18
+ if(!is_object($post )){
19
  return '';
20
  }
21
 
22
+ if( ($sharingType == 'vertical' && !is_singular()) || $standardWidget ){
23
+ $postTitle = get_bloginfo('name') . " - " . get_bloginfo('description');
24
+ if( is_category()){
25
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_cat_title('', false )), true ));
26
+ }elseif( is_tag()){
27
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_tag_title('', false )), true ));
28
+ }elseif( is_tax()){
29
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_term_title('', false )), true ));
30
+ }elseif( is_search()){
31
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( __('Search for').' "'.get_search_query().'"'), true ));
32
+ }elseif( is_author()){
33
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( get_the_author_meta('display_name', get_query_var('author'))), true ));
34
+ }elseif( is_archive()){
35
+ if( is_day()){
36
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( get_query_var('day'). ' ' .single_month_title(' ', false ).' '. __('Archives')), true ));
37
+ }elseif( is_month()){
38
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_month_title(' ', false ) . ' ' . __('Archives')), true ));
39
+ }elseif( is_year()){
40
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( get_query_var('year') . ' ' . __('Archives')), true ));
41
  }
42
  }
43
+ }else {
44
  $postTitle = $post->post_title;
45
  }
46
 
47
  $originalPostTitle = html_entity_decode($postTitle, ENT_QUOTES, 'UTF-8');
48
  $postTitle = heateor_ss_sanitize_post_title($postTitle);
49
 
50
+ $output = apply_filters('the_champ_sharing_interface_filter', '', $postUrl, $sharingType, $theChampSharingOptions, $post, $displayCount, $totalShares );
51
+ if($output != ''){
52
  return $output;
53
  }
54
  $html = '';
55
 
56
+ $sharingMeta = get_post_meta($post->ID, '_the_champ_meta', true );
57
 
58
+ if(isset($theChampSharingOptions[$sharingType.'_re_providers'])){
59
 
60
+ if( the_champ_is_amp_page()){
61
  $sharingNetworks = heateor_ss_fetch_amp_sharing_networks();
62
+ }else {
63
  $sharingNetworks = heateor_ss_fetch_sharing_networks($sharingType);
64
  }
65
 
66
  $html = the_champ_is_amp_page() ? '' : '<ul class="the_champ_sharing_ul">';
67
  $iconHeight = $theChampSharingOptions[$sharingType . '_sharing_shape'] != 'rectangle' ? $theChampSharingOptions[$sharingType . '_sharing_size'] : $theChampSharingOptions[$sharingType . '_sharing_height'];
68
+ $style = 'style="width:' . ($theChampSharingOptions[$sharingType . '_sharing_shape'] != 'rectangle' ? $theChampSharingOptions[$sharingType . '_sharing_size'] : $theChampSharingOptions[$sharingType . '_sharing_width']) . 'px;height:' . $iconHeight . 'px;';
69
  $counterContainerInitHtml = '<ss class="the_champ_square_count';
70
  $counterContainerEndHtml = '</ss>';
71
  $innerStyle = 'display:block;';
72
  $liClass = 'theChampSharingRound';
73
+ if($theChampSharingOptions[$sharingType . '_sharing_shape'] == 'round'){
74
  $style .= 'border-radius:999px;';
75
  $innerStyle .= 'border-radius:999px;';
76
+ }elseif($theChampSharingOptions[$sharingType . '_border_radius'] != ''){
77
  $style .= 'border-radius:' . $theChampSharingOptions[$sharingType . '_border_radius'] . 'px;';
78
  }
79
+ if($sharingType == 'vertical' && $theChampSharingOptions[$sharingType . '_sharing_shape'] == 'square'){
80
  $style .= 'margin:0;';
81
  $liClass = '';
82
  }
84
  $liItems = '';
85
  $language = $theChampSharingOptions['language'] != '' ? $theChampSharingOptions['language'] : '';
86
  $likeButtonCountContainer = '';
87
+ if($displayCount ){
88
  $likeButtonCountContainer = $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
89
  }
90
 
91
  // share count
92
+ if($savedShareCount = heateor_ss_get_saved_share_counts($shareCountTransientId, $postUrl )){
93
  $shareCounts = $savedShareCount;
94
+ }elseif( false !== ($cachedShareCount = heateor_ss_get_cached_share_count($shareCountTransientId ))){
95
  $shareCounts = $cachedShareCount;
96
+ }else {
97
  $shareCounts = '&nbsp;';
98
  }
99
 
101
  $counterPlaceholderValue = '';
102
  $innerStyleConditional = '';
103
 
104
+ if($displayCount ){
105
+ if(!isset($theChampSharingOptions[$sharingType . '_counter_position'])){
106
  $counterPosition = $sharingType == 'horizontal' ? 'top' : 'inner_top';
107
+ }else {
108
  $counterPosition = $theChampSharingOptions[$sharingType . '_counter_position'];
109
  }
110
+ switch ($counterPosition ){
111
  case 'left':
112
  $innerStyleConditional = 'display:block;';
113
  $counterPlaceholder = '><i';
141
  break;
142
  default:
143
  }
144
+ $counterPlaceholderValue = str_replace('>', '>' . $counterContainerInitHtml . ' the_champ_%network%_count">&nbsp;' . $counterContainerEndHtml, $counterPlaceholder );
145
  }
146
 
147
  $twitterUsername = $theChampSharingOptions['twitter_username'] != '' ? $theChampSharingOptions['twitter_username'] : '';
167
  }
168
 
169
  $shareCount = array();
170
+ foreach ($theChampSharingOptions[$sharingType.'_re_providers'] as $provider ){
171
+ $shareCount[$provider] = $shareCounts == '&nbsp;' ? '' : (isset($shareCounts[$provider]) ? $shareCounts[$provider] : '');
172
+ $issetStartingShareCount = isset($sharingMeta[$provider . '_' . $sharingType . '_count']) && intval($sharingMeta[$provider . '_' . $sharingType . '_count']) != 0 ? true : false;
173
+ $totalShareCount += intval($shareCount[$provider]) + ($issetStartingShareCount ? $sharingMeta[$provider . '_' . $sharingType . '_count'] : 0) ;
174
+ $sharingNetworks[$provider] = str_replace($toBeReplaced, $replaceBy, $sharingNetworks[$provider]);
175
  $liItems .= str_replace(
176
  array(
177
  '%padding%',
194
  '%title%'
195
  ),
196
  array(
197
+ ($theChampSharingOptions[$sharingType . '_sharing_shape'] == 'rectangle' ? $theChampSharingOptions[$sharingType . '_sharing_height'] : $theChampSharingOptions[$sharingType . '_sharing_size']) * 21/100,
198
  $provider,
199
+ ucfirst( str_replace( array(' ', '_', '.'), '', $provider )),
200
  $likeButtonCountContainer,
201
+ urlencode($postUrl ),
202
  $shareCountUrl,
203
  $postTitle,
204
  $wpseoPostTitle,
208
  $language,
209
  $theChampSharingOptions['buffer_username'] != '' ? $theChampSharingOptions['buffer_username'] : '',
210
  $style,
211
+ $innerStyle . ($shareCount[$provider] || ($issetStartingShareCount && $shareCounts != '&nbsp;') ? $innerStyleConditional : ''),
212
  $liClass,
213
+ str_replace('%network%', $provider, $issetStartingShareCount ? str_replace('>&nbsp;', ' ss_st_count="' . $sharingMeta[$provider . '_' . $sharingType . '_count'] . '"' . ($shareCounts == '&nbsp;' ? '>&nbsp;' : ' style="visibility:visible;' . ($innerStyleConditional ? 'display:block;' : '') . '">' . heateor_ss_round_off_counts( intval($shareCount[$provider]) + $sharingMeta[$provider . '_' . $sharingType . '_count'])) , $counterPlaceholderValue ) : str_replace('>&nbsp;', $shareCount[$provider] ? ' style="visibility:visible;' . ($innerStyleConditional ? 'display:block;' : '') . '">' . heateor_ss_round_off_counts( intval($shareCount[$provider])) : '>&nbsp;', $counterPlaceholderValue )),
214
+ ucfirst( str_replace('_', ' ', $provider ))
215
  ),
216
  $sharingNetworks[$provider]
217
  );
218
  }
219
 
220
  if(isset($theChampSharingOptions[$sharingType . '_more']) && !the_champ_is_amp_page()){
221
+ $liItems .= '<li class="' . ($liClass != '' ? $liClass : '') . '">';
222
+ if($displayCount){
223
  $liItems .= $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
224
  }
225
+ $liItems .= '<i ' . $style . ' title="'. __('More', 'super-socializer') .'" alt="'. __('More', 'super-socializer') .'" class="theChampSharing theChampMoreBackground" onclick="theChampMoreSharingPopup(this, \'' .$postUrl. '\', \''.$postTitle.'\', \'' .heateor_ss_sanitize_post_title(heateor_ss_wpseo_twitter_title($post)). '\')" ><ss style="display:block" class="theChampSharingSvg theChampMoreSvg"></ss></i></li>';
226
  }
227
 
228
  $totalSharesHtml = '';
229
+ if($totalShares && !the_champ_is_amp_page()){
230
  $totalSharesHtml = '<li class="' . $liClass . '">';
231
+ if($displayCount){
232
  $totalSharesHtml .= $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
233
  }
234
+ if($sharingType == 'horizontal'){
235
  $addStyle = ';margin-left:9px !important;';
236
+ }else {
237
  $addStyle = ';margin-bottom:9px !important;';
238
  }
239
+ $addStyle .= ($totalShareCount && $shareCounts != '&nbsp;' ? 'visibility:visible;' : '') . '"';
240
+ $style = str_replace(';"', $addStyle, $style );
241
+ $totalSharesHtml .= '<i ' . $style . ' title="Total Shares" alt="Total Shares" class="theChampSharing theChampTCBackground">' . ($totalShareCount ? '<div class="theChampTotalShareCount" style="font-size: ' . ($iconHeight * 62/100 ) . 'px">' . heateor_ss_round_off_counts($totalShareCount ) . '</div><div class="theChampTotalShareText" style="font-size: ' . ($iconHeight * 38/100 ) . 'px">' . ($totalShareCount < 2 ? __('Share', 'super-socializer') : __('Shares', 'super-socializer')) . '</div>' : '') . '</i></li>';
242
  }
243
 
244
+ if($sharingType == 'vertical'){
245
  $html .= $totalSharesHtml . $liItems;
246
+ }else {
247
  $html .= $liItems . $totalSharesHtml;
248
  }
249
 
300
  * Roud off share counts
301
  */
302
  function heateor_ss_round_off_counts($sharingCount){
303
+ if($sharingCount > 999 && $sharingCount < 10000 ){
304
+ $sharingCount = round($sharingCount/1000, 1 ) . 'K';
305
+ }elseif($sharingCount > 9999 && $sharingCount < 100000 ){
306
+ $sharingCount = round($sharingCount/1000, 1 ) . 'K';
307
+ }else if($sharingCount > 99999 && $sharingCount < 1000000 ){
308
+ $sharingCount = round($sharingCount/1000, 1 ) . 'K';
309
+ }else if($sharingCount > 999999 ){
310
+ $sharingCount = round($sharingCount/1000000, 1 ) . 'M';
311
  }
312
 
313
  return $sharingCount;
317
  * Get cached share counts for given post ID
318
  */
319
  function heateor_ss_get_cached_share_count($postId){
320
+ $shareCountTransient = get_transient('heateor_ss_share_count_' . $postId );
321
+ do_action('heateor_ss_share_count_transient_hook', $shareCountTransient, $postId );
322
  return $shareCountTransient;
323
  }
324
 
328
  function the_champ_prepare_counter_html($postUrl, $sharingType = 'horizontal', $shortUrl, $standardWidget = false){
329
  global $theChampCounterOptions, $post;
330
 
331
+ if( ($sharingType == 'vertical' && !is_singular()) || $standardWidget ){
332
+ $postTitle = get_bloginfo('name') . " - " . get_bloginfo('description');
333
+ if( is_category()){
334
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_cat_title('', false )), true ));
335
+ }elseif( is_tag()){
336
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_tag_title('', false )), true ));
337
+ }elseif( is_tax()){
338
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_term_title('', false )), true ));
339
+ }elseif( is_search()){
340
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( __('Search for') .' "' .get_search_query() .'"'), true ));
341
+ }elseif( is_author()){
342
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( get_the_author_meta('display_name', get_query_var('author'))), true ));
343
+ }elseif( is_archive()){
344
+ if( is_day()){
345
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( get_query_var('day') . ' ' .single_month_title(' ', false ) . ' ' . __('Archives')), true ));
346
+ }elseif( is_month()){
347
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( single_month_title(' ', false ) . ' ' . __('Archives')), true ));
348
+ }elseif( is_year()){
349
+ $postTitle = esc_attr( wp_strip_all_tags( stripslashes( get_query_var('year') . ' ' . __('Archives')), true ));
350
  }
351
  }
352
+ }else {
353
  $postTitle = $post->post_title;
354
  }
355
 
389
  }elseif($provider == 'buffer'){
390
  $html .= '<li style="padding:7.35px 0 !important" class="the_champ_buffer"><a href="http://bufferapp.com/add" class="buffer-add-button" data-text="' . $postTitle . '" data-url="' . $postUrl . '" data-count="horizontal" data-via="'. (isset($theChampCounterOptions['buffer_username']) && $theChampCounterOptions['buffer_username'] != '' ? $theChampCounterOptions['buffer_username'] : '') .'" ></a><script type="text/javascript" src="https://d389zggrogs7qo.cloudfront.net/js/button.js"></script></li>';
391
  }elseif($provider == 'xing'){
392
+ $html .= '<li style="padding:7.35px 0 !important" class="the_champ_xing"><div data-type="XING/Share" data-counter="right" data-url="'. $postUrl .'" data-lang="'. $language .'"></div><script>(function (d, s){var x = d.createElement(s), s = d.getElementsByTagName(s)[0]; x.src = "https://www.xing-share.com/js/external/share.js"; s.parentNode.insertBefore(x, s); })(document, "script");</script></li>';
393
  }
394
  }
395
  $html .= '</ul><div style="clear:both"></div>';
567
  }
568
  }
569
 
570
+ $post_types = get_post_types( array('public' => true ), 'names', 'and');
571
+ $post_types = array_diff($post_types, array('post', 'page'));
572
 
573
  $customUrl = apply_filters('heateor_ss_custom_share_url', '', $post);
574
 
575
  if(isset($theChampCounterOptions['enable'])){
576
  //counter interface
577
+ if(isset($theChampCounterOptions['hor_enable']) && !(isset($sharingMeta['counter']) && $sharingMeta['counter'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))))){
578
+ $postId = $post->ID;
579
  if($customUrl != ''){
580
  $counterPostUrl = $customUrl;
581
  }elseif($counterBpActivity){
614
  echo $horizontalDiv;
615
  }
616
  // show horizontal counter
617
+ if((isset($theChampCounterOptions['home']) && is_front_page()) || (isset($theChampCounterOptions['category']) && is_category()) || (isset($theChampCounterOptions['archive']) && is_archive()) || (isset($theChampCounterOptions['post']) && is_single() && isset($post->post_type) && $post->post_type == 'post') || (isset($theChampCounterOptions['page']) && is_page() && isset($post->post_type) && $post->post_type == 'page') || (isset($theChampCounterOptions['excerpt']) && (is_home() || current_filter() == 'the_excerpt')) || (isset($theChampCounterOptions['bb_reply']) && current_filter() == 'bbp_get_reply_content') || (isset($theChampCounterOptions['bb_forum']) && (isset($theChampCounterOptions['top']) && current_filter() == 'bbp_template_before_single_forum' || isset($theChampCounterOptions['bottom']) && current_filter() == 'bbp_template_after_single_forum')) || (isset($theChampCounterOptions['bb_topic']) && (isset($theChampCounterOptions['top']) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic')) || isset($theChampCounterOptions['bottom']) && in_array(current_filter(), array('bbp_template_after_single_topic', 'bbp_template_after_lead_topic')))) || (isset($theChampCounterOptions['woocom_shop']) && current_filter() == 'woocommerce_after_shop_loop_item') || (isset($theChampCounterOptions['woocom_product']) && current_filter() == 'woocommerce_share') || (isset($theChampCounterOptions['woocom_thankyou']) && current_filter() == 'woocommerce_thankyou') || (current_filter() == 'bp_before_group_header' && isset($theChampCounterOptions['bp_group']))){
618
+ if(in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bbp_template_after_single_topic', 'bbp_template_after_lead_topic', 'bbp_template_after_single_forum','woocommerce_after_shop_loop_item', 'woocommerce_share', 'woocommerce_thankyou', 'bp_before_group_header'))){
619
  echo '<div style="clear:both"></div>'.$horizontalDiv.'<div style="clear:both"></div>';
620
  }else{
621
+ if(isset($theChampCounterOptions['top']) && isset($theChampCounterOptions['bottom'])){
622
  $content = $horizontalDiv.'<br/>'.$content.'<br/>'.$horizontalDiv;
623
  }else{
624
  if(isset($theChampCounterOptions['top'])){
628
  }
629
  }
630
  }
631
+ }elseif(count($post_types)){
632
+ foreach ($post_types as $post_type){
633
+ if(isset($theChampCounterOptions[$post_type]) && (is_single() || is_page()) && isset($post->post_type) && $post->post_type == $post_type){
634
+ if(isset($theChampCounterOptions['top']) && isset($theChampCounterOptions['bottom'])){
635
  $content = $horizontalDiv.'<br/>'.$content.'<br/>'.$horizontalDiv;
636
  }else{
637
  if(isset($theChampCounterOptions['top'])){
644
  }
645
  }
646
  }
647
+ if(isset($theChampCounterOptions['vertical_enable']) && !the_champ_is_amp_page() && !(isset($sharingMeta['vertical_counter']) && $sharingMeta['vertical_counter'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))))){
648
+ $postId = $post->ID;
649
  if($customUrl != ''){
650
  $counterPostUrl = $customUrl;
651
  }elseif(isset($theChampCounterOptions['vertical_target_url'])){
673
  $counterUrl = the_champ_generate_like_buttons_short_url($counterPostUrl, $postId);
674
 
675
  $sharingDiv = the_champ_prepare_counter_html($counterPostUrl, 'vertical', $counterUrl);
676
+ $offset = (isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) ? $theChampCounterOptions['alignment'].': '. ($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] == '' ? 0 : $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) .'px;' : '').(isset($theChampCounterOptions['top_offset']) ? 'top: '. ($theChampCounterOptions['top_offset'] == '' ? 0 : $theChampCounterOptions['top_offset']) .'px;' : '');
677
+ $verticalDiv = "<div class='the_champ_counter_container the_champ_vertical_counter" . (isset($theChampCounterOptions['hide_mobile_likeb']) ? ' the_champ_hide_sharing' : '') . "' style='". $offset . (isset($theChampCounterOptions['vertical_bg']) && $theChampCounterOptions['vertical_bg'] != '' ? 'background-color: '.$theChampCounterOptions['vertical_bg'] . ';' : '-webkit-box-shadow:none;box-shadow:none;') . "'>".$sharingDiv."</div>";
678
  // show vertical counter
679
+ if((isset($theChampCounterOptions['vertical_home']) && is_front_page()) || (isset($theChampCounterOptions['vertical_category']) && is_category()) || (isset($theChampCounterOptions['vertical_archive']) && is_archive()) || (isset($theChampCounterOptions['vertical_post']) && is_single() && isset($post->post_type) && $post->post_type == 'post') || (isset($theChampCounterOptions['vertical_page']) && is_page() && isset($post->post_type) && $post->post_type == 'page') || (isset($theChampCounterOptions['vertical_excerpt']) && (is_home() || current_filter() == 'the_excerpt')) || (isset($theChampCounterOptions['vertical_bb_forum']) && current_filter() == 'bbp_template_before_single_forum') || (isset($theChampCounterOptions['vertical_bb_topic']) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic'))) || (current_filter() == 'bp_before_group_header' && isset($theChampCounterOptions['vertical_bp_group']))){
680
+ if(in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bp_before_group_header'))){
681
  echo $verticalDiv;
682
  }else{
683
  if(is_front_page()){
695
  $counterUrl = the_champ_generate_like_buttons_short_url($counterPostUrl, 0);
696
 
697
  $sharingDiv = the_champ_prepare_counter_html($counterPostUrl, 'vertical', $counterUrl);
698
+ $verticalDiv = "<div class='the_champ_counter_container the_champ_vertical_counter" . (isset($theChampCounterOptions['hide_mobile_likeb']) ? ' the_champ_hide_sharing' : '') . "' style='". $offset . (isset($theChampCounterOptions['vertical_bg']) && $theChampCounterOptions['vertical_bg'] != '' ? 'background-color: '.$theChampCounterOptions['vertical_bg'] . ';' : '-webkit-box-shadow:none;box-shadow:none;') . "'>".$sharingDiv."</div>";
699
  }
700
  $content = $content.$verticalDiv;
701
  $$var++;
704
  $content = $content.$verticalDiv;
705
  }
706
  }
707
+ }elseif(count($post_types)){
708
+ foreach ($post_types as $post_type){
709
+ if(isset($theChampCounterOptions['vertical_' . $post_type]) && (is_single() || is_page()) && isset($post->post_type) && $post->post_type == $post_type){
710
  $content = $content . $verticalDiv;
711
  }
712
  }
716
 
717
  if(isset($theChampSharingOptions['enable'])){
718
  // sharing interface
719
+ if(isset($theChampSharingOptions['hor_enable']) && !(isset($sharingMeta['sharing']) && $sharingMeta['sharing'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))))){
720
  $postId = $post->ID;
721
  if($customUrl != ''){
722
  $postUrl = $customUrl;
766
  $sharingContainerStyle = 'style="float: right"';
767
  }
768
  }
769
+ $horizontalDiv = "<div style='clear: both'></div><div ". $sharingContainerStyle ." class='the_champ_sharing_container the_champ_horizontal_sharing' " . ( the_champ_is_amp_page() ? '' : 'super-socializer-data-href="' . (isset($shareCountUrl) && $shareCountUrl ? $shareCountUrl : $postUrl) . '"') . ( heateor_ss_get_cached_share_count($shareCountTransientId) === false || the_champ_is_amp_page() ? "" : 'super-socializer-no-counts="1"') . "><div class='the_champ_sharing_title' ". $sharingTitleStyle ." >".ucfirst($theChampSharingOptions['title'])."</div>".$sharingDiv."</div><div style='clear: both'></div>";
770
  if($sharingBpActivity){
771
  echo $horizontalDiv;
772
  }
773
  // show horizontal sharing
774
+ if((isset($theChampSharingOptions['home']) && is_front_page()) || (isset($theChampSharingOptions['category']) && is_category()) || (isset($theChampSharingOptions['archive']) && is_archive()) || (isset($theChampSharingOptions['post']) && is_single() && isset($post->post_type) && $post->post_type == 'post') || (isset($theChampSharingOptions['page']) && is_page() && isset($post->post_type) && $post->post_type == 'page') || (isset($theChampSharingOptions['excerpt']) && (is_home() || current_filter() == 'the_excerpt')) || (isset($theChampSharingOptions['bb_reply']) && current_filter() == 'bbp_get_reply_content') || (isset($theChampSharingOptions['bb_forum']) && (isset($theChampSharingOptions['top']) && current_filter() == 'bbp_template_before_single_forum' || isset($theChampSharingOptions['bottom']) && current_filter() == 'bbp_template_after_single_forum')) || (isset($theChampSharingOptions['bb_topic']) && (isset($theChampSharingOptions['top']) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic')) || isset($theChampSharingOptions['bottom']) && in_array(current_filter(), array('bbp_template_after_single_topic', 'bbp_template_after_lead_topic')))) || (isset($theChampSharingOptions['woocom_shop']) && current_filter() == 'woocommerce_after_shop_loop_item') || (isset($theChampSharingOptions['woocom_product']) && current_filter() == 'woocommerce_share') || (isset($theChampSharingOptions['woocom_thankyou']) && current_filter() == 'woocommerce_thankyou') || (current_filter() == 'bp_before_group_header' && isset($theChampSharingOptions['bp_group']))){
775
+ if(in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bbp_template_after_single_topic', 'bbp_template_after_lead_topic', 'bbp_template_after_single_forum', 'woocommerce_after_shop_loop_item', 'woocommerce_share', 'woocommerce_thankyou', 'bp_before_group_header'))){
776
  echo '<div style="clear:both"></div>'.$horizontalDiv.'<div style="clear:both"></div>';
777
  }else{
778
+ if(isset($theChampSharingOptions['top']) && isset($theChampSharingOptions['bottom'])){
779
  $content = $horizontalDiv.'<br/>'.$content.'<br/>'.$horizontalDiv;
780
  }else{
781
  if(isset($theChampSharingOptions['top'])){
785
  }
786
  }
787
  }
788
+ }elseif(count($post_types)){
789
+ foreach ($post_types as $post_type){
790
+ if(isset($theChampSharingOptions[$post_type]) && (is_single() || is_page()) && isset($post->post_type) && $post->post_type == $post_type){
791
+ if(isset($theChampSharingOptions['top']) && isset($theChampSharingOptions['bottom'])){
792
  $content = $horizontalDiv.'<br/>'.$content.'<br/>'.$horizontalDiv;
793
  }else{
794
  if(isset($theChampSharingOptions['top'])){
801
  }
802
  }
803
  }
804
+ if(isset($theChampSharingOptions['vertical_enable']) && !the_champ_is_amp_page() && !(isset($sharingMeta['vertical_sharing']) && $sharingMeta['vertical_sharing'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))))){
805
+ $postId = $post->ID;
806
  if($customUrl != ''){
807
  $postUrl = $customUrl;
808
  $shareCountUrl = $postUrl;
845
  $shareCountTransientId = heateor_ss_get_share_count_transient_id($postUrl);
846
  $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, $shareCountUrl, 'vertical', isset($theChampSharingOptions['vertical_counts']), isset($theChampSharingOptions['vertical_total_shares']), $shareCountTransientId);
847
  $offset = (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions['alignment'].': '.$theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'].'px;' : '').(isset($theChampSharingOptions['top_offset']) && $theChampSharingOptions['top_offset'] != '' ? 'top: '.$theChampSharingOptions['top_offset'].'px;' : '');
848
+ $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing" . (isset($theChampSharingOptions['hide_mobile_sharing']) ? ' the_champ_hide_sharing' : '') . (isset($theChampSharingOptions['bottom_mobile_sharing']) ? ' the_champ_bottom_sharing' : '') . "' style='width:" . ($theChampSharingOptions['vertical_sharing_size'] + 4) . "px;" . $offset . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;box-shadow:none;') . "' " . ( the_champ_is_amp_page() ? '' : 'super-socializer-data-href="' . (isset($shareCountUrl) && $shareCountUrl ? $shareCountUrl : $postUrl) . '"') . ( heateor_ss_get_cached_share_count($shareCountTransientId ) === false || the_champ_is_amp_page() ? "" : 'super-socializer-no-counts="1"') . ">".$sharingDiv."</div>";
849
  // show vertical sharing
850
+ if((isset($theChampSharingOptions['vertical_home']) && is_front_page()) || (isset($theChampSharingOptions['vertical_category']) && is_category()) || (isset($theChampSharingOptions['vertical_archive']) && is_archive()) || (isset($theChampSharingOptions['vertical_post']) && is_single() && isset($post->post_type) && $post->post_type == 'post') || (isset($theChampSharingOptions['vertical_page']) && is_page() && isset($post->post_type) && $post->post_type == 'page') || (isset($theChampSharingOptions['vertical_excerpt']) && (is_home() || current_filter() == 'the_excerpt')) || (isset($theChampSharingOptions['vertical_bb_forum']) && current_filter() == 'bbp_template_before_single_forum') || (isset($theChampSharingOptions['vertical_bb_topic']) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic'))) || (current_filter() == 'bp_before_group_header' && isset($theChampSharingOptions['vertical_bp_group']))){
851
+ if(in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bp_before_group_header'))){
852
  echo $verticalDiv;
853
  }else{
854
  if(is_front_page()){
869
  $sharingUrl = the_champ_generate_social_sharing_short_url($postUrl, 0);
870
  $shareCountTransientId = heateor_ss_get_share_count_transient_id($postUrl);
871
  $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, $shareCountUrl, 'vertical', isset($theChampSharingOptions['vertical_counts']), isset($theChampSharingOptions['vertical_total_shares']), $shareCountTransientId);
872
+ $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing" . (isset($theChampSharingOptions['hide_mobile_sharing']) ? ' the_champ_hide_sharing' : '') . (isset($theChampSharingOptions['bottom_mobile_sharing']) ? ' the_champ_bottom_sharing' : '') . "' style='width:" . ($theChampSharingOptions['vertical_sharing_size'] + 4) . "px;" . $offset . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;box-shadow:none;') . "' " . ( the_champ_is_amp_page() ? '' : 'super-socializer-data-href="' . (isset($shareCountUrl) && $shareCountUrl ? $shareCountUrl : $postUrl) . '"') . ( heateor_ss_get_cached_share_count($shareCountTransientId) === false || the_champ_is_amp_page() ? "" : 'super-socializer-no-counts="1"') . ">".$sharingDiv."</div>";
873
  }
874
  $content = $content.$verticalDiv;
875
  $$var++;
878
  $content = $content.$verticalDiv;
879
  }
880
  }
881
+ }elseif(count($post_types)){
882
+ foreach ($post_types as $post_type){
883
+ if(isset($theChampSharingOptions['vertical_' . $post_type]) && (is_single() || is_page()) && isset($post->post_type) && $post->post_type == $post_type){
884
  $content = $content . $verticalDiv;
885
  }
886
  }
953
  $ajaxResponse = array();
954
 
955
  $multiplier = 60;
956
+ if($theChampSharingOptions['share_count_cache_refresh_count'] != ''){
957
+ switch ($theChampSharingOptions['share_count_cache_refresh_unit']){
958
  case 'seconds':
959
  $multiplier = 1;
960
  break;
1044
  }
1045
  break;
1046
  case 'twitter':
1047
+ if(!empty($body->count)){
1048
+ $shareCountTransient['twitter'] = $body->count;
1049
  }else{
1050
  $shareCountTransient['twitter'] = 0;
1051
  }
1052
  break;
1053
  case 'linkedin':
1054
+ if(!empty($body->count)){
1055
+ $shareCountTransient['linkedin'] = $body->count;
1056
  }else{
1057
  $shareCountTransient['linkedin'] = 0;
1058
  }
1059
  break;
1060
  case 'reddit':
1061
  $shareCountTransient['reddit'] = 0;
1062
+ if(!empty($body->data->children)){
1063
+ $children = $body->data->children;
1064
  $ups = $downs = 0;
1065
  foreach($children as $child){
1066
  $ups += (int) $child->data->ups;
1074
  }
1075
  break;
1076
  case 'pinterest':
1077
+ if(!empty($body->count)){
1078
+ $shareCountTransient['pinterest'] = $body->count;
1079
  }else{
1080
  $shareCountTransient['pinterest'] = 0;
1081
  }
1082
  break;
1083
  case 'buffer':
1084
+ if(!empty($body->shares)){
1085
+ $shareCountTransient['buffer'] = $body->shares;
1086
  }else{
1087
  $shareCountTransient['buffer'] = 0;
1088
  }
1127
  }
1128
  }
1129
  $responseData[$targetUrlsArray[0][$i]] = $finalShareCountTransient;
1130
+ if($theChampSharingOptions['share_count_cache_refresh_count'] != ''){
1131
  set_transient('heateor_ss_share_count_' . heateor_ss_get_share_count_transient_id($targetUrlsArray[0][$i]), $finalShareCountTransient, $transientExpirationTime);
1132
  // update share counts saved in the database
1133
  heateor_ss_update_share_counts($targetUrlsArray[0][$i], $finalShareCountTransient);
1183
  global $theChampSharingOptions;
1184
 
1185
  $multiplier = 60;
1186
+ if($theChampSharingOptions['share_count_cache_refresh_count'] != ''){
1187
+ switch ($theChampSharingOptions['share_count_cache_refresh_unit']){
1188
  case 'seconds':
1189
  $multiplier = 1;
1190
  break;
1212
  $shareCountTransient = get_transient('heateor_ss_share_count_' . $transientId);
1213
  if($shareCountTransient !== false){
1214
  $shareCountTransient['facebook'] = $value;
1215
+ if($theChampSharingOptions['share_count_cache_refresh_count'] != ''){
1216
  $savedShareCount = heateor_ss_get_saved_share_counts($transientId, $key);
1217
  $savedShareCount['facebook'] = $value;
1218
  set_transient('heateor_ss_share_count_' . $transientId, $shareCountTransient, $transientExpirationTime);
inc/social_sharing_networks.php CHANGED
@@ -54,7 +54,7 @@ function heateor_ss_fetch_sharing_networks($sharingType){
54
  'Care2_News' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.care2.com/passport/login.html?promoID=10&pg=http://www.care2.com/news/compose?sharehint=news&share[share_type]news&bookmarklet=Y&share[title]=%post_title%&share[link_url]=%encoded_post_url%&share[content]=")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
55
  'CiteULike' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.citeulike.org/posturl?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
56
  'Comment' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background"><a href="%post_url%#'.($theChampSharingOptions['comment_container_id'] != '' ? $theChampSharingOptions['comment_container_id'] : $theChampSharingOptions['vertical_comment_container_id']).'" rel="nofollow"><ss style="display:block" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></a></i></li>',
57
- 'Copy_Link' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background"><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
58
  'Diary.Ru' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.diary.ru/?newpost&title=%post_title%&text=%encoded_post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
59
  'Diaspora' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://joindiaspora.com/bookmarklet?url=%encoded_post_url%&title=%post_title%&v=1&")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
60
  'Diigo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.diigo.com/post?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
54
  'Care2_News' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.care2.com/passport/login.html?promoID=10&pg=http://www.care2.com/news/compose?sharehint=news&share[share_type]news&bookmarklet=Y&share[title]=%post_title%&share[link_url]=%encoded_post_url%&share[content]=")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
55
  'CiteULike' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.citeulike.org/posturl?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
56
  'Comment' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background"><a href="%post_url%#'.($theChampSharingOptions['comment_container_id'] != '' ? $theChampSharingOptions['comment_container_id'] : $theChampSharingOptions['vertical_comment_container_id']).'" rel="nofollow"><ss style="display:block" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></a></i></li>',
57
+ 'Copy_Link' => '<li class="%li_class%"><i %style% alt="'.__('Copy Link', 'super-socializer').'" Title="'.__('Copy Link', 'super-socializer').'" class="theChampSharing theChamp%ucfirst_network%Background"><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
58
  'Diary.Ru' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.diary.ru/?newpost&title=%post_title%&text=%encoded_post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
59
  'Diaspora' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://joindiaspora.com/bookmarklet?url=%encoded_post_url%&title=%post_title%&v=1&")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
60
  'Diigo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.diigo.com/post?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
js/front/combined.js CHANGED
@@ -3,9 +3,9 @@ theChampFBKey = typeof theChampFBKey != 'undefined' ? theChampFBKey : '', theCha
3
  function theChampPopup(e){window.open(e,"_blank","height=420,width=620,left=390,top=105,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}function theChampStrReplace(e,t,n){for(var r=0;r<e.length;r++){n=n.replace(new RegExp(e[r],"g"),t[r])}return n}function theChampCallAjax(e){if(typeof jQuery!="undefined"){e()}else{theChampGetScript("https://code.jquery.com/jquery-latest.min.js",e)}}function theChampGetScript(e,t){var n=document.createElement("script");n.src=e;var r=document.getElementsByTagName("head")[0],i=false;n.onload=n.onreadystatechange=function(){if(!i&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){i=true;t();n.onload=n.onreadystatechange=null;r.removeChild(n)}};r.appendChild(n)}function theChampGetElementsByClass(e,t){if(e.getElementsByClassName){return e.getElementsByClassName(t)}else{return function(e,t){if(t==null){t=document}var n=[],r=t.getElementsByTagName("*"),i=r.length,s=new RegExp("(^|\\s)"+e+"(\\s|$)"),o,u;for(o=0,u=0;o<i;o++){if(s.test(r[o].className)){n[u]=r[o];u++}}return n}(t,e)}}if(typeof String.prototype.trim!=="function"){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}}
4
  function theChampGetCookie(e){for(var t=e+"=",a=document.cookie.split(";"),h=0;h<a.length;h++){for(var i=a[h];" "==i.charAt(0);)i=i.substring(1,i.length);if(0==i.indexOf(t))return i.substring(t.length,i.length)}return null}
5
  // common.js
6
- function theChampLoginPopup(e){if("undefined"!=typeof theChampSameTabLogin&&theChampSameTabLogin==1){location.href=e}else{window.open(e,"_blank","height=520,width=770,left=315,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}}function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampInitiateLogin(e,a){var t=jQuery(e).parents("div.the_champ_login_container").find(".heateor_ss_social_login_optin");if(0==t.length||jQuery(t).is(":checked")){"facebook"==a?theChampLoginPopup(theChampFacebookAuthUrl):"foursquare"==a?theChampLoginPopup(theChampFoursquareAuthUrl):"dropbox"==a?theChampLoginPopup(theChampDropboxAuthUrl):"disqus"==a?theChampLoginPopup(theChampDisqusAuthUrl):"reddit"==a?theChampLoginPopup(theChampRedditAuthUrl):"github"==a?theChampLoginPopup(theChampGithubAuthUrl):"spotify"==a?theChampLoginPopup(theChampSpotifyAuthUrl):"dribbble"==a?theChampLoginPopup(theChampDribbbleAuthUrl):"kakao"==a?theChampLoginPopup(theChampKakaoAuthUrl):"line"==a?theChampLoginPopup(theChampLineAuthUrl):"microsoft"==a?theChampLoginPopup(theChampLiveAuthUrl):"twitch"==a?theChampLoginPopup(theChampTwitchAuthUrl):"steam"==a?theChampLoginPopup(theChampSteamAuthUrl):"twitter"==a?theChampLoginPopup(theChampTwitterAuthUrl):("linkedin"==a&&theChampLoginPopup(theChampLinkedinAuthUrl),"google"==a?theChampLoginPopup(theChampGoogleAuthUrl):"vkontakte"==a?theChampLoginPopup(theChampVkontakteAuthUrl):"wordpress"==a?theChampLoginPopup(theChampWordpressAuthUrl):"yahoo"==a?theChampLoginPopup(theChampYahooAuthUrl):"instagram"==a&&theChampLoginPopup(theChampInstagramAuthUrl))}else t.length>0&&jQuery(t).parent().css("color","red")}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(a=0;a<t.length;a++)for(var h=theChampGetElementsByClass(e,t[a]),i=0;i<h.length;i++)h[i].style.display="block"}function theChampValidateEmail(e){return/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(e,t,a){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}if(void 0===theChampLinkingRedirection)var theChampLinkingRedirection="";theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;
7
  // sdk.js
8
- function theChampInitiateFB(){FB.init({appId:theChampFBKey,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v9.0"})}window.fbAsyncInit=function(){theChampInitiateFB(),theChampFbIosLogin&&theChampAuthUserFB(),"function"==typeof theChampDisplayLoginIcon&&theChampDisplayLoginIcon(document,["theChampFacebookButton","theChampFacebookLogin"]),("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification||"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments)&&FB.Event.subscribe("comment.create",function(e){void 0!==e.commentID&&e.commentID&&("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"the_champ_moderate_fb_comments",data:e},success:function(e,t,n){}}),"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"heateor_fcm_save_fb_comment",data:e},success:function(e,t,n){}}))}),"undefined"!=typeof theChampFbLikeMycred&&theChampFbLikeMycred&&(FB.Event.subscribe("edge.create",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"","Minus point(s) for undoing Facebook like-recommend")})),"undefined"!=typeof theChampSsga&&theChampSsga&&(FB.Event.subscribe("edge.create",function(e){heateorSsgaSocialPluginsTracking("Facebook","Like",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsgaSocialPluginsTracking("Facebook","Unlike",e||"")}))},function(e){var t,n="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(n)||((t=e.createElement("script")).id=n,t.async=!0,t.src="//connect.facebook.net/"+theChampFBLang+"/sdk.js",o.parentNode.insertBefore(t,o))}(document);
9
  // commenting.js
10
  function theChampRenderFBCommenting(){var e=typeof theChampCommentingId!='undefined'?document.getElementById(theChampCommentingId):'';if(e){var t=[],n=[],a=[];t.wordpress='<div style="clear:both"></div>'+e.innerHTML,theChampFBCommentingContent=("undefined"!=typeof theChampFacebookCommentsNotifierOptinText?'<div class="heateor_ss_fb_comments_notifier_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_notifier_optin" value="1" />'+theChampFacebookCommentsNotifierOptinText+"</label></div>":"")+("undefined"!=typeof theChampFacebookCommentsOptinText?'<div class="heateor_ss_fb_comments_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_optin" value="1" />'+theChampFacebookCommentsOptinText+"</label></div>":"")+'<div class="fb-comments" data-href="'+theChampFBCommentUrl+'"',""!=theChampFBCommentColor&&(theChampFBCommentingContent+=' data-colorscheme="'+theChampFBCommentColor+'"'),""!=theChampFBCommentNumPosts&&(theChampFBCommentingContent+=' data-numposts="'+theChampFBCommentNumPosts+'"'),theChampFBCommentingContent+=' data-width="'+theChampFBCommentWidth+'"',""!=theChampFBCommentOrderby&&(theChampFBCommentingContent+=' data-order-by="'+theChampFBCommentOrderby+'"'),theChampFBCommentingContent+=" ></div>",t.fb=theChampFBCommentingContent,n.fb="theChampInitiateFB();",t.googleplus="<div class='g-comments' data-href='"+theChampGpCommentsUrl+"' "+(theChampGpCommentsWidth?"data-width='"+theChampGpCommentsWidth+"'":"")+" data-first_party_property='BLOGGER' data-view_type='FILTERED_POSTMOD' ></div>",n.googleplus=" ",a.googleplus="//apis.google.com/js/plusone.js",t.disqus='<div class="embed-container clearfix" id="disqus_thread">'+(""!=theChampDisqusShortname?theChampDisqusShortname:'<div style="font-size: 14px;clear: both;">Specify a Disqus shortname in Super Socializer &gt; Social Commenting section in admin panel</div>')+"</div>",n.disqus="var disqus_shortname = '"+theChampDisqusShortname+"';(function(d) {var dsq = d.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(dsq); })(document);";var o='<div class="theChampCommentingTabs"><h3 id="theChampReplyTitle" style="margin-bottom:15px" class="comment-reply-title">'+theChampScLabel+"</h3><ul>";theChampScEnabledTabs=theChampScEnabledTabs.split(",");for(var i=0;i<theChampScEnabledTabs.length;i++){o+='<li id="theChampTabs-'+i+'-li" onclick="',o+="this.setAttribute('class', 'theChampSelectedTab');document.getElementById('theChampTabs-"+i+"').style.display='block';","fb"==theChampScEnabledTabs[i]&&(o+="theChampInitiateFB();");for(var m=0;m<theChampScEnabledTabs.length;m++)m!=i&&(o+="document.getElementById('theChampTabs-"+m+"-li').setAttribute('class', '');document.getElementById('theChampTabs-"+m+"').style.display='none';");o+='">',o+=theChampScTabLabels[theChampScEnabledTabs[i]],o+="</li>"}for(o+="</ul>",i=0;i<theChampScEnabledTabs.length;i++)o+='<div id="theChampTabs-'+i+'" ><div style="clear: both"></div>'+t[theChampScEnabledTabs[i]]+"</div>";o+="</div>",e.innerHTML=o;var h=document.getElementById("reply-title");for(h&&h.remove(),i=0;i<theChampScEnabledTabs.length;i++)if(n[theChampScEnabledTabs[i]]){var s=document.createElement("script");a[theChampScEnabledTabs[i]]&&s.setAttribute("src",a[theChampScEnabledTabs[i]]),s.innerHTML=n[theChampScEnabledTabs[i]],document.getElementById("theChampTabs-"+i).appendChild(s)}for(document.getElementById("theChampTabs-0-li").setAttribute("class","theChampSelectedTab"),i=1;i<theChampScEnabledTabs.length;i++)document.getElementById("theChampTabs-"+i).style.display="none";null!=theChampGetCookie("heateorSsSLOptin")&&jQuery("input.heateor_ss_social_login_optin").length>0&&jQuery("input.heateor_ss_social_login_optin").prop("checked",!0),jQuery("input.heateor_ss_social_login_optin").click(function(){if(jQuery(this).is(":checked")){if(null==theChampGetCookie("heateorSsSLOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorSsSLOptin=1; expires="+e.toUTCString()+"; path=/"}}else document.cookie="heateorSsSLOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}),"undefined"!=typeof theChampFacebookCommentsOptinText&&(null!=heateorFcmGetCookie("heateorFcmOptin")&&jQuery("input.heateor_ss_fb_comments_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcmOptin=1,null==heateorFcmGetCookie("heateorFcmOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcmOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcmOptin=0,document.cookie="heateorFcmOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"})),"undefined"!=typeof theChampFacebookCommentsNotifierOptinText&&(null!=heateorFcnGetCookie("heateorFcnOptin")&&jQuery("input.heateor_ss_fb_comments_notifier_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_notifier_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcnOptin=1,null==heateorFcnGetCookie("heateorFcnOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcnOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcnOptin=0,document.cookie="heateorFcnOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}))}}theChampLoadEvent(function(){theChampRenderFBCommenting()});
11
  // sharing.js
@@ -536,7 +536,7 @@ function theChampMoreSharingPopup(elem, postUrl, postTitle, twitterTitle){
536
  redirect_url: "//yoolink.to/addorshare?url_value=" + postUrl + "&title=" + postTitle,
537
  }
538
  }
539
- var theChampMoreSharingServicesHtml = '<button id="the_champ_sharing_popup_close" class="close-button separated"><img src="'+ theChampCloseIconPath +'" /></button><div id="the_champ_sharing_more_content" data-href="'+ decodeURIComponent(shareContainer.getAttribute('class').indexOf('the_champ_horizontal_sharing') != -1 ? heateorSsHorSharingShortUrl : heateorSsVerticalSharingShortUrl) +'"><div class="filter"><input type="text" onkeyup="theChampFilterSharing(this.value.trim())" placeholder="Search" class="search"></div><div class="all-services"><ul class="mini">';
540
  for(var i in theChampMoreSharingServices){
541
  var tempTitle = theChampCapitaliseFirstLetter(theChampMoreSharingServices[i].title.replace(/[_. ]/g, ""));
542
  theChampMoreSharingServicesHtml += '<li><a rel="nofollow" class="theChamp'+i+'Share" title="'+ theChampMoreSharingServices[i].title +'" alt="'+ theChampMoreSharingServices[i].title +'" ';
3
  function theChampPopup(e){window.open(e,"_blank","height=420,width=620,left=390,top=105,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}function theChampStrReplace(e,t,n){for(var r=0;r<e.length;r++){n=n.replace(new RegExp(e[r],"g"),t[r])}return n}function theChampCallAjax(e){if(typeof jQuery!="undefined"){e()}else{theChampGetScript("https://code.jquery.com/jquery-latest.min.js",e)}}function theChampGetScript(e,t){var n=document.createElement("script");n.src=e;var r=document.getElementsByTagName("head")[0],i=false;n.onload=n.onreadystatechange=function(){if(!i&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){i=true;t();n.onload=n.onreadystatechange=null;r.removeChild(n)}};r.appendChild(n)}function theChampGetElementsByClass(e,t){if(e.getElementsByClassName){return e.getElementsByClassName(t)}else{return function(e,t){if(t==null){t=document}var n=[],r=t.getElementsByTagName("*"),i=r.length,s=new RegExp("(^|\\s)"+e+"(\\s|$)"),o,u;for(o=0,u=0;o<i;o++){if(s.test(r[o].className)){n[u]=r[o];u++}}return n}(t,e)}}if(typeof String.prototype.trim!=="function"){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}}
4
  function theChampGetCookie(e){for(var t=e+"=",a=document.cookie.split(";"),h=0;h<a.length;h++){for(var i=a[h];" "==i.charAt(0);)i=i.substring(1,i.length);if(0==i.indexOf(t))return i.substring(t.length,i.length)}return null}
5
  // common.js
6
+ function theChampLoginPopup(e){if("undefined"!=typeof theChampSameTabLogin&&theChampSameTabLogin==1){location.href=e}else{window.open(e,"_blank","height=520,width=770,left=315,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}}function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampInitiateLogin(e,a){var t=jQuery(e).parents("div.the_champ_login_container").find(".heateor_ss_social_login_optin");if(0==t.length||jQuery(t).is(":checked")){"facebook"==a?theChampLoginPopup(theChampFacebookAuthUrl):"foursquare"==a?theChampLoginPopup(theChampFoursquareAuthUrl):"dropbox"==a?theChampLoginPopup(theChampDropboxAuthUrl):"disqus"==a?theChampLoginPopup(theChampDisqusAuthUrl):"stackoverflow"==a?theChampLoginPopup(theChampStackoverflowAuthUrl):"discord"==a?theChampLoginPopup(theChampDiscordAuthUrl):"amazon"==a?theChampLoginPopup(theChampAmazonAuthUrl):"reddit"==a?theChampLoginPopup(theChampRedditAuthUrl):"github"==a?theChampLoginPopup(theChampGithubAuthUrl):"spotify"==a?theChampLoginPopup(theChampSpotifyAuthUrl):"dribbble"==a?theChampLoginPopup(theChampDribbbleAuthUrl):"kakao"==a?theChampLoginPopup(theChampKakaoAuthUrl):"line"==a?theChampLoginPopup(theChampLineAuthUrl):"microsoft"==a?theChampLoginPopup(theChampLiveAuthUrl):"twitch"==a?theChampLoginPopup(theChampTwitchAuthUrl):"steam"==a?theChampLoginPopup(theChampSteamAuthUrl):"twitter"==a?theChampLoginPopup(theChampTwitterAuthUrl):("linkedin"==a&&theChampLoginPopup(theChampLinkedinAuthUrl),"google"==a?theChampLoginPopup(theChampGoogleAuthUrl):"vkontakte"==a?theChampLoginPopup(theChampVkontakteAuthUrl):"wordpress"==a?theChampLoginPopup(theChampWordpressAuthUrl):"yahoo"==a?theChampLoginPopup(theChampYahooAuthUrl):"instagram"==a&&theChampLoginPopup(theChampInstagramAuthUrl))}else t.length>0&&jQuery(t).parent().css("color","red")}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(a=0;a<t.length;a++)for(var h=theChampGetElementsByClass(e,t[a]),i=0;i<h.length;i++)h[i].style.display="block"}function theChampValidateEmail(e){return/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(e,t,a){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}if(void 0===theChampLinkingRedirection)var theChampLinkingRedirection="";theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;
7
  // sdk.js
8
+ function theChampInitiateFB(){FB.init({appId:theChampFBKey,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v10.0"})}window.fbAsyncInit=function(){theChampInitiateFB(),theChampFbIosLogin&&theChampAuthUserFB(),"function"==typeof theChampDisplayLoginIcon&&theChampDisplayLoginIcon(document,["theChampFacebookButton","theChampFacebookLogin"]),("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification||"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments)&&FB.Event.subscribe("comment.create",function(e){void 0!==e.commentID&&e.commentID&&("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"the_champ_moderate_fb_comments",data:e},success:function(e,t,n){}}),"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"heateor_fcm_save_fb_comment",data:e},success:function(e,t,n){}}))}),"undefined"!=typeof theChampFbLikeMycred&&theChampFbLikeMycred&&(FB.Event.subscribe("edge.create",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"","Minus point(s) for undoing Facebook like-recommend")})),"undefined"!=typeof theChampSsga&&theChampSsga&&(FB.Event.subscribe("edge.create",function(e){heateorSsgaSocialPluginsTracking("Facebook","Like",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsgaSocialPluginsTracking("Facebook","Unlike",e||"")}))},function(e){var t,n="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(n)||((t=e.createElement("script")).id=n,t.async=!0,t.src="//connect.facebook.net/"+theChampFBLang+"/sdk.js",o.parentNode.insertBefore(t,o))}(document);
9
  // commenting.js
10
  function theChampRenderFBCommenting(){var e=typeof theChampCommentingId!='undefined'?document.getElementById(theChampCommentingId):'';if(e){var t=[],n=[],a=[];t.wordpress='<div style="clear:both"></div>'+e.innerHTML,theChampFBCommentingContent=("undefined"!=typeof theChampFacebookCommentsNotifierOptinText?'<div class="heateor_ss_fb_comments_notifier_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_notifier_optin" value="1" />'+theChampFacebookCommentsNotifierOptinText+"</label></div>":"")+("undefined"!=typeof theChampFacebookCommentsOptinText?'<div class="heateor_ss_fb_comments_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_optin" value="1" />'+theChampFacebookCommentsOptinText+"</label></div>":"")+'<div class="fb-comments" data-href="'+theChampFBCommentUrl+'"',""!=theChampFBCommentColor&&(theChampFBCommentingContent+=' data-colorscheme="'+theChampFBCommentColor+'"'),""!=theChampFBCommentNumPosts&&(theChampFBCommentingContent+=' data-numposts="'+theChampFBCommentNumPosts+'"'),theChampFBCommentingContent+=' data-width="'+theChampFBCommentWidth+'"',""!=theChampFBCommentOrderby&&(theChampFBCommentingContent+=' data-order-by="'+theChampFBCommentOrderby+'"'),theChampFBCommentingContent+=" ></div>",t.fb=theChampFBCommentingContent,n.fb="theChampInitiateFB();",t.googleplus="<div class='g-comments' data-href='"+theChampGpCommentsUrl+"' "+(theChampGpCommentsWidth?"data-width='"+theChampGpCommentsWidth+"'":"")+" data-first_party_property='BLOGGER' data-view_type='FILTERED_POSTMOD' ></div>",n.googleplus=" ",a.googleplus="//apis.google.com/js/plusone.js",t.disqus='<div class="embed-container clearfix" id="disqus_thread">'+(""!=theChampDisqusShortname?theChampDisqusShortname:'<div style="font-size: 14px;clear: both;">Specify a Disqus shortname in Super Socializer &gt; Social Commenting section in admin panel</div>')+"</div>",n.disqus="var disqus_shortname = '"+theChampDisqusShortname+"';(function(d) {var dsq = d.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(dsq); })(document);";var o='<div class="theChampCommentingTabs"><h3 id="theChampReplyTitle" style="margin-bottom:15px" class="comment-reply-title">'+theChampScLabel+"</h3><ul>";theChampScEnabledTabs=theChampScEnabledTabs.split(",");for(var i=0;i<theChampScEnabledTabs.length;i++){o+='<li id="theChampTabs-'+i+'-li" onclick="',o+="this.setAttribute('class', 'theChampSelectedTab');document.getElementById('theChampTabs-"+i+"').style.display='block';","fb"==theChampScEnabledTabs[i]&&(o+="theChampInitiateFB();");for(var m=0;m<theChampScEnabledTabs.length;m++)m!=i&&(o+="document.getElementById('theChampTabs-"+m+"-li').setAttribute('class', '');document.getElementById('theChampTabs-"+m+"').style.display='none';");o+='">',o+=theChampScTabLabels[theChampScEnabledTabs[i]],o+="</li>"}for(o+="</ul>",i=0;i<theChampScEnabledTabs.length;i++)o+='<div id="theChampTabs-'+i+'" ><div style="clear: both"></div>'+t[theChampScEnabledTabs[i]]+"</div>";o+="</div>",e.innerHTML=o;var h=document.getElementById("reply-title");for(h&&h.remove(),i=0;i<theChampScEnabledTabs.length;i++)if(n[theChampScEnabledTabs[i]]){var s=document.createElement("script");a[theChampScEnabledTabs[i]]&&s.setAttribute("src",a[theChampScEnabledTabs[i]]),s.innerHTML=n[theChampScEnabledTabs[i]],document.getElementById("theChampTabs-"+i).appendChild(s)}for(document.getElementById("theChampTabs-0-li").setAttribute("class","theChampSelectedTab"),i=1;i<theChampScEnabledTabs.length;i++)document.getElementById("theChampTabs-"+i).style.display="none";null!=theChampGetCookie("heateorSsSLOptin")&&jQuery("input.heateor_ss_social_login_optin").length>0&&jQuery("input.heateor_ss_social_login_optin").prop("checked",!0),jQuery("input.heateor_ss_social_login_optin").click(function(){if(jQuery(this).is(":checked")){if(null==theChampGetCookie("heateorSsSLOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorSsSLOptin=1; expires="+e.toUTCString()+"; path=/"}}else document.cookie="heateorSsSLOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}),"undefined"!=typeof theChampFacebookCommentsOptinText&&(null!=heateorFcmGetCookie("heateorFcmOptin")&&jQuery("input.heateor_ss_fb_comments_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcmOptin=1,null==heateorFcmGetCookie("heateorFcmOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcmOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcmOptin=0,document.cookie="heateorFcmOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"})),"undefined"!=typeof theChampFacebookCommentsNotifierOptinText&&(null!=heateorFcnGetCookie("heateorFcnOptin")&&jQuery("input.heateor_ss_fb_comments_notifier_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_notifier_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcnOptin=1,null==heateorFcnGetCookie("heateorFcnOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcnOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcnOptin=0,document.cookie="heateorFcnOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}))}}theChampLoadEvent(function(){theChampRenderFBCommenting()});
11
  // sharing.js
536
  redirect_url: "//yoolink.to/addorshare?url_value=" + postUrl + "&title=" + postTitle,
537
  }
538
  }
539
+ var theChampMoreSharingServicesHtml = '<button id="the_champ_sharing_popup_close" class="close-button separated"><img src="'+ theChampCloseIconPath +'" /></button><div id="the_champ_sharing_more_content" data-href="'+ decodeURIComponent(shareContainer.getAttribute('class').indexOf('the_champ_horizontal_sharing') != -1 ? heateorSsHorSharingShortUrl : heateorSsVerticalSharingShortUrl) +'"><div class="filter"><input type="text" onkeyup="theChampFilterSharing(this.value.trim())" placeholder="'+ heateorSsMoreSharePopupSearchText +'" class="search"></div><div class="all-services"><ul class="mini">';
540
  for(var i in theChampMoreSharingServices){
541
  var tempTitle = theChampCapitaliseFirstLetter(theChampMoreSharingServices[i].title.replace(/[_. ]/g, ""));
542
  theChampMoreSharingServicesHtml += '<li><a rel="nofollow" class="theChamp'+i+'Share" title="'+ theChampMoreSharingServices[i].title +'" alt="'+ theChampMoreSharingServices[i].title +'" ';
js/front/facebook/sdk.js CHANGED
@@ -1 +1 @@
1
- function theChampInitiateFB(){FB.init({appId:theChampFBKey,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v9.0"})}window.fbAsyncInit=function(){theChampInitiateFB(),theChampFbIosLogin&&theChampAuthUserFB(),"function"==typeof theChampDisplayLoginIcon&&theChampDisplayLoginIcon(document,["theChampFacebookButton","theChampFacebookLogin"]),("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification||"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments)&&FB.Event.subscribe("comment.create",function(e){void 0!==e.commentID&&e.commentID&&("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"the_champ_moderate_fb_comments",data:e},success:function(e,t,n){}}),"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"heateor_fcm_save_fb_comment",data:e},success:function(e,t,n){}}))}),"undefined"!=typeof theChampFbLikeMycred&&theChampFbLikeMycred&&(FB.Event.subscribe("edge.create",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"","Minus point(s) for undoing Facebook like-recommend")})),"undefined"!=typeof theChampSsga&&theChampSsga&&(FB.Event.subscribe("edge.create",function(e){heateorSsgaSocialPluginsTracking("Facebook","Like",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsgaSocialPluginsTracking("Facebook","Unlike",e||"")}))},function(e){var t,n="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(n)||((t=e.createElement("script")).id=n,t.async=!0,t.src="//connect.facebook.net/"+theChampFBLang+"/sdk.js",o.parentNode.insertBefore(t,o))}(document);
1
+ function theChampInitiateFB(){FB.init({appId:theChampFBKey,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v10.0"})}window.fbAsyncInit=function(){theChampInitiateFB(),theChampFbIosLogin&&theChampAuthUserFB(),"function"==typeof theChampDisplayLoginIcon&&theChampDisplayLoginIcon(document,["theChampFacebookButton","theChampFacebookLogin"]),("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification||"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments)&&FB.Event.subscribe("comment.create",function(e){void 0!==e.commentID&&e.commentID&&("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"the_champ_moderate_fb_comments",data:e},success:function(e,t,n){}}),"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"heateor_fcm_save_fb_comment",data:e},success:function(e,t,n){}}))}),"undefined"!=typeof theChampFbLikeMycred&&theChampFbLikeMycred&&(FB.Event.subscribe("edge.create",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"","Minus point(s) for undoing Facebook like-recommend")})),"undefined"!=typeof theChampSsga&&theChampSsga&&(FB.Event.subscribe("edge.create",function(e){heateorSsgaSocialPluginsTracking("Facebook","Like",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsgaSocialPluginsTracking("Facebook","Unlike",e||"")}))},function(e){var t,n="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(n)||((t=e.createElement("script")).id=n,t.async=!0,t.src="//connect.facebook.net/"+theChampFBLang+"/sdk.js",o.parentNode.insertBefore(t,o))}(document);
js/front/sharing/sharing.js CHANGED
@@ -525,7 +525,7 @@ function theChampMoreSharingPopup(elem, postUrl, postTitle, twitterTitle){
525
  redirect_url: "//yoolink.to/addorshare?url_value=" + postUrl + "&title=" + postTitle,
526
  }
527
  }
528
- var theChampMoreSharingServicesHtml = '<button id="the_champ_sharing_popup_close" class="close-button separated"><img src="'+ theChampCloseIconPath +'" /></button><div id="the_champ_sharing_more_content" data-href="'+ decodeURIComponent(shareContainer.getAttribute('class').indexOf('the_champ_horizontal_sharing') != -1 ? heateorSsHorSharingShortUrl : heateorSsVerticalSharingShortUrl) +'"><div class="filter"><input type="text" onkeyup="theChampFilterSharing(this.value.trim())" placeholder="Search" class="search"></div><div class="all-services"><ul class="mini">';
529
  for(var i in theChampMoreSharingServices){
530
  var tempTitle = theChampCapitaliseFirstLetter(theChampMoreSharingServices[i].title.replace(/[_. ]/g, ""));
531
  theChampMoreSharingServicesHtml += '<li><a rel="nofollow" class="theChamp'+i+'Share" title="'+ theChampMoreSharingServices[i].title +'" alt="'+ theChampMoreSharingServices[i].title +'" ';
525
  redirect_url: "//yoolink.to/addorshare?url_value=" + postUrl + "&title=" + postTitle,
526
  }
527
  }
528
+ var theChampMoreSharingServicesHtml = '<button id="the_champ_sharing_popup_close" class="close-button separated"><img src="'+ theChampCloseIconPath +'" /></button><div id="the_champ_sharing_more_content" data-href="'+ decodeURIComponent(shareContainer.getAttribute('class').indexOf('the_champ_horizontal_sharing') != -1 ? heateorSsHorSharingShortUrl : heateorSsVerticalSharingShortUrl) +'"><div class="filter"><input type="text" onkeyup="theChampFilterSharing(this.value.trim())" placeholder="'+ heateorSsMoreSharePopupSearchText +'" class="search"></div><div class="all-services"><ul class="mini">';
529
  for(var i in theChampMoreSharingServices){
530
  var tempTitle = theChampCapitaliseFirstLetter(theChampMoreSharingServices[i].title.replace(/[_. ]/g, ""));
531
  theChampMoreSharingServicesHtml += '<li><a rel="nofollow" class="theChamp'+i+'Share" title="'+ theChampMoreSharingServices[i].title +'" alt="'+ theChampMoreSharingServices[i].title +'" ';
js/front/social_login/common.js CHANGED
@@ -1 +1 @@
1
- function theChampLoginPopup(e){if("undefined"!=typeof theChampSameTabLogin&&theChampSameTabLogin==1){location.href=e}else{window.open(e,"_blank","height=520,width=770,left=315,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}}function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampInitiateLogin(e,a){var t=jQuery(e).parents("div.the_champ_login_container").find(".heateor_ss_social_login_optin");if(0==t.length||jQuery(t).is(":checked")){"facebook"==a?theChampLoginPopup(theChampFacebookAuthUrl):"foursquare"==a?theChampLoginPopup(theChampFoursquareAuthUrl):"dropbox"==a?theChampLoginPopup(theChampDropboxAuthUrl):"disqus"==a?theChampLoginPopup(theChampDisqusAuthUrl):"reddit"==a?theChampLoginPopup(theChampRedditAuthUrl):"github"==a?theChampLoginPopup(theChampGithubAuthUrl):"twitch"==a?theChampLoginPopup(theChampTwitchAuthUrl):"spotify"==a?theChampLoginPopup(theChampSpotifyAuthUrl):"dribbble"==a?theChampLoginPopup(theChampDribbbleAuthUrl):"kakao"==a?theChampLoginPopup(theChampKakaoAuthUrl):"line"==a?theChampLoginPopup(theChampLineAuthUrl):"microsoft"==a?theChampLoginPopup(theChampLiveAuthUrl):"steam"==a?theChampLoginPopup(theChampSteamAuthUrl):"twitter"==a?theChampLoginPopup(theChampTwitterAuthUrl):("linkedin"==a&&theChampLoginPopup(theChampLinkedinAuthUrl),"google"==a?theChampLoginPopup(theChampGoogleAuthUrl):"vkontakte"==a?theChampLoginPopup(theChampVkontakteAuthUrl):"yahoo"==a?theChampLoginPopup(theChampYahooAuthUrl):"wordpress"==a?theChampLoginPopup(theChampWordpressAuthUrl):"instagram"==a&&theChampLoginPopup(theChampInstagramAuthUrl))}else t.length>0&&jQuery(t).parent().css("color","red")}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(a=0;a<t.length;a++)for(var h=theChampGetElementsByClass(e,t[a]),i=0;i<h.length;i++)h[i].style.display="block"}function theChampValidateEmail(e){return/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(e,t,a){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}if(void 0===theChampLinkingRedirection)var theChampLinkingRedirection="";theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;
1
+ function theChampLoginPopup(e){if("undefined"!=typeof theChampSameTabLogin&&theChampSameTabLogin==1){location.href=e}else{window.open(e,"_blank","height=520,width=770,left=315,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}}function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampInitiateLogin(e,a){var t=jQuery(e).parents("div.the_champ_login_container").find(".heateor_ss_social_login_optin");if(0==t.length||jQuery(t).is(":checked")){"facebook"==a?theChampLoginPopup(theChampFacebookAuthUrl):"foursquare"==a?theChampLoginPopup(theChampFoursquareAuthUrl):"dropbox"==a?theChampLoginPopup(theChampDropboxAuthUrl):"amazon"==a?theChampLoginPopup(theChampAmazonAuthUrl):"disqus"==a?theChampLoginPopup(theChampDisqusAuthUrl):"stackoverflow"==a?theChampLoginPopup(theChampStackoverflowAuthUrl):"discord"==a?theChampLoginPopup(theChampDiscordAuthUrl):"reddit"==a?theChampLoginPopup(theChampRedditAuthUrl):"github"==a?theChampLoginPopup(theChampGithubAuthUrl):"twitch"==a?theChampLoginPopup(theChampTwitchAuthUrl):"spotify"==a?theChampLoginPopup(theChampSpotifyAuthUrl):"dribbble"==a?theChampLoginPopup(theChampDribbbleAuthUrl):"kakao"==a?theChampLoginPopup(theChampKakaoAuthUrl):"line"==a?theChampLoginPopup(theChampLineAuthUrl):"microsoft"==a?theChampLoginPopup(theChampLiveAuthUrl):"steam"==a?theChampLoginPopup(theChampSteamAuthUrl):"twitter"==a?theChampLoginPopup(theChampTwitterAuthUrl):("linkedin"==a&&theChampLoginPopup(theChampLinkedinAuthUrl),"google"==a?theChampLoginPopup(theChampGoogleAuthUrl):"vkontakte"==a?theChampLoginPopup(theChampVkontakteAuthUrl):"yahoo"==a?theChampLoginPopup(theChampYahooAuthUrl):"wordpress"==a?theChampLoginPopup(theChampWordpressAuthUrl):"instagram"==a&&theChampLoginPopup(theChampInstagramAuthUrl))}else t.length>0&&jQuery(t).parent().css("color","red")}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(a=0;a<t.length;a++)for(var h=theChampGetElementsByClass(e,t[a]),i=0;i<h.length;i++)h[i].style.display="block"}function theChampValidateEmail(e){return/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(e,t,a){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}if(void 0===theChampLinkingRedirection)var theChampLinkingRedirection="";theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;
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-01-27 15:38+0530\n"
6
- "PO-Revision-Date: 2021-01-27 15:38+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
@@ -15,7 +15,7 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../super_socializer.php:1570
19
  #, fuzzy
20
  msgid ""
21
  "cURL is not enabled at your website server. Please contact your website "
@@ -24,7 +24,7 @@ msgstr ""
24
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
25
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
26
 
27
- #: ../super_socializer.php:1598
28
  #, fuzzy, php-format
29
  msgid ""
30
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -33,7 +33,7 @@ msgstr ""
33
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
34
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
35
 
36
- #: ../super_socializer.php:1601
37
  #, fuzzy, php-format
38
  msgid ""
39
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -42,7 +42,7 @@ msgstr ""
42
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
43
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
44
 
45
- #: ../super_socializer.php:1604
46
  msgid ""
47
  "Make sure cURL is enabled at your website server. You may need to contact "
48
  "the server administrator of your website to verify this"
@@ -50,141 +50,145 @@ msgstr ""
50
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
51
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
52
 
53
- #: ../super_socializer.php:1786 ../helper.php:986
 
 
 
 
54
  msgid "Please verify your email address to login."
55
  msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك للدخول."
56
 
57
- #: ../super_socializer.php:1786
58
  msgid "Your email has been verified. Now you can login to your account"
59
  msgstr "تم التحقق من بريدك الإلكتروني. الآن يمكنك تسجيل الدخول إلى حسابك"
60
 
61
- #: ../super_socializer.php:1790
62
  msgid "Notification"
63
  msgstr "تنبيهات"
64
 
65
- #: ../super_socializer.php:1808 ../admin/social_login.php:1280
66
  msgid "Email required"
67
  msgstr "البريد الإلكتروني - إدخال القيمة إجباري"
68
 
69
- #: ../super_socializer.php:1811
70
  msgid "Please check your email inbox to complete the registration."
71
  msgstr "يرجى التحقق من بريدك الالكتروني لإكمال التسجيل."
72
 
73
- #: ../super_socializer.php:1880
74
  msgid "Leave a reply"
75
  msgstr "اترك رد"
76
 
77
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
78
  msgid "Shares"
79
  msgstr ""
80
 
81
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
82
  msgid "Share"
83
  msgstr ""
84
 
85
- #: ../super_socializer.php:1896
86
  #, fuzzy
87
  msgid "Link copied."
88
  msgstr "شارك الأخرين عبر لنكيدان"
89
 
90
- #: ../super_socializer.php:2141
91
  #, fuzzy
92
  msgid "Super Socializer - General Options"
93
  msgstr "آخر تسجيل دخول | Last Login"
94
 
95
- #: ../super_socializer.php:2141 ../admin/general_options.php:15
96
  #: ../admin/social_commenting.php:47
97
  #, fuzzy
98
  msgid "General Options"
99
  msgstr "المشاركات الأفقي"
100
 
101
- #: ../super_socializer.php:2209 ../helper.php:915
102
  #, fuzzy
103
  msgid "Social Avatar"
104
  msgstr "صغير الرمزية رابط"
105
 
106
- #: ../super_socializer.php:2212
107
  msgid "Small Avatar Url"
108
  msgstr "صغير الرمزية رابط"
109
 
110
- #: ../super_socializer.php:2216
111
  #, fuzzy
112
  msgid "Large Avatar Url"
113
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
114
 
115
- #: ../super_socializer.php:2220 ../helper.php:918
116
  msgid ""
117
  "Do not fetch and update social avatar from my profile, next time I Social "
118
  "Login"
119
  msgstr ""
120
 
121
- #: ../super_socializer.php:2224 ../helper.php:919
122
  msgid "Update social avatar, next time I Social Login"
123
  msgstr ""
124
 
125
- #: ../super_socializer.php:2301
126
  msgid "Login with your Social ID"
127
  msgstr ""
128
 
129
- #: ../super_socializer.php:2302
130
  msgid "Email you entered is already registered or invalid"
131
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
132
 
133
- #: ../super_socializer.php:2309
134
  msgid "Please enter a valid email address. You might be required to verify it"
135
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
136
 
137
- #: ../super_socializer.php:2313 ../super_socializer.php:3039
138
  msgid "Link your social account to login to your account at this website"
139
  msgstr ""
140
  "الرجاء القيام بربط الحساب الإجتماعي الخاص بك للتمكن من تسجيل الدخول العام "
141
  "الى حسابك في هذا الموقع"
142
 
143
- #: ../super_socializer.php:2561
144
  msgid "Thanks for installing Super Socializer plugin"
145
  msgstr ""
146
 
147
- #: ../super_socializer.php:2563
148
  msgid "Configure the Plugin"
149
  msgstr ""
150
 
151
- #: ../super_socializer.php:2574
152
  msgid ""
153
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
154
  "current version of Super Socializer"
155
  msgstr ""
156
 
157
- #: ../super_socializer.php:2583
158
  msgid ""
159
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
160
  "version of Super Socializer"
161
  msgstr ""
162
 
163
- #: ../super_socializer.php:2592
164
  msgid ""
165
- "Update \"Social Login Buttons\" add-on to version 1.2.6 or above for "
166
  "compatibility with current version of Super Socializer"
167
  msgstr ""
168
 
169
- #: ../super_socializer.php:2601
170
  msgid ""
171
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
172
  "with current version of Super Socializer"
173
  msgstr ""
174
 
175
- #: ../super_socializer.php:2610
176
  msgid ""
177
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
178
  "with current version of Super Socializer"
179
  msgstr ""
180
 
181
- #: ../super_socializer.php:2621
182
  #, php-format
183
  msgid ""
184
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
185
  msgstr ""
186
 
187
- #: ../super_socializer.php:2630
188
  #, php-format
189
  msgid ""
190
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -192,7 +196,7 @@ msgid ""
192
  "Instagram App Secret <a href=\"%s\">here</a>"
193
  msgstr ""
194
 
195
- #: ../super_socializer.php:2639 ../super_socializer.php:2648
196
  #, php-format
197
  msgid ""
198
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -201,13 +205,13 @@ msgid ""
201
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
202
  msgstr ""
203
 
204
- #: ../super_socializer.php:2664
205
  #, php-format
206
  msgid ""
207
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
208
  msgstr ""
209
 
210
- #: ../super_socializer.php:2688
211
  #, php-format
212
  msgid ""
213
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -215,14 +219,14 @@ msgid ""
215
  "target=\"_blank\">here</a>"
216
  msgstr ""
217
 
218
- #: ../super_socializer.php:2688 ../super_socializer.php:2713
219
- #: ../super_socializer.php:2738 ../super_socializer.php:2763
220
- #: ../super_socializer.php:2796 ../super_socializer.php:2824
221
- #: ../super_socializer.php:2851
222
  msgid "Okay"
223
  msgstr ""
224
 
225
- #: ../super_socializer.php:2713
226
  #, php-format
227
  msgid ""
228
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -230,7 +234,7 @@ msgid ""
230
  "\">here</a>"
231
  msgstr ""
232
 
233
- #: ../super_socializer.php:2738
234
  #, php-format
235
  msgid ""
236
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -238,7 +242,7 @@ msgid ""
238
  "target=\"_blank\">here</a>"
239
  msgstr ""
240
 
241
- #: ../super_socializer.php:2763
242
  #, php-format
243
  msgid ""
244
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -246,13 +250,13 @@ msgid ""
246
  "target=\"_blank\">here</a>"
247
  msgstr ""
248
 
249
- #: ../super_socializer.php:2774
250
  #, php-format
251
  msgid ""
252
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
253
  msgstr ""
254
 
255
- #: ../super_socializer.php:2796
256
  #, php-format
257
  msgid ""
258
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -260,7 +264,7 @@ msgid ""
260
  "\"%s\" target=\"_blank\">here</a>"
261
  msgstr ""
262
 
263
- #: ../super_socializer.php:2824
264
  #, php-format
265
  msgid ""
266
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -269,7 +273,7 @@ msgid ""
269
  "your website %s with them. No need to copy-paste any code from their website."
270
  msgstr ""
271
 
272
- #: ../super_socializer.php:2851
273
  #, php-format
274
  msgid ""
275
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -277,7 +281,7 @@ msgid ""
277
  "\"%s\" target=\"_blank\">here</a>"
278
  msgstr ""
279
 
280
- #: ../super_socializer.php:2876
281
  #, php-format
282
  msgid ""
283
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -285,11 +289,11 @@ msgid ""
285
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
286
  msgstr ""
287
 
288
- #: ../super_socializer.php:2876 ../super_socializer.php:2903
289
  msgid "Dismiss"
290
  msgstr ""
291
 
292
- #: ../super_socializer.php:2902
293
  #, php-format
294
  msgid ""
295
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -298,7 +302,7 @@ msgid ""
298
  "that, clear share counts cache from \"Miscellaneous\" section"
299
  msgstr ""
300
 
301
- #: ../super_socializer.php:3115
302
  msgid ""
303
  "Your browser is blocking some features of this website. Please follow the "
304
  "instructions at {support_url} to unblock these."
@@ -309,130 +313,130 @@ msgstr ""
309
  msgid "Settings saved"
310
  msgstr "الإعدادات"
311
 
312
- #: ../helper.php:185
313
  #, fuzzy
314
  msgid "Click to toggle help"
315
  msgstr "إضغط لإخفاء المساعدة "
316
 
317
- #: ../helper.php:282
318
  #, fuzzy
319
  msgid "Add-Ons"
320
  msgstr "إضافات"
321
 
322
- #: ../helper.php:283
323
  msgid "Support Documentation"
324
  msgstr ""
325
 
326
- #: ../helper.php:284
327
  msgid "Settings"
328
  msgstr "الإعدادات"
329
 
330
- #: ../helper.php:567
331
  msgid "Account linked successfully"
332
  msgstr "تم ربط حسابك بنجاح"
333
 
334
- #: ../helper.php:571
335
  msgid "Account already exists or linked"
336
  msgstr "حساب موجود بالفعل أو مرتبطة مسبقاً"
337
 
338
- #: ../helper.php:607 ../helper.php:609
339
  #, fuzzy
340
  msgid "Login with"
341
  msgstr "الخيارات"
342
 
343
- #: ../helper.php:644 ../helper.php:650
344
  msgid "Currently"
345
  msgstr "في الوقت الحاضر"
346
 
347
- #: ../helper.php:644 ../helper.php:650
348
  msgid "Connected with"
349
  msgstr ""
350
 
351
- #: ../helper.php:644 ../helper.php:650
352
  msgid "Remove"
353
  msgstr "إزالة"
354
 
355
- #: ../helper.php:721
356
  #, fuzzy
357
  msgid "Social Account Linking"
358
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
359
 
360
- #: ../helper.php:771
361
  #, fuzzy
362
  msgid "Disable Standard Social Sharing on this "
363
  msgstr "تعطيل ظهور مشاركة الاجتماعي عمودي على هذا"
364
 
365
- #: ../helper.php:776
366
  #, fuzzy
367
  msgid "Disable Floating Social Sharing on this "
368
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
369
 
370
- #: ../helper.php:781
371
  #, fuzzy
372
  msgid "Disable Standard like buttons on this "
373
  msgstr "تعطيل زر الإعجاب الموجود عمودياً على هذا"
374
 
375
- #: ../helper.php:786
376
  #, fuzzy
377
  msgid "Disable Floating like buttons on this "
378
  msgstr "تعطيل زر الإعجاب الموجود أفقياً على هذا"
379
 
380
- #: ../helper.php:791
381
  msgid "Disable Social Commenting on this "
382
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
383
 
384
- #: ../helper.php:800
385
  #, fuzzy
386
  msgid "Standard Sharing Interface"
387
  msgstr "المشاركات الأفقي"
388
 
389
- #: ../helper.php:806 ../helper.php:825
390
  msgid "Starting share count for "
391
  msgstr "بدء العد حصة ل"
392
 
393
- #: ../helper.php:819
394
  #, fuzzy
395
  msgid "Floating Sharing Interface"
396
  msgstr "المشاركات الأفقي"
397
 
398
- #: ../helper.php:922
399
  #, fuzzy
400
  msgid "Small Avatar"
401
  msgstr "صغير الرمزية رابط"
402
 
403
- #: ../helper.php:926
404
  #, fuzzy
405
  msgid "Large Avatar"
406
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
407
 
408
- #: ../helper.php:930 ../admin/general_options.php:89
409
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
410
- #: ../admin/social_login.php:1770 ../admin/like_buttons.php:780
411
  #, fuzzy
412
  msgid "Save Changes"
413
  msgstr "حفظ"
414
 
415
- #: ../helper.php:1023
416
  msgid "Click to delete social profile data"
417
  msgstr ""
418
 
419
- #: ../helper.php:1052
420
  #, fuzzy
421
  msgid "Deleting"
422
  msgstr "الإعدادات"
423
 
424
- #: ../helper.php:1062
425
  msgid "Deleted"
426
  msgstr ""
427
 
428
- #: ../helper.php:1064
429
  msgid "Something bad happened"
430
  msgstr ""
431
 
432
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
433
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
434
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
435
- #: ../admin/social_login.php:5 ../admin/social_login.php:1774
436
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
437
  #, fuzzy, php-format
438
  msgid ""
@@ -491,14 +495,14 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
491
  msgstr ""
492
 
493
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
494
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1780
495
  #: ../admin/like_buttons.php:790
496
  #, fuzzy
497
  msgid "Instagram Shoutout"
498
  msgstr "إنستاجرام"
499
 
500
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
501
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1782
502
  #: ../admin/like_buttons.php:792
503
  msgid ""
504
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -653,7 +657,7 @@ msgstr ""
653
 
654
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
655
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
656
- #: ../admin/social_login.php:1736 ../admin/like_buttons.php:50
657
  #: ../admin/like_buttons.php:751
658
  #, fuzzy
659
  msgid "Shortcode & Widget"
@@ -666,7 +670,7 @@ msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
666
 
667
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
668
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
669
- #: ../admin/social_login.php:46 ../admin/social_login.php:1750
670
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
671
  #, fuzzy
672
  msgid "FAQ"
@@ -926,8 +930,8 @@ msgstr "رابط (URL) مخصّص"
926
  msgid "Url to share"
927
  msgstr " شارك الآخرين بهذة الفقرة"
928
 
929
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:1021
930
- #: ../admin/social_login.php:1397 ../admin/like_buttons.php:105
931
  #: ../inc/widget.php:949
932
  #, fuzzy
933
  msgid "Title"
@@ -1025,7 +1029,7 @@ msgid "Placement"
1025
  msgstr ""
1026
 
1027
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
1028
- #: ../admin/social_login.php:1338 ../admin/social_login.php:1367
1029
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
1030
  #, fuzzy
1031
  msgid "Homepage"
@@ -1306,7 +1310,7 @@ msgstr ""
1306
  msgid "Required only to track Facebook share count"
1307
  msgstr ""
1308
 
1309
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:193
1310
  #, fuzzy
1311
  msgid "Facebook App ID"
1312
  msgstr "رقم التعريف الخالص بك | ID"
@@ -1321,7 +1325,7 @@ msgstr ""
1321
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
1322
  "فيسبوك"
1323
 
1324
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:214
1325
  #, fuzzy
1326
  msgid "Facebook App Secret"
1327
  msgstr "رقم التعريف الخالص بك | ID"
@@ -1515,7 +1519,7 @@ msgstr ""
1515
  "إشكالية (حيث تقاسم بوك لا يعمل بشكل صحيح) من موقع الويب الخاص بك في حقل النص:"
1516
 
1517
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1518
- #: ../admin/social_login.php:1752
1519
  msgid ""
1520
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1521
  "an online website for the plugin to function properly."
@@ -1570,7 +1574,7 @@ msgid ""
1570
  msgstr ""
1571
 
1572
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1573
- #: ../admin/social_login.php:1759
1574
  msgid "Why is my browser blocking some features of the plugin?"
1575
  msgstr ""
1576
 
@@ -1921,11 +1925,11 @@ msgstr "إنشاء ملف الإعدادات"
1921
  msgid "Advanced Configuration"
1922
  msgstr "إنشاء ملف الإعدادات"
1923
 
1924
- #: ../admin/social_login.php:41 ../admin/social_login.php:1536
1925
  msgid "GDPR"
1926
  msgstr ""
1927
 
1928
- #: ../admin/social_login.php:43 ../admin/social_login.php:1687
1929
  msgid "XProfile Integration"
1930
  msgstr ""
1931
 
@@ -1959,104 +1963,134 @@ msgstr ""
1959
 
1960
  #: ../admin/social_login.php:98
1961
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1962
  msgid "Select Social Networks"
1963
  msgstr "حددت كشبكة الإجتماعية اللأساسية"
1964
 
1965
- #: ../admin/social_login.php:103
1966
  msgid "Facebook"
1967
  msgstr "الفيسبوك"
1968
 
1969
- #: ../admin/social_login.php:107
1970
  #, fuzzy
1971
  msgid "Twitter"
1972
  msgstr "شارك الأخرين عبر تويتر"
1973
 
1974
- #: ../admin/social_login.php:111
1975
  #, fuzzy
1976
  msgid "LinkedIn"
1977
  msgstr "شارك الأخرين عبر لنكيدان"
1978
 
1979
- #: ../admin/social_login.php:115
1980
  #, fuzzy
1981
  msgid "Google"
1982
  msgstr "الصفحة لمؤلف البرنامج المساعد على جوجل "
1983
 
1984
- #: ../admin/social_login.php:119
1985
  #, fuzzy
1986
  msgid "Vkontakte"
1987
  msgstr "انشر عبر VKontakte"
1988
 
1989
- #: ../admin/social_login.php:123
1990
  #, fuzzy
1991
  msgid "Instagram"
1992
  msgstr "إنستاجرام"
1993
 
1994
- #: ../admin/social_login.php:127
1995
  msgid "Steam"
1996
  msgstr ""
1997
 
1998
- #: ../admin/social_login.php:131
1999
  msgid "Line"
2000
  msgstr ""
2001
 
2002
- #: ../admin/social_login.php:135
2003
  msgid "Wordpress"
2004
  msgstr ""
2005
 
2006
- #: ../admin/social_login.php:139
2007
  msgid "Windows Live"
2008
  msgstr ""
2009
 
2010
- #: ../admin/social_login.php:143
2011
  #, fuzzy
2012
  msgid "Yahoo"
2013
  msgstr "ياهو ماسنجر"
2014
 
2015
- #: ../admin/social_login.php:147
 
 
 
 
 
 
 
 
 
 
 
 
2016
  msgid "Spotify"
2017
  msgstr ""
2018
 
2019
- #: ../admin/social_login.php:150
2020
  msgid "Dribbble"
2021
  msgstr ""
2022
 
2023
- #: ../admin/social_login.php:154
2024
  #, fuzzy
2025
  msgid "Twitch"
2026
  msgstr "شارك الأخرين عبر تويتر"
2027
 
2028
- #: ../admin/social_login.php:158
2029
  #, fuzzy
2030
  msgid "Foursquare"
2031
  msgstr "مربع"
2032
 
2033
- #: ../admin/social_login.php:162
2034
  msgid "Dropbox"
2035
  msgstr ""
2036
 
2037
- #: ../admin/social_login.php:166
2038
  msgid "Disqus"
2039
  msgstr ""
2040
 
2041
- #: ../admin/social_login.php:170
2042
  #, fuzzy
2043
  msgid "Reddit"
2044
  msgstr "ريديت"
2045
 
2046
- #: ../admin/social_login.php:174
2047
  msgid "Github"
2048
  msgstr ""
2049
 
2050
- #: ../admin/social_login.php:178
2051
  msgid "Kakao"
2052
  msgstr ""
2053
 
2054
- #: ../admin/social_login.php:186
2055
  #, fuzzy
2056
  msgid "Select Social ID provider to enable in Social Login"
2057
  msgstr "حدد موفر \"معرف الاجتماعية\" لتمكين \"تسجيل الدخول الاجتماعي\""
2058
 
2059
- #: ../admin/social_login.php:203
2060
  #, fuzzy, php-format
2061
  msgid ""
2062
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -2066,7 +2100,7 @@ msgstr ""
2066
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2067
  "فيسبوك"
2068
 
2069
- #: ../admin/social_login.php:205 ../admin/social_login.php:226
2070
  #, fuzzy
2071
  msgid ""
2072
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
@@ -2074,7 +2108,7 @@ msgstr ""
2074
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2075
  "الوصلة المذكورة"
2076
 
2077
- #: ../admin/social_login.php:224
2078
  #, fuzzy, php-format
2079
  msgid ""
2080
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -2084,12 +2118,12 @@ msgstr ""
2084
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2085
  "فيسبوك"
2086
 
2087
- #: ../admin/social_login.php:235
2088
  #, fuzzy
2089
  msgid "Twitter API Key"
2090
  msgstr "مفتاح API الخاص | API Private Key"
2091
 
2092
- #: ../admin/social_login.php:245
2093
  #, fuzzy, php-format
2094
  msgid ""
2095
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -2099,19 +2133,19 @@ msgstr ""
2099
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
2100
  "\"مفتاح API التغريد\""
2101
 
2102
- #: ../admin/social_login.php:247 ../admin/social_login.php:272
2103
  #, fuzzy
2104
  msgid ""
2105
  "Paste following url in <strong>Website</strong> option mentioned at the link"
2106
  msgstr "لصق التالية url في خيار <strong>URL الموقع</strong> في الوصلة المذكورة"
2107
 
2108
- #: ../admin/social_login.php:251 ../admin/social_login.php:276
2109
- #: ../admin/social_login.php:464 ../admin/social_login.php:484
2110
- #: ../admin/social_login.php:685 ../admin/social_login.php:705
2111
- #: ../admin/social_login.php:726 ../admin/social_login.php:746
2112
- #: ../admin/social_login.php:851 ../admin/social_login.php:871
2113
- #: ../admin/social_login.php:936 ../admin/social_login.php:956
2114
- #: ../admin/social_login.php:978 ../admin/social_login.php:998
2115
  #, fuzzy
2116
  msgid ""
2117
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -2120,12 +2154,12 @@ msgstr ""
2120
  "لصق التالية url في الخيار <strong>المجال رد الاتصال</strong> في الوصلة "
2121
  "المذكورة"
2122
 
2123
- #: ../admin/social_login.php:260
2124
  #, fuzzy
2125
  msgid "Twitter API Secret"
2126
  msgstr "شارك الأخرين عبر تويتر"
2127
 
2128
- #: ../admin/social_login.php:270
2129
  #, fuzzy, php-format
2130
  msgid ""
2131
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -2135,12 +2169,12 @@ msgstr ""
2135
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
2136
  "\"سر API التغريد\""
2137
 
2138
- #: ../admin/social_login.php:285
2139
  #, fuzzy
2140
  msgid "LinkedIn Client ID"
2141
  msgstr "شارك الأخرين عبر لنكيدان"
2142
 
2143
- #: ../admin/social_login.php:295
2144
  #, fuzzy, php-format
2145
  msgid ""
2146
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2149,8 +2183,8 @@ msgstr ""
2149
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2150
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2151
 
2152
- #: ../admin/social_login.php:297 ../admin/social_login.php:318
2153
- #: ../admin/social_login.php:504 ../admin/social_login.php:524
2154
  #, fuzzy
2155
  msgid ""
2156
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -2159,12 +2193,12 @@ msgstr ""
2159
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2160
  "الوصلة المذكورة"
2161
 
2162
- #: ../admin/social_login.php:306
2163
  #, fuzzy
2164
  msgid "LinkedIn Client Secret"
2165
  msgstr "شارك الأخرين عبر لنكيدان"
2166
 
2167
- #: ../admin/social_login.php:316
2168
  #, fuzzy, php-format
2169
  msgid ""
2170
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2174,12 +2208,12 @@ msgstr ""
2174
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2175
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2176
 
2177
- #: ../admin/social_login.php:327
2178
  #, fuzzy
2179
  msgid "Google Client ID"
2180
  msgstr "شارك الأخرين عبر جوجل"
2181
 
2182
- #: ../admin/social_login.php:337
2183
  #, fuzzy, php-format
2184
  msgid ""
2185
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2189,7 +2223,7 @@ msgstr ""
2189
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2190
  "GooglePlus"
2191
 
2192
- #: ../admin/social_login.php:339 ../admin/social_login.php:360
2193
  #, fuzzy
2194
  msgid ""
2195
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2198,12 +2232,12 @@ msgstr ""
2198
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2199
  "الوصلة المذكورة"
2200
 
2201
- #: ../admin/social_login.php:348
2202
  #, fuzzy
2203
  msgid "Google Client Secret"
2204
  msgstr "شارك الأخرين عبر جوجل"
2205
 
2206
- #: ../admin/social_login.php:358
2207
  #, fuzzy, php-format
2208
  msgid ""
2209
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2213,12 +2247,12 @@ msgstr ""
2213
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2214
  "GooglePlus"
2215
 
2216
- #: ../admin/social_login.php:369
2217
  #, fuzzy
2218
  msgid "Vkontakte Application ID"
2219
  msgstr "انشر عبر VKontakte"
2220
 
2221
- #: ../admin/social_login.php:379 ../admin/social_login.php:400
2222
  #, fuzzy, php-format
2223
  msgid ""
2224
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2229,7 +2263,7 @@ msgstr ""
2229
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2230
  "Vkontakte"
2231
 
2232
- #: ../admin/social_login.php:381 ../admin/social_login.php:402
2233
  #, fuzzy
2234
  msgid ""
2235
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2237,17 +2271,17 @@ msgid ""
2237
  msgstr ""
2238
  "لصق التالية url في خيار <strong>عنوان الموقع</strong> في الوصلة المذكورة"
2239
 
2240
- #: ../admin/social_login.php:390
2241
  #, fuzzy
2242
  msgid "Vkontakte Secure key"
2243
  msgstr "انشر عبر VKontakte"
2244
 
2245
- #: ../admin/social_login.php:411
2246
  #, fuzzy
2247
  msgid "Instagram App ID"
2248
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2249
 
2250
- #: ../admin/social_login.php:421
2251
  #, fuzzy, php-format
2252
  msgid ""
2253
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2257,7 +2291,7 @@ msgstr ""
2257
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2258
  "Instagram"
2259
 
2260
- #: ../admin/social_login.php:423 ../admin/social_login.php:444
2261
  #, fuzzy
2262
  msgid ""
2263
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2266,12 +2300,12 @@ msgstr ""
2266
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2267
  "الوصلة المذكورة"
2268
 
2269
- #: ../admin/social_login.php:432
2270
  #, fuzzy
2271
  msgid "Instagram App Secret"
2272
  msgstr "إنستاجرام"
2273
 
2274
- #: ../admin/social_login.php:442
2275
  #, fuzzy, php-format
2276
  msgid ""
2277
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2281,11 +2315,11 @@ msgstr ""
2281
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2282
  "Instagram"
2283
 
2284
- #: ../admin/social_login.php:453
2285
  msgid "Line Channel ID"
2286
  msgstr ""
2287
 
2288
- #: ../admin/social_login.php:462
2289
  #, fuzzy, php-format
2290
  msgid ""
2291
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2294,12 +2328,12 @@ msgstr ""
2294
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2295
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2296
 
2297
- #: ../admin/social_login.php:473
2298
  #, fuzzy
2299
  msgid "Line Channel Secret"
2300
  msgstr "شارك الأخرين عبر لنكيدان"
2301
 
2302
- #: ../admin/social_login.php:482
2303
  #, fuzzy, php-format
2304
  msgid ""
2305
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2308,12 +2342,12 @@ msgstr ""
2308
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2309
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2310
 
2311
- #: ../admin/social_login.php:493
2312
  #, fuzzy
2313
  msgid "Wordpress Client ID"
2314
  msgstr "شارك الأخرين عبر جوجل"
2315
 
2316
- #: ../admin/social_login.php:502
2317
  #, fuzzy, php-format
2318
  msgid ""
2319
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2323,12 +2357,12 @@ msgstr ""
2323
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2324
  "GooglePlus"
2325
 
2326
- #: ../admin/social_login.php:513
2327
  #, fuzzy
2328
  msgid "Wordpress Client Secret"
2329
  msgstr "شارك الأخرين عبر جوجل"
2330
 
2331
- #: ../admin/social_login.php:522
2332
  #, fuzzy, php-format
2333
  msgid ""
2334
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2339,12 +2373,12 @@ msgstr ""
2339
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2340
  "GooglePlus"
2341
 
2342
- #: ../admin/social_login.php:533
2343
  #, fuzzy
2344
  msgid "Microsoft Client ID"
2345
  msgstr "شارك الأخرين عبر جوجل"
2346
 
2347
- #: ../admin/social_login.php:542
2348
  #, fuzzy, php-format
2349
  msgid ""
2350
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2354,9 +2388,9 @@ msgstr ""
2354
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2355
  "GooglePlus"
2356
 
2357
- #: ../admin/social_login.php:544 ../admin/social_login.php:564
2358
- #: ../admin/social_login.php:643 ../admin/social_login.php:663
2359
- #: ../admin/social_login.php:808 ../admin/social_login.php:828
2360
  #, fuzzy
2361
  msgid ""
2362
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2365,12 +2399,12 @@ msgstr ""
2365
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2366
  "الوصلة المذكورة"
2367
 
2368
- #: ../admin/social_login.php:553
2369
  #, fuzzy
2370
  msgid "Microsoft Client Secret"
2371
  msgstr "شارك الأخرين عبر جوجل"
2372
 
2373
- #: ../admin/social_login.php:562
2374
  #, fuzzy, php-format
2375
  msgid ""
2376
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2381,12 +2415,12 @@ msgstr ""
2381
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2382
  "GooglePlus"
2383
 
2384
- #: ../admin/social_login.php:572
2385
  #, fuzzy
2386
  msgid "Steam API Key"
2387
  msgstr "مفتاح API الخاص | API Private Key"
2388
 
2389
- #: ../admin/social_login.php:581
2390
  #, fuzzy, php-format
2391
  msgid ""
2392
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2396,19 +2430,19 @@ msgstr ""
2396
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
2397
  "\"مفتاح API التغريد\""
2398
 
2399
- #: ../admin/social_login.php:582
2400
  #, fuzzy
2401
  msgid "Save following <strong>domain</strong> to get the key"
2402
  msgstr ""
2403
  "لصق التالية url في الخيار <strong>المجال رد الاتصال</strong> في الوصلة "
2404
  "المذكورة"
2405
 
2406
- #: ../admin/social_login.php:591
2407
  #, fuzzy
2408
  msgid "Yahoo Client ID"
2409
  msgstr "شارك الأخرين عبر جوجل"
2410
 
2411
- #: ../admin/social_login.php:600
2412
  #, fuzzy, php-format
2413
  msgid ""
2414
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2418,21 +2452,21 @@ msgstr ""
2418
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2419
  "GooglePlus"
2420
 
2421
- #: ../admin/social_login.php:602 ../admin/social_login.php:622
2422
  #, fuzzy
2423
  msgid ""
2424
- "Paste following url in <strong>Redirect URI(s)</strong> option mentioned at "
2425
- "the link"
2426
  msgstr ""
2427
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2428
  "الوصلة المذكورة"
2429
 
2430
- #: ../admin/social_login.php:611
2431
  #, fuzzy
2432
  msgid "Yahoo Client Secret"
2433
  msgstr "شارك الأخرين عبر جوجل"
2434
 
2435
- #: ../admin/social_login.php:620
2436
  #, fuzzy, php-format
2437
  msgid ""
2438
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2442,12 +2476,139 @@ msgstr ""
2442
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2443
  "GooglePlus"
2444
 
2445
- #: ../admin/social_login.php:632
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2446
  #, fuzzy
2447
  msgid "Spotify Client ID"
2448
  msgstr "شارك الأخرين عبر جوجل"
2449
 
2450
- #: ../admin/social_login.php:641
2451
  #, fuzzy, php-format
2452
  msgid ""
2453
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2457,12 +2618,12 @@ msgstr ""
2457
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2458
  "GooglePlus"
2459
 
2460
- #: ../admin/social_login.php:652
2461
  #, fuzzy
2462
  msgid "Spotify Client Secret"
2463
  msgstr "شارك الأخرين عبر جوجل"
2464
 
2465
- #: ../admin/social_login.php:661
2466
  #, fuzzy, php-format
2467
  msgid ""
2468
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2473,12 +2634,12 @@ msgstr ""
2473
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2474
  "GooglePlus"
2475
 
2476
- #: ../admin/social_login.php:674
2477
  #, fuzzy
2478
  msgid "Dribbble Client ID"
2479
  msgstr "شارك الأخرين عبر جوجل"
2480
 
2481
- #: ../admin/social_login.php:683
2482
  #, fuzzy, php-format
2483
  msgid ""
2484
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2488,12 +2649,12 @@ msgstr ""
2488
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2489
  "GooglePlus"
2490
 
2491
- #: ../admin/social_login.php:694
2492
  #, fuzzy
2493
  msgid "Dribbble Client Secret"
2494
  msgstr "شارك الأخرين عبر جوجل"
2495
 
2496
- #: ../admin/social_login.php:703
2497
  #, fuzzy, php-format
2498
  msgid ""
2499
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2504,12 +2665,12 @@ msgstr ""
2504
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2505
  "GooglePlus"
2506
 
2507
- #: ../admin/social_login.php:715
2508
  #, fuzzy
2509
  msgid "Twitch Client ID"
2510
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2511
 
2512
- #: ../admin/social_login.php:724
2513
  #, fuzzy, php-format
2514
  msgid ""
2515
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2519,12 +2680,12 @@ msgstr ""
2519
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2520
  "GooglePlus"
2521
 
2522
- #: ../admin/social_login.php:735
2523
  #, fuzzy
2524
  msgid "Twitch Client Secret"
2525
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2526
 
2527
- #: ../admin/social_login.php:744
2528
  #, fuzzy, php-format
2529
  msgid ""
2530
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2534,12 +2695,12 @@ msgstr ""
2534
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2535
  "GooglePlus"
2536
 
2537
- #: ../admin/social_login.php:757
2538
  #, fuzzy
2539
  msgid "Foursquare Client ID"
2540
  msgstr "شارك الأخرين عبر جوجل"
2541
 
2542
- #: ../admin/social_login.php:766
2543
  #, fuzzy, php-format
2544
  msgid ""
2545
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2550,7 +2711,7 @@ msgstr ""
2550
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2551
  "GooglePlus"
2552
 
2553
- #: ../admin/social_login.php:768 ../admin/social_login.php:788
2554
  #, fuzzy
2555
  msgid ""
2556
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
@@ -2559,12 +2720,12 @@ msgstr ""
2559
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2560
  "الوصلة المذكورة"
2561
 
2562
- #: ../admin/social_login.php:777
2563
  #, fuzzy
2564
  msgid "Foursquare Client Secret"
2565
  msgstr "شارك الأخرين عبر جوجل"
2566
 
2567
- #: ../admin/social_login.php:786
2568
  #, fuzzy, php-format
2569
  msgid ""
2570
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2575,11 +2736,11 @@ msgstr ""
2575
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2576
  "GooglePlus"
2577
 
2578
- #: ../admin/social_login.php:797
2579
  msgid "Dropbox App Key"
2580
  msgstr ""
2581
 
2582
- #: ../admin/social_login.php:806
2583
  #, fuzzy, php-format
2584
  msgid ""
2585
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2589,12 +2750,12 @@ msgstr ""
2589
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2590
  "فيسبوك"
2591
 
2592
- #: ../admin/social_login.php:817
2593
  #, fuzzy
2594
  msgid "Dropbox App Secret"
2595
  msgstr "رقم التعريف الخالص بك | ID"
2596
 
2597
- #: ../admin/social_login.php:826
2598
  #, fuzzy, php-format
2599
  msgid ""
2600
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2604,11 +2765,11 @@ msgstr ""
2604
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2605
  "فيسبوك"
2606
 
2607
- #: ../admin/social_login.php:840
2608
  msgid "Disqus Public Key"
2609
  msgstr ""
2610
 
2611
- #: ../admin/social_login.php:849
2612
  #, fuzzy, php-format
2613
  msgid ""
2614
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2618,12 +2779,12 @@ msgstr ""
2618
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على \"مفتاح المستهلك "
2619
  "شينغ\""
2620
 
2621
- #: ../admin/social_login.php:860
2622
  #, fuzzy
2623
  msgid "Disqus Secret Key"
2624
  msgstr "هارد Shortname"
2625
 
2626
- #: ../admin/social_login.php:869
2627
  #, fuzzy, php-format
2628
  msgid ""
2629
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2633,12 +2794,12 @@ msgstr ""
2633
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على \"مفتاح المستهلك "
2634
  "شينغ\""
2635
 
2636
- #: ../admin/social_login.php:882
2637
  #, fuzzy
2638
  msgid "Reddit Client ID"
2639
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2640
 
2641
- #: ../admin/social_login.php:891
2642
  #, fuzzy, php-format
2643
  msgid ""
2644
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2648,7 +2809,7 @@ msgstr ""
2648
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2649
  "GooglePlus"
2650
 
2651
- #: ../admin/social_login.php:893 ../admin/social_login.php:913
2652
  #, fuzzy
2653
  msgid ""
2654
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
@@ -2657,12 +2818,12 @@ msgstr ""
2657
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2658
  "الوصلة المذكورة"
2659
 
2660
- #: ../admin/social_login.php:902
2661
  #, fuzzy
2662
  msgid "Reddit Client Secret"
2663
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2664
 
2665
- #: ../admin/social_login.php:911
2666
  #, fuzzy, php-format
2667
  msgid ""
2668
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2672,12 +2833,12 @@ msgstr ""
2672
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2673
  "GooglePlus"
2674
 
2675
- #: ../admin/social_login.php:925
2676
  #, fuzzy
2677
  msgid "Github Client ID"
2678
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2679
 
2680
- #: ../admin/social_login.php:934
2681
  #, fuzzy, php-format
2682
  msgid ""
2683
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2687,12 +2848,12 @@ msgstr ""
2687
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2688
  "GooglePlus"
2689
 
2690
- #: ../admin/social_login.php:945
2691
  #, fuzzy
2692
  msgid "Github Client Secret"
2693
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2694
 
2695
- #: ../admin/social_login.php:954
2696
  #, fuzzy, php-format
2697
  msgid ""
2698
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2702,12 +2863,12 @@ msgstr ""
2702
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2703
  "GooglePlus"
2704
 
2705
- #: ../admin/social_login.php:967
2706
  #, fuzzy
2707
  msgid "Kakao Client ID"
2708
  msgstr "شارك الأخرين عبر جوجل"
2709
 
2710
- #: ../admin/social_login.php:976
2711
  #, fuzzy, php-format
2712
  msgid ""
2713
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2717,12 +2878,12 @@ msgstr ""
2717
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2718
  "GooglePlus"
2719
 
2720
- #: ../admin/social_login.php:987
2721
  #, fuzzy
2722
  msgid "Kakao Client Secret"
2723
  msgstr "شارك الأخرين عبر جوجل"
2724
 
2725
- #: ../admin/social_login.php:996
2726
  #, fuzzy, php-format
2727
  msgid ""
2728
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2732,7 +2893,7 @@ msgstr ""
2732
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2733
  "GooglePlus"
2734
 
2735
- #: ../admin/social_login.php:1016
2736
  #, fuzzy
2737
  msgid "Social Login Options"
2738
  msgstr ""
@@ -2740,25 +2901,25 @@ msgstr ""
2740
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2741
  "فورا دون موافقة المشرف على النظام."
2742
 
2743
- #: ../admin/social_login.php:1031
2744
  #, fuzzy
2745
  msgid "Text to display above the Social Login interface"
2746
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
2747
 
2748
- #: ../admin/social_login.php:1039
2749
  msgid "Trigger social login in the same browser tab"
2750
  msgstr ""
2751
 
2752
- #: ../admin/social_login.php:1049
2753
  msgid "Trigger social login in the same browser tab instead of a popup window"
2754
  msgstr ""
2755
 
2756
- #: ../admin/social_login.php:1056
2757
  #, fuzzy
2758
  msgid "Center align icons"
2759
  msgstr "إعادة ترتيب الرموز"
2760
 
2761
- #: ../admin/social_login.php:1066
2762
  #, fuzzy
2763
  msgid "Center align social login icons"
2764
  msgstr ""
@@ -2766,12 +2927,12 @@ msgstr ""
2766
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2767
  "فورا دون موافقة المشرف على النظام."
2768
 
2769
- #: ../admin/social_login.php:1073
2770
  #, fuzzy
2771
  msgid "Enable at login page"
2772
  msgstr "صفحة"
2773
 
2774
- #: ../admin/social_login.php:1083
2775
  #, fuzzy
2776
  msgid ""
2777
  "Social Login interface will get enabled at the login page of your website"
@@ -2779,12 +2940,12 @@ msgstr ""
2779
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2780
  "التعليق"
2781
 
2782
- #: ../admin/social_login.php:1090
2783
  #, fuzzy
2784
  msgid "Enable at register page"
2785
  msgstr "التسجيل العام"
2786
 
2787
- #: ../admin/social_login.php:1100
2788
  #, fuzzy
2789
  msgid ""
2790
  "Social Login interface will get enabled at the registration page of your "
@@ -2793,21 +2954,21 @@ msgstr ""
2793
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في صفحة التسجيل لموقع الويب "
2794
  "الخاص بك"
2795
 
2796
- #: ../admin/social_login.php:1107
2797
  msgid "Enable at comment form"
2798
  msgstr "تمكين هذا الشكل من تعليق"
2799
 
2800
- #: ../admin/social_login.php:1117
2801
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2802
  msgstr ""
2803
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2804
  "التعليق"
2805
 
2806
- #: ../admin/social_login.php:1131
2807
  msgid "Enable before WooCommerce Customer Login Form"
2808
  msgstr "تمكين قبل WooCommerce نموذج تسجيل دخول العملاء"
2809
 
2810
- #: ../admin/social_login.php:1141
2811
  #, fuzzy
2812
  msgid ""
2813
  "Social Login Interface will get enabled before the customer login form at "
@@ -2816,12 +2977,12 @@ msgstr ""
2816
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2817
  "التعليق"
2818
 
2819
- #: ../admin/social_login.php:1148
2820
  #, fuzzy
2821
  msgid "Enable at WooCommerce Customer Login Form"
2822
  msgstr "تمكن بعد WooCommerce نموذج تسجيل دخول العملاء"
2823
 
2824
- #: ../admin/social_login.php:1158
2825
  #, fuzzy
2826
  msgid ""
2827
  "Integrate Social Login Interface with the customer login form at WooCommerce "
@@ -2830,12 +2991,12 @@ msgstr ""
2830
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2831
  "التعليق"
2832
 
2833
- #: ../admin/social_login.php:1165
2834
  #, fuzzy
2835
  msgid "Enable at WooCommerce Customer Register Form"
2836
  msgstr "تمكن بعد WooCommerce نموذج تسجيل دخول العملاء"
2837
 
2838
- #: ../admin/social_login.php:1175
2839
  #, fuzzy
2840
  msgid ""
2841
  "Integrate Social Login Interface with the customer register form at "
@@ -2844,26 +3005,26 @@ msgstr ""
2844
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2845
  "التعليق"
2846
 
2847
- #: ../admin/social_login.php:1182
2848
  #, fuzzy
2849
  msgid "Enable at WooCommerce checkout page"
2850
  msgstr "التسجيل العام"
2851
 
2852
- #: ../admin/social_login.php:1192
2853
  #, fuzzy
2854
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2855
  msgstr ""
2856
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2857
  "التعليق"
2858
 
2859
- #: ../admin/social_login.php:1202
2860
  #, fuzzy
2861
  msgid "Auto-approve comments made by Social Login users"
2862
  msgstr ""
2863
  "السيارات--الموافقة على التعليقات التي أدلى بها المستخدمين \"تسجيل الدخول "
2864
  "الاجتماعي\""
2865
 
2866
- #: ../admin/social_login.php:1212
2867
  msgid ""
2868
  "If this option is enabled, and WordPress comment is made by Social Login "
2869
  "user, comment will get approved immediately without keeping in moderation."
@@ -2872,17 +3033,17 @@ msgstr ""
2872
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2873
  "فورا دون موافقة المشرف على النظام."
2874
 
2875
- #: ../admin/social_login.php:1213
2876
  #, fuzzy
2877
  msgid "Note: This is not related to Facebook comments"
2878
  msgstr "ملاحظة: هذا لا تتعلق بتعليقات ألفيس بوك"
2879
 
2880
- #: ../admin/social_login.php:1222
2881
  #, fuzzy
2882
  msgid "Enable social avatar"
2883
  msgstr "خدمة الشبكة الاجتماعية"
2884
 
2885
- #: ../admin/social_login.php:1232
2886
  #, fuzzy
2887
  msgid ""
2888
  "Social profile pictures of the logged in user will be displayed as profile "
@@ -2891,39 +3052,39 @@ msgstr ""
2891
  "سيتم عرض الصور الشخصية الاجتماعية لمستخدم تم تسجيل دخوله كالصورة الرمزية "
2892
  "الشخصية"
2893
 
2894
- #: ../admin/social_login.php:1241
2895
  #, fuzzy
2896
  msgid "Avatar quality"
2897
  msgstr "نوعية الصورة الرمزية"
2898
 
2899
- #: ../admin/social_login.php:1244
2900
  #, fuzzy
2901
  msgid "Average"
2902
  msgstr "المعدل"
2903
 
2904
- #: ../admin/social_login.php:1245
2905
  msgid "Best"
2906
  msgstr "أفضل"
2907
 
2908
- #: ../admin/social_login.php:1252
2909
  #, fuzzy
2910
  msgid "Choose avatar quality"
2911
  msgstr "إختيار ملف"
2912
 
2913
- #: ../admin/social_login.php:1260
2914
  #, fuzzy
2915
  msgid ""
2916
  "Show option for users to update social avatar at BuddyPress profile page"
2917
  msgstr ""
2918
  "تمكين هذا الخيار لإظهار حساب الاجتماعية ربط واجهة الصفحة الشخصية BuddyPress"
2919
 
2920
- #: ../admin/social_login.php:1270
2921
  msgid ""
2922
  "If enabled, users would be able to update their social avatar from \"Profile "
2923
  "photo\" section in BuddyPress profile at front-end"
2924
  msgstr ""
2925
 
2926
- #: ../admin/social_login.php:1290
2927
  #, fuzzy
2928
  msgid ""
2929
  "If enabled and Social ID provider does not provide user's email address on "
@@ -2934,11 +3095,11 @@ msgstr ""
2934
  "تسجيل الدخول، سيتم مطالبة المستخدم بتوفير عنوانه الإلكتروني. وإلا، سيتم "
2935
  "إنشاء بريد إلكتروني وهمية"
2936
 
2937
- #: ../admin/social_login.php:1298
2938
  msgid "Send post-registration email to user to set account password"
2939
  msgstr ""
2940
 
2941
- #: ../admin/social_login.php:1308
2942
  #, fuzzy
2943
  msgid ""
2944
  "If enabled, an email will be sent to user after registration through Social "
@@ -2950,12 +3111,12 @@ msgstr ""
2950
  "الدخول (اسم المستخدم-كلمة المرور لتكون قادراً على تسجيل الدخول عن طريق نموذج "
2951
  "تسجيل الدخول التقليدية)"
2952
 
2953
- #: ../admin/social_login.php:1315
2954
  #, fuzzy
2955
  msgid "Send new user registration notification email to admin"
2956
  msgstr "تسجيل المستخدم تعطيل عن طريق تسجيل الدخول الاجتماعي"
2957
 
2958
- #: ../admin/social_login.php:1325
2959
  #, fuzzy
2960
  msgid ""
2961
  "If enabled, an email will be sent to admin after new user registers through "
@@ -2966,47 +3127,47 @@ msgstr ""
2966
  "الدخول (اسم المستخدم-كلمة المرور لتكون قادراً على تسجيل الدخول عن طريق نموذج "
2967
  "تسجيل الدخول التقليدية)"
2968
 
2969
- #: ../admin/social_login.php:1332
2970
  #, fuzzy
2971
  msgid "Login redirection"
2972
  msgstr "تسجيل الدخول"
2973
 
2974
- #: ../admin/social_login.php:1336
2975
  #, fuzzy
2976
  msgid "Same page where user logged in"
2977
  msgstr "حيث يتم تسجيل المستخدم في الصفحة نفسها"
2978
 
2979
- #: ../admin/social_login.php:1340 ../admin/social_login.php:1369
2980
  #, fuzzy
2981
  msgid "Account dashboard"
2982
  msgstr " لوحتك الخاصة بالتحكم"
2983
 
2984
- #: ../admin/social_login.php:1343 ../admin/social_login.php:1372
2985
  #, fuzzy
2986
  msgid "BuddyPress profile page"
2987
  msgstr "تحرير ملفي الشخصي"
2988
 
2989
- #: ../admin/social_login.php:1346 ../admin/social_login.php:1375
2990
  #, fuzzy
2991
  msgid "Custom Url"
2992
  msgstr "رابط (URL) مخصّص"
2993
 
2994
- #: ../admin/social_login.php:1354
2995
  #, fuzzy
2996
  msgid "User will be redirected to the selected page after Social Login"
2997
  msgstr "ستتم إعادة توجيه المستخدم إلى الصفحة المحددة بعد \"الدخول الاجتماعي\""
2998
 
2999
- #: ../admin/social_login.php:1361
3000
  #, fuzzy
3001
  msgid "Registration redirection"
3002
  msgstr "نموذج التسجيل"
3003
 
3004
- #: ../admin/social_login.php:1365
3005
  #, fuzzy
3006
  msgid "Same page from where user registered"
3007
  msgstr "الصفحة نفسها من حيث تسجيل المستخدم"
3008
 
3009
- #: ../admin/social_login.php:1383
3010
  #, fuzzy
3011
  msgid ""
3012
  "User will be redirected to the selected page after registration (first "
@@ -3015,17 +3176,17 @@ msgstr ""
3015
  "ستتم إعادة توجيه المستخدم إلى الصفحة المحددة بعد التسجيل (تسجيل الدخول "
3016
  "الاجتماعي الأول) من خلال \"تسجيل الدخول الاجتماعي\""
3017
 
3018
- #: ../admin/social_login.php:1392
3019
  #, fuzzy
3020
  msgid "Social Account Linking Options"
3021
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
3022
 
3023
- #: ../admin/social_login.php:1407
3024
  #, fuzzy
3025
  msgid "Text to display above the Social Account Linking interface"
3026
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
3027
 
3028
- #: ../admin/social_login.php:1414
3029
  #, fuzzy
3030
  msgid ""
3031
  "Link social account to already existing account, if email address matches"
@@ -3033,7 +3194,7 @@ msgstr ""
3033
  "الرجاء القيام بربط الحساب الإجتماعي الخاص بك للتمكن من تسجيل الدخول العام "
3034
  "الى حسابك في هذا الموقع"
3035
 
3036
- #: ../admin/social_login.php:1424
3037
  msgid ""
3038
  "If email address of the user's Social Account matches with an already "
3039
  "existing account at your website, that social account will be linked to "
@@ -3041,12 +3202,12 @@ msgid ""
3041
  "Linking interface at their profile page."
3042
  msgstr ""
3043
 
3044
- #: ../admin/social_login.php:1432
3045
  #, fuzzy
3046
  msgid "Enable social account linking at BuddyPress profile page"
3047
  msgstr "تمكين حساب الاجتماعية ربط الصفحة الشخصية BuddyPress"
3048
 
3049
- #: ../admin/social_login.php:1442
3050
  #, fuzzy
3051
  msgid ""
3052
  "Enable this option to show social account linking interface at BuddyPress "
@@ -3054,17 +3215,17 @@ msgid ""
3054
  msgstr ""
3055
  "تمكين هذا الخيار لإظهار حساب الاجتماعية ربط واجهة الصفحة الشخصية BuddyPress"
3056
 
3057
- #: ../admin/social_login.php:1453
3058
  #, fuzzy
3059
  msgid "Email popup options"
3060
  msgstr "الخيارات"
3061
 
3062
- #: ../admin/social_login.php:1458
3063
  #, fuzzy
3064
  msgid "Text on 'Email required' popup"
3065
  msgstr "البريد الإلكتروني (Email) - الإدخال إجباري"
3066
 
3067
- #: ../admin/social_login.php:1468
3068
  #, fuzzy
3069
  msgid ""
3070
  "This text will be displayed on email required popup. Leave empty if not "
@@ -3073,12 +3234,12 @@ msgstr ""
3073
  "سيتم عرض هذا النص على البريد الإلكتروني المطلوب المنبثقة. ترك فارغاً إذا كان "
3074
  "غير مطلوب."
3075
 
3076
- #: ../admin/social_login.php:1476
3077
  #, fuzzy
3078
  msgid "Error message for 'Email required' popup"
3079
  msgstr "رسالة الإعلام بالخطأ لانبثاق 'البريد الإلكتروني مطلوب'"
3080
 
3081
- #: ../admin/social_login.php:1486
3082
  #, fuzzy
3083
  msgid ""
3084
  "This message will be displayed to user if it provides invalid or already "
@@ -3087,12 +3248,12 @@ msgstr ""
3087
  "سيتم عرض هذه الرسالة إلى المستخدم إذا كان يوفر البريد الإلكتروني غير صالح أو "
3088
  "المسجلة مسبقاً"
3089
 
3090
- #: ../admin/social_login.php:1494
3091
  #, fuzzy
3092
  msgid "Email popup height"
3093
  msgstr "ارتفاع"
3094
 
3095
- #: ../admin/social_login.php:1504
3096
  #, fuzzy
3097
  msgid ""
3098
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
@@ -3102,12 +3263,12 @@ msgstr ""
3102
  "إذا كنت ترى شريط التمرير العمودي في منبثق \"البريد الإلكتروني المطلوبة\"، "
3103
  "يمكنك زيادة ارتفاع المنبثقة عن طريق تحديد هذا الخيار. ترك فارغاً للافتراضي."
3104
 
3105
- #: ../admin/social_login.php:1511
3106
  #, fuzzy
3107
  msgid "Enable email verification"
3108
  msgstr "تمكين ايقونات المشاركة عبر البريد الإلكتروني "
3109
 
3110
- #: ../admin/social_login.php:1521
3111
  #, fuzzy
3112
  msgid ""
3113
  "If enabled, email provided by the user will be verified by sending a "
@@ -3118,22 +3279,22 @@ msgstr ""
3118
  "وصلة تأكيد لهذا البريد الإلكتروني. أن لا يكون المستخدم قادراً على تسجيل "
3119
  "الدخول دون التحقق من البريد الإلكتروني صفحته/صفحتها"
3120
 
3121
- #: ../admin/social_login.php:1541
3122
  #, fuzzy
3123
  msgid "Enable GDPR opt-in"
3124
  msgstr "إتاحة التعليق من هارد"
3125
 
3126
- #: ../admin/social_login.php:1551
3127
  msgid ""
3128
  "Enable it to show GDPR opt-in for social login and social account linking"
3129
  msgstr ""
3130
 
3131
- #: ../admin/social_login.php:1559
3132
  #, fuzzy
3133
  msgid "Placement of GDPR opt-in"
3134
  msgstr "إتاحة التعليق من هارد"
3135
 
3136
- #: ../admin/social_login.php:1563
3137
  #, fuzzy
3138
  msgid "Above Social Login icons"
3139
  msgstr ""
@@ -3141,7 +3302,7 @@ msgstr ""
3141
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
3142
  "فورا دون موافقة المشرف على النظام."
3143
 
3144
- #: ../admin/social_login.php:1565
3145
  #, fuzzy
3146
  msgid "Below Social Login icons"
3147
  msgstr ""
@@ -3149,84 +3310,84 @@ msgstr ""
3149
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
3150
  "فورا دون موافقة المشرف على النظام."
3151
 
3152
- #: ../admin/social_login.php:1571
3153
  #, fuzzy
3154
  msgid "Placement of GDPR opt-in above or below the social login icons"
3155
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
3156
 
3157
- #: ../admin/social_login.php:1578
3158
  msgid "Opt-in text"
3159
  msgstr ""
3160
 
3161
- #: ../admin/social_login.php:1588
3162
  #, fuzzy
3163
  msgid "Text for the GDPR opt-in"
3164
  msgstr "إتاحة التعليق من هارد"
3165
 
3166
- #: ../admin/social_login.php:1595
3167
  msgid "Text to link to Terms-Conditions page"
3168
  msgstr ""
3169
 
3170
- #: ../admin/social_login.php:1605
3171
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
3172
  msgstr ""
3173
 
3174
- #: ../admin/social_login.php:1612
3175
  msgid "Terms-Conditions Url"
3176
  msgstr ""
3177
 
3178
- #: ../admin/social_login.php:1622
3179
  #, fuzzy
3180
  msgid "Url of the terms-conditions page of your website"
3181
  msgstr "URL لعملاء الموقع (اختياري)"
3182
 
3183
- #: ../admin/social_login.php:1629
3184
  msgid "Text to link to Privacy Policy page"
3185
  msgstr ""
3186
 
3187
- #: ../admin/social_login.php:1639
3188
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
3189
  msgstr ""
3190
 
3191
- #: ../admin/social_login.php:1646
3192
  msgid "Privacy Policy Url"
3193
  msgstr ""
3194
 
3195
- #: ../admin/social_login.php:1656
3196
  #, fuzzy
3197
  msgid "Url of the privacy policy page of your website"
3198
  msgstr "URL لعملاء الموقع (اختياري)"
3199
 
3200
- #: ../admin/social_login.php:1707 ../inc/widget.php:260 ../inc/widget.php:438
3201
  #: ../inc/widget.php:602 ../inc/widget.php:750
3202
  #, fuzzy
3203
  msgid "Select"
3204
  msgstr "أختر ..."
3205
 
3206
- #: ../admin/social_login.php:1738
3207
  #, fuzzy
3208
  msgid "Social Login Shortcode & Widget"
3209
  msgstr "استخدم كود مختصر | Include the shortcode"
3210
 
3211
- #: ../admin/social_login.php:1739
3212
  msgid "Social Linking Shortcode"
3213
  msgstr "الربط الاجتماعي رمز قصير"
3214
 
3215
- #: ../admin/social_login.php:1754
3216
  msgid "Why is social login not working?"
3217
  msgstr ""
3218
 
3219
- #: ../admin/social_login.php:1755
3220
  msgid ""
3221
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3222
  "belong to the same app"
3223
  msgstr ""
3224
 
3225
- #: ../admin/social_login.php:1757
3226
  msgid "Social Login not working with Varnish enabled"
3227
  msgstr ""
3228
 
3229
- #: ../admin/social_login.php:1758
3230
  msgid ""
3231
  "Why the user is not appearing logged in even after Social Login until the "
3232
  "webpage is refreshed manually?"
@@ -3460,6 +3621,10 @@ msgstr ""
3460
  msgid "Archives"
3461
  msgstr "الأرشيف"
3462
 
 
 
 
 
3463
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3464
  #, fuzzy
3465
  msgid "Invalid request"
@@ -3470,29 +3635,33 @@ msgstr "طلب غير صحيح"
3470
  msgid "Providers not selected"
3471
  msgstr "محدد | selected"
3472
 
3473
- #: ../inc/social_login.php:968
 
 
 
 
3474
  #, fuzzy
3475
  msgid "Email"
3476
  msgstr "البريد الإلكتروني"
3477
 
3478
- #: ../inc/social_login.php:969
3479
  msgid "Confirm email"
3480
  msgstr ""
3481
 
3482
- #: ../inc/social_login.php:971
3483
  msgid "Save"
3484
  msgstr ""
3485
 
3486
- #: ../inc/social_login.php:972
3487
  msgid "Cancel"
3488
  msgstr ""
3489
 
3490
- #: ../inc/social_login.php:1046
3491
  #, fuzzy
3492
  msgid "Email Verification"
3493
  msgstr "تمكين ايقونات المشاركة عبر البريد الإلكتروني "
3494
 
3495
- #: ../inc/social_login.php:1048
3496
  msgid ""
3497
  "Please click on the following link or paste it in browser to verify your "
3498
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-06 12:21+0530\n"
6
+ "PO-Revision-Date: 2021-04-06 12:21+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../super_socializer.php:1634
19
  #, fuzzy
20
  msgid ""
21
  "cURL is not enabled at your website server. Please contact your website "
24
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
25
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
26
 
27
+ #: ../super_socializer.php:1662
28
  #, fuzzy, php-format
29
  msgid ""
30
  "Enter exactly the following url in <strong>Website</strong> option in your "
33
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
34
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
35
 
36
+ #: ../super_socializer.php:1665
37
  #, fuzzy, php-format
38
  msgid ""
39
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
42
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
43
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
44
 
45
+ #: ../super_socializer.php:1668
46
  msgid ""
47
  "Make sure cURL is enabled at your website server. You may need to contact "
48
  "the server administrator of your website to verify this"
50
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
51
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
52
 
53
+ #: ../super_socializer.php:1829
54
+ msgid "Search"
55
+ msgstr ""
56
+
57
+ #: ../super_socializer.php:1851 ../helper.php:995
58
  msgid "Please verify your email address to login."
59
  msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك للدخول."
60
 
61
+ #: ../super_socializer.php:1851
62
  msgid "Your email has been verified. Now you can login to your account"
63
  msgstr "تم التحقق من بريدك الإلكتروني. الآن يمكنك تسجيل الدخول إلى حسابك"
64
 
65
+ #: ../super_socializer.php:1855
66
  msgid "Notification"
67
  msgstr "تنبيهات"
68
 
69
+ #: ../super_socializer.php:1873 ../admin/social_login.php:1443
70
  msgid "Email required"
71
  msgstr "البريد الإلكتروني - إدخال القيمة إجباري"
72
 
73
+ #: ../super_socializer.php:1876
74
  msgid "Please check your email inbox to complete the registration."
75
  msgstr "يرجى التحقق من بريدك الالكتروني لإكمال التسجيل."
76
 
77
+ #: ../super_socializer.php:1945
78
  msgid "Leave a reply"
79
  msgstr "اترك رد"
80
 
81
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
82
  msgid "Shares"
83
  msgstr ""
84
 
85
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
86
  msgid "Share"
87
  msgstr ""
88
 
89
+ #: ../super_socializer.php:1961
90
  #, fuzzy
91
  msgid "Link copied."
92
  msgstr "شارك الأخرين عبر لنكيدان"
93
 
94
+ #: ../super_socializer.php:2206
95
  #, fuzzy
96
  msgid "Super Socializer - General Options"
97
  msgstr "آخر تسجيل دخول | Last Login"
98
 
99
+ #: ../super_socializer.php:2206 ../admin/general_options.php:15
100
  #: ../admin/social_commenting.php:47
101
  #, fuzzy
102
  msgid "General Options"
103
  msgstr "المشاركات الأفقي"
104
 
105
+ #: ../super_socializer.php:2274 ../helper.php:924
106
  #, fuzzy
107
  msgid "Social Avatar"
108
  msgstr "صغير الرمزية رابط"
109
 
110
+ #: ../super_socializer.php:2277
111
  msgid "Small Avatar Url"
112
  msgstr "صغير الرمزية رابط"
113
 
114
+ #: ../super_socializer.php:2281
115
  #, fuzzy
116
  msgid "Large Avatar Url"
117
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
118
 
119
+ #: ../super_socializer.php:2285 ../helper.php:927
120
  msgid ""
121
  "Do not fetch and update social avatar from my profile, next time I Social "
122
  "Login"
123
  msgstr ""
124
 
125
+ #: ../super_socializer.php:2289 ../helper.php:928
126
  msgid "Update social avatar, next time I Social Login"
127
  msgstr ""
128
 
129
+ #: ../super_socializer.php:2366
130
  msgid "Login with your Social ID"
131
  msgstr ""
132
 
133
+ #: ../super_socializer.php:2367
134
  msgid "Email you entered is already registered or invalid"
135
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
136
 
137
+ #: ../super_socializer.php:2374
138
  msgid "Please enter a valid email address. You might be required to verify it"
139
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
140
 
141
+ #: ../super_socializer.php:2378 ../super_socializer.php:3123
142
  msgid "Link your social account to login to your account at this website"
143
  msgstr ""
144
  "الرجاء القيام بربط الحساب الإجتماعي الخاص بك للتمكن من تسجيل الدخول العام "
145
  "الى حسابك في هذا الموقع"
146
 
147
+ #: ../super_socializer.php:2633
148
  msgid "Thanks for installing Super Socializer plugin"
149
  msgstr ""
150
 
151
+ #: ../super_socializer.php:2635
152
  msgid "Configure the Plugin"
153
  msgstr ""
154
 
155
+ #: ../super_socializer.php:2646
156
  msgid ""
157
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
158
  "current version of Super Socializer"
159
  msgstr ""
160
 
161
+ #: ../super_socializer.php:2655
162
  msgid ""
163
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
164
  "version of Super Socializer"
165
  msgstr ""
166
 
167
+ #: ../super_socializer.php:2664
168
  msgid ""
169
+ "Update \"Social Login Buttons\" add-on to version 1.2.7 or above for "
170
  "compatibility with current version of Super Socializer"
171
  msgstr ""
172
 
173
+ #: ../super_socializer.php:2673
174
  msgid ""
175
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
176
  "with current version of Super Socializer"
177
  msgstr ""
178
 
179
+ #: ../super_socializer.php:2682
180
  msgid ""
181
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
182
  "with current version of Super Socializer"
183
  msgstr ""
184
 
185
+ #: ../super_socializer.php:2693
186
  #, php-format
187
  msgid ""
188
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
189
  msgstr ""
190
 
191
+ #: ../super_socializer.php:2702
192
  #, php-format
193
  msgid ""
194
  "To continue using Instagram login create a new Instagram App as described <a "
196
  "Instagram App Secret <a href=\"%s\">here</a>"
197
  msgstr ""
198
 
199
+ #: ../super_socializer.php:2711 ../super_socializer.php:2720
200
  #, php-format
201
  msgid ""
202
  "To continue using bitly url shortener, login to your bit.ly account and "
205
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
206
  msgstr ""
207
 
208
+ #: ../super_socializer.php:2736
209
  #, php-format
210
  msgid ""
211
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
212
  msgstr ""
213
 
214
+ #: ../super_socializer.php:2760
215
  #, php-format
216
  msgid ""
217
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
219
  "target=\"_blank\">here</a>"
220
  msgstr ""
221
 
222
+ #: ../super_socializer.php:2760 ../super_socializer.php:2785
223
+ #: ../super_socializer.php:2810 ../super_socializer.php:2835
224
+ #: ../super_socializer.php:2868 ../super_socializer.php:2896
225
+ #: ../super_socializer.php:2923
226
  msgid "Okay"
227
  msgstr ""
228
 
229
+ #: ../super_socializer.php:2785
230
  #, php-format
231
  msgid ""
232
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
234
  "\">here</a>"
235
  msgstr ""
236
 
237
+ #: ../super_socializer.php:2810
238
  #, php-format
239
  msgid ""
240
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
242
  "target=\"_blank\">here</a>"
243
  msgstr ""
244
 
245
+ #: ../super_socializer.php:2835
246
  #, php-format
247
  msgid ""
248
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
250
  "target=\"_blank\">here</a>"
251
  msgstr ""
252
 
253
+ #: ../super_socializer.php:2846
254
  #, php-format
255
  msgid ""
256
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
257
  msgstr ""
258
 
259
+ #: ../super_socializer.php:2868
260
  #, php-format
261
  msgid ""
262
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
264
  "\"%s\" target=\"_blank\">here</a>"
265
  msgstr ""
266
 
267
+ #: ../super_socializer.php:2896
268
  #, php-format
269
  msgid ""
270
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
273
  "your website %s with them. No need to copy-paste any code from their website."
274
  msgstr ""
275
 
276
+ #: ../super_socializer.php:2923
277
  #, php-format
278
  msgid ""
279
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
281
  "\"%s\" target=\"_blank\">here</a>"
282
  msgstr ""
283
 
284
+ #: ../super_socializer.php:2948
285
  #, php-format
286
  msgid ""
287
  "If you cannot get Linkedin login to work after updating the plugin, replace "
289
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
290
  msgstr ""
291
 
292
+ #: ../super_socializer.php:2948 ../super_socializer.php:2975
293
  msgid "Dismiss"
294
  msgstr ""
295
 
296
+ #: ../super_socializer.php:2974
297
  #, php-format
298
  msgid ""
299
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
302
  "that, clear share counts cache from \"Miscellaneous\" section"
303
  msgstr ""
304
 
305
+ #: ../super_socializer.php:3199
306
  msgid ""
307
  "Your browser is blocking some features of this website. Please follow the "
308
  "instructions at {support_url} to unblock these."
313
  msgid "Settings saved"
314
  msgstr "الإعدادات"
315
 
316
+ #: ../helper.php:194
317
  #, fuzzy
318
  msgid "Click to toggle help"
319
  msgstr "إضغط لإخفاء المساعدة "
320
 
321
+ #: ../helper.php:291
322
  #, fuzzy
323
  msgid "Add-Ons"
324
  msgstr "إضافات"
325
 
326
+ #: ../helper.php:292
327
  msgid "Support Documentation"
328
  msgstr ""
329
 
330
+ #: ../helper.php:293
331
  msgid "Settings"
332
  msgstr "الإعدادات"
333
 
334
+ #: ../helper.php:576
335
  msgid "Account linked successfully"
336
  msgstr "تم ربط حسابك بنجاح"
337
 
338
+ #: ../helper.php:580
339
  msgid "Account already exists or linked"
340
  msgstr "حساب موجود بالفعل أو مرتبطة مسبقاً"
341
 
342
+ #: ../helper.php:616 ../helper.php:618
343
  #, fuzzy
344
  msgid "Login with"
345
  msgstr "الخيارات"
346
 
347
+ #: ../helper.php:653 ../helper.php:659
348
  msgid "Currently"
349
  msgstr "في الوقت الحاضر"
350
 
351
+ #: ../helper.php:653 ../helper.php:659
352
  msgid "Connected with"
353
  msgstr ""
354
 
355
+ #: ../helper.php:653 ../helper.php:659
356
  msgid "Remove"
357
  msgstr "إزالة"
358
 
359
+ #: ../helper.php:730
360
  #, fuzzy
361
  msgid "Social Account Linking"
362
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
363
 
364
+ #: ../helper.php:780
365
  #, fuzzy
366
  msgid "Disable Standard Social Sharing on this "
367
  msgstr "تعطيل ظهور مشاركة الاجتماعي عمودي على هذا"
368
 
369
+ #: ../helper.php:785
370
  #, fuzzy
371
  msgid "Disable Floating Social Sharing on this "
372
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
373
 
374
+ #: ../helper.php:790
375
  #, fuzzy
376
  msgid "Disable Standard like buttons on this "
377
  msgstr "تعطيل زر الإعجاب الموجود عمودياً على هذا"
378
 
379
+ #: ../helper.php:795
380
  #, fuzzy
381
  msgid "Disable Floating like buttons on this "
382
  msgstr "تعطيل زر الإعجاب الموجود أفقياً على هذا"
383
 
384
+ #: ../helper.php:800
385
  msgid "Disable Social Commenting on this "
386
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
387
 
388
+ #: ../helper.php:809
389
  #, fuzzy
390
  msgid "Standard Sharing Interface"
391
  msgstr "المشاركات الأفقي"
392
 
393
+ #: ../helper.php:815 ../helper.php:834
394
  msgid "Starting share count for "
395
  msgstr "بدء العد حصة ل"
396
 
397
+ #: ../helper.php:828
398
  #, fuzzy
399
  msgid "Floating Sharing Interface"
400
  msgstr "المشاركات الأفقي"
401
 
402
+ #: ../helper.php:931
403
  #, fuzzy
404
  msgid "Small Avatar"
405
  msgstr "صغير الرمزية رابط"
406
 
407
+ #: ../helper.php:935
408
  #, fuzzy
409
  msgid "Large Avatar"
410
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
411
 
412
+ #: ../helper.php:939 ../admin/general_options.php:89
413
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
414
+ #: ../admin/social_login.php:1933 ../admin/like_buttons.php:780
415
  #, fuzzy
416
  msgid "Save Changes"
417
  msgstr "حفظ"
418
 
419
+ #: ../helper.php:1032
420
  msgid "Click to delete social profile data"
421
  msgstr ""
422
 
423
+ #: ../helper.php:1061
424
  #, fuzzy
425
  msgid "Deleting"
426
  msgstr "الإعدادات"
427
 
428
+ #: ../helper.php:1071
429
  msgid "Deleted"
430
  msgstr ""
431
 
432
+ #: ../helper.php:1073
433
  msgid "Something bad happened"
434
  msgstr ""
435
 
436
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
437
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
438
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
439
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1937
440
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
441
  #, fuzzy, php-format
442
  msgid ""
495
  msgstr ""
496
 
497
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
498
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1943
499
  #: ../admin/like_buttons.php:790
500
  #, fuzzy
501
  msgid "Instagram Shoutout"
502
  msgstr "إنستاجرام"
503
 
504
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
505
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1945
506
  #: ../admin/like_buttons.php:792
507
  msgid ""
508
  "If you can send (to hello@heateor.com) how this plugin is helping your "
657
 
658
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
659
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
660
+ #: ../admin/social_login.php:1899 ../admin/like_buttons.php:50
661
  #: ../admin/like_buttons.php:751
662
  #, fuzzy
663
  msgid "Shortcode & Widget"
670
 
671
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
672
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
673
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1913
674
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
675
  #, fuzzy
676
  msgid "FAQ"
930
  msgid "Url to share"
931
  msgstr " شارك الآخرين بهذة الفقرة"
932
 
933
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:1184
934
+ #: ../admin/social_login.php:1560 ../admin/like_buttons.php:105
935
  #: ../inc/widget.php:949
936
  #, fuzzy
937
  msgid "Title"
1029
  msgstr ""
1030
 
1031
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
1032
+ #: ../admin/social_login.php:1501 ../admin/social_login.php:1530
1033
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
1034
  #, fuzzy
1035
  msgid "Homepage"
1310
  msgid "Required only to track Facebook share count"
1311
  msgstr ""
1312
 
1313
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:222
1314
  #, fuzzy
1315
  msgid "Facebook App ID"
1316
  msgstr "رقم التعريف الخالص بك | ID"
1325
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
1326
  "فيسبوك"
1327
 
1328
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:243
1329
  #, fuzzy
1330
  msgid "Facebook App Secret"
1331
  msgstr "رقم التعريف الخالص بك | ID"
1519
  "إشكالية (حيث تقاسم بوك لا يعمل بشكل صحيح) من موقع الويب الخاص بك في حقل النص:"
1520
 
1521
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1522
+ #: ../admin/social_login.php:1915
1523
  msgid ""
1524
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1525
  "an online website for the plugin to function properly."
1574
  msgstr ""
1575
 
1576
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1577
+ #: ../admin/social_login.php:1922
1578
  msgid "Why is my browser blocking some features of the plugin?"
1579
  msgstr ""
1580
 
1925
  msgid "Advanced Configuration"
1926
  msgstr "إنشاء ملف الإعدادات"
1927
 
1928
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1699
1929
  msgid "GDPR"
1930
  msgstr ""
1931
 
1932
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1850
1933
  msgid "XProfile Integration"
1934
  msgstr ""
1935
 
1963
 
1964
  #: ../admin/social_login.php:98
1965
  #, fuzzy
1966
+ msgid "Disable Social Login for admin accounts"
1967
+ msgstr ""
1968
+ "إذا تم تمكين هذا الخيار،التعليق القادمة من مستخدم الوردبريس الذي تم تسجيل "
1969
+ "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
1970
+ "فورا دون موافقة المشرف على النظام."
1971
+
1972
+ #: ../admin/social_login.php:108
1973
+ #, fuzzy
1974
+ msgid ""
1975
+ "After enabling this option, administrator users will not be able to login "
1976
+ "through social login. Other users will be able to login via social login."
1977
+ msgstr ""
1978
+ "بعد تمكين هذا الخيار، وسيكون للمستخدمين الجديد لن يكون قادرا على تسجيل "
1979
+ "الدخول من خلال الدخول الاجتماعي. لن يؤدي إلا إلى المستخدمين الحاليين تكون "
1980
+ "قادرة على الدخول الاجتماعي."
1981
+
1982
+ #: ../admin/social_login.php:115
1983
+ #, fuzzy
1984
  msgid "Select Social Networks"
1985
  msgstr "حددت كشبكة الإجتماعية اللأساسية"
1986
 
1987
+ #: ../admin/social_login.php:120
1988
  msgid "Facebook"
1989
  msgstr "الفيسبوك"
1990
 
1991
+ #: ../admin/social_login.php:124
1992
  #, fuzzy
1993
  msgid "Twitter"
1994
  msgstr "شارك الأخرين عبر تويتر"
1995
 
1996
+ #: ../admin/social_login.php:128
1997
  #, fuzzy
1998
  msgid "LinkedIn"
1999
  msgstr "شارك الأخرين عبر لنكيدان"
2000
 
2001
+ #: ../admin/social_login.php:132
2002
  #, fuzzy
2003
  msgid "Google"
2004
  msgstr "الصفحة لمؤلف البرنامج المساعد على جوجل "
2005
 
2006
+ #: ../admin/social_login.php:136
2007
  #, fuzzy
2008
  msgid "Vkontakte"
2009
  msgstr "انشر عبر VKontakte"
2010
 
2011
+ #: ../admin/social_login.php:140
2012
  #, fuzzy
2013
  msgid "Instagram"
2014
  msgstr "إنستاجرام"
2015
 
2016
+ #: ../admin/social_login.php:144
2017
  msgid "Steam"
2018
  msgstr ""
2019
 
2020
+ #: ../admin/social_login.php:148
2021
  msgid "Line"
2022
  msgstr ""
2023
 
2024
+ #: ../admin/social_login.php:152
2025
  msgid "Wordpress"
2026
  msgstr ""
2027
 
2028
+ #: ../admin/social_login.php:156
2029
  msgid "Windows Live"
2030
  msgstr ""
2031
 
2032
+ #: ../admin/social_login.php:160
2033
  #, fuzzy
2034
  msgid "Yahoo"
2035
  msgstr "ياهو ماسنجر"
2036
 
2037
+ #: ../admin/social_login.php:164
2038
+ msgid "Discord"
2039
+ msgstr ""
2040
+
2041
+ #: ../admin/social_login.php:168
2042
+ msgid "Amazon"
2043
+ msgstr ""
2044
+
2045
+ #: ../admin/social_login.php:172
2046
+ msgid "Stackoverflow"
2047
+ msgstr ""
2048
+
2049
+ #: ../admin/social_login.php:176
2050
  msgid "Spotify"
2051
  msgstr ""
2052
 
2053
+ #: ../admin/social_login.php:179
2054
  msgid "Dribbble"
2055
  msgstr ""
2056
 
2057
+ #: ../admin/social_login.php:183
2058
  #, fuzzy
2059
  msgid "Twitch"
2060
  msgstr "شارك الأخرين عبر تويتر"
2061
 
2062
+ #: ../admin/social_login.php:187
2063
  #, fuzzy
2064
  msgid "Foursquare"
2065
  msgstr "مربع"
2066
 
2067
+ #: ../admin/social_login.php:191
2068
  msgid "Dropbox"
2069
  msgstr ""
2070
 
2071
+ #: ../admin/social_login.php:195
2072
  msgid "Disqus"
2073
  msgstr ""
2074
 
2075
+ #: ../admin/social_login.php:199
2076
  #, fuzzy
2077
  msgid "Reddit"
2078
  msgstr "ريديت"
2079
 
2080
+ #: ../admin/social_login.php:203
2081
  msgid "Github"
2082
  msgstr ""
2083
 
2084
+ #: ../admin/social_login.php:207
2085
  msgid "Kakao"
2086
  msgstr ""
2087
 
2088
+ #: ../admin/social_login.php:215
2089
  #, fuzzy
2090
  msgid "Select Social ID provider to enable in Social Login"
2091
  msgstr "حدد موفر \"معرف الاجتماعية\" لتمكين \"تسجيل الدخول الاجتماعي\""
2092
 
2093
+ #: ../admin/social_login.php:232
2094
  #, fuzzy, php-format
2095
  msgid ""
2096
  "Required for Facebook Social Login to work. Please follow the documentation "
2100
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2101
  "فيسبوك"
2102
 
2103
+ #: ../admin/social_login.php:234 ../admin/social_login.php:255
2104
  #, fuzzy
2105
  msgid ""
2106
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
2108
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2109
  "الوصلة المذكورة"
2110
 
2111
+ #: ../admin/social_login.php:253
2112
  #, fuzzy, php-format
2113
  msgid ""
2114
  "Required for Facebook Social Login to work. Please follow the documentation "
2118
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2119
  "فيسبوك"
2120
 
2121
+ #: ../admin/social_login.php:264
2122
  #, fuzzy
2123
  msgid "Twitter API Key"
2124
  msgstr "مفتاح API الخاص | API Private Key"
2125
 
2126
+ #: ../admin/social_login.php:274
2127
  #, fuzzy, php-format
2128
  msgid ""
2129
  "Required for Twitter Social Login to work. Please follow the documentation "
2133
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
2134
  "\"مفتاح API التغريد\""
2135
 
2136
+ #: ../admin/social_login.php:276 ../admin/social_login.php:301
2137
  #, fuzzy
2138
  msgid ""
2139
  "Paste following url in <strong>Website</strong> option mentioned at the link"
2140
  msgstr "لصق التالية url في خيار <strong>URL الموقع</strong> في الوصلة المذكورة"
2141
 
2142
+ #: ../admin/social_login.php:280 ../admin/social_login.php:305
2143
+ #: ../admin/social_login.php:493 ../admin/social_login.php:513
2144
+ #: ../admin/social_login.php:848 ../admin/social_login.php:868
2145
+ #: ../admin/social_login.php:889 ../admin/social_login.php:909
2146
+ #: ../admin/social_login.php:1014 ../admin/social_login.php:1034
2147
+ #: ../admin/social_login.php:1099 ../admin/social_login.php:1119
2148
+ #: ../admin/social_login.php:1141 ../admin/social_login.php:1161
2149
  #, fuzzy
2150
  msgid ""
2151
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
2154
  "لصق التالية url في الخيار <strong>المجال رد الاتصال</strong> في الوصلة "
2155
  "المذكورة"
2156
 
2157
+ #: ../admin/social_login.php:289
2158
  #, fuzzy
2159
  msgid "Twitter API Secret"
2160
  msgstr "شارك الأخرين عبر تويتر"
2161
 
2162
+ #: ../admin/social_login.php:299
2163
  #, fuzzy, php-format
2164
  msgid ""
2165
  "Required for Twitter Social Login to work. Please follow the documentation "
2169
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
2170
  "\"سر API التغريد\""
2171
 
2172
+ #: ../admin/social_login.php:314
2173
  #, fuzzy
2174
  msgid "LinkedIn Client ID"
2175
  msgstr "شارك الأخرين عبر لنكيدان"
2176
 
2177
+ #: ../admin/social_login.php:324
2178
  #, fuzzy, php-format
2179
  msgid ""
2180
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2183
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2184
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2185
 
2186
+ #: ../admin/social_login.php:326 ../admin/social_login.php:347
2187
+ #: ../admin/social_login.php:533 ../admin/social_login.php:553
2188
  #, fuzzy
2189
  msgid ""
2190
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2193
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2194
  "الوصلة المذكورة"
2195
 
2196
+ #: ../admin/social_login.php:335
2197
  #, fuzzy
2198
  msgid "LinkedIn Client Secret"
2199
  msgstr "شارك الأخرين عبر لنكيدان"
2200
 
2201
+ #: ../admin/social_login.php:345
2202
  #, fuzzy, php-format
2203
  msgid ""
2204
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2208
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2209
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2210
 
2211
+ #: ../admin/social_login.php:356
2212
  #, fuzzy
2213
  msgid "Google Client ID"
2214
  msgstr "شارك الأخرين عبر جوجل"
2215
 
2216
+ #: ../admin/social_login.php:366
2217
  #, fuzzy, php-format
2218
  msgid ""
2219
  "Required for Google Social Login to work. Please follow the documentation at "
2223
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2224
  "GooglePlus"
2225
 
2226
+ #: ../admin/social_login.php:368 ../admin/social_login.php:389
2227
  #, fuzzy
2228
  msgid ""
2229
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2232
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2233
  "الوصلة المذكورة"
2234
 
2235
+ #: ../admin/social_login.php:377
2236
  #, fuzzy
2237
  msgid "Google Client Secret"
2238
  msgstr "شارك الأخرين عبر جوجل"
2239
 
2240
+ #: ../admin/social_login.php:387
2241
  #, fuzzy, php-format
2242
  msgid ""
2243
  "Required for Google Social Login to work. Please follow the documentation at "
2247
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2248
  "GooglePlus"
2249
 
2250
+ #: ../admin/social_login.php:398
2251
  #, fuzzy
2252
  msgid "Vkontakte Application ID"
2253
  msgstr "انشر عبر VKontakte"
2254
 
2255
+ #: ../admin/social_login.php:408 ../admin/social_login.php:429
2256
  #, fuzzy, php-format
2257
  msgid ""
2258
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2263
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2264
  "Vkontakte"
2265
 
2266
+ #: ../admin/social_login.php:410 ../admin/social_login.php:431
2267
  #, fuzzy
2268
  msgid ""
2269
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2271
  msgstr ""
2272
  "لصق التالية url في خيار <strong>عنوان الموقع</strong> في الوصلة المذكورة"
2273
 
2274
+ #: ../admin/social_login.php:419
2275
  #, fuzzy
2276
  msgid "Vkontakte Secure key"
2277
  msgstr "انشر عبر VKontakte"
2278
 
2279
+ #: ../admin/social_login.php:440
2280
  #, fuzzy
2281
  msgid "Instagram App ID"
2282
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2283
 
2284
+ #: ../admin/social_login.php:450
2285
  #, fuzzy, php-format
2286
  msgid ""
2287
  "Required for Instagram Social Login to work. Please follow the documentation "
2291
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2292
  "Instagram"
2293
 
2294
+ #: ../admin/social_login.php:452 ../admin/social_login.php:473
2295
  #, fuzzy
2296
  msgid ""
2297
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2300
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2301
  "الوصلة المذكورة"
2302
 
2303
+ #: ../admin/social_login.php:461
2304
  #, fuzzy
2305
  msgid "Instagram App Secret"
2306
  msgstr "إنستاجرام"
2307
 
2308
+ #: ../admin/social_login.php:471
2309
  #, fuzzy, php-format
2310
  msgid ""
2311
  "Required for Instagram Social Login to work. Please follow the documentation "
2315
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2316
  "Instagram"
2317
 
2318
+ #: ../admin/social_login.php:482
2319
  msgid "Line Channel ID"
2320
  msgstr ""
2321
 
2322
+ #: ../admin/social_login.php:491
2323
  #, fuzzy, php-format
2324
  msgid ""
2325
  "Required for Line Social Login to work. Please follow the documentation at "
2328
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2329
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2330
 
2331
+ #: ../admin/social_login.php:502
2332
  #, fuzzy
2333
  msgid "Line Channel Secret"
2334
  msgstr "شارك الأخرين عبر لنكيدان"
2335
 
2336
+ #: ../admin/social_login.php:511
2337
  #, fuzzy, php-format
2338
  msgid ""
2339
  "Required for Line Social Login to work. Please follow the documentation at "
2342
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2343
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2344
 
2345
+ #: ../admin/social_login.php:522
2346
  #, fuzzy
2347
  msgid "Wordpress Client ID"
2348
  msgstr "شارك الأخرين عبر جوجل"
2349
 
2350
+ #: ../admin/social_login.php:531
2351
  #, fuzzy, php-format
2352
  msgid ""
2353
  "Required for Wordpress Social Login to work. Please follow the documentation "
2357
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2358
  "GooglePlus"
2359
 
2360
+ #: ../admin/social_login.php:542
2361
  #, fuzzy
2362
  msgid "Wordpress Client Secret"
2363
  msgstr "شارك الأخرين عبر جوجل"
2364
 
2365
+ #: ../admin/social_login.php:551
2366
  #, fuzzy, php-format
2367
  msgid ""
2368
  "Required for Wordpress Social Login to work. Please follow the documentation "
2373
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2374
  "GooglePlus"
2375
 
2376
+ #: ../admin/social_login.php:562
2377
  #, fuzzy
2378
  msgid "Microsoft Client ID"
2379
  msgstr "شارك الأخرين عبر جوجل"
2380
 
2381
+ #: ../admin/social_login.php:571
2382
  #, fuzzy, php-format
2383
  msgid ""
2384
  "Required for Live Social Login to work. Please follow the documentation at "
2388
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2389
  "GooglePlus"
2390
 
2391
+ #: ../admin/social_login.php:573 ../admin/social_login.php:593
2392
+ #: ../admin/social_login.php:806 ../admin/social_login.php:826
2393
+ #: ../admin/social_login.php:971 ../admin/social_login.php:991
2394
  #, fuzzy
2395
  msgid ""
2396
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2399
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2400
  "الوصلة المذكورة"
2401
 
2402
+ #: ../admin/social_login.php:582
2403
  #, fuzzy
2404
  msgid "Microsoft Client Secret"
2405
  msgstr "شارك الأخرين عبر جوجل"
2406
 
2407
+ #: ../admin/social_login.php:591
2408
  #, fuzzy, php-format
2409
  msgid ""
2410
  "Required for Live Social Login to work. Please follow the documentation at "
2415
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2416
  "GooglePlus"
2417
 
2418
+ #: ../admin/social_login.php:601
2419
  #, fuzzy
2420
  msgid "Steam API Key"
2421
  msgstr "مفتاح API الخاص | API Private Key"
2422
 
2423
+ #: ../admin/social_login.php:610
2424
  #, fuzzy, php-format
2425
  msgid ""
2426
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2430
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
2431
  "\"مفتاح API التغريد\""
2432
 
2433
+ #: ../admin/social_login.php:611
2434
  #, fuzzy
2435
  msgid "Save following <strong>domain</strong> to get the key"
2436
  msgstr ""
2437
  "لصق التالية url في الخيار <strong>المجال رد الاتصال</strong> في الوصلة "
2438
  "المذكورة"
2439
 
2440
+ #: ../admin/social_login.php:620
2441
  #, fuzzy
2442
  msgid "Yahoo Client ID"
2443
  msgstr "شارك الأخرين عبر جوجل"
2444
 
2445
+ #: ../admin/social_login.php:629
2446
  #, fuzzy, php-format
2447
  msgid ""
2448
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2452
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2453
  "GooglePlus"
2454
 
2455
+ #: ../admin/social_login.php:631 ../admin/social_login.php:651
2456
  #, fuzzy
2457
  msgid ""
2458
+ "Paste following url in the <strong>Redirect URI(s)</strong> option mentioned "
2459
+ "at the link"
2460
  msgstr ""
2461
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2462
  "الوصلة المذكورة"
2463
 
2464
+ #: ../admin/social_login.php:640
2465
  #, fuzzy
2466
  msgid "Yahoo Client Secret"
2467
  msgstr "شارك الأخرين عبر جوجل"
2468
 
2469
+ #: ../admin/social_login.php:649
2470
  #, fuzzy, php-format
2471
  msgid ""
2472
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2476
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2477
  "GooglePlus"
2478
 
2479
+ #: ../admin/social_login.php:662
2480
+ #, fuzzy
2481
+ msgid "Discord Client ID"
2482
+ msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2483
+
2484
+ #: ../admin/social_login.php:671
2485
+ #, fuzzy, php-format
2486
+ msgid ""
2487
+ "Required for Discord Social Login to work. Please follow the documentation "
2488
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client ID"
2489
+ msgstr ""
2490
+ "المطلوبة \"دخول جوجليبلوس الاجتماعي\" للعمل. الرجاء تتبع الوثائق الموجودة في "
2491
+ "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2492
+ "GooglePlus"
2493
+
2494
+ #: ../admin/social_login.php:673 ../admin/social_login.php:693
2495
+ #, fuzzy
2496
+ msgid ""
2497
+ "Paste following url in the <strong>Redirects</strong> option mentioned at "
2498
+ "the link"
2499
+ msgstr ""
2500
+ "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2501
+ "الوصلة المذكورة"
2502
+
2503
+ #: ../admin/social_login.php:682
2504
+ #, fuzzy
2505
+ msgid "Discord Client Secret"
2506
+ msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2507
+
2508
+ #: ../admin/social_login.php:691
2509
+ #, fuzzy, php-format
2510
+ msgid ""
2511
+ "Required for Discord Social Login to work. Please follow the documentation "
2512
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client "
2513
+ "Secret key"
2514
+ msgstr ""
2515
+ "المطلوبة \"دخول جوجليبلوس الاجتماعي\" للعمل. الرجاء تتبع الوثائق الموجودة في "
2516
+ "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2517
+ "GooglePlus"
2518
+
2519
+ #: ../admin/social_login.php:704
2520
+ #, fuzzy
2521
+ msgid "Amazon Client ID"
2522
+ msgstr "شارك الأخرين عبر جوجل"
2523
+
2524
+ #: ../admin/social_login.php:713
2525
+ #, fuzzy, php-format
2526
+ msgid ""
2527
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2528
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client ID"
2529
+ msgstr ""
2530
+ "المطلوبة \"دخول جوجليبلوس الاجتماعي\" للعمل. الرجاء تتبع الوثائق الموجودة في "
2531
+ "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2532
+ "GooglePlus"
2533
+
2534
+ #: ../admin/social_login.php:715 ../admin/social_login.php:735
2535
+ #, fuzzy
2536
+ msgid ""
2537
+ "Paste following url in the <strong>Allowed Return URLs</strong> option "
2538
+ "mentioned at the link"
2539
+ msgstr ""
2540
+ "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2541
+ "الوصلة المذكورة"
2542
+
2543
+ #: ../admin/social_login.php:724
2544
+ #, fuzzy
2545
+ msgid "Amazon Client Secret"
2546
+ msgstr "شارك الأخرين عبر جوجل"
2547
+
2548
+ #: ../admin/social_login.php:733
2549
+ #, fuzzy, php-format
2550
+ msgid ""
2551
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2552
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client Secret "
2553
+ "key"
2554
+ msgstr ""
2555
+ "المطلوبة \"دخول جوجليبلوس الاجتماعي\" للعمل. الرجاء تتبع الوثائق الموجودة في "
2556
+ "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2557
+ "GooglePlus"
2558
+
2559
+ #: ../admin/social_login.php:746
2560
+ #, fuzzy
2561
+ msgid "Stackoverflow Client ID"
2562
+ msgstr "شارك الأخرين عبر جوجل"
2563
+
2564
+ #: ../admin/social_login.php:755
2565
+ #, fuzzy, php-format
2566
+ msgid ""
2567
+ "Required for Stackoverflow Social Login to work. Please follow the "
2568
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2569
+ "Stackoverflow Client ID"
2570
+ msgstr ""
2571
+ "المطلوبة \"دخول جوجليبلوس الاجتماعي\" للعمل. الرجاء تتبع الوثائق الموجودة في "
2572
+ "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2573
+ "GooglePlus"
2574
+
2575
+ #: ../admin/social_login.php:761
2576
+ #, fuzzy
2577
+ msgid "Stackoverflow Client Secret"
2578
+ msgstr "شارك الأخرين عبر جوجل"
2579
+
2580
+ #: ../admin/social_login.php:770
2581
+ #, fuzzy, php-format
2582
+ msgid ""
2583
+ "Required for Stackoverflow Social Login to work. Please follow the "
2584
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2585
+ "Stackoverflow Client Secret key"
2586
+ msgstr ""
2587
+ "المطلوبة \"دخول جوجليبلوس الاجتماعي\" للعمل. الرجاء تتبع الوثائق الموجودة في "
2588
+ "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2589
+ "GooglePlus"
2590
+
2591
+ #: ../admin/social_login.php:776
2592
+ msgid "Stackoverflow Key"
2593
+ msgstr ""
2594
+
2595
+ #: ../admin/social_login.php:786
2596
+ #, fuzzy, php-format
2597
+ msgid ""
2598
+ "Required for Stackoverflow Social Login to work. Please follow the "
2599
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2600
+ "Stackoverflow Key"
2601
+ msgstr ""
2602
+ "المطلوبة \"تسجيل الدخول الاجتماعي تويتر\" للعمل. الرجاء تتبع الوثائق "
2603
+ "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
2604
+ "\"مفتاح API التغريد\""
2605
+
2606
+ #: ../admin/social_login.php:795
2607
  #, fuzzy
2608
  msgid "Spotify Client ID"
2609
  msgstr "شارك الأخرين عبر جوجل"
2610
 
2611
+ #: ../admin/social_login.php:804
2612
  #, fuzzy, php-format
2613
  msgid ""
2614
  "Required for Spotify Social Login to work. Please follow the documentation "
2618
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2619
  "GooglePlus"
2620
 
2621
+ #: ../admin/social_login.php:815
2622
  #, fuzzy
2623
  msgid "Spotify Client Secret"
2624
  msgstr "شارك الأخرين عبر جوجل"
2625
 
2626
+ #: ../admin/social_login.php:824
2627
  #, fuzzy, php-format
2628
  msgid ""
2629
  "Required for Spotify Social Login to work. Please follow the documentation "
2634
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2635
  "GooglePlus"
2636
 
2637
+ #: ../admin/social_login.php:837
2638
  #, fuzzy
2639
  msgid "Dribbble Client ID"
2640
  msgstr "شارك الأخرين عبر جوجل"
2641
 
2642
+ #: ../admin/social_login.php:846
2643
  #, fuzzy, php-format
2644
  msgid ""
2645
  "Required for Dribbble Social Login to work. Please follow the documentation "
2649
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2650
  "GooglePlus"
2651
 
2652
+ #: ../admin/social_login.php:857
2653
  #, fuzzy
2654
  msgid "Dribbble Client Secret"
2655
  msgstr "شارك الأخرين عبر جوجل"
2656
 
2657
+ #: ../admin/social_login.php:866
2658
  #, fuzzy, php-format
2659
  msgid ""
2660
  "Required for Dribbble Social Login to work. Please follow the documentation "
2665
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2666
  "GooglePlus"
2667
 
2668
+ #: ../admin/social_login.php:878
2669
  #, fuzzy
2670
  msgid "Twitch Client ID"
2671
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2672
 
2673
+ #: ../admin/social_login.php:887
2674
  #, fuzzy, php-format
2675
  msgid ""
2676
  "Required for Twitch Social Login to work. Please follow the documentation at "
2680
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2681
  "GooglePlus"
2682
 
2683
+ #: ../admin/social_login.php:898
2684
  #, fuzzy
2685
  msgid "Twitch Client Secret"
2686
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2687
 
2688
+ #: ../admin/social_login.php:907
2689
  #, fuzzy, php-format
2690
  msgid ""
2691
  "Required for Twitch Social Login to work. Please follow the documentation at "
2695
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2696
  "GooglePlus"
2697
 
2698
+ #: ../admin/social_login.php:920
2699
  #, fuzzy
2700
  msgid "Foursquare Client ID"
2701
  msgstr "شارك الأخرين عبر جوجل"
2702
 
2703
+ #: ../admin/social_login.php:929
2704
  #, fuzzy, php-format
2705
  msgid ""
2706
  "Required for Foursquare Social Login to work. Please follow the "
2711
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2712
  "GooglePlus"
2713
 
2714
+ #: ../admin/social_login.php:931 ../admin/social_login.php:951
2715
  #, fuzzy
2716
  msgid ""
2717
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
2720
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2721
  "الوصلة المذكورة"
2722
 
2723
+ #: ../admin/social_login.php:940
2724
  #, fuzzy
2725
  msgid "Foursquare Client Secret"
2726
  msgstr "شارك الأخرين عبر جوجل"
2727
 
2728
+ #: ../admin/social_login.php:949
2729
  #, fuzzy, php-format
2730
  msgid ""
2731
  "Required for Foursquare Social Login to work. Please follow the "
2736
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2737
  "GooglePlus"
2738
 
2739
+ #: ../admin/social_login.php:960
2740
  msgid "Dropbox App Key"
2741
  msgstr ""
2742
 
2743
+ #: ../admin/social_login.php:969
2744
  #, fuzzy, php-format
2745
  msgid ""
2746
  "Required for Dropbox Social Login to work. Please follow the documentation "
2750
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2751
  "فيسبوك"
2752
 
2753
+ #: ../admin/social_login.php:980
2754
  #, fuzzy
2755
  msgid "Dropbox App Secret"
2756
  msgstr "رقم التعريف الخالص بك | ID"
2757
 
2758
+ #: ../admin/social_login.php:989
2759
  #, fuzzy, php-format
2760
  msgid ""
2761
  "Required for Dropbox Social Login to work. Please follow the documentation "
2765
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2766
  "فيسبوك"
2767
 
2768
+ #: ../admin/social_login.php:1003
2769
  msgid "Disqus Public Key"
2770
  msgstr ""
2771
 
2772
+ #: ../admin/social_login.php:1012
2773
  #, fuzzy, php-format
2774
  msgid ""
2775
  "Required for Disqus Social Login to work. Please follow the documentation at "
2779
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على \"مفتاح المستهلك "
2780
  "شينغ\""
2781
 
2782
+ #: ../admin/social_login.php:1023
2783
  #, fuzzy
2784
  msgid "Disqus Secret Key"
2785
  msgstr "هارد Shortname"
2786
 
2787
+ #: ../admin/social_login.php:1032
2788
  #, fuzzy, php-format
2789
  msgid ""
2790
  "Required for Disqus Social Login to work. Please follow the documentation at "
2794
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على \"مفتاح المستهلك "
2795
  "شينغ\""
2796
 
2797
+ #: ../admin/social_login.php:1045
2798
  #, fuzzy
2799
  msgid "Reddit Client ID"
2800
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2801
 
2802
+ #: ../admin/social_login.php:1054
2803
  #, fuzzy, php-format
2804
  msgid ""
2805
  "Required for Reddit Social Login to work. Please follow the documentation at "
2809
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2810
  "GooglePlus"
2811
 
2812
+ #: ../admin/social_login.php:1056 ../admin/social_login.php:1076
2813
  #, fuzzy
2814
  msgid ""
2815
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
2818
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2819
  "الوصلة المذكورة"
2820
 
2821
+ #: ../admin/social_login.php:1065
2822
  #, fuzzy
2823
  msgid "Reddit Client Secret"
2824
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2825
 
2826
+ #: ../admin/social_login.php:1074
2827
  #, fuzzy, php-format
2828
  msgid ""
2829
  "Required for Reddit Social Login to work. Please follow the documentation at "
2833
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2834
  "GooglePlus"
2835
 
2836
+ #: ../admin/social_login.php:1088
2837
  #, fuzzy
2838
  msgid "Github Client ID"
2839
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2840
 
2841
+ #: ../admin/social_login.php:1097
2842
  #, fuzzy, php-format
2843
  msgid ""
2844
  "Required for Github Social Login to work. Please follow the documentation at "
2848
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2849
  "GooglePlus"
2850
 
2851
+ #: ../admin/social_login.php:1108
2852
  #, fuzzy
2853
  msgid "Github Client Secret"
2854
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2855
 
2856
+ #: ../admin/social_login.php:1117
2857
  #, fuzzy, php-format
2858
  msgid ""
2859
  "Required for Github Social Login to work. Please follow the documentation at "
2863
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2864
  "GooglePlus"
2865
 
2866
+ #: ../admin/social_login.php:1130
2867
  #, fuzzy
2868
  msgid "Kakao Client ID"
2869
  msgstr "شارك الأخرين عبر جوجل"
2870
 
2871
+ #: ../admin/social_login.php:1139
2872
  #, fuzzy, php-format
2873
  msgid ""
2874
  "Required for Kakao Social Login to work. Please follow the documentation at "
2878
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2879
  "GooglePlus"
2880
 
2881
+ #: ../admin/social_login.php:1150
2882
  #, fuzzy
2883
  msgid "Kakao Client Secret"
2884
  msgstr "شارك الأخرين عبر جوجل"
2885
 
2886
+ #: ../admin/social_login.php:1159
2887
  #, fuzzy, php-format
2888
  msgid ""
2889
  "Required for Kakao Social Login to work. Please follow the documentation at "
2893
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2894
  "GooglePlus"
2895
 
2896
+ #: ../admin/social_login.php:1179
2897
  #, fuzzy
2898
  msgid "Social Login Options"
2899
  msgstr ""
2901
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2902
  "فورا دون موافقة المشرف على النظام."
2903
 
2904
+ #: ../admin/social_login.php:1194
2905
  #, fuzzy
2906
  msgid "Text to display above the Social Login interface"
2907
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
2908
 
2909
+ #: ../admin/social_login.php:1202
2910
  msgid "Trigger social login in the same browser tab"
2911
  msgstr ""
2912
 
2913
+ #: ../admin/social_login.php:1212
2914
  msgid "Trigger social login in the same browser tab instead of a popup window"
2915
  msgstr ""
2916
 
2917
+ #: ../admin/social_login.php:1219
2918
  #, fuzzy
2919
  msgid "Center align icons"
2920
  msgstr "إعادة ترتيب الرموز"
2921
 
2922
+ #: ../admin/social_login.php:1229
2923
  #, fuzzy
2924
  msgid "Center align social login icons"
2925
  msgstr ""
2927
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2928
  "فورا دون موافقة المشرف على النظام."
2929
 
2930
+ #: ../admin/social_login.php:1236
2931
  #, fuzzy
2932
  msgid "Enable at login page"
2933
  msgstr "صفحة"
2934
 
2935
+ #: ../admin/social_login.php:1246
2936
  #, fuzzy
2937
  msgid ""
2938
  "Social Login interface will get enabled at the login page of your website"
2940
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2941
  "التعليق"
2942
 
2943
+ #: ../admin/social_login.php:1253
2944
  #, fuzzy
2945
  msgid "Enable at register page"
2946
  msgstr "التسجيل العام"
2947
 
2948
+ #: ../admin/social_login.php:1263
2949
  #, fuzzy
2950
  msgid ""
2951
  "Social Login interface will get enabled at the registration page of your "
2954
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في صفحة التسجيل لموقع الويب "
2955
  "الخاص بك"
2956
 
2957
+ #: ../admin/social_login.php:1270
2958
  msgid "Enable at comment form"
2959
  msgstr "تمكين هذا الشكل من تعليق"
2960
 
2961
+ #: ../admin/social_login.php:1280
2962
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2963
  msgstr ""
2964
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2965
  "التعليق"
2966
 
2967
+ #: ../admin/social_login.php:1294
2968
  msgid "Enable before WooCommerce Customer Login Form"
2969
  msgstr "تمكين قبل WooCommerce نموذج تسجيل دخول العملاء"
2970
 
2971
+ #: ../admin/social_login.php:1304
2972
  #, fuzzy
2973
  msgid ""
2974
  "Social Login Interface will get enabled before the customer login form at "
2977
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2978
  "التعليق"
2979
 
2980
+ #: ../admin/social_login.php:1311
2981
  #, fuzzy
2982
  msgid "Enable at WooCommerce Customer Login Form"
2983
  msgstr "تمكن بعد WooCommerce نموذج تسجيل دخول العملاء"
2984
 
2985
+ #: ../admin/social_login.php:1321
2986
  #, fuzzy
2987
  msgid ""
2988
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2991
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2992
  "التعليق"
2993
 
2994
+ #: ../admin/social_login.php:1328
2995
  #, fuzzy
2996
  msgid "Enable at WooCommerce Customer Register Form"
2997
  msgstr "تمكن بعد WooCommerce نموذج تسجيل دخول العملاء"
2998
 
2999
+ #: ../admin/social_login.php:1338
3000
  #, fuzzy
3001
  msgid ""
3002
  "Integrate Social Login Interface with the customer register form at "
3005
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
3006
  "التعليق"
3007
 
3008
+ #: ../admin/social_login.php:1345
3009
  #, fuzzy
3010
  msgid "Enable at WooCommerce checkout page"
3011
  msgstr "التسجيل العام"
3012
 
3013
+ #: ../admin/social_login.php:1355
3014
  #, fuzzy
3015
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
3016
  msgstr ""
3017
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
3018
  "التعليق"
3019
 
3020
+ #: ../admin/social_login.php:1365
3021
  #, fuzzy
3022
  msgid "Auto-approve comments made by Social Login users"
3023
  msgstr ""
3024
  "السيارات--الموافقة على التعليقات التي أدلى بها المستخدمين \"تسجيل الدخول "
3025
  "الاجتماعي\""
3026
 
3027
+ #: ../admin/social_login.php:1375
3028
  msgid ""
3029
  "If this option is enabled, and WordPress comment is made by Social Login "
3030
  "user, comment will get approved immediately without keeping in moderation."
3033
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
3034
  "فورا دون موافقة المشرف على النظام."
3035
 
3036
+ #: ../admin/social_login.php:1376
3037
  #, fuzzy
3038
  msgid "Note: This is not related to Facebook comments"
3039
  msgstr "ملاحظة: هذا لا تتعلق بتعليقات ألفيس بوك"
3040
 
3041
+ #: ../admin/social_login.php:1385
3042
  #, fuzzy
3043
  msgid "Enable social avatar"
3044
  msgstr "خدمة الشبكة الاجتماعية"
3045
 
3046
+ #: ../admin/social_login.php:1395
3047
  #, fuzzy
3048
  msgid ""
3049
  "Social profile pictures of the logged in user will be displayed as profile "
3052
  "سيتم عرض الصور الشخصية الاجتماعية لمستخدم تم تسجيل دخوله كالصورة الرمزية "
3053
  "الشخصية"
3054
 
3055
+ #: ../admin/social_login.php:1404
3056
  #, fuzzy
3057
  msgid "Avatar quality"
3058
  msgstr "نوعية الصورة الرمزية"
3059
 
3060
+ #: ../admin/social_login.php:1407
3061
  #, fuzzy
3062
  msgid "Average"
3063
  msgstr "المعدل"
3064
 
3065
+ #: ../admin/social_login.php:1408
3066
  msgid "Best"
3067
  msgstr "أفضل"
3068
 
3069
+ #: ../admin/social_login.php:1415
3070
  #, fuzzy
3071
  msgid "Choose avatar quality"
3072
  msgstr "إختيار ملف"
3073
 
3074
+ #: ../admin/social_login.php:1423
3075
  #, fuzzy
3076
  msgid ""
3077
  "Show option for users to update social avatar at BuddyPress profile page"
3078
  msgstr ""
3079
  "تمكين هذا الخيار لإظهار حساب الاجتماعية ربط واجهة الصفحة الشخصية BuddyPress"
3080
 
3081
+ #: ../admin/social_login.php:1433
3082
  msgid ""
3083
  "If enabled, users would be able to update their social avatar from \"Profile "
3084
  "photo\" section in BuddyPress profile at front-end"
3085
  msgstr ""
3086
 
3087
+ #: ../admin/social_login.php:1453
3088
  #, fuzzy
3089
  msgid ""
3090
  "If enabled and Social ID provider does not provide user's email address on "
3095
  "تسجيل الدخول، سيتم مطالبة المستخدم بتوفير عنوانه الإلكتروني. وإلا، سيتم "
3096
  "إنشاء بريد إلكتروني وهمية"
3097
 
3098
+ #: ../admin/social_login.php:1461
3099
  msgid "Send post-registration email to user to set account password"
3100
  msgstr ""
3101
 
3102
+ #: ../admin/social_login.php:1471
3103
  #, fuzzy
3104
  msgid ""
3105
  "If enabled, an email will be sent to user after registration through Social "
3111
  "الدخول (اسم المستخدم-كلمة المرور لتكون قادراً على تسجيل الدخول عن طريق نموذج "
3112
  "تسجيل الدخول التقليدية)"
3113
 
3114
+ #: ../admin/social_login.php:1478
3115
  #, fuzzy
3116
  msgid "Send new user registration notification email to admin"
3117
  msgstr "تسجيل المستخدم تعطيل عن طريق تسجيل الدخول الاجتماعي"
3118
 
3119
+ #: ../admin/social_login.php:1488
3120
  #, fuzzy
3121
  msgid ""
3122
  "If enabled, an email will be sent to admin after new user registers through "
3127
  "الدخول (اسم المستخدم-كلمة المرور لتكون قادراً على تسجيل الدخول عن طريق نموذج "
3128
  "تسجيل الدخول التقليدية)"
3129
 
3130
+ #: ../admin/social_login.php:1495
3131
  #, fuzzy
3132
  msgid "Login redirection"
3133
  msgstr "تسجيل الدخول"
3134
 
3135
+ #: ../admin/social_login.php:1499
3136
  #, fuzzy
3137
  msgid "Same page where user logged in"
3138
  msgstr "حيث يتم تسجيل المستخدم في الصفحة نفسها"
3139
 
3140
+ #: ../admin/social_login.php:1503 ../admin/social_login.php:1532
3141
  #, fuzzy
3142
  msgid "Account dashboard"
3143
  msgstr " لوحتك الخاصة بالتحكم"
3144
 
3145
+ #: ../admin/social_login.php:1506 ../admin/social_login.php:1535
3146
  #, fuzzy
3147
  msgid "BuddyPress profile page"
3148
  msgstr "تحرير ملفي الشخصي"
3149
 
3150
+ #: ../admin/social_login.php:1509 ../admin/social_login.php:1538
3151
  #, fuzzy
3152
  msgid "Custom Url"
3153
  msgstr "رابط (URL) مخصّص"
3154
 
3155
+ #: ../admin/social_login.php:1517
3156
  #, fuzzy
3157
  msgid "User will be redirected to the selected page after Social Login"
3158
  msgstr "ستتم إعادة توجيه المستخدم إلى الصفحة المحددة بعد \"الدخول الاجتماعي\""
3159
 
3160
+ #: ../admin/social_login.php:1524
3161
  #, fuzzy
3162
  msgid "Registration redirection"
3163
  msgstr "نموذج التسجيل"
3164
 
3165
+ #: ../admin/social_login.php:1528
3166
  #, fuzzy
3167
  msgid "Same page from where user registered"
3168
  msgstr "الصفحة نفسها من حيث تسجيل المستخدم"
3169
 
3170
+ #: ../admin/social_login.php:1546
3171
  #, fuzzy
3172
  msgid ""
3173
  "User will be redirected to the selected page after registration (first "
3176
  "ستتم إعادة توجيه المستخدم إلى الصفحة المحددة بعد التسجيل (تسجيل الدخول "
3177
  "الاجتماعي الأول) من خلال \"تسجيل الدخول الاجتماعي\""
3178
 
3179
+ #: ../admin/social_login.php:1555
3180
  #, fuzzy
3181
  msgid "Social Account Linking Options"
3182
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
3183
 
3184
+ #: ../admin/social_login.php:1570
3185
  #, fuzzy
3186
  msgid "Text to display above the Social Account Linking interface"
3187
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
3188
 
3189
+ #: ../admin/social_login.php:1577
3190
  #, fuzzy
3191
  msgid ""
3192
  "Link social account to already existing account, if email address matches"
3194
  "الرجاء القيام بربط الحساب الإجتماعي الخاص بك للتمكن من تسجيل الدخول العام "
3195
  "الى حسابك في هذا الموقع"
3196
 
3197
+ #: ../admin/social_login.php:1587
3198
  msgid ""
3199
  "If email address of the user's Social Account matches with an already "
3200
  "existing account at your website, that social account will be linked to "
3202
  "Linking interface at their profile page."
3203
  msgstr ""
3204
 
3205
+ #: ../admin/social_login.php:1595
3206
  #, fuzzy
3207
  msgid "Enable social account linking at BuddyPress profile page"
3208
  msgstr "تمكين حساب الاجتماعية ربط الصفحة الشخصية BuddyPress"
3209
 
3210
+ #: ../admin/social_login.php:1605
3211
  #, fuzzy
3212
  msgid ""
3213
  "Enable this option to show social account linking interface at BuddyPress "
3215
  msgstr ""
3216
  "تمكين هذا الخيار لإظهار حساب الاجتماعية ربط واجهة الصفحة الشخصية BuddyPress"
3217
 
3218
+ #: ../admin/social_login.php:1616
3219
  #, fuzzy
3220
  msgid "Email popup options"
3221
  msgstr "الخيارات"
3222
 
3223
+ #: ../admin/social_login.php:1621
3224
  #, fuzzy
3225
  msgid "Text on 'Email required' popup"
3226
  msgstr "البريد الإلكتروني (Email) - الإدخال إجباري"
3227
 
3228
+ #: ../admin/social_login.php:1631
3229
  #, fuzzy
3230
  msgid ""
3231
  "This text will be displayed on email required popup. Leave empty if not "
3234
  "سيتم عرض هذا النص على البريد الإلكتروني المطلوب المنبثقة. ترك فارغاً إذا كان "
3235
  "غير مطلوب."
3236
 
3237
+ #: ../admin/social_login.php:1639
3238
  #, fuzzy
3239
  msgid "Error message for 'Email required' popup"
3240
  msgstr "رسالة الإعلام بالخطأ لانبثاق 'البريد الإلكتروني مطلوب'"
3241
 
3242
+ #: ../admin/social_login.php:1649
3243
  #, fuzzy
3244
  msgid ""
3245
  "This message will be displayed to user if it provides invalid or already "
3248
  "سيتم عرض هذه الرسالة إلى المستخدم إذا كان يوفر البريد الإلكتروني غير صالح أو "
3249
  "المسجلة مسبقاً"
3250
 
3251
+ #: ../admin/social_login.php:1657
3252
  #, fuzzy
3253
  msgid "Email popup height"
3254
  msgstr "ارتفاع"
3255
 
3256
+ #: ../admin/social_login.php:1667
3257
  #, fuzzy
3258
  msgid ""
3259
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
3263
  "إذا كنت ترى شريط التمرير العمودي في منبثق \"البريد الإلكتروني المطلوبة\"، "
3264
  "يمكنك زيادة ارتفاع المنبثقة عن طريق تحديد هذا الخيار. ترك فارغاً للافتراضي."
3265
 
3266
+ #: ../admin/social_login.php:1674
3267
  #, fuzzy
3268
  msgid "Enable email verification"
3269
  msgstr "تمكين ايقونات المشاركة عبر البريد الإلكتروني "
3270
 
3271
+ #: ../admin/social_login.php:1684
3272
  #, fuzzy
3273
  msgid ""
3274
  "If enabled, email provided by the user will be verified by sending a "
3279
  "وصلة تأكيد لهذا البريد الإلكتروني. أن لا يكون المستخدم قادراً على تسجيل "
3280
  "الدخول دون التحقق من البريد الإلكتروني صفحته/صفحتها"
3281
 
3282
+ #: ../admin/social_login.php:1704
3283
  #, fuzzy
3284
  msgid "Enable GDPR opt-in"
3285
  msgstr "إتاحة التعليق من هارد"
3286
 
3287
+ #: ../admin/social_login.php:1714
3288
  msgid ""
3289
  "Enable it to show GDPR opt-in for social login and social account linking"
3290
  msgstr ""
3291
 
3292
+ #: ../admin/social_login.php:1722
3293
  #, fuzzy
3294
  msgid "Placement of GDPR opt-in"
3295
  msgstr "إتاحة التعليق من هارد"
3296
 
3297
+ #: ../admin/social_login.php:1726
3298
  #, fuzzy
3299
  msgid "Above Social Login icons"
3300
  msgstr ""
3302
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
3303
  "فورا دون موافقة المشرف على النظام."
3304
 
3305
+ #: ../admin/social_login.php:1728
3306
  #, fuzzy
3307
  msgid "Below Social Login icons"
3308
  msgstr ""
3310
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
3311
  "فورا دون موافقة المشرف على النظام."
3312
 
3313
+ #: ../admin/social_login.php:1734
3314
  #, fuzzy
3315
  msgid "Placement of GDPR opt-in above or below the social login icons"
3316
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
3317
 
3318
+ #: ../admin/social_login.php:1741
3319
  msgid "Opt-in text"
3320
  msgstr ""
3321
 
3322
+ #: ../admin/social_login.php:1751
3323
  #, fuzzy
3324
  msgid "Text for the GDPR opt-in"
3325
  msgstr "إتاحة التعليق من هارد"
3326
 
3327
+ #: ../admin/social_login.php:1758
3328
  msgid "Text to link to Terms-Conditions page"
3329
  msgstr ""
3330
 
3331
+ #: ../admin/social_login.php:1768
3332
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
3333
  msgstr ""
3334
 
3335
+ #: ../admin/social_login.php:1775
3336
  msgid "Terms-Conditions Url"
3337
  msgstr ""
3338
 
3339
+ #: ../admin/social_login.php:1785
3340
  #, fuzzy
3341
  msgid "Url of the terms-conditions page of your website"
3342
  msgstr "URL لعملاء الموقع (اختياري)"
3343
 
3344
+ #: ../admin/social_login.php:1792
3345
  msgid "Text to link to Privacy Policy page"
3346
  msgstr ""
3347
 
3348
+ #: ../admin/social_login.php:1802
3349
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
3350
  msgstr ""
3351
 
3352
+ #: ../admin/social_login.php:1809
3353
  msgid "Privacy Policy Url"
3354
  msgstr ""
3355
 
3356
+ #: ../admin/social_login.php:1819
3357
  #, fuzzy
3358
  msgid "Url of the privacy policy page of your website"
3359
  msgstr "URL لعملاء الموقع (اختياري)"
3360
 
3361
+ #: ../admin/social_login.php:1870 ../inc/widget.php:260 ../inc/widget.php:438
3362
  #: ../inc/widget.php:602 ../inc/widget.php:750
3363
  #, fuzzy
3364
  msgid "Select"
3365
  msgstr "أختر ..."
3366
 
3367
+ #: ../admin/social_login.php:1901
3368
  #, fuzzy
3369
  msgid "Social Login Shortcode & Widget"
3370
  msgstr "استخدم كود مختصر | Include the shortcode"
3371
 
3372
+ #: ../admin/social_login.php:1902
3373
  msgid "Social Linking Shortcode"
3374
  msgstr "الربط الاجتماعي رمز قصير"
3375
 
3376
+ #: ../admin/social_login.php:1917
3377
  msgid "Why is social login not working?"
3378
  msgstr ""
3379
 
3380
+ #: ../admin/social_login.php:1918
3381
  msgid ""
3382
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3383
  "belong to the same app"
3384
  msgstr ""
3385
 
3386
+ #: ../admin/social_login.php:1920
3387
  msgid "Social Login not working with Varnish enabled"
3388
  msgstr ""
3389
 
3390
+ #: ../admin/social_login.php:1921
3391
  msgid ""
3392
  "Why the user is not appearing logged in even after Social Login until the "
3393
  "webpage is refreshed manually?"
3621
  msgid "Archives"
3622
  msgstr "الأرشيف"
3623
 
3624
+ #: ../inc/social_sharing.php:225
3625
+ msgid "More"
3626
+ msgstr ""
3627
+
3628
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3629
  #, fuzzy
3630
  msgid "Invalid request"
3635
  msgid "Providers not selected"
3636
  msgstr "محدد | selected"
3637
 
3638
+ #: ../inc/social_sharing_networks.php:57
3639
+ msgid "Copy Link"
3640
+ msgstr ""
3641
+
3642
+ #: ../inc/social_login.php:1030
3643
  #, fuzzy
3644
  msgid "Email"
3645
  msgstr "البريد الإلكتروني"
3646
 
3647
+ #: ../inc/social_login.php:1031
3648
  msgid "Confirm email"
3649
  msgstr ""
3650
 
3651
+ #: ../inc/social_login.php:1033
3652
  msgid "Save"
3653
  msgstr ""
3654
 
3655
+ #: ../inc/social_login.php:1034
3656
  msgid "Cancel"
3657
  msgstr ""
3658
 
3659
+ #: ../inc/social_login.php:1108
3660
  #, fuzzy
3661
  msgid "Email Verification"
3662
  msgstr "تمكين ايقونات المشاركة عبر البريد الإلكتروني "
3663
 
3664
+ #: ../inc/social_login.php:1110
3665
  msgid ""
3666
  "Please click on the following link or paste it in browser to verify your "
3667
  "email"
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-01-27 15:37+0530\n"
6
- "PO-Revision-Date: 2021-01-27 15:37+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../super_socializer.php:1570
20
  #, fuzzy
21
  msgid ""
22
  "cURL is not enabled at your website server. Please contact your website "
@@ -26,7 +26,7 @@ msgstr ""
26
  "posible que necesites contactar con el administrador de tu servidor para "
27
  "verificar esto"
28
 
29
- #: ../super_socializer.php:1598
30
  #, fuzzy, php-format
31
  msgid ""
32
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -35,7 +35,7 @@ msgstr ""
35
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
36
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
37
 
38
- #: ../super_socializer.php:1601
39
  #, fuzzy, php-format
40
  msgid ""
41
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -44,7 +44,7 @@ msgstr ""
44
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
45
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
46
 
47
- #: ../super_socializer.php:1604
48
  msgid ""
49
  "Make sure cURL is enabled at your website server. You may need to contact "
50
  "the server administrator of your website to verify this"
@@ -53,67 +53,71 @@ msgstr ""
53
  "posible que necesites contactar con el administrador de tu servidor para "
54
  "verificar esto"
55
 
56
- #: ../super_socializer.php:1786 ../helper.php:986
 
 
 
 
57
  msgid "Please verify your email address to login."
58
  msgstr "Por favor verifica tu dirección de email para ingresar."
59
 
60
- #: ../super_socializer.php:1786
61
  msgid "Your email has been verified. Now you can login to your account"
62
  msgstr "Tu email ha sido verificado. Ahora puedes ingresar en tu cuenta"
63
 
64
- #: ../super_socializer.php:1790
65
  msgid "Notification"
66
  msgstr "Notificación"
67
 
68
- #: ../super_socializer.php:1808 ../admin/social_login.php:1280
69
  msgid "Email required"
70
  msgstr "Email requerido"
71
 
72
- #: ../super_socializer.php:1811
73
  msgid "Please check your email inbox to complete the registration."
74
  msgstr ""
75
  "Por favor revisa la bandeja de entrada de tu correo para completar el "
76
  "registro."
77
 
78
- #: ../super_socializer.php:1880
79
  msgid "Leave a reply"
80
  msgstr "Deja una respuesta"
81
 
82
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
83
  msgid "Shares"
84
  msgstr ""
85
 
86
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
87
  msgid "Share"
88
  msgstr ""
89
 
90
- #: ../super_socializer.php:1896
91
  #, fuzzy
92
  msgid "Link copied."
93
  msgstr "LinkedIn"
94
 
95
- #: ../super_socializer.php:2141
96
  msgid "Super Socializer - General Options"
97
  msgstr "Super Socializer - Opciones Generales"
98
 
99
- #: ../super_socializer.php:2141 ../admin/general_options.php:15
100
  #: ../admin/social_commenting.php:47
101
  msgid "General Options"
102
  msgstr "Opciones Generales"
103
 
104
- #: ../super_socializer.php:2209 ../helper.php:915
105
  msgid "Social Avatar"
106
  msgstr "Avatar Social"
107
 
108
- #: ../super_socializer.php:2212
109
  msgid "Small Avatar Url"
110
  msgstr "Url de Avatar Pequeño"
111
 
112
- #: ../super_socializer.php:2216
113
  msgid "Large Avatar Url"
114
  msgstr "Url de Avatar Grande"
115
 
116
- #: ../super_socializer.php:2220 ../helper.php:918
117
  msgid ""
118
  "Do not fetch and update social avatar from my profile, next time I Social "
119
  "Login"
@@ -121,75 +125,75 @@ msgstr ""
121
  "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la "
122
  "próxima vez | Social Login"
123
 
124
- #: ../super_socializer.php:2224 ../helper.php:919
125
  msgid "Update social avatar, next time I Social Login"
126
  msgstr "Actualiza tu avatar de redes sociales | Social Login"
127
 
128
- #: ../super_socializer.php:2301
129
  msgid "Login with your Social ID"
130
  msgstr ""
131
 
132
- #: ../super_socializer.php:2302
133
  msgid "Email you entered is already registered or invalid"
134
  msgstr "El email que has escrito ya está registrado o no es válido"
135
 
136
- #: ../super_socializer.php:2309
137
  msgid "Please enter a valid email address. You might be required to verify it"
138
  msgstr ""
139
  "Por favor escribe una dirección de email válida. Puedes ser requerido para "
140
  "verificarla"
141
 
142
- #: ../super_socializer.php:2313 ../super_socializer.php:3039
143
  msgid "Link your social account to login to your account at this website"
144
  msgstr ""
145
  "Enlaza la cuenta de tu red social para ingresar en tu cuenta de este sitio "
146
  "web "
147
 
148
- #: ../super_socializer.php:2561
149
  msgid "Thanks for installing Super Socializer plugin"
150
  msgstr ""
151
 
152
- #: ../super_socializer.php:2563
153
  msgid "Configure the Plugin"
154
  msgstr ""
155
 
156
- #: ../super_socializer.php:2574
157
  msgid ""
158
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
159
  "current version of Super Socializer"
160
  msgstr ""
161
 
162
- #: ../super_socializer.php:2583
163
  msgid ""
164
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
165
  "version of Super Socializer"
166
  msgstr ""
167
 
168
- #: ../super_socializer.php:2592
169
  msgid ""
170
- "Update \"Social Login Buttons\" add-on to version 1.2.6 or above for "
171
  "compatibility with current version of Super Socializer"
172
  msgstr ""
173
 
174
- #: ../super_socializer.php:2601
175
  msgid ""
176
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
177
  "with current version of Super Socializer"
178
  msgstr ""
179
 
180
- #: ../super_socializer.php:2610
181
  msgid ""
182
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
183
  "with current version of Super Socializer"
184
  msgstr ""
185
 
186
- #: ../super_socializer.php:2621
187
  #, php-format
188
  msgid ""
189
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
190
  msgstr ""
191
 
192
- #: ../super_socializer.php:2630
193
  #, php-format
194
  msgid ""
195
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -197,7 +201,7 @@ msgid ""
197
  "Instagram App Secret <a href=\"%s\">here</a>"
198
  msgstr ""
199
 
200
- #: ../super_socializer.php:2639 ../super_socializer.php:2648
201
  #, php-format
202
  msgid ""
203
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -206,13 +210,13 @@ msgid ""
206
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
207
  msgstr ""
208
 
209
- #: ../super_socializer.php:2664
210
  #, php-format
211
  msgid ""
212
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
213
  msgstr ""
214
 
215
- #: ../super_socializer.php:2688
216
  #, php-format
217
  msgid ""
218
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -220,14 +224,14 @@ msgid ""
220
  "target=\"_blank\">here</a>"
221
  msgstr ""
222
 
223
- #: ../super_socializer.php:2688 ../super_socializer.php:2713
224
- #: ../super_socializer.php:2738 ../super_socializer.php:2763
225
- #: ../super_socializer.php:2796 ../super_socializer.php:2824
226
- #: ../super_socializer.php:2851
227
  msgid "Okay"
228
  msgstr ""
229
 
230
- #: ../super_socializer.php:2713
231
  #, php-format
232
  msgid ""
233
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -235,7 +239,7 @@ msgid ""
235
  "\">here</a>"
236
  msgstr ""
237
 
238
- #: ../super_socializer.php:2738
239
  #, php-format
240
  msgid ""
241
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -243,7 +247,7 @@ msgid ""
243
  "target=\"_blank\">here</a>"
244
  msgstr ""
245
 
246
- #: ../super_socializer.php:2763
247
  #, php-format
248
  msgid ""
249
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -251,13 +255,13 @@ msgid ""
251
  "target=\"_blank\">here</a>"
252
  msgstr ""
253
 
254
- #: ../super_socializer.php:2774
255
  #, php-format
256
  msgid ""
257
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
258
  msgstr ""
259
 
260
- #: ../super_socializer.php:2796
261
  #, php-format
262
  msgid ""
263
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -265,7 +269,7 @@ msgid ""
265
  "\"%s\" target=\"_blank\">here</a>"
266
  msgstr ""
267
 
268
- #: ../super_socializer.php:2824
269
  #, php-format
270
  msgid ""
271
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -274,7 +278,7 @@ msgid ""
274
  "your website %s with them. No need to copy-paste any code from their website."
275
  msgstr ""
276
 
277
- #: ../super_socializer.php:2851
278
  #, php-format
279
  msgid ""
280
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -282,7 +286,7 @@ msgid ""
282
  "\"%s\" target=\"_blank\">here</a>"
283
  msgstr ""
284
 
285
- #: ../super_socializer.php:2876
286
  #, php-format
287
  msgid ""
288
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -290,11 +294,11 @@ msgid ""
290
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
291
  msgstr ""
292
 
293
- #: ../super_socializer.php:2876 ../super_socializer.php:2903
294
  msgid "Dismiss"
295
  msgstr ""
296
 
297
- #: ../super_socializer.php:2902
298
  #, php-format
299
  msgid ""
300
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -303,7 +307,7 @@ msgid ""
303
  "that, clear share counts cache from \"Miscellaneous\" section"
304
  msgstr ""
305
 
306
- #: ../super_socializer.php:3115
307
  msgid ""
308
  "Your browser is blocking some features of this website. Please follow the "
309
  "instructions at {support_url} to unblock these."
@@ -313,121 +317,121 @@ msgstr ""
313
  msgid "Settings saved"
314
  msgstr "Ajustes guardados"
315
 
316
- #: ../helper.php:185
317
  #, fuzzy
318
  msgid "Click to toggle help"
319
  msgstr "Pulsa para ocultar la ayuda"
320
 
321
- #: ../helper.php:282
322
  #, fuzzy
323
  msgid "Add-Ons"
324
  msgstr "Otros Complementos"
325
 
326
- #: ../helper.php:283
327
  msgid "Support Documentation"
328
  msgstr ""
329
 
330
- #: ../helper.php:284
331
  msgid "Settings"
332
  msgstr "Ajustes"
333
 
334
- #: ../helper.php:567
335
  msgid "Account linked successfully"
336
  msgstr "Cuenta enlazada con éxito"
337
 
338
- #: ../helper.php:571
339
  msgid "Account already exists or linked"
340
  msgstr "Esta cuenta ya existe o ha sido enlazada"
341
 
342
- #: ../helper.php:607 ../helper.php:609
343
  #, fuzzy
344
  msgid "Login with"
345
  msgstr "Opciones de Ingreso"
346
 
347
- #: ../helper.php:644 ../helper.php:650
348
  msgid "Currently"
349
  msgstr "Actualmente"
350
 
351
- #: ../helper.php:644 ../helper.php:650
352
  msgid "Connected with"
353
  msgstr ""
354
 
355
- #: ../helper.php:644 ../helper.php:650
356
  msgid "Remove"
357
  msgstr "Remover"
358
 
359
- #: ../helper.php:721
360
  #, fuzzy
361
  msgid "Social Account Linking"
362
  msgstr "Comentarios en redes sociales"
363
 
364
- #: ../helper.php:771
365
  msgid "Disable Standard Social Sharing on this "
366
  msgstr "Desactivar la Barra Estándar Compartir en redes sociales aquí"
367
 
368
- #: ../helper.php:776
369
  msgid "Disable Floating Social Sharing on this "
370
  msgstr "Desactivar la Barra Flotante Compartir en redes sociales aquí"
371
 
372
- #: ../helper.php:781
373
  msgid "Disable Standard like buttons on this "
374
  msgstr "Desactivar los botones Me gusta Estándares aquí"
375
 
376
- #: ../helper.php:786
377
  msgid "Disable Floating like buttons on this "
378
  msgstr "Desactivar los botones Me gusta Flotantes aquí"
379
 
380
- #: ../helper.php:791
381
  msgid "Disable Social Commenting on this "
382
  msgstr "Desactivar Comentarios de redes sociales aquí"
383
 
384
- #: ../helper.php:800
385
  msgid "Standard Sharing Interface"
386
  msgstr "Interfaz Estándar para Compartir"
387
 
388
- #: ../helper.php:806 ../helper.php:825
389
  msgid "Starting share count for "
390
  msgstr "Comienzo del Contador de veces compartidas"
391
 
392
- #: ../helper.php:819
393
  msgid "Floating Sharing Interface"
394
  msgstr "Interfaz Flotante de botones Compartir"
395
 
396
- #: ../helper.php:922
397
  msgid "Small Avatar"
398
  msgstr "Avatar Pequeño"
399
 
400
- #: ../helper.php:926
401
  msgid "Large Avatar"
402
  msgstr "Avatar Grande"
403
 
404
- #: ../helper.php:930 ../admin/general_options.php:89
405
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
406
- #: ../admin/social_login.php:1770 ../admin/like_buttons.php:780
407
  msgid "Save Changes"
408
  msgstr "Guardar Cambios"
409
 
410
- #: ../helper.php:1023
411
  msgid "Click to delete social profile data"
412
  msgstr ""
413
 
414
- #: ../helper.php:1052
415
  #, fuzzy
416
  msgid "Deleting"
417
  msgstr "Ajustes"
418
 
419
- #: ../helper.php:1062
420
  msgid "Deleted"
421
  msgstr ""
422
 
423
- #: ../helper.php:1064
424
  msgid "Something bad happened"
425
  msgstr ""
426
 
427
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
428
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
429
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
430
- #: ../admin/social_login.php:5 ../admin/social_login.php:1774
431
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
432
  #, fuzzy, php-format
433
  msgid ""
@@ -483,14 +487,14 @@ msgstr ""
483
  "style&gt;)"
484
 
485
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
486
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1780
487
  #: ../admin/like_buttons.php:790
488
  #, fuzzy
489
  msgid "Instagram Shoutout"
490
  msgstr "Instagram"
491
 
492
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
493
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1782
494
  #: ../admin/like_buttons.php:792
495
  msgid ""
496
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -633,7 +637,7 @@ msgstr ""
633
 
634
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
635
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
636
- #: ../admin/social_login.php:1736 ../admin/like_buttons.php:50
637
  #: ../admin/like_buttons.php:751
638
  msgid "Shortcode & Widget"
639
  msgstr "Widgets y Shortcodes"
@@ -644,7 +648,7 @@ msgstr "Resolución de problmas"
644
 
645
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
646
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
647
- #: ../admin/social_login.php:46 ../admin/social_login.php:1750
648
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
649
  msgid "FAQ"
650
  msgstr "FAQ"
@@ -878,8 +882,8 @@ msgstr "Url personalizada"
878
  msgid "Url to share"
879
  msgstr "Url para compartir"
880
 
881
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:1021
882
- #: ../admin/social_login.php:1397 ../admin/like_buttons.php:105
883
  #: ../inc/widget.php:949
884
  msgid "Title"
885
  msgstr "Título"
@@ -968,7 +972,7 @@ msgid "Placement"
968
  msgstr "Ubicación"
969
 
970
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
971
- #: ../admin/social_login.php:1338 ../admin/social_login.php:1367
972
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
973
  msgid "Homepage"
974
  msgstr "Página de Inicio"
@@ -1245,7 +1249,7 @@ msgstr ""
1245
  msgid "Required only to track Facebook share count"
1246
  msgstr ""
1247
 
1248
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:193
1249
  msgid "Facebook App ID"
1250
  msgstr "Facebook App ID"
1251
 
@@ -1259,7 +1263,7 @@ msgstr ""
1259
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1260
  "para conseguir tu Facebook App ID"
1261
 
1262
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:214
1263
  #, fuzzy
1264
  msgid "Facebook App Secret"
1265
  msgstr "Facebook App ID"
@@ -1447,7 +1451,7 @@ msgstr ""
1447
  "que Facebook no está compartiendo correctamente) en el campo de texto:"
1448
 
1449
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1450
- #: ../admin/social_login.php:1752
1451
  msgid ""
1452
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1453
  "an online website for the plugin to function properly."
@@ -1504,7 +1508,7 @@ msgid ""
1504
  msgstr ""
1505
 
1506
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1507
- #: ../admin/social_login.php:1759
1508
  msgid "Why is my browser blocking some features of the plugin?"
1509
  msgstr ""
1510
 
@@ -1829,11 +1833,11 @@ msgstr "Configuración básica"
1829
  msgid "Advanced Configuration"
1830
  msgstr "Configuración básica"
1831
 
1832
- #: ../admin/social_login.php:41 ../admin/social_login.php:1536
1833
  msgid "GDPR"
1834
  msgstr ""
1835
 
1836
- #: ../admin/social_login.php:43 ../admin/social_login.php:1687
1837
  msgid "XProfile Integration"
1838
  msgstr ""
1839
 
@@ -1866,99 +1870,125 @@ msgstr ""
1866
 
1867
  #: ../admin/social_login.php:98
1868
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1869
  msgid "Select Social Networks"
1870
  msgstr "como red social primaria"
1871
 
1872
- #: ../admin/social_login.php:103
1873
  msgid "Facebook"
1874
  msgstr "Facebook"
1875
 
1876
- #: ../admin/social_login.php:107
1877
  msgid "Twitter"
1878
  msgstr "Twitter"
1879
 
1880
- #: ../admin/social_login.php:111
1881
  msgid "LinkedIn"
1882
  msgstr "LinkedIn"
1883
 
1884
- #: ../admin/social_login.php:115
1885
  #, fuzzy
1886
  msgid "Google"
1887
  msgstr "Google+"
1888
 
1889
- #: ../admin/social_login.php:119
1890
  msgid "Vkontakte"
1891
  msgstr "Vkontakte"
1892
 
1893
- #: ../admin/social_login.php:123
1894
  msgid "Instagram"
1895
  msgstr "Instagram"
1896
 
1897
- #: ../admin/social_login.php:127
1898
  msgid "Steam"
1899
  msgstr ""
1900
 
1901
- #: ../admin/social_login.php:131
1902
  msgid "Line"
1903
  msgstr ""
1904
 
1905
- #: ../admin/social_login.php:135
1906
  msgid "Wordpress"
1907
  msgstr ""
1908
 
1909
- #: ../admin/social_login.php:139
1910
  msgid "Windows Live"
1911
  msgstr ""
1912
 
1913
- #: ../admin/social_login.php:143
1914
  msgid "Yahoo"
1915
  msgstr ""
1916
 
1917
- #: ../admin/social_login.php:147
 
 
 
 
 
 
 
 
 
 
 
 
1918
  msgid "Spotify"
1919
  msgstr ""
1920
 
1921
- #: ../admin/social_login.php:150
1922
  msgid "Dribbble"
1923
  msgstr ""
1924
 
1925
- #: ../admin/social_login.php:154
1926
  #, fuzzy
1927
  msgid "Twitch"
1928
  msgstr "Twitter"
1929
 
1930
- #: ../admin/social_login.php:158
1931
  #, fuzzy
1932
  msgid "Foursquare"
1933
  msgstr "Cuadrado"
1934
 
1935
- #: ../admin/social_login.php:162
1936
  msgid "Dropbox"
1937
  msgstr ""
1938
 
1939
- #: ../admin/social_login.php:166
1940
  msgid "Disqus"
1941
  msgstr ""
1942
 
1943
- #: ../admin/social_login.php:170
1944
  msgid "Reddit"
1945
  msgstr ""
1946
 
1947
- #: ../admin/social_login.php:174
1948
  msgid "Github"
1949
  msgstr ""
1950
 
1951
- #: ../admin/social_login.php:178
1952
  msgid "Kakao"
1953
  msgstr ""
1954
 
1955
- #: ../admin/social_login.php:186
1956
  msgid "Select Social ID provider to enable in Social Login"
1957
  msgstr ""
1958
  "Seleccionar un proveedor de Social ID para permitir el ingreso a través de "
1959
  "redes sociales"
1960
 
1961
- #: ../admin/social_login.php:203
1962
  #, php-format
1963
  msgid ""
1964
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1968,7 +1998,7 @@ msgstr ""
1968
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1969
  "para conseguir tu Facebook App ID"
1970
 
1971
- #: ../admin/social_login.php:205 ../admin/social_login.php:226
1972
  #, fuzzy
1973
  msgid ""
1974
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
@@ -1976,7 +2006,7 @@ msgstr ""
1976
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
1977
  "mencionado"
1978
 
1979
- #: ../admin/social_login.php:224
1980
  #, fuzzy, php-format
1981
  msgid ""
1982
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1986,11 +2016,11 @@ msgstr ""
1986
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1987
  "para conseguir tu Facebook App ID"
1988
 
1989
- #: ../admin/social_login.php:235
1990
  msgid "Twitter API Key"
1991
  msgstr "Twitter API Key"
1992
 
1993
- #: ../admin/social_login.php:245
1994
  #, php-format
1995
  msgid ""
1996
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -2000,7 +2030,7 @@ msgstr ""
2000
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2001
  "conseguir tu Twitter Key"
2002
 
2003
- #: ../admin/social_login.php:247 ../admin/social_login.php:272
2004
  #, fuzzy
2005
  msgid ""
2006
  "Paste following url in <strong>Website</strong> option mentioned at the link"
@@ -2008,13 +2038,13 @@ msgstr ""
2008
  "Pega la siguiente url en la opción <strong>Website URL</ strong> en el "
2009
  "enlace mencionado"
2010
 
2011
- #: ../admin/social_login.php:251 ../admin/social_login.php:276
2012
- #: ../admin/social_login.php:464 ../admin/social_login.php:484
2013
- #: ../admin/social_login.php:685 ../admin/social_login.php:705
2014
- #: ../admin/social_login.php:726 ../admin/social_login.php:746
2015
- #: ../admin/social_login.php:851 ../admin/social_login.php:871
2016
- #: ../admin/social_login.php:936 ../admin/social_login.php:956
2017
- #: ../admin/social_login.php:978 ../admin/social_login.php:998
2018
  #, fuzzy
2019
  msgid ""
2020
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -2023,11 +2053,11 @@ msgstr ""
2023
  "Pega la siguiente url en la opción <strong>Callback domain</ strong> en el "
2024
  "enlace mencionado"
2025
 
2026
- #: ../admin/social_login.php:260
2027
  msgid "Twitter API Secret"
2028
  msgstr "Twitter API Secret"
2029
 
2030
- #: ../admin/social_login.php:270
2031
  #, php-format
2032
  msgid ""
2033
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -2037,12 +2067,12 @@ msgstr ""
2037
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2038
  "conseguir tu Twitter API Secret"
2039
 
2040
- #: ../admin/social_login.php:285
2041
  #, fuzzy
2042
  msgid "LinkedIn Client ID"
2043
  msgstr "LinkedIn"
2044
 
2045
- #: ../admin/social_login.php:295
2046
  #, fuzzy, php-format
2047
  msgid ""
2048
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2052,8 +2082,8 @@ msgstr ""
2052
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2053
  "para conseguir tu LinkedIn API Key"
2054
 
2055
- #: ../admin/social_login.php:297 ../admin/social_login.php:318
2056
- #: ../admin/social_login.php:504 ../admin/social_login.php:524
2057
  #, fuzzy
2058
  msgid ""
2059
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -2062,12 +2092,12 @@ msgstr ""
2062
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2063
  "mencionado"
2064
 
2065
- #: ../admin/social_login.php:306
2066
  #, fuzzy
2067
  msgid "LinkedIn Client Secret"
2068
  msgstr "LinkedIn"
2069
 
2070
- #: ../admin/social_login.php:316
2071
  #, fuzzy, php-format
2072
  msgid ""
2073
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2078,12 +2108,12 @@ msgstr ""
2078
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2079
  "para conseguir tu LinkedIn API Key"
2080
 
2081
- #: ../admin/social_login.php:327
2082
  #, fuzzy
2083
  msgid "Google Client ID"
2084
  msgstr "Google+ Client ID"
2085
 
2086
- #: ../admin/social_login.php:337
2087
  #, fuzzy, php-format
2088
  msgid ""
2089
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2093,7 +2123,7 @@ msgstr ""
2093
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2094
  "para conseguir tu GooglePlus Client ID"
2095
 
2096
- #: ../admin/social_login.php:339 ../admin/social_login.php:360
2097
  #, fuzzy
2098
  msgid ""
2099
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2102,12 +2132,12 @@ msgstr ""
2102
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2103
  "mencionado"
2104
 
2105
- #: ../admin/social_login.php:348
2106
  #, fuzzy
2107
  msgid "Google Client Secret"
2108
  msgstr "Google+ Client ID"
2109
 
2110
- #: ../admin/social_login.php:358
2111
  #, fuzzy, php-format
2112
  msgid ""
2113
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2117,11 +2147,11 @@ msgstr ""
2117
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2118
  "para conseguir tu GooglePlus Client ID"
2119
 
2120
- #: ../admin/social_login.php:369
2121
  msgid "Vkontakte Application ID"
2122
  msgstr "Vkontakte Application ID"
2123
 
2124
- #: ../admin/social_login.php:379 ../admin/social_login.php:400
2125
  #, php-format
2126
  msgid ""
2127
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2132,7 +2162,7 @@ msgstr ""
2132
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2133
  "para conseguir tu Vkontakte Application ID"
2134
 
2135
- #: ../admin/social_login.php:381 ../admin/social_login.php:402
2136
  #, fuzzy
2137
  msgid ""
2138
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2141,17 +2171,17 @@ msgstr ""
2141
  "Pega la siguiente url en la opción <strong>Site address</ strong> en el "
2142
  "enlace mencionado"
2143
 
2144
- #: ../admin/social_login.php:390
2145
  #, fuzzy
2146
  msgid "Vkontakte Secure key"
2147
  msgstr "Vkontakte"
2148
 
2149
- #: ../admin/social_login.php:411
2150
  #, fuzzy
2151
  msgid "Instagram App ID"
2152
  msgstr "Instagram Client ID"
2153
 
2154
- #: ../admin/social_login.php:421
2155
  #, fuzzy, php-format
2156
  msgid ""
2157
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2161,7 +2191,7 @@ msgstr ""
2161
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2162
  "para conseguir tu Instagram Client ID"
2163
 
2164
- #: ../admin/social_login.php:423 ../admin/social_login.php:444
2165
  #, fuzzy
2166
  msgid ""
2167
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2170,12 +2200,12 @@ msgstr ""
2170
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2171
  "mencionado"
2172
 
2173
- #: ../admin/social_login.php:432
2174
  #, fuzzy
2175
  msgid "Instagram App Secret"
2176
  msgstr "Instagram"
2177
 
2178
- #: ../admin/social_login.php:442
2179
  #, fuzzy, php-format
2180
  msgid ""
2181
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2185,11 +2215,11 @@ msgstr ""
2185
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2186
  "para conseguir tu Instagram Client ID"
2187
 
2188
- #: ../admin/social_login.php:453
2189
  msgid "Line Channel ID"
2190
  msgstr ""
2191
 
2192
- #: ../admin/social_login.php:462
2193
  #, fuzzy, php-format
2194
  msgid ""
2195
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2199,12 +2229,12 @@ msgstr ""
2199
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2200
  "para conseguir tu LinkedIn API Key"
2201
 
2202
- #: ../admin/social_login.php:473
2203
  #, fuzzy
2204
  msgid "Line Channel Secret"
2205
  msgstr "LinkedIn"
2206
 
2207
- #: ../admin/social_login.php:482
2208
  #, fuzzy, php-format
2209
  msgid ""
2210
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2214,12 +2244,12 @@ msgstr ""
2214
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2215
  "para conseguir tu LinkedIn API Key"
2216
 
2217
- #: ../admin/social_login.php:493
2218
  #, fuzzy
2219
  msgid "Wordpress Client ID"
2220
  msgstr "Google+ Client ID"
2221
 
2222
- #: ../admin/social_login.php:502
2223
  #, fuzzy, php-format
2224
  msgid ""
2225
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2229,12 +2259,12 @@ msgstr ""
2229
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2230
  "para conseguir tu GooglePlus Client ID"
2231
 
2232
- #: ../admin/social_login.php:513
2233
  #, fuzzy
2234
  msgid "Wordpress Client Secret"
2235
  msgstr "Google+ Client ID"
2236
 
2237
- #: ../admin/social_login.php:522
2238
  #, fuzzy, php-format
2239
  msgid ""
2240
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2245,12 +2275,12 @@ msgstr ""
2245
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2246
  "para conseguir tu GooglePlus Client ID"
2247
 
2248
- #: ../admin/social_login.php:533
2249
  #, fuzzy
2250
  msgid "Microsoft Client ID"
2251
  msgstr "Google+ Client ID"
2252
 
2253
- #: ../admin/social_login.php:542
2254
  #, fuzzy, php-format
2255
  msgid ""
2256
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2260,9 +2290,9 @@ msgstr ""
2260
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2261
  "para conseguir tu GooglePlus Client ID"
2262
 
2263
- #: ../admin/social_login.php:544 ../admin/social_login.php:564
2264
- #: ../admin/social_login.php:643 ../admin/social_login.php:663
2265
- #: ../admin/social_login.php:808 ../admin/social_login.php:828
2266
  #, fuzzy
2267
  msgid ""
2268
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2271,12 +2301,12 @@ msgstr ""
2271
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2272
  "mencionado"
2273
 
2274
- #: ../admin/social_login.php:553
2275
  #, fuzzy
2276
  msgid "Microsoft Client Secret"
2277
  msgstr "Google+ Client ID"
2278
 
2279
- #: ../admin/social_login.php:562
2280
  #, fuzzy, php-format
2281
  msgid ""
2282
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2287,12 +2317,12 @@ msgstr ""
2287
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2288
  "para conseguir tu GooglePlus Client ID"
2289
 
2290
- #: ../admin/social_login.php:572
2291
  #, fuzzy
2292
  msgid "Steam API Key"
2293
  msgstr "Twitter API Key"
2294
 
2295
- #: ../admin/social_login.php:581
2296
  #, fuzzy, php-format
2297
  msgid ""
2298
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2302,19 +2332,19 @@ msgstr ""
2302
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2303
  "conseguir tu Twitter Key"
2304
 
2305
- #: ../admin/social_login.php:582
2306
  #, fuzzy
2307
  msgid "Save following <strong>domain</strong> to get the key"
2308
  msgstr ""
2309
  "Pega la siguiente url en la opción <strong>Callback domain</ strong> en el "
2310
  "enlace mencionado"
2311
 
2312
- #: ../admin/social_login.php:591
2313
  #, fuzzy
2314
  msgid "Yahoo Client ID"
2315
  msgstr "Google+ Client ID"
2316
 
2317
- #: ../admin/social_login.php:600
2318
  #, fuzzy, php-format
2319
  msgid ""
2320
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2324,21 +2354,21 @@ msgstr ""
2324
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2325
  "para conseguir tu GooglePlus Client ID"
2326
 
2327
- #: ../admin/social_login.php:602 ../admin/social_login.php:622
2328
  #, fuzzy
2329
  msgid ""
2330
- "Paste following url in <strong>Redirect URI(s)</strong> option mentioned at "
2331
- "the link"
2332
  msgstr ""
2333
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2334
  "mencionado"
2335
 
2336
- #: ../admin/social_login.php:611
2337
  #, fuzzy
2338
  msgid "Yahoo Client Secret"
2339
  msgstr "Google+ Client ID"
2340
 
2341
- #: ../admin/social_login.php:620
2342
  #, fuzzy, php-format
2343
  msgid ""
2344
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2348,12 +2378,139 @@ msgstr ""
2348
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2349
  "para conseguir tu GooglePlus Client ID"
2350
 
2351
- #: ../admin/social_login.php:632
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2352
  #, fuzzy
2353
  msgid "Spotify Client ID"
2354
  msgstr "Google+ Client ID"
2355
 
2356
- #: ../admin/social_login.php:641
2357
  #, fuzzy, php-format
2358
  msgid ""
2359
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2363,12 +2520,12 @@ msgstr ""
2363
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2364
  "para conseguir tu GooglePlus Client ID"
2365
 
2366
- #: ../admin/social_login.php:652
2367
  #, fuzzy
2368
  msgid "Spotify Client Secret"
2369
  msgstr "Google+ Client ID"
2370
 
2371
- #: ../admin/social_login.php:661
2372
  #, fuzzy, php-format
2373
  msgid ""
2374
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2379,12 +2536,12 @@ msgstr ""
2379
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2380
  "para conseguir tu GooglePlus Client ID"
2381
 
2382
- #: ../admin/social_login.php:674
2383
  #, fuzzy
2384
  msgid "Dribbble Client ID"
2385
  msgstr "Google+ Client ID"
2386
 
2387
- #: ../admin/social_login.php:683
2388
  #, fuzzy, php-format
2389
  msgid ""
2390
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2394,12 +2551,12 @@ msgstr ""
2394
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2395
  "para conseguir tu GooglePlus Client ID"
2396
 
2397
- #: ../admin/social_login.php:694
2398
  #, fuzzy
2399
  msgid "Dribbble Client Secret"
2400
  msgstr "Google+ Client ID"
2401
 
2402
- #: ../admin/social_login.php:703
2403
  #, fuzzy, php-format
2404
  msgid ""
2405
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2410,12 +2567,12 @@ msgstr ""
2410
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2411
  "para conseguir tu GooglePlus Client ID"
2412
 
2413
- #: ../admin/social_login.php:715
2414
  #, fuzzy
2415
  msgid "Twitch Client ID"
2416
  msgstr "Instagram Client ID"
2417
 
2418
- #: ../admin/social_login.php:724
2419
  #, fuzzy, php-format
2420
  msgid ""
2421
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2425,12 +2582,12 @@ msgstr ""
2425
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2426
  "para conseguir tu GooglePlus Client ID"
2427
 
2428
- #: ../admin/social_login.php:735
2429
  #, fuzzy
2430
  msgid "Twitch Client Secret"
2431
  msgstr "Instagram Client ID"
2432
 
2433
- #: ../admin/social_login.php:744
2434
  #, fuzzy, php-format
2435
  msgid ""
2436
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2440,12 +2597,12 @@ msgstr ""
2440
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2441
  "para conseguir tu GooglePlus Client ID"
2442
 
2443
- #: ../admin/social_login.php:757
2444
  #, fuzzy
2445
  msgid "Foursquare Client ID"
2446
  msgstr "Google+ Client ID"
2447
 
2448
- #: ../admin/social_login.php:766
2449
  #, fuzzy, php-format
2450
  msgid ""
2451
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2456,7 +2613,7 @@ msgstr ""
2456
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2457
  "para conseguir tu GooglePlus Client ID"
2458
 
2459
- #: ../admin/social_login.php:768 ../admin/social_login.php:788
2460
  #, fuzzy
2461
  msgid ""
2462
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
@@ -2465,12 +2622,12 @@ msgstr ""
2465
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2466
  "mencionado"
2467
 
2468
- #: ../admin/social_login.php:777
2469
  #, fuzzy
2470
  msgid "Foursquare Client Secret"
2471
  msgstr "Google+ Client ID"
2472
 
2473
- #: ../admin/social_login.php:786
2474
  #, fuzzy, php-format
2475
  msgid ""
2476
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2481,11 +2638,11 @@ msgstr ""
2481
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2482
  "para conseguir tu GooglePlus Client ID"
2483
 
2484
- #: ../admin/social_login.php:797
2485
  msgid "Dropbox App Key"
2486
  msgstr ""
2487
 
2488
- #: ../admin/social_login.php:806
2489
  #, fuzzy, php-format
2490
  msgid ""
2491
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2495,12 +2652,12 @@ msgstr ""
2495
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2496
  "para conseguir tu Facebook App ID"
2497
 
2498
- #: ../admin/social_login.php:817
2499
  #, fuzzy
2500
  msgid "Dropbox App Secret"
2501
  msgstr "Facebook App ID"
2502
 
2503
- #: ../admin/social_login.php:826
2504
  #, fuzzy, php-format
2505
  msgid ""
2506
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2510,11 +2667,11 @@ msgstr ""
2510
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2511
  "para conseguir tu Facebook App ID"
2512
 
2513
- #: ../admin/social_login.php:840
2514
  msgid "Disqus Public Key"
2515
  msgstr ""
2516
 
2517
- #: ../admin/social_login.php:849
2518
  #, fuzzy, php-format
2519
  msgid ""
2520
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2524,12 +2681,12 @@ msgstr ""
2524
  "documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2525
  "conseguir tu Xing Consumer Key"
2526
 
2527
- #: ../admin/social_login.php:860
2528
  #, fuzzy
2529
  msgid "Disqus Secret Key"
2530
  msgstr "Shortname Disqus"
2531
 
2532
- #: ../admin/social_login.php:869
2533
  #, fuzzy, php-format
2534
  msgid ""
2535
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2539,12 +2696,12 @@ msgstr ""
2539
  "documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2540
  "conseguir tu Xing Consumer Key"
2541
 
2542
- #: ../admin/social_login.php:882
2543
  #, fuzzy
2544
  msgid "Reddit Client ID"
2545
  msgstr "Instagram Client ID"
2546
 
2547
- #: ../admin/social_login.php:891
2548
  #, fuzzy, php-format
2549
  msgid ""
2550
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2554,7 +2711,7 @@ msgstr ""
2554
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2555
  "para conseguir tu GooglePlus Client ID"
2556
 
2557
- #: ../admin/social_login.php:893 ../admin/social_login.php:913
2558
  #, fuzzy
2559
  msgid ""
2560
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
@@ -2563,12 +2720,12 @@ msgstr ""
2563
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2564
  "mencionado"
2565
 
2566
- #: ../admin/social_login.php:902
2567
  #, fuzzy
2568
  msgid "Reddit Client Secret"
2569
  msgstr "Instagram Client ID"
2570
 
2571
- #: ../admin/social_login.php:911
2572
  #, fuzzy, php-format
2573
  msgid ""
2574
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2578,12 +2735,12 @@ msgstr ""
2578
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2579
  "para conseguir tu GooglePlus Client ID"
2580
 
2581
- #: ../admin/social_login.php:925
2582
  #, fuzzy
2583
  msgid "Github Client ID"
2584
  msgstr "Instagram Client ID"
2585
 
2586
- #: ../admin/social_login.php:934
2587
  #, fuzzy, php-format
2588
  msgid ""
2589
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2593,12 +2750,12 @@ msgstr ""
2593
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2594
  "para conseguir tu GooglePlus Client ID"
2595
 
2596
- #: ../admin/social_login.php:945
2597
  #, fuzzy
2598
  msgid "Github Client Secret"
2599
  msgstr "Instagram Client ID"
2600
 
2601
- #: ../admin/social_login.php:954
2602
  #, fuzzy, php-format
2603
  msgid ""
2604
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2608,12 +2765,12 @@ msgstr ""
2608
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2609
  "para conseguir tu GooglePlus Client ID"
2610
 
2611
- #: ../admin/social_login.php:967
2612
  #, fuzzy
2613
  msgid "Kakao Client ID"
2614
  msgstr "Google+ Client ID"
2615
 
2616
- #: ../admin/social_login.php:976
2617
  #, fuzzy, php-format
2618
  msgid ""
2619
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2623,12 +2780,12 @@ msgstr ""
2623
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2624
  "para conseguir tu GooglePlus Client ID"
2625
 
2626
- #: ../admin/social_login.php:987
2627
  #, fuzzy
2628
  msgid "Kakao Client Secret"
2629
  msgstr "Google+ Client ID"
2630
 
2631
- #: ../admin/social_login.php:996
2632
  #, fuzzy, php-format
2633
  msgid ""
2634
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2638,50 +2795,50 @@ msgstr ""
2638
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2639
  "para conseguir tu GooglePlus Client ID"
2640
 
2641
- #: ../admin/social_login.php:1016
2642
  #, fuzzy
2643
  msgid "Social Login Options"
2644
  msgstr "Ingreso a través de redes sociales"
2645
 
2646
- #: ../admin/social_login.php:1031
2647
  msgid "Text to display above the Social Login interface"
2648
  msgstr ""
2649
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
2650
 
2651
- #: ../admin/social_login.php:1039
2652
  msgid "Trigger social login in the same browser tab"
2653
  msgstr ""
2654
 
2655
- #: ../admin/social_login.php:1049
2656
  msgid "Trigger social login in the same browser tab instead of a popup window"
2657
  msgstr ""
2658
 
2659
- #: ../admin/social_login.php:1056
2660
  #, fuzzy
2661
  msgid "Center align icons"
2662
  msgstr "Reorganizar iconos"
2663
 
2664
- #: ../admin/social_login.php:1066
2665
  #, fuzzy
2666
  msgid "Center align social login icons"
2667
  msgstr "Ingreso a través de redes sociales"
2668
 
2669
- #: ../admin/social_login.php:1073
2670
  msgid "Enable at login page"
2671
  msgstr "Permitir Página de Ingreso"
2672
 
2673
- #: ../admin/social_login.php:1083
2674
  msgid ""
2675
  "Social Login interface will get enabled at the login page of your website"
2676
  msgstr ""
2677
  "La interfaz de Ingreso a través de redes sociales aparecerá en la página de "
2678
  "acceso de tu sitio web"
2679
 
2680
- #: ../admin/social_login.php:1090
2681
  msgid "Enable at register page"
2682
  msgstr "Permitir Página de Registro"
2683
 
2684
- #: ../admin/social_login.php:1100
2685
  msgid ""
2686
  "Social Login interface will get enabled at the registration page of your "
2687
  "website"
@@ -2689,21 +2846,21 @@ msgstr ""
2689
  "La interfaz de Ingreso a través de redes sociales aparecerá en la página de "
2690
  "registro de tu sitio web"
2691
 
2692
- #: ../admin/social_login.php:1107
2693
  msgid "Enable at comment form"
2694
  msgstr "Permitir el formulario de comentarios"
2695
 
2696
- #: ../admin/social_login.php:1117
2697
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2698
  msgstr ""
2699
  "La interfaz de Ingreso a través de redes sociales aparecerá en el formulario "
2700
  "de Comentario de tu WordPress"
2701
 
2702
- #: ../admin/social_login.php:1131
2703
  msgid "Enable before WooCommerce Customer Login Form"
2704
  msgstr "Permitir antes del Formulario de Ingreso de Cliente de WooCommerce"
2705
 
2706
- #: ../admin/social_login.php:1141
2707
  msgid ""
2708
  "Social Login Interface will get enabled before the customer login form at "
2709
  "WooCommerce My Account page"
@@ -2711,12 +2868,12 @@ msgstr ""
2711
  "La interfaz de Ingreso a través de redes sociales aparecerá antes del "
2712
  "formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
2713
 
2714
- #: ../admin/social_login.php:1148
2715
  #, fuzzy
2716
  msgid "Enable at WooCommerce Customer Login Form"
2717
  msgstr "Permitir después del Formulario de Ingreso de Cliente de WooCommerce"
2718
 
2719
- #: ../admin/social_login.php:1158
2720
  #, fuzzy
2721
  msgid ""
2722
  "Integrate Social Login Interface with the customer login form at WooCommerce "
@@ -2725,12 +2882,12 @@ msgstr ""
2725
  "La interfaz de Ingreso a través de redes sociales aparecerá después del "
2726
  "formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
2727
 
2728
- #: ../admin/social_login.php:1165
2729
  #, fuzzy
2730
  msgid "Enable at WooCommerce Customer Register Form"
2731
  msgstr "Permitir después del Formulario de Ingreso de Cliente de WooCommerce"
2732
 
2733
- #: ../admin/social_login.php:1175
2734
  #, fuzzy
2735
  msgid ""
2736
  "Integrate Social Login Interface with the customer register form at "
@@ -2739,23 +2896,23 @@ msgstr ""
2739
  "La interfaz de Ingreso a través de redes sociales aparecerá después del "
2740
  "formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
2741
 
2742
- #: ../admin/social_login.php:1182
2743
  msgid "Enable at WooCommerce checkout page"
2744
  msgstr "Permitir en la página de checkout de WooCommerce"
2745
 
2746
- #: ../admin/social_login.php:1192
2747
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2748
  msgstr ""
2749
  "La interfaz de Ingreso a través de redes sociales aparecerá en la página de "
2750
  "checkout de WooCommerce"
2751
 
2752
- #: ../admin/social_login.php:1202
2753
  msgid "Auto-approve comments made by Social Login users"
2754
  msgstr ""
2755
  "Aprobar automáticamente los comentarios hechos por los usuarios conectados a "
2756
  "través de redes sociales"
2757
 
2758
- #: ../admin/social_login.php:1212
2759
  msgid ""
2760
  "If this option is enabled, and WordPress comment is made by Social Login "
2761
  "user, comment will get approved immediately without keeping in moderation."
@@ -2764,15 +2921,15 @@ msgstr ""
2764
  "usuario conectado a través de WordPress, su comentario será aprobado de "
2765
  "inmediato sin necesidad de moderación."
2766
 
2767
- #: ../admin/social_login.php:1213
2768
  msgid "Note: This is not related to Facebook comments"
2769
  msgstr "Nota: Esto no es válido para los comentarios de Facebook"
2770
 
2771
- #: ../admin/social_login.php:1222
2772
  msgid "Enable social avatar"
2773
  msgstr "Permitir avatar social"
2774
 
2775
- #: ../admin/social_login.php:1232
2776
  msgid ""
2777
  "Social profile pictures of the logged in user will be displayed as profile "
2778
  "avatar"
@@ -2780,30 +2937,30 @@ msgstr ""
2780
  "Las imágenes del perfil social del usuario conectado se mostrarán como su "
2781
  "avatar de perfil"
2782
 
2783
- #: ../admin/social_login.php:1241
2784
  msgid "Avatar quality"
2785
  msgstr "Calidad del avatar"
2786
 
2787
- #: ../admin/social_login.php:1244
2788
  msgid "Average"
2789
  msgstr "Media"
2790
 
2791
- #: ../admin/social_login.php:1245
2792
  msgid "Best"
2793
  msgstr "Alta"
2794
 
2795
- #: ../admin/social_login.php:1252
2796
  msgid "Choose avatar quality"
2797
  msgstr "Elegir la calidad del avatar"
2798
 
2799
- #: ../admin/social_login.php:1260
2800
  msgid ""
2801
  "Show option for users to update social avatar at BuddyPress profile page"
2802
  msgstr ""
2803
  "Mostrar la opción para los usuarios de actualizar su avatar social en su "
2804
  "página de perfil de BuddyPress"
2805
 
2806
- #: ../admin/social_login.php:1270
2807
  msgid ""
2808
  "If enabled, users would be able to update their social avatar from \"Profile "
2809
  "photo\" section in BuddyPress profile at front-end"
@@ -2811,7 +2968,7 @@ msgstr ""
2811
  "Si está activa, los usuarios podrán actualizar su avatar social desde la "
2812
  "sección \"Foto de perfil\" en el perfil BuddyPress, en la vista de usuario"
2813
 
2814
- #: ../admin/social_login.php:1290
2815
  msgid ""
2816
  "If enabled and Social ID provider does not provide user's email address on "
2817
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2821,11 +2978,11 @@ msgstr ""
2821
  "email del usuario al iniciar sesión, se le pedirá al usuario que proporcione "
2822
  "su dirección de email. De lo contrario, se generará un email aleatorio"
2823
 
2824
- #: ../admin/social_login.php:1298
2825
  msgid "Send post-registration email to user to set account password"
2826
  msgstr ""
2827
 
2828
- #: ../admin/social_login.php:1308
2829
  msgid ""
2830
  "If enabled, an email will be sent to user after registration through Social "
2831
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2835,12 +2992,12 @@ msgstr ""
2835
  "de la red social elegida, con su nombre de usuario y su contraseña para "
2836
  "poder iniciar sesión a través del formulario de acceso tradicional"
2837
 
2838
- #: ../admin/social_login.php:1315
2839
  #, fuzzy
2840
  msgid "Send new user registration notification email to admin"
2841
  msgstr "Desactivar el registro de usuario mediante redes sociales"
2842
 
2843
- #: ../admin/social_login.php:1325
2844
  #, fuzzy
2845
  msgid ""
2846
  "If enabled, an email will be sent to admin after new user registers through "
@@ -2850,40 +3007,40 @@ msgstr ""
2850
  "de la red social elegida, con su nombre de usuario y su contraseña para "
2851
  "poder iniciar sesión a través del formulario de acceso tradicional"
2852
 
2853
- #: ../admin/social_login.php:1332
2854
  msgid "Login redirection"
2855
  msgstr "Redirección de Ingreso"
2856
 
2857
- #: ../admin/social_login.php:1336
2858
  msgid "Same page where user logged in"
2859
  msgstr "La misma página en la que el usuario ha iniciado sesión"
2860
 
2861
- #: ../admin/social_login.php:1340 ../admin/social_login.php:1369
2862
  msgid "Account dashboard"
2863
  msgstr "Panel de cuenta de usuario"
2864
 
2865
- #: ../admin/social_login.php:1343 ../admin/social_login.php:1372
2866
  msgid "BuddyPress profile page"
2867
  msgstr "Página de perfil de BuddyPress"
2868
 
2869
- #: ../admin/social_login.php:1346 ../admin/social_login.php:1375
2870
  msgid "Custom Url"
2871
  msgstr "Url personalizada"
2872
 
2873
- #: ../admin/social_login.php:1354
2874
  msgid "User will be redirected to the selected page after Social Login"
2875
  msgstr ""
2876
  "El usuario será redirigido a la página seleccionada después de su ingreso"
2877
 
2878
- #: ../admin/social_login.php:1361
2879
  msgid "Registration redirection"
2880
  msgstr "Redirección de Registro"
2881
 
2882
- #: ../admin/social_login.php:1365
2883
  msgid "Same page from where user registered"
2884
  msgstr "La misma página en la que el usuario se ha registrado"
2885
 
2886
- #: ../admin/social_login.php:1383
2887
  msgid ""
2888
  "User will be redirected to the selected page after registration (first "
2889
  "Social Login) through Social Login"
@@ -2891,18 +3048,18 @@ msgstr ""
2891
  "El usuario será redirigido a la página seleccionada después de su registro "
2892
  "(en su primer inicio de sesión) a través de la red social"
2893
 
2894
- #: ../admin/social_login.php:1392
2895
  #, fuzzy
2896
  msgid "Social Account Linking Options"
2897
  msgstr "Comentarios en redes sociales"
2898
 
2899
- #: ../admin/social_login.php:1407
2900
  #, fuzzy
2901
  msgid "Text to display above the Social Account Linking interface"
2902
  msgstr ""
2903
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
2904
 
2905
- #: ../admin/social_login.php:1414
2906
  #, fuzzy
2907
  msgid ""
2908
  "Link social account to already existing account, if email address matches"
@@ -2910,7 +3067,7 @@ msgstr ""
2910
  "Enlaza la cuenta de tu red social para ingresar en tu cuenta de este sitio "
2911
  "web "
2912
 
2913
- #: ../admin/social_login.php:1424
2914
  msgid ""
2915
  "If email address of the user's Social Account matches with an already "
2916
  "existing account at your website, that social account will be linked to "
@@ -2918,12 +3075,12 @@ msgid ""
2918
  "Linking interface at their profile page."
2919
  msgstr ""
2920
 
2921
- #: ../admin/social_login.php:1432
2922
  msgid "Enable social account linking at BuddyPress profile page"
2923
  msgstr ""
2924
  "Permitir cuenta de red social enlazando a la página de perfil de BuddyPress"
2925
 
2926
- #: ../admin/social_login.php:1442
2927
  msgid ""
2928
  "Enable this option to show social account linking interface at BuddyPress "
2929
  "profile page"
@@ -2931,15 +3088,15 @@ msgstr ""
2931
  "Activa esta opción para mostrar la cuenta social enlazando a la interfaz de "
2932
  "la página de perfil de BuddyPress"
2933
 
2934
- #: ../admin/social_login.php:1453
2935
  msgid "Email popup options"
2936
  msgstr "Opciones de popup del Email"
2937
 
2938
- #: ../admin/social_login.php:1458
2939
  msgid "Text on 'Email required' popup"
2940
  msgstr "Texto del popup 'Email requerido'"
2941
 
2942
- #: ../admin/social_login.php:1468
2943
  msgid ""
2944
  "This text will be displayed on email required popup. Leave empty if not "
2945
  "required."
@@ -2947,11 +3104,11 @@ msgstr ""
2947
  "Este texto se mostrará en el popup de email requerido. Déjalo en blanco si "
2948
  "no es necesario."
2949
 
2950
- #: ../admin/social_login.php:1476
2951
  msgid "Error message for 'Email required' popup"
2952
  msgstr "Mensaje de error para el popup de 'Email requerido'"
2953
 
2954
- #: ../admin/social_login.php:1486
2955
  msgid ""
2956
  "This message will be displayed to user if it provides invalid or already "
2957
  "registered email"
@@ -2959,11 +3116,11 @@ msgstr ""
2959
  "Este mensaje se mostrará si el usuario introduce un email no válido o ya "
2960
  "registrado"
2961
 
2962
- #: ../admin/social_login.php:1494
2963
  msgid "Email popup height"
2964
  msgstr "Altura del popup del Email"
2965
 
2966
- #: ../admin/social_login.php:1504
2967
  msgid ""
2968
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2969
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2973,11 +3130,11 @@ msgstr ""
2973
  "requerido\", puedes aumentar la altura del popup especificándola en esta "
2974
  "opción. Déjala en blanco para la altura por defecto."
2975
 
2976
- #: ../admin/social_login.php:1511
2977
  msgid "Enable email verification"
2978
  msgstr "Activar verificación por email"
2979
 
2980
- #: ../admin/social_login.php:1521
2981
  msgid ""
2982
  "If enabled, email provided by the user will be verified by sending a "
2983
  "confirmation link to that email. User would not be able to login without "
@@ -2987,108 +3144,108 @@ msgstr ""
2987
  "por el usuario. El usuario no podrá conectarse sin verificar su email y "
2988
  "pulsar este enlace"
2989
 
2990
- #: ../admin/social_login.php:1541
2991
  #, fuzzy
2992
  msgid "Enable GDPR opt-in"
2993
  msgstr "Permitir Comentarios de Disqus"
2994
 
2995
- #: ../admin/social_login.php:1551
2996
  msgid ""
2997
  "Enable it to show GDPR opt-in for social login and social account linking"
2998
  msgstr ""
2999
 
3000
- #: ../admin/social_login.php:1559
3001
  #, fuzzy
3002
  msgid "Placement of GDPR opt-in"
3003
  msgstr "Permitir Comentarios de Disqus"
3004
 
3005
- #: ../admin/social_login.php:1563
3006
  #, fuzzy
3007
  msgid "Above Social Login icons"
3008
  msgstr "Ingreso a través de redes sociales"
3009
 
3010
- #: ../admin/social_login.php:1565
3011
  #, fuzzy
3012
  msgid "Below Social Login icons"
3013
  msgstr "Ingreso a través de redes sociales"
3014
 
3015
- #: ../admin/social_login.php:1571
3016
  #, fuzzy
3017
  msgid "Placement of GDPR opt-in above or below the social login icons"
3018
  msgstr ""
3019
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
3020
 
3021
- #: ../admin/social_login.php:1578
3022
  msgid "Opt-in text"
3023
  msgstr ""
3024
 
3025
- #: ../admin/social_login.php:1588
3026
  #, fuzzy
3027
  msgid "Text for the GDPR opt-in"
3028
  msgstr "Permitir Comentarios de Disqus"
3029
 
3030
- #: ../admin/social_login.php:1595
3031
  msgid "Text to link to Terms-Conditions page"
3032
  msgstr ""
3033
 
3034
- #: ../admin/social_login.php:1605
3035
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
3036
  msgstr ""
3037
 
3038
- #: ../admin/social_login.php:1612
3039
  msgid "Terms-Conditions Url"
3040
  msgstr ""
3041
 
3042
- #: ../admin/social_login.php:1622
3043
  #, fuzzy
3044
  msgid "Url of the terms-conditions page of your website"
3045
  msgstr "Url de la página de inicio de tu sitio web"
3046
 
3047
- #: ../admin/social_login.php:1629
3048
  msgid "Text to link to Privacy Policy page"
3049
  msgstr ""
3050
 
3051
- #: ../admin/social_login.php:1639
3052
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
3053
  msgstr ""
3054
 
3055
- #: ../admin/social_login.php:1646
3056
  msgid "Privacy Policy Url"
3057
  msgstr ""
3058
 
3059
- #: ../admin/social_login.php:1656
3060
  #, fuzzy
3061
  msgid "Url of the privacy policy page of your website"
3062
  msgstr "Url de la página de inicio de tu sitio web"
3063
 
3064
- #: ../admin/social_login.php:1707 ../inc/widget.php:260 ../inc/widget.php:438
3065
  #: ../inc/widget.php:602 ../inc/widget.php:750
3066
  msgid "Select"
3067
  msgstr "Seleccionar"
3068
 
3069
- #: ../admin/social_login.php:1738
3070
  msgid "Social Login Shortcode & Widget"
3071
  msgstr "Widget y Shortcode para el Ingreso a través de redes sociales"
3072
 
3073
- #: ../admin/social_login.php:1739
3074
  msgid "Social Linking Shortcode"
3075
  msgstr "Shortcode para enlace a través de redes sociales"
3076
 
3077
- #: ../admin/social_login.php:1754
3078
  msgid "Why is social login not working?"
3079
  msgstr ""
3080
 
3081
- #: ../admin/social_login.php:1755
3082
  msgid ""
3083
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3084
  "belong to the same app"
3085
  msgstr ""
3086
 
3087
- #: ../admin/social_login.php:1757
3088
  msgid "Social Login not working with Varnish enabled"
3089
  msgstr ""
3090
 
3091
- #: ../admin/social_login.php:1758
3092
  msgid ""
3093
  "Why the user is not appearing logged in even after Social Login until the "
3094
  "webpage is refreshed manually?"
@@ -3300,6 +3457,10 @@ msgstr ""
3300
  msgid "Archives"
3301
  msgstr "Archivos por Categoría"
3302
 
 
 
 
 
3303
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3304
  msgid "Invalid request"
3305
  msgstr "Petición no válida"
@@ -3308,28 +3469,32 @@ msgstr "Petición no válida"
3308
  msgid "Providers not selected"
3309
  msgstr "Redes sociales no seleccionadas"
3310
 
3311
- #: ../inc/social_login.php:968
 
 
 
 
3312
  msgid "Email"
3313
  msgstr ""
3314
 
3315
- #: ../inc/social_login.php:969
3316
  msgid "Confirm email"
3317
  msgstr ""
3318
 
3319
- #: ../inc/social_login.php:971
3320
  msgid "Save"
3321
  msgstr ""
3322
 
3323
- #: ../inc/social_login.php:972
3324
  msgid "Cancel"
3325
  msgstr ""
3326
 
3327
- #: ../inc/social_login.php:1046
3328
  #, fuzzy
3329
  msgid "Email Verification"
3330
  msgstr "Activar verificación por email"
3331
 
3332
- #: ../inc/social_login.php:1048
3333
  msgid ""
3334
  "Please click on the following link or paste it in browser to verify your "
3335
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-06 12:21+0530\n"
6
+ "PO-Revision-Date: 2021-04-06 12:21+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../super_socializer.php:1634
20
  #, fuzzy
21
  msgid ""
22
  "cURL is not enabled at your website server. Please contact your website "
26
  "posible que necesites contactar con el administrador de tu servidor para "
27
  "verificar esto"
28
 
29
+ #: ../super_socializer.php:1662
30
  #, fuzzy, php-format
31
  msgid ""
32
  "Enter exactly the following url in <strong>Website</strong> option in your "
35
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
36
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
37
 
38
+ #: ../super_socializer.php:1665
39
  #, fuzzy, php-format
40
  msgid ""
41
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
44
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
45
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
46
 
47
+ #: ../super_socializer.php:1668
48
  msgid ""
49
  "Make sure cURL is enabled at your website server. You may need to contact "
50
  "the server administrator of your website to verify this"
53
  "posible que necesites contactar con el administrador de tu servidor para "
54
  "verificar esto"
55
 
56
+ #: ../super_socializer.php:1829
57
+ msgid "Search"
58
+ msgstr ""
59
+
60
+ #: ../super_socializer.php:1851 ../helper.php:995
61
  msgid "Please verify your email address to login."
62
  msgstr "Por favor verifica tu dirección de email para ingresar."
63
 
64
+ #: ../super_socializer.php:1851
65
  msgid "Your email has been verified. Now you can login to your account"
66
  msgstr "Tu email ha sido verificado. Ahora puedes ingresar en tu cuenta"
67
 
68
+ #: ../super_socializer.php:1855
69
  msgid "Notification"
70
  msgstr "Notificación"
71
 
72
+ #: ../super_socializer.php:1873 ../admin/social_login.php:1443
73
  msgid "Email required"
74
  msgstr "Email requerido"
75
 
76
+ #: ../super_socializer.php:1876
77
  msgid "Please check your email inbox to complete the registration."
78
  msgstr ""
79
  "Por favor revisa la bandeja de entrada de tu correo para completar el "
80
  "registro."
81
 
82
+ #: ../super_socializer.php:1945
83
  msgid "Leave a reply"
84
  msgstr "Deja una respuesta"
85
 
86
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
87
  msgid "Shares"
88
  msgstr ""
89
 
90
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
91
  msgid "Share"
92
  msgstr ""
93
 
94
+ #: ../super_socializer.php:1961
95
  #, fuzzy
96
  msgid "Link copied."
97
  msgstr "LinkedIn"
98
 
99
+ #: ../super_socializer.php:2206
100
  msgid "Super Socializer - General Options"
101
  msgstr "Super Socializer - Opciones Generales"
102
 
103
+ #: ../super_socializer.php:2206 ../admin/general_options.php:15
104
  #: ../admin/social_commenting.php:47
105
  msgid "General Options"
106
  msgstr "Opciones Generales"
107
 
108
+ #: ../super_socializer.php:2274 ../helper.php:924
109
  msgid "Social Avatar"
110
  msgstr "Avatar Social"
111
 
112
+ #: ../super_socializer.php:2277
113
  msgid "Small Avatar Url"
114
  msgstr "Url de Avatar Pequeño"
115
 
116
+ #: ../super_socializer.php:2281
117
  msgid "Large Avatar Url"
118
  msgstr "Url de Avatar Grande"
119
 
120
+ #: ../super_socializer.php:2285 ../helper.php:927
121
  msgid ""
122
  "Do not fetch and update social avatar from my profile, next time I Social "
123
  "Login"
125
  "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la "
126
  "próxima vez | Social Login"
127
 
128
+ #: ../super_socializer.php:2289 ../helper.php:928
129
  msgid "Update social avatar, next time I Social Login"
130
  msgstr "Actualiza tu avatar de redes sociales | Social Login"
131
 
132
+ #: ../super_socializer.php:2366
133
  msgid "Login with your Social ID"
134
  msgstr ""
135
 
136
+ #: ../super_socializer.php:2367
137
  msgid "Email you entered is already registered or invalid"
138
  msgstr "El email que has escrito ya está registrado o no es válido"
139
 
140
+ #: ../super_socializer.php:2374
141
  msgid "Please enter a valid email address. You might be required to verify it"
142
  msgstr ""
143
  "Por favor escribe una dirección de email válida. Puedes ser requerido para "
144
  "verificarla"
145
 
146
+ #: ../super_socializer.php:2378 ../super_socializer.php:3123
147
  msgid "Link your social account to login to your account at this website"
148
  msgstr ""
149
  "Enlaza la cuenta de tu red social para ingresar en tu cuenta de este sitio "
150
  "web "
151
 
152
+ #: ../super_socializer.php:2633
153
  msgid "Thanks for installing Super Socializer plugin"
154
  msgstr ""
155
 
156
+ #: ../super_socializer.php:2635
157
  msgid "Configure the Plugin"
158
  msgstr ""
159
 
160
+ #: ../super_socializer.php:2646
161
  msgid ""
162
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
163
  "current version of Super Socializer"
164
  msgstr ""
165
 
166
+ #: ../super_socializer.php:2655
167
  msgid ""
168
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
169
  "version of Super Socializer"
170
  msgstr ""
171
 
172
+ #: ../super_socializer.php:2664
173
  msgid ""
174
+ "Update \"Social Login Buttons\" add-on to version 1.2.7 or above for "
175
  "compatibility with current version of Super Socializer"
176
  msgstr ""
177
 
178
+ #: ../super_socializer.php:2673
179
  msgid ""
180
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
181
  "with current version of Super Socializer"
182
  msgstr ""
183
 
184
+ #: ../super_socializer.php:2682
185
  msgid ""
186
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
187
  "with current version of Super Socializer"
188
  msgstr ""
189
 
190
+ #: ../super_socializer.php:2693
191
  #, php-format
192
  msgid ""
193
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
194
  msgstr ""
195
 
196
+ #: ../super_socializer.php:2702
197
  #, php-format
198
  msgid ""
199
  "To continue using Instagram login create a new Instagram App as described <a "
201
  "Instagram App Secret <a href=\"%s\">here</a>"
202
  msgstr ""
203
 
204
+ #: ../super_socializer.php:2711 ../super_socializer.php:2720
205
  #, php-format
206
  msgid ""
207
  "To continue using bitly url shortener, login to your bit.ly account and "
210
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
211
  msgstr ""
212
 
213
+ #: ../super_socializer.php:2736
214
  #, php-format
215
  msgid ""
216
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
217
  msgstr ""
218
 
219
+ #: ../super_socializer.php:2760
220
  #, php-format
221
  msgid ""
222
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
224
  "target=\"_blank\">here</a>"
225
  msgstr ""
226
 
227
+ #: ../super_socializer.php:2760 ../super_socializer.php:2785
228
+ #: ../super_socializer.php:2810 ../super_socializer.php:2835
229
+ #: ../super_socializer.php:2868 ../super_socializer.php:2896
230
+ #: ../super_socializer.php:2923
231
  msgid "Okay"
232
  msgstr ""
233
 
234
+ #: ../super_socializer.php:2785
235
  #, php-format
236
  msgid ""
237
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
239
  "\">here</a>"
240
  msgstr ""
241
 
242
+ #: ../super_socializer.php:2810
243
  #, php-format
244
  msgid ""
245
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
247
  "target=\"_blank\">here</a>"
248
  msgstr ""
249
 
250
+ #: ../super_socializer.php:2835
251
  #, php-format
252
  msgid ""
253
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
255
  "target=\"_blank\">here</a>"
256
  msgstr ""
257
 
258
+ #: ../super_socializer.php:2846
259
  #, php-format
260
  msgid ""
261
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
262
  msgstr ""
263
 
264
+ #: ../super_socializer.php:2868
265
  #, php-format
266
  msgid ""
267
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
269
  "\"%s\" target=\"_blank\">here</a>"
270
  msgstr ""
271
 
272
+ #: ../super_socializer.php:2896
273
  #, php-format
274
  msgid ""
275
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
278
  "your website %s with them. No need to copy-paste any code from their website."
279
  msgstr ""
280
 
281
+ #: ../super_socializer.php:2923
282
  #, php-format
283
  msgid ""
284
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
286
  "\"%s\" target=\"_blank\">here</a>"
287
  msgstr ""
288
 
289
+ #: ../super_socializer.php:2948
290
  #, php-format
291
  msgid ""
292
  "If you cannot get Linkedin login to work after updating the plugin, replace "
294
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
295
  msgstr ""
296
 
297
+ #: ../super_socializer.php:2948 ../super_socializer.php:2975
298
  msgid "Dismiss"
299
  msgstr ""
300
 
301
+ #: ../super_socializer.php:2974
302
  #, php-format
303
  msgid ""
304
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
307
  "that, clear share counts cache from \"Miscellaneous\" section"
308
  msgstr ""
309
 
310
+ #: ../super_socializer.php:3199
311
  msgid ""
312
  "Your browser is blocking some features of this website. Please follow the "
313
  "instructions at {support_url} to unblock these."
317
  msgid "Settings saved"
318
  msgstr "Ajustes guardados"
319
 
320
+ #: ../helper.php:194
321
  #, fuzzy
322
  msgid "Click to toggle help"
323
  msgstr "Pulsa para ocultar la ayuda"
324
 
325
+ #: ../helper.php:291
326
  #, fuzzy
327
  msgid "Add-Ons"
328
  msgstr "Otros Complementos"
329
 
330
+ #: ../helper.php:292
331
  msgid "Support Documentation"
332
  msgstr ""
333
 
334
+ #: ../helper.php:293
335
  msgid "Settings"
336
  msgstr "Ajustes"
337
 
338
+ #: ../helper.php:576
339
  msgid "Account linked successfully"
340
  msgstr "Cuenta enlazada con éxito"
341
 
342
+ #: ../helper.php:580
343
  msgid "Account already exists or linked"
344
  msgstr "Esta cuenta ya existe o ha sido enlazada"
345
 
346
+ #: ../helper.php:616 ../helper.php:618
347
  #, fuzzy
348
  msgid "Login with"
349
  msgstr "Opciones de Ingreso"
350
 
351
+ #: ../helper.php:653 ../helper.php:659
352
  msgid "Currently"
353
  msgstr "Actualmente"
354
 
355
+ #: ../helper.php:653 ../helper.php:659
356
  msgid "Connected with"
357
  msgstr ""
358
 
359
+ #: ../helper.php:653 ../helper.php:659
360
  msgid "Remove"
361
  msgstr "Remover"
362
 
363
+ #: ../helper.php:730
364
  #, fuzzy
365
  msgid "Social Account Linking"
366
  msgstr "Comentarios en redes sociales"
367
 
368
+ #: ../helper.php:780
369
  msgid "Disable Standard Social Sharing on this "
370
  msgstr "Desactivar la Barra Estándar Compartir en redes sociales aquí"
371
 
372
+ #: ../helper.php:785
373
  msgid "Disable Floating Social Sharing on this "
374
  msgstr "Desactivar la Barra Flotante Compartir en redes sociales aquí"
375
 
376
+ #: ../helper.php:790
377
  msgid "Disable Standard like buttons on this "
378
  msgstr "Desactivar los botones Me gusta Estándares aquí"
379
 
380
+ #: ../helper.php:795
381
  msgid "Disable Floating like buttons on this "
382
  msgstr "Desactivar los botones Me gusta Flotantes aquí"
383
 
384
+ #: ../helper.php:800
385
  msgid "Disable Social Commenting on this "
386
  msgstr "Desactivar Comentarios de redes sociales aquí"
387
 
388
+ #: ../helper.php:809
389
  msgid "Standard Sharing Interface"
390
  msgstr "Interfaz Estándar para Compartir"
391
 
392
+ #: ../helper.php:815 ../helper.php:834
393
  msgid "Starting share count for "
394
  msgstr "Comienzo del Contador de veces compartidas"
395
 
396
+ #: ../helper.php:828
397
  msgid "Floating Sharing Interface"
398
  msgstr "Interfaz Flotante de botones Compartir"
399
 
400
+ #: ../helper.php:931
401
  msgid "Small Avatar"
402
  msgstr "Avatar Pequeño"
403
 
404
+ #: ../helper.php:935
405
  msgid "Large Avatar"
406
  msgstr "Avatar Grande"
407
 
408
+ #: ../helper.php:939 ../admin/general_options.php:89
409
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
410
+ #: ../admin/social_login.php:1933 ../admin/like_buttons.php:780
411
  msgid "Save Changes"
412
  msgstr "Guardar Cambios"
413
 
414
+ #: ../helper.php:1032
415
  msgid "Click to delete social profile data"
416
  msgstr ""
417
 
418
+ #: ../helper.php:1061
419
  #, fuzzy
420
  msgid "Deleting"
421
  msgstr "Ajustes"
422
 
423
+ #: ../helper.php:1071
424
  msgid "Deleted"
425
  msgstr ""
426
 
427
+ #: ../helper.php:1073
428
  msgid "Something bad happened"
429
  msgstr ""
430
 
431
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
432
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
433
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
434
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1937
435
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
436
  #, fuzzy, php-format
437
  msgid ""
487
  "style&gt;)"
488
 
489
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
490
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1943
491
  #: ../admin/like_buttons.php:790
492
  #, fuzzy
493
  msgid "Instagram Shoutout"
494
  msgstr "Instagram"
495
 
496
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
497
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1945
498
  #: ../admin/like_buttons.php:792
499
  msgid ""
500
  "If you can send (to hello@heateor.com) how this plugin is helping your "
637
 
638
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
639
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
640
+ #: ../admin/social_login.php:1899 ../admin/like_buttons.php:50
641
  #: ../admin/like_buttons.php:751
642
  msgid "Shortcode & Widget"
643
  msgstr "Widgets y Shortcodes"
648
 
649
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
650
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
651
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1913
652
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
653
  msgid "FAQ"
654
  msgstr "FAQ"
882
  msgid "Url to share"
883
  msgstr "Url para compartir"
884
 
885
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:1184
886
+ #: ../admin/social_login.php:1560 ../admin/like_buttons.php:105
887
  #: ../inc/widget.php:949
888
  msgid "Title"
889
  msgstr "Título"
972
  msgstr "Ubicación"
973
 
974
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
975
+ #: ../admin/social_login.php:1501 ../admin/social_login.php:1530
976
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
977
  msgid "Homepage"
978
  msgstr "Página de Inicio"
1249
  msgid "Required only to track Facebook share count"
1250
  msgstr ""
1251
 
1252
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:222
1253
  msgid "Facebook App ID"
1254
  msgstr "Facebook App ID"
1255
 
1263
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1264
  "para conseguir tu Facebook App ID"
1265
 
1266
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:243
1267
  #, fuzzy
1268
  msgid "Facebook App Secret"
1269
  msgstr "Facebook App ID"
1451
  "que Facebook no está compartiendo correctamente) en el campo de texto:"
1452
 
1453
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1454
+ #: ../admin/social_login.php:1915
1455
  msgid ""
1456
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1457
  "an online website for the plugin to function properly."
1508
  msgstr ""
1509
 
1510
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1511
+ #: ../admin/social_login.php:1922
1512
  msgid "Why is my browser blocking some features of the plugin?"
1513
  msgstr ""
1514
 
1833
  msgid "Advanced Configuration"
1834
  msgstr "Configuración básica"
1835
 
1836
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1699
1837
  msgid "GDPR"
1838
  msgstr ""
1839
 
1840
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1850
1841
  msgid "XProfile Integration"
1842
  msgstr ""
1843
 
1870
 
1871
  #: ../admin/social_login.php:98
1872
  #, fuzzy
1873
+ msgid "Disable Social Login for admin accounts"
1874
+ msgstr "Ingreso a través de redes sociales"
1875
+
1876
+ #: ../admin/social_login.php:108
1877
+ #, fuzzy
1878
+ msgid ""
1879
+ "After enabling this option, administrator users will not be able to login "
1880
+ "through social login. Other users will be able to login via social login."
1881
+ msgstr ""
1882
+ "Después de activar esta opción, los nuevos usuarios no podrán acceder a "
1883
+ "través de las redes sociales. Sólo los usuarios ya existentes podrán hacerlo."
1884
+
1885
+ #: ../admin/social_login.php:115
1886
+ #, fuzzy
1887
  msgid "Select Social Networks"
1888
  msgstr "como red social primaria"
1889
 
1890
+ #: ../admin/social_login.php:120
1891
  msgid "Facebook"
1892
  msgstr "Facebook"
1893
 
1894
+ #: ../admin/social_login.php:124
1895
  msgid "Twitter"
1896
  msgstr "Twitter"
1897
 
1898
+ #: ../admin/social_login.php:128
1899
  msgid "LinkedIn"
1900
  msgstr "LinkedIn"
1901
 
1902
+ #: ../admin/social_login.php:132
1903
  #, fuzzy
1904
  msgid "Google"
1905
  msgstr "Google+"
1906
 
1907
+ #: ../admin/social_login.php:136
1908
  msgid "Vkontakte"
1909
  msgstr "Vkontakte"
1910
 
1911
+ #: ../admin/social_login.php:140
1912
  msgid "Instagram"
1913
  msgstr "Instagram"
1914
 
1915
+ #: ../admin/social_login.php:144
1916
  msgid "Steam"
1917
  msgstr ""
1918
 
1919
+ #: ../admin/social_login.php:148
1920
  msgid "Line"
1921
  msgstr ""
1922
 
1923
+ #: ../admin/social_login.php:152
1924
  msgid "Wordpress"
1925
  msgstr ""
1926
 
1927
+ #: ../admin/social_login.php:156
1928
  msgid "Windows Live"
1929
  msgstr ""
1930
 
1931
+ #: ../admin/social_login.php:160
1932
  msgid "Yahoo"
1933
  msgstr ""
1934
 
1935
+ #: ../admin/social_login.php:164
1936
+ msgid "Discord"
1937
+ msgstr ""
1938
+
1939
+ #: ../admin/social_login.php:168
1940
+ msgid "Amazon"
1941
+ msgstr ""
1942
+
1943
+ #: ../admin/social_login.php:172
1944
+ msgid "Stackoverflow"
1945
+ msgstr ""
1946
+
1947
+ #: ../admin/social_login.php:176
1948
  msgid "Spotify"
1949
  msgstr ""
1950
 
1951
+ #: ../admin/social_login.php:179
1952
  msgid "Dribbble"
1953
  msgstr ""
1954
 
1955
+ #: ../admin/social_login.php:183
1956
  #, fuzzy
1957
  msgid "Twitch"
1958
  msgstr "Twitter"
1959
 
1960
+ #: ../admin/social_login.php:187
1961
  #, fuzzy
1962
  msgid "Foursquare"
1963
  msgstr "Cuadrado"
1964
 
1965
+ #: ../admin/social_login.php:191
1966
  msgid "Dropbox"
1967
  msgstr ""
1968
 
1969
+ #: ../admin/social_login.php:195
1970
  msgid "Disqus"
1971
  msgstr ""
1972
 
1973
+ #: ../admin/social_login.php:199
1974
  msgid "Reddit"
1975
  msgstr ""
1976
 
1977
+ #: ../admin/social_login.php:203
1978
  msgid "Github"
1979
  msgstr ""
1980
 
1981
+ #: ../admin/social_login.php:207
1982
  msgid "Kakao"
1983
  msgstr ""
1984
 
1985
+ #: ../admin/social_login.php:215
1986
  msgid "Select Social ID provider to enable in Social Login"
1987
  msgstr ""
1988
  "Seleccionar un proveedor de Social ID para permitir el ingreso a través de "
1989
  "redes sociales"
1990
 
1991
+ #: ../admin/social_login.php:232
1992
  #, php-format
1993
  msgid ""
1994
  "Required for Facebook Social Login to work. Please follow the documentation "
1998
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1999
  "para conseguir tu Facebook App ID"
2000
 
2001
+ #: ../admin/social_login.php:234 ../admin/social_login.php:255
2002
  #, fuzzy
2003
  msgid ""
2004
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
2006
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2007
  "mencionado"
2008
 
2009
+ #: ../admin/social_login.php:253
2010
  #, fuzzy, php-format
2011
  msgid ""
2012
  "Required for Facebook Social Login to work. Please follow the documentation "
2016
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2017
  "para conseguir tu Facebook App ID"
2018
 
2019
+ #: ../admin/social_login.php:264
2020
  msgid "Twitter API Key"
2021
  msgstr "Twitter API Key"
2022
 
2023
+ #: ../admin/social_login.php:274
2024
  #, php-format
2025
  msgid ""
2026
  "Required for Twitter Social Login to work. Please follow the documentation "
2030
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2031
  "conseguir tu Twitter Key"
2032
 
2033
+ #: ../admin/social_login.php:276 ../admin/social_login.php:301
2034
  #, fuzzy
2035
  msgid ""
2036
  "Paste following url in <strong>Website</strong> option mentioned at the link"
2038
  "Pega la siguiente url en la opción <strong>Website URL</ strong> en el "
2039
  "enlace mencionado"
2040
 
2041
+ #: ../admin/social_login.php:280 ../admin/social_login.php:305
2042
+ #: ../admin/social_login.php:493 ../admin/social_login.php:513
2043
+ #: ../admin/social_login.php:848 ../admin/social_login.php:868
2044
+ #: ../admin/social_login.php:889 ../admin/social_login.php:909
2045
+ #: ../admin/social_login.php:1014 ../admin/social_login.php:1034
2046
+ #: ../admin/social_login.php:1099 ../admin/social_login.php:1119
2047
+ #: ../admin/social_login.php:1141 ../admin/social_login.php:1161
2048
  #, fuzzy
2049
  msgid ""
2050
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
2053
  "Pega la siguiente url en la opción <strong>Callback domain</ strong> en el "
2054
  "enlace mencionado"
2055
 
2056
+ #: ../admin/social_login.php:289
2057
  msgid "Twitter API Secret"
2058
  msgstr "Twitter API Secret"
2059
 
2060
+ #: ../admin/social_login.php:299
2061
  #, php-format
2062
  msgid ""
2063
  "Required for Twitter Social Login to work. Please follow the documentation "
2067
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2068
  "conseguir tu Twitter API Secret"
2069
 
2070
+ #: ../admin/social_login.php:314
2071
  #, fuzzy
2072
  msgid "LinkedIn Client ID"
2073
  msgstr "LinkedIn"
2074
 
2075
+ #: ../admin/social_login.php:324
2076
  #, fuzzy, php-format
2077
  msgid ""
2078
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2082
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2083
  "para conseguir tu LinkedIn API Key"
2084
 
2085
+ #: ../admin/social_login.php:326 ../admin/social_login.php:347
2086
+ #: ../admin/social_login.php:533 ../admin/social_login.php:553
2087
  #, fuzzy
2088
  msgid ""
2089
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2092
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2093
  "mencionado"
2094
 
2095
+ #: ../admin/social_login.php:335
2096
  #, fuzzy
2097
  msgid "LinkedIn Client Secret"
2098
  msgstr "LinkedIn"
2099
 
2100
+ #: ../admin/social_login.php:345
2101
  #, fuzzy, php-format
2102
  msgid ""
2103
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2108
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2109
  "para conseguir tu LinkedIn API Key"
2110
 
2111
+ #: ../admin/social_login.php:356
2112
  #, fuzzy
2113
  msgid "Google Client ID"
2114
  msgstr "Google+ Client ID"
2115
 
2116
+ #: ../admin/social_login.php:366
2117
  #, fuzzy, php-format
2118
  msgid ""
2119
  "Required for Google Social Login to work. Please follow the documentation at "
2123
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2124
  "para conseguir tu GooglePlus Client ID"
2125
 
2126
+ #: ../admin/social_login.php:368 ../admin/social_login.php:389
2127
  #, fuzzy
2128
  msgid ""
2129
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2132
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2133
  "mencionado"
2134
 
2135
+ #: ../admin/social_login.php:377
2136
  #, fuzzy
2137
  msgid "Google Client Secret"
2138
  msgstr "Google+ Client ID"
2139
 
2140
+ #: ../admin/social_login.php:387
2141
  #, fuzzy, php-format
2142
  msgid ""
2143
  "Required for Google Social Login to work. Please follow the documentation at "
2147
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2148
  "para conseguir tu GooglePlus Client ID"
2149
 
2150
+ #: ../admin/social_login.php:398
2151
  msgid "Vkontakte Application ID"
2152
  msgstr "Vkontakte Application ID"
2153
 
2154
+ #: ../admin/social_login.php:408 ../admin/social_login.php:429
2155
  #, php-format
2156
  msgid ""
2157
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2162
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2163
  "para conseguir tu Vkontakte Application ID"
2164
 
2165
+ #: ../admin/social_login.php:410 ../admin/social_login.php:431
2166
  #, fuzzy
2167
  msgid ""
2168
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2171
  "Pega la siguiente url en la opción <strong>Site address</ strong> en el "
2172
  "enlace mencionado"
2173
 
2174
+ #: ../admin/social_login.php:419
2175
  #, fuzzy
2176
  msgid "Vkontakte Secure key"
2177
  msgstr "Vkontakte"
2178
 
2179
+ #: ../admin/social_login.php:440
2180
  #, fuzzy
2181
  msgid "Instagram App ID"
2182
  msgstr "Instagram Client ID"
2183
 
2184
+ #: ../admin/social_login.php:450
2185
  #, fuzzy, php-format
2186
  msgid ""
2187
  "Required for Instagram Social Login to work. Please follow the documentation "
2191
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2192
  "para conseguir tu Instagram Client ID"
2193
 
2194
+ #: ../admin/social_login.php:452 ../admin/social_login.php:473
2195
  #, fuzzy
2196
  msgid ""
2197
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2200
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2201
  "mencionado"
2202
 
2203
+ #: ../admin/social_login.php:461
2204
  #, fuzzy
2205
  msgid "Instagram App Secret"
2206
  msgstr "Instagram"
2207
 
2208
+ #: ../admin/social_login.php:471
2209
  #, fuzzy, php-format
2210
  msgid ""
2211
  "Required for Instagram Social Login to work. Please follow the documentation "
2215
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2216
  "para conseguir tu Instagram Client ID"
2217
 
2218
+ #: ../admin/social_login.php:482
2219
  msgid "Line Channel ID"
2220
  msgstr ""
2221
 
2222
+ #: ../admin/social_login.php:491
2223
  #, fuzzy, php-format
2224
  msgid ""
2225
  "Required for Line Social Login to work. Please follow the documentation at "
2229
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2230
  "para conseguir tu LinkedIn API Key"
2231
 
2232
+ #: ../admin/social_login.php:502
2233
  #, fuzzy
2234
  msgid "Line Channel Secret"
2235
  msgstr "LinkedIn"
2236
 
2237
+ #: ../admin/social_login.php:511
2238
  #, fuzzy, php-format
2239
  msgid ""
2240
  "Required for Line Social Login to work. Please follow the documentation at "
2244
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2245
  "para conseguir tu LinkedIn API Key"
2246
 
2247
+ #: ../admin/social_login.php:522
2248
  #, fuzzy
2249
  msgid "Wordpress Client ID"
2250
  msgstr "Google+ Client ID"
2251
 
2252
+ #: ../admin/social_login.php:531
2253
  #, fuzzy, php-format
2254
  msgid ""
2255
  "Required for Wordpress Social Login to work. Please follow the documentation "
2259
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2260
  "para conseguir tu GooglePlus Client ID"
2261
 
2262
+ #: ../admin/social_login.php:542
2263
  #, fuzzy
2264
  msgid "Wordpress Client Secret"
2265
  msgstr "Google+ Client ID"
2266
 
2267
+ #: ../admin/social_login.php:551
2268
  #, fuzzy, php-format
2269
  msgid ""
2270
  "Required for Wordpress Social Login to work. Please follow the documentation "
2275
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2276
  "para conseguir tu GooglePlus Client ID"
2277
 
2278
+ #: ../admin/social_login.php:562
2279
  #, fuzzy
2280
  msgid "Microsoft Client ID"
2281
  msgstr "Google+ Client ID"
2282
 
2283
+ #: ../admin/social_login.php:571
2284
  #, fuzzy, php-format
2285
  msgid ""
2286
  "Required for Live Social Login to work. Please follow the documentation at "
2290
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2291
  "para conseguir tu GooglePlus Client ID"
2292
 
2293
+ #: ../admin/social_login.php:573 ../admin/social_login.php:593
2294
+ #: ../admin/social_login.php:806 ../admin/social_login.php:826
2295
+ #: ../admin/social_login.php:971 ../admin/social_login.php:991
2296
  #, fuzzy
2297
  msgid ""
2298
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2301
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2302
  "mencionado"
2303
 
2304
+ #: ../admin/social_login.php:582
2305
  #, fuzzy
2306
  msgid "Microsoft Client Secret"
2307
  msgstr "Google+ Client ID"
2308
 
2309
+ #: ../admin/social_login.php:591
2310
  #, fuzzy, php-format
2311
  msgid ""
2312
  "Required for Live Social Login to work. Please follow the documentation at "
2317
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2318
  "para conseguir tu GooglePlus Client ID"
2319
 
2320
+ #: ../admin/social_login.php:601
2321
  #, fuzzy
2322
  msgid "Steam API Key"
2323
  msgstr "Twitter API Key"
2324
 
2325
+ #: ../admin/social_login.php:610
2326
  #, fuzzy, php-format
2327
  msgid ""
2328
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2332
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2333
  "conseguir tu Twitter Key"
2334
 
2335
+ #: ../admin/social_login.php:611
2336
  #, fuzzy
2337
  msgid "Save following <strong>domain</strong> to get the key"
2338
  msgstr ""
2339
  "Pega la siguiente url en la opción <strong>Callback domain</ strong> en el "
2340
  "enlace mencionado"
2341
 
2342
+ #: ../admin/social_login.php:620
2343
  #, fuzzy
2344
  msgid "Yahoo Client ID"
2345
  msgstr "Google+ Client ID"
2346
 
2347
+ #: ../admin/social_login.php:629
2348
  #, fuzzy, php-format
2349
  msgid ""
2350
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2354
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2355
  "para conseguir tu GooglePlus Client ID"
2356
 
2357
+ #: ../admin/social_login.php:631 ../admin/social_login.php:651
2358
  #, fuzzy
2359
  msgid ""
2360
+ "Paste following url in the <strong>Redirect URI(s)</strong> option mentioned "
2361
+ "at the link"
2362
  msgstr ""
2363
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2364
  "mencionado"
2365
 
2366
+ #: ../admin/social_login.php:640
2367
  #, fuzzy
2368
  msgid "Yahoo Client Secret"
2369
  msgstr "Google+ Client ID"
2370
 
2371
+ #: ../admin/social_login.php:649
2372
  #, fuzzy, php-format
2373
  msgid ""
2374
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2378
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2379
  "para conseguir tu GooglePlus Client ID"
2380
 
2381
+ #: ../admin/social_login.php:662
2382
+ #, fuzzy
2383
+ msgid "Discord Client ID"
2384
+ msgstr "Instagram Client ID"
2385
+
2386
+ #: ../admin/social_login.php:671
2387
+ #, fuzzy, php-format
2388
+ msgid ""
2389
+ "Required for Discord Social Login to work. Please follow the documentation "
2390
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client ID"
2391
+ msgstr ""
2392
+ "Requerido para que funcione el ingreso a través de GooglePlus. Por favor, "
2393
+ "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2394
+ "para conseguir tu GooglePlus Client ID"
2395
+
2396
+ #: ../admin/social_login.php:673 ../admin/social_login.php:693
2397
+ #, fuzzy
2398
+ msgid ""
2399
+ "Paste following url in the <strong>Redirects</strong> option mentioned at "
2400
+ "the link"
2401
+ msgstr ""
2402
+ "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2403
+ "mencionado"
2404
+
2405
+ #: ../admin/social_login.php:682
2406
+ #, fuzzy
2407
+ msgid "Discord Client Secret"
2408
+ msgstr "Instagram Client ID"
2409
+
2410
+ #: ../admin/social_login.php:691
2411
+ #, fuzzy, php-format
2412
+ msgid ""
2413
+ "Required for Discord Social Login to work. Please follow the documentation "
2414
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client "
2415
+ "Secret key"
2416
+ msgstr ""
2417
+ "Requerido para que funcione el ingreso a través de GooglePlus. Por favor, "
2418
+ "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2419
+ "para conseguir tu GooglePlus Client ID"
2420
+
2421
+ #: ../admin/social_login.php:704
2422
+ #, fuzzy
2423
+ msgid "Amazon Client ID"
2424
+ msgstr "Google+ Client ID"
2425
+
2426
+ #: ../admin/social_login.php:713
2427
+ #, fuzzy, php-format
2428
+ msgid ""
2429
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2430
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client ID"
2431
+ msgstr ""
2432
+ "Requerido para que funcione el ingreso a través de GooglePlus. Por favor, "
2433
+ "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2434
+ "para conseguir tu GooglePlus Client ID"
2435
+
2436
+ #: ../admin/social_login.php:715 ../admin/social_login.php:735
2437
+ #, fuzzy
2438
+ msgid ""
2439
+ "Paste following url in the <strong>Allowed Return URLs</strong> option "
2440
+ "mentioned at the link"
2441
+ msgstr ""
2442
+ "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2443
+ "mencionado"
2444
+
2445
+ #: ../admin/social_login.php:724
2446
+ #, fuzzy
2447
+ msgid "Amazon Client Secret"
2448
+ msgstr "Google+ Client ID"
2449
+
2450
+ #: ../admin/social_login.php:733
2451
+ #, fuzzy, php-format
2452
+ msgid ""
2453
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2454
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client Secret "
2455
+ "key"
2456
+ msgstr ""
2457
+ "Requerido para que funcione el ingreso a través de GooglePlus. Por favor, "
2458
+ "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2459
+ "para conseguir tu GooglePlus Client ID"
2460
+
2461
+ #: ../admin/social_login.php:746
2462
+ #, fuzzy
2463
+ msgid "Stackoverflow Client ID"
2464
+ msgstr "Google+ Client ID"
2465
+
2466
+ #: ../admin/social_login.php:755
2467
+ #, fuzzy, php-format
2468
+ msgid ""
2469
+ "Required for Stackoverflow Social Login to work. Please follow the "
2470
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2471
+ "Stackoverflow Client ID"
2472
+ msgstr ""
2473
+ "Requerido para que funcione el ingreso a través de GooglePlus. Por favor, "
2474
+ "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2475
+ "para conseguir tu GooglePlus Client ID"
2476
+
2477
+ #: ../admin/social_login.php:761
2478
+ #, fuzzy
2479
+ msgid "Stackoverflow Client Secret"
2480
+ msgstr "Google+ Client ID"
2481
+
2482
+ #: ../admin/social_login.php:770
2483
+ #, fuzzy, php-format
2484
+ msgid ""
2485
+ "Required for Stackoverflow Social Login to work. Please follow the "
2486
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2487
+ "Stackoverflow Client Secret key"
2488
+ msgstr ""
2489
+ "Requerido para que funcione el ingreso a través de GooglePlus. Por favor, "
2490
+ "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2491
+ "para conseguir tu GooglePlus Client ID"
2492
+
2493
+ #: ../admin/social_login.php:776
2494
+ msgid "Stackoverflow Key"
2495
+ msgstr ""
2496
+
2497
+ #: ../admin/social_login.php:786
2498
+ #, fuzzy, php-format
2499
+ msgid ""
2500
+ "Required for Stackoverflow Social Login to work. Please follow the "
2501
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2502
+ "Stackoverflow Key"
2503
+ msgstr ""
2504
+ "Requerido para que funcione el ingreso a través de Twitter. Por favor, sigue "
2505
+ "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2506
+ "conseguir tu Twitter Key"
2507
+
2508
+ #: ../admin/social_login.php:795
2509
  #, fuzzy
2510
  msgid "Spotify Client ID"
2511
  msgstr "Google+ Client ID"
2512
 
2513
+ #: ../admin/social_login.php:804
2514
  #, fuzzy, php-format
2515
  msgid ""
2516
  "Required for Spotify Social Login to work. Please follow the documentation "
2520
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2521
  "para conseguir tu GooglePlus Client ID"
2522
 
2523
+ #: ../admin/social_login.php:815
2524
  #, fuzzy
2525
  msgid "Spotify Client Secret"
2526
  msgstr "Google+ Client ID"
2527
 
2528
+ #: ../admin/social_login.php:824
2529
  #, fuzzy, php-format
2530
  msgid ""
2531
  "Required for Spotify Social Login to work. Please follow the documentation "
2536
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2537
  "para conseguir tu GooglePlus Client ID"
2538
 
2539
+ #: ../admin/social_login.php:837
2540
  #, fuzzy
2541
  msgid "Dribbble Client ID"
2542
  msgstr "Google+ Client ID"
2543
 
2544
+ #: ../admin/social_login.php:846
2545
  #, fuzzy, php-format
2546
  msgid ""
2547
  "Required for Dribbble Social Login to work. Please follow the documentation "
2551
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2552
  "para conseguir tu GooglePlus Client ID"
2553
 
2554
+ #: ../admin/social_login.php:857
2555
  #, fuzzy
2556
  msgid "Dribbble Client Secret"
2557
  msgstr "Google+ Client ID"
2558
 
2559
+ #: ../admin/social_login.php:866
2560
  #, fuzzy, php-format
2561
  msgid ""
2562
  "Required for Dribbble Social Login to work. Please follow the documentation "
2567
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2568
  "para conseguir tu GooglePlus Client ID"
2569
 
2570
+ #: ../admin/social_login.php:878
2571
  #, fuzzy
2572
  msgid "Twitch Client ID"
2573
  msgstr "Instagram Client ID"
2574
 
2575
+ #: ../admin/social_login.php:887
2576
  #, fuzzy, php-format
2577
  msgid ""
2578
  "Required for Twitch Social Login to work. Please follow the documentation at "
2582
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2583
  "para conseguir tu GooglePlus Client ID"
2584
 
2585
+ #: ../admin/social_login.php:898
2586
  #, fuzzy
2587
  msgid "Twitch Client Secret"
2588
  msgstr "Instagram Client ID"
2589
 
2590
+ #: ../admin/social_login.php:907
2591
  #, fuzzy, php-format
2592
  msgid ""
2593
  "Required for Twitch Social Login to work. Please follow the documentation at "
2597
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2598
  "para conseguir tu GooglePlus Client ID"
2599
 
2600
+ #: ../admin/social_login.php:920
2601
  #, fuzzy
2602
  msgid "Foursquare Client ID"
2603
  msgstr "Google+ Client ID"
2604
 
2605
+ #: ../admin/social_login.php:929
2606
  #, fuzzy, php-format
2607
  msgid ""
2608
  "Required for Foursquare Social Login to work. Please follow the "
2613
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2614
  "para conseguir tu GooglePlus Client ID"
2615
 
2616
+ #: ../admin/social_login.php:931 ../admin/social_login.php:951
2617
  #, fuzzy
2618
  msgid ""
2619
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
2622
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2623
  "mencionado"
2624
 
2625
+ #: ../admin/social_login.php:940
2626
  #, fuzzy
2627
  msgid "Foursquare Client Secret"
2628
  msgstr "Google+ Client ID"
2629
 
2630
+ #: ../admin/social_login.php:949
2631
  #, fuzzy, php-format
2632
  msgid ""
2633
  "Required for Foursquare Social Login to work. Please follow the "
2638
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2639
  "para conseguir tu GooglePlus Client ID"
2640
 
2641
+ #: ../admin/social_login.php:960
2642
  msgid "Dropbox App Key"
2643
  msgstr ""
2644
 
2645
+ #: ../admin/social_login.php:969
2646
  #, fuzzy, php-format
2647
  msgid ""
2648
  "Required for Dropbox Social Login to work. Please follow the documentation "
2652
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2653
  "para conseguir tu Facebook App ID"
2654
 
2655
+ #: ../admin/social_login.php:980
2656
  #, fuzzy
2657
  msgid "Dropbox App Secret"
2658
  msgstr "Facebook App ID"
2659
 
2660
+ #: ../admin/social_login.php:989
2661
  #, fuzzy, php-format
2662
  msgid ""
2663
  "Required for Dropbox Social Login to work. Please follow the documentation "
2667
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2668
  "para conseguir tu Facebook App ID"
2669
 
2670
+ #: ../admin/social_login.php:1003
2671
  msgid "Disqus Public Key"
2672
  msgstr ""
2673
 
2674
+ #: ../admin/social_login.php:1012
2675
  #, fuzzy, php-format
2676
  msgid ""
2677
  "Required for Disqus Social Login to work. Please follow the documentation at "
2681
  "documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2682
  "conseguir tu Xing Consumer Key"
2683
 
2684
+ #: ../admin/social_login.php:1023
2685
  #, fuzzy
2686
  msgid "Disqus Secret Key"
2687
  msgstr "Shortname Disqus"
2688
 
2689
+ #: ../admin/social_login.php:1032
2690
  #, fuzzy, php-format
2691
  msgid ""
2692
  "Required for Disqus Social Login to work. Please follow the documentation at "
2696
  "documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2697
  "conseguir tu Xing Consumer Key"
2698
 
2699
+ #: ../admin/social_login.php:1045
2700
  #, fuzzy
2701
  msgid "Reddit Client ID"
2702
  msgstr "Instagram Client ID"
2703
 
2704
+ #: ../admin/social_login.php:1054
2705
  #, fuzzy, php-format
2706
  msgid ""
2707
  "Required for Reddit Social Login to work. Please follow the documentation at "
2711
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2712
  "para conseguir tu GooglePlus Client ID"
2713
 
2714
+ #: ../admin/social_login.php:1056 ../admin/social_login.php:1076
2715
  #, fuzzy
2716
  msgid ""
2717
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
2720
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2721
  "mencionado"
2722
 
2723
+ #: ../admin/social_login.php:1065
2724
  #, fuzzy
2725
  msgid "Reddit Client Secret"
2726
  msgstr "Instagram Client ID"
2727
 
2728
+ #: ../admin/social_login.php:1074
2729
  #, fuzzy, php-format
2730
  msgid ""
2731
  "Required for Reddit Social Login to work. Please follow the documentation at "
2735
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2736
  "para conseguir tu GooglePlus Client ID"
2737
 
2738
+ #: ../admin/social_login.php:1088
2739
  #, fuzzy
2740
  msgid "Github Client ID"
2741
  msgstr "Instagram Client ID"
2742
 
2743
+ #: ../admin/social_login.php:1097
2744
  #, fuzzy, php-format
2745
  msgid ""
2746
  "Required for Github Social Login to work. Please follow the documentation at "
2750
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2751
  "para conseguir tu GooglePlus Client ID"
2752
 
2753
+ #: ../admin/social_login.php:1108
2754
  #, fuzzy
2755
  msgid "Github Client Secret"
2756
  msgstr "Instagram Client ID"
2757
 
2758
+ #: ../admin/social_login.php:1117
2759
  #, fuzzy, php-format
2760
  msgid ""
2761
  "Required for Github Social Login to work. Please follow the documentation at "
2765
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2766
  "para conseguir tu GooglePlus Client ID"
2767
 
2768
+ #: ../admin/social_login.php:1130
2769
  #, fuzzy
2770
  msgid "Kakao Client ID"
2771
  msgstr "Google+ Client ID"
2772
 
2773
+ #: ../admin/social_login.php:1139
2774
  #, fuzzy, php-format
2775
  msgid ""
2776
  "Required for Kakao Social Login to work. Please follow the documentation at "
2780
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2781
  "para conseguir tu GooglePlus Client ID"
2782
 
2783
+ #: ../admin/social_login.php:1150
2784
  #, fuzzy
2785
  msgid "Kakao Client Secret"
2786
  msgstr "Google+ Client ID"
2787
 
2788
+ #: ../admin/social_login.php:1159
2789
  #, fuzzy, php-format
2790
  msgid ""
2791
  "Required for Kakao Social Login to work. Please follow the documentation at "
2795
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2796
  "para conseguir tu GooglePlus Client ID"
2797
 
2798
+ #: ../admin/social_login.php:1179
2799
  #, fuzzy
2800
  msgid "Social Login Options"
2801
  msgstr "Ingreso a través de redes sociales"
2802
 
2803
+ #: ../admin/social_login.php:1194
2804
  msgid "Text to display above the Social Login interface"
2805
  msgstr ""
2806
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
2807
 
2808
+ #: ../admin/social_login.php:1202
2809
  msgid "Trigger social login in the same browser tab"
2810
  msgstr ""
2811
 
2812
+ #: ../admin/social_login.php:1212
2813
  msgid "Trigger social login in the same browser tab instead of a popup window"
2814
  msgstr ""
2815
 
2816
+ #: ../admin/social_login.php:1219
2817
  #, fuzzy
2818
  msgid "Center align icons"
2819
  msgstr "Reorganizar iconos"
2820
 
2821
+ #: ../admin/social_login.php:1229
2822
  #, fuzzy
2823
  msgid "Center align social login icons"
2824
  msgstr "Ingreso a través de redes sociales"
2825
 
2826
+ #: ../admin/social_login.php:1236
2827
  msgid "Enable at login page"
2828
  msgstr "Permitir Página de Ingreso"
2829
 
2830
+ #: ../admin/social_login.php:1246
2831
  msgid ""
2832
  "Social Login interface will get enabled at the login page of your website"
2833
  msgstr ""
2834
  "La interfaz de Ingreso a través de redes sociales aparecerá en la página de "
2835
  "acceso de tu sitio web"
2836
 
2837
+ #: ../admin/social_login.php:1253
2838
  msgid "Enable at register page"
2839
  msgstr "Permitir Página de Registro"
2840
 
2841
+ #: ../admin/social_login.php:1263
2842
  msgid ""
2843
  "Social Login interface will get enabled at the registration page of your "
2844
  "website"
2846
  "La interfaz de Ingreso a través de redes sociales aparecerá en la página de "
2847
  "registro de tu sitio web"
2848
 
2849
+ #: ../admin/social_login.php:1270
2850
  msgid "Enable at comment form"
2851
  msgstr "Permitir el formulario de comentarios"
2852
 
2853
+ #: ../admin/social_login.php:1280
2854
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2855
  msgstr ""
2856
  "La interfaz de Ingreso a través de redes sociales aparecerá en el formulario "
2857
  "de Comentario de tu WordPress"
2858
 
2859
+ #: ../admin/social_login.php:1294
2860
  msgid "Enable before WooCommerce Customer Login Form"
2861
  msgstr "Permitir antes del Formulario de Ingreso de Cliente de WooCommerce"
2862
 
2863
+ #: ../admin/social_login.php:1304
2864
  msgid ""
2865
  "Social Login Interface will get enabled before the customer login form at "
2866
  "WooCommerce My Account page"
2868
  "La interfaz de Ingreso a través de redes sociales aparecerá antes del "
2869
  "formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
2870
 
2871
+ #: ../admin/social_login.php:1311
2872
  #, fuzzy
2873
  msgid "Enable at WooCommerce Customer Login Form"
2874
  msgstr "Permitir después del Formulario de Ingreso de Cliente de WooCommerce"
2875
 
2876
+ #: ../admin/social_login.php:1321
2877
  #, fuzzy
2878
  msgid ""
2879
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2882
  "La interfaz de Ingreso a través de redes sociales aparecerá después del "
2883
  "formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
2884
 
2885
+ #: ../admin/social_login.php:1328
2886
  #, fuzzy
2887
  msgid "Enable at WooCommerce Customer Register Form"
2888
  msgstr "Permitir después del Formulario de Ingreso de Cliente de WooCommerce"
2889
 
2890
+ #: ../admin/social_login.php:1338
2891
  #, fuzzy
2892
  msgid ""
2893
  "Integrate Social Login Interface with the customer register form at "
2896
  "La interfaz de Ingreso a través de redes sociales aparecerá después del "
2897
  "formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
2898
 
2899
+ #: ../admin/social_login.php:1345
2900
  msgid "Enable at WooCommerce checkout page"
2901
  msgstr "Permitir en la página de checkout de WooCommerce"
2902
 
2903
+ #: ../admin/social_login.php:1355
2904
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2905
  msgstr ""
2906
  "La interfaz de Ingreso a través de redes sociales aparecerá en la página de "
2907
  "checkout de WooCommerce"
2908
 
2909
+ #: ../admin/social_login.php:1365
2910
  msgid "Auto-approve comments made by Social Login users"
2911
  msgstr ""
2912
  "Aprobar automáticamente los comentarios hechos por los usuarios conectados a "
2913
  "través de redes sociales"
2914
 
2915
+ #: ../admin/social_login.php:1375
2916
  msgid ""
2917
  "If this option is enabled, and WordPress comment is made by Social Login "
2918
  "user, comment will get approved immediately without keeping in moderation."
2921
  "usuario conectado a través de WordPress, su comentario será aprobado de "
2922
  "inmediato sin necesidad de moderación."
2923
 
2924
+ #: ../admin/social_login.php:1376
2925
  msgid "Note: This is not related to Facebook comments"
2926
  msgstr "Nota: Esto no es válido para los comentarios de Facebook"
2927
 
2928
+ #: ../admin/social_login.php:1385
2929
  msgid "Enable social avatar"
2930
  msgstr "Permitir avatar social"
2931
 
2932
+ #: ../admin/social_login.php:1395
2933
  msgid ""
2934
  "Social profile pictures of the logged in user will be displayed as profile "
2935
  "avatar"
2937
  "Las imágenes del perfil social del usuario conectado se mostrarán como su "
2938
  "avatar de perfil"
2939
 
2940
+ #: ../admin/social_login.php:1404
2941
  msgid "Avatar quality"
2942
  msgstr "Calidad del avatar"
2943
 
2944
+ #: ../admin/social_login.php:1407
2945
  msgid "Average"
2946
  msgstr "Media"
2947
 
2948
+ #: ../admin/social_login.php:1408
2949
  msgid "Best"
2950
  msgstr "Alta"
2951
 
2952
+ #: ../admin/social_login.php:1415
2953
  msgid "Choose avatar quality"
2954
  msgstr "Elegir la calidad del avatar"
2955
 
2956
+ #: ../admin/social_login.php:1423
2957
  msgid ""
2958
  "Show option for users to update social avatar at BuddyPress profile page"
2959
  msgstr ""
2960
  "Mostrar la opción para los usuarios de actualizar su avatar social en su "
2961
  "página de perfil de BuddyPress"
2962
 
2963
+ #: ../admin/social_login.php:1433
2964
  msgid ""
2965
  "If enabled, users would be able to update their social avatar from \"Profile "
2966
  "photo\" section in BuddyPress profile at front-end"
2968
  "Si está activa, los usuarios podrán actualizar su avatar social desde la "
2969
  "sección \"Foto de perfil\" en el perfil BuddyPress, en la vista de usuario"
2970
 
2971
+ #: ../admin/social_login.php:1453
2972
  msgid ""
2973
  "If enabled and Social ID provider does not provide user's email address on "
2974
  "login, user will be asked to provide his/her email address. Otherwise, a "
2978
  "email del usuario al iniciar sesión, se le pedirá al usuario que proporcione "
2979
  "su dirección de email. De lo contrario, se generará un email aleatorio"
2980
 
2981
+ #: ../admin/social_login.php:1461
2982
  msgid "Send post-registration email to user to set account password"
2983
  msgstr ""
2984
 
2985
+ #: ../admin/social_login.php:1471
2986
  msgid ""
2987
  "If enabled, an email will be sent to user after registration through Social "
2988
  "Login, regarding his/her login credentials (username-password to be able to "
2992
  "de la red social elegida, con su nombre de usuario y su contraseña para "
2993
  "poder iniciar sesión a través del formulario de acceso tradicional"
2994
 
2995
+ #: ../admin/social_login.php:1478
2996
  #, fuzzy
2997
  msgid "Send new user registration notification email to admin"
2998
  msgstr "Desactivar el registro de usuario mediante redes sociales"
2999
 
3000
+ #: ../admin/social_login.php:1488
3001
  #, fuzzy
3002
  msgid ""
3003
  "If enabled, an email will be sent to admin after new user registers through "
3007
  "de la red social elegida, con su nombre de usuario y su contraseña para "
3008
  "poder iniciar sesión a través del formulario de acceso tradicional"
3009
 
3010
+ #: ../admin/social_login.php:1495
3011
  msgid "Login redirection"
3012
  msgstr "Redirección de Ingreso"
3013
 
3014
+ #: ../admin/social_login.php:1499
3015
  msgid "Same page where user logged in"
3016
  msgstr "La misma página en la que el usuario ha iniciado sesión"
3017
 
3018
+ #: ../admin/social_login.php:1503 ../admin/social_login.php:1532
3019
  msgid "Account dashboard"
3020
  msgstr "Panel de cuenta de usuario"
3021
 
3022
+ #: ../admin/social_login.php:1506 ../admin/social_login.php:1535
3023
  msgid "BuddyPress profile page"
3024
  msgstr "Página de perfil de BuddyPress"
3025
 
3026
+ #: ../admin/social_login.php:1509 ../admin/social_login.php:1538
3027
  msgid "Custom Url"
3028
  msgstr "Url personalizada"
3029
 
3030
+ #: ../admin/social_login.php:1517
3031
  msgid "User will be redirected to the selected page after Social Login"
3032
  msgstr ""
3033
  "El usuario será redirigido a la página seleccionada después de su ingreso"
3034
 
3035
+ #: ../admin/social_login.php:1524
3036
  msgid "Registration redirection"
3037
  msgstr "Redirección de Registro"
3038
 
3039
+ #: ../admin/social_login.php:1528
3040
  msgid "Same page from where user registered"
3041
  msgstr "La misma página en la que el usuario se ha registrado"
3042
 
3043
+ #: ../admin/social_login.php:1546
3044
  msgid ""
3045
  "User will be redirected to the selected page after registration (first "
3046
  "Social Login) through Social Login"
3048
  "El usuario será redirigido a la página seleccionada después de su registro "
3049
  "(en su primer inicio de sesión) a través de la red social"
3050
 
3051
+ #: ../admin/social_login.php:1555
3052
  #, fuzzy
3053
  msgid "Social Account Linking Options"
3054
  msgstr "Comentarios en redes sociales"
3055
 
3056
+ #: ../admin/social_login.php:1570
3057
  #, fuzzy
3058
  msgid "Text to display above the Social Account Linking interface"
3059
  msgstr ""
3060
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
3061
 
3062
+ #: ../admin/social_login.php:1577
3063
  #, fuzzy
3064
  msgid ""
3065
  "Link social account to already existing account, if email address matches"
3067
  "Enlaza la cuenta de tu red social para ingresar en tu cuenta de este sitio "
3068
  "web "
3069
 
3070
+ #: ../admin/social_login.php:1587
3071
  msgid ""
3072
  "If email address of the user's Social Account matches with an already "
3073
  "existing account at your website, that social account will be linked to "
3075
  "Linking interface at their profile page."
3076
  msgstr ""
3077
 
3078
+ #: ../admin/social_login.php:1595
3079
  msgid "Enable social account linking at BuddyPress profile page"
3080
  msgstr ""
3081
  "Permitir cuenta de red social enlazando a la página de perfil de BuddyPress"
3082
 
3083
+ #: ../admin/social_login.php:1605
3084
  msgid ""
3085
  "Enable this option to show social account linking interface at BuddyPress "
3086
  "profile page"
3088
  "Activa esta opción para mostrar la cuenta social enlazando a la interfaz de "
3089
  "la página de perfil de BuddyPress"
3090
 
3091
+ #: ../admin/social_login.php:1616
3092
  msgid "Email popup options"
3093
  msgstr "Opciones de popup del Email"
3094
 
3095
+ #: ../admin/social_login.php:1621
3096
  msgid "Text on 'Email required' popup"
3097
  msgstr "Texto del popup 'Email requerido'"
3098
 
3099
+ #: ../admin/social_login.php:1631
3100
  msgid ""
3101
  "This text will be displayed on email required popup. Leave empty if not "
3102
  "required."
3104
  "Este texto se mostrará en el popup de email requerido. Déjalo en blanco si "
3105
  "no es necesario."
3106
 
3107
+ #: ../admin/social_login.php:1639
3108
  msgid "Error message for 'Email required' popup"
3109
  msgstr "Mensaje de error para el popup de 'Email requerido'"
3110
 
3111
+ #: ../admin/social_login.php:1649
3112
  msgid ""
3113
  "This message will be displayed to user if it provides invalid or already "
3114
  "registered email"
3116
  "Este mensaje se mostrará si el usuario introduce un email no válido o ya "
3117
  "registrado"
3118
 
3119
+ #: ../admin/social_login.php:1657
3120
  msgid "Email popup height"
3121
  msgstr "Altura del popup del Email"
3122
 
3123
+ #: ../admin/social_login.php:1667
3124
  msgid ""
3125
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
3126
  "can increase the height of popup by specifying in this option. Leave empty "
3130
  "requerido\", puedes aumentar la altura del popup especificándola en esta "
3131
  "opción. Déjala en blanco para la altura por defecto."
3132
 
3133
+ #: ../admin/social_login.php:1674
3134
  msgid "Enable email verification"
3135
  msgstr "Activar verificación por email"
3136
 
3137
+ #: ../admin/social_login.php:1684
3138
  msgid ""
3139
  "If enabled, email provided by the user will be verified by sending a "
3140
  "confirmation link to that email. User would not be able to login without "
3144
  "por el usuario. El usuario no podrá conectarse sin verificar su email y "
3145
  "pulsar este enlace"
3146
 
3147
+ #: ../admin/social_login.php:1704
3148
  #, fuzzy
3149
  msgid "Enable GDPR opt-in"
3150
  msgstr "Permitir Comentarios de Disqus"
3151
 
3152
+ #: ../admin/social_login.php:1714
3153
  msgid ""
3154
  "Enable it to show GDPR opt-in for social login and social account linking"
3155
  msgstr ""
3156
 
3157
+ #: ../admin/social_login.php:1722
3158
  #, fuzzy
3159
  msgid "Placement of GDPR opt-in"
3160
  msgstr "Permitir Comentarios de Disqus"
3161
 
3162
+ #: ../admin/social_login.php:1726
3163
  #, fuzzy
3164
  msgid "Above Social Login icons"
3165
  msgstr "Ingreso a través de redes sociales"
3166
 
3167
+ #: ../admin/social_login.php:1728
3168
  #, fuzzy
3169
  msgid "Below Social Login icons"
3170
  msgstr "Ingreso a través de redes sociales"
3171
 
3172
+ #: ../admin/social_login.php:1734
3173
  #, fuzzy
3174
  msgid "Placement of GDPR opt-in above or below the social login icons"
3175
  msgstr ""
3176
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
3177
 
3178
+ #: ../admin/social_login.php:1741
3179
  msgid "Opt-in text"
3180
  msgstr ""
3181
 
3182
+ #: ../admin/social_login.php:1751
3183
  #, fuzzy
3184
  msgid "Text for the GDPR opt-in"
3185
  msgstr "Permitir Comentarios de Disqus"
3186
 
3187
+ #: ../admin/social_login.php:1758
3188
  msgid "Text to link to Terms-Conditions page"
3189
  msgstr ""
3190
 
3191
+ #: ../admin/social_login.php:1768
3192
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
3193
  msgstr ""
3194
 
3195
+ #: ../admin/social_login.php:1775
3196
  msgid "Terms-Conditions Url"
3197
  msgstr ""
3198
 
3199
+ #: ../admin/social_login.php:1785
3200
  #, fuzzy
3201
  msgid "Url of the terms-conditions page of your website"
3202
  msgstr "Url de la página de inicio de tu sitio web"
3203
 
3204
+ #: ../admin/social_login.php:1792
3205
  msgid "Text to link to Privacy Policy page"
3206
  msgstr ""
3207
 
3208
+ #: ../admin/social_login.php:1802
3209
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
3210
  msgstr ""
3211
 
3212
+ #: ../admin/social_login.php:1809
3213
  msgid "Privacy Policy Url"
3214
  msgstr ""
3215
 
3216
+ #: ../admin/social_login.php:1819
3217
  #, fuzzy
3218
  msgid "Url of the privacy policy page of your website"
3219
  msgstr "Url de la página de inicio de tu sitio web"
3220
 
3221
+ #: ../admin/social_login.php:1870 ../inc/widget.php:260 ../inc/widget.php:438
3222
  #: ../inc/widget.php:602 ../inc/widget.php:750
3223
  msgid "Select"
3224
  msgstr "Seleccionar"
3225
 
3226
+ #: ../admin/social_login.php:1901
3227
  msgid "Social Login Shortcode & Widget"
3228
  msgstr "Widget y Shortcode para el Ingreso a través de redes sociales"
3229
 
3230
+ #: ../admin/social_login.php:1902
3231
  msgid "Social Linking Shortcode"
3232
  msgstr "Shortcode para enlace a través de redes sociales"
3233
 
3234
+ #: ../admin/social_login.php:1917
3235
  msgid "Why is social login not working?"
3236
  msgstr ""
3237
 
3238
+ #: ../admin/social_login.php:1918
3239
  msgid ""
3240
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3241
  "belong to the same app"
3242
  msgstr ""
3243
 
3244
+ #: ../admin/social_login.php:1920
3245
  msgid "Social Login not working with Varnish enabled"
3246
  msgstr ""
3247
 
3248
+ #: ../admin/social_login.php:1921
3249
  msgid ""
3250
  "Why the user is not appearing logged in even after Social Login until the "
3251
  "webpage is refreshed manually?"
3457
  msgid "Archives"
3458
  msgstr "Archivos por Categoría"
3459
 
3460
+ #: ../inc/social_sharing.php:225
3461
+ msgid "More"
3462
+ msgstr ""
3463
+
3464
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3465
  msgid "Invalid request"
3466
  msgstr "Petición no válida"
3469
  msgid "Providers not selected"
3470
  msgstr "Redes sociales no seleccionadas"
3471
 
3472
+ #: ../inc/social_sharing_networks.php:57
3473
+ msgid "Copy Link"
3474
+ msgstr ""
3475
+
3476
+ #: ../inc/social_login.php:1030
3477
  msgid "Email"
3478
  msgstr ""
3479
 
3480
+ #: ../inc/social_login.php:1031
3481
  msgid "Confirm email"
3482
  msgstr ""
3483
 
3484
+ #: ../inc/social_login.php:1033
3485
  msgid "Save"
3486
  msgstr ""
3487
 
3488
+ #: ../inc/social_login.php:1034
3489
  msgid "Cancel"
3490
  msgstr ""
3491
 
3492
+ #: ../inc/social_login.php:1108
3493
  #, fuzzy
3494
  msgid "Email Verification"
3495
  msgstr "Activar verificación por email"
3496
 
3497
+ #: ../inc/social_login.php:1110
3498
  msgid ""
3499
  "Please click on the following link or paste it in browser to verify your "
3500
  "email"
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-01-27 15:37+0530\n"
6
- "PO-Revision-Date: 2021-01-27 15:37+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../super_socializer.php:1570
20
  #, fuzzy
21
  msgid ""
22
  "cURL is not enabled at your website server. Please contact your website "
@@ -25,7 +25,7 @@ msgstr ""
25
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
26
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
27
 
28
- #: ../super_socializer.php:1598
29
  #, fuzzy, php-format
30
  msgid ""
31
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -35,7 +35,7 @@ msgstr ""
35
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
36
  "lépés %s)"
37
 
38
- #: ../super_socializer.php:1601
39
  #, fuzzy, php-format
40
  msgid ""
41
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -45,7 +45,7 @@ msgstr ""
45
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
46
  "lépés %s)"
47
 
48
- #: ../super_socializer.php:1604
49
  msgid ""
50
  "Make sure cURL is enabled at your website server. You may need to contact "
51
  "the server administrator of your website to verify this"
@@ -53,139 +53,143 @@ msgstr ""
53
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
54
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
55
 
56
- #: ../super_socializer.php:1786 ../helper.php:986
 
 
 
 
57
  msgid "Please verify your email address to login."
58
  msgstr "Kérjük, ellenőrizd e-mail címed a belépéshez."
59
 
60
- #: ../super_socializer.php:1786
61
  msgid "Your email has been verified. Now you can login to your account"
62
  msgstr "E-mail címed ellenőrzése sikeres. Most már beléphetsz fiókodba"
63
 
64
- #: ../super_socializer.php:1790
65
  msgid "Notification"
66
  msgstr "Értesítés"
67
 
68
- #: ../super_socializer.php:1808 ../admin/social_login.php:1280
69
  msgid "Email required"
70
  msgstr "E-mail cím szükséges"
71
 
72
- #: ../super_socializer.php:1811
73
  msgid "Please check your email inbox to complete the registration."
74
  msgstr "Kérjük, nézd meg e-mail címed a regisztráció befejezéséhez."
75
 
76
- #: ../super_socializer.php:1880
77
  msgid "Leave a reply"
78
  msgstr "Válaszolj"
79
 
80
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
81
  msgid "Shares"
82
  msgstr ""
83
 
84
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
85
  msgid "Share"
86
  msgstr ""
87
 
88
- #: ../super_socializer.php:1896
89
  #, fuzzy
90
  msgid "Link copied."
91
  msgstr "LinkedIn"
92
 
93
- #: ../super_socializer.php:2141
94
  #, fuzzy
95
  msgid "Super Socializer - General Options"
96
  msgstr "Super Socializer - Belépés"
97
 
98
- #: ../super_socializer.php:2141 ../admin/general_options.php:15
99
  #: ../admin/social_commenting.php:47
100
  #, fuzzy
101
  msgid "General Options"
102
  msgstr "Megosztási beállítások"
103
 
104
- #: ../super_socializer.php:2209 ../helper.php:915
105
  #, fuzzy
106
  msgid "Social Avatar"
107
  msgstr "Kis Avatar URL"
108
 
109
- #: ../super_socializer.php:2212
110
  msgid "Small Avatar Url"
111
  msgstr "Kis Avatar URL"
112
 
113
- #: ../super_socializer.php:2216
114
  #, fuzzy
115
  msgid "Large Avatar Url"
116
  msgstr "Cél Url"
117
 
118
- #: ../super_socializer.php:2220 ../helper.php:918
119
  msgid ""
120
  "Do not fetch and update social avatar from my profile, next time I Social "
121
  "Login"
122
  msgstr ""
123
 
124
- #: ../super_socializer.php:2224 ../helper.php:919
125
  msgid "Update social avatar, next time I Social Login"
126
  msgstr ""
127
 
128
- #: ../super_socializer.php:2301
129
  msgid "Login with your Social ID"
130
  msgstr ""
131
 
132
- #: ../super_socializer.php:2302
133
  msgid "Email you entered is already registered or invalid"
134
  msgstr "A megadott e-mail már regisztrálva van, vagy hibás"
135
 
136
- #: ../super_socializer.php:2309
137
  msgid "Please enter a valid email address. You might be required to verify it"
138
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
139
 
140
- #: ../super_socializer.php:2313 ../super_socializer.php:3039
141
  msgid "Link your social account to login to your account at this website"
142
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
143
 
144
- #: ../super_socializer.php:2561
145
  msgid "Thanks for installing Super Socializer plugin"
146
  msgstr ""
147
 
148
- #: ../super_socializer.php:2563
149
  msgid "Configure the Plugin"
150
  msgstr ""
151
 
152
- #: ../super_socializer.php:2574
153
  msgid ""
154
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
155
  "current version of Super Socializer"
156
  msgstr ""
157
 
158
- #: ../super_socializer.php:2583
159
  msgid ""
160
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
161
  "version of Super Socializer"
162
  msgstr ""
163
 
164
- #: ../super_socializer.php:2592
165
  msgid ""
166
- "Update \"Social Login Buttons\" add-on to version 1.2.6 or above for "
167
  "compatibility with current version of Super Socializer"
168
  msgstr ""
169
 
170
- #: ../super_socializer.php:2601
171
  msgid ""
172
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
173
  "with current version of Super Socializer"
174
  msgstr ""
175
 
176
- #: ../super_socializer.php:2610
177
  msgid ""
178
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
179
  "with current version of Super Socializer"
180
  msgstr ""
181
 
182
- #: ../super_socializer.php:2621
183
  #, php-format
184
  msgid ""
185
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
186
  msgstr ""
187
 
188
- #: ../super_socializer.php:2630
189
  #, php-format
190
  msgid ""
191
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -193,7 +197,7 @@ msgid ""
193
  "Instagram App Secret <a href=\"%s\">here</a>"
194
  msgstr ""
195
 
196
- #: ../super_socializer.php:2639 ../super_socializer.php:2648
197
  #, php-format
198
  msgid ""
199
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -202,13 +206,13 @@ msgid ""
202
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
203
  msgstr ""
204
 
205
- #: ../super_socializer.php:2664
206
  #, php-format
207
  msgid ""
208
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
209
  msgstr ""
210
 
211
- #: ../super_socializer.php:2688
212
  #, php-format
213
  msgid ""
214
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -216,14 +220,14 @@ msgid ""
216
  "target=\"_blank\">here</a>"
217
  msgstr ""
218
 
219
- #: ../super_socializer.php:2688 ../super_socializer.php:2713
220
- #: ../super_socializer.php:2738 ../super_socializer.php:2763
221
- #: ../super_socializer.php:2796 ../super_socializer.php:2824
222
- #: ../super_socializer.php:2851
223
  msgid "Okay"
224
  msgstr ""
225
 
226
- #: ../super_socializer.php:2713
227
  #, php-format
228
  msgid ""
229
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -231,7 +235,7 @@ msgid ""
231
  "\">here</a>"
232
  msgstr ""
233
 
234
- #: ../super_socializer.php:2738
235
  #, php-format
236
  msgid ""
237
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -239,7 +243,7 @@ msgid ""
239
  "target=\"_blank\">here</a>"
240
  msgstr ""
241
 
242
- #: ../super_socializer.php:2763
243
  #, php-format
244
  msgid ""
245
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -247,13 +251,13 @@ msgid ""
247
  "target=\"_blank\">here</a>"
248
  msgstr ""
249
 
250
- #: ../super_socializer.php:2774
251
  #, php-format
252
  msgid ""
253
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
254
  msgstr ""
255
 
256
- #: ../super_socializer.php:2796
257
  #, php-format
258
  msgid ""
259
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -261,7 +265,7 @@ msgid ""
261
  "\"%s\" target=\"_blank\">here</a>"
262
  msgstr ""
263
 
264
- #: ../super_socializer.php:2824
265
  #, php-format
266
  msgid ""
267
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -270,7 +274,7 @@ msgid ""
270
  "your website %s with them. No need to copy-paste any code from their website."
271
  msgstr ""
272
 
273
- #: ../super_socializer.php:2851
274
  #, php-format
275
  msgid ""
276
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -278,7 +282,7 @@ msgid ""
278
  "\"%s\" target=\"_blank\">here</a>"
279
  msgstr ""
280
 
281
- #: ../super_socializer.php:2876
282
  #, php-format
283
  msgid ""
284
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -286,11 +290,11 @@ msgid ""
286
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
287
  msgstr ""
288
 
289
- #: ../super_socializer.php:2876 ../super_socializer.php:2903
290
  msgid "Dismiss"
291
  msgstr ""
292
 
293
- #: ../super_socializer.php:2902
294
  #, php-format
295
  msgid ""
296
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -299,7 +303,7 @@ msgid ""
299
  "that, clear share counts cache from \"Miscellaneous\" section"
300
  msgstr ""
301
 
302
- #: ../super_socializer.php:3115
303
  msgid ""
304
  "Your browser is blocking some features of this website. Please follow the "
305
  "instructions at {support_url} to unblock these."
@@ -310,129 +314,129 @@ msgstr ""
310
  msgid "Settings saved"
311
  msgstr "Beállítások"
312
 
313
- #: ../helper.php:185
314
  #, fuzzy
315
  msgid "Click to toggle help"
316
  msgstr "Elrejtéséhez kattintson segítség"
317
 
318
- #: ../helper.php:282
319
  #, fuzzy
320
  msgid "Add-Ons"
321
  msgstr "A kiegészítőket"
322
 
323
- #: ../helper.php:283
324
  msgid "Support Documentation"
325
  msgstr ""
326
 
327
- #: ../helper.php:284
328
  msgid "Settings"
329
  msgstr "Beállítások"
330
 
331
- #: ../helper.php:567
332
  msgid "Account linked successfully"
333
  msgstr "Fiók kapcsolása sikeres"
334
 
335
- #: ../helper.php:571
336
  msgid "Account already exists or linked"
337
  msgstr "Fiók már létezik, vagy össze van kötve"
338
 
339
- #: ../helper.php:607 ../helper.php:609
340
  #, fuzzy
341
  msgid "Login with"
342
  msgstr "Belépési beállítások"
343
 
344
- #: ../helper.php:644 ../helper.php:650
345
  msgid "Currently"
346
  msgstr "Jelenleg"
347
 
348
- #: ../helper.php:644 ../helper.php:650
349
  msgid "Connected with"
350
  msgstr ""
351
 
352
- #: ../helper.php:644 ../helper.php:650
353
  msgid "Remove"
354
  msgstr "Eltávolítás"
355
 
356
- #: ../helper.php:721
357
  #, fuzzy
358
  msgid "Social Account Linking"
359
  msgstr "Közösségi Hozzászólás"
360
 
361
- #: ../helper.php:771
362
  #, fuzzy
363
  msgid "Disable Standard Social Sharing on this "
364
  msgstr "Függőleges Közösségi Megosztás kikapcsolása"
365
 
366
- #: ../helper.php:776
367
  #, fuzzy
368
  msgid "Disable Floating Social Sharing on this "
369
  msgstr "Vízszintes Közösségi Megosztás kikapcsolása"
370
 
371
- #: ../helper.php:781
372
  #, fuzzy
373
  msgid "Disable Standard like buttons on this "
374
  msgstr "Függőleges Közösségi Gombok kikapcsolása"
375
 
376
- #: ../helper.php:786
377
  #, fuzzy
378
  msgid "Disable Floating like buttons on this "
379
  msgstr "Vízszintes Közösségi Gombok kikapcsolása"
380
 
381
- #: ../helper.php:791
382
  msgid "Disable Social Commenting on this "
383
  msgstr "Közösségi Hozzászólás kikapcsolása ennél"
384
 
385
- #: ../helper.php:800
386
  #, fuzzy
387
  msgid "Standard Sharing Interface"
388
  msgstr "Megosztási Felület"
389
 
390
- #: ../helper.php:806 ../helper.php:825
391
  msgid "Starting share count for "
392
  msgstr "Megosztás számok kezdése ehhez"
393
 
394
- #: ../helper.php:819
395
  #, fuzzy
396
  msgid "Floating Sharing Interface"
397
  msgstr "Megosztási Felület"
398
 
399
- #: ../helper.php:922
400
  #, fuzzy
401
  msgid "Small Avatar"
402
  msgstr "Kis Avatar URL"
403
 
404
- #: ../helper.php:926
405
  #, fuzzy
406
  msgid "Large Avatar"
407
  msgstr "Cél Url"
408
 
409
- #: ../helper.php:930 ../admin/general_options.php:89
410
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
411
- #: ../admin/social_login.php:1770 ../admin/like_buttons.php:780
412
  msgid "Save Changes"
413
  msgstr "Változások Mentése"
414
 
415
- #: ../helper.php:1023
416
  msgid "Click to delete social profile data"
417
  msgstr ""
418
 
419
- #: ../helper.php:1052
420
  #, fuzzy
421
  msgid "Deleting"
422
  msgstr "Beállítások"
423
 
424
- #: ../helper.php:1062
425
  msgid "Deleted"
426
  msgstr ""
427
 
428
- #: ../helper.php:1064
429
  msgid "Something bad happened"
430
  msgstr ""
431
 
432
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
433
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
434
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
435
- #: ../admin/social_login.php:5 ../admin/social_login.php:1774
436
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
437
  #, fuzzy, php-format
438
  msgid ""
@@ -487,14 +491,14 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
487
  msgstr ""
488
 
489
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
490
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1780
491
  #: ../admin/like_buttons.php:790
492
  #, fuzzy
493
  msgid "Instagram Shoutout"
494
  msgstr "Instagram"
495
 
496
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
497
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1782
498
  #: ../admin/like_buttons.php:792
499
  msgid ""
500
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -642,7 +646,7 @@ msgstr ""
642
 
643
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
644
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
645
- #: ../admin/social_login.php:1736 ../admin/like_buttons.php:50
646
  #: ../admin/like_buttons.php:751
647
  msgid "Shortcode & Widget"
648
  msgstr "Shortcode és Widget"
@@ -653,7 +657,7 @@ msgstr "Hibamegoldó"
653
 
654
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
655
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
656
- #: ../admin/social_login.php:46 ../admin/social_login.php:1750
657
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
658
  msgid "FAQ"
659
  msgstr "GYIK"
@@ -898,8 +902,8 @@ msgstr "Egyedi URL"
898
  msgid "Url to share"
899
  msgstr "Megosztás Url-je"
900
 
901
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:1021
902
- #: ../admin/social_login.php:1397 ../admin/like_buttons.php:105
903
  #: ../inc/widget.php:949
904
  msgid "Title"
905
  msgstr "Cím"
@@ -987,7 +991,7 @@ msgid "Placement"
987
  msgstr ""
988
 
989
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
990
- #: ../admin/social_login.php:1338 ../admin/social_login.php:1367
991
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
992
  msgid "Homepage"
993
  msgstr "Kezdő oldal"
@@ -1247,7 +1251,7 @@ msgstr ""
1247
  msgid "Required only to track Facebook share count"
1248
  msgstr ""
1249
 
1250
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:193
1251
  msgid "Facebook App ID"
1252
  msgstr "Facebook App ID"
1253
 
@@ -1261,7 +1265,7 @@ msgstr ""
1261
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1262
  "App ID beszerzéshez"
1263
 
1264
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:214
1265
  #, fuzzy
1266
  msgid "Facebook App Secret"
1267
  msgstr "Facebook App ID"
@@ -1448,7 +1452,7 @@ msgstr ""
1448
  "tökéletesen) a szöveges mezőben:"
1449
 
1450
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1451
- #: ../admin/social_login.php:1752
1452
  msgid ""
1453
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1454
  "an online website for the plugin to function properly."
@@ -1503,7 +1507,7 @@ msgid ""
1503
  msgstr ""
1504
 
1505
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1506
- #: ../admin/social_login.php:1759
1507
  msgid "Why is my browser blocking some features of the plugin?"
1508
  msgstr ""
1509
 
@@ -1824,11 +1828,11 @@ msgstr "Alap Beállítások"
1824
  msgid "Advanced Configuration"
1825
  msgstr "Alap Beállítások"
1826
 
1827
- #: ../admin/social_login.php:41 ../admin/social_login.php:1536
1828
  msgid "GDPR"
1829
  msgstr ""
1830
 
1831
- #: ../admin/social_login.php:43 ../admin/social_login.php:1687
1832
  msgid "XProfile Integration"
1833
  msgstr ""
1834
 
@@ -1863,97 +1867,124 @@ msgstr ""
1863
 
1864
  #: ../admin/social_login.php:98
1865
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1866
  msgid "Select Social Networks"
1867
  msgstr "elsődleges szociális háló"
1868
 
1869
- #: ../admin/social_login.php:103
1870
  msgid "Facebook"
1871
  msgstr "Facebook"
1872
 
1873
- #: ../admin/social_login.php:107
1874
  msgid "Twitter"
1875
  msgstr "Twitter"
1876
 
1877
- #: ../admin/social_login.php:111
1878
  msgid "LinkedIn"
1879
  msgstr "LinkedIn"
1880
 
1881
- #: ../admin/social_login.php:115
1882
  #, fuzzy
1883
  msgid "Google"
1884
  msgstr "Google+"
1885
 
1886
- #: ../admin/social_login.php:119
1887
  msgid "Vkontakte"
1888
  msgstr "Vkontakte"
1889
 
1890
- #: ../admin/social_login.php:123
1891
  msgid "Instagram"
1892
  msgstr "Instagram"
1893
 
1894
- #: ../admin/social_login.php:127
1895
  msgid "Steam"
1896
  msgstr ""
1897
 
1898
- #: ../admin/social_login.php:131
1899
  msgid "Line"
1900
  msgstr ""
1901
 
1902
- #: ../admin/social_login.php:135
1903
  msgid "Wordpress"
1904
  msgstr ""
1905
 
1906
- #: ../admin/social_login.php:139
1907
  msgid "Windows Live"
1908
  msgstr ""
1909
 
1910
- #: ../admin/social_login.php:143
1911
  msgid "Yahoo"
1912
  msgstr "Yahoo"
1913
 
1914
- #: ../admin/social_login.php:147
 
 
 
 
 
 
 
 
 
 
 
 
1915
  msgid "Spotify"
1916
  msgstr ""
1917
 
1918
- #: ../admin/social_login.php:150
1919
  msgid "Dribbble"
1920
  msgstr ""
1921
 
1922
- #: ../admin/social_login.php:154
1923
  #, fuzzy
1924
  msgid "Twitch"
1925
  msgstr "Twitter"
1926
 
1927
- #: ../admin/social_login.php:158
1928
  #, fuzzy
1929
  msgid "Foursquare"
1930
  msgstr "szögletes"
1931
 
1932
- #: ../admin/social_login.php:162
1933
  msgid "Dropbox"
1934
  msgstr ""
1935
 
1936
- #: ../admin/social_login.php:166
1937
  msgid "Disqus"
1938
  msgstr ""
1939
 
1940
- #: ../admin/social_login.php:170
1941
  msgid "Reddit"
1942
  msgstr "Reddit"
1943
 
1944
- #: ../admin/social_login.php:174
1945
  msgid "Github"
1946
  msgstr ""
1947
 
1948
- #: ../admin/social_login.php:178
1949
  msgid "Kakao"
1950
  msgstr ""
1951
 
1952
- #: ../admin/social_login.php:186
1953
  msgid "Select Social ID provider to enable in Social Login"
1954
  msgstr "Válassz Közösségi ID szolgáltatót a Közösségi Belépéshez"
1955
 
1956
- #: ../admin/social_login.php:203
1957
  #, php-format
1958
  msgid ""
1959
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1963,7 +1994,7 @@ msgstr ""
1963
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1964
  "App ID beszerzéshez"
1965
 
1966
- #: ../admin/social_login.php:205 ../admin/social_login.php:226
1967
  #, fuzzy
1968
  msgid ""
1969
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
@@ -1971,7 +2002,7 @@ msgstr ""
1971
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
1972
  "linken"
1973
 
1974
- #: ../admin/social_login.php:224
1975
  #, fuzzy, php-format
1976
  msgid ""
1977
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1981,11 +2012,11 @@ msgstr ""
1981
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1982
  "App ID beszerzéshez"
1983
 
1984
- #: ../admin/social_login.php:235
1985
  msgid "Twitter API Key"
1986
  msgstr "Twitter API Key"
1987
 
1988
- #: ../admin/social_login.php:245
1989
  #, php-format
1990
  msgid ""
1991
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1995,7 +2026,7 @@ msgstr ""
1995
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
1996
  "API Key beszerzéshez"
1997
 
1998
- #: ../admin/social_login.php:247 ../admin/social_login.php:272
1999
  #, fuzzy
2000
  msgid ""
2001
  "Paste following url in <strong>Website</strong> option mentioned at the link"
@@ -2003,13 +2034,13 @@ msgstr ""
2003
  "Illeszd be a következő url-t a <strong>Website URL</strong> mezőbe a fenti "
2004
  "linken"
2005
 
2006
- #: ../admin/social_login.php:251 ../admin/social_login.php:276
2007
- #: ../admin/social_login.php:464 ../admin/social_login.php:484
2008
- #: ../admin/social_login.php:685 ../admin/social_login.php:705
2009
- #: ../admin/social_login.php:726 ../admin/social_login.php:746
2010
- #: ../admin/social_login.php:851 ../admin/social_login.php:871
2011
- #: ../admin/social_login.php:936 ../admin/social_login.php:956
2012
- #: ../admin/social_login.php:978 ../admin/social_login.php:998
2013
  #, fuzzy
2014
  msgid ""
2015
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -2018,11 +2049,11 @@ msgstr ""
2018
  "Illeszd be a következő url-t a <strong>Callback domain</strong> mezőbe a "
2019
  "fenti linken"
2020
 
2021
- #: ../admin/social_login.php:260
2022
  msgid "Twitter API Secret"
2023
  msgstr "Twitter API Secret"
2024
 
2025
- #: ../admin/social_login.php:270
2026
  #, php-format
2027
  msgid ""
2028
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -2032,12 +2063,12 @@ msgstr ""
2032
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
2033
  "API Secret beszerzéséhez"
2034
 
2035
- #: ../admin/social_login.php:285
2036
  #, fuzzy
2037
  msgid "LinkedIn Client ID"
2038
  msgstr "LinkedIn"
2039
 
2040
- #: ../admin/social_login.php:295
2041
  #, fuzzy, php-format
2042
  msgid ""
2043
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2047,8 +2078,8 @@ msgstr ""
2047
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2048
  "API Key beszerzéshez"
2049
 
2050
- #: ../admin/social_login.php:297 ../admin/social_login.php:318
2051
- #: ../admin/social_login.php:504 ../admin/social_login.php:524
2052
  #, fuzzy
2053
  msgid ""
2054
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -2057,12 +2088,12 @@ msgstr ""
2057
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2058
  "linken"
2059
 
2060
- #: ../admin/social_login.php:306
2061
  #, fuzzy
2062
  msgid "LinkedIn Client Secret"
2063
  msgstr "LinkedIn"
2064
 
2065
- #: ../admin/social_login.php:316
2066
  #, fuzzy, php-format
2067
  msgid ""
2068
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2073,12 +2104,12 @@ msgstr ""
2073
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2074
  "API Key beszerzéshez"
2075
 
2076
- #: ../admin/social_login.php:327
2077
  #, fuzzy
2078
  msgid "Google Client ID"
2079
  msgstr "Google+ Client ID"
2080
 
2081
- #: ../admin/social_login.php:337
2082
  #, fuzzy, php-format
2083
  msgid ""
2084
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2088,7 +2119,7 @@ msgstr ""
2088
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2089
  "GooglePlus Client ID beszerzéshez"
2090
 
2091
- #: ../admin/social_login.php:339 ../admin/social_login.php:360
2092
  #, fuzzy
2093
  msgid ""
2094
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2097,12 +2128,12 @@ msgstr ""
2097
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2098
  "linken"
2099
 
2100
- #: ../admin/social_login.php:348
2101
  #, fuzzy
2102
  msgid "Google Client Secret"
2103
  msgstr "Google+ Client ID"
2104
 
2105
- #: ../admin/social_login.php:358
2106
  #, fuzzy, php-format
2107
  msgid ""
2108
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2112,11 +2143,11 @@ msgstr ""
2112
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2113
  "GooglePlus Client ID beszerzéshez"
2114
 
2115
- #: ../admin/social_login.php:369
2116
  msgid "Vkontakte Application ID"
2117
  msgstr "Vkontakte Application ID"
2118
 
2119
- #: ../admin/social_login.php:379 ../admin/social_login.php:400
2120
  #, php-format
2121
  msgid ""
2122
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2127,7 +2158,7 @@ msgstr ""
2127
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Vkontakte "
2128
  "Application ID beszerzéshez"
2129
 
2130
- #: ../admin/social_login.php:381 ../admin/social_login.php:402
2131
  #, fuzzy
2132
  msgid ""
2133
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2136,17 +2167,17 @@ msgstr ""
2136
  "Illeszd be a következő url-t a <strong>Site address</strong> mezőbe a fenti "
2137
  "linken"
2138
 
2139
- #: ../admin/social_login.php:390
2140
  #, fuzzy
2141
  msgid "Vkontakte Secure key"
2142
  msgstr "Vkontakte"
2143
 
2144
- #: ../admin/social_login.php:411
2145
  #, fuzzy
2146
  msgid "Instagram App ID"
2147
  msgstr "Instagram Client ID"
2148
 
2149
- #: ../admin/social_login.php:421
2150
  #, fuzzy, php-format
2151
  msgid ""
2152
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2156,7 +2187,7 @@ msgstr ""
2156
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> az "
2157
  "Instagram Client ID beszerzéshez"
2158
 
2159
- #: ../admin/social_login.php:423 ../admin/social_login.php:444
2160
  #, fuzzy
2161
  msgid ""
2162
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2165,12 +2196,12 @@ msgstr ""
2165
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2166
  "linken"
2167
 
2168
- #: ../admin/social_login.php:432
2169
  #, fuzzy
2170
  msgid "Instagram App Secret"
2171
  msgstr "Instagram"
2172
 
2173
- #: ../admin/social_login.php:442
2174
  #, fuzzy, php-format
2175
  msgid ""
2176
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2180,11 +2211,11 @@ msgstr ""
2180
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> az "
2181
  "Instagram Client ID beszerzéshez"
2182
 
2183
- #: ../admin/social_login.php:453
2184
  msgid "Line Channel ID"
2185
  msgstr ""
2186
 
2187
- #: ../admin/social_login.php:462
2188
  #, fuzzy, php-format
2189
  msgid ""
2190
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2194,12 +2225,12 @@ msgstr ""
2194
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2195
  "API Key beszerzéshez"
2196
 
2197
- #: ../admin/social_login.php:473
2198
  #, fuzzy
2199
  msgid "Line Channel Secret"
2200
  msgstr "LinkedIn"
2201
 
2202
- #: ../admin/social_login.php:482
2203
  #, fuzzy, php-format
2204
  msgid ""
2205
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2209,12 +2240,12 @@ msgstr ""
2209
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2210
  "API Key beszerzéshez"
2211
 
2212
- #: ../admin/social_login.php:493
2213
  #, fuzzy
2214
  msgid "Wordpress Client ID"
2215
  msgstr "Google+ Client ID"
2216
 
2217
- #: ../admin/social_login.php:502
2218
  #, fuzzy, php-format
2219
  msgid ""
2220
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2224,12 +2255,12 @@ msgstr ""
2224
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2225
  "GooglePlus Client ID beszerzéshez"
2226
 
2227
- #: ../admin/social_login.php:513
2228
  #, fuzzy
2229
  msgid "Wordpress Client Secret"
2230
  msgstr "Google+ Client ID"
2231
 
2232
- #: ../admin/social_login.php:522
2233
  #, fuzzy, php-format
2234
  msgid ""
2235
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2240,12 +2271,12 @@ msgstr ""
2240
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2241
  "GooglePlus Client ID beszerzéshez"
2242
 
2243
- #: ../admin/social_login.php:533
2244
  #, fuzzy
2245
  msgid "Microsoft Client ID"
2246
  msgstr "Google+ Client ID"
2247
 
2248
- #: ../admin/social_login.php:542
2249
  #, fuzzy, php-format
2250
  msgid ""
2251
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2255,9 +2286,9 @@ msgstr ""
2255
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2256
  "GooglePlus Client ID beszerzéshez"
2257
 
2258
- #: ../admin/social_login.php:544 ../admin/social_login.php:564
2259
- #: ../admin/social_login.php:643 ../admin/social_login.php:663
2260
- #: ../admin/social_login.php:808 ../admin/social_login.php:828
2261
  #, fuzzy
2262
  msgid ""
2263
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2266,12 +2297,12 @@ msgstr ""
2266
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2267
  "linken"
2268
 
2269
- #: ../admin/social_login.php:553
2270
  #, fuzzy
2271
  msgid "Microsoft Client Secret"
2272
  msgstr "Google+ Client ID"
2273
 
2274
- #: ../admin/social_login.php:562
2275
  #, fuzzy, php-format
2276
  msgid ""
2277
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2282,12 +2313,12 @@ msgstr ""
2282
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2283
  "GooglePlus Client ID beszerzéshez"
2284
 
2285
- #: ../admin/social_login.php:572
2286
  #, fuzzy
2287
  msgid "Steam API Key"
2288
  msgstr "Twitter API Key"
2289
 
2290
- #: ../admin/social_login.php:581
2291
  #, fuzzy, php-format
2292
  msgid ""
2293
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2297,19 +2328,19 @@ msgstr ""
2297
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
2298
  "API Key beszerzéshez"
2299
 
2300
- #: ../admin/social_login.php:582
2301
  #, fuzzy
2302
  msgid "Save following <strong>domain</strong> to get the key"
2303
  msgstr ""
2304
  "Illeszd be a következő url-t a <strong>Callback domain</strong> mezőbe a "
2305
  "fenti linken"
2306
 
2307
- #: ../admin/social_login.php:591
2308
  #, fuzzy
2309
  msgid "Yahoo Client ID"
2310
  msgstr "Google+ Client ID"
2311
 
2312
- #: ../admin/social_login.php:600
2313
  #, fuzzy, php-format
2314
  msgid ""
2315
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2319,21 +2350,21 @@ msgstr ""
2319
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2320
  "GooglePlus Client ID beszerzéshez"
2321
 
2322
- #: ../admin/social_login.php:602 ../admin/social_login.php:622
2323
  #, fuzzy
2324
  msgid ""
2325
- "Paste following url in <strong>Redirect URI(s)</strong> option mentioned at "
2326
- "the link"
2327
  msgstr ""
2328
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2329
  "linken"
2330
 
2331
- #: ../admin/social_login.php:611
2332
  #, fuzzy
2333
  msgid "Yahoo Client Secret"
2334
  msgstr "Google+ Client ID"
2335
 
2336
- #: ../admin/social_login.php:620
2337
  #, fuzzy, php-format
2338
  msgid ""
2339
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2343,12 +2374,139 @@ msgstr ""
2343
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2344
  "GooglePlus Client ID beszerzéshez"
2345
 
2346
- #: ../admin/social_login.php:632
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2347
  #, fuzzy
2348
  msgid "Spotify Client ID"
2349
  msgstr "Google+ Client ID"
2350
 
2351
- #: ../admin/social_login.php:641
2352
  #, fuzzy, php-format
2353
  msgid ""
2354
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2358,12 +2516,12 @@ msgstr ""
2358
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2359
  "GooglePlus Client ID beszerzéshez"
2360
 
2361
- #: ../admin/social_login.php:652
2362
  #, fuzzy
2363
  msgid "Spotify Client Secret"
2364
  msgstr "Google+ Client ID"
2365
 
2366
- #: ../admin/social_login.php:661
2367
  #, fuzzy, php-format
2368
  msgid ""
2369
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2374,12 +2532,12 @@ msgstr ""
2374
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2375
  "GooglePlus Client ID beszerzéshez"
2376
 
2377
- #: ../admin/social_login.php:674
2378
  #, fuzzy
2379
  msgid "Dribbble Client ID"
2380
  msgstr "Google+ Client ID"
2381
 
2382
- #: ../admin/social_login.php:683
2383
  #, fuzzy, php-format
2384
  msgid ""
2385
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2389,12 +2547,12 @@ msgstr ""
2389
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2390
  "GooglePlus Client ID beszerzéshez"
2391
 
2392
- #: ../admin/social_login.php:694
2393
  #, fuzzy
2394
  msgid "Dribbble Client Secret"
2395
  msgstr "Google+ Client ID"
2396
 
2397
- #: ../admin/social_login.php:703
2398
  #, fuzzy, php-format
2399
  msgid ""
2400
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2405,12 +2563,12 @@ msgstr ""
2405
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2406
  "GooglePlus Client ID beszerzéshez"
2407
 
2408
- #: ../admin/social_login.php:715
2409
  #, fuzzy
2410
  msgid "Twitch Client ID"
2411
  msgstr "Instagram Client ID"
2412
 
2413
- #: ../admin/social_login.php:724
2414
  #, fuzzy, php-format
2415
  msgid ""
2416
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2420,12 +2578,12 @@ msgstr ""
2420
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2421
  "GooglePlus Client ID beszerzéshez"
2422
 
2423
- #: ../admin/social_login.php:735
2424
  #, fuzzy
2425
  msgid "Twitch Client Secret"
2426
  msgstr "Instagram Client ID"
2427
 
2428
- #: ../admin/social_login.php:744
2429
  #, fuzzy, php-format
2430
  msgid ""
2431
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2435,12 +2593,12 @@ msgstr ""
2435
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2436
  "GooglePlus Client ID beszerzéshez"
2437
 
2438
- #: ../admin/social_login.php:757
2439
  #, fuzzy
2440
  msgid "Foursquare Client ID"
2441
  msgstr "Google+ Client ID"
2442
 
2443
- #: ../admin/social_login.php:766
2444
  #, fuzzy, php-format
2445
  msgid ""
2446
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2451,7 +2609,7 @@ msgstr ""
2451
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2452
  "GooglePlus Client ID beszerzéshez"
2453
 
2454
- #: ../admin/social_login.php:768 ../admin/social_login.php:788
2455
  #, fuzzy
2456
  msgid ""
2457
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
@@ -2460,12 +2618,12 @@ msgstr ""
2460
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2461
  "linken"
2462
 
2463
- #: ../admin/social_login.php:777
2464
  #, fuzzy
2465
  msgid "Foursquare Client Secret"
2466
  msgstr "Google+ Client ID"
2467
 
2468
- #: ../admin/social_login.php:786
2469
  #, fuzzy, php-format
2470
  msgid ""
2471
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2476,11 +2634,11 @@ msgstr ""
2476
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2477
  "GooglePlus Client ID beszerzéshez"
2478
 
2479
- #: ../admin/social_login.php:797
2480
  msgid "Dropbox App Key"
2481
  msgstr ""
2482
 
2483
- #: ../admin/social_login.php:806
2484
  #, fuzzy, php-format
2485
  msgid ""
2486
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2490,12 +2648,12 @@ msgstr ""
2490
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
2491
  "App ID beszerzéshez"
2492
 
2493
- #: ../admin/social_login.php:817
2494
  #, fuzzy
2495
  msgid "Dropbox App Secret"
2496
  msgstr "Facebook App ID"
2497
 
2498
- #: ../admin/social_login.php:826
2499
  #, fuzzy, php-format
2500
  msgid ""
2501
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2505,11 +2663,11 @@ msgstr ""
2505
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
2506
  "App ID beszerzéshez"
2507
 
2508
- #: ../admin/social_login.php:840
2509
  msgid "Disqus Public Key"
2510
  msgstr ""
2511
 
2512
- #: ../admin/social_login.php:849
2513
  #, fuzzy, php-format
2514
  msgid ""
2515
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2519,12 +2677,12 @@ msgstr ""
2519
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Xing "
2520
  "Consumer Key beszerzéshez"
2521
 
2522
- #: ../admin/social_login.php:860
2523
  #, fuzzy
2524
  msgid "Disqus Secret Key"
2525
  msgstr "Disqus Shortname"
2526
 
2527
- #: ../admin/social_login.php:869
2528
  #, fuzzy, php-format
2529
  msgid ""
2530
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2534,12 +2692,12 @@ msgstr ""
2534
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Xing "
2535
  "Consumer Key beszerzéshez"
2536
 
2537
- #: ../admin/social_login.php:882
2538
  #, fuzzy
2539
  msgid "Reddit Client ID"
2540
  msgstr "Instagram Client ID"
2541
 
2542
- #: ../admin/social_login.php:891
2543
  #, fuzzy, php-format
2544
  msgid ""
2545
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2549,7 +2707,7 @@ msgstr ""
2549
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2550
  "GooglePlus Client ID beszerzéshez"
2551
 
2552
- #: ../admin/social_login.php:893 ../admin/social_login.php:913
2553
  #, fuzzy
2554
  msgid ""
2555
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
@@ -2558,12 +2716,12 @@ msgstr ""
2558
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2559
  "linken"
2560
 
2561
- #: ../admin/social_login.php:902
2562
  #, fuzzy
2563
  msgid "Reddit Client Secret"
2564
  msgstr "Instagram Client ID"
2565
 
2566
- #: ../admin/social_login.php:911
2567
  #, fuzzy, php-format
2568
  msgid ""
2569
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2573,12 +2731,12 @@ msgstr ""
2573
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2574
  "GooglePlus Client ID beszerzéshez"
2575
 
2576
- #: ../admin/social_login.php:925
2577
  #, fuzzy
2578
  msgid "Github Client ID"
2579
  msgstr "Instagram Client ID"
2580
 
2581
- #: ../admin/social_login.php:934
2582
  #, fuzzy, php-format
2583
  msgid ""
2584
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2588,12 +2746,12 @@ msgstr ""
2588
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2589
  "GooglePlus Client ID beszerzéshez"
2590
 
2591
- #: ../admin/social_login.php:945
2592
  #, fuzzy
2593
  msgid "Github Client Secret"
2594
  msgstr "Instagram Client ID"
2595
 
2596
- #: ../admin/social_login.php:954
2597
  #, fuzzy, php-format
2598
  msgid ""
2599
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2603,12 +2761,12 @@ msgstr ""
2603
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2604
  "GooglePlus Client ID beszerzéshez"
2605
 
2606
- #: ../admin/social_login.php:967
2607
  #, fuzzy
2608
  msgid "Kakao Client ID"
2609
  msgstr "Google+ Client ID"
2610
 
2611
- #: ../admin/social_login.php:976
2612
  #, fuzzy, php-format
2613
  msgid ""
2614
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2618,12 +2776,12 @@ msgstr ""
2618
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2619
  "GooglePlus Client ID beszerzéshez"
2620
 
2621
- #: ../admin/social_login.php:987
2622
  #, fuzzy
2623
  msgid "Kakao Client Secret"
2624
  msgstr "Google+ Client ID"
2625
 
2626
- #: ../admin/social_login.php:996
2627
  #, fuzzy, php-format
2628
  msgid ""
2629
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2633,110 +2791,110 @@ msgstr ""
2633
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2634
  "GooglePlus Client ID beszerzéshez"
2635
 
2636
- #: ../admin/social_login.php:1016
2637
  #, fuzzy
2638
  msgid "Social Login Options"
2639
  msgstr "Social Login"
2640
 
2641
- #: ../admin/social_login.php:1031
2642
  msgid "Text to display above the Social Login interface"
2643
  msgstr "Szöveg a Közösségi Belépés felett"
2644
 
2645
- #: ../admin/social_login.php:1039
2646
  msgid "Trigger social login in the same browser tab"
2647
  msgstr ""
2648
 
2649
- #: ../admin/social_login.php:1049
2650
  msgid "Trigger social login in the same browser tab instead of a popup window"
2651
  msgstr ""
2652
 
2653
- #: ../admin/social_login.php:1056
2654
  #, fuzzy
2655
  msgid "Center align icons"
2656
  msgstr "Ikonsorrend beállítás"
2657
 
2658
- #: ../admin/social_login.php:1066
2659
  #, fuzzy
2660
  msgid "Center align social login icons"
2661
  msgstr "Social Login"
2662
 
2663
- #: ../admin/social_login.php:1073
2664
  msgid "Enable at login page"
2665
  msgstr "Bekapcsolás a belépés oldalon"
2666
 
2667
- #: ../admin/social_login.php:1083
2668
  msgid ""
2669
  "Social Login interface will get enabled at the login page of your website"
2670
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2671
 
2672
- #: ../admin/social_login.php:1090
2673
  msgid "Enable at register page"
2674
  msgstr "Bekapcsolás a regisztráció oldalon"
2675
 
2676
- #: ../admin/social_login.php:1100
2677
  msgid ""
2678
  "Social Login interface will get enabled at the registration page of your "
2679
  "website"
2680
  msgstr "Közösségi Belépés megjelenítése a weboldal regisztrációs oldalán"
2681
 
2682
- #: ../admin/social_login.php:1107
2683
  msgid "Enable at comment form"
2684
  msgstr "Bekapcsolás a hozászólásoknál"
2685
 
2686
- #: ../admin/social_login.php:1117
2687
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2688
  msgstr "Közösségi Belépés megjelenítése a Wordpress hozzászólás küldésnél"
2689
 
2690
- #: ../admin/social_login.php:1131
2691
  msgid "Enable before WooCommerce Customer Login Form"
2692
  msgstr "Engedélyezze előtt WooCommerce Megrendelő Bejelentkezés"
2693
 
2694
- #: ../admin/social_login.php:1141
2695
  #, fuzzy
2696
  msgid ""
2697
  "Social Login Interface will get enabled before the customer login form at "
2698
  "WooCommerce My Account page"
2699
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2700
 
2701
- #: ../admin/social_login.php:1148
2702
  #, fuzzy
2703
  msgid "Enable at WooCommerce Customer Login Form"
2704
  msgstr "Engedélyezze után WooCommerce Megrendelő Bejelentkezés"
2705
 
2706
- #: ../admin/social_login.php:1158
2707
  #, fuzzy
2708
  msgid ""
2709
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2710
  "My Account page"
2711
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2712
 
2713
- #: ../admin/social_login.php:1165
2714
  #, fuzzy
2715
  msgid "Enable at WooCommerce Customer Register Form"
2716
  msgstr "Engedélyezze után WooCommerce Megrendelő Bejelentkezés"
2717
 
2718
- #: ../admin/social_login.php:1175
2719
  #, fuzzy
2720
  msgid ""
2721
  "Integrate Social Login Interface with the customer register form at "
2722
  "WooCommerce My Account page"
2723
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2724
 
2725
- #: ../admin/social_login.php:1182
2726
  #, fuzzy
2727
  msgid "Enable at WooCommerce checkout page"
2728
  msgstr "Bekapcsolás a regisztráció oldalon"
2729
 
2730
- #: ../admin/social_login.php:1192
2731
  #, fuzzy
2732
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2733
  msgstr "Közösségi Belépés megjelenítése a Wordpress hozzászólás küldésnél"
2734
 
2735
- #: ../admin/social_login.php:1202
2736
  msgid "Auto-approve comments made by Social Login users"
2737
  msgstr "Közösségi Belépéses hozzászólások automatikus elfogadása"
2738
 
2739
- #: ../admin/social_login.php:1212
2740
  msgid ""
2741
  "If this option is enabled, and WordPress comment is made by Social Login "
2742
  "user, comment will get approved immediately without keeping in moderation."
@@ -2745,37 +2903,37 @@ msgstr ""
2745
  "felhasználó Wordpress hozzászólást küld, ez azonnal, moderáció nélkül "
2746
  "megjelenik az oldalon."
2747
 
2748
- #: ../admin/social_login.php:1213
2749
  msgid "Note: This is not related to Facebook comments"
2750
  msgstr "Megjegyzés: Ez nem kapcsolódik a Facebook hozzászólásokhoz"
2751
 
2752
- #: ../admin/social_login.php:1222
2753
  msgid "Enable social avatar"
2754
  msgstr "Közösségi avatar bekapcsolás"
2755
 
2756
- #: ../admin/social_login.php:1232
2757
  msgid ""
2758
  "Social profile pictures of the logged in user will be displayed as profile "
2759
  "avatar"
2760
  msgstr "A közösségi profil képe lesz megjelenítve avatarként a weboldalon"
2761
 
2762
- #: ../admin/social_login.php:1241
2763
  msgid "Avatar quality"
2764
  msgstr " Avatar képminőség"
2765
 
2766
- #: ../admin/social_login.php:1244
2767
  msgid "Average"
2768
  msgstr "Átlagos"
2769
 
2770
- #: ../admin/social_login.php:1245
2771
  msgid "Best"
2772
  msgstr "legjobb"
2773
 
2774
- #: ../admin/social_login.php:1252
2775
  msgid "Choose avatar quality"
2776
  msgstr "Válassz Avatar képminőséget"
2777
 
2778
- #: ../admin/social_login.php:1260
2779
  #, fuzzy
2780
  msgid ""
2781
  "Show option for users to update social avatar at BuddyPress profile page"
@@ -2783,13 +2941,13 @@ msgstr ""
2783
  "Engedélyezze ezt a lehetőséget, hogy a szociális számla összekötő interfész "
2784
  "BuddyPress profil oldal"
2785
 
2786
- #: ../admin/social_login.php:1270
2787
  msgid ""
2788
  "If enabled, users would be able to update their social avatar from \"Profile "
2789
  "photo\" section in BuddyPress profile at front-end"
2790
  msgstr ""
2791
 
2792
- #: ../admin/social_login.php:1290
2793
  msgid ""
2794
  "If enabled and Social ID provider does not provide user's email address on "
2795
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2799,11 +2957,11 @@ msgstr ""
2799
  "a belépéskor, a felhasználótól elkérjük e-mail címét. Egyébként egy "
2800
  "véletlenszerű e-mail címet generálunk"
2801
 
2802
- #: ../admin/social_login.php:1298
2803
  msgid "Send post-registration email to user to set account password"
2804
  msgstr ""
2805
 
2806
- #: ../admin/social_login.php:1308
2807
  msgid ""
2808
  "If enabled, an email will be sent to user after registration through Social "
2809
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2814,12 +2972,12 @@ msgstr ""
2814
  "Felhasználói név, Jelszó, melyek segítségével hagyományos módon is beléphet "
2815
  "az oldalra."
2816
 
2817
- #: ../admin/social_login.php:1315
2818
  #, fuzzy
2819
  msgid "Send new user registration notification email to admin"
2820
  msgstr "Letilthatja a felhasználói regisztráció útján Szociális Belépés"
2821
 
2822
- #: ../admin/social_login.php:1325
2823
  #, fuzzy
2824
  msgid ""
2825
  "If enabled, an email will be sent to admin after new user registers through "
@@ -2830,40 +2988,40 @@ msgstr ""
2830
  "Felhasználói név, Jelszó, melyek segítségével hagyományos módon is beléphet "
2831
  "az oldalra."
2832
 
2833
- #: ../admin/social_login.php:1332
2834
  msgid "Login redirection"
2835
  msgstr "Átirányítás Belépés után"
2836
 
2837
- #: ../admin/social_login.php:1336
2838
  msgid "Same page where user logged in"
2839
  msgstr "Az az oldal, ahol a felhasználó belépett"
2840
 
2841
- #: ../admin/social_login.php:1340 ../admin/social_login.php:1369
2842
  msgid "Account dashboard"
2843
  msgstr "Felhasználói Irányítópult"
2844
 
2845
- #: ../admin/social_login.php:1343 ../admin/social_login.php:1372
2846
  msgid "BuddyPress profile page"
2847
  msgstr "BuddyPress profil oldal"
2848
 
2849
- #: ../admin/social_login.php:1346 ../admin/social_login.php:1375
2850
  msgid "Custom Url"
2851
  msgstr "Egyedi URL"
2852
 
2853
- #: ../admin/social_login.php:1354
2854
  msgid "User will be redirected to the selected page after Social Login"
2855
  msgstr ""
2856
  "A felhasználót a kiválasztott oldalra irányítjuk a Közösségi Belépés után"
2857
 
2858
- #: ../admin/social_login.php:1361
2859
  msgid "Registration redirection"
2860
  msgstr "Átirányítás Regisztráció után"
2861
 
2862
- #: ../admin/social_login.php:1365
2863
  msgid "Same page from where user registered"
2864
  msgstr "Az az oldal, ahol a felhasználó regisztrált"
2865
 
2866
- #: ../admin/social_login.php:1383
2867
  msgid ""
2868
  "User will be redirected to the selected page after registration (first "
2869
  "Social Login) through Social Login"
@@ -2871,23 +3029,23 @@ msgstr ""
2871
  "A felhasználó a kiválasztott oldalra lesz átirányítva a regisztráció (első "
2872
  "Közösségi belépés) után"
2873
 
2874
- #: ../admin/social_login.php:1392
2875
  #, fuzzy
2876
  msgid "Social Account Linking Options"
2877
  msgstr "Közösségi Hozzászólás"
2878
 
2879
- #: ../admin/social_login.php:1407
2880
  #, fuzzy
2881
  msgid "Text to display above the Social Account Linking interface"
2882
  msgstr "Szöveg a Közösségi Belépés felett"
2883
 
2884
- #: ../admin/social_login.php:1414
2885
  #, fuzzy
2886
  msgid ""
2887
  "Link social account to already existing account, if email address matches"
2888
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
2889
 
2890
- #: ../admin/social_login.php:1424
2891
  msgid ""
2892
  "If email address of the user's Social Account matches with an already "
2893
  "existing account at your website, that social account will be linked to "
@@ -2895,12 +3053,12 @@ msgid ""
2895
  "Linking interface at their profile page."
2896
  msgstr ""
2897
 
2898
- #: ../admin/social_login.php:1432
2899
  msgid "Enable social account linking at BuddyPress profile page"
2900
  msgstr ""
2901
  "Engedélyezze a szociális számla összekapcsolása a BuddyPress profil oldal"
2902
 
2903
- #: ../admin/social_login.php:1442
2904
  msgid ""
2905
  "Enable this option to show social account linking interface at BuddyPress "
2906
  "profile page"
@@ -2908,15 +3066,15 @@ msgstr ""
2908
  "Engedélyezze ezt a lehetőséget, hogy a szociális számla összekötő interfész "
2909
  "BuddyPress profil oldal"
2910
 
2911
- #: ../admin/social_login.php:1453
2912
  msgid "Email popup options"
2913
  msgstr "Email felugró ablak beállítások"
2914
 
2915
- #: ../admin/social_login.php:1458
2916
  msgid "Text on 'Email required' popup"
2917
  msgstr "Szöveg az 'E-mail cím szükséges' felugró ablakban"
2918
 
2919
- #: ../admin/social_login.php:1468
2920
  msgid ""
2921
  "This text will be displayed on email required popup. Leave empty if not "
2922
  "required."
@@ -2924,11 +3082,11 @@ msgstr ""
2924
  "Ez a szöveg jelenik meg az e-mail cím bekérő felugró ablakban. Üresen "
2925
  "hagyhatod, ha nem kéred be az e-mail címet."
2926
 
2927
- #: ../admin/social_login.php:1476
2928
  msgid "Error message for 'Email required' popup"
2929
  msgstr "Hibaüzenet az 'E-mail cím szükséges' felugró ablakban"
2930
 
2931
- #: ../admin/social_login.php:1486
2932
  msgid ""
2933
  "This message will be displayed to user if it provides invalid or already "
2934
  "registered email"
@@ -2936,11 +3094,11 @@ msgstr ""
2936
  "Ez az üzenet jelenik meg, ha a felhasználó helytelen, vagy már regisztrált e-"
2937
  "mail címet ad meg "
2938
 
2939
- #: ../admin/social_login.php:1494
2940
  msgid "Email popup height"
2941
  msgstr "Email felugró ablak magassága"
2942
 
2943
- #: ../admin/social_login.php:1504
2944
  msgid ""
2945
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2946
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2949,11 +3107,11 @@ msgstr ""
2949
  "Ha függőleges görgetősávot látsz az \"E-mail bekérő\" felugró ablakban, itt "
2950
  "megnövelheted az ablak magasságát. Egyébként üresen hagyható."
2951
 
2952
- #: ../admin/social_login.php:1511
2953
  msgid "Enable email verification"
2954
  msgstr "E-mail ellenőrzés bekapcsolása"
2955
 
2956
- #: ../admin/social_login.php:1521
2957
  msgid ""
2958
  "If enabled, email provided by the user will be verified by sending a "
2959
  "confirmation link to that email. User would not be able to login without "
@@ -2963,108 +3121,108 @@ msgstr ""
2963
  "üzenetet küldünk egy megerősítő linkkel. A felhasználó nem tud belépni, amíg "
2964
  "nem erősítette meg e-mailcímét "
2965
 
2966
- #: ../admin/social_login.php:1541
2967
  #, fuzzy
2968
  msgid "Enable GDPR opt-in"
2969
  msgstr "Disqus Hozzászólás Bekapcsolása"
2970
 
2971
- #: ../admin/social_login.php:1551
2972
  msgid ""
2973
  "Enable it to show GDPR opt-in for social login and social account linking"
2974
  msgstr ""
2975
 
2976
- #: ../admin/social_login.php:1559
2977
  #, fuzzy
2978
  msgid "Placement of GDPR opt-in"
2979
  msgstr "Disqus Hozzászólás Bekapcsolása"
2980
 
2981
- #: ../admin/social_login.php:1563
2982
  #, fuzzy
2983
  msgid "Above Social Login icons"
2984
  msgstr "Social Login"
2985
 
2986
- #: ../admin/social_login.php:1565
2987
  #, fuzzy
2988
  msgid "Below Social Login icons"
2989
  msgstr "Social Login"
2990
 
2991
- #: ../admin/social_login.php:1571
2992
  #, fuzzy
2993
  msgid "Placement of GDPR opt-in above or below the social login icons"
2994
  msgstr "Szöveg a Közösségi Belépés felett"
2995
 
2996
- #: ../admin/social_login.php:1578
2997
  msgid "Opt-in text"
2998
  msgstr ""
2999
 
3000
- #: ../admin/social_login.php:1588
3001
  #, fuzzy
3002
  msgid "Text for the GDPR opt-in"
3003
  msgstr "Disqus Hozzászólás Bekapcsolása"
3004
 
3005
- #: ../admin/social_login.php:1595
3006
  msgid "Text to link to Terms-Conditions page"
3007
  msgstr ""
3008
 
3009
- #: ../admin/social_login.php:1605
3010
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
3011
  msgstr ""
3012
 
3013
- #: ../admin/social_login.php:1612
3014
  msgid "Terms-Conditions Url"
3015
  msgstr ""
3016
 
3017
- #: ../admin/social_login.php:1622
3018
  #, fuzzy
3019
  msgid "Url of the terms-conditions page of your website"
3020
  msgstr "A főoldalad Url-je"
3021
 
3022
- #: ../admin/social_login.php:1629
3023
  msgid "Text to link to Privacy Policy page"
3024
  msgstr ""
3025
 
3026
- #: ../admin/social_login.php:1639
3027
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
3028
  msgstr ""
3029
 
3030
- #: ../admin/social_login.php:1646
3031
  msgid "Privacy Policy Url"
3032
  msgstr ""
3033
 
3034
- #: ../admin/social_login.php:1656
3035
  #, fuzzy
3036
  msgid "Url of the privacy policy page of your website"
3037
  msgstr "A főoldalad Url-je"
3038
 
3039
- #: ../admin/social_login.php:1707 ../inc/widget.php:260 ../inc/widget.php:438
3040
  #: ../inc/widget.php:602 ../inc/widget.php:750
3041
  msgid "Select"
3042
  msgstr "Válassz"
3043
 
3044
- #: ../admin/social_login.php:1738
3045
  #, fuzzy
3046
  msgid "Social Login Shortcode & Widget"
3047
  msgstr "Shortcode és Widget"
3048
 
3049
- #: ../admin/social_login.php:1739
3050
  msgid "Social Linking Shortcode"
3051
  msgstr ""
3052
 
3053
- #: ../admin/social_login.php:1754
3054
  msgid "Why is social login not working?"
3055
  msgstr ""
3056
 
3057
- #: ../admin/social_login.php:1755
3058
  msgid ""
3059
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3060
  "belong to the same app"
3061
  msgstr ""
3062
 
3063
- #: ../admin/social_login.php:1757
3064
  msgid "Social Login not working with Varnish enabled"
3065
  msgstr ""
3066
 
3067
- #: ../admin/social_login.php:1758
3068
  msgid ""
3069
  "Why the user is not appearing logged in even after Social Login until the "
3070
  "webpage is refreshed manually?"
@@ -3281,6 +3439,10 @@ msgstr ""
3281
  msgid "Archives"
3282
  msgstr "Kategória Archívum"
3283
 
 
 
 
 
3284
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3285
  msgid "Invalid request"
3286
  msgstr "Hibás kérés"
@@ -3289,28 +3451,32 @@ msgstr "Hibás kérés"
3289
  msgid "Providers not selected"
3290
  msgstr "Nincs kiválasztott szolgáltató"
3291
 
3292
- #: ../inc/social_login.php:968
 
 
 
 
3293
  msgid "Email"
3294
  msgstr "Email"
3295
 
3296
- #: ../inc/social_login.php:969
3297
  msgid "Confirm email"
3298
  msgstr ""
3299
 
3300
- #: ../inc/social_login.php:971
3301
  msgid "Save"
3302
  msgstr ""
3303
 
3304
- #: ../inc/social_login.php:972
3305
  msgid "Cancel"
3306
  msgstr ""
3307
 
3308
- #: ../inc/social_login.php:1046
3309
  #, fuzzy
3310
  msgid "Email Verification"
3311
  msgstr "E-mail ellenőrzés bekapcsolása"
3312
 
3313
- #: ../inc/social_login.php:1048
3314
  msgid ""
3315
  "Please click on the following link or paste it in browser to verify your "
3316
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-06 12:21+0530\n"
6
+ "PO-Revision-Date: 2021-04-06 12:21+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../super_socializer.php:1634
20
  #, fuzzy
21
  msgid ""
22
  "cURL is not enabled at your website server. Please contact your website "
25
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
26
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
27
 
28
+ #: ../super_socializer.php:1662
29
  #, fuzzy, php-format
30
  msgid ""
31
  "Enter exactly the following url in <strong>Website</strong> option in your "
35
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
36
  "lépés %s)"
37
 
38
+ #: ../super_socializer.php:1665
39
  #, fuzzy, php-format
40
  msgid ""
41
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
45
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
46
  "lépés %s)"
47
 
48
+ #: ../super_socializer.php:1668
49
  msgid ""
50
  "Make sure cURL is enabled at your website server. You may need to contact "
51
  "the server administrator of your website to verify this"
53
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
54
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
55
 
56
+ #: ../super_socializer.php:1829
57
+ msgid "Search"
58
+ msgstr ""
59
+
60
+ #: ../super_socializer.php:1851 ../helper.php:995
61
  msgid "Please verify your email address to login."
62
  msgstr "Kérjük, ellenőrizd e-mail címed a belépéshez."
63
 
64
+ #: ../super_socializer.php:1851
65
  msgid "Your email has been verified. Now you can login to your account"
66
  msgstr "E-mail címed ellenőrzése sikeres. Most már beléphetsz fiókodba"
67
 
68
+ #: ../super_socializer.php:1855
69
  msgid "Notification"
70
  msgstr "Értesítés"
71
 
72
+ #: ../super_socializer.php:1873 ../admin/social_login.php:1443
73
  msgid "Email required"
74
  msgstr "E-mail cím szükséges"
75
 
76
+ #: ../super_socializer.php:1876
77
  msgid "Please check your email inbox to complete the registration."
78
  msgstr "Kérjük, nézd meg e-mail címed a regisztráció befejezéséhez."
79
 
80
+ #: ../super_socializer.php:1945
81
  msgid "Leave a reply"
82
  msgstr "Válaszolj"
83
 
84
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
85
  msgid "Shares"
86
  msgstr ""
87
 
88
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
89
  msgid "Share"
90
  msgstr ""
91
 
92
+ #: ../super_socializer.php:1961
93
  #, fuzzy
94
  msgid "Link copied."
95
  msgstr "LinkedIn"
96
 
97
+ #: ../super_socializer.php:2206
98
  #, fuzzy
99
  msgid "Super Socializer - General Options"
100
  msgstr "Super Socializer - Belépés"
101
 
102
+ #: ../super_socializer.php:2206 ../admin/general_options.php:15
103
  #: ../admin/social_commenting.php:47
104
  #, fuzzy
105
  msgid "General Options"
106
  msgstr "Megosztási beállítások"
107
 
108
+ #: ../super_socializer.php:2274 ../helper.php:924
109
  #, fuzzy
110
  msgid "Social Avatar"
111
  msgstr "Kis Avatar URL"
112
 
113
+ #: ../super_socializer.php:2277
114
  msgid "Small Avatar Url"
115
  msgstr "Kis Avatar URL"
116
 
117
+ #: ../super_socializer.php:2281
118
  #, fuzzy
119
  msgid "Large Avatar Url"
120
  msgstr "Cél Url"
121
 
122
+ #: ../super_socializer.php:2285 ../helper.php:927
123
  msgid ""
124
  "Do not fetch and update social avatar from my profile, next time I Social "
125
  "Login"
126
  msgstr ""
127
 
128
+ #: ../super_socializer.php:2289 ../helper.php:928
129
  msgid "Update social avatar, next time I Social Login"
130
  msgstr ""
131
 
132
+ #: ../super_socializer.php:2366
133
  msgid "Login with your Social ID"
134
  msgstr ""
135
 
136
+ #: ../super_socializer.php:2367
137
  msgid "Email you entered is already registered or invalid"
138
  msgstr "A megadott e-mail már regisztrálva van, vagy hibás"
139
 
140
+ #: ../super_socializer.php:2374
141
  msgid "Please enter a valid email address. You might be required to verify it"
142
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
143
 
144
+ #: ../super_socializer.php:2378 ../super_socializer.php:3123
145
  msgid "Link your social account to login to your account at this website"
146
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
147
 
148
+ #: ../super_socializer.php:2633
149
  msgid "Thanks for installing Super Socializer plugin"
150
  msgstr ""
151
 
152
+ #: ../super_socializer.php:2635
153
  msgid "Configure the Plugin"
154
  msgstr ""
155
 
156
+ #: ../super_socializer.php:2646
157
  msgid ""
158
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
159
  "current version of Super Socializer"
160
  msgstr ""
161
 
162
+ #: ../super_socializer.php:2655
163
  msgid ""
164
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
165
  "version of Super Socializer"
166
  msgstr ""
167
 
168
+ #: ../super_socializer.php:2664
169
  msgid ""
170
+ "Update \"Social Login Buttons\" add-on to version 1.2.7 or above for "
171
  "compatibility with current version of Super Socializer"
172
  msgstr ""
173
 
174
+ #: ../super_socializer.php:2673
175
  msgid ""
176
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
177
  "with current version of Super Socializer"
178
  msgstr ""
179
 
180
+ #: ../super_socializer.php:2682
181
  msgid ""
182
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
183
  "with current version of Super Socializer"
184
  msgstr ""
185
 
186
+ #: ../super_socializer.php:2693
187
  #, php-format
188
  msgid ""
189
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
190
  msgstr ""
191
 
192
+ #: ../super_socializer.php:2702
193
  #, php-format
194
  msgid ""
195
  "To continue using Instagram login create a new Instagram App as described <a "
197
  "Instagram App Secret <a href=\"%s\">here</a>"
198
  msgstr ""
199
 
200
+ #: ../super_socializer.php:2711 ../super_socializer.php:2720
201
  #, php-format
202
  msgid ""
203
  "To continue using bitly url shortener, login to your bit.ly account and "
206
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
207
  msgstr ""
208
 
209
+ #: ../super_socializer.php:2736
210
  #, php-format
211
  msgid ""
212
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
213
  msgstr ""
214
 
215
+ #: ../super_socializer.php:2760
216
  #, php-format
217
  msgid ""
218
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
220
  "target=\"_blank\">here</a>"
221
  msgstr ""
222
 
223
+ #: ../super_socializer.php:2760 ../super_socializer.php:2785
224
+ #: ../super_socializer.php:2810 ../super_socializer.php:2835
225
+ #: ../super_socializer.php:2868 ../super_socializer.php:2896
226
+ #: ../super_socializer.php:2923
227
  msgid "Okay"
228
  msgstr ""
229
 
230
+ #: ../super_socializer.php:2785
231
  #, php-format
232
  msgid ""
233
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
235
  "\">here</a>"
236
  msgstr ""
237
 
238
+ #: ../super_socializer.php:2810
239
  #, php-format
240
  msgid ""
241
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
243
  "target=\"_blank\">here</a>"
244
  msgstr ""
245
 
246
+ #: ../super_socializer.php:2835
247
  #, php-format
248
  msgid ""
249
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
251
  "target=\"_blank\">here</a>"
252
  msgstr ""
253
 
254
+ #: ../super_socializer.php:2846
255
  #, php-format
256
  msgid ""
257
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
258
  msgstr ""
259
 
260
+ #: ../super_socializer.php:2868
261
  #, php-format
262
  msgid ""
263
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
265
  "\"%s\" target=\"_blank\">here</a>"
266
  msgstr ""
267
 
268
+ #: ../super_socializer.php:2896
269
  #, php-format
270
  msgid ""
271
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
274
  "your website %s with them. No need to copy-paste any code from their website."
275
  msgstr ""
276
 
277
+ #: ../super_socializer.php:2923
278
  #, php-format
279
  msgid ""
280
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
282
  "\"%s\" target=\"_blank\">here</a>"
283
  msgstr ""
284
 
285
+ #: ../super_socializer.php:2948
286
  #, php-format
287
  msgid ""
288
  "If you cannot get Linkedin login to work after updating the plugin, replace "
290
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
291
  msgstr ""
292
 
293
+ #: ../super_socializer.php:2948 ../super_socializer.php:2975
294
  msgid "Dismiss"
295
  msgstr ""
296
 
297
+ #: ../super_socializer.php:2974
298
  #, php-format
299
  msgid ""
300
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
303
  "that, clear share counts cache from \"Miscellaneous\" section"
304
  msgstr ""
305
 
306
+ #: ../super_socializer.php:3199
307
  msgid ""
308
  "Your browser is blocking some features of this website. Please follow the "
309
  "instructions at {support_url} to unblock these."
314
  msgid "Settings saved"
315
  msgstr "Beállítások"
316
 
317
+ #: ../helper.php:194
318
  #, fuzzy
319
  msgid "Click to toggle help"
320
  msgstr "Elrejtéséhez kattintson segítség"
321
 
322
+ #: ../helper.php:291
323
  #, fuzzy
324
  msgid "Add-Ons"
325
  msgstr "A kiegészítőket"
326
 
327
+ #: ../helper.php:292
328
  msgid "Support Documentation"
329
  msgstr ""
330
 
331
+ #: ../helper.php:293
332
  msgid "Settings"
333
  msgstr "Beállítások"
334
 
335
+ #: ../helper.php:576
336
  msgid "Account linked successfully"
337
  msgstr "Fiók kapcsolása sikeres"
338
 
339
+ #: ../helper.php:580
340
  msgid "Account already exists or linked"
341
  msgstr "Fiók már létezik, vagy össze van kötve"
342
 
343
+ #: ../helper.php:616 ../helper.php:618
344
  #, fuzzy
345
  msgid "Login with"
346
  msgstr "Belépési beállítások"
347
 
348
+ #: ../helper.php:653 ../helper.php:659
349
  msgid "Currently"
350
  msgstr "Jelenleg"
351
 
352
+ #: ../helper.php:653 ../helper.php:659
353
  msgid "Connected with"
354
  msgstr ""
355
 
356
+ #: ../helper.php:653 ../helper.php:659
357
  msgid "Remove"
358
  msgstr "Eltávolítás"
359
 
360
+ #: ../helper.php:730
361
  #, fuzzy
362
  msgid "Social Account Linking"
363
  msgstr "Közösségi Hozzászólás"
364
 
365
+ #: ../helper.php:780
366
  #, fuzzy
367
  msgid "Disable Standard Social Sharing on this "
368
  msgstr "Függőleges Közösségi Megosztás kikapcsolása"
369
 
370
+ #: ../helper.php:785
371
  #, fuzzy
372
  msgid "Disable Floating Social Sharing on this "
373
  msgstr "Vízszintes Közösségi Megosztás kikapcsolása"
374
 
375
+ #: ../helper.php:790
376
  #, fuzzy
377
  msgid "Disable Standard like buttons on this "
378
  msgstr "Függőleges Közösségi Gombok kikapcsolása"
379
 
380
+ #: ../helper.php:795
381
  #, fuzzy
382
  msgid "Disable Floating like buttons on this "
383
  msgstr "Vízszintes Közösségi Gombok kikapcsolása"
384
 
385
+ #: ../helper.php:800
386
  msgid "Disable Social Commenting on this "
387
  msgstr "Közösségi Hozzászólás kikapcsolása ennél"
388
 
389
+ #: ../helper.php:809
390
  #, fuzzy
391
  msgid "Standard Sharing Interface"
392
  msgstr "Megosztási Felület"
393
 
394
+ #: ../helper.php:815 ../helper.php:834
395
  msgid "Starting share count for "
396
  msgstr "Megosztás számok kezdése ehhez"
397
 
398
+ #: ../helper.php:828
399
  #, fuzzy
400
  msgid "Floating Sharing Interface"
401
  msgstr "Megosztási Felület"
402
 
403
+ #: ../helper.php:931
404
  #, fuzzy
405
  msgid "Small Avatar"
406
  msgstr "Kis Avatar URL"
407
 
408
+ #: ../helper.php:935
409
  #, fuzzy
410
  msgid "Large Avatar"
411
  msgstr "Cél Url"
412
 
413
+ #: ../helper.php:939 ../admin/general_options.php:89
414
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
415
+ #: ../admin/social_login.php:1933 ../admin/like_buttons.php:780
416
  msgid "Save Changes"
417
  msgstr "Változások Mentése"
418
 
419
+ #: ../helper.php:1032
420
  msgid "Click to delete social profile data"
421
  msgstr ""
422
 
423
+ #: ../helper.php:1061
424
  #, fuzzy
425
  msgid "Deleting"
426
  msgstr "Beállítások"
427
 
428
+ #: ../helper.php:1071
429
  msgid "Deleted"
430
  msgstr ""
431
 
432
+ #: ../helper.php:1073
433
  msgid "Something bad happened"
434
  msgstr ""
435
 
436
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
437
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
438
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
439
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1937
440
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
441
  #, fuzzy, php-format
442
  msgid ""
491
  msgstr ""
492
 
493
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
494
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1943
495
  #: ../admin/like_buttons.php:790
496
  #, fuzzy
497
  msgid "Instagram Shoutout"
498
  msgstr "Instagram"
499
 
500
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
501
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1945
502
  #: ../admin/like_buttons.php:792
503
  msgid ""
504
  "If you can send (to hello@heateor.com) how this plugin is helping your "
646
 
647
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
648
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
649
+ #: ../admin/social_login.php:1899 ../admin/like_buttons.php:50
650
  #: ../admin/like_buttons.php:751
651
  msgid "Shortcode & Widget"
652
  msgstr "Shortcode és Widget"
657
 
658
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
659
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
660
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1913
661
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
662
  msgid "FAQ"
663
  msgstr "GYIK"
902
  msgid "Url to share"
903
  msgstr "Megosztás Url-je"
904
 
905
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:1184
906
+ #: ../admin/social_login.php:1560 ../admin/like_buttons.php:105
907
  #: ../inc/widget.php:949
908
  msgid "Title"
909
  msgstr "Cím"
991
  msgstr ""
992
 
993
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
994
+ #: ../admin/social_login.php:1501 ../admin/social_login.php:1530
995
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
996
  msgid "Homepage"
997
  msgstr "Kezdő oldal"
1251
  msgid "Required only to track Facebook share count"
1252
  msgstr ""
1253
 
1254
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:222
1255
  msgid "Facebook App ID"
1256
  msgstr "Facebook App ID"
1257
 
1265
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1266
  "App ID beszerzéshez"
1267
 
1268
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:243
1269
  #, fuzzy
1270
  msgid "Facebook App Secret"
1271
  msgstr "Facebook App ID"
1452
  "tökéletesen) a szöveges mezőben:"
1453
 
1454
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1455
+ #: ../admin/social_login.php:1915
1456
  msgid ""
1457
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1458
  "an online website for the plugin to function properly."
1507
  msgstr ""
1508
 
1509
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1510
+ #: ../admin/social_login.php:1922
1511
  msgid "Why is my browser blocking some features of the plugin?"
1512
  msgstr ""
1513
 
1828
  msgid "Advanced Configuration"
1829
  msgstr "Alap Beállítások"
1830
 
1831
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1699
1832
  msgid "GDPR"
1833
  msgstr ""
1834
 
1835
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1850
1836
  msgid "XProfile Integration"
1837
  msgstr ""
1838
 
1867
 
1868
  #: ../admin/social_login.php:98
1869
  #, fuzzy
1870
+ msgid "Disable Social Login for admin accounts"
1871
+ msgstr "Social Login"
1872
+
1873
+ #: ../admin/social_login.php:108
1874
+ #, fuzzy
1875
+ msgid ""
1876
+ "After enabling this option, administrator users will not be able to login "
1877
+ "through social login. Other users will be able to login via social login."
1878
+ msgstr ""
1879
+ "Miután ezt az opciót, az új felhasználók nem lesznek képesek bejelentkezni a "
1880
+ "szociális bejelentkezést. Csak meglévő felhasználók képesek lesznek a "
1881
+ "társadalmi bejelentkezést."
1882
+
1883
+ #: ../admin/social_login.php:115
1884
+ #, fuzzy
1885
  msgid "Select Social Networks"
1886
  msgstr "elsődleges szociális háló"
1887
 
1888
+ #: ../admin/social_login.php:120
1889
  msgid "Facebook"
1890
  msgstr "Facebook"
1891
 
1892
+ #: ../admin/social_login.php:124
1893
  msgid "Twitter"
1894
  msgstr "Twitter"
1895
 
1896
+ #: ../admin/social_login.php:128
1897
  msgid "LinkedIn"
1898
  msgstr "LinkedIn"
1899
 
1900
+ #: ../admin/social_login.php:132
1901
  #, fuzzy
1902
  msgid "Google"
1903
  msgstr "Google+"
1904
 
1905
+ #: ../admin/social_login.php:136
1906
  msgid "Vkontakte"
1907
  msgstr "Vkontakte"
1908
 
1909
+ #: ../admin/social_login.php:140
1910
  msgid "Instagram"
1911
  msgstr "Instagram"
1912
 
1913
+ #: ../admin/social_login.php:144
1914
  msgid "Steam"
1915
  msgstr ""
1916
 
1917
+ #: ../admin/social_login.php:148
1918
  msgid "Line"
1919
  msgstr ""
1920
 
1921
+ #: ../admin/social_login.php:152
1922
  msgid "Wordpress"
1923
  msgstr ""
1924
 
1925
+ #: ../admin/social_login.php:156
1926
  msgid "Windows Live"
1927
  msgstr ""
1928
 
1929
+ #: ../admin/social_login.php:160
1930
  msgid "Yahoo"
1931
  msgstr "Yahoo"
1932
 
1933
+ #: ../admin/social_login.php:164
1934
+ msgid "Discord"
1935
+ msgstr ""
1936
+
1937
+ #: ../admin/social_login.php:168
1938
+ msgid "Amazon"
1939
+ msgstr ""
1940
+
1941
+ #: ../admin/social_login.php:172
1942
+ msgid "Stackoverflow"
1943
+ msgstr ""
1944
+
1945
+ #: ../admin/social_login.php:176
1946
  msgid "Spotify"
1947
  msgstr ""
1948
 
1949
+ #: ../admin/social_login.php:179
1950
  msgid "Dribbble"
1951
  msgstr ""
1952
 
1953
+ #: ../admin/social_login.php:183
1954
  #, fuzzy
1955
  msgid "Twitch"
1956
  msgstr "Twitter"
1957
 
1958
+ #: ../admin/social_login.php:187
1959
  #, fuzzy
1960
  msgid "Foursquare"
1961
  msgstr "szögletes"
1962
 
1963
+ #: ../admin/social_login.php:191
1964
  msgid "Dropbox"
1965
  msgstr ""
1966
 
1967
+ #: ../admin/social_login.php:195
1968
  msgid "Disqus"
1969
  msgstr ""
1970
 
1971
+ #: ../admin/social_login.php:199
1972
  msgid "Reddit"
1973
  msgstr "Reddit"
1974
 
1975
+ #: ../admin/social_login.php:203
1976
  msgid "Github"
1977
  msgstr ""
1978
 
1979
+ #: ../admin/social_login.php:207
1980
  msgid "Kakao"
1981
  msgstr ""
1982
 
1983
+ #: ../admin/social_login.php:215
1984
  msgid "Select Social ID provider to enable in Social Login"
1985
  msgstr "Válassz Közösségi ID szolgáltatót a Közösségi Belépéshez"
1986
 
1987
+ #: ../admin/social_login.php:232
1988
  #, php-format
1989
  msgid ""
1990
  "Required for Facebook Social Login to work. Please follow the documentation "
1994
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1995
  "App ID beszerzéshez"
1996
 
1997
+ #: ../admin/social_login.php:234 ../admin/social_login.php:255
1998
  #, fuzzy
1999
  msgid ""
2000
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
2002
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2003
  "linken"
2004
 
2005
+ #: ../admin/social_login.php:253
2006
  #, fuzzy, php-format
2007
  msgid ""
2008
  "Required for Facebook Social Login to work. Please follow the documentation "
2012
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
2013
  "App ID beszerzéshez"
2014
 
2015
+ #: ../admin/social_login.php:264
2016
  msgid "Twitter API Key"
2017
  msgstr "Twitter API Key"
2018
 
2019
+ #: ../admin/social_login.php:274
2020
  #, php-format
2021
  msgid ""
2022
  "Required for Twitter Social Login to work. Please follow the documentation "
2026
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
2027
  "API Key beszerzéshez"
2028
 
2029
+ #: ../admin/social_login.php:276 ../admin/social_login.php:301
2030
  #, fuzzy
2031
  msgid ""
2032
  "Paste following url in <strong>Website</strong> option mentioned at the link"
2034
  "Illeszd be a következő url-t a <strong>Website URL</strong> mezőbe a fenti "
2035
  "linken"
2036
 
2037
+ #: ../admin/social_login.php:280 ../admin/social_login.php:305
2038
+ #: ../admin/social_login.php:493 ../admin/social_login.php:513
2039
+ #: ../admin/social_login.php:848 ../admin/social_login.php:868
2040
+ #: ../admin/social_login.php:889 ../admin/social_login.php:909
2041
+ #: ../admin/social_login.php:1014 ../admin/social_login.php:1034
2042
+ #: ../admin/social_login.php:1099 ../admin/social_login.php:1119
2043
+ #: ../admin/social_login.php:1141 ../admin/social_login.php:1161
2044
  #, fuzzy
2045
  msgid ""
2046
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
2049
  "Illeszd be a következő url-t a <strong>Callback domain</strong> mezőbe a "
2050
  "fenti linken"
2051
 
2052
+ #: ../admin/social_login.php:289
2053
  msgid "Twitter API Secret"
2054
  msgstr "Twitter API Secret"
2055
 
2056
+ #: ../admin/social_login.php:299
2057
  #, php-format
2058
  msgid ""
2059
  "Required for Twitter Social Login to work. Please follow the documentation "
2063
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
2064
  "API Secret beszerzéséhez"
2065
 
2066
+ #: ../admin/social_login.php:314
2067
  #, fuzzy
2068
  msgid "LinkedIn Client ID"
2069
  msgstr "LinkedIn"
2070
 
2071
+ #: ../admin/social_login.php:324
2072
  #, fuzzy, php-format
2073
  msgid ""
2074
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2078
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2079
  "API Key beszerzéshez"
2080
 
2081
+ #: ../admin/social_login.php:326 ../admin/social_login.php:347
2082
+ #: ../admin/social_login.php:533 ../admin/social_login.php:553
2083
  #, fuzzy
2084
  msgid ""
2085
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2088
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2089
  "linken"
2090
 
2091
+ #: ../admin/social_login.php:335
2092
  #, fuzzy
2093
  msgid "LinkedIn Client Secret"
2094
  msgstr "LinkedIn"
2095
 
2096
+ #: ../admin/social_login.php:345
2097
  #, fuzzy, php-format
2098
  msgid ""
2099
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2104
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2105
  "API Key beszerzéshez"
2106
 
2107
+ #: ../admin/social_login.php:356
2108
  #, fuzzy
2109
  msgid "Google Client ID"
2110
  msgstr "Google+ Client ID"
2111
 
2112
+ #: ../admin/social_login.php:366
2113
  #, fuzzy, php-format
2114
  msgid ""
2115
  "Required for Google Social Login to work. Please follow the documentation at "
2119
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2120
  "GooglePlus Client ID beszerzéshez"
2121
 
2122
+ #: ../admin/social_login.php:368 ../admin/social_login.php:389
2123
  #, fuzzy
2124
  msgid ""
2125
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2128
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2129
  "linken"
2130
 
2131
+ #: ../admin/social_login.php:377
2132
  #, fuzzy
2133
  msgid "Google Client Secret"
2134
  msgstr "Google+ Client ID"
2135
 
2136
+ #: ../admin/social_login.php:387
2137
  #, fuzzy, php-format
2138
  msgid ""
2139
  "Required for Google Social Login to work. Please follow the documentation at "
2143
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2144
  "GooglePlus Client ID beszerzéshez"
2145
 
2146
+ #: ../admin/social_login.php:398
2147
  msgid "Vkontakte Application ID"
2148
  msgstr "Vkontakte Application ID"
2149
 
2150
+ #: ../admin/social_login.php:408 ../admin/social_login.php:429
2151
  #, php-format
2152
  msgid ""
2153
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2158
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Vkontakte "
2159
  "Application ID beszerzéshez"
2160
 
2161
+ #: ../admin/social_login.php:410 ../admin/social_login.php:431
2162
  #, fuzzy
2163
  msgid ""
2164
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2167
  "Illeszd be a következő url-t a <strong>Site address</strong> mezőbe a fenti "
2168
  "linken"
2169
 
2170
+ #: ../admin/social_login.php:419
2171
  #, fuzzy
2172
  msgid "Vkontakte Secure key"
2173
  msgstr "Vkontakte"
2174
 
2175
+ #: ../admin/social_login.php:440
2176
  #, fuzzy
2177
  msgid "Instagram App ID"
2178
  msgstr "Instagram Client ID"
2179
 
2180
+ #: ../admin/social_login.php:450
2181
  #, fuzzy, php-format
2182
  msgid ""
2183
  "Required for Instagram Social Login to work. Please follow the documentation "
2187
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> az "
2188
  "Instagram Client ID beszerzéshez"
2189
 
2190
+ #: ../admin/social_login.php:452 ../admin/social_login.php:473
2191
  #, fuzzy
2192
  msgid ""
2193
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2196
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2197
  "linken"
2198
 
2199
+ #: ../admin/social_login.php:461
2200
  #, fuzzy
2201
  msgid "Instagram App Secret"
2202
  msgstr "Instagram"
2203
 
2204
+ #: ../admin/social_login.php:471
2205
  #, fuzzy, php-format
2206
  msgid ""
2207
  "Required for Instagram Social Login to work. Please follow the documentation "
2211
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> az "
2212
  "Instagram Client ID beszerzéshez"
2213
 
2214
+ #: ../admin/social_login.php:482
2215
  msgid "Line Channel ID"
2216
  msgstr ""
2217
 
2218
+ #: ../admin/social_login.php:491
2219
  #, fuzzy, php-format
2220
  msgid ""
2221
  "Required for Line Social Login to work. Please follow the documentation at "
2225
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2226
  "API Key beszerzéshez"
2227
 
2228
+ #: ../admin/social_login.php:502
2229
  #, fuzzy
2230
  msgid "Line Channel Secret"
2231
  msgstr "LinkedIn"
2232
 
2233
+ #: ../admin/social_login.php:511
2234
  #, fuzzy, php-format
2235
  msgid ""
2236
  "Required for Line Social Login to work. Please follow the documentation at "
2240
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2241
  "API Key beszerzéshez"
2242
 
2243
+ #: ../admin/social_login.php:522
2244
  #, fuzzy
2245
  msgid "Wordpress Client ID"
2246
  msgstr "Google+ Client ID"
2247
 
2248
+ #: ../admin/social_login.php:531
2249
  #, fuzzy, php-format
2250
  msgid ""
2251
  "Required for Wordpress Social Login to work. Please follow the documentation "
2255
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2256
  "GooglePlus Client ID beszerzéshez"
2257
 
2258
+ #: ../admin/social_login.php:542
2259
  #, fuzzy
2260
  msgid "Wordpress Client Secret"
2261
  msgstr "Google+ Client ID"
2262
 
2263
+ #: ../admin/social_login.php:551
2264
  #, fuzzy, php-format
2265
  msgid ""
2266
  "Required for Wordpress Social Login to work. Please follow the documentation "
2271
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2272
  "GooglePlus Client ID beszerzéshez"
2273
 
2274
+ #: ../admin/social_login.php:562
2275
  #, fuzzy
2276
  msgid "Microsoft Client ID"
2277
  msgstr "Google+ Client ID"
2278
 
2279
+ #: ../admin/social_login.php:571
2280
  #, fuzzy, php-format
2281
  msgid ""
2282
  "Required for Live Social Login to work. Please follow the documentation at "
2286
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2287
  "GooglePlus Client ID beszerzéshez"
2288
 
2289
+ #: ../admin/social_login.php:573 ../admin/social_login.php:593
2290
+ #: ../admin/social_login.php:806 ../admin/social_login.php:826
2291
+ #: ../admin/social_login.php:971 ../admin/social_login.php:991
2292
  #, fuzzy
2293
  msgid ""
2294
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2297
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2298
  "linken"
2299
 
2300
+ #: ../admin/social_login.php:582
2301
  #, fuzzy
2302
  msgid "Microsoft Client Secret"
2303
  msgstr "Google+ Client ID"
2304
 
2305
+ #: ../admin/social_login.php:591
2306
  #, fuzzy, php-format
2307
  msgid ""
2308
  "Required for Live Social Login to work. Please follow the documentation at "
2313
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2314
  "GooglePlus Client ID beszerzéshez"
2315
 
2316
+ #: ../admin/social_login.php:601
2317
  #, fuzzy
2318
  msgid "Steam API Key"
2319
  msgstr "Twitter API Key"
2320
 
2321
+ #: ../admin/social_login.php:610
2322
  #, fuzzy, php-format
2323
  msgid ""
2324
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2328
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
2329
  "API Key beszerzéshez"
2330
 
2331
+ #: ../admin/social_login.php:611
2332
  #, fuzzy
2333
  msgid "Save following <strong>domain</strong> to get the key"
2334
  msgstr ""
2335
  "Illeszd be a következő url-t a <strong>Callback domain</strong> mezőbe a "
2336
  "fenti linken"
2337
 
2338
+ #: ../admin/social_login.php:620
2339
  #, fuzzy
2340
  msgid "Yahoo Client ID"
2341
  msgstr "Google+ Client ID"
2342
 
2343
+ #: ../admin/social_login.php:629
2344
  #, fuzzy, php-format
2345
  msgid ""
2346
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2350
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2351
  "GooglePlus Client ID beszerzéshez"
2352
 
2353
+ #: ../admin/social_login.php:631 ../admin/social_login.php:651
2354
  #, fuzzy
2355
  msgid ""
2356
+ "Paste following url in the <strong>Redirect URI(s)</strong> option mentioned "
2357
+ "at the link"
2358
  msgstr ""
2359
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2360
  "linken"
2361
 
2362
+ #: ../admin/social_login.php:640
2363
  #, fuzzy
2364
  msgid "Yahoo Client Secret"
2365
  msgstr "Google+ Client ID"
2366
 
2367
+ #: ../admin/social_login.php:649
2368
  #, fuzzy, php-format
2369
  msgid ""
2370
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2374
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2375
  "GooglePlus Client ID beszerzéshez"
2376
 
2377
+ #: ../admin/social_login.php:662
2378
+ #, fuzzy
2379
+ msgid "Discord Client ID"
2380
+ msgstr "Instagram Client ID"
2381
+
2382
+ #: ../admin/social_login.php:671
2383
+ #, fuzzy, php-format
2384
+ msgid ""
2385
+ "Required for Discord Social Login to work. Please follow the documentation "
2386
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client ID"
2387
+ msgstr ""
2388
+ "Szükséges a GooglePlus Közösségi Belépés működéséhez. Kérlek, kövesd a "
2389
+ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2390
+ "GooglePlus Client ID beszerzéshez"
2391
+
2392
+ #: ../admin/social_login.php:673 ../admin/social_login.php:693
2393
+ #, fuzzy
2394
+ msgid ""
2395
+ "Paste following url in the <strong>Redirects</strong> option mentioned at "
2396
+ "the link"
2397
+ msgstr ""
2398
+ "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2399
+ "linken"
2400
+
2401
+ #: ../admin/social_login.php:682
2402
+ #, fuzzy
2403
+ msgid "Discord Client Secret"
2404
+ msgstr "Instagram Client ID"
2405
+
2406
+ #: ../admin/social_login.php:691
2407
+ #, fuzzy, php-format
2408
+ msgid ""
2409
+ "Required for Discord Social Login to work. Please follow the documentation "
2410
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client "
2411
+ "Secret key"
2412
+ msgstr ""
2413
+ "Szükséges a GooglePlus Közösségi Belépés működéséhez. Kérlek, kövesd a "
2414
+ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2415
+ "GooglePlus Client ID beszerzéshez"
2416
+
2417
+ #: ../admin/social_login.php:704
2418
+ #, fuzzy
2419
+ msgid "Amazon Client ID"
2420
+ msgstr "Google+ Client ID"
2421
+
2422
+ #: ../admin/social_login.php:713
2423
+ #, fuzzy, php-format
2424
+ msgid ""
2425
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2426
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client ID"
2427
+ msgstr ""
2428
+ "Szükséges a GooglePlus Közösségi Belépés működéséhez. Kérlek, kövesd a "
2429
+ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2430
+ "GooglePlus Client ID beszerzéshez"
2431
+
2432
+ #: ../admin/social_login.php:715 ../admin/social_login.php:735
2433
+ #, fuzzy
2434
+ msgid ""
2435
+ "Paste following url in the <strong>Allowed Return URLs</strong> option "
2436
+ "mentioned at the link"
2437
+ msgstr ""
2438
+ "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2439
+ "linken"
2440
+
2441
+ #: ../admin/social_login.php:724
2442
+ #, fuzzy
2443
+ msgid "Amazon Client Secret"
2444
+ msgstr "Google+ Client ID"
2445
+
2446
+ #: ../admin/social_login.php:733
2447
+ #, fuzzy, php-format
2448
+ msgid ""
2449
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2450
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client Secret "
2451
+ "key"
2452
+ msgstr ""
2453
+ "Szükséges a GooglePlus Közösségi Belépés működéséhez. Kérlek, kövesd a "
2454
+ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2455
+ "GooglePlus Client ID beszerzéshez"
2456
+
2457
+ #: ../admin/social_login.php:746
2458
+ #, fuzzy
2459
+ msgid "Stackoverflow Client ID"
2460
+ msgstr "Google+ Client ID"
2461
+
2462
+ #: ../admin/social_login.php:755
2463
+ #, fuzzy, php-format
2464
+ msgid ""
2465
+ "Required for Stackoverflow Social Login to work. Please follow the "
2466
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2467
+ "Stackoverflow Client ID"
2468
+ msgstr ""
2469
+ "Szükséges a GooglePlus Közösségi Belépés működéséhez. Kérlek, kövesd a "
2470
+ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2471
+ "GooglePlus Client ID beszerzéshez"
2472
+
2473
+ #: ../admin/social_login.php:761
2474
+ #, fuzzy
2475
+ msgid "Stackoverflow Client Secret"
2476
+ msgstr "Google+ Client ID"
2477
+
2478
+ #: ../admin/social_login.php:770
2479
+ #, fuzzy, php-format
2480
+ msgid ""
2481
+ "Required for Stackoverflow Social Login to work. Please follow the "
2482
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2483
+ "Stackoverflow Client Secret key"
2484
+ msgstr ""
2485
+ "Szükséges a GooglePlus Közösségi Belépés működéséhez. Kérlek, kövesd a "
2486
+ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2487
+ "GooglePlus Client ID beszerzéshez"
2488
+
2489
+ #: ../admin/social_login.php:776
2490
+ msgid "Stackoverflow Key"
2491
+ msgstr ""
2492
+
2493
+ #: ../admin/social_login.php:786
2494
+ #, fuzzy, php-format
2495
+ msgid ""
2496
+ "Required for Stackoverflow Social Login to work. Please follow the "
2497
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2498
+ "Stackoverflow Key"
2499
+ msgstr ""
2500
+ "Szükséges a Twitter Közösségi Belépés működéséhez. Kérlek, kövesd a "
2501
+ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
2502
+ "API Key beszerzéshez"
2503
+
2504
+ #: ../admin/social_login.php:795
2505
  #, fuzzy
2506
  msgid "Spotify Client ID"
2507
  msgstr "Google+ Client ID"
2508
 
2509
+ #: ../admin/social_login.php:804
2510
  #, fuzzy, php-format
2511
  msgid ""
2512
  "Required for Spotify Social Login to work. Please follow the documentation "
2516
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2517
  "GooglePlus Client ID beszerzéshez"
2518
 
2519
+ #: ../admin/social_login.php:815
2520
  #, fuzzy
2521
  msgid "Spotify Client Secret"
2522
  msgstr "Google+ Client ID"
2523
 
2524
+ #: ../admin/social_login.php:824
2525
  #, fuzzy, php-format
2526
  msgid ""
2527
  "Required for Spotify Social Login to work. Please follow the documentation "
2532
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2533
  "GooglePlus Client ID beszerzéshez"
2534
 
2535
+ #: ../admin/social_login.php:837
2536
  #, fuzzy
2537
  msgid "Dribbble Client ID"
2538
  msgstr "Google+ Client ID"
2539
 
2540
+ #: ../admin/social_login.php:846
2541
  #, fuzzy, php-format
2542
  msgid ""
2543
  "Required for Dribbble Social Login to work. Please follow the documentation "
2547
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2548
  "GooglePlus Client ID beszerzéshez"
2549
 
2550
+ #: ../admin/social_login.php:857
2551
  #, fuzzy
2552
  msgid "Dribbble Client Secret"
2553
  msgstr "Google+ Client ID"
2554
 
2555
+ #: ../admin/social_login.php:866
2556
  #, fuzzy, php-format
2557
  msgid ""
2558
  "Required for Dribbble Social Login to work. Please follow the documentation "
2563
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2564
  "GooglePlus Client ID beszerzéshez"
2565
 
2566
+ #: ../admin/social_login.php:878
2567
  #, fuzzy
2568
  msgid "Twitch Client ID"
2569
  msgstr "Instagram Client ID"
2570
 
2571
+ #: ../admin/social_login.php:887
2572
  #, fuzzy, php-format
2573
  msgid ""
2574
  "Required for Twitch Social Login to work. Please follow the documentation at "
2578
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2579
  "GooglePlus Client ID beszerzéshez"
2580
 
2581
+ #: ../admin/social_login.php:898
2582
  #, fuzzy
2583
  msgid "Twitch Client Secret"
2584
  msgstr "Instagram Client ID"
2585
 
2586
+ #: ../admin/social_login.php:907
2587
  #, fuzzy, php-format
2588
  msgid ""
2589
  "Required for Twitch Social Login to work. Please follow the documentation at "
2593
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2594
  "GooglePlus Client ID beszerzéshez"
2595
 
2596
+ #: ../admin/social_login.php:920
2597
  #, fuzzy
2598
  msgid "Foursquare Client ID"
2599
  msgstr "Google+ Client ID"
2600
 
2601
+ #: ../admin/social_login.php:929
2602
  #, fuzzy, php-format
2603
  msgid ""
2604
  "Required for Foursquare Social Login to work. Please follow the "
2609
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2610
  "GooglePlus Client ID beszerzéshez"
2611
 
2612
+ #: ../admin/social_login.php:931 ../admin/social_login.php:951
2613
  #, fuzzy
2614
  msgid ""
2615
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
2618
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2619
  "linken"
2620
 
2621
+ #: ../admin/social_login.php:940
2622
  #, fuzzy
2623
  msgid "Foursquare Client Secret"
2624
  msgstr "Google+ Client ID"
2625
 
2626
+ #: ../admin/social_login.php:949
2627
  #, fuzzy, php-format
2628
  msgid ""
2629
  "Required for Foursquare Social Login to work. Please follow the "
2634
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2635
  "GooglePlus Client ID beszerzéshez"
2636
 
2637
+ #: ../admin/social_login.php:960
2638
  msgid "Dropbox App Key"
2639
  msgstr ""
2640
 
2641
+ #: ../admin/social_login.php:969
2642
  #, fuzzy, php-format
2643
  msgid ""
2644
  "Required for Dropbox Social Login to work. Please follow the documentation "
2648
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
2649
  "App ID beszerzéshez"
2650
 
2651
+ #: ../admin/social_login.php:980
2652
  #, fuzzy
2653
  msgid "Dropbox App Secret"
2654
  msgstr "Facebook App ID"
2655
 
2656
+ #: ../admin/social_login.php:989
2657
  #, fuzzy, php-format
2658
  msgid ""
2659
  "Required for Dropbox Social Login to work. Please follow the documentation "
2663
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
2664
  "App ID beszerzéshez"
2665
 
2666
+ #: ../admin/social_login.php:1003
2667
  msgid "Disqus Public Key"
2668
  msgstr ""
2669
 
2670
+ #: ../admin/social_login.php:1012
2671
  #, fuzzy, php-format
2672
  msgid ""
2673
  "Required for Disqus Social Login to work. Please follow the documentation at "
2677
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Xing "
2678
  "Consumer Key beszerzéshez"
2679
 
2680
+ #: ../admin/social_login.php:1023
2681
  #, fuzzy
2682
  msgid "Disqus Secret Key"
2683
  msgstr "Disqus Shortname"
2684
 
2685
+ #: ../admin/social_login.php:1032
2686
  #, fuzzy, php-format
2687
  msgid ""
2688
  "Required for Disqus Social Login to work. Please follow the documentation at "
2692
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Xing "
2693
  "Consumer Key beszerzéshez"
2694
 
2695
+ #: ../admin/social_login.php:1045
2696
  #, fuzzy
2697
  msgid "Reddit Client ID"
2698
  msgstr "Instagram Client ID"
2699
 
2700
+ #: ../admin/social_login.php:1054
2701
  #, fuzzy, php-format
2702
  msgid ""
2703
  "Required for Reddit Social Login to work. Please follow the documentation at "
2707
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2708
  "GooglePlus Client ID beszerzéshez"
2709
 
2710
+ #: ../admin/social_login.php:1056 ../admin/social_login.php:1076
2711
  #, fuzzy
2712
  msgid ""
2713
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
2716
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2717
  "linken"
2718
 
2719
+ #: ../admin/social_login.php:1065
2720
  #, fuzzy
2721
  msgid "Reddit Client Secret"
2722
  msgstr "Instagram Client ID"
2723
 
2724
+ #: ../admin/social_login.php:1074
2725
  #, fuzzy, php-format
2726
  msgid ""
2727
  "Required for Reddit Social Login to work. Please follow the documentation at "
2731
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2732
  "GooglePlus Client ID beszerzéshez"
2733
 
2734
+ #: ../admin/social_login.php:1088
2735
  #, fuzzy
2736
  msgid "Github Client ID"
2737
  msgstr "Instagram Client ID"
2738
 
2739
+ #: ../admin/social_login.php:1097
2740
  #, fuzzy, php-format
2741
  msgid ""
2742
  "Required for Github Social Login to work. Please follow the documentation at "
2746
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2747
  "GooglePlus Client ID beszerzéshez"
2748
 
2749
+ #: ../admin/social_login.php:1108
2750
  #, fuzzy
2751
  msgid "Github Client Secret"
2752
  msgstr "Instagram Client ID"
2753
 
2754
+ #: ../admin/social_login.php:1117
2755
  #, fuzzy, php-format
2756
  msgid ""
2757
  "Required for Github Social Login to work. Please follow the documentation at "
2761
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2762
  "GooglePlus Client ID beszerzéshez"
2763
 
2764
+ #: ../admin/social_login.php:1130
2765
  #, fuzzy
2766
  msgid "Kakao Client ID"
2767
  msgstr "Google+ Client ID"
2768
 
2769
+ #: ../admin/social_login.php:1139
2770
  #, fuzzy, php-format
2771
  msgid ""
2772
  "Required for Kakao Social Login to work. Please follow the documentation at "
2776
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2777
  "GooglePlus Client ID beszerzéshez"
2778
 
2779
+ #: ../admin/social_login.php:1150
2780
  #, fuzzy
2781
  msgid "Kakao Client Secret"
2782
  msgstr "Google+ Client ID"
2783
 
2784
+ #: ../admin/social_login.php:1159
2785
  #, fuzzy, php-format
2786
  msgid ""
2787
  "Required for Kakao Social Login to work. Please follow the documentation at "
2791
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2792
  "GooglePlus Client ID beszerzéshez"
2793
 
2794
+ #: ../admin/social_login.php:1179
2795
  #, fuzzy
2796
  msgid "Social Login Options"
2797
  msgstr "Social Login"
2798
 
2799
+ #: ../admin/social_login.php:1194
2800
  msgid "Text to display above the Social Login interface"
2801
  msgstr "Szöveg a Közösségi Belépés felett"
2802
 
2803
+ #: ../admin/social_login.php:1202
2804
  msgid "Trigger social login in the same browser tab"
2805
  msgstr ""
2806
 
2807
+ #: ../admin/social_login.php:1212
2808
  msgid "Trigger social login in the same browser tab instead of a popup window"
2809
  msgstr ""
2810
 
2811
+ #: ../admin/social_login.php:1219
2812
  #, fuzzy
2813
  msgid "Center align icons"
2814
  msgstr "Ikonsorrend beállítás"
2815
 
2816
+ #: ../admin/social_login.php:1229
2817
  #, fuzzy
2818
  msgid "Center align social login icons"
2819
  msgstr "Social Login"
2820
 
2821
+ #: ../admin/social_login.php:1236
2822
  msgid "Enable at login page"
2823
  msgstr "Bekapcsolás a belépés oldalon"
2824
 
2825
+ #: ../admin/social_login.php:1246
2826
  msgid ""
2827
  "Social Login interface will get enabled at the login page of your website"
2828
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2829
 
2830
+ #: ../admin/social_login.php:1253
2831
  msgid "Enable at register page"
2832
  msgstr "Bekapcsolás a regisztráció oldalon"
2833
 
2834
+ #: ../admin/social_login.php:1263
2835
  msgid ""
2836
  "Social Login interface will get enabled at the registration page of your "
2837
  "website"
2838
  msgstr "Közösségi Belépés megjelenítése a weboldal regisztrációs oldalán"
2839
 
2840
+ #: ../admin/social_login.php:1270
2841
  msgid "Enable at comment form"
2842
  msgstr "Bekapcsolás a hozászólásoknál"
2843
 
2844
+ #: ../admin/social_login.php:1280
2845
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2846
  msgstr "Közösségi Belépés megjelenítése a Wordpress hozzászólás küldésnél"
2847
 
2848
+ #: ../admin/social_login.php:1294
2849
  msgid "Enable before WooCommerce Customer Login Form"
2850
  msgstr "Engedélyezze előtt WooCommerce Megrendelő Bejelentkezés"
2851
 
2852
+ #: ../admin/social_login.php:1304
2853
  #, fuzzy
2854
  msgid ""
2855
  "Social Login Interface will get enabled before the customer login form at "
2856
  "WooCommerce My Account page"
2857
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2858
 
2859
+ #: ../admin/social_login.php:1311
2860
  #, fuzzy
2861
  msgid "Enable at WooCommerce Customer Login Form"
2862
  msgstr "Engedélyezze után WooCommerce Megrendelő Bejelentkezés"
2863
 
2864
+ #: ../admin/social_login.php:1321
2865
  #, fuzzy
2866
  msgid ""
2867
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2868
  "My Account page"
2869
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2870
 
2871
+ #: ../admin/social_login.php:1328
2872
  #, fuzzy
2873
  msgid "Enable at WooCommerce Customer Register Form"
2874
  msgstr "Engedélyezze után WooCommerce Megrendelő Bejelentkezés"
2875
 
2876
+ #: ../admin/social_login.php:1338
2877
  #, fuzzy
2878
  msgid ""
2879
  "Integrate Social Login Interface with the customer register form at "
2880
  "WooCommerce My Account page"
2881
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2882
 
2883
+ #: ../admin/social_login.php:1345
2884
  #, fuzzy
2885
  msgid "Enable at WooCommerce checkout page"
2886
  msgstr "Bekapcsolás a regisztráció oldalon"
2887
 
2888
+ #: ../admin/social_login.php:1355
2889
  #, fuzzy
2890
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2891
  msgstr "Közösségi Belépés megjelenítése a Wordpress hozzászólás küldésnél"
2892
 
2893
+ #: ../admin/social_login.php:1365
2894
  msgid "Auto-approve comments made by Social Login users"
2895
  msgstr "Közösségi Belépéses hozzászólások automatikus elfogadása"
2896
 
2897
+ #: ../admin/social_login.php:1375
2898
  msgid ""
2899
  "If this option is enabled, and WordPress comment is made by Social Login "
2900
  "user, comment will get approved immediately without keeping in moderation."
2903
  "felhasználó Wordpress hozzászólást küld, ez azonnal, moderáció nélkül "
2904
  "megjelenik az oldalon."
2905
 
2906
+ #: ../admin/social_login.php:1376
2907
  msgid "Note: This is not related to Facebook comments"
2908
  msgstr "Megjegyzés: Ez nem kapcsolódik a Facebook hozzászólásokhoz"
2909
 
2910
+ #: ../admin/social_login.php:1385
2911
  msgid "Enable social avatar"
2912
  msgstr "Közösségi avatar bekapcsolás"
2913
 
2914
+ #: ../admin/social_login.php:1395
2915
  msgid ""
2916
  "Social profile pictures of the logged in user will be displayed as profile "
2917
  "avatar"
2918
  msgstr "A közösségi profil képe lesz megjelenítve avatarként a weboldalon"
2919
 
2920
+ #: ../admin/social_login.php:1404
2921
  msgid "Avatar quality"
2922
  msgstr " Avatar képminőség"
2923
 
2924
+ #: ../admin/social_login.php:1407
2925
  msgid "Average"
2926
  msgstr "Átlagos"
2927
 
2928
+ #: ../admin/social_login.php:1408
2929
  msgid "Best"
2930
  msgstr "legjobb"
2931
 
2932
+ #: ../admin/social_login.php:1415
2933
  msgid "Choose avatar quality"
2934
  msgstr "Válassz Avatar képminőséget"
2935
 
2936
+ #: ../admin/social_login.php:1423
2937
  #, fuzzy
2938
  msgid ""
2939
  "Show option for users to update social avatar at BuddyPress profile page"
2941
  "Engedélyezze ezt a lehetőséget, hogy a szociális számla összekötő interfész "
2942
  "BuddyPress profil oldal"
2943
 
2944
+ #: ../admin/social_login.php:1433
2945
  msgid ""
2946
  "If enabled, users would be able to update their social avatar from \"Profile "
2947
  "photo\" section in BuddyPress profile at front-end"
2948
  msgstr ""
2949
 
2950
+ #: ../admin/social_login.php:1453
2951
  msgid ""
2952
  "If enabled and Social ID provider does not provide user's email address on "
2953
  "login, user will be asked to provide his/her email address. Otherwise, a "
2957
  "a belépéskor, a felhasználótól elkérjük e-mail címét. Egyébként egy "
2958
  "véletlenszerű e-mail címet generálunk"
2959
 
2960
+ #: ../admin/social_login.php:1461
2961
  msgid "Send post-registration email to user to set account password"
2962
  msgstr ""
2963
 
2964
+ #: ../admin/social_login.php:1471
2965
  msgid ""
2966
  "If enabled, an email will be sent to user after registration through Social "
2967
  "Login, regarding his/her login credentials (username-password to be able to "
2972
  "Felhasználói név, Jelszó, melyek segítségével hagyományos módon is beléphet "
2973
  "az oldalra."
2974
 
2975
+ #: ../admin/social_login.php:1478
2976
  #, fuzzy
2977
  msgid "Send new user registration notification email to admin"
2978
  msgstr "Letilthatja a felhasználói regisztráció útján Szociális Belépés"
2979
 
2980
+ #: ../admin/social_login.php:1488
2981
  #, fuzzy
2982
  msgid ""
2983
  "If enabled, an email will be sent to admin after new user registers through "
2988
  "Felhasználói név, Jelszó, melyek segítségével hagyományos módon is beléphet "
2989
  "az oldalra."
2990
 
2991
+ #: ../admin/social_login.php:1495
2992
  msgid "Login redirection"
2993
  msgstr "Átirányítás Belépés után"
2994
 
2995
+ #: ../admin/social_login.php:1499
2996
  msgid "Same page where user logged in"
2997
  msgstr "Az az oldal, ahol a felhasználó belépett"
2998
 
2999
+ #: ../admin/social_login.php:1503 ../admin/social_login.php:1532
3000
  msgid "Account dashboard"
3001
  msgstr "Felhasználói Irányítópult"
3002
 
3003
+ #: ../admin/social_login.php:1506 ../admin/social_login.php:1535
3004
  msgid "BuddyPress profile page"
3005
  msgstr "BuddyPress profil oldal"
3006
 
3007
+ #: ../admin/social_login.php:1509 ../admin/social_login.php:1538
3008
  msgid "Custom Url"
3009
  msgstr "Egyedi URL"
3010
 
3011
+ #: ../admin/social_login.php:1517
3012
  msgid "User will be redirected to the selected page after Social Login"
3013
  msgstr ""
3014
  "A felhasználót a kiválasztott oldalra irányítjuk a Közösségi Belépés után"
3015
 
3016
+ #: ../admin/social_login.php:1524
3017
  msgid "Registration redirection"
3018
  msgstr "Átirányítás Regisztráció után"
3019
 
3020
+ #: ../admin/social_login.php:1528
3021
  msgid "Same page from where user registered"
3022
  msgstr "Az az oldal, ahol a felhasználó regisztrált"
3023
 
3024
+ #: ../admin/social_login.php:1546
3025
  msgid ""
3026
  "User will be redirected to the selected page after registration (first "
3027
  "Social Login) through Social Login"
3029
  "A felhasználó a kiválasztott oldalra lesz átirányítva a regisztráció (első "
3030
  "Közösségi belépés) után"
3031
 
3032
+ #: ../admin/social_login.php:1555
3033
  #, fuzzy
3034
  msgid "Social Account Linking Options"
3035
  msgstr "Közösségi Hozzászólás"
3036
 
3037
+ #: ../admin/social_login.php:1570
3038
  #, fuzzy
3039
  msgid "Text to display above the Social Account Linking interface"
3040
  msgstr "Szöveg a Közösségi Belépés felett"
3041
 
3042
+ #: ../admin/social_login.php:1577
3043
  #, fuzzy
3044
  msgid ""
3045
  "Link social account to already existing account, if email address matches"
3046
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
3047
 
3048
+ #: ../admin/social_login.php:1587
3049
  msgid ""
3050
  "If email address of the user's Social Account matches with an already "
3051
  "existing account at your website, that social account will be linked to "
3053
  "Linking interface at their profile page."
3054
  msgstr ""
3055
 
3056
+ #: ../admin/social_login.php:1595
3057
  msgid "Enable social account linking at BuddyPress profile page"
3058
  msgstr ""
3059
  "Engedélyezze a szociális számla összekapcsolása a BuddyPress profil oldal"
3060
 
3061
+ #: ../admin/social_login.php:1605
3062
  msgid ""
3063
  "Enable this option to show social account linking interface at BuddyPress "
3064
  "profile page"
3066
  "Engedélyezze ezt a lehetőséget, hogy a szociális számla összekötő interfész "
3067
  "BuddyPress profil oldal"
3068
 
3069
+ #: ../admin/social_login.php:1616
3070
  msgid "Email popup options"
3071
  msgstr "Email felugró ablak beállítások"
3072
 
3073
+ #: ../admin/social_login.php:1621
3074
  msgid "Text on 'Email required' popup"
3075
  msgstr "Szöveg az 'E-mail cím szükséges' felugró ablakban"
3076
 
3077
+ #: ../admin/social_login.php:1631
3078
  msgid ""
3079
  "This text will be displayed on email required popup. Leave empty if not "
3080
  "required."
3082
  "Ez a szöveg jelenik meg az e-mail cím bekérő felugró ablakban. Üresen "
3083
  "hagyhatod, ha nem kéred be az e-mail címet."
3084
 
3085
+ #: ../admin/social_login.php:1639
3086
  msgid "Error message for 'Email required' popup"
3087
  msgstr "Hibaüzenet az 'E-mail cím szükséges' felugró ablakban"
3088
 
3089
+ #: ../admin/social_login.php:1649
3090
  msgid ""
3091
  "This message will be displayed to user if it provides invalid or already "
3092
  "registered email"
3094
  "Ez az üzenet jelenik meg, ha a felhasználó helytelen, vagy már regisztrált e-"
3095
  "mail címet ad meg "
3096
 
3097
+ #: ../admin/social_login.php:1657
3098
  msgid "Email popup height"
3099
  msgstr "Email felugró ablak magassága"
3100
 
3101
+ #: ../admin/social_login.php:1667
3102
  msgid ""
3103
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
3104
  "can increase the height of popup by specifying in this option. Leave empty "
3107
  "Ha függőleges görgetősávot látsz az \"E-mail bekérő\" felugró ablakban, itt "
3108
  "megnövelheted az ablak magasságát. Egyébként üresen hagyható."
3109
 
3110
+ #: ../admin/social_login.php:1674
3111
  msgid "Enable email verification"
3112
  msgstr "E-mail ellenőrzés bekapcsolása"
3113
 
3114
+ #: ../admin/social_login.php:1684
3115
  msgid ""
3116
  "If enabled, email provided by the user will be verified by sending a "
3117
  "confirmation link to that email. User would not be able to login without "
3121
  "üzenetet küldünk egy megerősítő linkkel. A felhasználó nem tud belépni, amíg "
3122
  "nem erősítette meg e-mailcímét "
3123
 
3124
+ #: ../admin/social_login.php:1704
3125
  #, fuzzy
3126
  msgid "Enable GDPR opt-in"
3127
  msgstr "Disqus Hozzászólás Bekapcsolása"
3128
 
3129
+ #: ../admin/social_login.php:1714
3130
  msgid ""
3131
  "Enable it to show GDPR opt-in for social login and social account linking"
3132
  msgstr ""
3133
 
3134
+ #: ../admin/social_login.php:1722
3135
  #, fuzzy
3136
  msgid "Placement of GDPR opt-in"
3137
  msgstr "Disqus Hozzászólás Bekapcsolása"
3138
 
3139
+ #: ../admin/social_login.php:1726
3140
  #, fuzzy
3141
  msgid "Above Social Login icons"
3142
  msgstr "Social Login"
3143
 
3144
+ #: ../admin/social_login.php:1728
3145
  #, fuzzy
3146
  msgid "Below Social Login icons"
3147
  msgstr "Social Login"
3148
 
3149
+ #: ../admin/social_login.php:1734
3150
  #, fuzzy
3151
  msgid "Placement of GDPR opt-in above or below the social login icons"
3152
  msgstr "Szöveg a Közösségi Belépés felett"
3153
 
3154
+ #: ../admin/social_login.php:1741
3155
  msgid "Opt-in text"
3156
  msgstr ""
3157
 
3158
+ #: ../admin/social_login.php:1751
3159
  #, fuzzy
3160
  msgid "Text for the GDPR opt-in"
3161
  msgstr "Disqus Hozzászólás Bekapcsolása"
3162
 
3163
+ #: ../admin/social_login.php:1758
3164
  msgid "Text to link to Terms-Conditions page"
3165
  msgstr ""
3166
 
3167
+ #: ../admin/social_login.php:1768
3168
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
3169
  msgstr ""
3170
 
3171
+ #: ../admin/social_login.php:1775
3172
  msgid "Terms-Conditions Url"
3173
  msgstr ""
3174
 
3175
+ #: ../admin/social_login.php:1785
3176
  #, fuzzy
3177
  msgid "Url of the terms-conditions page of your website"
3178
  msgstr "A főoldalad Url-je"
3179
 
3180
+ #: ../admin/social_login.php:1792
3181
  msgid "Text to link to Privacy Policy page"
3182
  msgstr ""
3183
 
3184
+ #: ../admin/social_login.php:1802
3185
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
3186
  msgstr ""
3187
 
3188
+ #: ../admin/social_login.php:1809
3189
  msgid "Privacy Policy Url"
3190
  msgstr ""
3191
 
3192
+ #: ../admin/social_login.php:1819
3193
  #, fuzzy
3194
  msgid "Url of the privacy policy page of your website"
3195
  msgstr "A főoldalad Url-je"
3196
 
3197
+ #: ../admin/social_login.php:1870 ../inc/widget.php:260 ../inc/widget.php:438
3198
  #: ../inc/widget.php:602 ../inc/widget.php:750
3199
  msgid "Select"
3200
  msgstr "Válassz"
3201
 
3202
+ #: ../admin/social_login.php:1901
3203
  #, fuzzy
3204
  msgid "Social Login Shortcode & Widget"
3205
  msgstr "Shortcode és Widget"
3206
 
3207
+ #: ../admin/social_login.php:1902
3208
  msgid "Social Linking Shortcode"
3209
  msgstr ""
3210
 
3211
+ #: ../admin/social_login.php:1917
3212
  msgid "Why is social login not working?"
3213
  msgstr ""
3214
 
3215
+ #: ../admin/social_login.php:1918
3216
  msgid ""
3217
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3218
  "belong to the same app"
3219
  msgstr ""
3220
 
3221
+ #: ../admin/social_login.php:1920
3222
  msgid "Social Login not working with Varnish enabled"
3223
  msgstr ""
3224
 
3225
+ #: ../admin/social_login.php:1921
3226
  msgid ""
3227
  "Why the user is not appearing logged in even after Social Login until the "
3228
  "webpage is refreshed manually?"
3439
  msgid "Archives"
3440
  msgstr "Kategória Archívum"
3441
 
3442
+ #: ../inc/social_sharing.php:225
3443
+ msgid "More"
3444
+ msgstr ""
3445
+
3446
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3447
  msgid "Invalid request"
3448
  msgstr "Hibás kérés"
3451
  msgid "Providers not selected"
3452
  msgstr "Nincs kiválasztott szolgáltató"
3453
 
3454
+ #: ../inc/social_sharing_networks.php:57
3455
+ msgid "Copy Link"
3456
+ msgstr ""
3457
+
3458
+ #: ../inc/social_login.php:1030
3459
  msgid "Email"
3460
  msgstr "Email"
3461
 
3462
+ #: ../inc/social_login.php:1031
3463
  msgid "Confirm email"
3464
  msgstr ""
3465
 
3466
+ #: ../inc/social_login.php:1033
3467
  msgid "Save"
3468
  msgstr ""
3469
 
3470
+ #: ../inc/social_login.php:1034
3471
  msgid "Cancel"
3472
  msgstr ""
3473
 
3474
+ #: ../inc/social_login.php:1108
3475
  #, fuzzy
3476
  msgid "Email Verification"
3477
  msgstr "E-mail ellenőrzés bekapcsolása"
3478
 
3479
+ #: ../inc/social_login.php:1110
3480
  msgid ""
3481
  "Please click on the following link or paste it in browser to verify your "
3482
  "email"
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-01-27 15:37+0530\n"
6
- "PO-Revision-Date: 2021-01-27 15:37+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"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../super_socializer.php:1570
20
  #, fuzzy
21
  msgid ""
22
  "cURL is not enabled at your website server. Please contact your website "
@@ -25,7 +25,7 @@ msgstr ""
25
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
26
  "questo, potrebbe essere necessario contattare l'amministratore del server."
27
 
28
- #: ../super_socializer.php:1598
29
  #, fuzzy, php-format
30
  msgid ""
31
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -35,7 +35,7 @@ msgstr ""
35
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
36
  "3 %s)"
37
 
38
- #: ../super_socializer.php:1601
39
  #, fuzzy, php-format
40
  msgid ""
41
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -45,7 +45,7 @@ msgstr ""
45
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
46
  "3 %s)"
47
 
48
- #: ../super_socializer.php:1604
49
  msgid ""
50
  "Make sure cURL is enabled at your website server. You may need to contact "
51
  "the server administrator of your website to verify this"
@@ -53,69 +53,73 @@ msgstr ""
53
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
54
  "questo, potrebbe essere necessario contattare l'amministratore del server."
55
 
56
- #: ../super_socializer.php:1786 ../helper.php:986
 
 
 
 
57
  msgid "Please verify your email address to login."
58
  msgstr "Per favore, per accedere verifica il tuo indirizzo e-mail."
59
 
60
- #: ../super_socializer.php:1786
61
  msgid "Your email has been verified. Now you can login to your account"
62
  msgstr ""
63
  "Il tuo indirizzo e-mail é stato verificato, adesso puoi accedere al tuo "
64
  "account"
65
 
66
- #: ../super_socializer.php:1790
67
  msgid "Notification"
68
  msgstr "Notifiche"
69
 
70
- #: ../super_socializer.php:1808 ../admin/social_login.php:1280
71
  msgid "Email required"
72
  msgstr "Email Obbligatoria"
73
 
74
- #: ../super_socializer.php:1811
75
  msgid "Please check your email inbox to complete the registration."
76
  msgstr ""
77
  "Per favore, per completare la registrazione, controlla la tua casella di "
78
  "posta elettronica."
79
 
80
- #: ../super_socializer.php:1880
81
  msgid "Leave a reply"
82
  msgstr "Lascia un commento"
83
 
84
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
85
  msgid "Shares"
86
  msgstr "Shares"
87
 
88
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
89
  msgid "Share"
90
  msgstr "Share"
91
 
92
- #: ../super_socializer.php:1896
93
  #, fuzzy
94
  msgid "Link copied."
95
  msgstr "LinkedIn"
96
 
97
- #: ../super_socializer.php:2141
98
  msgid "Super Socializer - General Options"
99
  msgstr "Super Socializer - Opzioni"
100
 
101
- #: ../super_socializer.php:2141 ../admin/general_options.php:15
102
  #: ../admin/social_commenting.php:47
103
  msgid "General Options"
104
  msgstr "Opzioni Generali"
105
 
106
- #: ../super_socializer.php:2209 ../helper.php:915
107
  msgid "Social Avatar"
108
  msgstr "Social Avatar"
109
 
110
- #: ../super_socializer.php:2212
111
  msgid "Small Avatar Url"
112
  msgstr "Url Avatar Piccolo"
113
 
114
- #: ../super_socializer.php:2216
115
  msgid "Large Avatar Url"
116
  msgstr "URL Avatar Grande"
117
 
118
- #: ../super_socializer.php:2220 ../helper.php:918
119
  msgid ""
120
  "Do not fetch and update social avatar from my profile, next time I Social "
121
  "Login"
@@ -123,74 +127,74 @@ msgstr ""
123
  "La prossima volta che uso Social Login, non prendere e/o aggiornare il "
124
  "social avatar dal mio profilo."
125
 
126
- #: ../super_socializer.php:2224 ../helper.php:919
127
  msgid "Update social avatar, next time I Social Login"
128
  msgstr "La prossima volta che si usa Social Login, aggiorna il social avatar."
129
 
130
- #: ../super_socializer.php:2301
131
  msgid "Login with your Social ID"
132
  msgstr "Login con il tuo ID Social"
133
 
134
- #: ../super_socializer.php:2302
135
  msgid "Email you entered is already registered or invalid"
136
  msgstr "La email inserita è già registrata o non è valida"
137
 
138
- #: ../super_socializer.php:2309
139
  msgid "Please enter a valid email address. You might be required to verify it"
140
  msgstr ""
141
  "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta "
142
  "una verifica"
143
 
144
- #: ../super_socializer.php:2313 ../super_socializer.php:3039
145
  msgid "Link your social account to login to your account at this website"
146
  msgstr ""
147
  "Collega il tuo social account per accedere al tuo account su questo sito"
148
 
149
- #: ../super_socializer.php:2561
150
  msgid "Thanks for installing Super Socializer plugin"
151
  msgstr ""
152
 
153
- #: ../super_socializer.php:2563
154
  msgid "Configure the Plugin"
155
  msgstr ""
156
 
157
- #: ../super_socializer.php:2574
158
  msgid ""
159
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
160
  "current version of Super Socializer"
161
  msgstr ""
162
 
163
- #: ../super_socializer.php:2583
164
  msgid ""
165
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
166
  "version of Super Socializer"
167
  msgstr ""
168
 
169
- #: ../super_socializer.php:2592
170
  msgid ""
171
- "Update \"Social Login Buttons\" add-on to version 1.2.6 or above for "
172
  "compatibility with current version of Super Socializer"
173
  msgstr ""
174
 
175
- #: ../super_socializer.php:2601
176
  msgid ""
177
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
178
  "with current version of Super Socializer"
179
  msgstr ""
180
 
181
- #: ../super_socializer.php:2610
182
  msgid ""
183
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
184
  "with current version of Super Socializer"
185
  msgstr ""
186
 
187
- #: ../super_socializer.php:2621
188
  #, php-format
189
  msgid ""
190
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
191
  msgstr ""
192
 
193
- #: ../super_socializer.php:2630
194
  #, php-format
195
  msgid ""
196
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -198,7 +202,7 @@ msgid ""
198
  "Instagram App Secret <a href=\"%s\">here</a>"
199
  msgstr ""
200
 
201
- #: ../super_socializer.php:2639 ../super_socializer.php:2648
202
  #, php-format
203
  msgid ""
204
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -207,13 +211,13 @@ msgid ""
207
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
208
  msgstr ""
209
 
210
- #: ../super_socializer.php:2664
211
  #, php-format
212
  msgid ""
213
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
214
  msgstr ""
215
 
216
- #: ../super_socializer.php:2688
217
  #, php-format
218
  msgid ""
219
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -221,14 +225,14 @@ msgid ""
221
  "target=\"_blank\">here</a>"
222
  msgstr ""
223
 
224
- #: ../super_socializer.php:2688 ../super_socializer.php:2713
225
- #: ../super_socializer.php:2738 ../super_socializer.php:2763
226
- #: ../super_socializer.php:2796 ../super_socializer.php:2824
227
- #: ../super_socializer.php:2851
228
  msgid "Okay"
229
  msgstr ""
230
 
231
- #: ../super_socializer.php:2713
232
  #, php-format
233
  msgid ""
234
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -236,7 +240,7 @@ msgid ""
236
  "\">here</a>"
237
  msgstr ""
238
 
239
- #: ../super_socializer.php:2738
240
  #, php-format
241
  msgid ""
242
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -244,7 +248,7 @@ msgid ""
244
  "target=\"_blank\">here</a>"
245
  msgstr ""
246
 
247
- #: ../super_socializer.php:2763
248
  #, php-format
249
  msgid ""
250
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -252,13 +256,13 @@ msgid ""
252
  "target=\"_blank\">here</a>"
253
  msgstr ""
254
 
255
- #: ../super_socializer.php:2774
256
  #, php-format
257
  msgid ""
258
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
259
  msgstr ""
260
 
261
- #: ../super_socializer.php:2796
262
  #, php-format
263
  msgid ""
264
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -266,7 +270,7 @@ msgid ""
266
  "\"%s\" target=\"_blank\">here</a>"
267
  msgstr ""
268
 
269
- #: ../super_socializer.php:2824
270
  #, php-format
271
  msgid ""
272
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -275,7 +279,7 @@ msgid ""
275
  "your website %s with them. No need to copy-paste any code from their website."
276
  msgstr ""
277
 
278
- #: ../super_socializer.php:2851
279
  #, php-format
280
  msgid ""
281
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -283,7 +287,7 @@ msgid ""
283
  "\"%s\" target=\"_blank\">here</a>"
284
  msgstr ""
285
 
286
- #: ../super_socializer.php:2876
287
  #, php-format
288
  msgid ""
289
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -291,11 +295,11 @@ msgid ""
291
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
292
  msgstr ""
293
 
294
- #: ../super_socializer.php:2876 ../super_socializer.php:2903
295
  msgid "Dismiss"
296
  msgstr ""
297
 
298
- #: ../super_socializer.php:2902
299
  #, php-format
300
  msgid ""
301
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -304,7 +308,7 @@ msgid ""
304
  "that, clear share counts cache from \"Miscellaneous\" section"
305
  msgstr ""
306
 
307
- #: ../super_socializer.php:3115
308
  msgid ""
309
  "Your browser is blocking some features of this website. Please follow the "
310
  "instructions at {support_url} to unblock these."
@@ -314,120 +318,120 @@ msgstr ""
314
  msgid "Settings saved"
315
  msgstr "Impostazioni salvate"
316
 
317
- #: ../helper.php:185
318
  #, fuzzy
319
  msgid "Click to toggle help"
320
  msgstr "Clicca per nascondere l'aiuto"
321
 
322
- #: ../helper.php:282
323
  #, fuzzy
324
  msgid "Add-Ons"
325
  msgstr "Altri Add-ons"
326
 
327
- #: ../helper.php:283
328
  msgid "Support Documentation"
329
  msgstr ""
330
 
331
- #: ../helper.php:284
332
  msgid "Settings"
333
  msgstr "Configurazioni"
334
 
335
- #: ../helper.php:567
336
  msgid "Account linked successfully"
337
  msgstr "Account collegato correttamente"
338
 
339
- #: ../helper.php:571
340
  msgid "Account already exists or linked"
341
  msgstr "Account esistente o già collegato"
342
 
343
- #: ../helper.php:607 ../helper.php:609
344
  #, fuzzy
345
  msgid "Login with"
346
  msgstr "Opzioni di Login"
347
 
348
- #: ../helper.php:644 ../helper.php:650
349
  msgid "Currently"
350
  msgstr "Attualmente"
351
 
352
- #: ../helper.php:644 ../helper.php:650
353
  msgid "Connected with"
354
  msgstr "Connesso con"
355
 
356
- #: ../helper.php:644 ../helper.php:650
357
  msgid "Remove"
358
  msgstr "rimuovere"
359
 
360
- #: ../helper.php:721
361
  msgid "Social Account Linking"
362
  msgstr "Collegamento Social Account"
363
 
364
- #: ../helper.php:771
365
  msgid "Disable Standard Social Sharing on this "
366
  msgstr "Disabilita i pulsanti Floating Social Sharing su questo"
367
 
368
- #: ../helper.php:776
369
  msgid "Disable Floating Social Sharing on this "
370
  msgstr "Disabilita i pulsanti Floating Social Sharing su questo"
371
 
372
- #: ../helper.php:781
373
  msgid "Disable Standard like buttons on this "
374
  msgstr "Disabilita i pulsanti Standard Mi-piace su questo"
375
 
376
- #: ../helper.php:786
377
  msgid "Disable Floating like buttons on this "
378
  msgstr "Disabilita i pulsanti Floating Mi-piace su questo"
379
 
380
- #: ../helper.php:791
381
  msgid "Disable Social Commenting on this "
382
  msgstr "Disabilita Social Commenting"
383
 
384
- #: ../helper.php:800
385
  msgid "Standard Sharing Interface"
386
  msgstr "Interfaccia Sharing Standard"
387
 
388
- #: ../helper.php:806 ../helper.php:825
389
  msgid "Starting share count for "
390
  msgstr "Avvio share count per"
391
 
392
- #: ../helper.php:819
393
  msgid "Floating Sharing Interface"
394
  msgstr "Interfaccia Sharing Floating"
395
 
396
- #: ../helper.php:922
397
  msgid "Small Avatar"
398
  msgstr "Avatar Piccolo"
399
 
400
- #: ../helper.php:926
401
  msgid "Large Avatar"
402
  msgstr "Avatar Grande"
403
 
404
- #: ../helper.php:930 ../admin/general_options.php:89
405
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
406
- #: ../admin/social_login.php:1770 ../admin/like_buttons.php:780
407
  msgid "Save Changes"
408
  msgstr "Salva le modifiche"
409
 
410
- #: ../helper.php:1023
411
  msgid "Click to delete social profile data"
412
  msgstr ""
413
 
414
- #: ../helper.php:1052
415
  #, fuzzy
416
  msgid "Deleting"
417
  msgstr "Configurazioni"
418
 
419
- #: ../helper.php:1062
420
  msgid "Deleted"
421
  msgstr ""
422
 
423
- #: ../helper.php:1064
424
  msgid "Something bad happened"
425
  msgstr ""
426
 
427
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
428
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
429
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
430
- #: ../admin/social_login.php:5 ../admin/social_login.php:1774
431
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
432
  #, fuzzy, php-format
433
  msgid ""
@@ -482,14 +486,14 @@ msgstr ""
482
  "È possibile specificare regole CSS aggiuntive (senza &lt;style&gt; tag)"
483
 
484
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
485
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1780
486
  #: ../admin/like_buttons.php:790
487
  #, fuzzy
488
  msgid "Instagram Shoutout"
489
  msgstr "Instagram"
490
 
491
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
492
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1782
493
  #: ../admin/like_buttons.php:792
494
  msgid ""
495
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -631,7 +635,7 @@ msgstr "XProfile Integration"
631
 
632
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
633
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
634
- #: ../admin/social_login.php:1736 ../admin/like_buttons.php:50
635
  #: ../admin/like_buttons.php:751
636
  msgid "Shortcode & Widget"
637
  msgstr "Shortcode & Widget"
@@ -642,7 +646,7 @@ msgstr "Risoluzione dei problemi"
642
 
643
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
644
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
645
- #: ../admin/social_login.php:46 ../admin/social_login.php:1750
646
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
647
  msgid "FAQ"
648
  msgstr "FAQ"
@@ -877,8 +881,8 @@ msgstr "Url personalizzata"
877
  msgid "Url to share"
878
  msgstr "Url da condividere"
879
 
880
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:1021
881
- #: ../admin/social_login.php:1397 ../admin/like_buttons.php:105
882
  #: ../inc/widget.php:949
883
  msgid "Title"
884
  msgstr "Titolo"
@@ -965,7 +969,7 @@ msgid "Placement"
965
  msgstr "Collocazione"
966
 
967
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
968
- #: ../admin/social_login.php:1338 ../admin/social_login.php:1367
969
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
970
  msgid "Homepage"
971
  msgstr "Homepage"
@@ -1235,7 +1239,7 @@ msgstr ""
1235
  msgid "Required only to track Facebook share count"
1236
  msgstr ""
1237
 
1238
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:193
1239
  msgid "Facebook App ID"
1240
  msgstr "Facebook App ID"
1241
 
@@ -1249,7 +1253,7 @@ msgstr ""
1249
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1250
  "target=\"_blank\">questo collegamento</a>"
1251
 
1252
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:214
1253
  #, fuzzy
1254
  msgid "Facebook App Secret"
1255
  msgstr "Facebook App ID"
@@ -1441,7 +1445,7 @@ msgstr ""
1441
  "funzionato) e cliicca sul pulsante \"Fetch New Scrape Information\" ."
1442
 
1443
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1444
- #: ../admin/social_login.php:1752
1445
  msgid ""
1446
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1447
  "an online website for the plugin to function properly."
@@ -1499,7 +1503,7 @@ msgid ""
1499
  msgstr ""
1500
 
1501
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1502
- #: ../admin/social_login.php:1759
1503
  msgid "Why is my browser blocking some features of the plugin?"
1504
  msgstr ""
1505
 
@@ -1822,11 +1826,11 @@ msgstr "Configurazione di Base"
1822
  msgid "Advanced Configuration"
1823
  msgstr "Configurazione Avanzata"
1824
 
1825
- #: ../admin/social_login.php:41 ../admin/social_login.php:1536
1826
  msgid "GDPR"
1827
  msgstr ""
1828
 
1829
- #: ../admin/social_login.php:43 ../admin/social_login.php:1687
1830
  msgid "XProfile Integration"
1831
  msgstr "XProfile Integration"
1832
 
@@ -1860,96 +1864,123 @@ msgstr ""
1860
 
1861
  #: ../admin/social_login.php:98
1862
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1863
  msgid "Select Social Networks"
1864
  msgstr "come rete sociale primaria"
1865
 
1866
- #: ../admin/social_login.php:103
1867
  msgid "Facebook"
1868
  msgstr "Facebook"
1869
 
1870
- #: ../admin/social_login.php:107
1871
  msgid "Twitter"
1872
  msgstr "Twitter"
1873
 
1874
- #: ../admin/social_login.php:111
1875
  msgid "LinkedIn"
1876
  msgstr "LinkedIn"
1877
 
1878
- #: ../admin/social_login.php:115
1879
  #, fuzzy
1880
  msgid "Google"
1881
  msgstr "Google+"
1882
 
1883
- #: ../admin/social_login.php:119
1884
  msgid "Vkontakte"
1885
  msgstr "Vkontakte"
1886
 
1887
- #: ../admin/social_login.php:123
1888
  msgid "Instagram"
1889
  msgstr "Instagram"
1890
 
1891
- #: ../admin/social_login.php:127
1892
  msgid "Steam"
1893
  msgstr "Steam"
1894
 
1895
- #: ../admin/social_login.php:131
1896
  msgid "Line"
1897
  msgstr ""
1898
 
1899
- #: ../admin/social_login.php:135
1900
  msgid "Wordpress"
1901
  msgstr ""
1902
 
1903
- #: ../admin/social_login.php:139
1904
  msgid "Windows Live"
1905
  msgstr ""
1906
 
1907
- #: ../admin/social_login.php:143
1908
  msgid "Yahoo"
1909
  msgstr "Yahoo"
1910
 
1911
- #: ../admin/social_login.php:147
 
 
 
 
 
 
 
 
 
 
 
 
1912
  msgid "Spotify"
1913
  msgstr ""
1914
 
1915
- #: ../admin/social_login.php:150
1916
  msgid "Dribbble"
1917
  msgstr ""
1918
 
1919
- #: ../admin/social_login.php:154
1920
  msgid "Twitch"
1921
  msgstr "Twitch"
1922
 
1923
- #: ../admin/social_login.php:158
1924
  #, fuzzy
1925
  msgid "Foursquare"
1926
  msgstr "Quadrata"
1927
 
1928
- #: ../admin/social_login.php:162
1929
  msgid "Dropbox"
1930
  msgstr ""
1931
 
1932
- #: ../admin/social_login.php:166
1933
  msgid "Disqus"
1934
  msgstr ""
1935
 
1936
- #: ../admin/social_login.php:170
1937
  msgid "Reddit"
1938
  msgstr "Reddit"
1939
 
1940
- #: ../admin/social_login.php:174
1941
  msgid "Github"
1942
  msgstr ""
1943
 
1944
- #: ../admin/social_login.php:178
1945
  msgid "Kakao"
1946
  msgstr ""
1947
 
1948
- #: ../admin/social_login.php:186
1949
  msgid "Select Social ID provider to enable in Social Login"
1950
  msgstr "Per abilitare Social Login devi selezionare almeno un Social Provider "
1951
 
1952
- #: ../admin/social_login.php:203
1953
  #, php-format
1954
  msgid ""
1955
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1959,7 +1990,7 @@ msgstr ""
1959
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1960
  "target=\"_blank\">questo collegamento</a>"
1961
 
1962
- #: ../admin/social_login.php:205 ../admin/social_login.php:226
1963
  #, fuzzy
1964
  msgid ""
1965
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
@@ -1967,7 +1998,7 @@ msgstr ""
1967
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
1968
  "indicato"
1969
 
1970
- #: ../admin/social_login.php:224
1971
  #, fuzzy, php-format
1972
  msgid ""
1973
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1977,11 +2008,11 @@ msgstr ""
1977
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1978
  "target=\"_blank\">questo collegamento</a>"
1979
 
1980
- #: ../admin/social_login.php:235
1981
  msgid "Twitter API Key"
1982
  msgstr "Twitter API Key"
1983
 
1984
- #: ../admin/social_login.php:245
1985
  #, php-format
1986
  msgid ""
1987
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1991,7 +2022,7 @@ msgstr ""
1991
  "API Key, consulta la documentazione che trovi su <a href=\"%s\" target="
1992
  "\"_blank\">questa pagina</a>"
1993
 
1994
- #: ../admin/social_login.php:247 ../admin/social_login.php:272
1995
  #, fuzzy
1996
  msgid ""
1997
  "Paste following url in <strong>Website</strong> option mentioned at the link"
@@ -1999,13 +2030,13 @@ msgstr ""
1999
  "Incolla la seguente URL nelle opzioni <strong>Website URL</ strong> al link "
2000
  "indicato"
2001
 
2002
- #: ../admin/social_login.php:251 ../admin/social_login.php:276
2003
- #: ../admin/social_login.php:464 ../admin/social_login.php:484
2004
- #: ../admin/social_login.php:685 ../admin/social_login.php:705
2005
- #: ../admin/social_login.php:726 ../admin/social_login.php:746
2006
- #: ../admin/social_login.php:851 ../admin/social_login.php:871
2007
- #: ../admin/social_login.php:936 ../admin/social_login.php:956
2008
- #: ../admin/social_login.php:978 ../admin/social_login.php:998
2009
  #, fuzzy
2010
  msgid ""
2011
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -2014,11 +2045,11 @@ msgstr ""
2014
  "Incolla la seguente URL nelle opzioni <strong>Callback domain</ strong> al "
2015
  "link indicato"
2016
 
2017
- #: ../admin/social_login.php:260
2018
  msgid "Twitter API Secret"
2019
  msgstr "Twitter API Secret"
2020
 
2021
- #: ../admin/social_login.php:270
2022
  #, php-format
2023
  msgid ""
2024
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -2028,12 +2059,12 @@ msgstr ""
2028
  "API Secret, consulta la documentazione che trovi su <a href=\"%s\" target="
2029
  "\"_blank\">questo collegamento</a>"
2030
 
2031
- #: ../admin/social_login.php:285
2032
  #, fuzzy
2033
  msgid "LinkedIn Client ID"
2034
  msgstr "LinkedIn"
2035
 
2036
- #: ../admin/social_login.php:295
2037
  #, fuzzy, php-format
2038
  msgid ""
2039
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2043,8 +2074,8 @@ msgstr ""
2043
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2044
  "target=\"_blank\">questo collegamento</a>"
2045
 
2046
- #: ../admin/social_login.php:297 ../admin/social_login.php:318
2047
- #: ../admin/social_login.php:504 ../admin/social_login.php:524
2048
  #, fuzzy
2049
  msgid ""
2050
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -2053,12 +2084,12 @@ msgstr ""
2053
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2054
  "indicato"
2055
 
2056
- #: ../admin/social_login.php:306
2057
  #, fuzzy
2058
  msgid "LinkedIn Client Secret"
2059
  msgstr "LinkedIn"
2060
 
2061
- #: ../admin/social_login.php:316
2062
  #, fuzzy, php-format
2063
  msgid ""
2064
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2069,12 +2100,12 @@ msgstr ""
2069
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2070
  "target=\"_blank\">questo collegamento</a>"
2071
 
2072
- #: ../admin/social_login.php:327
2073
  #, fuzzy
2074
  msgid "Google Client ID"
2075
  msgstr "Google+ Client ID"
2076
 
2077
- #: ../admin/social_login.php:337
2078
  #, fuzzy, php-format
2079
  msgid ""
2080
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2084,7 +2115,7 @@ msgstr ""
2084
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2085
  "target=\"_blank\">questo collegamento</a>"
2086
 
2087
- #: ../admin/social_login.php:339 ../admin/social_login.php:360
2088
  #, fuzzy
2089
  msgid ""
2090
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2093,12 +2124,12 @@ msgstr ""
2093
  "Incolla la seguente URL nelle opzioni <strong>Redirect URI</ strong> al link "
2094
  "indicato"
2095
 
2096
- #: ../admin/social_login.php:348
2097
  #, fuzzy
2098
  msgid "Google Client Secret"
2099
  msgstr "Google+ Client ID"
2100
 
2101
- #: ../admin/social_login.php:358
2102
  #, fuzzy, php-format
2103
  msgid ""
2104
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2108,11 +2139,11 @@ msgstr ""
2108
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2109
  "target=\"_blank\">questo collegamento</a>"
2110
 
2111
- #: ../admin/social_login.php:369
2112
  msgid "Vkontakte Application ID"
2113
  msgstr "Vkontakte App ID"
2114
 
2115
- #: ../admin/social_login.php:379 ../admin/social_login.php:400
2116
  #, php-format
2117
  msgid ""
2118
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2123,7 +2154,7 @@ msgstr ""
2123
  "Vkontakte Application ID, consulta la documentazione che trovi su <a href="
2124
  "\"%s\" target=\"_blank\">questo collegamento</a>"
2125
 
2126
- #: ../admin/social_login.php:381 ../admin/social_login.php:402
2127
  #, fuzzy
2128
  msgid ""
2129
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2132,17 +2163,17 @@ msgstr ""
2132
  "Incolla la seguente URL nelle opzioni <strong>Site address</ strong> al link "
2133
  "indicato"
2134
 
2135
- #: ../admin/social_login.php:390
2136
  #, fuzzy
2137
  msgid "Vkontakte Secure key"
2138
  msgstr "Vkontakte"
2139
 
2140
- #: ../admin/social_login.php:411
2141
  #, fuzzy
2142
  msgid "Instagram App ID"
2143
  msgstr "Instagram Client ID"
2144
 
2145
- #: ../admin/social_login.php:421
2146
  #, fuzzy, php-format
2147
  msgid ""
2148
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2152,7 +2183,7 @@ msgstr ""
2152
  "l'Instagram Client ID, consulta la documentazione che trovi su <a href=\"%s"
2153
  "\" target=\"_blank\">questo collegamento</a>"
2154
 
2155
- #: ../admin/social_login.php:423 ../admin/social_login.php:444
2156
  #, fuzzy
2157
  msgid ""
2158
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2161,12 +2192,12 @@ msgstr ""
2161
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2162
  "indicato"
2163
 
2164
- #: ../admin/social_login.php:432
2165
  #, fuzzy
2166
  msgid "Instagram App Secret"
2167
  msgstr "Username Instagram"
2168
 
2169
- #: ../admin/social_login.php:442
2170
  #, fuzzy, php-format
2171
  msgid ""
2172
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2176,11 +2207,11 @@ msgstr ""
2176
  "l'Instagram Client ID, consulta la documentazione che trovi su <a href=\"%s"
2177
  "\" target=\"_blank\">questo collegamento</a>"
2178
 
2179
- #: ../admin/social_login.php:453
2180
  msgid "Line Channel ID"
2181
  msgstr ""
2182
 
2183
- #: ../admin/social_login.php:462
2184
  #, fuzzy, php-format
2185
  msgid ""
2186
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2190,12 +2221,12 @@ msgstr ""
2190
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2191
  "target=\"_blank\">questo collegamento</a>"
2192
 
2193
- #: ../admin/social_login.php:473
2194
  #, fuzzy
2195
  msgid "Line Channel Secret"
2196
  msgstr "LinkedIn"
2197
 
2198
- #: ../admin/social_login.php:482
2199
  #, fuzzy, php-format
2200
  msgid ""
2201
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2205,12 +2236,12 @@ msgstr ""
2205
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2206
  "target=\"_blank\">questo collegamento</a>"
2207
 
2208
- #: ../admin/social_login.php:493
2209
  #, fuzzy
2210
  msgid "Wordpress Client ID"
2211
  msgstr "Google+ Client ID"
2212
 
2213
- #: ../admin/social_login.php:502
2214
  #, fuzzy, php-format
2215
  msgid ""
2216
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2220,12 +2251,12 @@ msgstr ""
2220
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2221
  "target=\"_blank\">questo collegamento</a>"
2222
 
2223
- #: ../admin/social_login.php:513
2224
  #, fuzzy
2225
  msgid "Wordpress Client Secret"
2226
  msgstr "Google+ Client ID"
2227
 
2228
- #: ../admin/social_login.php:522
2229
  #, fuzzy, php-format
2230
  msgid ""
2231
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2236,12 +2267,12 @@ msgstr ""
2236
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2237
  "target=\"_blank\">questo collegamento</a>"
2238
 
2239
- #: ../admin/social_login.php:533
2240
  #, fuzzy
2241
  msgid "Microsoft Client ID"
2242
  msgstr "Google+ Client ID"
2243
 
2244
- #: ../admin/social_login.php:542
2245
  #, fuzzy, php-format
2246
  msgid ""
2247
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2251,9 +2282,9 @@ msgstr ""
2251
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2252
  "target=\"_blank\">questo collegamento</a>"
2253
 
2254
- #: ../admin/social_login.php:544 ../admin/social_login.php:564
2255
- #: ../admin/social_login.php:643 ../admin/social_login.php:663
2256
- #: ../admin/social_login.php:808 ../admin/social_login.php:828
2257
  #, fuzzy
2258
  msgid ""
2259
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2262,12 +2293,12 @@ msgstr ""
2262
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2263
  "indicato"
2264
 
2265
- #: ../admin/social_login.php:553
2266
  #, fuzzy
2267
  msgid "Microsoft Client Secret"
2268
  msgstr "Google+ Client ID"
2269
 
2270
- #: ../admin/social_login.php:562
2271
  #, fuzzy, php-format
2272
  msgid ""
2273
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2278,12 +2309,12 @@ msgstr ""
2278
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2279
  "target=\"_blank\">questo collegamento</a>"
2280
 
2281
- #: ../admin/social_login.php:572
2282
  #, fuzzy
2283
  msgid "Steam API Key"
2284
  msgstr "Twitter API Key"
2285
 
2286
- #: ../admin/social_login.php:581
2287
  #, fuzzy, php-format
2288
  msgid ""
2289
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2293,19 +2324,19 @@ msgstr ""
2293
  "API Key, consulta la documentazione che trovi su <a href=\"%s\" target="
2294
  "\"_blank\">questa pagina</a>"
2295
 
2296
- #: ../admin/social_login.php:582
2297
  #, fuzzy
2298
  msgid "Save following <strong>domain</strong> to get the key"
2299
  msgstr ""
2300
  "Incolla la seguente URL nelle opzioni <strong>Callback domain</ strong> al "
2301
  "link indicato"
2302
 
2303
- #: ../admin/social_login.php:591
2304
  #, fuzzy
2305
  msgid "Yahoo Client ID"
2306
  msgstr "Google+ Client ID"
2307
 
2308
- #: ../admin/social_login.php:600
2309
  #, fuzzy, php-format
2310
  msgid ""
2311
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2315,21 +2346,21 @@ msgstr ""
2315
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2316
  "target=\"_blank\">questo collegamento</a>"
2317
 
2318
- #: ../admin/social_login.php:602 ../admin/social_login.php:622
2319
  #, fuzzy
2320
  msgid ""
2321
- "Paste following url in <strong>Redirect URI(s)</strong> option mentioned at "
2322
- "the link"
2323
  msgstr ""
2324
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2325
  "indicato"
2326
 
2327
- #: ../admin/social_login.php:611
2328
  #, fuzzy
2329
  msgid "Yahoo Client Secret"
2330
  msgstr "Google+ Client ID"
2331
 
2332
- #: ../admin/social_login.php:620
2333
  #, fuzzy, php-format
2334
  msgid ""
2335
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2339,12 +2370,139 @@ msgstr ""
2339
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2340
  "target=\"_blank\">questo collegamento</a>"
2341
 
2342
- #: ../admin/social_login.php:632
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2343
  #, fuzzy
2344
  msgid "Spotify Client ID"
2345
  msgstr "Google+ Client ID"
2346
 
2347
- #: ../admin/social_login.php:641
2348
  #, fuzzy, php-format
2349
  msgid ""
2350
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2354,12 +2512,12 @@ msgstr ""
2354
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2355
  "target=\"_blank\">questo collegamento</a>"
2356
 
2357
- #: ../admin/social_login.php:652
2358
  #, fuzzy
2359
  msgid "Spotify Client Secret"
2360
  msgstr "Google+ Client ID"
2361
 
2362
- #: ../admin/social_login.php:661
2363
  #, fuzzy, php-format
2364
  msgid ""
2365
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2370,12 +2528,12 @@ msgstr ""
2370
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2371
  "target=\"_blank\">questo collegamento</a>"
2372
 
2373
- #: ../admin/social_login.php:674
2374
  #, fuzzy
2375
  msgid "Dribbble Client ID"
2376
  msgstr "Google+ Client ID"
2377
 
2378
- #: ../admin/social_login.php:683
2379
  #, fuzzy, php-format
2380
  msgid ""
2381
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2385,12 +2543,12 @@ msgstr ""
2385
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2386
  "target=\"_blank\">questo collegamento</a>"
2387
 
2388
- #: ../admin/social_login.php:694
2389
  #, fuzzy
2390
  msgid "Dribbble Client Secret"
2391
  msgstr "Google+ Client ID"
2392
 
2393
- #: ../admin/social_login.php:703
2394
  #, fuzzy, php-format
2395
  msgid ""
2396
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2401,12 +2559,12 @@ msgstr ""
2401
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2402
  "target=\"_blank\">questo collegamento</a>"
2403
 
2404
- #: ../admin/social_login.php:715
2405
  #, fuzzy
2406
  msgid "Twitch Client ID"
2407
  msgstr "Twitch Client ID"
2408
 
2409
- #: ../admin/social_login.php:724
2410
  #, fuzzy, php-format
2411
  msgid ""
2412
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2416,12 +2574,12 @@ msgstr ""
2416
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2417
  "target=\"_blank\">questo collegamento</a>"
2418
 
2419
- #: ../admin/social_login.php:735
2420
  #, fuzzy
2421
  msgid "Twitch Client Secret"
2422
  msgstr "Twitch Client ID"
2423
 
2424
- #: ../admin/social_login.php:744
2425
  #, fuzzy, php-format
2426
  msgid ""
2427
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2431,12 +2589,12 @@ msgstr ""
2431
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2432
  "target=\"_blank\">questo collegamento</a>"
2433
 
2434
- #: ../admin/social_login.php:757
2435
  #, fuzzy
2436
  msgid "Foursquare Client ID"
2437
  msgstr "Google+ Client ID"
2438
 
2439
- #: ../admin/social_login.php:766
2440
  #, fuzzy, php-format
2441
  msgid ""
2442
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2447,7 +2605,7 @@ msgstr ""
2447
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2448
  "target=\"_blank\">questo collegamento</a>"
2449
 
2450
- #: ../admin/social_login.php:768 ../admin/social_login.php:788
2451
  #, fuzzy
2452
  msgid ""
2453
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
@@ -2456,12 +2614,12 @@ msgstr ""
2456
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2457
  "indicato"
2458
 
2459
- #: ../admin/social_login.php:777
2460
  #, fuzzy
2461
  msgid "Foursquare Client Secret"
2462
  msgstr "Google+ Client ID"
2463
 
2464
- #: ../admin/social_login.php:786
2465
  #, fuzzy, php-format
2466
  msgid ""
2467
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2472,11 +2630,11 @@ msgstr ""
2472
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2473
  "target=\"_blank\">questo collegamento</a>"
2474
 
2475
- #: ../admin/social_login.php:797
2476
  msgid "Dropbox App Key"
2477
  msgstr ""
2478
 
2479
- #: ../admin/social_login.php:806
2480
  #, fuzzy, php-format
2481
  msgid ""
2482
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2486,12 +2644,12 @@ msgstr ""
2486
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
2487
  "target=\"_blank\">questo collegamento</a>"
2488
 
2489
- #: ../admin/social_login.php:817
2490
  #, fuzzy
2491
  msgid "Dropbox App Secret"
2492
  msgstr "Facebook App ID"
2493
 
2494
- #: ../admin/social_login.php:826
2495
  #, fuzzy, php-format
2496
  msgid ""
2497
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2501,11 +2659,11 @@ msgstr ""
2501
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
2502
  "target=\"_blank\">questo collegamento</a>"
2503
 
2504
- #: ../admin/social_login.php:840
2505
  msgid "Disqus Public Key"
2506
  msgstr ""
2507
 
2508
- #: ../admin/social_login.php:849
2509
  #, fuzzy, php-format
2510
  msgid ""
2511
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2515,12 +2673,12 @@ msgstr ""
2515
  "Consumer Key, consulta la documentazione che trovi su <a href=\"%s\" target="
2516
  "\"_blank\">questo collegamento</a>"
2517
 
2518
- #: ../admin/social_login.php:860
2519
  #, fuzzy
2520
  msgid "Disqus Secret Key"
2521
  msgstr "Disqus Shortname"
2522
 
2523
- #: ../admin/social_login.php:869
2524
  #, fuzzy, php-format
2525
  msgid ""
2526
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2530,12 +2688,12 @@ msgstr ""
2530
  "Consumer Key, consulta la documentazione che trovi su <a href=\"%s\" target="
2531
  "\"_blank\">questo collegamento</a>"
2532
 
2533
- #: ../admin/social_login.php:882
2534
  #, fuzzy
2535
  msgid "Reddit Client ID"
2536
  msgstr "Twitch Client ID"
2537
 
2538
- #: ../admin/social_login.php:891
2539
  #, fuzzy, php-format
2540
  msgid ""
2541
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2545,7 +2703,7 @@ msgstr ""
2545
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2546
  "target=\"_blank\">questo collegamento</a>"
2547
 
2548
- #: ../admin/social_login.php:893 ../admin/social_login.php:913
2549
  #, fuzzy
2550
  msgid ""
2551
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
@@ -2554,12 +2712,12 @@ msgstr ""
2554
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2555
  "indicato"
2556
 
2557
- #: ../admin/social_login.php:902
2558
  #, fuzzy
2559
  msgid "Reddit Client Secret"
2560
  msgstr "Twitch Client ID"
2561
 
2562
- #: ../admin/social_login.php:911
2563
  #, fuzzy, php-format
2564
  msgid ""
2565
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2569,12 +2727,12 @@ msgstr ""
2569
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2570
  "target=\"_blank\">questo collegamento</a>"
2571
 
2572
- #: ../admin/social_login.php:925
2573
  #, fuzzy
2574
  msgid "Github Client ID"
2575
  msgstr "Twitch Client ID"
2576
 
2577
- #: ../admin/social_login.php:934
2578
  #, fuzzy, php-format
2579
  msgid ""
2580
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2584,12 +2742,12 @@ msgstr ""
2584
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2585
  "target=\"_blank\">questo collegamento</a>"
2586
 
2587
- #: ../admin/social_login.php:945
2588
  #, fuzzy
2589
  msgid "Github Client Secret"
2590
  msgstr "Twitch Client ID"
2591
 
2592
- #: ../admin/social_login.php:954
2593
  #, fuzzy, php-format
2594
  msgid ""
2595
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2599,12 +2757,12 @@ msgstr ""
2599
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2600
  "target=\"_blank\">questo collegamento</a>"
2601
 
2602
- #: ../admin/social_login.php:967
2603
  #, fuzzy
2604
  msgid "Kakao Client ID"
2605
  msgstr "Google+ Client ID"
2606
 
2607
- #: ../admin/social_login.php:976
2608
  #, fuzzy, php-format
2609
  msgid ""
2610
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2614,12 +2772,12 @@ msgstr ""
2614
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2615
  "target=\"_blank\">questo collegamento</a>"
2616
 
2617
- #: ../admin/social_login.php:987
2618
  #, fuzzy
2619
  msgid "Kakao Client Secret"
2620
  msgstr "Google+ Client ID"
2621
 
2622
- #: ../admin/social_login.php:996
2623
  #, fuzzy, php-format
2624
  msgid ""
2625
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2629,47 +2787,47 @@ msgstr ""
2629
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2630
  "target=\"_blank\">questo collegamento</a>"
2631
 
2632
- #: ../admin/social_login.php:1016
2633
  msgid "Social Login Options"
2634
  msgstr "Opzioni"
2635
 
2636
- #: ../admin/social_login.php:1031
2637
  msgid "Text to display above the Social Login interface"
2638
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
2639
 
2640
- #: ../admin/social_login.php:1039
2641
  msgid "Trigger social login in the same browser tab"
2642
  msgstr ""
2643
 
2644
- #: ../admin/social_login.php:1049
2645
  msgid "Trigger social login in the same browser tab instead of a popup window"
2646
  msgstr ""
2647
 
2648
- #: ../admin/social_login.php:1056
2649
  #, fuzzy
2650
  msgid "Center align icons"
2651
  msgstr "Riorganizza le icone"
2652
 
2653
- #: ../admin/social_login.php:1066
2654
  #, fuzzy
2655
  msgid "Center align social login icons"
2656
  msgstr "Opzioni"
2657
 
2658
- #: ../admin/social_login.php:1073
2659
  msgid "Enable at login page"
2660
  msgstr "Attiva nella pagina di Login"
2661
 
2662
- #: ../admin/social_login.php:1083
2663
  msgid ""
2664
  "Social Login interface will get enabled at the login page of your website"
2665
  msgstr ""
2666
  "L'Interfaccia Social Login si attiverá nella pagina di Login del tuo sito web"
2667
 
2668
- #: ../admin/social_login.php:1090
2669
  msgid "Enable at register page"
2670
  msgstr "Abilita nella pagina di registrazione"
2671
 
2672
- #: ../admin/social_login.php:1100
2673
  msgid ""
2674
  "Social Login interface will get enabled at the registration page of your "
2675
  "website"
@@ -2677,19 +2835,19 @@ msgstr ""
2677
  "L'Interfaccia Social Login si attiverá nella pagina di registrazione del tuo "
2678
  "sito web"
2679
 
2680
- #: ../admin/social_login.php:1107
2681
  msgid "Enable at comment form"
2682
  msgstr "Attiva nel form dei commenti"
2683
 
2684
- #: ../admin/social_login.php:1117
2685
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2686
  msgstr "L'Interfaccia Social Login si attiverá nel form di commenti Wordpress"
2687
 
2688
- #: ../admin/social_login.php:1131
2689
  msgid "Enable before WooCommerce Customer Login Form"
2690
  msgstr "Abilita prima del form Customer Login di WooCommerce"
2691
 
2692
- #: ../admin/social_login.php:1141
2693
  msgid ""
2694
  "Social Login Interface will get enabled before the customer login form at "
2695
  "WooCommerce My Account page"
@@ -2697,12 +2855,12 @@ msgstr ""
2697
  "L'Interfaccia Social Login si attiverá, nella pagina il mio Account di "
2698
  "Woocommerce, prima del Form di Login."
2699
 
2700
- #: ../admin/social_login.php:1148
2701
  #, fuzzy
2702
  msgid "Enable at WooCommerce Customer Login Form"
2703
  msgstr "Abilita dopo il form Customer Login di WooCommerce"
2704
 
2705
- #: ../admin/social_login.php:1158
2706
  #, fuzzy
2707
  msgid ""
2708
  "Integrate Social Login Interface with the customer login form at WooCommerce "
@@ -2711,12 +2869,12 @@ msgstr ""
2711
  "L'Interfaccia Social Login si attiverá, nella pagina il mio Account di "
2712
  "Woocommerce, dopo il Form di Login."
2713
 
2714
- #: ../admin/social_login.php:1165
2715
  #, fuzzy
2716
  msgid "Enable at WooCommerce Customer Register Form"
2717
  msgstr "Abilita dopo il form Customer Login di WooCommerce"
2718
 
2719
- #: ../admin/social_login.php:1175
2720
  #, fuzzy
2721
  msgid ""
2722
  "Integrate Social Login Interface with the customer register form at "
@@ -2725,21 +2883,21 @@ msgstr ""
2725
  "L'Interfaccia Social Login si attiverá, nella pagina il mio Account di "
2726
  "Woocommerce, dopo il Form di Login."
2727
 
2728
- #: ../admin/social_login.php:1182
2729
  msgid "Enable at WooCommerce checkout page"
2730
  msgstr "Abilita nella pagina checkout di WooCommerce"
2731
 
2732
- #: ../admin/social_login.php:1192
2733
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2734
  msgstr ""
2735
  "L'Interfaccia Social Login si attiverá nella pagina di Checkout di "
2736
  "Woocommerce"
2737
 
2738
- #: ../admin/social_login.php:1202
2739
  msgid "Auto-approve comments made by Social Login users"
2740
  msgstr "Auto-approvare i commenti fatti da utenti con accesso Social Login"
2741
 
2742
- #: ../admin/social_login.php:1212
2743
  msgid ""
2744
  "If this option is enabled, and WordPress comment is made by Social Login "
2745
  "user, comment will get approved immediately without keeping in moderation."
@@ -2748,15 +2906,15 @@ msgstr ""
2748
  "che hanno avuto accesso tramite Social Login, il commento sará approvato "
2749
  "immediatamente senza nessuna possibilitá di moderazione."
2750
 
2751
- #: ../admin/social_login.php:1213
2752
  msgid "Note: This is not related to Facebook comments"
2753
  msgstr "Nota: Questa opzione non si applica ai commenti Facebook"
2754
 
2755
- #: ../admin/social_login.php:1222
2756
  msgid "Enable social avatar"
2757
  msgstr "Abilita Avatar"
2758
 
2759
- #: ../admin/social_login.php:1232
2760
  msgid ""
2761
  "Social profile pictures of the logged in user will be displayed as profile "
2762
  "avatar"
@@ -2764,30 +2922,30 @@ msgstr ""
2764
  "Le immagini del profilo degli utenti registrati verranno visualizzate come "
2765
  "avatar del profilo sul tuo sito"
2766
 
2767
- #: ../admin/social_login.php:1241
2768
  msgid "Avatar quality"
2769
  msgstr "Qualità Avatar"
2770
 
2771
- #: ../admin/social_login.php:1244
2772
  msgid "Average"
2773
  msgstr "Media"
2774
 
2775
- #: ../admin/social_login.php:1245
2776
  msgid "Best"
2777
  msgstr "Migliore"
2778
 
2779
- #: ../admin/social_login.php:1252
2780
  msgid "Choose avatar quality"
2781
  msgstr "Scelta qualità Avatar"
2782
 
2783
- #: ../admin/social_login.php:1260
2784
  msgid ""
2785
  "Show option for users to update social avatar at BuddyPress profile page"
2786
  msgstr ""
2787
  "Attiva questa opzione per aggiornare il social avatar nella pagina di "
2788
  "profilo BuddyPress"
2789
 
2790
- #: ../admin/social_login.php:1270
2791
  msgid ""
2792
  "If enabled, users would be able to update their social avatar from \"Profile "
2793
  "photo\" section in BuddyPress profile at front-end"
@@ -2795,7 +2953,7 @@ msgstr ""
2795
  "Se abilitato, gli utenti saranno in grado di aggiornare il proprio social "
2796
  "avatar nella sezione \"Profile photo\" al front-end di BuddyPress."
2797
 
2798
- #: ../admin/social_login.php:1290
2799
  msgid ""
2800
  "If enabled and Social ID provider does not provide user's email address on "
2801
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2806,13 +2964,13 @@ msgstr ""
2806
  "completare questa informazione. In caso contrario, sará generata una email "
2807
  "fittizia"
2808
 
2809
- #: ../admin/social_login.php:1298
2810
  msgid "Send post-registration email to user to set account password"
2811
  msgstr ""
2812
  "Invia e-mail post-registrazione all'utente per impostare la sua account "
2813
  "password"
2814
 
2815
- #: ../admin/social_login.php:1308
2816
  msgid ""
2817
  "If enabled, an email will be sent to user after registration through Social "
2818
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2822,11 +2980,11 @@ msgstr ""
2822
  "Login, sará inviata all'utente una email con le informazioni necessarie per "
2823
  "accedere attraverso il metodo tradizionale (codice d'accesso e password)"
2824
 
2825
- #: ../admin/social_login.php:1315
2826
  msgid "Send new user registration notification email to admin"
2827
  msgstr "Invia email di notifica registrazione nuovo utente all' Amministratore"
2828
 
2829
- #: ../admin/social_login.php:1325
2830
  msgid ""
2831
  "If enabled, an email will be sent to admin after new user registers through "
2832
  "Social Login, notifying admin about the new user registration"
@@ -2835,40 +2993,40 @@ msgstr ""
2835
  "Login, sará inviata all'amministratore una email di notifica della nuova "
2836
  "registrazione"
2837
 
2838
- #: ../admin/social_login.php:1332
2839
  msgid "Login redirection"
2840
  msgstr "Reindirizzamento Login"
2841
 
2842
- #: ../admin/social_login.php:1336
2843
  msgid "Same page where user logged in"
2844
  msgstr "La stessa pagina dove l'utente ha iniziato la sessione"
2845
 
2846
- #: ../admin/social_login.php:1340 ../admin/social_login.php:1369
2847
  msgid "Account dashboard"
2848
  msgstr "Pannello Account"
2849
 
2850
- #: ../admin/social_login.php:1343 ../admin/social_login.php:1372
2851
  msgid "BuddyPress profile page"
2852
  msgstr "Pagina di profilo BuddyPress"
2853
 
2854
- #: ../admin/social_login.php:1346 ../admin/social_login.php:1375
2855
  msgid "Custom Url"
2856
  msgstr "Url personalizzata"
2857
 
2858
- #: ../admin/social_login.php:1354
2859
  msgid "User will be redirected to the selected page after Social Login"
2860
  msgstr ""
2861
  "L'utente sará reindirizzato alla pagina selezionata dopo il Social Login"
2862
 
2863
- #: ../admin/social_login.php:1361
2864
  msgid "Registration redirection"
2865
  msgstr "Reindirizzamento Registratione"
2866
 
2867
- #: ../admin/social_login.php:1365
2868
  msgid "Same page from where user registered"
2869
  msgstr "La stessa pagina dove l'utente si è registrato"
2870
 
2871
- #: ../admin/social_login.php:1383
2872
  msgid ""
2873
  "User will be redirected to the selected page after registration (first "
2874
  "Social Login) through Social Login"
@@ -2876,24 +3034,24 @@ msgstr ""
2876
  "L'utente sará reindirizzato alla pagina selezionata dopo la registrazione "
2877
  "(il primo Social Login) tramite il Social Login"
2878
 
2879
- #: ../admin/social_login.php:1392
2880
  #, fuzzy
2881
  msgid "Social Account Linking Options"
2882
  msgstr "Collegamento Social Account"
2883
 
2884
- #: ../admin/social_login.php:1407
2885
  #, fuzzy
2886
  msgid "Text to display above the Social Account Linking interface"
2887
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
2888
 
2889
- #: ../admin/social_login.php:1414
2890
  #, fuzzy
2891
  msgid ""
2892
  "Link social account to already existing account, if email address matches"
2893
  msgstr ""
2894
  "Collega il tuo social account per accedere al tuo account su questo sito"
2895
 
2896
- #: ../admin/social_login.php:1424
2897
  msgid ""
2898
  "If email address of the user's Social Account matches with an already "
2899
  "existing account at your website, that social account will be linked to "
@@ -2901,11 +3059,11 @@ msgid ""
2901
  "Linking interface at their profile page."
2902
  msgstr ""
2903
 
2904
- #: ../admin/social_login.php:1432
2905
  msgid "Enable social account linking at BuddyPress profile page"
2906
  msgstr "Abilita collegamento social account nella pagina di profilo BuddyPress"
2907
 
2908
- #: ../admin/social_login.php:1442
2909
  msgid ""
2910
  "Enable this option to show social account linking interface at BuddyPress "
2911
  "profile page"
@@ -2913,15 +3071,15 @@ msgstr ""
2913
  "Attiva questa opzione per visualizzare l'interfaccia social account linking "
2914
  "nella pagina di profilo BuddyPress"
2915
 
2916
- #: ../admin/social_login.php:1453
2917
  msgid "Email popup options"
2918
  msgstr "Opzioni del popup 'Email Obbligatoria'"
2919
 
2920
- #: ../admin/social_login.php:1458
2921
  msgid "Text on 'Email required' popup"
2922
  msgstr "Testo del pop-up"
2923
 
2924
- #: ../admin/social_login.php:1468
2925
  msgid ""
2926
  "This text will be displayed on email required popup. Leave empty if not "
2927
  "required."
@@ -2929,11 +3087,11 @@ msgstr ""
2929
  "Questo é il testo che verrà mostrato nella finestra pop-up. Lasciare in "
2930
  "bianco se non si vuole utilizzare."
2931
 
2932
- #: ../admin/social_login.php:1476
2933
  msgid "Error message for 'Email required' popup"
2934
  msgstr "Messaggio d'errore"
2935
 
2936
- #: ../admin/social_login.php:1486
2937
  msgid ""
2938
  "This message will be displayed to user if it provides invalid or already "
2939
  "registered email"
@@ -2941,11 +3099,11 @@ msgstr ""
2941
  "Questo é il testo che verrà mostrato all'utente nel caso inserisca un "
2942
  "indirizzo email non valido o già registrato."
2943
 
2944
- #: ../admin/social_login.php:1494
2945
  msgid "Email popup height"
2946
  msgstr "Altezza pop-up Email"
2947
 
2948
- #: ../admin/social_login.php:1504
2949
  msgid ""
2950
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2951
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2955,11 +3113,11 @@ msgstr ""
2955
  "Obbligatoria\", è possibile aumentare l'altezza del popup specificandolo in "
2956
  "questa opzione. Lasciare vuoto per l'impostazione predefinita."
2957
 
2958
- #: ../admin/social_login.php:1511
2959
  msgid "Enable email verification"
2960
  msgstr "Abilita verifica email"
2961
 
2962
- #: ../admin/social_login.php:1521
2963
  msgid ""
2964
  "If enabled, email provided by the user will be verified by sending a "
2965
  "confirmation link to that email. User would not be able to login without "
@@ -2969,107 +3127,107 @@ msgstr ""
2969
  "verificato mediante l'invio di un link all' indirizzo e-mail specificato. "
2970
  "L'utente non potrà accedere senza aver effettuato la procedura di verifica."
2971
 
2972
- #: ../admin/social_login.php:1541
2973
  #, fuzzy
2974
  msgid "Enable GDPR opt-in"
2975
  msgstr "Abilita Disqus Commenting"
2976
 
2977
- #: ../admin/social_login.php:1551
2978
  msgid ""
2979
  "Enable it to show GDPR opt-in for social login and social account linking"
2980
  msgstr ""
2981
 
2982
- #: ../admin/social_login.php:1559
2983
  #, fuzzy
2984
  msgid "Placement of GDPR opt-in"
2985
  msgstr "Abilita Disqus Commenting"
2986
 
2987
- #: ../admin/social_login.php:1563
2988
  #, fuzzy
2989
  msgid "Above Social Login icons"
2990
  msgstr "Opzioni"
2991
 
2992
- #: ../admin/social_login.php:1565
2993
  #, fuzzy
2994
  msgid "Below Social Login icons"
2995
  msgstr "Opzioni"
2996
 
2997
- #: ../admin/social_login.php:1571
2998
  #, fuzzy
2999
  msgid "Placement of GDPR opt-in above or below the social login icons"
3000
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
3001
 
3002
- #: ../admin/social_login.php:1578
3003
  msgid "Opt-in text"
3004
  msgstr ""
3005
 
3006
- #: ../admin/social_login.php:1588
3007
  #, fuzzy
3008
  msgid "Text for the GDPR opt-in"
3009
  msgstr "Abilita Disqus Commenting"
3010
 
3011
- #: ../admin/social_login.php:1595
3012
  msgid "Text to link to Terms-Conditions page"
3013
  msgstr ""
3014
 
3015
- #: ../admin/social_login.php:1605
3016
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
3017
  msgstr ""
3018
 
3019
- #: ../admin/social_login.php:1612
3020
  msgid "Terms-Conditions Url"
3021
  msgstr ""
3022
 
3023
- #: ../admin/social_login.php:1622
3024
  #, fuzzy
3025
  msgid "Url of the terms-conditions page of your website"
3026
  msgstr "Url della homepage del tuo sito web"
3027
 
3028
- #: ../admin/social_login.php:1629
3029
  msgid "Text to link to Privacy Policy page"
3030
  msgstr ""
3031
 
3032
- #: ../admin/social_login.php:1639
3033
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
3034
  msgstr ""
3035
 
3036
- #: ../admin/social_login.php:1646
3037
  msgid "Privacy Policy Url"
3038
  msgstr ""
3039
 
3040
- #: ../admin/social_login.php:1656
3041
  #, fuzzy
3042
  msgid "Url of the privacy policy page of your website"
3043
  msgstr "Url della homepage del tuo sito web"
3044
 
3045
- #: ../admin/social_login.php:1707 ../inc/widget.php:260 ../inc/widget.php:438
3046
  #: ../inc/widget.php:602 ../inc/widget.php:750
3047
  msgid "Select"
3048
  msgstr "Selezionare"
3049
 
3050
- #: ../admin/social_login.php:1738
3051
  msgid "Social Login Shortcode & Widget"
3052
  msgstr "Shortcode & Widget"
3053
 
3054
- #: ../admin/social_login.php:1739
3055
  msgid "Social Linking Shortcode"
3056
  msgstr "Social Linking Shortcode"
3057
 
3058
- #: ../admin/social_login.php:1754
3059
  msgid "Why is social login not working?"
3060
  msgstr ""
3061
 
3062
- #: ../admin/social_login.php:1755
3063
  msgid ""
3064
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3065
  "belong to the same app"
3066
  msgstr ""
3067
 
3068
- #: ../admin/social_login.php:1757
3069
  msgid "Social Login not working with Varnish enabled"
3070
  msgstr ""
3071
 
3072
- #: ../admin/social_login.php:1758
3073
  msgid ""
3074
  "Why the user is not appearing logged in even after Social Login until the "
3075
  "webpage is refreshed manually?"
@@ -3281,6 +3439,10 @@ msgstr ""
3281
  msgid "Archives"
3282
  msgstr "Archivi di categorie"
3283
 
 
 
 
 
3284
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3285
  msgid "Invalid request"
3286
  msgstr "Domanda non valida"
@@ -3289,27 +3451,31 @@ msgstr "Domanda non valida"
3289
  msgid "Providers not selected"
3290
  msgstr "Providers non selezionati"
3291
 
3292
- #: ../inc/social_login.php:968
 
 
 
 
3293
  msgid "Email"
3294
  msgstr "Email"
3295
 
3296
- #: ../inc/social_login.php:969
3297
  msgid "Confirm email"
3298
  msgstr "Conferma email"
3299
 
3300
- #: ../inc/social_login.php:971
3301
  msgid "Save"
3302
  msgstr "Salva"
3303
 
3304
- #: ../inc/social_login.php:972
3305
  msgid "Cancel"
3306
  msgstr "Cancella"
3307
 
3308
- #: ../inc/social_login.php:1046
3309
  msgid "Email Verification"
3310
  msgstr "Abilita verifica email"
3311
 
3312
- #: ../inc/social_login.php:1048
3313
  msgid ""
3314
  "Please click on the following link or paste it in browser to verify your "
3315
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-06 12:21+0530\n"
6
+ "PO-Revision-Date: 2021-04-06 12:21+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"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../super_socializer.php:1634
20
  #, fuzzy
21
  msgid ""
22
  "cURL is not enabled at your website server. Please contact your website "
25
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
26
  "questo, potrebbe essere necessario contattare l'amministratore del server."
27
 
28
+ #: ../super_socializer.php:1662
29
  #, fuzzy, php-format
30
  msgid ""
31
  "Enter exactly the following url in <strong>Website</strong> option in your "
35
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
36
  "3 %s)"
37
 
38
+ #: ../super_socializer.php:1665
39
  #, fuzzy, php-format
40
  msgid ""
41
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
45
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
46
  "3 %s)"
47
 
48
+ #: ../super_socializer.php:1668
49
  msgid ""
50
  "Make sure cURL is enabled at your website server. You may need to contact "
51
  "the server administrator of your website to verify this"
53
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
54
  "questo, potrebbe essere necessario contattare l'amministratore del server."
55
 
56
+ #: ../super_socializer.php:1829
57
+ msgid "Search"
58
+ msgstr ""
59
+
60
+ #: ../super_socializer.php:1851 ../helper.php:995
61
  msgid "Please verify your email address to login."
62
  msgstr "Per favore, per accedere verifica il tuo indirizzo e-mail."
63
 
64
+ #: ../super_socializer.php:1851
65
  msgid "Your email has been verified. Now you can login to your account"
66
  msgstr ""
67
  "Il tuo indirizzo e-mail é stato verificato, adesso puoi accedere al tuo "
68
  "account"
69
 
70
+ #: ../super_socializer.php:1855
71
  msgid "Notification"
72
  msgstr "Notifiche"
73
 
74
+ #: ../super_socializer.php:1873 ../admin/social_login.php:1443
75
  msgid "Email required"
76
  msgstr "Email Obbligatoria"
77
 
78
+ #: ../super_socializer.php:1876
79
  msgid "Please check your email inbox to complete the registration."
80
  msgstr ""
81
  "Per favore, per completare la registrazione, controlla la tua casella di "
82
  "posta elettronica."
83
 
84
+ #: ../super_socializer.php:1945
85
  msgid "Leave a reply"
86
  msgstr "Lascia un commento"
87
 
88
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
89
  msgid "Shares"
90
  msgstr "Shares"
91
 
92
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
93
  msgid "Share"
94
  msgstr "Share"
95
 
96
+ #: ../super_socializer.php:1961
97
  #, fuzzy
98
  msgid "Link copied."
99
  msgstr "LinkedIn"
100
 
101
+ #: ../super_socializer.php:2206
102
  msgid "Super Socializer - General Options"
103
  msgstr "Super Socializer - Opzioni"
104
 
105
+ #: ../super_socializer.php:2206 ../admin/general_options.php:15
106
  #: ../admin/social_commenting.php:47
107
  msgid "General Options"
108
  msgstr "Opzioni Generali"
109
 
110
+ #: ../super_socializer.php:2274 ../helper.php:924
111
  msgid "Social Avatar"
112
  msgstr "Social Avatar"
113
 
114
+ #: ../super_socializer.php:2277
115
  msgid "Small Avatar Url"
116
  msgstr "Url Avatar Piccolo"
117
 
118
+ #: ../super_socializer.php:2281
119
  msgid "Large Avatar Url"
120
  msgstr "URL Avatar Grande"
121
 
122
+ #: ../super_socializer.php:2285 ../helper.php:927
123
  msgid ""
124
  "Do not fetch and update social avatar from my profile, next time I Social "
125
  "Login"
127
  "La prossima volta che uso Social Login, non prendere e/o aggiornare il "
128
  "social avatar dal mio profilo."
129
 
130
+ #: ../super_socializer.php:2289 ../helper.php:928
131
  msgid "Update social avatar, next time I Social Login"
132
  msgstr "La prossima volta che si usa Social Login, aggiorna il social avatar."
133
 
134
+ #: ../super_socializer.php:2366
135
  msgid "Login with your Social ID"
136
  msgstr "Login con il tuo ID Social"
137
 
138
+ #: ../super_socializer.php:2367
139
  msgid "Email you entered is already registered or invalid"
140
  msgstr "La email inserita è già registrata o non è valida"
141
 
142
+ #: ../super_socializer.php:2374
143
  msgid "Please enter a valid email address. You might be required to verify it"
144
  msgstr ""
145
  "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta "
146
  "una verifica"
147
 
148
+ #: ../super_socializer.php:2378 ../super_socializer.php:3123
149
  msgid "Link your social account to login to your account at this website"
150
  msgstr ""
151
  "Collega il tuo social account per accedere al tuo account su questo sito"
152
 
153
+ #: ../super_socializer.php:2633
154
  msgid "Thanks for installing Super Socializer plugin"
155
  msgstr ""
156
 
157
+ #: ../super_socializer.php:2635
158
  msgid "Configure the Plugin"
159
  msgstr ""
160
 
161
+ #: ../super_socializer.php:2646
162
  msgid ""
163
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
164
  "current version of Super Socializer"
165
  msgstr ""
166
 
167
+ #: ../super_socializer.php:2655
168
  msgid ""
169
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
170
  "version of Super Socializer"
171
  msgstr ""
172
 
173
+ #: ../super_socializer.php:2664
174
  msgid ""
175
+ "Update \"Social Login Buttons\" add-on to version 1.2.7 or above for "
176
  "compatibility with current version of Super Socializer"
177
  msgstr ""
178
 
179
+ #: ../super_socializer.php:2673
180
  msgid ""
181
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
182
  "with current version of Super Socializer"
183
  msgstr ""
184
 
185
+ #: ../super_socializer.php:2682
186
  msgid ""
187
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
188
  "with current version of Super Socializer"
189
  msgstr ""
190
 
191
+ #: ../super_socializer.php:2693
192
  #, php-format
193
  msgid ""
194
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
195
  msgstr ""
196
 
197
+ #: ../super_socializer.php:2702
198
  #, php-format
199
  msgid ""
200
  "To continue using Instagram login create a new Instagram App as described <a "
202
  "Instagram App Secret <a href=\"%s\">here</a>"
203
  msgstr ""
204
 
205
+ #: ../super_socializer.php:2711 ../super_socializer.php:2720
206
  #, php-format
207
  msgid ""
208
  "To continue using bitly url shortener, login to your bit.ly account and "
211
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
212
  msgstr ""
213
 
214
+ #: ../super_socializer.php:2736
215
  #, php-format
216
  msgid ""
217
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
218
  msgstr ""
219
 
220
+ #: ../super_socializer.php:2760
221
  #, php-format
222
  msgid ""
223
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
225
  "target=\"_blank\">here</a>"
226
  msgstr ""
227
 
228
+ #: ../super_socializer.php:2760 ../super_socializer.php:2785
229
+ #: ../super_socializer.php:2810 ../super_socializer.php:2835
230
+ #: ../super_socializer.php:2868 ../super_socializer.php:2896
231
+ #: ../super_socializer.php:2923
232
  msgid "Okay"
233
  msgstr ""
234
 
235
+ #: ../super_socializer.php:2785
236
  #, php-format
237
  msgid ""
238
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
240
  "\">here</a>"
241
  msgstr ""
242
 
243
+ #: ../super_socializer.php:2810
244
  #, php-format
245
  msgid ""
246
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
248
  "target=\"_blank\">here</a>"
249
  msgstr ""
250
 
251
+ #: ../super_socializer.php:2835
252
  #, php-format
253
  msgid ""
254
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
256
  "target=\"_blank\">here</a>"
257
  msgstr ""
258
 
259
+ #: ../super_socializer.php:2846
260
  #, php-format
261
  msgid ""
262
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
263
  msgstr ""
264
 
265
+ #: ../super_socializer.php:2868
266
  #, php-format
267
  msgid ""
268
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
270
  "\"%s\" target=\"_blank\">here</a>"
271
  msgstr ""
272
 
273
+ #: ../super_socializer.php:2896
274
  #, php-format
275
  msgid ""
276
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
279
  "your website %s with them. No need to copy-paste any code from their website."
280
  msgstr ""
281
 
282
+ #: ../super_socializer.php:2923
283
  #, php-format
284
  msgid ""
285
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
287
  "\"%s\" target=\"_blank\">here</a>"
288
  msgstr ""
289
 
290
+ #: ../super_socializer.php:2948
291
  #, php-format
292
  msgid ""
293
  "If you cannot get Linkedin login to work after updating the plugin, replace "
295
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
296
  msgstr ""
297
 
298
+ #: ../super_socializer.php:2948 ../super_socializer.php:2975
299
  msgid "Dismiss"
300
  msgstr ""
301
 
302
+ #: ../super_socializer.php:2974
303
  #, php-format
304
  msgid ""
305
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
308
  "that, clear share counts cache from \"Miscellaneous\" section"
309
  msgstr ""
310
 
311
+ #: ../super_socializer.php:3199
312
  msgid ""
313
  "Your browser is blocking some features of this website. Please follow the "
314
  "instructions at {support_url} to unblock these."
318
  msgid "Settings saved"
319
  msgstr "Impostazioni salvate"
320
 
321
+ #: ../helper.php:194
322
  #, fuzzy
323
  msgid "Click to toggle help"
324
  msgstr "Clicca per nascondere l'aiuto"
325
 
326
+ #: ../helper.php:291
327
  #, fuzzy
328
  msgid "Add-Ons"
329
  msgstr "Altri Add-ons"
330
 
331
+ #: ../helper.php:292
332
  msgid "Support Documentation"
333
  msgstr ""
334
 
335
+ #: ../helper.php:293
336
  msgid "Settings"
337
  msgstr "Configurazioni"
338
 
339
+ #: ../helper.php:576
340
  msgid "Account linked successfully"
341
  msgstr "Account collegato correttamente"
342
 
343
+ #: ../helper.php:580
344
  msgid "Account already exists or linked"
345
  msgstr "Account esistente o già collegato"
346
 
347
+ #: ../helper.php:616 ../helper.php:618
348
  #, fuzzy
349
  msgid "Login with"
350
  msgstr "Opzioni di Login"
351
 
352
+ #: ../helper.php:653 ../helper.php:659
353
  msgid "Currently"
354
  msgstr "Attualmente"
355
 
356
+ #: ../helper.php:653 ../helper.php:659
357
  msgid "Connected with"
358
  msgstr "Connesso con"
359
 
360
+ #: ../helper.php:653 ../helper.php:659
361
  msgid "Remove"
362
  msgstr "rimuovere"
363
 
364
+ #: ../helper.php:730
365
  msgid "Social Account Linking"
366
  msgstr "Collegamento Social Account"
367
 
368
+ #: ../helper.php:780
369
  msgid "Disable Standard Social Sharing on this "
370
  msgstr "Disabilita i pulsanti Floating Social Sharing su questo"
371
 
372
+ #: ../helper.php:785
373
  msgid "Disable Floating Social Sharing on this "
374
  msgstr "Disabilita i pulsanti Floating Social Sharing su questo"
375
 
376
+ #: ../helper.php:790
377
  msgid "Disable Standard like buttons on this "
378
  msgstr "Disabilita i pulsanti Standard Mi-piace su questo"
379
 
380
+ #: ../helper.php:795
381
  msgid "Disable Floating like buttons on this "
382
  msgstr "Disabilita i pulsanti Floating Mi-piace su questo"
383
 
384
+ #: ../helper.php:800
385
  msgid "Disable Social Commenting on this "
386
  msgstr "Disabilita Social Commenting"
387
 
388
+ #: ../helper.php:809
389
  msgid "Standard Sharing Interface"
390
  msgstr "Interfaccia Sharing Standard"
391
 
392
+ #: ../helper.php:815 ../helper.php:834
393
  msgid "Starting share count for "
394
  msgstr "Avvio share count per"
395
 
396
+ #: ../helper.php:828
397
  msgid "Floating Sharing Interface"
398
  msgstr "Interfaccia Sharing Floating"
399
 
400
+ #: ../helper.php:931
401
  msgid "Small Avatar"
402
  msgstr "Avatar Piccolo"
403
 
404
+ #: ../helper.php:935
405
  msgid "Large Avatar"
406
  msgstr "Avatar Grande"
407
 
408
+ #: ../helper.php:939 ../admin/general_options.php:89
409
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
410
+ #: ../admin/social_login.php:1933 ../admin/like_buttons.php:780
411
  msgid "Save Changes"
412
  msgstr "Salva le modifiche"
413
 
414
+ #: ../helper.php:1032
415
  msgid "Click to delete social profile data"
416
  msgstr ""
417
 
418
+ #: ../helper.php:1061
419
  #, fuzzy
420
  msgid "Deleting"
421
  msgstr "Configurazioni"
422
 
423
+ #: ../helper.php:1071
424
  msgid "Deleted"
425
  msgstr ""
426
 
427
+ #: ../helper.php:1073
428
  msgid "Something bad happened"
429
  msgstr ""
430
 
431
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
432
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
433
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
434
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1937
435
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
436
  #, fuzzy, php-format
437
  msgid ""
486
  "È possibile specificare regole CSS aggiuntive (senza &lt;style&gt; tag)"
487
 
488
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
489
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1943
490
  #: ../admin/like_buttons.php:790
491
  #, fuzzy
492
  msgid "Instagram Shoutout"
493
  msgstr "Instagram"
494
 
495
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
496
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1945
497
  #: ../admin/like_buttons.php:792
498
  msgid ""
499
  "If you can send (to hello@heateor.com) how this plugin is helping your "
635
 
636
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
637
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
638
+ #: ../admin/social_login.php:1899 ../admin/like_buttons.php:50
639
  #: ../admin/like_buttons.php:751
640
  msgid "Shortcode & Widget"
641
  msgstr "Shortcode & Widget"
646
 
647
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
648
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
649
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1913
650
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
651
  msgid "FAQ"
652
  msgstr "FAQ"
881
  msgid "Url to share"
882
  msgstr "Url da condividere"
883
 
884
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:1184
885
+ #: ../admin/social_login.php:1560 ../admin/like_buttons.php:105
886
  #: ../inc/widget.php:949
887
  msgid "Title"
888
  msgstr "Titolo"
969
  msgstr "Collocazione"
970
 
971
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
972
+ #: ../admin/social_login.php:1501 ../admin/social_login.php:1530
973
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
974
  msgid "Homepage"
975
  msgstr "Homepage"
1239
  msgid "Required only to track Facebook share count"
1240
  msgstr ""
1241
 
1242
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:222
1243
  msgid "Facebook App ID"
1244
  msgstr "Facebook App ID"
1245
 
1253
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1254
  "target=\"_blank\">questo collegamento</a>"
1255
 
1256
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:243
1257
  #, fuzzy
1258
  msgid "Facebook App Secret"
1259
  msgstr "Facebook App ID"
1445
  "funzionato) e cliicca sul pulsante \"Fetch New Scrape Information\" ."
1446
 
1447
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1448
+ #: ../admin/social_login.php:1915
1449
  msgid ""
1450
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1451
  "an online website for the plugin to function properly."
1503
  msgstr ""
1504
 
1505
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1506
+ #: ../admin/social_login.php:1922
1507
  msgid "Why is my browser blocking some features of the plugin?"
1508
  msgstr ""
1509
 
1826
  msgid "Advanced Configuration"
1827
  msgstr "Configurazione Avanzata"
1828
 
1829
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1699
1830
  msgid "GDPR"
1831
  msgstr ""
1832
 
1833
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1850
1834
  msgid "XProfile Integration"
1835
  msgstr "XProfile Integration"
1836
 
1864
 
1865
  #: ../admin/social_login.php:98
1866
  #, fuzzy
1867
+ msgid "Disable Social Login for admin accounts"
1868
+ msgstr "Opzioni"
1869
+
1870
+ #: ../admin/social_login.php:108
1871
+ #, fuzzy
1872
+ msgid ""
1873
+ "After enabling this option, administrator users will not be able to login "
1874
+ "through social login. Other users will be able to login via social login."
1875
+ msgstr ""
1876
+ "Con l'attivazione di questa opzione, i nuovi utenti non saranno in grado di "
1877
+ "accedere tramite login sociale. Solo gli utenti esistenti potranno usare il "
1878
+ "social login."
1879
+
1880
+ #: ../admin/social_login.php:115
1881
+ #, fuzzy
1882
  msgid "Select Social Networks"
1883
  msgstr "come rete sociale primaria"
1884
 
1885
+ #: ../admin/social_login.php:120
1886
  msgid "Facebook"
1887
  msgstr "Facebook"
1888
 
1889
+ #: ../admin/social_login.php:124
1890
  msgid "Twitter"
1891
  msgstr "Twitter"
1892
 
1893
+ #: ../admin/social_login.php:128
1894
  msgid "LinkedIn"
1895
  msgstr "LinkedIn"
1896
 
1897
+ #: ../admin/social_login.php:132
1898
  #, fuzzy
1899
  msgid "Google"
1900
  msgstr "Google+"
1901
 
1902
+ #: ../admin/social_login.php:136
1903
  msgid "Vkontakte"
1904
  msgstr "Vkontakte"
1905
 
1906
+ #: ../admin/social_login.php:140
1907
  msgid "Instagram"
1908
  msgstr "Instagram"
1909
 
1910
+ #: ../admin/social_login.php:144
1911
  msgid "Steam"
1912
  msgstr "Steam"
1913
 
1914
+ #: ../admin/social_login.php:148
1915
  msgid "Line"
1916
  msgstr ""
1917
 
1918
+ #: ../admin/social_login.php:152
1919
  msgid "Wordpress"
1920
  msgstr ""
1921
 
1922
+ #: ../admin/social_login.php:156
1923
  msgid "Windows Live"
1924
  msgstr ""
1925
 
1926
+ #: ../admin/social_login.php:160
1927
  msgid "Yahoo"
1928
  msgstr "Yahoo"
1929
 
1930
+ #: ../admin/social_login.php:164
1931
+ msgid "Discord"
1932
+ msgstr ""
1933
+
1934
+ #: ../admin/social_login.php:168
1935
+ msgid "Amazon"
1936
+ msgstr ""
1937
+
1938
+ #: ../admin/social_login.php:172
1939
+ msgid "Stackoverflow"
1940
+ msgstr ""
1941
+
1942
+ #: ../admin/social_login.php:176
1943
  msgid "Spotify"
1944
  msgstr ""
1945
 
1946
+ #: ../admin/social_login.php:179
1947
  msgid "Dribbble"
1948
  msgstr ""
1949
 
1950
+ #: ../admin/social_login.php:183
1951
  msgid "Twitch"
1952
  msgstr "Twitch"
1953
 
1954
+ #: ../admin/social_login.php:187
1955
  #, fuzzy
1956
  msgid "Foursquare"
1957
  msgstr "Quadrata"
1958
 
1959
+ #: ../admin/social_login.php:191
1960
  msgid "Dropbox"
1961
  msgstr ""
1962
 
1963
+ #: ../admin/social_login.php:195
1964
  msgid "Disqus"
1965
  msgstr ""
1966
 
1967
+ #: ../admin/social_login.php:199
1968
  msgid "Reddit"
1969
  msgstr "Reddit"
1970
 
1971
+ #: ../admin/social_login.php:203
1972
  msgid "Github"
1973
  msgstr ""
1974
 
1975
+ #: ../admin/social_login.php:207
1976
  msgid "Kakao"
1977
  msgstr ""
1978
 
1979
+ #: ../admin/social_login.php:215
1980
  msgid "Select Social ID provider to enable in Social Login"
1981
  msgstr "Per abilitare Social Login devi selezionare almeno un Social Provider "
1982
 
1983
+ #: ../admin/social_login.php:232
1984
  #, php-format
1985
  msgid ""
1986
  "Required for Facebook Social Login to work. Please follow the documentation "
1990
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1991
  "target=\"_blank\">questo collegamento</a>"
1992
 
1993
+ #: ../admin/social_login.php:234 ../admin/social_login.php:255
1994
  #, fuzzy
1995
  msgid ""
1996
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1998
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
1999
  "indicato"
2000
 
2001
+ #: ../admin/social_login.php:253
2002
  #, fuzzy, php-format
2003
  msgid ""
2004
  "Required for Facebook Social Login to work. Please follow the documentation "
2008
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
2009
  "target=\"_blank\">questo collegamento</a>"
2010
 
2011
+ #: ../admin/social_login.php:264
2012
  msgid "Twitter API Key"
2013
  msgstr "Twitter API Key"
2014
 
2015
+ #: ../admin/social_login.php:274
2016
  #, php-format
2017
  msgid ""
2018
  "Required for Twitter Social Login to work. Please follow the documentation "
2022
  "API Key, consulta la documentazione che trovi su <a href=\"%s\" target="
2023
  "\"_blank\">questa pagina</a>"
2024
 
2025
+ #: ../admin/social_login.php:276 ../admin/social_login.php:301
2026
  #, fuzzy
2027
  msgid ""
2028
  "Paste following url in <strong>Website</strong> option mentioned at the link"
2030
  "Incolla la seguente URL nelle opzioni <strong>Website URL</ strong> al link "
2031
  "indicato"
2032
 
2033
+ #: ../admin/social_login.php:280 ../admin/social_login.php:305
2034
+ #: ../admin/social_login.php:493 ../admin/social_login.php:513
2035
+ #: ../admin/social_login.php:848 ../admin/social_login.php:868
2036
+ #: ../admin/social_login.php:889 ../admin/social_login.php:909
2037
+ #: ../admin/social_login.php:1014 ../admin/social_login.php:1034
2038
+ #: ../admin/social_login.php:1099 ../admin/social_login.php:1119
2039
+ #: ../admin/social_login.php:1141 ../admin/social_login.php:1161
2040
  #, fuzzy
2041
  msgid ""
2042
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
2045
  "Incolla la seguente URL nelle opzioni <strong>Callback domain</ strong> al "
2046
  "link indicato"
2047
 
2048
+ #: ../admin/social_login.php:289
2049
  msgid "Twitter API Secret"
2050
  msgstr "Twitter API Secret"
2051
 
2052
+ #: ../admin/social_login.php:299
2053
  #, php-format
2054
  msgid ""
2055
  "Required for Twitter Social Login to work. Please follow the documentation "
2059
  "API Secret, consulta la documentazione che trovi su <a href=\"%s\" target="
2060
  "\"_blank\">questo collegamento</a>"
2061
 
2062
+ #: ../admin/social_login.php:314
2063
  #, fuzzy
2064
  msgid "LinkedIn Client ID"
2065
  msgstr "LinkedIn"
2066
 
2067
+ #: ../admin/social_login.php:324
2068
  #, fuzzy, php-format
2069
  msgid ""
2070
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2074
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2075
  "target=\"_blank\">questo collegamento</a>"
2076
 
2077
+ #: ../admin/social_login.php:326 ../admin/social_login.php:347
2078
+ #: ../admin/social_login.php:533 ../admin/social_login.php:553
2079
  #, fuzzy
2080
  msgid ""
2081
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2084
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2085
  "indicato"
2086
 
2087
+ #: ../admin/social_login.php:335
2088
  #, fuzzy
2089
  msgid "LinkedIn Client Secret"
2090
  msgstr "LinkedIn"
2091
 
2092
+ #: ../admin/social_login.php:345
2093
  #, fuzzy, php-format
2094
  msgid ""
2095
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2100
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2101
  "target=\"_blank\">questo collegamento</a>"
2102
 
2103
+ #: ../admin/social_login.php:356
2104
  #, fuzzy
2105
  msgid "Google Client ID"
2106
  msgstr "Google+ Client ID"
2107
 
2108
+ #: ../admin/social_login.php:366
2109
  #, fuzzy, php-format
2110
  msgid ""
2111
  "Required for Google Social Login to work. Please follow the documentation at "
2115
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2116
  "target=\"_blank\">questo collegamento</a>"
2117
 
2118
+ #: ../admin/social_login.php:368 ../admin/social_login.php:389
2119
  #, fuzzy
2120
  msgid ""
2121
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2124
  "Incolla la seguente URL nelle opzioni <strong>Redirect URI</ strong> al link "
2125
  "indicato"
2126
 
2127
+ #: ../admin/social_login.php:377
2128
  #, fuzzy
2129
  msgid "Google Client Secret"
2130
  msgstr "Google+ Client ID"
2131
 
2132
+ #: ../admin/social_login.php:387
2133
  #, fuzzy, php-format
2134
  msgid ""
2135
  "Required for Google Social Login to work. Please follow the documentation at "
2139
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2140
  "target=\"_blank\">questo collegamento</a>"
2141
 
2142
+ #: ../admin/social_login.php:398
2143
  msgid "Vkontakte Application ID"
2144
  msgstr "Vkontakte App ID"
2145
 
2146
+ #: ../admin/social_login.php:408 ../admin/social_login.php:429
2147
  #, php-format
2148
  msgid ""
2149
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2154
  "Vkontakte Application ID, consulta la documentazione che trovi su <a href="
2155
  "\"%s\" target=\"_blank\">questo collegamento</a>"
2156
 
2157
+ #: ../admin/social_login.php:410 ../admin/social_login.php:431
2158
  #, fuzzy
2159
  msgid ""
2160
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2163
  "Incolla la seguente URL nelle opzioni <strong>Site address</ strong> al link "
2164
  "indicato"
2165
 
2166
+ #: ../admin/social_login.php:419
2167
  #, fuzzy
2168
  msgid "Vkontakte Secure key"
2169
  msgstr "Vkontakte"
2170
 
2171
+ #: ../admin/social_login.php:440
2172
  #, fuzzy
2173
  msgid "Instagram App ID"
2174
  msgstr "Instagram Client ID"
2175
 
2176
+ #: ../admin/social_login.php:450
2177
  #, fuzzy, php-format
2178
  msgid ""
2179
  "Required for Instagram Social Login to work. Please follow the documentation "
2183
  "l'Instagram Client ID, consulta la documentazione che trovi su <a href=\"%s"
2184
  "\" target=\"_blank\">questo collegamento</a>"
2185
 
2186
+ #: ../admin/social_login.php:452 ../admin/social_login.php:473
2187
  #, fuzzy
2188
  msgid ""
2189
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2192
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2193
  "indicato"
2194
 
2195
+ #: ../admin/social_login.php:461
2196
  #, fuzzy
2197
  msgid "Instagram App Secret"
2198
  msgstr "Username Instagram"
2199
 
2200
+ #: ../admin/social_login.php:471
2201
  #, fuzzy, php-format
2202
  msgid ""
2203
  "Required for Instagram Social Login to work. Please follow the documentation "
2207
  "l'Instagram Client ID, consulta la documentazione che trovi su <a href=\"%s"
2208
  "\" target=\"_blank\">questo collegamento</a>"
2209
 
2210
+ #: ../admin/social_login.php:482
2211
  msgid "Line Channel ID"
2212
  msgstr ""
2213
 
2214
+ #: ../admin/social_login.php:491
2215
  #, fuzzy, php-format
2216
  msgid ""
2217
  "Required for Line Social Login to work. Please follow the documentation at "
2221
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2222
  "target=\"_blank\">questo collegamento</a>"
2223
 
2224
+ #: ../admin/social_login.php:502
2225
  #, fuzzy
2226
  msgid "Line Channel Secret"
2227
  msgstr "LinkedIn"
2228
 
2229
+ #: ../admin/social_login.php:511
2230
  #, fuzzy, php-format
2231
  msgid ""
2232
  "Required for Line Social Login to work. Please follow the documentation at "
2236
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2237
  "target=\"_blank\">questo collegamento</a>"
2238
 
2239
+ #: ../admin/social_login.php:522
2240
  #, fuzzy
2241
  msgid "Wordpress Client ID"
2242
  msgstr "Google+ Client ID"
2243
 
2244
+ #: ../admin/social_login.php:531
2245
  #, fuzzy, php-format
2246
  msgid ""
2247
  "Required for Wordpress Social Login to work. Please follow the documentation "
2251
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2252
  "target=\"_blank\">questo collegamento</a>"
2253
 
2254
+ #: ../admin/social_login.php:542
2255
  #, fuzzy
2256
  msgid "Wordpress Client Secret"
2257
  msgstr "Google+ Client ID"
2258
 
2259
+ #: ../admin/social_login.php:551
2260
  #, fuzzy, php-format
2261
  msgid ""
2262
  "Required for Wordpress Social Login to work. Please follow the documentation "
2267
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2268
  "target=\"_blank\">questo collegamento</a>"
2269
 
2270
+ #: ../admin/social_login.php:562
2271
  #, fuzzy
2272
  msgid "Microsoft Client ID"
2273
  msgstr "Google+ Client ID"
2274
 
2275
+ #: ../admin/social_login.php:571
2276
  #, fuzzy, php-format
2277
  msgid ""
2278
  "Required for Live Social Login to work. Please follow the documentation at "
2282
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2283
  "target=\"_blank\">questo collegamento</a>"
2284
 
2285
+ #: ../admin/social_login.php:573 ../admin/social_login.php:593
2286
+ #: ../admin/social_login.php:806 ../admin/social_login.php:826
2287
+ #: ../admin/social_login.php:971 ../admin/social_login.php:991
2288
  #, fuzzy
2289
  msgid ""
2290
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2293
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2294
  "indicato"
2295
 
2296
+ #: ../admin/social_login.php:582
2297
  #, fuzzy
2298
  msgid "Microsoft Client Secret"
2299
  msgstr "Google+ Client ID"
2300
 
2301
+ #: ../admin/social_login.php:591
2302
  #, fuzzy, php-format
2303
  msgid ""
2304
  "Required for Live Social Login to work. Please follow the documentation at "
2309
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2310
  "target=\"_blank\">questo collegamento</a>"
2311
 
2312
+ #: ../admin/social_login.php:601
2313
  #, fuzzy
2314
  msgid "Steam API Key"
2315
  msgstr "Twitter API Key"
2316
 
2317
+ #: ../admin/social_login.php:610
2318
  #, fuzzy, php-format
2319
  msgid ""
2320
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2324
  "API Key, consulta la documentazione che trovi su <a href=\"%s\" target="
2325
  "\"_blank\">questa pagina</a>"
2326
 
2327
+ #: ../admin/social_login.php:611
2328
  #, fuzzy
2329
  msgid "Save following <strong>domain</strong> to get the key"
2330
  msgstr ""
2331
  "Incolla la seguente URL nelle opzioni <strong>Callback domain</ strong> al "
2332
  "link indicato"
2333
 
2334
+ #: ../admin/social_login.php:620
2335
  #, fuzzy
2336
  msgid "Yahoo Client ID"
2337
  msgstr "Google+ Client ID"
2338
 
2339
+ #: ../admin/social_login.php:629
2340
  #, fuzzy, php-format
2341
  msgid ""
2342
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2346
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2347
  "target=\"_blank\">questo collegamento</a>"
2348
 
2349
+ #: ../admin/social_login.php:631 ../admin/social_login.php:651
2350
  #, fuzzy
2351
  msgid ""
2352
+ "Paste following url in the <strong>Redirect URI(s)</strong> option mentioned "
2353
+ "at the link"
2354
  msgstr ""
2355
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2356
  "indicato"
2357
 
2358
+ #: ../admin/social_login.php:640
2359
  #, fuzzy
2360
  msgid "Yahoo Client Secret"
2361
  msgstr "Google+ Client ID"
2362
 
2363
+ #: ../admin/social_login.php:649
2364
  #, fuzzy, php-format
2365
  msgid ""
2366
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2370
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2371
  "target=\"_blank\">questo collegamento</a>"
2372
 
2373
+ #: ../admin/social_login.php:662
2374
+ #, fuzzy
2375
+ msgid "Discord Client ID"
2376
+ msgstr "Twitch Client ID"
2377
+
2378
+ #: ../admin/social_login.php:671
2379
+ #, fuzzy, php-format
2380
+ msgid ""
2381
+ "Required for Discord Social Login to work. Please follow the documentation "
2382
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client ID"
2383
+ msgstr ""
2384
+ "Necessario per far funzionare GooglePlus Social Login. Per ottenere il "
2385
+ "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2386
+ "target=\"_blank\">questo collegamento</a>"
2387
+
2388
+ #: ../admin/social_login.php:673 ../admin/social_login.php:693
2389
+ #, fuzzy
2390
+ msgid ""
2391
+ "Paste following url in the <strong>Redirects</strong> option mentioned at "
2392
+ "the link"
2393
+ msgstr ""
2394
+ "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2395
+ "indicato"
2396
+
2397
+ #: ../admin/social_login.php:682
2398
+ #, fuzzy
2399
+ msgid "Discord Client Secret"
2400
+ msgstr "Twitch Client ID"
2401
+
2402
+ #: ../admin/social_login.php:691
2403
+ #, fuzzy, php-format
2404
+ msgid ""
2405
+ "Required for Discord Social Login to work. Please follow the documentation "
2406
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client "
2407
+ "Secret key"
2408
+ msgstr ""
2409
+ "Necessario per far funzionare GooglePlus Social Login. Per ottenere il "
2410
+ "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2411
+ "target=\"_blank\">questo collegamento</a>"
2412
+
2413
+ #: ../admin/social_login.php:704
2414
+ #, fuzzy
2415
+ msgid "Amazon Client ID"
2416
+ msgstr "Google+ Client ID"
2417
+
2418
+ #: ../admin/social_login.php:713
2419
+ #, fuzzy, php-format
2420
+ msgid ""
2421
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2422
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client ID"
2423
+ msgstr ""
2424
+ "Necessario per far funzionare GooglePlus Social Login. Per ottenere il "
2425
+ "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2426
+ "target=\"_blank\">questo collegamento</a>"
2427
+
2428
+ #: ../admin/social_login.php:715 ../admin/social_login.php:735
2429
+ #, fuzzy
2430
+ msgid ""
2431
+ "Paste following url in the <strong>Allowed Return URLs</strong> option "
2432
+ "mentioned at the link"
2433
+ msgstr ""
2434
+ "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2435
+ "indicato"
2436
+
2437
+ #: ../admin/social_login.php:724
2438
+ #, fuzzy
2439
+ msgid "Amazon Client Secret"
2440
+ msgstr "Google+ Client ID"
2441
+
2442
+ #: ../admin/social_login.php:733
2443
+ #, fuzzy, php-format
2444
+ msgid ""
2445
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2446
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client Secret "
2447
+ "key"
2448
+ msgstr ""
2449
+ "Necessario per far funzionare GooglePlus Social Login. Per ottenere il "
2450
+ "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2451
+ "target=\"_blank\">questo collegamento</a>"
2452
+
2453
+ #: ../admin/social_login.php:746
2454
+ #, fuzzy
2455
+ msgid "Stackoverflow Client ID"
2456
+ msgstr "Google+ Client ID"
2457
+
2458
+ #: ../admin/social_login.php:755
2459
+ #, fuzzy, php-format
2460
+ msgid ""
2461
+ "Required for Stackoverflow Social Login to work. Please follow the "
2462
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2463
+ "Stackoverflow Client ID"
2464
+ msgstr ""
2465
+ "Necessario per far funzionare GooglePlus Social Login. Per ottenere il "
2466
+ "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2467
+ "target=\"_blank\">questo collegamento</a>"
2468
+
2469
+ #: ../admin/social_login.php:761
2470
+ #, fuzzy
2471
+ msgid "Stackoverflow Client Secret"
2472
+ msgstr "Google+ Client ID"
2473
+
2474
+ #: ../admin/social_login.php:770
2475
+ #, fuzzy, php-format
2476
+ msgid ""
2477
+ "Required for Stackoverflow Social Login to work. Please follow the "
2478
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2479
+ "Stackoverflow Client Secret key"
2480
+ msgstr ""
2481
+ "Necessario per far funzionare GooglePlus Social Login. Per ottenere il "
2482
+ "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2483
+ "target=\"_blank\">questo collegamento</a>"
2484
+
2485
+ #: ../admin/social_login.php:776
2486
+ msgid "Stackoverflow Key"
2487
+ msgstr ""
2488
+
2489
+ #: ../admin/social_login.php:786
2490
+ #, fuzzy, php-format
2491
+ msgid ""
2492
+ "Required for Stackoverflow Social Login to work. Please follow the "
2493
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2494
+ "Stackoverflow Key"
2495
+ msgstr ""
2496
+ "Necessario per far funzionare Twitter Social Login. Per ottenere la Twitter "
2497
+ "API Key, consulta la documentazione che trovi su <a href=\"%s\" target="
2498
+ "\"_blank\">questa pagina</a>"
2499
+
2500
+ #: ../admin/social_login.php:795
2501
  #, fuzzy
2502
  msgid "Spotify Client ID"
2503
  msgstr "Google+ Client ID"
2504
 
2505
+ #: ../admin/social_login.php:804
2506
  #, fuzzy, php-format
2507
  msgid ""
2508
  "Required for Spotify Social Login to work. Please follow the documentation "
2512
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2513
  "target=\"_blank\">questo collegamento</a>"
2514
 
2515
+ #: ../admin/social_login.php:815
2516
  #, fuzzy
2517
  msgid "Spotify Client Secret"
2518
  msgstr "Google+ Client ID"
2519
 
2520
+ #: ../admin/social_login.php:824
2521
  #, fuzzy, php-format
2522
  msgid ""
2523
  "Required for Spotify Social Login to work. Please follow the documentation "
2528
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2529
  "target=\"_blank\">questo collegamento</a>"
2530
 
2531
+ #: ../admin/social_login.php:837
2532
  #, fuzzy
2533
  msgid "Dribbble Client ID"
2534
  msgstr "Google+ Client ID"
2535
 
2536
+ #: ../admin/social_login.php:846
2537
  #, fuzzy, php-format
2538
  msgid ""
2539
  "Required for Dribbble Social Login to work. Please follow the documentation "
2543
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2544
  "target=\"_blank\">questo collegamento</a>"
2545
 
2546
+ #: ../admin/social_login.php:857
2547
  #, fuzzy
2548
  msgid "Dribbble Client Secret"
2549
  msgstr "Google+ Client ID"
2550
 
2551
+ #: ../admin/social_login.php:866
2552
  #, fuzzy, php-format
2553
  msgid ""
2554
  "Required for Dribbble Social Login to work. Please follow the documentation "
2559
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2560
  "target=\"_blank\">questo collegamento</a>"
2561
 
2562
+ #: ../admin/social_login.php:878
2563
  #, fuzzy
2564
  msgid "Twitch Client ID"
2565
  msgstr "Twitch Client ID"
2566
 
2567
+ #: ../admin/social_login.php:887
2568
  #, fuzzy, php-format
2569
  msgid ""
2570
  "Required for Twitch Social Login to work. Please follow the documentation at "
2574
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2575
  "target=\"_blank\">questo collegamento</a>"
2576
 
2577
+ #: ../admin/social_login.php:898
2578
  #, fuzzy
2579
  msgid "Twitch Client Secret"
2580
  msgstr "Twitch Client ID"
2581
 
2582
+ #: ../admin/social_login.php:907
2583
  #, fuzzy, php-format
2584
  msgid ""
2585
  "Required for Twitch Social Login to work. Please follow the documentation at "
2589
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2590
  "target=\"_blank\">questo collegamento</a>"
2591
 
2592
+ #: ../admin/social_login.php:920
2593
  #, fuzzy
2594
  msgid "Foursquare Client ID"
2595
  msgstr "Google+ Client ID"
2596
 
2597
+ #: ../admin/social_login.php:929
2598
  #, fuzzy, php-format
2599
  msgid ""
2600
  "Required for Foursquare Social Login to work. Please follow the "
2605
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2606
  "target=\"_blank\">questo collegamento</a>"
2607
 
2608
+ #: ../admin/social_login.php:931 ../admin/social_login.php:951
2609
  #, fuzzy
2610
  msgid ""
2611
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
2614
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2615
  "indicato"
2616
 
2617
+ #: ../admin/social_login.php:940
2618
  #, fuzzy
2619
  msgid "Foursquare Client Secret"
2620
  msgstr "Google+ Client ID"
2621
 
2622
+ #: ../admin/social_login.php:949
2623
  #, fuzzy, php-format
2624
  msgid ""
2625
  "Required for Foursquare Social Login to work. Please follow the "
2630
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2631
  "target=\"_blank\">questo collegamento</a>"
2632
 
2633
+ #: ../admin/social_login.php:960
2634
  msgid "Dropbox App Key"
2635
  msgstr ""
2636
 
2637
+ #: ../admin/social_login.php:969
2638
  #, fuzzy, php-format
2639
  msgid ""
2640
  "Required for Dropbox Social Login to work. Please follow the documentation "
2644
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
2645
  "target=\"_blank\">questo collegamento</a>"
2646
 
2647
+ #: ../admin/social_login.php:980
2648
  #, fuzzy
2649
  msgid "Dropbox App Secret"
2650
  msgstr "Facebook App ID"
2651
 
2652
+ #: ../admin/social_login.php:989
2653
  #, fuzzy, php-format
2654
  msgid ""
2655
  "Required for Dropbox Social Login to work. Please follow the documentation "
2659
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
2660
  "target=\"_blank\">questo collegamento</a>"
2661
 
2662
+ #: ../admin/social_login.php:1003
2663
  msgid "Disqus Public Key"
2664
  msgstr ""
2665
 
2666
+ #: ../admin/social_login.php:1012
2667
  #, fuzzy, php-format
2668
  msgid ""
2669
  "Required for Disqus Social Login to work. Please follow the documentation at "
2673
  "Consumer Key, consulta la documentazione che trovi su <a href=\"%s\" target="
2674
  "\"_blank\">questo collegamento</a>"
2675
 
2676
+ #: ../admin/social_login.php:1023
2677
  #, fuzzy
2678
  msgid "Disqus Secret Key"
2679
  msgstr "Disqus Shortname"
2680
 
2681
+ #: ../admin/social_login.php:1032
2682
  #, fuzzy, php-format
2683
  msgid ""
2684
  "Required for Disqus Social Login to work. Please follow the documentation at "
2688
  "Consumer Key, consulta la documentazione che trovi su <a href=\"%s\" target="
2689
  "\"_blank\">questo collegamento</a>"
2690
 
2691
+ #: ../admin/social_login.php:1045
2692
  #, fuzzy
2693
  msgid "Reddit Client ID"
2694
  msgstr "Twitch Client ID"
2695
 
2696
+ #: ../admin/social_login.php:1054
2697
  #, fuzzy, php-format
2698
  msgid ""
2699
  "Required for Reddit Social Login to work. Please follow the documentation at "
2703
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2704
  "target=\"_blank\">questo collegamento</a>"
2705
 
2706
+ #: ../admin/social_login.php:1056 ../admin/social_login.php:1076
2707
  #, fuzzy
2708
  msgid ""
2709
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
2712
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2713
  "indicato"
2714
 
2715
+ #: ../admin/social_login.php:1065
2716
  #, fuzzy
2717
  msgid "Reddit Client Secret"
2718
  msgstr "Twitch Client ID"
2719
 
2720
+ #: ../admin/social_login.php:1074
2721
  #, fuzzy, php-format
2722
  msgid ""
2723
  "Required for Reddit Social Login to work. Please follow the documentation at "
2727
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2728
  "target=\"_blank\">questo collegamento</a>"
2729
 
2730
+ #: ../admin/social_login.php:1088
2731
  #, fuzzy
2732
  msgid "Github Client ID"
2733
  msgstr "Twitch Client ID"
2734
 
2735
+ #: ../admin/social_login.php:1097
2736
  #, fuzzy, php-format
2737
  msgid ""
2738
  "Required for Github Social Login to work. Please follow the documentation at "
2742
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2743
  "target=\"_blank\">questo collegamento</a>"
2744
 
2745
+ #: ../admin/social_login.php:1108
2746
  #, fuzzy
2747
  msgid "Github Client Secret"
2748
  msgstr "Twitch Client ID"
2749
 
2750
+ #: ../admin/social_login.php:1117
2751
  #, fuzzy, php-format
2752
  msgid ""
2753
  "Required for Github Social Login to work. Please follow the documentation at "
2757
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2758
  "target=\"_blank\">questo collegamento</a>"
2759
 
2760
+ #: ../admin/social_login.php:1130
2761
  #, fuzzy
2762
  msgid "Kakao Client ID"
2763
  msgstr "Google+ Client ID"
2764
 
2765
+ #: ../admin/social_login.php:1139
2766
  #, fuzzy, php-format
2767
  msgid ""
2768
  "Required for Kakao Social Login to work. Please follow the documentation at "
2772
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2773
  "target=\"_blank\">questo collegamento</a>"
2774
 
2775
+ #: ../admin/social_login.php:1150
2776
  #, fuzzy
2777
  msgid "Kakao Client Secret"
2778
  msgstr "Google+ Client ID"
2779
 
2780
+ #: ../admin/social_login.php:1159
2781
  #, fuzzy, php-format
2782
  msgid ""
2783
  "Required for Kakao Social Login to work. Please follow the documentation at "
2787
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2788
  "target=\"_blank\">questo collegamento</a>"
2789
 
2790
+ #: ../admin/social_login.php:1179
2791
  msgid "Social Login Options"
2792
  msgstr "Opzioni"
2793
 
2794
+ #: ../admin/social_login.php:1194
2795
  msgid "Text to display above the Social Login interface"
2796
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
2797
 
2798
+ #: ../admin/social_login.php:1202
2799
  msgid "Trigger social login in the same browser tab"
2800
  msgstr ""
2801
 
2802
+ #: ../admin/social_login.php:1212
2803
  msgid "Trigger social login in the same browser tab instead of a popup window"
2804
  msgstr ""
2805
 
2806
+ #: ../admin/social_login.php:1219
2807
  #, fuzzy
2808
  msgid "Center align icons"
2809
  msgstr "Riorganizza le icone"
2810
 
2811
+ #: ../admin/social_login.php:1229
2812
  #, fuzzy
2813
  msgid "Center align social login icons"
2814
  msgstr "Opzioni"
2815
 
2816
+ #: ../admin/social_login.php:1236
2817
  msgid "Enable at login page"
2818
  msgstr "Attiva nella pagina di Login"
2819
 
2820
+ #: ../admin/social_login.php:1246
2821
  msgid ""
2822
  "Social Login interface will get enabled at the login page of your website"
2823
  msgstr ""
2824
  "L'Interfaccia Social Login si attiverá nella pagina di Login del tuo sito web"
2825
 
2826
+ #: ../admin/social_login.php:1253
2827
  msgid "Enable at register page"
2828
  msgstr "Abilita nella pagina di registrazione"
2829
 
2830
+ #: ../admin/social_login.php:1263
2831
  msgid ""
2832
  "Social Login interface will get enabled at the registration page of your "
2833
  "website"
2835
  "L'Interfaccia Social Login si attiverá nella pagina di registrazione del tuo "
2836
  "sito web"
2837
 
2838
+ #: ../admin/social_login.php:1270
2839
  msgid "Enable at comment form"
2840
  msgstr "Attiva nel form dei commenti"
2841
 
2842
+ #: ../admin/social_login.php:1280
2843
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2844
  msgstr "L'Interfaccia Social Login si attiverá nel form di commenti Wordpress"
2845
 
2846
+ #: ../admin/social_login.php:1294
2847
  msgid "Enable before WooCommerce Customer Login Form"
2848
  msgstr "Abilita prima del form Customer Login di WooCommerce"
2849
 
2850
+ #: ../admin/social_login.php:1304
2851
  msgid ""
2852
  "Social Login Interface will get enabled before the customer login form at "
2853
  "WooCommerce My Account page"
2855
  "L'Interfaccia Social Login si attiverá, nella pagina il mio Account di "
2856
  "Woocommerce, prima del Form di Login."
2857
 
2858
+ #: ../admin/social_login.php:1311
2859
  #, fuzzy
2860
  msgid "Enable at WooCommerce Customer Login Form"
2861
  msgstr "Abilita dopo il form Customer Login di WooCommerce"
2862
 
2863
+ #: ../admin/social_login.php:1321
2864
  #, fuzzy
2865
  msgid ""
2866
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2869
  "L'Interfaccia Social Login si attiverá, nella pagina il mio Account di "
2870
  "Woocommerce, dopo il Form di Login."
2871
 
2872
+ #: ../admin/social_login.php:1328
2873
  #, fuzzy
2874
  msgid "Enable at WooCommerce Customer Register Form"
2875
  msgstr "Abilita dopo il form Customer Login di WooCommerce"
2876
 
2877
+ #: ../admin/social_login.php:1338
2878
  #, fuzzy
2879
  msgid ""
2880
  "Integrate Social Login Interface with the customer register form at "
2883
  "L'Interfaccia Social Login si attiverá, nella pagina il mio Account di "
2884
  "Woocommerce, dopo il Form di Login."
2885
 
2886
+ #: ../admin/social_login.php:1345
2887
  msgid "Enable at WooCommerce checkout page"
2888
  msgstr "Abilita nella pagina checkout di WooCommerce"
2889
 
2890
+ #: ../admin/social_login.php:1355
2891
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2892
  msgstr ""
2893
  "L'Interfaccia Social Login si attiverá nella pagina di Checkout di "
2894
  "Woocommerce"
2895
 
2896
+ #: ../admin/social_login.php:1365
2897
  msgid "Auto-approve comments made by Social Login users"
2898
  msgstr "Auto-approvare i commenti fatti da utenti con accesso Social Login"
2899
 
2900
+ #: ../admin/social_login.php:1375
2901
  msgid ""
2902
  "If this option is enabled, and WordPress comment is made by Social Login "
2903
  "user, comment will get approved immediately without keeping in moderation."
2906
  "che hanno avuto accesso tramite Social Login, il commento sará approvato "
2907
  "immediatamente senza nessuna possibilitá di moderazione."
2908
 
2909
+ #: ../admin/social_login.php:1376
2910
  msgid "Note: This is not related to Facebook comments"
2911
  msgstr "Nota: Questa opzione non si applica ai commenti Facebook"
2912
 
2913
+ #: ../admin/social_login.php:1385
2914
  msgid "Enable social avatar"
2915
  msgstr "Abilita Avatar"
2916
 
2917
+ #: ../admin/social_login.php:1395
2918
  msgid ""
2919
  "Social profile pictures of the logged in user will be displayed as profile "
2920
  "avatar"
2922
  "Le immagini del profilo degli utenti registrati verranno visualizzate come "
2923
  "avatar del profilo sul tuo sito"
2924
 
2925
+ #: ../admin/social_login.php:1404
2926
  msgid "Avatar quality"
2927
  msgstr "Qualità Avatar"
2928
 
2929
+ #: ../admin/social_login.php:1407
2930
  msgid "Average"
2931
  msgstr "Media"
2932
 
2933
+ #: ../admin/social_login.php:1408
2934
  msgid "Best"
2935
  msgstr "Migliore"
2936
 
2937
+ #: ../admin/social_login.php:1415
2938
  msgid "Choose avatar quality"
2939
  msgstr "Scelta qualità Avatar"
2940
 
2941
+ #: ../admin/social_login.php:1423
2942
  msgid ""
2943
  "Show option for users to update social avatar at BuddyPress profile page"
2944
  msgstr ""
2945
  "Attiva questa opzione per aggiornare il social avatar nella pagina di "
2946
  "profilo BuddyPress"
2947
 
2948
+ #: ../admin/social_login.php:1433
2949
  msgid ""
2950
  "If enabled, users would be able to update their social avatar from \"Profile "
2951
  "photo\" section in BuddyPress profile at front-end"
2953
  "Se abilitato, gli utenti saranno in grado di aggiornare il proprio social "
2954
  "avatar nella sezione \"Profile photo\" al front-end di BuddyPress."
2955
 
2956
+ #: ../admin/social_login.php:1453
2957
  msgid ""
2958
  "If enabled and Social ID provider does not provide user's email address on "
2959
  "login, user will be asked to provide his/her email address. Otherwise, a "
2964
  "completare questa informazione. In caso contrario, sará generata una email "
2965
  "fittizia"
2966
 
2967
+ #: ../admin/social_login.php:1461
2968
  msgid "Send post-registration email to user to set account password"
2969
  msgstr ""
2970
  "Invia e-mail post-registrazione all'utente per impostare la sua account "
2971
  "password"
2972
 
2973
+ #: ../admin/social_login.php:1471
2974
  msgid ""
2975
  "If enabled, an email will be sent to user after registration through Social "
2976
  "Login, regarding his/her login credentials (username-password to be able to "
2980
  "Login, sará inviata all'utente una email con le informazioni necessarie per "
2981
  "accedere attraverso il metodo tradizionale (codice d'accesso e password)"
2982
 
2983
+ #: ../admin/social_login.php:1478
2984
  msgid "Send new user registration notification email to admin"
2985
  msgstr "Invia email di notifica registrazione nuovo utente all' Amministratore"
2986
 
2987
+ #: ../admin/social_login.php:1488
2988
  msgid ""
2989
  "If enabled, an email will be sent to admin after new user registers through "
2990
  "Social Login, notifying admin about the new user registration"
2993
  "Login, sará inviata all'amministratore una email di notifica della nuova "
2994
  "registrazione"
2995
 
2996
+ #: ../admin/social_login.php:1495
2997
  msgid "Login redirection"
2998
  msgstr "Reindirizzamento Login"
2999
 
3000
+ #: ../admin/social_login.php:1499
3001
  msgid "Same page where user logged in"
3002
  msgstr "La stessa pagina dove l'utente ha iniziato la sessione"
3003
 
3004
+ #: ../admin/social_login.php:1503 ../admin/social_login.php:1532
3005
  msgid "Account dashboard"
3006
  msgstr "Pannello Account"
3007
 
3008
+ #: ../admin/social_login.php:1506 ../admin/social_login.php:1535
3009
  msgid "BuddyPress profile page"
3010
  msgstr "Pagina di profilo BuddyPress"
3011
 
3012
+ #: ../admin/social_login.php:1509 ../admin/social_login.php:1538
3013
  msgid "Custom Url"
3014
  msgstr "Url personalizzata"
3015
 
3016
+ #: ../admin/social_login.php:1517
3017
  msgid "User will be redirected to the selected page after Social Login"
3018
  msgstr ""
3019
  "L'utente sará reindirizzato alla pagina selezionata dopo il Social Login"
3020
 
3021
+ #: ../admin/social_login.php:1524
3022
  msgid "Registration redirection"
3023
  msgstr "Reindirizzamento Registratione"
3024
 
3025
+ #: ../admin/social_login.php:1528
3026
  msgid "Same page from where user registered"
3027
  msgstr "La stessa pagina dove l'utente si è registrato"
3028
 
3029
+ #: ../admin/social_login.php:1546
3030
  msgid ""
3031
  "User will be redirected to the selected page after registration (first "
3032
  "Social Login) through Social Login"
3034
  "L'utente sará reindirizzato alla pagina selezionata dopo la registrazione "
3035
  "(il primo Social Login) tramite il Social Login"
3036
 
3037
+ #: ../admin/social_login.php:1555
3038
  #, fuzzy
3039
  msgid "Social Account Linking Options"
3040
  msgstr "Collegamento Social Account"
3041
 
3042
+ #: ../admin/social_login.php:1570
3043
  #, fuzzy
3044
  msgid "Text to display above the Social Account Linking interface"
3045
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
3046
 
3047
+ #: ../admin/social_login.php:1577
3048
  #, fuzzy
3049
  msgid ""
3050
  "Link social account to already existing account, if email address matches"
3051
  msgstr ""
3052
  "Collega il tuo social account per accedere al tuo account su questo sito"
3053
 
3054
+ #: ../admin/social_login.php:1587
3055
  msgid ""
3056
  "If email address of the user's Social Account matches with an already "
3057
  "existing account at your website, that social account will be linked to "
3059
  "Linking interface at their profile page."
3060
  msgstr ""
3061
 
3062
+ #: ../admin/social_login.php:1595
3063
  msgid "Enable social account linking at BuddyPress profile page"
3064
  msgstr "Abilita collegamento social account nella pagina di profilo BuddyPress"
3065
 
3066
+ #: ../admin/social_login.php:1605
3067
  msgid ""
3068
  "Enable this option to show social account linking interface at BuddyPress "
3069
  "profile page"
3071
  "Attiva questa opzione per visualizzare l'interfaccia social account linking "
3072
  "nella pagina di profilo BuddyPress"
3073
 
3074
+ #: ../admin/social_login.php:1616
3075
  msgid "Email popup options"
3076
  msgstr "Opzioni del popup 'Email Obbligatoria'"
3077
 
3078
+ #: ../admin/social_login.php:1621
3079
  msgid "Text on 'Email required' popup"
3080
  msgstr "Testo del pop-up"
3081
 
3082
+ #: ../admin/social_login.php:1631
3083
  msgid ""
3084
  "This text will be displayed on email required popup. Leave empty if not "
3085
  "required."
3087
  "Questo é il testo che verrà mostrato nella finestra pop-up. Lasciare in "
3088
  "bianco se non si vuole utilizzare."
3089
 
3090
+ #: ../admin/social_login.php:1639
3091
  msgid "Error message for 'Email required' popup"
3092
  msgstr "Messaggio d'errore"
3093
 
3094
+ #: ../admin/social_login.php:1649
3095
  msgid ""
3096
  "This message will be displayed to user if it provides invalid or already "
3097
  "registered email"
3099
  "Questo é il testo che verrà mostrato all'utente nel caso inserisca un "
3100
  "indirizzo email non valido o già registrato."
3101
 
3102
+ #: ../admin/social_login.php:1657
3103
  msgid "Email popup height"
3104
  msgstr "Altezza pop-up Email"
3105
 
3106
+ #: ../admin/social_login.php:1667
3107
  msgid ""
3108
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
3109
  "can increase the height of popup by specifying in this option. Leave empty "
3113
  "Obbligatoria\", è possibile aumentare l'altezza del popup specificandolo in "
3114
  "questa opzione. Lasciare vuoto per l'impostazione predefinita."
3115
 
3116
+ #: ../admin/social_login.php:1674
3117
  msgid "Enable email verification"
3118
  msgstr "Abilita verifica email"
3119
 
3120
+ #: ../admin/social_login.php:1684
3121
  msgid ""
3122
  "If enabled, email provided by the user will be verified by sending a "
3123
  "confirmation link to that email. User would not be able to login without "
3127
  "verificato mediante l'invio di un link all' indirizzo e-mail specificato. "
3128
  "L'utente non potrà accedere senza aver effettuato la procedura di verifica."
3129
 
3130
+ #: ../admin/social_login.php:1704
3131
  #, fuzzy
3132
  msgid "Enable GDPR opt-in"
3133
  msgstr "Abilita Disqus Commenting"
3134
 
3135
+ #: ../admin/social_login.php:1714
3136
  msgid ""
3137
  "Enable it to show GDPR opt-in for social login and social account linking"
3138
  msgstr ""
3139
 
3140
+ #: ../admin/social_login.php:1722
3141
  #, fuzzy
3142
  msgid "Placement of GDPR opt-in"
3143
  msgstr "Abilita Disqus Commenting"
3144
 
3145
+ #: ../admin/social_login.php:1726
3146
  #, fuzzy
3147
  msgid "Above Social Login icons"
3148
  msgstr "Opzioni"
3149
 
3150
+ #: ../admin/social_login.php:1728
3151
  #, fuzzy
3152
  msgid "Below Social Login icons"
3153
  msgstr "Opzioni"
3154
 
3155
+ #: ../admin/social_login.php:1734
3156
  #, fuzzy
3157
  msgid "Placement of GDPR opt-in above or below the social login icons"
3158
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
3159
 
3160
+ #: ../admin/social_login.php:1741
3161
  msgid "Opt-in text"
3162
  msgstr ""
3163
 
3164
+ #: ../admin/social_login.php:1751
3165
  #, fuzzy
3166
  msgid "Text for the GDPR opt-in"
3167
  msgstr "Abilita Disqus Commenting"
3168
 
3169
+ #: ../admin/social_login.php:1758
3170
  msgid "Text to link to Terms-Conditions page"
3171
  msgstr ""
3172
 
3173
+ #: ../admin/social_login.php:1768
3174
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
3175
  msgstr ""
3176
 
3177
+ #: ../admin/social_login.php:1775
3178
  msgid "Terms-Conditions Url"
3179
  msgstr ""
3180
 
3181
+ #: ../admin/social_login.php:1785
3182
  #, fuzzy
3183
  msgid "Url of the terms-conditions page of your website"
3184
  msgstr "Url della homepage del tuo sito web"
3185
 
3186
+ #: ../admin/social_login.php:1792
3187
  msgid "Text to link to Privacy Policy page"
3188
  msgstr ""
3189
 
3190
+ #: ../admin/social_login.php:1802
3191
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
3192
  msgstr ""
3193
 
3194
+ #: ../admin/social_login.php:1809
3195
  msgid "Privacy Policy Url"
3196
  msgstr ""
3197
 
3198
+ #: ../admin/social_login.php:1819
3199
  #, fuzzy
3200
  msgid "Url of the privacy policy page of your website"
3201
  msgstr "Url della homepage del tuo sito web"
3202
 
3203
+ #: ../admin/social_login.php:1870 ../inc/widget.php:260 ../inc/widget.php:438
3204
  #: ../inc/widget.php:602 ../inc/widget.php:750
3205
  msgid "Select"
3206
  msgstr "Selezionare"
3207
 
3208
+ #: ../admin/social_login.php:1901
3209
  msgid "Social Login Shortcode & Widget"
3210
  msgstr "Shortcode & Widget"
3211
 
3212
+ #: ../admin/social_login.php:1902
3213
  msgid "Social Linking Shortcode"
3214
  msgstr "Social Linking Shortcode"
3215
 
3216
+ #: ../admin/social_login.php:1917
3217
  msgid "Why is social login not working?"
3218
  msgstr ""
3219
 
3220
+ #: ../admin/social_login.php:1918
3221
  msgid ""
3222
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3223
  "belong to the same app"
3224
  msgstr ""
3225
 
3226
+ #: ../admin/social_login.php:1920
3227
  msgid "Social Login not working with Varnish enabled"
3228
  msgstr ""
3229
 
3230
+ #: ../admin/social_login.php:1921
3231
  msgid ""
3232
  "Why the user is not appearing logged in even after Social Login until the "
3233
  "webpage is refreshed manually?"
3439
  msgid "Archives"
3440
  msgstr "Archivi di categorie"
3441
 
3442
+ #: ../inc/social_sharing.php:225
3443
+ msgid "More"
3444
+ msgstr ""
3445
+
3446
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3447
  msgid "Invalid request"
3448
  msgstr "Domanda non valida"
3451
  msgid "Providers not selected"
3452
  msgstr "Providers non selezionati"
3453
 
3454
+ #: ../inc/social_sharing_networks.php:57
3455
+ msgid "Copy Link"
3456
+ msgstr ""
3457
+
3458
+ #: ../inc/social_login.php:1030
3459
  msgid "Email"
3460
  msgstr "Email"
3461
 
3462
+ #: ../inc/social_login.php:1031
3463
  msgid "Confirm email"
3464
  msgstr "Conferma email"
3465
 
3466
+ #: ../inc/social_login.php:1033
3467
  msgid "Save"
3468
  msgstr "Salva"
3469
 
3470
+ #: ../inc/social_login.php:1034
3471
  msgid "Cancel"
3472
  msgstr "Cancella"
3473
 
3474
+ #: ../inc/social_login.php:1108
3475
  msgid "Email Verification"
3476
  msgstr "Abilita verifica email"
3477
 
3478
+ #: ../inc/social_login.php:1110
3479
  msgid ""
3480
  "Please click on the following link or paste it in browser to verify your "
3481
  "email"
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-01-27 15:37+0530\n"
6
- "PO-Revision-Date: 2021-01-27 15:37+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -15,7 +15,7 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../super_socializer.php:1570
19
  #, fuzzy
20
  msgid ""
21
  "cURL is not enabled at your website server. Please contact your website "
@@ -24,7 +24,7 @@ msgstr ""
24
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
25
  "que contatar o administrador do servidor do seu website para verificar isso."
26
 
27
- #: ../super_socializer.php:1598
28
  #, fuzzy, php-format
29
  msgid ""
30
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -34,7 +34,7 @@ msgstr ""
34
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
35
  "%s)"
36
 
37
- #: ../super_socializer.php:1601
38
  #, fuzzy, php-format
39
  msgid ""
40
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -44,7 +44,7 @@ msgstr ""
44
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
45
  "%s)"
46
 
47
- #: ../super_socializer.php:1604
48
  msgid ""
49
  "Make sure cURL is enabled at your website server. You may need to contact "
50
  "the server administrator of your website to verify this"
@@ -52,65 +52,69 @@ msgstr ""
52
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
53
  "que contatar o administrador do servidor do seu website para verificar isso."
54
 
55
- #: ../super_socializer.php:1786 ../helper.php:986
 
 
 
 
56
  msgid "Please verify your email address to login."
57
  msgstr "Por favor verifique seu endereço de email no login."
58
 
59
- #: ../super_socializer.php:1786
60
  msgid "Your email has been verified. Now you can login to your account"
61
  msgstr "Seu email foi verificado. Agora você pode fazer login na sua conta"
62
 
63
- #: ../super_socializer.php:1790
64
  msgid "Notification"
65
  msgstr "Notificaçao"
66
 
67
- #: ../super_socializer.php:1808 ../admin/social_login.php:1280
68
  msgid "Email required"
69
  msgstr "Necessário email"
70
 
71
- #: ../super_socializer.php:1811
72
  msgid "Please check your email inbox to complete the registration."
73
  msgstr "Por favor verifique sua caixa de email para completar o registro."
74
 
75
- #: ../super_socializer.php:1880
76
  msgid "Leave a reply"
77
  msgstr "Deixe uma resposta"
78
 
79
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
80
  msgid "Shares"
81
  msgstr ""
82
 
83
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
84
  msgid "Share"
85
  msgstr ""
86
 
87
- #: ../super_socializer.php:1896
88
  #, fuzzy
89
  msgid "Link copied."
90
  msgstr "LinkedIn"
91
 
92
- #: ../super_socializer.php:2141
93
  msgid "Super Socializer - General Options"
94
  msgstr "Super Socializer - Opções Gerais"
95
 
96
- #: ../super_socializer.php:2141 ../admin/general_options.php:15
97
  #: ../admin/social_commenting.php:47
98
  msgid "General Options"
99
  msgstr "Opções Gerais"
100
 
101
- #: ../super_socializer.php:2209 ../helper.php:915
102
  msgid "Social Avatar"
103
  msgstr "Avatar Social"
104
 
105
- #: ../super_socializer.php:2212
106
  msgid "Small Avatar Url"
107
  msgstr "Url para Avatar pequeno"
108
 
109
- #: ../super_socializer.php:2216
110
  msgid "Large Avatar Url"
111
  msgstr "Url para Avatar Grande"
112
 
113
- #: ../super_socializer.php:2220 ../helper.php:918
114
  msgid ""
115
  "Do not fetch and update social avatar from my profile, next time I Social "
116
  "Login"
@@ -118,73 +122,73 @@ msgstr ""
118
  "Não busque ou atualize o avatar social do meu perfil, na próxima vez farei a "
119
  "Autenticação Social"
120
 
121
- #: ../super_socializer.php:2224 ../helper.php:919
122
  msgid "Update social avatar, next time I Social Login"
123
  msgstr "Atualize o avatar social, na próxima vez farei a Autenticação Social"
124
 
125
- #: ../super_socializer.php:2301
126
  msgid "Login with your Social ID"
127
  msgstr ""
128
 
129
- #: ../super_socializer.php:2302
130
  msgid "Email you entered is already registered or invalid"
131
  msgstr "Email fornecido já está registrado ou é inválido"
132
 
133
- #: ../super_socializer.php:2309
134
  msgid "Please enter a valid email address. You might be required to verify it"
135
  msgstr ""
136
  "Por favor forneça um endereço de email válido. Você pode ser solicitado a "
137
  "confirmá-lo"
138
 
139
- #: ../super_socializer.php:2313 ../super_socializer.php:3039
140
  msgid "Link your social account to login to your account at this website"
141
  msgstr "Associe sua conta social ao login de sua conta neste website"
142
 
143
- #: ../super_socializer.php:2561
144
  msgid "Thanks for installing Super Socializer plugin"
145
  msgstr ""
146
 
147
- #: ../super_socializer.php:2563
148
  msgid "Configure the Plugin"
149
  msgstr ""
150
 
151
- #: ../super_socializer.php:2574
152
  msgid ""
153
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
154
  "current version of Super Socializer"
155
  msgstr ""
156
 
157
- #: ../super_socializer.php:2583
158
  msgid ""
159
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
160
  "version of Super Socializer"
161
  msgstr ""
162
 
163
- #: ../super_socializer.php:2592
164
  msgid ""
165
- "Update \"Social Login Buttons\" add-on to version 1.2.6 or above for "
166
  "compatibility with current version of Super Socializer"
167
  msgstr ""
168
 
169
- #: ../super_socializer.php:2601
170
  msgid ""
171
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
172
  "with current version of Super Socializer"
173
  msgstr ""
174
 
175
- #: ../super_socializer.php:2610
176
  msgid ""
177
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
178
  "with current version of Super Socializer"
179
  msgstr ""
180
 
181
- #: ../super_socializer.php:2621
182
  #, php-format
183
  msgid ""
184
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
185
  msgstr ""
186
 
187
- #: ../super_socializer.php:2630
188
  #, php-format
189
  msgid ""
190
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -192,7 +196,7 @@ msgid ""
192
  "Instagram App Secret <a href=\"%s\">here</a>"
193
  msgstr ""
194
 
195
- #: ../super_socializer.php:2639 ../super_socializer.php:2648
196
  #, php-format
197
  msgid ""
198
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -201,13 +205,13 @@ msgid ""
201
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
202
  msgstr ""
203
 
204
- #: ../super_socializer.php:2664
205
  #, php-format
206
  msgid ""
207
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
208
  msgstr ""
209
 
210
- #: ../super_socializer.php:2688
211
  #, php-format
212
  msgid ""
213
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -215,14 +219,14 @@ msgid ""
215
  "target=\"_blank\">here</a>"
216
  msgstr ""
217
 
218
- #: ../super_socializer.php:2688 ../super_socializer.php:2713
219
- #: ../super_socializer.php:2738 ../super_socializer.php:2763
220
- #: ../super_socializer.php:2796 ../super_socializer.php:2824
221
- #: ../super_socializer.php:2851
222
  msgid "Okay"
223
  msgstr ""
224
 
225
- #: ../super_socializer.php:2713
226
  #, php-format
227
  msgid ""
228
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -230,7 +234,7 @@ msgid ""
230
  "\">here</a>"
231
  msgstr ""
232
 
233
- #: ../super_socializer.php:2738
234
  #, php-format
235
  msgid ""
236
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -238,7 +242,7 @@ msgid ""
238
  "target=\"_blank\">here</a>"
239
  msgstr ""
240
 
241
- #: ../super_socializer.php:2763
242
  #, php-format
243
  msgid ""
244
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -246,13 +250,13 @@ msgid ""
246
  "target=\"_blank\">here</a>"
247
  msgstr ""
248
 
249
- #: ../super_socializer.php:2774
250
  #, php-format
251
  msgid ""
252
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
253
  msgstr ""
254
 
255
- #: ../super_socializer.php:2796
256
  #, php-format
257
  msgid ""
258
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -260,7 +264,7 @@ msgid ""
260
  "\"%s\" target=\"_blank\">here</a>"
261
  msgstr ""
262
 
263
- #: ../super_socializer.php:2824
264
  #, php-format
265
  msgid ""
266
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -269,7 +273,7 @@ msgid ""
269
  "your website %s with them. No need to copy-paste any code from their website."
270
  msgstr ""
271
 
272
- #: ../super_socializer.php:2851
273
  #, php-format
274
  msgid ""
275
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -277,7 +281,7 @@ msgid ""
277
  "\"%s\" target=\"_blank\">here</a>"
278
  msgstr ""
279
 
280
- #: ../super_socializer.php:2876
281
  #, php-format
282
  msgid ""
283
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -285,11 +289,11 @@ msgid ""
285
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
286
  msgstr ""
287
 
288
- #: ../super_socializer.php:2876 ../super_socializer.php:2903
289
  msgid "Dismiss"
290
  msgstr ""
291
 
292
- #: ../super_socializer.php:2902
293
  #, php-format
294
  msgid ""
295
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -298,7 +302,7 @@ msgid ""
298
  "that, clear share counts cache from \"Miscellaneous\" section"
299
  msgstr ""
300
 
301
- #: ../super_socializer.php:3115
302
  msgid ""
303
  "Your browser is blocking some features of this website. Please follow the "
304
  "instructions at {support_url} to unblock these."
@@ -308,121 +312,121 @@ msgstr ""
308
  msgid "Settings saved"
309
  msgstr "Configurações salvas"
310
 
311
- #: ../helper.php:185
312
  #, fuzzy
313
  msgid "Click to toggle help"
314
  msgstr "Click para esconder ajuda"
315
 
316
- #: ../helper.php:282
317
  #, fuzzy
318
  msgid "Add-Ons"
319
  msgstr "Outros Add-ons"
320
 
321
- #: ../helper.php:283
322
  msgid "Support Documentation"
323
  msgstr ""
324
 
325
- #: ../helper.php:284
326
  msgid "Settings"
327
  msgstr "Configurações"
328
 
329
- #: ../helper.php:567
330
  msgid "Account linked successfully"
331
  msgstr "Conta associada com sucesso"
332
 
333
- #: ../helper.php:571
334
  msgid "Account already exists or linked"
335
  msgstr "Conta já existente ou já está associada"
336
 
337
- #: ../helper.php:607 ../helper.php:609
338
  #, fuzzy
339
  msgid "Login with"
340
  msgstr "Opções de autenticação"
341
 
342
- #: ../helper.php:644 ../helper.php:650
343
  msgid "Currently"
344
  msgstr "Atualmente"
345
 
346
- #: ../helper.php:644 ../helper.php:650
347
  msgid "Connected with"
348
  msgstr ""
349
 
350
- #: ../helper.php:644 ../helper.php:650
351
  msgid "Remove"
352
  msgstr "Remover"
353
 
354
- #: ../helper.php:721
355
  #, fuzzy
356
  msgid "Social Account Linking"
357
  msgstr "Comentário Social"
358
 
359
- #: ../helper.php:771
360
  msgid "Disable Standard Social Sharing on this "
361
  msgstr "Desabilitar o compatilhamento social padrão neste(a) "
362
 
363
- #: ../helper.php:776
364
  msgid "Disable Floating Social Sharing on this "
365
  msgstr "Desabilitar o compartilhamento social flutuante neste(a) "
366
 
367
- #: ../helper.php:781
368
  msgid "Disable Standard like buttons on this "
369
  msgstr "Desabilitar o botão de like padrão neste(a) "
370
 
371
- #: ../helper.php:786
372
  msgid "Disable Floating like buttons on this "
373
  msgstr "Desabilitar o botão flutuante de like neste(a) "
374
 
375
- #: ../helper.php:791
376
  msgid "Disable Social Commenting on this "
377
  msgstr "Desabilitar o Comentário Social neste(a) "
378
 
379
- #: ../helper.php:800
380
  msgid "Standard Sharing Interface"
381
  msgstr "Interface Padrão de Compartilhamento"
382
 
383
- #: ../helper.php:806 ../helper.php:825
384
  msgid "Starting share count for "
385
  msgstr "Iniciando contagem compartilhada para "
386
 
387
- #: ../helper.php:819
388
  msgid "Floating Sharing Interface"
389
  msgstr "Interface de Compartilhamento Flutuante"
390
 
391
- #: ../helper.php:922
392
  msgid "Small Avatar"
393
  msgstr "Avatar Pequeno"
394
 
395
- #: ../helper.php:926
396
  msgid "Large Avatar"
397
  msgstr "Avatar Grande"
398
 
399
- #: ../helper.php:930 ../admin/general_options.php:89
400
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
401
- #: ../admin/social_login.php:1770 ../admin/like_buttons.php:780
402
  msgid "Save Changes"
403
  msgstr "Salvar Alterações"
404
 
405
- #: ../helper.php:1023
406
  msgid "Click to delete social profile data"
407
  msgstr ""
408
 
409
- #: ../helper.php:1052
410
  #, fuzzy
411
  msgid "Deleting"
412
  msgstr "Configurações"
413
 
414
- #: ../helper.php:1062
415
  msgid "Deleted"
416
  msgstr ""
417
 
418
- #: ../helper.php:1064
419
  msgid "Something bad happened"
420
  msgstr ""
421
 
422
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
423
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
424
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
425
- #: ../admin/social_login.php:5 ../admin/social_login.php:1774
426
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
427
  #, fuzzy, php-format
428
  msgid ""
@@ -478,14 +482,14 @@ msgstr ""
478
  "style&gt; )"
479
 
480
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
481
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1780
482
  #: ../admin/like_buttons.php:790
483
  #, fuzzy
484
  msgid "Instagram Shoutout"
485
  msgstr "Instagram"
486
 
487
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
488
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1782
489
  #: ../admin/like_buttons.php:792
490
  msgid ""
491
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -628,7 +632,7 @@ msgstr ""
628
 
629
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
630
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
631
- #: ../admin/social_login.php:1736 ../admin/like_buttons.php:50
632
  #: ../admin/like_buttons.php:751
633
  msgid "Shortcode & Widget"
634
  msgstr "Shortcode & Widget"
@@ -639,7 +643,7 @@ msgstr "Resolução de Problemas"
639
 
640
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
641
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
642
- #: ../admin/social_login.php:46 ../admin/social_login.php:1750
643
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
644
  msgid "FAQ"
645
  msgstr "P&R"
@@ -872,8 +876,8 @@ msgstr "Url personalizada"
872
  msgid "Url to share"
873
  msgstr "Url para compartilhar"
874
 
875
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:1021
876
- #: ../admin/social_login.php:1397 ../admin/like_buttons.php:105
877
  #: ../inc/widget.php:949
878
  msgid "Title"
879
  msgstr "Título"
@@ -962,7 +966,7 @@ msgid "Placement"
962
  msgstr "Localização"
963
 
964
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
965
- #: ../admin/social_login.php:1338 ../admin/social_login.php:1367
966
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
967
  msgid "Homepage"
968
  msgstr "Homepage"
@@ -1241,7 +1245,7 @@ msgstr ""
1241
  msgid "Required only to track Facebook share count"
1242
  msgstr ""
1243
 
1244
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:193
1245
  msgid "Facebook App ID"
1246
  msgstr "Facebook App ID"
1247
 
@@ -1255,7 +1259,7 @@ msgstr ""
1255
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1256
  "para obter o Facebook App ID"
1257
 
1258
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:214
1259
  #, fuzzy
1260
  msgid "Facebook App Secret"
1261
  msgstr "Facebook App ID"
@@ -1446,7 +1450,7 @@ msgstr ""
1446
  "website:"
1447
 
1448
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1449
- #: ../admin/social_login.php:1752
1450
  msgid ""
1451
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1452
  "an online website for the plugin to function properly."
@@ -1503,7 +1507,7 @@ msgid ""
1503
  msgstr ""
1504
 
1505
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1506
- #: ../admin/social_login.php:1759
1507
  msgid "Why is my browser blocking some features of the plugin?"
1508
  msgstr ""
1509
 
@@ -1827,11 +1831,11 @@ msgstr "Configuração Básica"
1827
  msgid "Advanced Configuration"
1828
  msgstr "Configuração Básica"
1829
 
1830
- #: ../admin/social_login.php:41 ../admin/social_login.php:1536
1831
  msgid "GDPR"
1832
  msgstr ""
1833
 
1834
- #: ../admin/social_login.php:43 ../admin/social_login.php:1687
1835
  msgid "XProfile Integration"
1836
  msgstr ""
1837
 
@@ -1864,98 +1868,125 @@ msgstr ""
1864
 
1865
  #: ../admin/social_login.php:98
1866
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1867
  msgid "Select Social Networks"
1868
  msgstr "como rede social primária"
1869
 
1870
- #: ../admin/social_login.php:103
1871
  msgid "Facebook"
1872
  msgstr "Facebook"
1873
 
1874
- #: ../admin/social_login.php:107
1875
  msgid "Twitter"
1876
  msgstr "Twitter"
1877
 
1878
- #: ../admin/social_login.php:111
1879
  msgid "LinkedIn"
1880
  msgstr "LinkedIn"
1881
 
1882
- #: ../admin/social_login.php:115
1883
  #, fuzzy
1884
  msgid "Google"
1885
  msgstr "Google+"
1886
 
1887
- #: ../admin/social_login.php:119
1888
  msgid "Vkontakte"
1889
  msgstr "Vkontakte"
1890
 
1891
- #: ../admin/social_login.php:123
1892
  msgid "Instagram"
1893
  msgstr "Instagram"
1894
 
1895
- #: ../admin/social_login.php:127
1896
  msgid "Steam"
1897
  msgstr ""
1898
 
1899
- #: ../admin/social_login.php:131
1900
  msgid "Line"
1901
  msgstr ""
1902
 
1903
- #: ../admin/social_login.php:135
1904
  msgid "Wordpress"
1905
  msgstr ""
1906
 
1907
- #: ../admin/social_login.php:139
1908
  msgid "Windows Live"
1909
  msgstr ""
1910
 
1911
- #: ../admin/social_login.php:143
1912
  msgid "Yahoo"
1913
  msgstr ""
1914
 
1915
- #: ../admin/social_login.php:147
 
 
 
 
 
 
 
 
 
 
 
 
1916
  msgid "Spotify"
1917
  msgstr ""
1918
 
1919
- #: ../admin/social_login.php:150
1920
  msgid "Dribbble"
1921
  msgstr ""
1922
 
1923
- #: ../admin/social_login.php:154
1924
  #, fuzzy
1925
  msgid "Twitch"
1926
  msgstr "Twitter"
1927
 
1928
- #: ../admin/social_login.php:158
1929
  #, fuzzy
1930
  msgid "Foursquare"
1931
  msgstr "Quadrada"
1932
 
1933
- #: ../admin/social_login.php:162
1934
  msgid "Dropbox"
1935
  msgstr ""
1936
 
1937
- #: ../admin/social_login.php:166
1938
  msgid "Disqus"
1939
  msgstr ""
1940
 
1941
- #: ../admin/social_login.php:170
1942
  msgid "Reddit"
1943
  msgstr ""
1944
 
1945
- #: ../admin/social_login.php:174
1946
  msgid "Github"
1947
  msgstr ""
1948
 
1949
- #: ../admin/social_login.php:178
1950
  msgid "Kakao"
1951
  msgstr ""
1952
 
1953
- #: ../admin/social_login.php:186
1954
  msgid "Select Social ID provider to enable in Social Login"
1955
  msgstr ""
1956
  "Selecione o provedor Social pelo seu ID para habilitar a autenticação social"
1957
 
1958
- #: ../admin/social_login.php:203
1959
  #, php-format
1960
  msgid ""
1961
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1965,14 +1996,14 @@ msgstr ""
1965
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1966
  "para obter o Facebook App ID"
1967
 
1968
- #: ../admin/social_login.php:205 ../admin/social_login.php:226
1969
  #, fuzzy
1970
  msgid ""
1971
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1972
  msgstr ""
1973
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
1974
 
1975
- #: ../admin/social_login.php:224
1976
  #, fuzzy, php-format
1977
  msgid ""
1978
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1982,11 +2013,11 @@ msgstr ""
1982
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1983
  "para obter o Facebook App ID"
1984
 
1985
- #: ../admin/social_login.php:235
1986
  msgid "Twitter API Key"
1987
  msgstr "Twitter API Key"
1988
 
1989
- #: ../admin/social_login.php:245
1990
  #, php-format
1991
  msgid ""
1992
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1996,20 +2027,20 @@ msgstr ""
1996
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link link</a> "
1997
  "para obter Twitter API Key"
1998
 
1999
- #: ../admin/social_login.php:247 ../admin/social_login.php:272
2000
  #, fuzzy
2001
  msgid ""
2002
  "Paste following url in <strong>Website</strong> option mentioned at the link"
2003
  msgstr ""
2004
  "Cole na opção da url em <strong>Website URL</strong> no link mencionado"
2005
 
2006
- #: ../admin/social_login.php:251 ../admin/social_login.php:276
2007
- #: ../admin/social_login.php:464 ../admin/social_login.php:484
2008
- #: ../admin/social_login.php:685 ../admin/social_login.php:705
2009
- #: ../admin/social_login.php:726 ../admin/social_login.php:746
2010
- #: ../admin/social_login.php:851 ../admin/social_login.php:871
2011
- #: ../admin/social_login.php:936 ../admin/social_login.php:956
2012
- #: ../admin/social_login.php:978 ../admin/social_login.php:998
2013
  #, fuzzy
2014
  msgid ""
2015
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -2018,11 +2049,11 @@ msgstr ""
2018
  "Cole a seguinte opção de url <strong>Callback domain</strong> para o link "
2019
  "mencionado"
2020
 
2021
- #: ../admin/social_login.php:260
2022
  msgid "Twitter API Secret"
2023
  msgstr "Segredo API Twitter"
2024
 
2025
- #: ../admin/social_login.php:270
2026
  #, php-format
2027
  msgid ""
2028
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -2032,12 +2063,12 @@ msgstr ""
2032
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2033
  "obter o segredo da API Twitter"
2034
 
2035
- #: ../admin/social_login.php:285
2036
  #, fuzzy
2037
  msgid "LinkedIn Client ID"
2038
  msgstr "LinkedIn"
2039
 
2040
- #: ../admin/social_login.php:295
2041
  #, fuzzy, php-format
2042
  msgid ""
2043
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2047,8 +2078,8 @@ msgstr ""
2047
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2048
  "obeter API Key do LinkedIn"
2049
 
2050
- #: ../admin/social_login.php:297 ../admin/social_login.php:318
2051
- #: ../admin/social_login.php:504 ../admin/social_login.php:524
2052
  #, fuzzy
2053
  msgid ""
2054
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -2056,12 +2087,12 @@ msgid ""
2056
  msgstr ""
2057
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2058
 
2059
- #: ../admin/social_login.php:306
2060
  #, fuzzy
2061
  msgid "LinkedIn Client Secret"
2062
  msgstr "LinkedIn"
2063
 
2064
- #: ../admin/social_login.php:316
2065
  #, fuzzy, php-format
2066
  msgid ""
2067
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2072,12 +2103,12 @@ msgstr ""
2072
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2073
  "obeter API Key do LinkedIn"
2074
 
2075
- #: ../admin/social_login.php:327
2076
  #, fuzzy
2077
  msgid "Google Client ID"
2078
  msgstr "Google+ Client ID"
2079
 
2080
- #: ../admin/social_login.php:337
2081
  #, fuzzy, php-format
2082
  msgid ""
2083
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2087,7 +2118,7 @@ msgstr ""
2087
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2088
  "obter o GooglePlus Client ID"
2089
 
2090
- #: ../admin/social_login.php:339 ../admin/social_login.php:360
2091
  #, fuzzy
2092
  msgid ""
2093
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2095,12 +2126,12 @@ msgid ""
2095
  msgstr ""
2096
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2097
 
2098
- #: ../admin/social_login.php:348
2099
  #, fuzzy
2100
  msgid "Google Client Secret"
2101
  msgstr "Google+ Client ID"
2102
 
2103
- #: ../admin/social_login.php:358
2104
  #, fuzzy, php-format
2105
  msgid ""
2106
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2110,11 +2141,11 @@ msgstr ""
2110
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2111
  "obter o GooglePlus Client ID"
2112
 
2113
- #: ../admin/social_login.php:369
2114
  msgid "Vkontakte Application ID"
2115
  msgstr "Vkontakte Application ID"
2116
 
2117
- #: ../admin/social_login.php:379 ../admin/social_login.php:400
2118
  #, php-format
2119
  msgid ""
2120
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2125,7 +2156,7 @@ msgstr ""
2125
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2126
  "obter Vkontakte Application ID"
2127
 
2128
- #: ../admin/social_login.php:381 ../admin/social_login.php:402
2129
  #, fuzzy
2130
  msgid ""
2131
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2133,17 +2164,17 @@ msgid ""
2133
  msgstr ""
2134
  "Cole a seguinte url em <strong>Site address</strong> no link mencionado"
2135
 
2136
- #: ../admin/social_login.php:390
2137
  #, fuzzy
2138
  msgid "Vkontakte Secure key"
2139
  msgstr "Vkontakte"
2140
 
2141
- #: ../admin/social_login.php:411
2142
  #, fuzzy
2143
  msgid "Instagram App ID"
2144
  msgstr "Instagram Client ID"
2145
 
2146
- #: ../admin/social_login.php:421
2147
  #, fuzzy, php-format
2148
  msgid ""
2149
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2153,7 +2184,7 @@ msgstr ""
2153
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2154
  "obter Instagram Client ID"
2155
 
2156
- #: ../admin/social_login.php:423 ../admin/social_login.php:444
2157
  #, fuzzy
2158
  msgid ""
2159
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2161,12 +2192,12 @@ msgid ""
2161
  msgstr ""
2162
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2163
 
2164
- #: ../admin/social_login.php:432
2165
  #, fuzzy
2166
  msgid "Instagram App Secret"
2167
  msgstr "Instagram"
2168
 
2169
- #: ../admin/social_login.php:442
2170
  #, fuzzy, php-format
2171
  msgid ""
2172
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2176,11 +2207,11 @@ msgstr ""
2176
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2177
  "obter Instagram Client ID"
2178
 
2179
- #: ../admin/social_login.php:453
2180
  msgid "Line Channel ID"
2181
  msgstr ""
2182
 
2183
- #: ../admin/social_login.php:462
2184
  #, fuzzy, php-format
2185
  msgid ""
2186
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2190,12 +2221,12 @@ msgstr ""
2190
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2191
  "obeter API Key do LinkedIn"
2192
 
2193
- #: ../admin/social_login.php:473
2194
  #, fuzzy
2195
  msgid "Line Channel Secret"
2196
  msgstr "LinkedIn"
2197
 
2198
- #: ../admin/social_login.php:482
2199
  #, fuzzy, php-format
2200
  msgid ""
2201
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2205,12 +2236,12 @@ msgstr ""
2205
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2206
  "obeter API Key do LinkedIn"
2207
 
2208
- #: ../admin/social_login.php:493
2209
  #, fuzzy
2210
  msgid "Wordpress Client ID"
2211
  msgstr "Google+ Client ID"
2212
 
2213
- #: ../admin/social_login.php:502
2214
  #, fuzzy, php-format
2215
  msgid ""
2216
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2220,12 +2251,12 @@ msgstr ""
2220
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2221
  "obter o GooglePlus Client ID"
2222
 
2223
- #: ../admin/social_login.php:513
2224
  #, fuzzy
2225
  msgid "Wordpress Client Secret"
2226
  msgstr "Google+ Client ID"
2227
 
2228
- #: ../admin/social_login.php:522
2229
  #, fuzzy, php-format
2230
  msgid ""
2231
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2236,12 +2267,12 @@ msgstr ""
2236
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2237
  "obter o GooglePlus Client ID"
2238
 
2239
- #: ../admin/social_login.php:533
2240
  #, fuzzy
2241
  msgid "Microsoft Client ID"
2242
  msgstr "Google+ Client ID"
2243
 
2244
- #: ../admin/social_login.php:542
2245
  #, fuzzy, php-format
2246
  msgid ""
2247
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2251,9 +2282,9 @@ msgstr ""
2251
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2252
  "obter o GooglePlus Client ID"
2253
 
2254
- #: ../admin/social_login.php:544 ../admin/social_login.php:564
2255
- #: ../admin/social_login.php:643 ../admin/social_login.php:663
2256
- #: ../admin/social_login.php:808 ../admin/social_login.php:828
2257
  #, fuzzy
2258
  msgid ""
2259
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2261,12 +2292,12 @@ msgid ""
2261
  msgstr ""
2262
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2263
 
2264
- #: ../admin/social_login.php:553
2265
  #, fuzzy
2266
  msgid "Microsoft Client Secret"
2267
  msgstr "Google+ Client ID"
2268
 
2269
- #: ../admin/social_login.php:562
2270
  #, fuzzy, php-format
2271
  msgid ""
2272
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2277,12 +2308,12 @@ msgstr ""
2277
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2278
  "obter o GooglePlus Client ID"
2279
 
2280
- #: ../admin/social_login.php:572
2281
  #, fuzzy
2282
  msgid "Steam API Key"
2283
  msgstr "Twitter API Key"
2284
 
2285
- #: ../admin/social_login.php:581
2286
  #, fuzzy, php-format
2287
  msgid ""
2288
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2292,19 +2323,19 @@ msgstr ""
2292
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link link</a> "
2293
  "para obter Twitter API Key"
2294
 
2295
- #: ../admin/social_login.php:582
2296
  #, fuzzy
2297
  msgid "Save following <strong>domain</strong> to get the key"
2298
  msgstr ""
2299
  "Cole a seguinte opção de url <strong>Callback domain</strong> para o link "
2300
  "mencionado"
2301
 
2302
- #: ../admin/social_login.php:591
2303
  #, fuzzy
2304
  msgid "Yahoo Client ID"
2305
  msgstr "Google+ Client ID"
2306
 
2307
- #: ../admin/social_login.php:600
2308
  #, fuzzy, php-format
2309
  msgid ""
2310
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2314,20 +2345,20 @@ msgstr ""
2314
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2315
  "obter o GooglePlus Client ID"
2316
 
2317
- #: ../admin/social_login.php:602 ../admin/social_login.php:622
2318
  #, fuzzy
2319
  msgid ""
2320
- "Paste following url in <strong>Redirect URI(s)</strong> option mentioned at "
2321
- "the link"
2322
  msgstr ""
2323
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2324
 
2325
- #: ../admin/social_login.php:611
2326
  #, fuzzy
2327
  msgid "Yahoo Client Secret"
2328
  msgstr "Google+ Client ID"
2329
 
2330
- #: ../admin/social_login.php:620
2331
  #, fuzzy, php-format
2332
  msgid ""
2333
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2337,12 +2368,137 @@ msgstr ""
2337
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2338
  "obter o GooglePlus Client ID"
2339
 
2340
- #: ../admin/social_login.php:632
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2341
  #, fuzzy
2342
  msgid "Spotify Client ID"
2343
  msgstr "Google+ Client ID"
2344
 
2345
- #: ../admin/social_login.php:641
2346
  #, fuzzy, php-format
2347
  msgid ""
2348
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2352,12 +2508,12 @@ msgstr ""
2352
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2353
  "obter o GooglePlus Client ID"
2354
 
2355
- #: ../admin/social_login.php:652
2356
  #, fuzzy
2357
  msgid "Spotify Client Secret"
2358
  msgstr "Google+ Client ID"
2359
 
2360
- #: ../admin/social_login.php:661
2361
  #, fuzzy, php-format
2362
  msgid ""
2363
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2368,12 +2524,12 @@ msgstr ""
2368
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2369
  "obter o GooglePlus Client ID"
2370
 
2371
- #: ../admin/social_login.php:674
2372
  #, fuzzy
2373
  msgid "Dribbble Client ID"
2374
  msgstr "Google+ Client ID"
2375
 
2376
- #: ../admin/social_login.php:683
2377
  #, fuzzy, php-format
2378
  msgid ""
2379
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2383,12 +2539,12 @@ msgstr ""
2383
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2384
  "obter o GooglePlus Client ID"
2385
 
2386
- #: ../admin/social_login.php:694
2387
  #, fuzzy
2388
  msgid "Dribbble Client Secret"
2389
  msgstr "Google+ Client ID"
2390
 
2391
- #: ../admin/social_login.php:703
2392
  #, fuzzy, php-format
2393
  msgid ""
2394
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2399,12 +2555,12 @@ msgstr ""
2399
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2400
  "obter o GooglePlus Client ID"
2401
 
2402
- #: ../admin/social_login.php:715
2403
  #, fuzzy
2404
  msgid "Twitch Client ID"
2405
  msgstr "Instagram Client ID"
2406
 
2407
- #: ../admin/social_login.php:724
2408
  #, fuzzy, php-format
2409
  msgid ""
2410
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2414,12 +2570,12 @@ msgstr ""
2414
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2415
  "obter o GooglePlus Client ID"
2416
 
2417
- #: ../admin/social_login.php:735
2418
  #, fuzzy
2419
  msgid "Twitch Client Secret"
2420
  msgstr "Instagram Client ID"
2421
 
2422
- #: ../admin/social_login.php:744
2423
  #, fuzzy, php-format
2424
  msgid ""
2425
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2429,12 +2585,12 @@ msgstr ""
2429
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2430
  "obter o GooglePlus Client ID"
2431
 
2432
- #: ../admin/social_login.php:757
2433
  #, fuzzy
2434
  msgid "Foursquare Client ID"
2435
  msgstr "Google+ Client ID"
2436
 
2437
- #: ../admin/social_login.php:766
2438
  #, fuzzy, php-format
2439
  msgid ""
2440
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2445,7 +2601,7 @@ msgstr ""
2445
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2446
  "obter o GooglePlus Client ID"
2447
 
2448
- #: ../admin/social_login.php:768 ../admin/social_login.php:788
2449
  #, fuzzy
2450
  msgid ""
2451
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
@@ -2453,12 +2609,12 @@ msgid ""
2453
  msgstr ""
2454
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2455
 
2456
- #: ../admin/social_login.php:777
2457
  #, fuzzy
2458
  msgid "Foursquare Client Secret"
2459
  msgstr "Google+ Client ID"
2460
 
2461
- #: ../admin/social_login.php:786
2462
  #, fuzzy, php-format
2463
  msgid ""
2464
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2469,11 +2625,11 @@ msgstr ""
2469
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2470
  "obter o GooglePlus Client ID"
2471
 
2472
- #: ../admin/social_login.php:797
2473
  msgid "Dropbox App Key"
2474
  msgstr ""
2475
 
2476
- #: ../admin/social_login.php:806
2477
  #, fuzzy, php-format
2478
  msgid ""
2479
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2483,12 +2639,12 @@ msgstr ""
2483
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
2484
  "para obter o Facebook App ID"
2485
 
2486
- #: ../admin/social_login.php:817
2487
  #, fuzzy
2488
  msgid "Dropbox App Secret"
2489
  msgstr "Facebook App ID"
2490
 
2491
- #: ../admin/social_login.php:826
2492
  #, fuzzy, php-format
2493
  msgid ""
2494
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2498,11 +2654,11 @@ msgstr ""
2498
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
2499
  "para obter o Facebook App ID"
2500
 
2501
- #: ../admin/social_login.php:840
2502
  msgid "Disqus Public Key"
2503
  msgstr ""
2504
 
2505
- #: ../admin/social_login.php:849
2506
  #, fuzzy, php-format
2507
  msgid ""
2508
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2512,12 +2668,12 @@ msgstr ""
2512
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2513
  "obter Xing Consumer Key"
2514
 
2515
- #: ../admin/social_login.php:860
2516
  #, fuzzy
2517
  msgid "Disqus Secret Key"
2518
  msgstr "Disqus Shortname"
2519
 
2520
- #: ../admin/social_login.php:869
2521
  #, fuzzy, php-format
2522
  msgid ""
2523
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2527,12 +2683,12 @@ msgstr ""
2527
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2528
  "obter Xing Consumer Key"
2529
 
2530
- #: ../admin/social_login.php:882
2531
  #, fuzzy
2532
  msgid "Reddit Client ID"
2533
  msgstr "Instagram Client ID"
2534
 
2535
- #: ../admin/social_login.php:891
2536
  #, fuzzy, php-format
2537
  msgid ""
2538
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2542,7 +2698,7 @@ msgstr ""
2542
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2543
  "obter o GooglePlus Client ID"
2544
 
2545
- #: ../admin/social_login.php:893 ../admin/social_login.php:913
2546
  #, fuzzy
2547
  msgid ""
2548
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
@@ -2550,12 +2706,12 @@ msgid ""
2550
  msgstr ""
2551
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2552
 
2553
- #: ../admin/social_login.php:902
2554
  #, fuzzy
2555
  msgid "Reddit Client Secret"
2556
  msgstr "Instagram Client ID"
2557
 
2558
- #: ../admin/social_login.php:911
2559
  #, fuzzy, php-format
2560
  msgid ""
2561
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2565,12 +2721,12 @@ msgstr ""
2565
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2566
  "obter o GooglePlus Client ID"
2567
 
2568
- #: ../admin/social_login.php:925
2569
  #, fuzzy
2570
  msgid "Github Client ID"
2571
  msgstr "Instagram Client ID"
2572
 
2573
- #: ../admin/social_login.php:934
2574
  #, fuzzy, php-format
2575
  msgid ""
2576
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2580,12 +2736,12 @@ msgstr ""
2580
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2581
  "obter o GooglePlus Client ID"
2582
 
2583
- #: ../admin/social_login.php:945
2584
  #, fuzzy
2585
  msgid "Github Client Secret"
2586
  msgstr "Instagram Client ID"
2587
 
2588
- #: ../admin/social_login.php:954
2589
  #, fuzzy, php-format
2590
  msgid ""
2591
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2595,12 +2751,12 @@ msgstr ""
2595
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2596
  "obter o GooglePlus Client ID"
2597
 
2598
- #: ../admin/social_login.php:967
2599
  #, fuzzy
2600
  msgid "Kakao Client ID"
2601
  msgstr "Google+ Client ID"
2602
 
2603
- #: ../admin/social_login.php:976
2604
  #, fuzzy, php-format
2605
  msgid ""
2606
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2610,12 +2766,12 @@ msgstr ""
2610
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2611
  "obter o GooglePlus Client ID"
2612
 
2613
- #: ../admin/social_login.php:987
2614
  #, fuzzy
2615
  msgid "Kakao Client Secret"
2616
  msgstr "Google+ Client ID"
2617
 
2618
- #: ../admin/social_login.php:996
2619
  #, fuzzy, php-format
2620
  msgid ""
2621
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2625,49 +2781,49 @@ msgstr ""
2625
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2626
  "obter o GooglePlus Client ID"
2627
 
2628
- #: ../admin/social_login.php:1016
2629
  #, fuzzy
2630
  msgid "Social Login Options"
2631
  msgstr "Autenticação Social"
2632
 
2633
- #: ../admin/social_login.php:1031
2634
  msgid "Text to display above the Social Login interface"
2635
  msgstr "Texto exibido acima da interface de Autenticação Social"
2636
 
2637
- #: ../admin/social_login.php:1039
2638
  msgid "Trigger social login in the same browser tab"
2639
  msgstr ""
2640
 
2641
- #: ../admin/social_login.php:1049
2642
  msgid "Trigger social login in the same browser tab instead of a popup window"
2643
  msgstr ""
2644
 
2645
- #: ../admin/social_login.php:1056
2646
  #, fuzzy
2647
  msgid "Center align icons"
2648
  msgstr "Rearranjar ícones"
2649
 
2650
- #: ../admin/social_login.php:1066
2651
  #, fuzzy
2652
  msgid "Center align social login icons"
2653
  msgstr "Autenticação Social"
2654
 
2655
- #: ../admin/social_login.php:1073
2656
  msgid "Enable at login page"
2657
  msgstr "Habilia a página de autenticação"
2658
 
2659
- #: ../admin/social_login.php:1083
2660
  msgid ""
2661
  "Social Login interface will get enabled at the login page of your website"
2662
  msgstr ""
2663
  "Interface de Autenticação Social será habilitada na página de autenticação "
2664
  "do seu website"
2665
 
2666
- #: ../admin/social_login.php:1090
2667
  msgid "Enable at register page"
2668
  msgstr "Habilitar página de registro"
2669
 
2670
- #: ../admin/social_login.php:1100
2671
  msgid ""
2672
  "Social Login interface will get enabled at the registration page of your "
2673
  "website"
@@ -2675,21 +2831,21 @@ msgstr ""
2675
  "Interface de Autenticação Social será habilitada na página de registro de "
2676
  "seu website"
2677
 
2678
- #: ../admin/social_login.php:1107
2679
  msgid "Enable at comment form"
2680
  msgstr "Habilitar no formulário de comentário"
2681
 
2682
- #: ../admin/social_login.php:1117
2683
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2684
  msgstr ""
2685
  "Interface de Autenticação Social será habilitada em seu formulário de "
2686
  "comentários Wordpress"
2687
 
2688
- #: ../admin/social_login.php:1131
2689
  msgid "Enable before WooCommerce Customer Login Form"
2690
  msgstr "Habilido antes do formulário de autenticação do WooCommerce"
2691
 
2692
- #: ../admin/social_login.php:1141
2693
  msgid ""
2694
  "Social Login Interface will get enabled before the customer login form at "
2695
  "WooCommerce My Account page"
@@ -2697,13 +2853,13 @@ msgstr ""
2697
  "Interface de Autenticação Social será habilitada antes do formulário de "
2698
  "autenticação de cliente na página Minha Conta do WooCommerce"
2699
 
2700
- #: ../admin/social_login.php:1148
2701
  #, fuzzy
2702
  msgid "Enable at WooCommerce Customer Login Form"
2703
  msgstr ""
2704
  "Habilitado depois do Formulário de Autenticação do Cliente do WooCommerce"
2705
 
2706
- #: ../admin/social_login.php:1158
2707
  #, fuzzy
2708
  msgid ""
2709
  "Integrate Social Login Interface with the customer login form at WooCommerce "
@@ -2712,13 +2868,13 @@ msgstr ""
2712
  "Interface de Autenticação Social será habilitada depois do formulário de "
2713
  "autenticação de cliente na página Minha Conta do WooCommerce"
2714
 
2715
- #: ../admin/social_login.php:1165
2716
  #, fuzzy
2717
  msgid "Enable at WooCommerce Customer Register Form"
2718
  msgstr ""
2719
  "Habilitado depois do Formulário de Autenticação do Cliente do WooCommerce"
2720
 
2721
- #: ../admin/social_login.php:1175
2722
  #, fuzzy
2723
  msgid ""
2724
  "Integrate Social Login Interface with the customer register form at "
@@ -2727,22 +2883,22 @@ msgstr ""
2727
  "Interface de Autenticação Social será habilitada depois do formulário de "
2728
  "autenticação de cliente na página Minha Conta do WooCommerce"
2729
 
2730
- #: ../admin/social_login.php:1182
2731
  msgid "Enable at WooCommerce checkout page"
2732
  msgstr "Habilitado na página de checkout do WooCommerce"
2733
 
2734
- #: ../admin/social_login.php:1192
2735
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2736
  msgstr ""
2737
  "Interface de Autenticação Social será habilitada página de checkout do "
2738
  "WooCommerce"
2739
 
2740
- #: ../admin/social_login.php:1202
2741
  msgid "Auto-approve comments made by Social Login users"
2742
  msgstr ""
2743
  "Aprovação automática de comentários feito pelo usuário de Autenticação Social"
2744
 
2745
- #: ../admin/social_login.php:1212
2746
  msgid ""
2747
  "If this option is enabled, and WordPress comment is made by Social Login "
2748
  "user, comment will get approved immediately without keeping in moderation."
@@ -2751,15 +2907,15 @@ msgstr ""
2751
  "usuário de Autenticação social, o comentário será aprovado imediatamente sem "
2752
  "considerações de moderação."
2753
 
2754
- #: ../admin/social_login.php:1213
2755
  msgid "Note: This is not related to Facebook comments"
2756
  msgstr "Note: Isto não está relacionado com comentários do Facebook"
2757
 
2758
- #: ../admin/social_login.php:1222
2759
  msgid "Enable social avatar"
2760
  msgstr "Habilitar o avatar social"
2761
 
2762
- #: ../admin/social_login.php:1232
2763
  msgid ""
2764
  "Social profile pictures of the logged in user will be displayed as profile "
2765
  "avatar"
@@ -2767,30 +2923,30 @@ msgstr ""
2767
  "Fotogragia do perfil social do usuário autenticado será exibido como avatar "
2768
  "do perfil"
2769
 
2770
- #: ../admin/social_login.php:1241
2771
  msgid "Avatar quality"
2772
  msgstr "Qualidade do Avatar"
2773
 
2774
- #: ../admin/social_login.php:1244
2775
  msgid "Average"
2776
  msgstr "Média"
2777
 
2778
- #: ../admin/social_login.php:1245
2779
  msgid "Best"
2780
  msgstr "Melhor"
2781
 
2782
- #: ../admin/social_login.php:1252
2783
  msgid "Choose avatar quality"
2784
  msgstr "Escolha a qualidade do avatar"
2785
 
2786
- #: ../admin/social_login.php:1260
2787
  msgid ""
2788
  "Show option for users to update social avatar at BuddyPress profile page"
2789
  msgstr ""
2790
  "Exibir opção para os usuários atualizarem o avatar social na página do "
2791
  "perfil do BuddyPress"
2792
 
2793
- #: ../admin/social_login.php:1270
2794
  msgid ""
2795
  "If enabled, users would be able to update their social avatar from \"Profile "
2796
  "photo\" section in BuddyPress profile at front-end"
@@ -2798,7 +2954,7 @@ msgstr ""
2798
  "Se habilitado, usuários serão capazes de atualizar seus avatar social pela "
2799
  "seção \\\"Foto do perfil\\\" no front-end do perfil BuddyPress"
2800
 
2801
- #: ../admin/social_login.php:1290
2802
  msgid ""
2803
  "If enabled and Social ID provider does not provide user's email address on "
2804
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2808,11 +2964,11 @@ msgstr ""
2808
  "usuário na autenticação, ao usuário será solicitado fornecer seu endereço de "
2809
  "email. Do contrário, um email postiço será gerado"
2810
 
2811
- #: ../admin/social_login.php:1298
2812
  msgid "Send post-registration email to user to set account password"
2813
  msgstr ""
2814
 
2815
- #: ../admin/social_login.php:1308
2816
  msgid ""
2817
  "If enabled, an email will be sent to user after registration through Social "
2818
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2822,12 +2978,12 @@ msgstr ""
2822
  "Social, com respeito as credecial do usuário para autenticação (username-"
2823
  "senha para possibilitar a autenticação via formulário tradicional)"
2824
 
2825
- #: ../admin/social_login.php:1315
2826
  #, fuzzy
2827
  msgid "Send new user registration notification email to admin"
2828
  msgstr "Desabilitar o registro de usuários via Autenticação Social"
2829
 
2830
- #: ../admin/social_login.php:1325
2831
  #, fuzzy
2832
  msgid ""
2833
  "If enabled, an email will be sent to admin after new user registers through "
@@ -2837,40 +2993,40 @@ msgstr ""
2837
  "Social, com respeito as credecial do usuário para autenticação (username-"
2838
  "senha para possibilitar a autenticação via formulário tradicional)"
2839
 
2840
- #: ../admin/social_login.php:1332
2841
  msgid "Login redirection"
2842
  msgstr "Redireção de autenticação"
2843
 
2844
- #: ../admin/social_login.php:1336
2845
  msgid "Same page where user logged in"
2846
  msgstr "Mesma página onde o usuário autenticou-se"
2847
 
2848
- #: ../admin/social_login.php:1340 ../admin/social_login.php:1369
2849
  msgid "Account dashboard"
2850
  msgstr "Painel da Conta"
2851
 
2852
- #: ../admin/social_login.php:1343 ../admin/social_login.php:1372
2853
  msgid "BuddyPress profile page"
2854
  msgstr "Página de perfil BuddyPress"
2855
 
2856
- #: ../admin/social_login.php:1346 ../admin/social_login.php:1375
2857
  msgid "Custom Url"
2858
  msgstr "Url Personalizada"
2859
 
2860
- #: ../admin/social_login.php:1354
2861
  msgid "User will be redirected to the selected page after Social Login"
2862
  msgstr ""
2863
  "O usuário será redirecionado para a página selcionada de Autenticação Soocial"
2864
 
2865
- #: ../admin/social_login.php:1361
2866
  msgid "Registration redirection"
2867
  msgstr "Redirecionamento de registro"
2868
 
2869
- #: ../admin/social_login.php:1365
2870
  msgid "Same page from where user registered"
2871
  msgstr "Mesma página de onde o usuário se registrou"
2872
 
2873
- #: ../admin/social_login.php:1383
2874
  msgid ""
2875
  "User will be redirected to the selected page after registration (first "
2876
  "Social Login) through Social Login"
@@ -2878,23 +3034,23 @@ msgstr ""
2878
  "O usuário será redirecionado para a página selecionada após o registro "
2879
  "(primeira Autenticação Social) através da Autenticação Social"
2880
 
2881
- #: ../admin/social_login.php:1392
2882
  #, fuzzy
2883
  msgid "Social Account Linking Options"
2884
  msgstr "Comentário Social"
2885
 
2886
- #: ../admin/social_login.php:1407
2887
  #, fuzzy
2888
  msgid "Text to display above the Social Account Linking interface"
2889
  msgstr "Texto exibido acima da interface de Autenticação Social"
2890
 
2891
- #: ../admin/social_login.php:1414
2892
  #, fuzzy
2893
  msgid ""
2894
  "Link social account to already existing account, if email address matches"
2895
  msgstr "Associe sua conta social ao login de sua conta neste website"
2896
 
2897
- #: ../admin/social_login.php:1424
2898
  msgid ""
2899
  "If email address of the user's Social Account matches with an already "
2900
  "existing account at your website, that social account will be linked to "
@@ -2902,11 +3058,11 @@ msgid ""
2902
  "Linking interface at their profile page."
2903
  msgstr ""
2904
 
2905
- #: ../admin/social_login.php:1432
2906
  msgid "Enable social account linking at BuddyPress profile page"
2907
  msgstr "Habilitar conta social associada à página de perfil no BuddyPress"
2908
 
2909
- #: ../admin/social_login.php:1442
2910
  msgid ""
2911
  "Enable this option to show social account linking interface at BuddyPress "
2912
  "profile page"
@@ -2914,15 +3070,15 @@ msgstr ""
2914
  "Habilitar estar opção para exibir a conta social associada a página de "
2915
  "interface de perfil do BuddyPress"
2916
 
2917
- #: ../admin/social_login.php:1453
2918
  msgid "Email popup options"
2919
  msgstr "Opções de popup de email"
2920
 
2921
- #: ../admin/social_login.php:1458
2922
  msgid "Text on 'Email required' popup"
2923
  msgstr "Texto popup de 'Email requerido'"
2924
 
2925
- #: ../admin/social_login.php:1468
2926
  msgid ""
2927
  "This text will be displayed on email required popup. Leave empty if not "
2928
  "required."
@@ -2930,11 +3086,11 @@ msgstr ""
2930
  "Este texto será exibido no popup de requisição de email. Deixe em branco se "
2931
  "o email não for requerido."
2932
 
2933
- #: ../admin/social_login.php:1476
2934
  msgid "Error message for 'Email required' popup"
2935
  msgstr "Mensagem de erro para popup de 'Email requerido'"
2936
 
2937
- #: ../admin/social_login.php:1486
2938
  msgid ""
2939
  "This message will be displayed to user if it provides invalid or already "
2940
  "registered email"
@@ -2942,11 +3098,11 @@ msgstr ""
2942
  "Esta mensagem será exibida para o usuário se ele fornecer um email inválido "
2943
  "ou já registrado"
2944
 
2945
- #: ../admin/social_login.php:1494
2946
  msgid "Email popup height"
2947
  msgstr "Altura do popup de email"
2948
 
2949
- #: ../admin/social_login.php:1504
2950
  msgid ""
2951
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2952
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2956,11 +3112,11 @@ msgstr ""
2956
  "requirido\\\", você pode incrementar a altura do popup através de "
2957
  "especificação nesta opção. Deixe vazio para padrão."
2958
 
2959
- #: ../admin/social_login.php:1511
2960
  msgid "Enable email verification"
2961
  msgstr "Habilitar verificação de email"
2962
 
2963
- #: ../admin/social_login.php:1521
2964
  msgid ""
2965
  "If enabled, email provided by the user will be verified by sending a "
2966
  "confirmation link to that email. User would not be able to login without "
@@ -2970,107 +3126,107 @@ msgstr ""
2970
  "um link de confirmação para aquele email. O usuário não poderá se autenticar "
2971
  "antes de validar seu email"
2972
 
2973
- #: ../admin/social_login.php:1541
2974
  #, fuzzy
2975
  msgid "Enable GDPR opt-in"
2976
  msgstr "Habilitar comentário Disqus"
2977
 
2978
- #: ../admin/social_login.php:1551
2979
  msgid ""
2980
  "Enable it to show GDPR opt-in for social login and social account linking"
2981
  msgstr ""
2982
 
2983
- #: ../admin/social_login.php:1559
2984
  #, fuzzy
2985
  msgid "Placement of GDPR opt-in"
2986
  msgstr "Habilitar comentário Disqus"
2987
 
2988
- #: ../admin/social_login.php:1563
2989
  #, fuzzy
2990
  msgid "Above Social Login icons"
2991
  msgstr "Autenticação Social"
2992
 
2993
- #: ../admin/social_login.php:1565
2994
  #, fuzzy
2995
  msgid "Below Social Login icons"
2996
  msgstr "Autenticação Social"
2997
 
2998
- #: ../admin/social_login.php:1571
2999
  #, fuzzy
3000
  msgid "Placement of GDPR opt-in above or below the social login icons"
3001
  msgstr "Texto exibido acima da interface de Autenticação Social"
3002
 
3003
- #: ../admin/social_login.php:1578
3004
  msgid "Opt-in text"
3005
  msgstr ""
3006
 
3007
- #: ../admin/social_login.php:1588
3008
  #, fuzzy
3009
  msgid "Text for the GDPR opt-in"
3010
  msgstr "Habilitar comentário Disqus"
3011
 
3012
- #: ../admin/social_login.php:1595
3013
  msgid "Text to link to Terms-Conditions page"
3014
  msgstr ""
3015
 
3016
- #: ../admin/social_login.php:1605
3017
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
3018
  msgstr ""
3019
 
3020
- #: ../admin/social_login.php:1612
3021
  msgid "Terms-Conditions Url"
3022
  msgstr ""
3023
 
3024
- #: ../admin/social_login.php:1622
3025
  #, fuzzy
3026
  msgid "Url of the terms-conditions page of your website"
3027
  msgstr "Url da homepage do seu website"
3028
 
3029
- #: ../admin/social_login.php:1629
3030
  msgid "Text to link to Privacy Policy page"
3031
  msgstr ""
3032
 
3033
- #: ../admin/social_login.php:1639
3034
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
3035
  msgstr ""
3036
 
3037
- #: ../admin/social_login.php:1646
3038
  msgid "Privacy Policy Url"
3039
  msgstr ""
3040
 
3041
- #: ../admin/social_login.php:1656
3042
  #, fuzzy
3043
  msgid "Url of the privacy policy page of your website"
3044
  msgstr "Url da homepage do seu website"
3045
 
3046
- #: ../admin/social_login.php:1707 ../inc/widget.php:260 ../inc/widget.php:438
3047
  #: ../inc/widget.php:602 ../inc/widget.php:750
3048
  msgid "Select"
3049
  msgstr "Selecione"
3050
 
3051
- #: ../admin/social_login.php:1738
3052
  msgid "Social Login Shortcode & Widget"
3053
  msgstr "Autenticação Social Shortcode & Widget"
3054
 
3055
- #: ../admin/social_login.php:1739
3056
  msgid "Social Linking Shortcode"
3057
  msgstr "Shortcode de associação Social"
3058
 
3059
- #: ../admin/social_login.php:1754
3060
  msgid "Why is social login not working?"
3061
  msgstr ""
3062
 
3063
- #: ../admin/social_login.php:1755
3064
  msgid ""
3065
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3066
  "belong to the same app"
3067
  msgstr ""
3068
 
3069
- #: ../admin/social_login.php:1757
3070
  msgid "Social Login not working with Varnish enabled"
3071
  msgstr ""
3072
 
3073
- #: ../admin/social_login.php:1758
3074
  msgid ""
3075
  "Why the user is not appearing logged in even after Social Login until the "
3076
  "webpage is refreshed manually?"
@@ -3279,6 +3435,10 @@ msgstr ""
3279
  msgid "Archives"
3280
  msgstr "Arquivos de Categorias"
3281
 
 
 
 
 
3282
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3283
  msgid "Invalid request"
3284
  msgstr "Requisição inválida"
@@ -3287,28 +3447,32 @@ msgstr "Requisição inválida"
3287
  msgid "Providers not selected"
3288
  msgstr "Provedor não selecionado"
3289
 
3290
- #: ../inc/social_login.php:968
 
 
 
 
3291
  msgid "Email"
3292
  msgstr ""
3293
 
3294
- #: ../inc/social_login.php:969
3295
  msgid "Confirm email"
3296
  msgstr ""
3297
 
3298
- #: ../inc/social_login.php:971
3299
  msgid "Save"
3300
  msgstr ""
3301
 
3302
- #: ../inc/social_login.php:972
3303
  msgid "Cancel"
3304
  msgstr ""
3305
 
3306
- #: ../inc/social_login.php:1046
3307
  #, fuzzy
3308
  msgid "Email Verification"
3309
  msgstr "Habilitar verificação de email"
3310
 
3311
- #: ../inc/social_login.php:1048
3312
  msgid ""
3313
  "Please click on the following link or paste it in browser to verify your "
3314
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-06 12:20+0530\n"
6
+ "PO-Revision-Date: 2021-04-06 12:20+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../super_socializer.php:1634
19
  #, fuzzy
20
  msgid ""
21
  "cURL is not enabled at your website server. Please contact your website "
24
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
25
  "que contatar o administrador do servidor do seu website para verificar isso."
26
 
27
+ #: ../super_socializer.php:1662
28
  #, fuzzy, php-format
29
  msgid ""
30
  "Enter exactly the following url in <strong>Website</strong> option in your "
34
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
35
  "%s)"
36
 
37
+ #: ../super_socializer.php:1665
38
  #, fuzzy, php-format
39
  msgid ""
40
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
44
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
45
  "%s)"
46
 
47
+ #: ../super_socializer.php:1668
48
  msgid ""
49
  "Make sure cURL is enabled at your website server. You may need to contact "
50
  "the server administrator of your website to verify this"
52
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
53
  "que contatar o administrador do servidor do seu website para verificar isso."
54
 
55
+ #: ../super_socializer.php:1829
56
+ msgid "Search"
57
+ msgstr ""
58
+
59
+ #: ../super_socializer.php:1851 ../helper.php:995
60
  msgid "Please verify your email address to login."
61
  msgstr "Por favor verifique seu endereço de email no login."
62
 
63
+ #: ../super_socializer.php:1851
64
  msgid "Your email has been verified. Now you can login to your account"
65
  msgstr "Seu email foi verificado. Agora você pode fazer login na sua conta"
66
 
67
+ #: ../super_socializer.php:1855
68
  msgid "Notification"
69
  msgstr "Notificaçao"
70
 
71
+ #: ../super_socializer.php:1873 ../admin/social_login.php:1443
72
  msgid "Email required"
73
  msgstr "Necessário email"
74
 
75
+ #: ../super_socializer.php:1876
76
  msgid "Please check your email inbox to complete the registration."
77
  msgstr "Por favor verifique sua caixa de email para completar o registro."
78
 
79
+ #: ../super_socializer.php:1945
80
  msgid "Leave a reply"
81
  msgstr "Deixe uma resposta"
82
 
83
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
84
  msgid "Shares"
85
  msgstr ""
86
 
87
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
88
  msgid "Share"
89
  msgstr ""
90
 
91
+ #: ../super_socializer.php:1961
92
  #, fuzzy
93
  msgid "Link copied."
94
  msgstr "LinkedIn"
95
 
96
+ #: ../super_socializer.php:2206
97
  msgid "Super Socializer - General Options"
98
  msgstr "Super Socializer - Opções Gerais"
99
 
100
+ #: ../super_socializer.php:2206 ../admin/general_options.php:15
101
  #: ../admin/social_commenting.php:47
102
  msgid "General Options"
103
  msgstr "Opções Gerais"
104
 
105
+ #: ../super_socializer.php:2274 ../helper.php:924
106
  msgid "Social Avatar"
107
  msgstr "Avatar Social"
108
 
109
+ #: ../super_socializer.php:2277
110
  msgid "Small Avatar Url"
111
  msgstr "Url para Avatar pequeno"
112
 
113
+ #: ../super_socializer.php:2281
114
  msgid "Large Avatar Url"
115
  msgstr "Url para Avatar Grande"
116
 
117
+ #: ../super_socializer.php:2285 ../helper.php:927
118
  msgid ""
119
  "Do not fetch and update social avatar from my profile, next time I Social "
120
  "Login"
122
  "Não busque ou atualize o avatar social do meu perfil, na próxima vez farei a "
123
  "Autenticação Social"
124
 
125
+ #: ../super_socializer.php:2289 ../helper.php:928
126
  msgid "Update social avatar, next time I Social Login"
127
  msgstr "Atualize o avatar social, na próxima vez farei a Autenticação Social"
128
 
129
+ #: ../super_socializer.php:2366
130
  msgid "Login with your Social ID"
131
  msgstr ""
132
 
133
+ #: ../super_socializer.php:2367
134
  msgid "Email you entered is already registered or invalid"
135
  msgstr "Email fornecido já está registrado ou é inválido"
136
 
137
+ #: ../super_socializer.php:2374
138
  msgid "Please enter a valid email address. You might be required to verify it"
139
  msgstr ""
140
  "Por favor forneça um endereço de email válido. Você pode ser solicitado a "
141
  "confirmá-lo"
142
 
143
+ #: ../super_socializer.php:2378 ../super_socializer.php:3123
144
  msgid "Link your social account to login to your account at this website"
145
  msgstr "Associe sua conta social ao login de sua conta neste website"
146
 
147
+ #: ../super_socializer.php:2633
148
  msgid "Thanks for installing Super Socializer plugin"
149
  msgstr ""
150
 
151
+ #: ../super_socializer.php:2635
152
  msgid "Configure the Plugin"
153
  msgstr ""
154
 
155
+ #: ../super_socializer.php:2646
156
  msgid ""
157
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
158
  "current version of Super Socializer"
159
  msgstr ""
160
 
161
+ #: ../super_socializer.php:2655
162
  msgid ""
163
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
164
  "version of Super Socializer"
165
  msgstr ""
166
 
167
+ #: ../super_socializer.php:2664
168
  msgid ""
169
+ "Update \"Social Login Buttons\" add-on to version 1.2.7 or above for "
170
  "compatibility with current version of Super Socializer"
171
  msgstr ""
172
 
173
+ #: ../super_socializer.php:2673
174
  msgid ""
175
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
176
  "with current version of Super Socializer"
177
  msgstr ""
178
 
179
+ #: ../super_socializer.php:2682
180
  msgid ""
181
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
182
  "with current version of Super Socializer"
183
  msgstr ""
184
 
185
+ #: ../super_socializer.php:2693
186
  #, php-format
187
  msgid ""
188
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
189
  msgstr ""
190
 
191
+ #: ../super_socializer.php:2702
192
  #, php-format
193
  msgid ""
194
  "To continue using Instagram login create a new Instagram App as described <a "
196
  "Instagram App Secret <a href=\"%s\">here</a>"
197
  msgstr ""
198
 
199
+ #: ../super_socializer.php:2711 ../super_socializer.php:2720
200
  #, php-format
201
  msgid ""
202
  "To continue using bitly url shortener, login to your bit.ly account and "
205
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
206
  msgstr ""
207
 
208
+ #: ../super_socializer.php:2736
209
  #, php-format
210
  msgid ""
211
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
212
  msgstr ""
213
 
214
+ #: ../super_socializer.php:2760
215
  #, php-format
216
  msgid ""
217
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
219
  "target=\"_blank\">here</a>"
220
  msgstr ""
221
 
222
+ #: ../super_socializer.php:2760 ../super_socializer.php:2785
223
+ #: ../super_socializer.php:2810 ../super_socializer.php:2835
224
+ #: ../super_socializer.php:2868 ../super_socializer.php:2896
225
+ #: ../super_socializer.php:2923
226
  msgid "Okay"
227
  msgstr ""
228
 
229
+ #: ../super_socializer.php:2785
230
  #, php-format
231
  msgid ""
232
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
234
  "\">here</a>"
235
  msgstr ""
236
 
237
+ #: ../super_socializer.php:2810
238
  #, php-format
239
  msgid ""
240
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
242
  "target=\"_blank\">here</a>"
243
  msgstr ""
244
 
245
+ #: ../super_socializer.php:2835
246
  #, php-format
247
  msgid ""
248
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
250
  "target=\"_blank\">here</a>"
251
  msgstr ""
252
 
253
+ #: ../super_socializer.php:2846
254
  #, php-format
255
  msgid ""
256
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
257
  msgstr ""
258
 
259
+ #: ../super_socializer.php:2868
260
  #, php-format
261
  msgid ""
262
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
264
  "\"%s\" target=\"_blank\">here</a>"
265
  msgstr ""
266
 
267
+ #: ../super_socializer.php:2896
268
  #, php-format
269
  msgid ""
270
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
273
  "your website %s with them. No need to copy-paste any code from their website."
274
  msgstr ""
275
 
276
+ #: ../super_socializer.php:2923
277
  #, php-format
278
  msgid ""
279
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
281
  "\"%s\" target=\"_blank\">here</a>"
282
  msgstr ""
283
 
284
+ #: ../super_socializer.php:2948
285
  #, php-format
286
  msgid ""
287
  "If you cannot get Linkedin login to work after updating the plugin, replace "
289
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
290
  msgstr ""
291
 
292
+ #: ../super_socializer.php:2948 ../super_socializer.php:2975
293
  msgid "Dismiss"
294
  msgstr ""
295
 
296
+ #: ../super_socializer.php:2974
297
  #, php-format
298
  msgid ""
299
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
302
  "that, clear share counts cache from \"Miscellaneous\" section"
303
  msgstr ""
304
 
305
+ #: ../super_socializer.php:3199
306
  msgid ""
307
  "Your browser is blocking some features of this website. Please follow the "
308
  "instructions at {support_url} to unblock these."
312
  msgid "Settings saved"
313
  msgstr "Configurações salvas"
314
 
315
+ #: ../helper.php:194
316
  #, fuzzy
317
  msgid "Click to toggle help"
318
  msgstr "Click para esconder ajuda"
319
 
320
+ #: ../helper.php:291
321
  #, fuzzy
322
  msgid "Add-Ons"
323
  msgstr "Outros Add-ons"
324
 
325
+ #: ../helper.php:292
326
  msgid "Support Documentation"
327
  msgstr ""
328
 
329
+ #: ../helper.php:293
330
  msgid "Settings"
331
  msgstr "Configurações"
332
 
333
+ #: ../helper.php:576
334
  msgid "Account linked successfully"
335
  msgstr "Conta associada com sucesso"
336
 
337
+ #: ../helper.php:580
338
  msgid "Account already exists or linked"
339
  msgstr "Conta já existente ou já está associada"
340
 
341
+ #: ../helper.php:616 ../helper.php:618
342
  #, fuzzy
343
  msgid "Login with"
344
  msgstr "Opções de autenticação"
345
 
346
+ #: ../helper.php:653 ../helper.php:659
347
  msgid "Currently"
348
  msgstr "Atualmente"
349
 
350
+ #: ../helper.php:653 ../helper.php:659
351
  msgid "Connected with"
352
  msgstr ""
353
 
354
+ #: ../helper.php:653 ../helper.php:659
355
  msgid "Remove"
356
  msgstr "Remover"
357
 
358
+ #: ../helper.php:730
359
  #, fuzzy
360
  msgid "Social Account Linking"
361
  msgstr "Comentário Social"
362
 
363
+ #: ../helper.php:780
364
  msgid "Disable Standard Social Sharing on this "
365
  msgstr "Desabilitar o compatilhamento social padrão neste(a) "
366
 
367
+ #: ../helper.php:785
368
  msgid "Disable Floating Social Sharing on this "
369
  msgstr "Desabilitar o compartilhamento social flutuante neste(a) "
370
 
371
+ #: ../helper.php:790
372
  msgid "Disable Standard like buttons on this "
373
  msgstr "Desabilitar o botão de like padrão neste(a) "
374
 
375
+ #: ../helper.php:795
376
  msgid "Disable Floating like buttons on this "
377
  msgstr "Desabilitar o botão flutuante de like neste(a) "
378
 
379
+ #: ../helper.php:800
380
  msgid "Disable Social Commenting on this "
381
  msgstr "Desabilitar o Comentário Social neste(a) "
382
 
383
+ #: ../helper.php:809
384
  msgid "Standard Sharing Interface"
385
  msgstr "Interface Padrão de Compartilhamento"
386
 
387
+ #: ../helper.php:815 ../helper.php:834
388
  msgid "Starting share count for "
389
  msgstr "Iniciando contagem compartilhada para "
390
 
391
+ #: ../helper.php:828
392
  msgid "Floating Sharing Interface"
393
  msgstr "Interface de Compartilhamento Flutuante"
394
 
395
+ #: ../helper.php:931
396
  msgid "Small Avatar"
397
  msgstr "Avatar Pequeno"
398
 
399
+ #: ../helper.php:935
400
  msgid "Large Avatar"
401
  msgstr "Avatar Grande"
402
 
403
+ #: ../helper.php:939 ../admin/general_options.php:89
404
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
405
+ #: ../admin/social_login.php:1933 ../admin/like_buttons.php:780
406
  msgid "Save Changes"
407
  msgstr "Salvar Alterações"
408
 
409
+ #: ../helper.php:1032
410
  msgid "Click to delete social profile data"
411
  msgstr ""
412
 
413
+ #: ../helper.php:1061
414
  #, fuzzy
415
  msgid "Deleting"
416
  msgstr "Configurações"
417
 
418
+ #: ../helper.php:1071
419
  msgid "Deleted"
420
  msgstr ""
421
 
422
+ #: ../helper.php:1073
423
  msgid "Something bad happened"
424
  msgstr ""
425
 
426
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
427
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
428
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
429
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1937
430
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
431
  #, fuzzy, php-format
432
  msgid ""
482
  "style&gt; )"
483
 
484
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
485
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1943
486
  #: ../admin/like_buttons.php:790
487
  #, fuzzy
488
  msgid "Instagram Shoutout"
489
  msgstr "Instagram"
490
 
491
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
492
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1945
493
  #: ../admin/like_buttons.php:792
494
  msgid ""
495
  "If you can send (to hello@heateor.com) how this plugin is helping your "
632
 
633
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
634
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
635
+ #: ../admin/social_login.php:1899 ../admin/like_buttons.php:50
636
  #: ../admin/like_buttons.php:751
637
  msgid "Shortcode & Widget"
638
  msgstr "Shortcode & Widget"
643
 
644
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
645
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
646
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1913
647
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
648
  msgid "FAQ"
649
  msgstr "P&R"
876
  msgid "Url to share"
877
  msgstr "Url para compartilhar"
878
 
879
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:1184
880
+ #: ../admin/social_login.php:1560 ../admin/like_buttons.php:105
881
  #: ../inc/widget.php:949
882
  msgid "Title"
883
  msgstr "Título"
966
  msgstr "Localização"
967
 
968
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
969
+ #: ../admin/social_login.php:1501 ../admin/social_login.php:1530
970
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
971
  msgid "Homepage"
972
  msgstr "Homepage"
1245
  msgid "Required only to track Facebook share count"
1246
  msgstr ""
1247
 
1248
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:222
1249
  msgid "Facebook App ID"
1250
  msgstr "Facebook App ID"
1251
 
1259
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1260
  "para obter o Facebook App ID"
1261
 
1262
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:243
1263
  #, fuzzy
1264
  msgid "Facebook App Secret"
1265
  msgstr "Facebook App ID"
1450
  "website:"
1451
 
1452
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1453
+ #: ../admin/social_login.php:1915
1454
  msgid ""
1455
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1456
  "an online website for the plugin to function properly."
1507
  msgstr ""
1508
 
1509
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1510
+ #: ../admin/social_login.php:1922
1511
  msgid "Why is my browser blocking some features of the plugin?"
1512
  msgstr ""
1513
 
1831
  msgid "Advanced Configuration"
1832
  msgstr "Configuração Básica"
1833
 
1834
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1699
1835
  msgid "GDPR"
1836
  msgstr ""
1837
 
1838
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1850
1839
  msgid "XProfile Integration"
1840
  msgstr ""
1841
 
1868
 
1869
  #: ../admin/social_login.php:98
1870
  #, fuzzy
1871
+ msgid "Disable Social Login for admin accounts"
1872
+ msgstr "Autenticação Social"
1873
+
1874
+ #: ../admin/social_login.php:108
1875
+ #, fuzzy
1876
+ msgid ""
1877
+ "After enabling this option, administrator users will not be able to login "
1878
+ "through social login. Other users will be able to login via social login."
1879
+ msgstr ""
1880
+ "Após habilitar esta opção, novos usuários não serão mais aptos a se "
1881
+ "autenticar através da autenticação social. Apenas usuários existentes "
1882
+ "estarão habilitados para autenticação social."
1883
+
1884
+ #: ../admin/social_login.php:115
1885
+ #, fuzzy
1886
  msgid "Select Social Networks"
1887
  msgstr "como rede social primária"
1888
 
1889
+ #: ../admin/social_login.php:120
1890
  msgid "Facebook"
1891
  msgstr "Facebook"
1892
 
1893
+ #: ../admin/social_login.php:124
1894
  msgid "Twitter"
1895
  msgstr "Twitter"
1896
 
1897
+ #: ../admin/social_login.php:128
1898
  msgid "LinkedIn"
1899
  msgstr "LinkedIn"
1900
 
1901
+ #: ../admin/social_login.php:132
1902
  #, fuzzy
1903
  msgid "Google"
1904
  msgstr "Google+"
1905
 
1906
+ #: ../admin/social_login.php:136
1907
  msgid "Vkontakte"
1908
  msgstr "Vkontakte"
1909
 
1910
+ #: ../admin/social_login.php:140
1911
  msgid "Instagram"
1912
  msgstr "Instagram"
1913
 
1914
+ #: ../admin/social_login.php:144
1915
  msgid "Steam"
1916
  msgstr ""
1917
 
1918
+ #: ../admin/social_login.php:148
1919
  msgid "Line"
1920
  msgstr ""
1921
 
1922
+ #: ../admin/social_login.php:152
1923
  msgid "Wordpress"
1924
  msgstr ""
1925
 
1926
+ #: ../admin/social_login.php:156
1927
  msgid "Windows Live"
1928
  msgstr ""
1929
 
1930
+ #: ../admin/social_login.php:160
1931
  msgid "Yahoo"
1932
  msgstr ""
1933
 
1934
+ #: ../admin/social_login.php:164
1935
+ msgid "Discord"
1936
+ msgstr ""
1937
+
1938
+ #: ../admin/social_login.php:168
1939
+ msgid "Amazon"
1940
+ msgstr ""
1941
+
1942
+ #: ../admin/social_login.php:172
1943
+ msgid "Stackoverflow"
1944
+ msgstr ""
1945
+
1946
+ #: ../admin/social_login.php:176
1947
  msgid "Spotify"
1948
  msgstr ""
1949
 
1950
+ #: ../admin/social_login.php:179
1951
  msgid "Dribbble"
1952
  msgstr ""
1953
 
1954
+ #: ../admin/social_login.php:183
1955
  #, fuzzy
1956
  msgid "Twitch"
1957
  msgstr "Twitter"
1958
 
1959
+ #: ../admin/social_login.php:187
1960
  #, fuzzy
1961
  msgid "Foursquare"
1962
  msgstr "Quadrada"
1963
 
1964
+ #: ../admin/social_login.php:191
1965
  msgid "Dropbox"
1966
  msgstr ""
1967
 
1968
+ #: ../admin/social_login.php:195
1969
  msgid "Disqus"
1970
  msgstr ""
1971
 
1972
+ #: ../admin/social_login.php:199
1973
  msgid "Reddit"
1974
  msgstr ""
1975
 
1976
+ #: ../admin/social_login.php:203
1977
  msgid "Github"
1978
  msgstr ""
1979
 
1980
+ #: ../admin/social_login.php:207
1981
  msgid "Kakao"
1982
  msgstr ""
1983
 
1984
+ #: ../admin/social_login.php:215
1985
  msgid "Select Social ID provider to enable in Social Login"
1986
  msgstr ""
1987
  "Selecione o provedor Social pelo seu ID para habilitar a autenticação social"
1988
 
1989
+ #: ../admin/social_login.php:232
1990
  #, php-format
1991
  msgid ""
1992
  "Required for Facebook Social Login to work. Please follow the documentation "
1996
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1997
  "para obter o Facebook App ID"
1998
 
1999
+ #: ../admin/social_login.php:234 ../admin/social_login.php:255
2000
  #, fuzzy
2001
  msgid ""
2002
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
2003
  msgstr ""
2004
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2005
 
2006
+ #: ../admin/social_login.php:253
2007
  #, fuzzy, php-format
2008
  msgid ""
2009
  "Required for Facebook Social Login to work. Please follow the documentation "
2013
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
2014
  "para obter o Facebook App ID"
2015
 
2016
+ #: ../admin/social_login.php:264
2017
  msgid "Twitter API Key"
2018
  msgstr "Twitter API Key"
2019
 
2020
+ #: ../admin/social_login.php:274
2021
  #, php-format
2022
  msgid ""
2023
  "Required for Twitter Social Login to work. Please follow the documentation "
2027
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link link</a> "
2028
  "para obter Twitter API Key"
2029
 
2030
+ #: ../admin/social_login.php:276 ../admin/social_login.php:301
2031
  #, fuzzy
2032
  msgid ""
2033
  "Paste following url in <strong>Website</strong> option mentioned at the link"
2034
  msgstr ""
2035
  "Cole na opção da url em <strong>Website URL</strong> no link mencionado"
2036
 
2037
+ #: ../admin/social_login.php:280 ../admin/social_login.php:305
2038
+ #: ../admin/social_login.php:493 ../admin/social_login.php:513
2039
+ #: ../admin/social_login.php:848 ../admin/social_login.php:868
2040
+ #: ../admin/social_login.php:889 ../admin/social_login.php:909
2041
+ #: ../admin/social_login.php:1014 ../admin/social_login.php:1034
2042
+ #: ../admin/social_login.php:1099 ../admin/social_login.php:1119
2043
+ #: ../admin/social_login.php:1141 ../admin/social_login.php:1161
2044
  #, fuzzy
2045
  msgid ""
2046
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
2049
  "Cole a seguinte opção de url <strong>Callback domain</strong> para o link "
2050
  "mencionado"
2051
 
2052
+ #: ../admin/social_login.php:289
2053
  msgid "Twitter API Secret"
2054
  msgstr "Segredo API Twitter"
2055
 
2056
+ #: ../admin/social_login.php:299
2057
  #, php-format
2058
  msgid ""
2059
  "Required for Twitter Social Login to work. Please follow the documentation "
2063
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2064
  "obter o segredo da API Twitter"
2065
 
2066
+ #: ../admin/social_login.php:314
2067
  #, fuzzy
2068
  msgid "LinkedIn Client ID"
2069
  msgstr "LinkedIn"
2070
 
2071
+ #: ../admin/social_login.php:324
2072
  #, fuzzy, php-format
2073
  msgid ""
2074
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2078
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2079
  "obeter API Key do LinkedIn"
2080
 
2081
+ #: ../admin/social_login.php:326 ../admin/social_login.php:347
2082
+ #: ../admin/social_login.php:533 ../admin/social_login.php:553
2083
  #, fuzzy
2084
  msgid ""
2085
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2087
  msgstr ""
2088
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2089
 
2090
+ #: ../admin/social_login.php:335
2091
  #, fuzzy
2092
  msgid "LinkedIn Client Secret"
2093
  msgstr "LinkedIn"
2094
 
2095
+ #: ../admin/social_login.php:345
2096
  #, fuzzy, php-format
2097
  msgid ""
2098
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2103
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2104
  "obeter API Key do LinkedIn"
2105
 
2106
+ #: ../admin/social_login.php:356
2107
  #, fuzzy
2108
  msgid "Google Client ID"
2109
  msgstr "Google+ Client ID"
2110
 
2111
+ #: ../admin/social_login.php:366
2112
  #, fuzzy, php-format
2113
  msgid ""
2114
  "Required for Google Social Login to work. Please follow the documentation at "
2118
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2119
  "obter o GooglePlus Client ID"
2120
 
2121
+ #: ../admin/social_login.php:368 ../admin/social_login.php:389
2122
  #, fuzzy
2123
  msgid ""
2124
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2126
  msgstr ""
2127
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2128
 
2129
+ #: ../admin/social_login.php:377
2130
  #, fuzzy
2131
  msgid "Google Client Secret"
2132
  msgstr "Google+ Client ID"
2133
 
2134
+ #: ../admin/social_login.php:387
2135
  #, fuzzy, php-format
2136
  msgid ""
2137
  "Required for Google Social Login to work. Please follow the documentation at "
2141
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2142
  "obter o GooglePlus Client ID"
2143
 
2144
+ #: ../admin/social_login.php:398
2145
  msgid "Vkontakte Application ID"
2146
  msgstr "Vkontakte Application ID"
2147
 
2148
+ #: ../admin/social_login.php:408 ../admin/social_login.php:429
2149
  #, php-format
2150
  msgid ""
2151
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2156
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2157
  "obter Vkontakte Application ID"
2158
 
2159
+ #: ../admin/social_login.php:410 ../admin/social_login.php:431
2160
  #, fuzzy
2161
  msgid ""
2162
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2164
  msgstr ""
2165
  "Cole a seguinte url em <strong>Site address</strong> no link mencionado"
2166
 
2167
+ #: ../admin/social_login.php:419
2168
  #, fuzzy
2169
  msgid "Vkontakte Secure key"
2170
  msgstr "Vkontakte"
2171
 
2172
+ #: ../admin/social_login.php:440
2173
  #, fuzzy
2174
  msgid "Instagram App ID"
2175
  msgstr "Instagram Client ID"
2176
 
2177
+ #: ../admin/social_login.php:450
2178
  #, fuzzy, php-format
2179
  msgid ""
2180
  "Required for Instagram Social Login to work. Please follow the documentation "
2184
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2185
  "obter Instagram Client ID"
2186
 
2187
+ #: ../admin/social_login.php:452 ../admin/social_login.php:473
2188
  #, fuzzy
2189
  msgid ""
2190
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2192
  msgstr ""
2193
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2194
 
2195
+ #: ../admin/social_login.php:461
2196
  #, fuzzy
2197
  msgid "Instagram App Secret"
2198
  msgstr "Instagram"
2199
 
2200
+ #: ../admin/social_login.php:471
2201
  #, fuzzy, php-format
2202
  msgid ""
2203
  "Required for Instagram Social Login to work. Please follow the documentation "
2207
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2208
  "obter Instagram Client ID"
2209
 
2210
+ #: ../admin/social_login.php:482
2211
  msgid "Line Channel ID"
2212
  msgstr ""
2213
 
2214
+ #: ../admin/social_login.php:491
2215
  #, fuzzy, php-format
2216
  msgid ""
2217
  "Required for Line Social Login to work. Please follow the documentation at "
2221
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2222
  "obeter API Key do LinkedIn"
2223
 
2224
+ #: ../admin/social_login.php:502
2225
  #, fuzzy
2226
  msgid "Line Channel Secret"
2227
  msgstr "LinkedIn"
2228
 
2229
+ #: ../admin/social_login.php:511
2230
  #, fuzzy, php-format
2231
  msgid ""
2232
  "Required for Line Social Login to work. Please follow the documentation at "
2236
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2237
  "obeter API Key do LinkedIn"
2238
 
2239
+ #: ../admin/social_login.php:522
2240
  #, fuzzy
2241
  msgid "Wordpress Client ID"
2242
  msgstr "Google+ Client ID"
2243
 
2244
+ #: ../admin/social_login.php:531
2245
  #, fuzzy, php-format
2246
  msgid ""
2247
  "Required for Wordpress Social Login to work. Please follow the documentation "
2251
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2252
  "obter o GooglePlus Client ID"
2253
 
2254
+ #: ../admin/social_login.php:542
2255
  #, fuzzy
2256
  msgid "Wordpress Client Secret"
2257
  msgstr "Google+ Client ID"
2258
 
2259
+ #: ../admin/social_login.php:551
2260
  #, fuzzy, php-format
2261
  msgid ""
2262
  "Required for Wordpress Social Login to work. Please follow the documentation "
2267
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2268
  "obter o GooglePlus Client ID"
2269
 
2270
+ #: ../admin/social_login.php:562
2271
  #, fuzzy
2272
  msgid "Microsoft Client ID"
2273
  msgstr "Google+ Client ID"
2274
 
2275
+ #: ../admin/social_login.php:571
2276
  #, fuzzy, php-format
2277
  msgid ""
2278
  "Required for Live Social Login to work. Please follow the documentation at "
2282
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2283
  "obter o GooglePlus Client ID"
2284
 
2285
+ #: ../admin/social_login.php:573 ../admin/social_login.php:593
2286
+ #: ../admin/social_login.php:806 ../admin/social_login.php:826
2287
+ #: ../admin/social_login.php:971 ../admin/social_login.php:991
2288
  #, fuzzy
2289
  msgid ""
2290
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2292
  msgstr ""
2293
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2294
 
2295
+ #: ../admin/social_login.php:582
2296
  #, fuzzy
2297
  msgid "Microsoft Client Secret"
2298
  msgstr "Google+ Client ID"
2299
 
2300
+ #: ../admin/social_login.php:591
2301
  #, fuzzy, php-format
2302
  msgid ""
2303
  "Required for Live Social Login to work. Please follow the documentation at "
2308
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2309
  "obter o GooglePlus Client ID"
2310
 
2311
+ #: ../admin/social_login.php:601
2312
  #, fuzzy
2313
  msgid "Steam API Key"
2314
  msgstr "Twitter API Key"
2315
 
2316
+ #: ../admin/social_login.php:610
2317
  #, fuzzy, php-format
2318
  msgid ""
2319
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2323
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link link</a> "
2324
  "para obter Twitter API Key"
2325
 
2326
+ #: ../admin/social_login.php:611
2327
  #, fuzzy
2328
  msgid "Save following <strong>domain</strong> to get the key"
2329
  msgstr ""
2330
  "Cole a seguinte opção de url <strong>Callback domain</strong> para o link "
2331
  "mencionado"
2332
 
2333
+ #: ../admin/social_login.php:620
2334
  #, fuzzy
2335
  msgid "Yahoo Client ID"
2336
  msgstr "Google+ Client ID"
2337
 
2338
+ #: ../admin/social_login.php:629
2339
  #, fuzzy, php-format
2340
  msgid ""
2341
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2345
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2346
  "obter o GooglePlus Client ID"
2347
 
2348
+ #: ../admin/social_login.php:631 ../admin/social_login.php:651
2349
  #, fuzzy
2350
  msgid ""
2351
+ "Paste following url in the <strong>Redirect URI(s)</strong> option mentioned "
2352
+ "at the link"
2353
  msgstr ""
2354
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2355
 
2356
+ #: ../admin/social_login.php:640
2357
  #, fuzzy
2358
  msgid "Yahoo Client Secret"
2359
  msgstr "Google+ Client ID"
2360
 
2361
+ #: ../admin/social_login.php:649
2362
  #, fuzzy, php-format
2363
  msgid ""
2364
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2368
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2369
  "obter o GooglePlus Client ID"
2370
 
2371
+ #: ../admin/social_login.php:662
2372
+ #, fuzzy
2373
+ msgid "Discord Client ID"
2374
+ msgstr "Instagram Client ID"
2375
+
2376
+ #: ../admin/social_login.php:671
2377
+ #, fuzzy, php-format
2378
+ msgid ""
2379
+ "Required for Discord Social Login to work. Please follow the documentation "
2380
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client ID"
2381
+ msgstr ""
2382
+ "Requirido para Autenticação Social GooglePlus funcionar. Por favor siga a "
2383
+ "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2384
+ "obter o GooglePlus Client ID"
2385
+
2386
+ #: ../admin/social_login.php:673 ../admin/social_login.php:693
2387
+ #, fuzzy
2388
+ msgid ""
2389
+ "Paste following url in the <strong>Redirects</strong> option mentioned at "
2390
+ "the link"
2391
+ msgstr ""
2392
+ "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2393
+
2394
+ #: ../admin/social_login.php:682
2395
+ #, fuzzy
2396
+ msgid "Discord Client Secret"
2397
+ msgstr "Instagram Client ID"
2398
+
2399
+ #: ../admin/social_login.php:691
2400
+ #, fuzzy, php-format
2401
+ msgid ""
2402
+ "Required for Discord Social Login to work. Please follow the documentation "
2403
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client "
2404
+ "Secret key"
2405
+ msgstr ""
2406
+ "Requirido para Autenticação Social GooglePlus funcionar. Por favor siga a "
2407
+ "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2408
+ "obter o GooglePlus Client ID"
2409
+
2410
+ #: ../admin/social_login.php:704
2411
+ #, fuzzy
2412
+ msgid "Amazon Client ID"
2413
+ msgstr "Google+ Client ID"
2414
+
2415
+ #: ../admin/social_login.php:713
2416
+ #, fuzzy, php-format
2417
+ msgid ""
2418
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2419
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client ID"
2420
+ msgstr ""
2421
+ "Requirido para Autenticação Social GooglePlus funcionar. Por favor siga a "
2422
+ "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2423
+ "obter o GooglePlus Client ID"
2424
+
2425
+ #: ../admin/social_login.php:715 ../admin/social_login.php:735
2426
+ #, fuzzy
2427
+ msgid ""
2428
+ "Paste following url in the <strong>Allowed Return URLs</strong> option "
2429
+ "mentioned at the link"
2430
+ msgstr ""
2431
+ "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2432
+
2433
+ #: ../admin/social_login.php:724
2434
+ #, fuzzy
2435
+ msgid "Amazon Client Secret"
2436
+ msgstr "Google+ Client ID"
2437
+
2438
+ #: ../admin/social_login.php:733
2439
+ #, fuzzy, php-format
2440
+ msgid ""
2441
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2442
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client Secret "
2443
+ "key"
2444
+ msgstr ""
2445
+ "Requirido para Autenticação Social GooglePlus funcionar. Por favor siga a "
2446
+ "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2447
+ "obter o GooglePlus Client ID"
2448
+
2449
+ #: ../admin/social_login.php:746
2450
+ #, fuzzy
2451
+ msgid "Stackoverflow Client ID"
2452
+ msgstr "Google+ Client ID"
2453
+
2454
+ #: ../admin/social_login.php:755
2455
+ #, fuzzy, php-format
2456
+ msgid ""
2457
+ "Required for Stackoverflow Social Login to work. Please follow the "
2458
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2459
+ "Stackoverflow Client ID"
2460
+ msgstr ""
2461
+ "Requirido para Autenticação Social GooglePlus funcionar. Por favor siga a "
2462
+ "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2463
+ "obter o GooglePlus Client ID"
2464
+
2465
+ #: ../admin/social_login.php:761
2466
+ #, fuzzy
2467
+ msgid "Stackoverflow Client Secret"
2468
+ msgstr "Google+ Client ID"
2469
+
2470
+ #: ../admin/social_login.php:770
2471
+ #, fuzzy, php-format
2472
+ msgid ""
2473
+ "Required for Stackoverflow Social Login to work. Please follow the "
2474
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2475
+ "Stackoverflow Client Secret key"
2476
+ msgstr ""
2477
+ "Requirido para Autenticação Social GooglePlus funcionar. Por favor siga a "
2478
+ "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2479
+ "obter o GooglePlus Client ID"
2480
+
2481
+ #: ../admin/social_login.php:776
2482
+ msgid "Stackoverflow Key"
2483
+ msgstr ""
2484
+
2485
+ #: ../admin/social_login.php:786
2486
+ #, fuzzy, php-format
2487
+ msgid ""
2488
+ "Required for Stackoverflow Social Login to work. Please follow the "
2489
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2490
+ "Stackoverflow Key"
2491
+ msgstr ""
2492
+ "Requirido para a Autenticação Social do Twitter funcionar. Por favor, siga a "
2493
+ "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link link</a> "
2494
+ "para obter Twitter API Key"
2495
+
2496
+ #: ../admin/social_login.php:795
2497
  #, fuzzy
2498
  msgid "Spotify Client ID"
2499
  msgstr "Google+ Client ID"
2500
 
2501
+ #: ../admin/social_login.php:804
2502
  #, fuzzy, php-format
2503
  msgid ""
2504
  "Required for Spotify Social Login to work. Please follow the documentation "
2508
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2509
  "obter o GooglePlus Client ID"
2510
 
2511
+ #: ../admin/social_login.php:815
2512
  #, fuzzy
2513
  msgid "Spotify Client Secret"
2514
  msgstr "Google+ Client ID"
2515
 
2516
+ #: ../admin/social_login.php:824
2517
  #, fuzzy, php-format
2518
  msgid ""
2519
  "Required for Spotify Social Login to work. Please follow the documentation "
2524
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2525
  "obter o GooglePlus Client ID"
2526
 
2527
+ #: ../admin/social_login.php:837
2528
  #, fuzzy
2529
  msgid "Dribbble Client ID"
2530
  msgstr "Google+ Client ID"
2531
 
2532
+ #: ../admin/social_login.php:846
2533
  #, fuzzy, php-format
2534
  msgid ""
2535
  "Required for Dribbble Social Login to work. Please follow the documentation "
2539
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2540
  "obter o GooglePlus Client ID"
2541
 
2542
+ #: ../admin/social_login.php:857
2543
  #, fuzzy
2544
  msgid "Dribbble Client Secret"
2545
  msgstr "Google+ Client ID"
2546
 
2547
+ #: ../admin/social_login.php:866
2548
  #, fuzzy, php-format
2549
  msgid ""
2550
  "Required for Dribbble Social Login to work. Please follow the documentation "
2555
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2556
  "obter o GooglePlus Client ID"
2557
 
2558
+ #: ../admin/social_login.php:878
2559
  #, fuzzy
2560
  msgid "Twitch Client ID"
2561
  msgstr "Instagram Client ID"
2562
 
2563
+ #: ../admin/social_login.php:887
2564
  #, fuzzy, php-format
2565
  msgid ""
2566
  "Required for Twitch Social Login to work. Please follow the documentation at "
2570
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2571
  "obter o GooglePlus Client ID"
2572
 
2573
+ #: ../admin/social_login.php:898
2574
  #, fuzzy
2575
  msgid "Twitch Client Secret"
2576
  msgstr "Instagram Client ID"
2577
 
2578
+ #: ../admin/social_login.php:907
2579
  #, fuzzy, php-format
2580
  msgid ""
2581
  "Required for Twitch Social Login to work. Please follow the documentation at "
2585
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2586
  "obter o GooglePlus Client ID"
2587
 
2588
+ #: ../admin/social_login.php:920
2589
  #, fuzzy
2590
  msgid "Foursquare Client ID"
2591
  msgstr "Google+ Client ID"
2592
 
2593
+ #: ../admin/social_login.php:929
2594
  #, fuzzy, php-format
2595
  msgid ""
2596
  "Required for Foursquare Social Login to work. Please follow the "
2601
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2602
  "obter o GooglePlus Client ID"
2603
 
2604
+ #: ../admin/social_login.php:931 ../admin/social_login.php:951
2605
  #, fuzzy
2606
  msgid ""
2607
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
2609
  msgstr ""
2610
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2611
 
2612
+ #: ../admin/social_login.php:940
2613
  #, fuzzy
2614
  msgid "Foursquare Client Secret"
2615
  msgstr "Google+ Client ID"
2616
 
2617
+ #: ../admin/social_login.php:949
2618
  #, fuzzy, php-format
2619
  msgid ""
2620
  "Required for Foursquare Social Login to work. Please follow the "
2625
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2626
  "obter o GooglePlus Client ID"
2627
 
2628
+ #: ../admin/social_login.php:960
2629
  msgid "Dropbox App Key"
2630
  msgstr ""
2631
 
2632
+ #: ../admin/social_login.php:969
2633
  #, fuzzy, php-format
2634
  msgid ""
2635
  "Required for Dropbox Social Login to work. Please follow the documentation "
2639
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
2640
  "para obter o Facebook App ID"
2641
 
2642
+ #: ../admin/social_login.php:980
2643
  #, fuzzy
2644
  msgid "Dropbox App Secret"
2645
  msgstr "Facebook App ID"
2646
 
2647
+ #: ../admin/social_login.php:989
2648
  #, fuzzy, php-format
2649
  msgid ""
2650
  "Required for Dropbox Social Login to work. Please follow the documentation "
2654
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
2655
  "para obter o Facebook App ID"
2656
 
2657
+ #: ../admin/social_login.php:1003
2658
  msgid "Disqus Public Key"
2659
  msgstr ""
2660
 
2661
+ #: ../admin/social_login.php:1012
2662
  #, fuzzy, php-format
2663
  msgid ""
2664
  "Required for Disqus Social Login to work. Please follow the documentation at "
2668
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2669
  "obter Xing Consumer Key"
2670
 
2671
+ #: ../admin/social_login.php:1023
2672
  #, fuzzy
2673
  msgid "Disqus Secret Key"
2674
  msgstr "Disqus Shortname"
2675
 
2676
+ #: ../admin/social_login.php:1032
2677
  #, fuzzy, php-format
2678
  msgid ""
2679
  "Required for Disqus Social Login to work. Please follow the documentation at "
2683
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2684
  "obter Xing Consumer Key"
2685
 
2686
+ #: ../admin/social_login.php:1045
2687
  #, fuzzy
2688
  msgid "Reddit Client ID"
2689
  msgstr "Instagram Client ID"
2690
 
2691
+ #: ../admin/social_login.php:1054
2692
  #, fuzzy, php-format
2693
  msgid ""
2694
  "Required for Reddit Social Login to work. Please follow the documentation at "
2698
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2699
  "obter o GooglePlus Client ID"
2700
 
2701
+ #: ../admin/social_login.php:1056 ../admin/social_login.php:1076
2702
  #, fuzzy
2703
  msgid ""
2704
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
2706
  msgstr ""
2707
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2708
 
2709
+ #: ../admin/social_login.php:1065
2710
  #, fuzzy
2711
  msgid "Reddit Client Secret"
2712
  msgstr "Instagram Client ID"
2713
 
2714
+ #: ../admin/social_login.php:1074
2715
  #, fuzzy, php-format
2716
  msgid ""
2717
  "Required for Reddit Social Login to work. Please follow the documentation at "
2721
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2722
  "obter o GooglePlus Client ID"
2723
 
2724
+ #: ../admin/social_login.php:1088
2725
  #, fuzzy
2726
  msgid "Github Client ID"
2727
  msgstr "Instagram Client ID"
2728
 
2729
+ #: ../admin/social_login.php:1097
2730
  #, fuzzy, php-format
2731
  msgid ""
2732
  "Required for Github Social Login to work. Please follow the documentation at "
2736
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2737
  "obter o GooglePlus Client ID"
2738
 
2739
+ #: ../admin/social_login.php:1108
2740
  #, fuzzy
2741
  msgid "Github Client Secret"
2742
  msgstr "Instagram Client ID"
2743
 
2744
+ #: ../admin/social_login.php:1117
2745
  #, fuzzy, php-format
2746
  msgid ""
2747
  "Required for Github Social Login to work. Please follow the documentation at "
2751
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2752
  "obter o GooglePlus Client ID"
2753
 
2754
+ #: ../admin/social_login.php:1130
2755
  #, fuzzy
2756
  msgid "Kakao Client ID"
2757
  msgstr "Google+ Client ID"
2758
 
2759
+ #: ../admin/social_login.php:1139
2760
  #, fuzzy, php-format
2761
  msgid ""
2762
  "Required for Kakao Social Login to work. Please follow the documentation at "
2766
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2767
  "obter o GooglePlus Client ID"
2768
 
2769
+ #: ../admin/social_login.php:1150
2770
  #, fuzzy
2771
  msgid "Kakao Client Secret"
2772
  msgstr "Google+ Client ID"
2773
 
2774
+ #: ../admin/social_login.php:1159
2775
  #, fuzzy, php-format
2776
  msgid ""
2777
  "Required for Kakao Social Login to work. Please follow the documentation at "
2781
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2782
  "obter o GooglePlus Client ID"
2783
 
2784
+ #: ../admin/social_login.php:1179
2785
  #, fuzzy
2786
  msgid "Social Login Options"
2787
  msgstr "Autenticação Social"
2788
 
2789
+ #: ../admin/social_login.php:1194
2790
  msgid "Text to display above the Social Login interface"
2791
  msgstr "Texto exibido acima da interface de Autenticação Social"
2792
 
2793
+ #: ../admin/social_login.php:1202
2794
  msgid "Trigger social login in the same browser tab"
2795
  msgstr ""
2796
 
2797
+ #: ../admin/social_login.php:1212
2798
  msgid "Trigger social login in the same browser tab instead of a popup window"
2799
  msgstr ""
2800
 
2801
+ #: ../admin/social_login.php:1219
2802
  #, fuzzy
2803
  msgid "Center align icons"
2804
  msgstr "Rearranjar ícones"
2805
 
2806
+ #: ../admin/social_login.php:1229
2807
  #, fuzzy
2808
  msgid "Center align social login icons"
2809
  msgstr "Autenticação Social"
2810
 
2811
+ #: ../admin/social_login.php:1236
2812
  msgid "Enable at login page"
2813
  msgstr "Habilia a página de autenticação"
2814
 
2815
+ #: ../admin/social_login.php:1246
2816
  msgid ""
2817
  "Social Login interface will get enabled at the login page of your website"
2818
  msgstr ""
2819
  "Interface de Autenticação Social será habilitada na página de autenticação "
2820
  "do seu website"
2821
 
2822
+ #: ../admin/social_login.php:1253
2823
  msgid "Enable at register page"
2824
  msgstr "Habilitar página de registro"
2825
 
2826
+ #: ../admin/social_login.php:1263
2827
  msgid ""
2828
  "Social Login interface will get enabled at the registration page of your "
2829
  "website"
2831
  "Interface de Autenticação Social será habilitada na página de registro de "
2832
  "seu website"
2833
 
2834
+ #: ../admin/social_login.php:1270
2835
  msgid "Enable at comment form"
2836
  msgstr "Habilitar no formulário de comentário"
2837
 
2838
+ #: ../admin/social_login.php:1280
2839
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2840
  msgstr ""
2841
  "Interface de Autenticação Social será habilitada em seu formulário de "
2842
  "comentários Wordpress"
2843
 
2844
+ #: ../admin/social_login.php:1294
2845
  msgid "Enable before WooCommerce Customer Login Form"
2846
  msgstr "Habilido antes do formulário de autenticação do WooCommerce"
2847
 
2848
+ #: ../admin/social_login.php:1304
2849
  msgid ""
2850
  "Social Login Interface will get enabled before the customer login form at "
2851
  "WooCommerce My Account page"
2853
  "Interface de Autenticação Social será habilitada antes do formulário de "
2854
  "autenticação de cliente na página Minha Conta do WooCommerce"
2855
 
2856
+ #: ../admin/social_login.php:1311
2857
  #, fuzzy
2858
  msgid "Enable at WooCommerce Customer Login Form"
2859
  msgstr ""
2860
  "Habilitado depois do Formulário de Autenticação do Cliente do WooCommerce"
2861
 
2862
+ #: ../admin/social_login.php:1321
2863
  #, fuzzy
2864
  msgid ""
2865
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2868
  "Interface de Autenticação Social será habilitada depois do formulário de "
2869
  "autenticação de cliente na página Minha Conta do WooCommerce"
2870
 
2871
+ #: ../admin/social_login.php:1328
2872
  #, fuzzy
2873
  msgid "Enable at WooCommerce Customer Register Form"
2874
  msgstr ""
2875
  "Habilitado depois do Formulário de Autenticação do Cliente do WooCommerce"
2876
 
2877
+ #: ../admin/social_login.php:1338
2878
  #, fuzzy
2879
  msgid ""
2880
  "Integrate Social Login Interface with the customer register form at "
2883
  "Interface de Autenticação Social será habilitada depois do formulário de "
2884
  "autenticação de cliente na página Minha Conta do WooCommerce"
2885
 
2886
+ #: ../admin/social_login.php:1345
2887
  msgid "Enable at WooCommerce checkout page"
2888
  msgstr "Habilitado na página de checkout do WooCommerce"
2889
 
2890
+ #: ../admin/social_login.php:1355
2891
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2892
  msgstr ""
2893
  "Interface de Autenticação Social será habilitada página de checkout do "
2894
  "WooCommerce"
2895
 
2896
+ #: ../admin/social_login.php:1365
2897
  msgid "Auto-approve comments made by Social Login users"
2898
  msgstr ""
2899
  "Aprovação automática de comentários feito pelo usuário de Autenticação Social"
2900
 
2901
+ #: ../admin/social_login.php:1375
2902
  msgid ""
2903
  "If this option is enabled, and WordPress comment is made by Social Login "
2904
  "user, comment will get approved immediately without keeping in moderation."
2907
  "usuário de Autenticação social, o comentário será aprovado imediatamente sem "
2908
  "considerações de moderação."
2909
 
2910
+ #: ../admin/social_login.php:1376
2911
  msgid "Note: This is not related to Facebook comments"
2912
  msgstr "Note: Isto não está relacionado com comentários do Facebook"
2913
 
2914
+ #: ../admin/social_login.php:1385
2915
  msgid "Enable social avatar"
2916
  msgstr "Habilitar o avatar social"
2917
 
2918
+ #: ../admin/social_login.php:1395
2919
  msgid ""
2920
  "Social profile pictures of the logged in user will be displayed as profile "
2921
  "avatar"
2923
  "Fotogragia do perfil social do usuário autenticado será exibido como avatar "
2924
  "do perfil"
2925
 
2926
+ #: ../admin/social_login.php:1404
2927
  msgid "Avatar quality"
2928
  msgstr "Qualidade do Avatar"
2929
 
2930
+ #: ../admin/social_login.php:1407
2931
  msgid "Average"
2932
  msgstr "Média"
2933
 
2934
+ #: ../admin/social_login.php:1408
2935
  msgid "Best"
2936
  msgstr "Melhor"
2937
 
2938
+ #: ../admin/social_login.php:1415
2939
  msgid "Choose avatar quality"
2940
  msgstr "Escolha a qualidade do avatar"
2941
 
2942
+ #: ../admin/social_login.php:1423
2943
  msgid ""
2944
  "Show option for users to update social avatar at BuddyPress profile page"
2945
  msgstr ""
2946
  "Exibir opção para os usuários atualizarem o avatar social na página do "
2947
  "perfil do BuddyPress"
2948
 
2949
+ #: ../admin/social_login.php:1433
2950
  msgid ""
2951
  "If enabled, users would be able to update their social avatar from \"Profile "
2952
  "photo\" section in BuddyPress profile at front-end"
2954
  "Se habilitado, usuários serão capazes de atualizar seus avatar social pela "
2955
  "seção \\\"Foto do perfil\\\" no front-end do perfil BuddyPress"
2956
 
2957
+ #: ../admin/social_login.php:1453
2958
  msgid ""
2959
  "If enabled and Social ID provider does not provide user's email address on "
2960
  "login, user will be asked to provide his/her email address. Otherwise, a "
2964
  "usuário na autenticação, ao usuário será solicitado fornecer seu endereço de "
2965
  "email. Do contrário, um email postiço será gerado"
2966
 
2967
+ #: ../admin/social_login.php:1461
2968
  msgid "Send post-registration email to user to set account password"
2969
  msgstr ""
2970
 
2971
+ #: ../admin/social_login.php:1471
2972
  msgid ""
2973
  "If enabled, an email will be sent to user after registration through Social "
2974
  "Login, regarding his/her login credentials (username-password to be able to "
2978
  "Social, com respeito as credecial do usuário para autenticação (username-"
2979
  "senha para possibilitar a autenticação via formulário tradicional)"
2980
 
2981
+ #: ../admin/social_login.php:1478
2982
  #, fuzzy
2983
  msgid "Send new user registration notification email to admin"
2984
  msgstr "Desabilitar o registro de usuários via Autenticação Social"
2985
 
2986
+ #: ../admin/social_login.php:1488
2987
  #, fuzzy
2988
  msgid ""
2989
  "If enabled, an email will be sent to admin after new user registers through "
2993
  "Social, com respeito as credecial do usuário para autenticação (username-"
2994
  "senha para possibilitar a autenticação via formulário tradicional)"
2995
 
2996
+ #: ../admin/social_login.php:1495
2997
  msgid "Login redirection"
2998
  msgstr "Redireção de autenticação"
2999
 
3000
+ #: ../admin/social_login.php:1499
3001
  msgid "Same page where user logged in"
3002
  msgstr "Mesma página onde o usuário autenticou-se"
3003
 
3004
+ #: ../admin/social_login.php:1503 ../admin/social_login.php:1532
3005
  msgid "Account dashboard"
3006
  msgstr "Painel da Conta"
3007
 
3008
+ #: ../admin/social_login.php:1506 ../admin/social_login.php:1535
3009
  msgid "BuddyPress profile page"
3010
  msgstr "Página de perfil BuddyPress"
3011
 
3012
+ #: ../admin/social_login.php:1509 ../admin/social_login.php:1538
3013
  msgid "Custom Url"
3014
  msgstr "Url Personalizada"
3015
 
3016
+ #: ../admin/social_login.php:1517
3017
  msgid "User will be redirected to the selected page after Social Login"
3018
  msgstr ""
3019
  "O usuário será redirecionado para a página selcionada de Autenticação Soocial"
3020
 
3021
+ #: ../admin/social_login.php:1524
3022
  msgid "Registration redirection"
3023
  msgstr "Redirecionamento de registro"
3024
 
3025
+ #: ../admin/social_login.php:1528
3026
  msgid "Same page from where user registered"
3027
  msgstr "Mesma página de onde o usuário se registrou"
3028
 
3029
+ #: ../admin/social_login.php:1546
3030
  msgid ""
3031
  "User will be redirected to the selected page after registration (first "
3032
  "Social Login) through Social Login"
3034
  "O usuário será redirecionado para a página selecionada após o registro "
3035
  "(primeira Autenticação Social) através da Autenticação Social"
3036
 
3037
+ #: ../admin/social_login.php:1555
3038
  #, fuzzy
3039
  msgid "Social Account Linking Options"
3040
  msgstr "Comentário Social"
3041
 
3042
+ #: ../admin/social_login.php:1570
3043
  #, fuzzy
3044
  msgid "Text to display above the Social Account Linking interface"
3045
  msgstr "Texto exibido acima da interface de Autenticação Social"
3046
 
3047
+ #: ../admin/social_login.php:1577
3048
  #, fuzzy
3049
  msgid ""
3050
  "Link social account to already existing account, if email address matches"
3051
  msgstr "Associe sua conta social ao login de sua conta neste website"
3052
 
3053
+ #: ../admin/social_login.php:1587
3054
  msgid ""
3055
  "If email address of the user's Social Account matches with an already "
3056
  "existing account at your website, that social account will be linked to "
3058
  "Linking interface at their profile page."
3059
  msgstr ""
3060
 
3061
+ #: ../admin/social_login.php:1595
3062
  msgid "Enable social account linking at BuddyPress profile page"
3063
  msgstr "Habilitar conta social associada à página de perfil no BuddyPress"
3064
 
3065
+ #: ../admin/social_login.php:1605
3066
  msgid ""
3067
  "Enable this option to show social account linking interface at BuddyPress "
3068
  "profile page"
3070
  "Habilitar estar opção para exibir a conta social associada a página de "
3071
  "interface de perfil do BuddyPress"
3072
 
3073
+ #: ../admin/social_login.php:1616
3074
  msgid "Email popup options"
3075
  msgstr "Opções de popup de email"
3076
 
3077
+ #: ../admin/social_login.php:1621
3078
  msgid "Text on 'Email required' popup"
3079
  msgstr "Texto popup de 'Email requerido'"
3080
 
3081
+ #: ../admin/social_login.php:1631
3082
  msgid ""
3083
  "This text will be displayed on email required popup. Leave empty if not "
3084
  "required."
3086
  "Este texto será exibido no popup de requisição de email. Deixe em branco se "
3087
  "o email não for requerido."
3088
 
3089
+ #: ../admin/social_login.php:1639
3090
  msgid "Error message for 'Email required' popup"
3091
  msgstr "Mensagem de erro para popup de 'Email requerido'"
3092
 
3093
+ #: ../admin/social_login.php:1649
3094
  msgid ""
3095
  "This message will be displayed to user if it provides invalid or already "
3096
  "registered email"
3098
  "Esta mensagem será exibida para o usuário se ele fornecer um email inválido "
3099
  "ou já registrado"
3100
 
3101
+ #: ../admin/social_login.php:1657
3102
  msgid "Email popup height"
3103
  msgstr "Altura do popup de email"
3104
 
3105
+ #: ../admin/social_login.php:1667
3106
  msgid ""
3107
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
3108
  "can increase the height of popup by specifying in this option. Leave empty "
3112
  "requirido\\\", você pode incrementar a altura do popup através de "
3113
  "especificação nesta opção. Deixe vazio para padrão."
3114
 
3115
+ #: ../admin/social_login.php:1674
3116
  msgid "Enable email verification"
3117
  msgstr "Habilitar verificação de email"
3118
 
3119
+ #: ../admin/social_login.php:1684
3120
  msgid ""
3121
  "If enabled, email provided by the user will be verified by sending a "
3122
  "confirmation link to that email. User would not be able to login without "
3126
  "um link de confirmação para aquele email. O usuário não poderá se autenticar "
3127
  "antes de validar seu email"
3128
 
3129
+ #: ../admin/social_login.php:1704
3130
  #, fuzzy
3131
  msgid "Enable GDPR opt-in"
3132
  msgstr "Habilitar comentário Disqus"
3133
 
3134
+ #: ../admin/social_login.php:1714
3135
  msgid ""
3136
  "Enable it to show GDPR opt-in for social login and social account linking"
3137
  msgstr ""
3138
 
3139
+ #: ../admin/social_login.php:1722
3140
  #, fuzzy
3141
  msgid "Placement of GDPR opt-in"
3142
  msgstr "Habilitar comentário Disqus"
3143
 
3144
+ #: ../admin/social_login.php:1726
3145
  #, fuzzy
3146
  msgid "Above Social Login icons"
3147
  msgstr "Autenticação Social"
3148
 
3149
+ #: ../admin/social_login.php:1728
3150
  #, fuzzy
3151
  msgid "Below Social Login icons"
3152
  msgstr "Autenticação Social"
3153
 
3154
+ #: ../admin/social_login.php:1734
3155
  #, fuzzy
3156
  msgid "Placement of GDPR opt-in above or below the social login icons"
3157
  msgstr "Texto exibido acima da interface de Autenticação Social"
3158
 
3159
+ #: ../admin/social_login.php:1741
3160
  msgid "Opt-in text"
3161
  msgstr ""
3162
 
3163
+ #: ../admin/social_login.php:1751
3164
  #, fuzzy
3165
  msgid "Text for the GDPR opt-in"
3166
  msgstr "Habilitar comentário Disqus"
3167
 
3168
+ #: ../admin/social_login.php:1758
3169
  msgid "Text to link to Terms-Conditions page"
3170
  msgstr ""
3171
 
3172
+ #: ../admin/social_login.php:1768
3173
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
3174
  msgstr ""
3175
 
3176
+ #: ../admin/social_login.php:1775
3177
  msgid "Terms-Conditions Url"
3178
  msgstr ""
3179
 
3180
+ #: ../admin/social_login.php:1785
3181
  #, fuzzy
3182
  msgid "Url of the terms-conditions page of your website"
3183
  msgstr "Url da homepage do seu website"
3184
 
3185
+ #: ../admin/social_login.php:1792
3186
  msgid "Text to link to Privacy Policy page"
3187
  msgstr ""
3188
 
3189
+ #: ../admin/social_login.php:1802
3190
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
3191
  msgstr ""
3192
 
3193
+ #: ../admin/social_login.php:1809
3194
  msgid "Privacy Policy Url"
3195
  msgstr ""
3196
 
3197
+ #: ../admin/social_login.php:1819
3198
  #, fuzzy
3199
  msgid "Url of the privacy policy page of your website"
3200
  msgstr "Url da homepage do seu website"
3201
 
3202
+ #: ../admin/social_login.php:1870 ../inc/widget.php:260 ../inc/widget.php:438
3203
  #: ../inc/widget.php:602 ../inc/widget.php:750
3204
  msgid "Select"
3205
  msgstr "Selecione"
3206
 
3207
+ #: ../admin/social_login.php:1901
3208
  msgid "Social Login Shortcode & Widget"
3209
  msgstr "Autenticação Social Shortcode & Widget"
3210
 
3211
+ #: ../admin/social_login.php:1902
3212
  msgid "Social Linking Shortcode"
3213
  msgstr "Shortcode de associação Social"
3214
 
3215
+ #: ../admin/social_login.php:1917
3216
  msgid "Why is social login not working?"
3217
  msgstr ""
3218
 
3219
+ #: ../admin/social_login.php:1918
3220
  msgid ""
3221
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3222
  "belong to the same app"
3223
  msgstr ""
3224
 
3225
+ #: ../admin/social_login.php:1920
3226
  msgid "Social Login not working with Varnish enabled"
3227
  msgstr ""
3228
 
3229
+ #: ../admin/social_login.php:1921
3230
  msgid ""
3231
  "Why the user is not appearing logged in even after Social Login until the "
3232
  "webpage is refreshed manually?"
3435
  msgid "Archives"
3436
  msgstr "Arquivos de Categorias"
3437
 
3438
+ #: ../inc/social_sharing.php:225
3439
+ msgid "More"
3440
+ msgstr ""
3441
+
3442
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3443
  msgid "Invalid request"
3444
  msgstr "Requisição inválida"
3447
  msgid "Providers not selected"
3448
  msgstr "Provedor não selecionado"
3449
 
3450
+ #: ../inc/social_sharing_networks.php:57
3451
+ msgid "Copy Link"
3452
+ msgstr ""
3453
+
3454
+ #: ../inc/social_login.php:1030
3455
  msgid "Email"
3456
  msgstr ""
3457
 
3458
+ #: ../inc/social_login.php:1031
3459
  msgid "Confirm email"
3460
  msgstr ""
3461
 
3462
+ #: ../inc/social_login.php:1033
3463
  msgid "Save"
3464
  msgstr ""
3465
 
3466
+ #: ../inc/social_login.php:1034
3467
  msgid "Cancel"
3468
  msgstr ""
3469
 
3470
+ #: ../inc/social_login.php:1108
3471
  #, fuzzy
3472
  msgid "Email Verification"
3473
  msgstr "Habilitar verificação de email"
3474
 
3475
+ #: ../inc/social_login.php:1110
3476
  msgid ""
3477
  "Please click on the following link or paste it in browser to verify your "
3478
  "email"
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-01-27 15:38+0530\n"
6
- "PO-Revision-Date: 2021-01-27 15:38+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Russian\n"
9
  "Language: ru_RU\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../super_socializer.php:1570
21
  msgid ""
22
  "cURL is not enabled at your website server. Please contact your website "
23
  "server administrator to enable it."
@@ -25,7 +25,7 @@ msgstr ""
25
  "Curl не включен в вашем веб-сайте. Вам, возможно, потребуется обратиться к "
26
  "администратору вашего сайта, чтобы включить это."
27
 
28
- #: ../super_socializer.php:1598
29
  #, fuzzy, php-format
30
  msgid ""
31
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -34,7 +34,7 @@ msgstr ""
34
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
35
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
36
 
37
- #: ../super_socializer.php:1601
38
  #, fuzzy, php-format
39
  msgid ""
40
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -43,7 +43,7 @@ msgstr ""
43
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
44
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
45
 
46
- #: ../super_socializer.php:1604
47
  msgid ""
48
  "Make sure cURL is enabled at your website server. You may need to contact "
49
  "the server administrator of your website to verify this"
@@ -51,65 +51,70 @@ msgstr ""
51
  "Убедитесь Curl включен в вашем веб-сайте сервера. Вы, возможно, потребуется "
52
  "обратиться к администратору сервера вашего сайта, чтобы убедиться, это"
53
 
54
- #: ../super_socializer.php:1786 ../helper.php:986
 
 
 
 
 
55
  msgid "Please verify your email address to login."
56
  msgstr "Пожалуйста, подтвердите ваш адрес электронной почты."
57
 
58
- #: ../super_socializer.php:1786
59
  msgid "Your email has been verified. Now you can login to your account"
60
  msgstr "Ваше сообщение было проверено. Теперь вы можете войти в свой аккаунт"
61
 
62
- #: ../super_socializer.php:1790
63
  msgid "Notification"
64
  msgstr "Уведомления"
65
 
66
- #: ../super_socializer.php:1808 ../admin/social_login.php:1280
67
  msgid "Email required"
68
  msgstr "Email (Обязательно)"
69
 
70
- #: ../super_socializer.php:1811
71
  msgid "Please check your email inbox to complete the registration."
72
  msgstr "Пожалуйста, проверьте свой почтовый ящик для завершения регистрации."
73
 
74
- #: ../super_socializer.php:1880
75
  msgid "Leave a reply"
76
  msgstr "Оставить ответ"
77
 
78
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
79
  msgid "Shares"
80
  msgstr "Поделились"
81
 
82
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
83
  msgid "Share"
84
  msgstr "Поделиться"
85
 
86
- #: ../super_socializer.php:1896
87
  #, fuzzy
88
  msgid "Link copied."
89
  msgstr "LinkedIn"
90
 
91
- #: ../super_socializer.php:2141
92
  msgid "Super Socializer - General Options"
93
  msgstr "Super Socializer - Общие настройки"
94
 
95
- #: ../super_socializer.php:2141 ../admin/general_options.php:15
96
  #: ../admin/social_commenting.php:47
97
  msgid "General Options"
98
  msgstr "Основные настройки"
99
 
100
- #: ../super_socializer.php:2209 ../helper.php:915
101
  msgid "Social Avatar"
102
  msgstr "Социальный аватар"
103
 
104
- #: ../super_socializer.php:2212
105
  msgid "Small Avatar Url"
106
  msgstr "Ссылка для маленького аватара"
107
 
108
- #: ../super_socializer.php:2216
109
  msgid "Large Avatar Url"
110
  msgstr "Ссылка для большого аватара"
111
 
112
- #: ../super_socializer.php:2220 ../helper.php:918
113
  msgid ""
114
  "Do not fetch and update social avatar from my profile, next time I Social "
115
  "Login"
@@ -117,78 +122,78 @@ msgstr ""
117
  "Не получать и обновлять социальный аватар из моего профиля, в следующий раз "
118
  "я когда я использую вход через соцсети"
119
 
120
- #: ../super_socializer.php:2224 ../helper.php:919
121
  msgid "Update social avatar, next time I Social Login"
122
  msgstr ""
123
  "Обновление аватара соцсетей в следующий раз при использовании входа через "
124
  "соцсети"
125
 
126
- #: ../super_socializer.php:2301
127
  msgid "Login with your Social ID"
128
  msgstr "Войти, используя социальный аккаунт"
129
 
130
- #: ../super_socializer.php:2302
131
  msgid "Email you entered is already registered or invalid"
132
  msgstr ""
133
  "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
134
 
135
- #: ../super_socializer.php:2309
136
  msgid "Please enter a valid email address. You might be required to verify it"
137
  msgstr ""
138
  "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, "
139
  "потребуется проверить его"
140
 
141
- #: ../super_socializer.php:2313 ../super_socializer.php:3039
142
  msgid "Link your social account to login to your account at this website"
143
  msgstr ""
144
  "Введите ссылку на ваш аккаут в социальных сетях чтобы войти в аккаунт на "
145
  "этом сайте"
146
 
147
- #: ../super_socializer.php:2561
148
  msgid "Thanks for installing Super Socializer plugin"
149
  msgstr ""
150
 
151
- #: ../super_socializer.php:2563
152
  msgid "Configure the Plugin"
153
  msgstr ""
154
 
155
- #: ../super_socializer.php:2574
156
  msgid ""
157
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
158
  "current version of Super Socializer"
159
  msgstr ""
160
 
161
- #: ../super_socializer.php:2583
162
  msgid ""
163
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
164
  "version of Super Socializer"
165
  msgstr ""
166
 
167
- #: ../super_socializer.php:2592
168
  msgid ""
169
- "Update \"Social Login Buttons\" add-on to version 1.2.6 or above for "
170
  "compatibility with current version of Super Socializer"
171
  msgstr ""
172
 
173
- #: ../super_socializer.php:2601
174
  msgid ""
175
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
176
  "with current version of Super Socializer"
177
  msgstr ""
178
 
179
- #: ../super_socializer.php:2610
180
  msgid ""
181
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
182
  "with current version of Super Socializer"
183
  msgstr ""
184
 
185
- #: ../super_socializer.php:2621
186
  #, php-format
187
  msgid ""
188
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
189
  msgstr ""
190
 
191
- #: ../super_socializer.php:2630
192
  #, php-format
193
  msgid ""
194
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -196,7 +201,7 @@ msgid ""
196
  "Instagram App Secret <a href=\"%s\">here</a>"
197
  msgstr ""
198
 
199
- #: ../super_socializer.php:2639 ../super_socializer.php:2648
200
  #, php-format
201
  msgid ""
202
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -205,13 +210,13 @@ msgid ""
205
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
206
  msgstr ""
207
 
208
- #: ../super_socializer.php:2664
209
  #, php-format
210
  msgid ""
211
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
212
  msgstr ""
213
 
214
- #: ../super_socializer.php:2688
215
  #, php-format
216
  msgid ""
217
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -219,14 +224,14 @@ msgid ""
219
  "target=\"_blank\">here</a>"
220
  msgstr ""
221
 
222
- #: ../super_socializer.php:2688 ../super_socializer.php:2713
223
- #: ../super_socializer.php:2738 ../super_socializer.php:2763
224
- #: ../super_socializer.php:2796 ../super_socializer.php:2824
225
- #: ../super_socializer.php:2851
226
  msgid "Okay"
227
  msgstr "Окей"
228
 
229
- #: ../super_socializer.php:2713
230
  #, php-format
231
  msgid ""
232
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -234,7 +239,7 @@ msgid ""
234
  "\">here</a>"
235
  msgstr ""
236
 
237
- #: ../super_socializer.php:2738
238
  #, php-format
239
  msgid ""
240
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -242,7 +247,7 @@ msgid ""
242
  "target=\"_blank\">here</a>"
243
  msgstr ""
244
 
245
- #: ../super_socializer.php:2763
246
  #, php-format
247
  msgid ""
248
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -250,13 +255,13 @@ msgid ""
250
  "target=\"_blank\">here</a>"
251
  msgstr ""
252
 
253
- #: ../super_socializer.php:2774
254
  #, php-format
255
  msgid ""
256
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
257
  msgstr ""
258
 
259
- #: ../super_socializer.php:2796
260
  #, php-format
261
  msgid ""
262
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -264,7 +269,7 @@ msgid ""
264
  "\"%s\" target=\"_blank\">here</a>"
265
  msgstr ""
266
 
267
- #: ../super_socializer.php:2824
268
  #, php-format
269
  msgid ""
270
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -273,7 +278,7 @@ msgid ""
273
  "your website %s with them. No need to copy-paste any code from their website."
274
  msgstr ""
275
 
276
- #: ../super_socializer.php:2851
277
  #, php-format
278
  msgid ""
279
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -281,7 +286,7 @@ msgid ""
281
  "\"%s\" target=\"_blank\">here</a>"
282
  msgstr ""
283
 
284
- #: ../super_socializer.php:2876
285
  #, php-format
286
  msgid ""
287
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -289,11 +294,11 @@ msgid ""
289
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
290
  msgstr ""
291
 
292
- #: ../super_socializer.php:2876 ../super_socializer.php:2903
293
  msgid "Dismiss"
294
  msgstr ""
295
 
296
- #: ../super_socializer.php:2902
297
  #, php-format
298
  msgid ""
299
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -302,7 +307,7 @@ msgid ""
302
  "that, clear share counts cache from \"Miscellaneous\" section"
303
  msgstr ""
304
 
305
- #: ../super_socializer.php:3115
306
  msgid ""
307
  "Your browser is blocking some features of this website. Please follow the "
308
  "instructions at {support_url} to unblock these."
@@ -314,118 +319,118 @@ msgstr ""
314
  msgid "Settings saved"
315
  msgstr "Параметры сохранены"
316
 
317
- #: ../helper.php:185
318
  #, fuzzy
319
  msgid "Click to toggle help"
320
  msgstr "Нажмите, чтобы скрыть помощь"
321
 
322
- #: ../helper.php:282
323
  msgid "Add-Ons"
324
  msgstr "Дополнения"
325
 
326
- #: ../helper.php:283
327
  msgid "Support Documentation"
328
  msgstr "Техническая документация"
329
 
330
- #: ../helper.php:284
331
  msgid "Settings"
332
  msgstr "Настройки"
333
 
334
- #: ../helper.php:567
335
  msgid "Account linked successfully"
336
  msgstr "Аккаунт успешно связан"
337
 
338
- #: ../helper.php:571
339
  msgid "Account already exists or linked"
340
  msgstr "Аккаунт уже существует или связан"
341
 
342
- #: ../helper.php:607 ../helper.php:609
343
  msgid "Login with"
344
  msgstr "Войти с"
345
 
346
- #: ../helper.php:644 ../helper.php:650
347
  msgid "Currently"
348
  msgstr "На данный момент"
349
 
350
- #: ../helper.php:644 ../helper.php:650
351
  msgid "Connected with"
352
  msgstr "Авторизоваться с помощью"
353
 
354
- #: ../helper.php:644 ../helper.php:650
355
  msgid "Remove"
356
  msgstr "Удалить"
357
 
358
- #: ../helper.php:721
359
  msgid "Social Account Linking"
360
  msgstr "Ссылки на социальный аккаунт"
361
 
362
- #: ../helper.php:771
363
  msgid "Disable Standard Social Sharing on this "
364
  msgstr "Отключить стандартный блок Поделиться на этом"
365
 
366
- #: ../helper.php:776
367
  msgid "Disable Floating Social Sharing on this "
368
  msgstr "Отключить плавающий блок Поделиться на этом"
369
 
370
- #: ../helper.php:781
371
  msgid "Disable Standard like buttons on this "
372
  msgstr "Откдючить стандартные кнопки Нравится на этом"
373
 
374
- #: ../helper.php:786
375
  msgid "Disable Floating like buttons on this "
376
  msgstr "Откдючить плавающие кнопки Нравится на этом"
377
 
378
- #: ../helper.php:791
379
  msgid "Disable Social Commenting on this "
380
  msgstr "Деактивировать социальное комментироване"
381
 
382
- #: ../helper.php:800
383
  msgid "Standard Sharing Interface"
384
  msgstr "Стандартный интерфейс Поделиться"
385
 
386
- #: ../helper.php:806 ../helper.php:825
387
  msgid "Starting share count for "
388
  msgstr "Запустить счетчик поделиться для"
389
 
390
- #: ../helper.php:819
391
  msgid "Floating Sharing Interface"
392
  msgstr "Плавающий интерфейс Поделиться"
393
 
394
- #: ../helper.php:922
395
  msgid "Small Avatar"
396
  msgstr "Небольшой аватар"
397
 
398
- #: ../helper.php:926
399
  msgid "Large Avatar"
400
  msgstr "Большой аватар"
401
 
402
- #: ../helper.php:930 ../admin/general_options.php:89
403
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
404
- #: ../admin/social_login.php:1770 ../admin/like_buttons.php:780
405
  msgid "Save Changes"
406
  msgstr "Сохранить изменения"
407
 
408
- #: ../helper.php:1023
409
  msgid "Click to delete social profile data"
410
  msgstr ""
411
 
412
- #: ../helper.php:1052
413
  #, fuzzy
414
  msgid "Deleting"
415
  msgstr "Настройки"
416
 
417
- #: ../helper.php:1062
418
  msgid "Deleted"
419
  msgstr ""
420
 
421
- #: ../helper.php:1064
422
  msgid "Something bad happened"
423
  msgstr ""
424
 
425
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
426
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
427
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
428
- #: ../admin/social_login.php:5 ../admin/social_login.php:1774
429
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
430
  #, fuzzy, php-format
431
  msgid ""
@@ -480,14 +485,14 @@ msgstr ""
480
  "Можно указать любые дополнительные правила CSS (без тега &lt; style &gt;)"
481
 
482
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
483
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1780
484
  #: ../admin/like_buttons.php:790
485
  #, fuzzy
486
  msgid "Instagram Shoutout"
487
  msgstr "Instagram"
488
 
489
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
490
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1782
491
  #: ../admin/like_buttons.php:792
492
  msgid ""
493
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -630,7 +635,7 @@ msgstr "XProfile интеграция"
630
 
631
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
632
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
633
- #: ../admin/social_login.php:1736 ../admin/like_buttons.php:50
634
  #: ../admin/like_buttons.php:751
635
  msgid "Shortcode & Widget"
636
  msgstr "Шорткод и виджет"
@@ -641,7 +646,7 @@ msgstr "Устранение неисправностей"
641
 
642
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
643
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
644
- #: ../admin/social_login.php:46 ../admin/social_login.php:1750
645
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
646
  msgid "FAQ"
647
  msgstr "Часто задаваемые вопросы (FAQ)"
@@ -873,8 +878,8 @@ msgstr "Пользовательская ссылка"
873
  msgid "Url to share"
874
  msgstr "Ссылка чтобы Поделиться"
875
 
876
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:1021
877
- #: ../admin/social_login.php:1397 ../admin/like_buttons.php:105
878
  #: ../inc/widget.php:949
879
  msgid "Title"
880
  msgstr "Заголовок"
@@ -960,7 +965,7 @@ msgid "Placement"
960
  msgstr "Размещение"
961
 
962
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
963
- #: ../admin/social_login.php:1338 ../admin/social_login.php:1367
964
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
965
  msgid "Homepage"
966
  msgstr "Главная"
@@ -1229,7 +1234,7 @@ msgstr ""
1229
  msgid "Required only to track Facebook share count"
1230
  msgstr ""
1231
 
1232
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:193
1233
  msgid "Facebook App ID"
1234
  msgstr "Facebook App ID"
1235
 
@@ -1242,7 +1247,7 @@ msgstr ""
1242
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1243
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1244
 
1245
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:214
1246
  #, fuzzy
1247
  msgid "Facebook App Secret"
1248
  msgstr "Facebook App ID"
@@ -1430,7 +1435,7 @@ msgstr ""
1430
  "\"Получение информации о новой поломке\" ."
1431
 
1432
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1433
- #: ../admin/social_login.php:1752
1434
  msgid ""
1435
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1436
  "an online website for the plugin to function properly."
@@ -1488,7 +1493,7 @@ msgid ""
1488
  msgstr ""
1489
 
1490
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1491
- #: ../admin/social_login.php:1759
1492
  msgid "Why is my browser blocking some features of the plugin?"
1493
  msgstr "Почему мой браузер блокирует некоторые функции плагина?"
1494
 
@@ -1806,11 +1811,11 @@ msgstr "Основные настройки"
1806
  msgid "Advanced Configuration"
1807
  msgstr "Расширенная конфигурация"
1808
 
1809
- #: ../admin/social_login.php:41 ../admin/social_login.php:1536
1810
  msgid "GDPR"
1811
  msgstr ""
1812
 
1813
- #: ../admin/social_login.php:43 ../admin/social_login.php:1687
1814
  msgid "XProfile Integration"
1815
  msgstr "XProfile интеграция"
1816
 
@@ -1844,96 +1849,123 @@ msgstr ""
1844
 
1845
  #: ../admin/social_login.php:98
1846
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1847
  msgid "Select Social Networks"
1848
  msgstr "Выберите сервисы"
1849
 
1850
- #: ../admin/social_login.php:103
1851
  msgid "Facebook"
1852
  msgstr "Facebook"
1853
 
1854
- #: ../admin/social_login.php:107
1855
  msgid "Twitter"
1856
  msgstr "Twitter"
1857
 
1858
- #: ../admin/social_login.php:111
1859
  msgid "LinkedIn"
1860
  msgstr "LinkedIn"
1861
 
1862
- #: ../admin/social_login.php:115
1863
  #, fuzzy
1864
  msgid "Google"
1865
  msgstr "Google+"
1866
 
1867
- #: ../admin/social_login.php:119
1868
  msgid "Vkontakte"
1869
  msgstr "Вконтакте"
1870
 
1871
- #: ../admin/social_login.php:123
1872
  msgid "Instagram"
1873
  msgstr "Instagram"
1874
 
1875
- #: ../admin/social_login.php:127
1876
  msgid "Steam"
1877
  msgstr "Steam"
1878
 
1879
- #: ../admin/social_login.php:131
1880
  msgid "Line"
1881
  msgstr ""
1882
 
1883
- #: ../admin/social_login.php:135
1884
  msgid "Wordpress"
1885
  msgstr ""
1886
 
1887
- #: ../admin/social_login.php:139
1888
  msgid "Windows Live"
1889
  msgstr ""
1890
 
1891
- #: ../admin/social_login.php:143
1892
  msgid "Yahoo"
1893
  msgstr ""
1894
 
1895
- #: ../admin/social_login.php:147
 
 
 
 
 
 
 
 
 
 
 
 
1896
  msgid "Spotify"
1897
  msgstr ""
1898
 
1899
- #: ../admin/social_login.php:150
1900
  msgid "Dribbble"
1901
  msgstr ""
1902
 
1903
- #: ../admin/social_login.php:154
1904
  msgid "Twitch"
1905
  msgstr "Twitch"
1906
 
1907
- #: ../admin/social_login.php:158
1908
  #, fuzzy
1909
  msgid "Foursquare"
1910
  msgstr "Квадратная"
1911
 
1912
- #: ../admin/social_login.php:162
1913
  msgid "Dropbox"
1914
  msgstr ""
1915
 
1916
- #: ../admin/social_login.php:166
1917
  msgid "Disqus"
1918
  msgstr ""
1919
 
1920
- #: ../admin/social_login.php:170
1921
  msgid "Reddit"
1922
  msgstr ""
1923
 
1924
- #: ../admin/social_login.php:174
1925
  msgid "Github"
1926
  msgstr ""
1927
 
1928
- #: ../admin/social_login.php:178
1929
  msgid "Kakao"
1930
  msgstr ""
1931
 
1932
- #: ../admin/social_login.php:186
1933
  msgid "Select Social ID provider to enable in Social Login"
1934
  msgstr "Выберите социальные сети чтобы активировать вход через социальные сети"
1935
 
1936
- #: ../admin/social_login.php:203
1937
  #, php-format
1938
  msgid ""
1939
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1942,7 +1974,7 @@ msgstr ""
1942
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1943
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1944
 
1945
- #: ../admin/social_login.php:205 ../admin/social_login.php:226
1946
  #, fuzzy
1947
  msgid ""
1948
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
@@ -1950,7 +1982,7 @@ msgstr ""
1950
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
1951
  "упоминания ссылки."
1952
 
1953
- #: ../admin/social_login.php:224
1954
  #, fuzzy, php-format
1955
  msgid ""
1956
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1959,11 +1991,11 @@ msgstr ""
1959
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1960
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1961
 
1962
- #: ../admin/social_login.php:235
1963
  msgid "Twitter API Key"
1964
  msgstr "Twitter API ключ"
1965
 
1966
- #: ../admin/social_login.php:245
1967
  #, php-format
1968
  msgid ""
1969
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1973,7 +2005,7 @@ msgstr ""
1973
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
1974
  "Twitter."
1975
 
1976
- #: ../admin/social_login.php:247 ../admin/social_login.php:272
1977
  #, fuzzy
1978
  msgid ""
1979
  "Paste following url in <strong>Website</strong> option mentioned at the link"
@@ -1981,13 +2013,13 @@ msgstr ""
1981
  "Вставьте следующий URL-адрес в <strong>URL веб-сайта</strong> для упоминания "
1982
  "ссылки"
1983
 
1984
- #: ../admin/social_login.php:251 ../admin/social_login.php:276
1985
- #: ../admin/social_login.php:464 ../admin/social_login.php:484
1986
- #: ../admin/social_login.php:685 ../admin/social_login.php:705
1987
- #: ../admin/social_login.php:726 ../admin/social_login.php:746
1988
- #: ../admin/social_login.php:851 ../admin/social_login.php:871
1989
- #: ../admin/social_login.php:936 ../admin/social_login.php:956
1990
- #: ../admin/social_login.php:978 ../admin/social_login.php:998
1991
  #, fuzzy
1992
  msgid ""
1993
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -1996,11 +2028,11 @@ msgstr ""
1996
  "Вставьте следующий URL-адрес в <strong>URL веб-сайта</strong> для упоминания "
1997
  "ссылки"
1998
 
1999
- #: ../admin/social_login.php:260
2000
  msgid "Twitter API Secret"
2001
  msgstr "Twitter API секретный ключ"
2002
 
2003
- #: ../admin/social_login.php:270
2004
  #, php-format
2005
  msgid ""
2006
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -2010,12 +2042,12 @@ msgstr ""
2010
  "href=\"%s\" target=\"_blank\">здесь</a> для получения секретного ключа "
2011
  "приложения Facebook."
2012
 
2013
- #: ../admin/social_login.php:285
2014
  #, fuzzy
2015
  msgid "LinkedIn Client ID"
2016
  msgstr "LinkedIn"
2017
 
2018
- #: ../admin/social_login.php:295
2019
  #, fuzzy, php-format
2020
  msgid ""
2021
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2025,8 +2057,8 @@ msgstr ""
2025
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2026
  "LinkedIn."
2027
 
2028
- #: ../admin/social_login.php:297 ../admin/social_login.php:318
2029
- #: ../admin/social_login.php:504 ../admin/social_login.php:524
2030
  #, fuzzy
2031
  msgid ""
2032
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -2035,12 +2067,12 @@ msgstr ""
2035
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2036
  "упоминания ссылки."
2037
 
2038
- #: ../admin/social_login.php:306
2039
  #, fuzzy
2040
  msgid "LinkedIn Client Secret"
2041
  msgstr "LinkedIn"
2042
 
2043
- #: ../admin/social_login.php:316
2044
  #, fuzzy, php-format
2045
  msgid ""
2046
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2051,12 +2083,12 @@ msgstr ""
2051
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2052
  "LinkedIn."
2053
 
2054
- #: ../admin/social_login.php:327
2055
  #, fuzzy
2056
  msgid "Google Client ID"
2057
  msgstr "Google+ ID клиента"
2058
 
2059
- #: ../admin/social_login.php:337
2060
  #, fuzzy, php-format
2061
  msgid ""
2062
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2065,7 +2097,7 @@ msgstr ""
2065
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2066
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2067
 
2068
- #: ../admin/social_login.php:339 ../admin/social_login.php:360
2069
  #, fuzzy
2070
  msgid ""
2071
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2074,12 +2106,12 @@ msgstr ""
2074
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2075
  "упоминания ссылки."
2076
 
2077
- #: ../admin/social_login.php:348
2078
  #, fuzzy
2079
  msgid "Google Client Secret"
2080
  msgstr "Google+ ID клиента"
2081
 
2082
- #: ../admin/social_login.php:358
2083
  #, fuzzy, php-format
2084
  msgid ""
2085
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2088,11 +2120,11 @@ msgstr ""
2088
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2089
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2090
 
2091
- #: ../admin/social_login.php:369
2092
  msgid "Vkontakte Application ID"
2093
  msgstr " ID приложения Vkontakte"
2094
 
2095
- #: ../admin/social_login.php:379 ../admin/social_login.php:400
2096
  #, php-format
2097
  msgid ""
2098
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2103,7 +2135,7 @@ msgstr ""
2103
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения "
2104
  "Vkontakte."
2105
 
2106
- #: ../admin/social_login.php:381 ../admin/social_login.php:402
2107
  #, fuzzy
2108
  msgid ""
2109
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2112,17 +2144,17 @@ msgstr ""
2112
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2113
  "упоминания ссылки."
2114
 
2115
- #: ../admin/social_login.php:390
2116
  #, fuzzy
2117
  msgid "Vkontakte Secure key"
2118
  msgstr "Вконтакте"
2119
 
2120
- #: ../admin/social_login.php:411
2121
  #, fuzzy
2122
  msgid "Instagram App ID"
2123
  msgstr "Instagram ID клиента"
2124
 
2125
- #: ../admin/social_login.php:421
2126
  #, fuzzy, php-format
2127
  msgid ""
2128
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2132,7 +2164,7 @@ msgstr ""
2132
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в "
2133
  "Instagram."
2134
 
2135
- #: ../admin/social_login.php:423 ../admin/social_login.php:444
2136
  #, fuzzy
2137
  msgid ""
2138
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2141,12 +2173,12 @@ msgstr ""
2141
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2142
  "упоминания ссылки."
2143
 
2144
- #: ../admin/social_login.php:432
2145
  #, fuzzy
2146
  msgid "Instagram App Secret"
2147
  msgstr "Введите имя пользователя Instagram."
2148
 
2149
- #: ../admin/social_login.php:442
2150
  #, fuzzy, php-format
2151
  msgid ""
2152
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2156,11 +2188,11 @@ msgstr ""
2156
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в "
2157
  "Instagram."
2158
 
2159
- #: ../admin/social_login.php:453
2160
  msgid "Line Channel ID"
2161
  msgstr ""
2162
 
2163
- #: ../admin/social_login.php:462
2164
  #, fuzzy, php-format
2165
  msgid ""
2166
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2170,12 +2202,12 @@ msgstr ""
2170
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2171
  "LinkedIn."
2172
 
2173
- #: ../admin/social_login.php:473
2174
  #, fuzzy
2175
  msgid "Line Channel Secret"
2176
  msgstr "LinkedIn"
2177
 
2178
- #: ../admin/social_login.php:482
2179
  #, fuzzy, php-format
2180
  msgid ""
2181
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2185,12 +2217,12 @@ msgstr ""
2185
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2186
  "LinkedIn."
2187
 
2188
- #: ../admin/social_login.php:493
2189
  #, fuzzy
2190
  msgid "Wordpress Client ID"
2191
  msgstr "Google+ ID клиента"
2192
 
2193
- #: ../admin/social_login.php:502
2194
  #, fuzzy, php-format
2195
  msgid ""
2196
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2199,12 +2231,12 @@ msgstr ""
2199
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2200
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2201
 
2202
- #: ../admin/social_login.php:513
2203
  #, fuzzy
2204
  msgid "Wordpress Client Secret"
2205
  msgstr "Google+ ID клиента"
2206
 
2207
- #: ../admin/social_login.php:522
2208
  #, fuzzy, php-format
2209
  msgid ""
2210
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2214,12 +2246,12 @@ msgstr ""
2214
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2215
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2216
 
2217
- #: ../admin/social_login.php:533
2218
  #, fuzzy
2219
  msgid "Microsoft Client ID"
2220
  msgstr "Google+ ID клиента"
2221
 
2222
- #: ../admin/social_login.php:542
2223
  #, fuzzy, php-format
2224
  msgid ""
2225
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2228,9 +2260,9 @@ msgstr ""
2228
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2229
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2230
 
2231
- #: ../admin/social_login.php:544 ../admin/social_login.php:564
2232
- #: ../admin/social_login.php:643 ../admin/social_login.php:663
2233
- #: ../admin/social_login.php:808 ../admin/social_login.php:828
2234
  #, fuzzy
2235
  msgid ""
2236
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2239,12 +2271,12 @@ msgstr ""
2239
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2240
  "упоминания ссылки."
2241
 
2242
- #: ../admin/social_login.php:553
2243
  #, fuzzy
2244
  msgid "Microsoft Client Secret"
2245
  msgstr "Google+ ID клиента"
2246
 
2247
- #: ../admin/social_login.php:562
2248
  #, fuzzy, php-format
2249
  msgid ""
2250
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2254,12 +2286,12 @@ msgstr ""
2254
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2255
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2256
 
2257
- #: ../admin/social_login.php:572
2258
  #, fuzzy
2259
  msgid "Steam API Key"
2260
  msgstr "Twitter API ключ"
2261
 
2262
- #: ../admin/social_login.php:581
2263
  #, fuzzy, php-format
2264
  msgid ""
2265
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2269,19 +2301,19 @@ msgstr ""
2269
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2270
  "Twitter."
2271
 
2272
- #: ../admin/social_login.php:582
2273
  #, fuzzy
2274
  msgid "Save following <strong>domain</strong> to get the key"
2275
  msgstr ""
2276
  "Вставьте следующий URL-адрес в <strong>URL веб-сайта</strong> для упоминания "
2277
  "ссылки"
2278
 
2279
- #: ../admin/social_login.php:591
2280
  #, fuzzy
2281
  msgid "Yahoo Client ID"
2282
  msgstr "Google+ ID клиента"
2283
 
2284
- #: ../admin/social_login.php:600
2285
  #, fuzzy, php-format
2286
  msgid ""
2287
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2290,21 +2322,21 @@ msgstr ""
2290
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2291
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2292
 
2293
- #: ../admin/social_login.php:602 ../admin/social_login.php:622
2294
  #, fuzzy
2295
  msgid ""
2296
- "Paste following url in <strong>Redirect URI(s)</strong> option mentioned at "
2297
- "the link"
2298
  msgstr ""
2299
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2300
  "упоминания ссылки."
2301
 
2302
- #: ../admin/social_login.php:611
2303
  #, fuzzy
2304
  msgid "Yahoo Client Secret"
2305
  msgstr "Google+ ID клиента"
2306
 
2307
- #: ../admin/social_login.php:620
2308
  #, fuzzy, php-format
2309
  msgid ""
2310
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2313,12 +2345,133 @@ msgstr ""
2313
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2314
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2315
 
2316
- #: ../admin/social_login.php:632
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2317
  #, fuzzy
2318
  msgid "Spotify Client ID"
2319
  msgstr "Google+ ID клиента"
2320
 
2321
- #: ../admin/social_login.php:641
2322
  #, fuzzy, php-format
2323
  msgid ""
2324
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2327,12 +2480,12 @@ msgstr ""
2327
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2328
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2329
 
2330
- #: ../admin/social_login.php:652
2331
  #, fuzzy
2332
  msgid "Spotify Client Secret"
2333
  msgstr "Google+ ID клиента"
2334
 
2335
- #: ../admin/social_login.php:661
2336
  #, fuzzy, php-format
2337
  msgid ""
2338
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2342,12 +2495,12 @@ msgstr ""
2342
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2343
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2344
 
2345
- #: ../admin/social_login.php:674
2346
  #, fuzzy
2347
  msgid "Dribbble Client ID"
2348
  msgstr "Google+ ID клиента"
2349
 
2350
- #: ../admin/social_login.php:683
2351
  #, fuzzy, php-format
2352
  msgid ""
2353
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2356,12 +2509,12 @@ msgstr ""
2356
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2357
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2358
 
2359
- #: ../admin/social_login.php:694
2360
  #, fuzzy
2361
  msgid "Dribbble Client Secret"
2362
  msgstr "Google+ ID клиента"
2363
 
2364
- #: ../admin/social_login.php:703
2365
  #, fuzzy, php-format
2366
  msgid ""
2367
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2371,12 +2524,12 @@ msgstr ""
2371
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2372
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2373
 
2374
- #: ../admin/social_login.php:715
2375
  #, fuzzy
2376
  msgid "Twitch Client ID"
2377
  msgstr "Добавьте ваш Twitch Client ID здесь"
2378
 
2379
- #: ../admin/social_login.php:724
2380
  #, fuzzy, php-format
2381
  msgid ""
2382
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2385,12 +2538,12 @@ msgstr ""
2385
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2386
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2387
 
2388
- #: ../admin/social_login.php:735
2389
  #, fuzzy
2390
  msgid "Twitch Client Secret"
2391
  msgstr "Добавьте ваш Twitch Client ID здесь"
2392
 
2393
- #: ../admin/social_login.php:744
2394
  #, fuzzy, php-format
2395
  msgid ""
2396
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2399,12 +2552,12 @@ msgstr ""
2399
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2400
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2401
 
2402
- #: ../admin/social_login.php:757
2403
  #, fuzzy
2404
  msgid "Foursquare Client ID"
2405
  msgstr "Google+ ID клиента"
2406
 
2407
- #: ../admin/social_login.php:766
2408
  #, fuzzy, php-format
2409
  msgid ""
2410
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2414,7 +2567,7 @@ msgstr ""
2414
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2415
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2416
 
2417
- #: ../admin/social_login.php:768 ../admin/social_login.php:788
2418
  #, fuzzy
2419
  msgid ""
2420
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
@@ -2423,12 +2576,12 @@ msgstr ""
2423
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2424
  "упоминания ссылки."
2425
 
2426
- #: ../admin/social_login.php:777
2427
  #, fuzzy
2428
  msgid "Foursquare Client Secret"
2429
  msgstr "Google+ ID клиента"
2430
 
2431
- #: ../admin/social_login.php:786
2432
  #, fuzzy, php-format
2433
  msgid ""
2434
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2438,11 +2591,11 @@ msgstr ""
2438
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2439
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2440
 
2441
- #: ../admin/social_login.php:797
2442
  msgid "Dropbox App Key"
2443
  msgstr ""
2444
 
2445
- #: ../admin/social_login.php:806
2446
  #, fuzzy, php-format
2447
  msgid ""
2448
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2451,12 +2604,12 @@ msgstr ""
2451
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
2452
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
2453
 
2454
- #: ../admin/social_login.php:817
2455
  #, fuzzy
2456
  msgid "Dropbox App Secret"
2457
  msgstr "Facebook App ID"
2458
 
2459
- #: ../admin/social_login.php:826
2460
  #, fuzzy, php-format
2461
  msgid ""
2462
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2465,11 +2618,11 @@ msgstr ""
2465
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
2466
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
2467
 
2468
- #: ../admin/social_login.php:840
2469
  msgid "Disqus Public Key"
2470
  msgstr ""
2471
 
2472
- #: ../admin/social_login.php:849
2473
  #, fuzzy, php-format
2474
  msgid ""
2475
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2478,12 +2631,12 @@ msgstr ""
2478
  "Необходимо для входа через Xing. Пожалуйста, посмотрите документацию <a href="
2479
  "\"%s\" target=\"_blank\">здесь</a> для получения ключа потребителя Xing."
2480
 
2481
- #: ../admin/social_login.php:860
2482
  #, fuzzy
2483
  msgid "Disqus Secret Key"
2484
  msgstr "Короткое имя для панели Disqus (выезжает сбоку при нажатии)"
2485
 
2486
- #: ../admin/social_login.php:869
2487
  #, fuzzy, php-format
2488
  msgid ""
2489
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2492,12 +2645,12 @@ msgstr ""
2492
  "Необходимо для входа через Xing. Пожалуйста, посмотрите документацию <a href="
2493
  "\"%s\" target=\"_blank\">здесь</a> для получения ключа потребителя Xing."
2494
 
2495
- #: ../admin/social_login.php:882
2496
  #, fuzzy
2497
  msgid "Reddit Client ID"
2498
  msgstr "Добавьте ваш Twitch Client ID здесь"
2499
 
2500
- #: ../admin/social_login.php:891
2501
  #, fuzzy, php-format
2502
  msgid ""
2503
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2506,7 +2659,7 @@ msgstr ""
2506
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2507
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2508
 
2509
- #: ../admin/social_login.php:893 ../admin/social_login.php:913
2510
  #, fuzzy
2511
  msgid ""
2512
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
@@ -2515,12 +2668,12 @@ msgstr ""
2515
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2516
  "упоминания ссылки."
2517
 
2518
- #: ../admin/social_login.php:902
2519
  #, fuzzy
2520
  msgid "Reddit Client Secret"
2521
  msgstr "Добавьте ваш Twitch Client ID здесь"
2522
 
2523
- #: ../admin/social_login.php:911
2524
  #, fuzzy, php-format
2525
  msgid ""
2526
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2529,12 +2682,12 @@ msgstr ""
2529
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2530
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2531
 
2532
- #: ../admin/social_login.php:925
2533
  #, fuzzy
2534
  msgid "Github Client ID"
2535
  msgstr "Добавьте ваш Twitch Client ID здесь"
2536
 
2537
- #: ../admin/social_login.php:934
2538
  #, fuzzy, php-format
2539
  msgid ""
2540
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2543,12 +2696,12 @@ msgstr ""
2543
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2544
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2545
 
2546
- #: ../admin/social_login.php:945
2547
  #, fuzzy
2548
  msgid "Github Client Secret"
2549
  msgstr "Добавьте ваш Twitch Client ID здесь"
2550
 
2551
- #: ../admin/social_login.php:954
2552
  #, fuzzy, php-format
2553
  msgid ""
2554
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2557,12 +2710,12 @@ msgstr ""
2557
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2558
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2559
 
2560
- #: ../admin/social_login.php:967
2561
  #, fuzzy
2562
  msgid "Kakao Client ID"
2563
  msgstr "Google+ ID клиента"
2564
 
2565
- #: ../admin/social_login.php:976
2566
  #, fuzzy, php-format
2567
  msgid ""
2568
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2571,12 +2724,12 @@ msgstr ""
2571
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2572
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2573
 
2574
- #: ../admin/social_login.php:987
2575
  #, fuzzy
2576
  msgid "Kakao Client Secret"
2577
  msgstr "Google+ ID клиента"
2578
 
2579
- #: ../admin/social_login.php:996
2580
  #, fuzzy, php-format
2581
  msgid ""
2582
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2585,67 +2738,67 @@ msgstr ""
2585
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2586
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2587
 
2588
- #: ../admin/social_login.php:1016
2589
  msgid "Social Login Options"
2590
  msgstr "Параметры входа через соцсети"
2591
 
2592
- #: ../admin/social_login.php:1031
2593
  msgid "Text to display above the Social Login interface"
2594
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
2595
 
2596
- #: ../admin/social_login.php:1039
2597
  msgid "Trigger social login in the same browser tab"
2598
  msgstr ""
2599
 
2600
- #: ../admin/social_login.php:1049
2601
  msgid "Trigger social login in the same browser tab instead of a popup window"
2602
  msgstr ""
2603
 
2604
- #: ../admin/social_login.php:1056
2605
  #, fuzzy
2606
  msgid "Center align icons"
2607
  msgstr "Переставить иконы"
2608
 
2609
- #: ../admin/social_login.php:1066
2610
  #, fuzzy
2611
  msgid "Center align social login icons"
2612
  msgstr "Параметры входа через соцсети"
2613
 
2614
- #: ../admin/social_login.php:1073
2615
  msgid "Enable at login page"
2616
  msgstr "Включить страницу входа"
2617
 
2618
- #: ../admin/social_login.php:1083
2619
  msgid ""
2620
  "Social Login interface will get enabled at the login page of your website"
2621
  msgstr ""
2622
  "Интерфейс входа через социальные сети будет активирован на странице входа "
2623
 
2624
- #: ../admin/social_login.php:1090
2625
  msgid "Enable at register page"
2626
  msgstr "Включить на странице регистрации"
2627
 
2628
- #: ../admin/social_login.php:1100
2629
  msgid ""
2630
  "Social Login interface will get enabled at the registration page of your "
2631
  "website"
2632
  msgstr "Интерфейс входа через социальные сети будет активирован на странице"
2633
 
2634
- #: ../admin/social_login.php:1107
2635
  msgid "Enable at comment form"
2636
  msgstr "Включить в форму комментирования"
2637
 
2638
- #: ../admin/social_login.php:1117
2639
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2640
  msgstr ""
2641
  "Интерфейс входа через социальные сети будет активирован в вашей форме "
2642
  "комментирования Wordpress"
2643
 
2644
- #: ../admin/social_login.php:1131
2645
  msgid "Enable before WooCommerce Customer Login Form"
2646
  msgstr "Активировать перед формой входа покупателя в WooCommerce"
2647
 
2648
- #: ../admin/social_login.php:1141
2649
  msgid ""
2650
  "Social Login Interface will get enabled before the customer login form at "
2651
  "WooCommerce My Account page"
@@ -2653,12 +2806,12 @@ msgstr ""
2653
  "Интерфейс входа через социальные сети будет активирован перед формой входа "
2654
  "для покупателя на странице Мой Аккаунт в WooCommerce"
2655
 
2656
- #: ../admin/social_login.php:1148
2657
  #, fuzzy
2658
  msgid "Enable at WooCommerce Customer Login Form"
2659
  msgstr "Включить после формы входа клиента WooCommerce"
2660
 
2661
- #: ../admin/social_login.php:1158
2662
  #, fuzzy
2663
  msgid ""
2664
  "Integrate Social Login Interface with the customer login form at WooCommerce "
@@ -2667,12 +2820,12 @@ msgstr ""
2667
  "Интерфейс входа через социальные сети будет активирован после формы входа "
2668
  "для покупателя на странице Мой Аккаунт в WooCommerce"
2669
 
2670
- #: ../admin/social_login.php:1165
2671
  #, fuzzy
2672
  msgid "Enable at WooCommerce Customer Register Form"
2673
  msgstr "Включить после формы входа клиента WooCommerce"
2674
 
2675
- #: ../admin/social_login.php:1175
2676
  #, fuzzy
2677
  msgid ""
2678
  "Integrate Social Login Interface with the customer register form at "
@@ -2681,22 +2834,22 @@ msgstr ""
2681
  "Интерфейс входа через социальные сети будет активирован после формы входа "
2682
  "для покупателя на странице Мой Аккаунт в WooCommerce"
2683
 
2684
- #: ../admin/social_login.php:1182
2685
  msgid "Enable at WooCommerce checkout page"
2686
  msgstr "Включить на странице оформления заказа WooCommerce"
2687
 
2688
- #: ../admin/social_login.php:1192
2689
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2690
  msgstr ""
2691
  "Интерфейс входа через социальные сети будет активирован на странице "
2692
  "оформления заказа в WooCommerce"
2693
 
2694
- #: ../admin/social_login.php:1202
2695
  msgid "Auto-approve comments made by Social Login users"
2696
  msgstr ""
2697
  "Автоодобрение комментариев для пользователей, вошедших через социальные сети"
2698
 
2699
- #: ../admin/social_login.php:1212
2700
  msgid ""
2701
  "If this option is enabled, and WordPress comment is made by Social Login "
2702
  "user, comment will get approved immediately without keeping in moderation."
@@ -2705,15 +2858,15 @@ msgstr ""
2705
  "который вошел через социальные сети, то комментарий будет опубликован сразу "
2706
  "без модерации."
2707
 
2708
- #: ../admin/social_login.php:1213
2709
  msgid "Note: This is not related to Facebook comments"
2710
  msgstr "Примечание: Это не связано с комментариями от Facebook"
2711
 
2712
- #: ../admin/social_login.php:1222
2713
  msgid "Enable social avatar"
2714
  msgstr "Включение социальных аватар"
2715
 
2716
- #: ../admin/social_login.php:1232
2717
  msgid ""
2718
  "Social profile pictures of the logged in user will be displayed as profile "
2719
  "avatar"
@@ -2721,30 +2874,30 @@ msgstr ""
2721
  "Изображения пользователя в социальных сетях будет использоваться как "
2722
  "изображение профиля на сайте"
2723
 
2724
- #: ../admin/social_login.php:1241
2725
  msgid "Avatar quality"
2726
  msgstr "Качество аватары"
2727
 
2728
- #: ../admin/social_login.php:1244
2729
  msgid "Average"
2730
  msgstr "Среднее"
2731
 
2732
- #: ../admin/social_login.php:1245
2733
  msgid "Best"
2734
  msgstr "лучший"
2735
 
2736
- #: ../admin/social_login.php:1252
2737
  msgid "Choose avatar quality"
2738
  msgstr "Выберите качество аватара"
2739
 
2740
- #: ../admin/social_login.php:1260
2741
  msgid ""
2742
  "Show option for users to update social avatar at BuddyPress profile page"
2743
  msgstr ""
2744
  "Показать вариант для пользователей для обновления социального аватара на "
2745
  "странице профиля BuddyPress"
2746
 
2747
- #: ../admin/social_login.php:1270
2748
  msgid ""
2749
  "If enabled, users would be able to update their social avatar from \"Profile "
2750
  "photo\" section in BuddyPress profile at front-end"
@@ -2752,7 +2905,7 @@ msgstr ""
2752
  "Если этот параметр включен, пользователи смогут обновить свой социальный "
2753
  "аватар из раздела «Профиль» фото в профиле BuddyPress "
2754
 
2755
- #: ../admin/social_login.php:1290
2756
  msgid ""
2757
  "If enabled and Social ID provider does not provide user's email address on "
2758
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2762,13 +2915,13 @@ msgstr ""
2762
  "для входа, пользователю потребуется ввести свою почту. В противном же "
2763
  "случае, почта будет создана по образцу."
2764
 
2765
- #: ../admin/social_login.php:1298
2766
  msgid "Send post-registration email to user to set account password"
2767
  msgstr ""
2768
  "Отправить после регистрации по электронной почте пользователю письмо чтобы "
2769
  "установить пароль учетной записи"
2770
 
2771
- #: ../admin/social_login.php:1308
2772
  msgid ""
2773
  "If enabled, an email will be sent to user after registration through Social "
2774
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2778,13 +2931,13 @@ msgstr ""
2778
  "социальные сети будет отправлено письмо с именем и пароль чтобы была "
2779
  "возможность зайти черед стандартную форму авторизации"
2780
 
2781
- #: ../admin/social_login.php:1315
2782
  msgid "Send new user registration notification email to admin"
2783
  msgstr ""
2784
  "Отправить уведомление о регистрации нового пользователя по электронной почте "
2785
  "администратору"
2786
 
2787
- #: ../admin/social_login.php:1325
2788
  msgid ""
2789
  "If enabled, an email will be sent to admin after new user registers through "
2790
  "Social Login, notifying admin about the new user registration"
@@ -2792,41 +2945,41 @@ msgstr ""
2792
  "Если опция включена, на почту администратора прийдет уведомление о "
2793
  "регистрации нового пользователя через соцсети."
2794
 
2795
- #: ../admin/social_login.php:1332
2796
  msgid "Login redirection"
2797
  msgstr "Перенаправления входа"
2798
 
2799
- #: ../admin/social_login.php:1336
2800
  msgid "Same page where user logged in"
2801
  msgstr "Та же страница, на которой пользователь произвел вход "
2802
 
2803
- #: ../admin/social_login.php:1340 ../admin/social_login.php:1369
2804
  msgid "Account dashboard"
2805
  msgstr "Страница управления моим аккаунтом"
2806
 
2807
- #: ../admin/social_login.php:1343 ../admin/social_login.php:1372
2808
  msgid "BuddyPress profile page"
2809
  msgstr "Страница профиля BuddyPress"
2810
 
2811
- #: ../admin/social_login.php:1346 ../admin/social_login.php:1375
2812
  msgid "Custom Url"
2813
  msgstr "Пользовательская ссылка"
2814
 
2815
- #: ../admin/social_login.php:1354
2816
  msgid "User will be redirected to the selected page after Social Login"
2817
  msgstr ""
2818
  "Пользователь будет перенаправлен на выбранную страницу после входа через "
2819
  "социальные сети"
2820
 
2821
- #: ../admin/social_login.php:1361
2822
  msgid "Registration redirection"
2823
  msgstr "Перенаправлении регистрации"
2824
 
2825
- #: ../admin/social_login.php:1365
2826
  msgid "Same page from where user registered"
2827
  msgstr "URL целевой страницы, на которой зарегистрирован пользователь"
2828
 
2829
- #: ../admin/social_login.php:1383
2830
  msgid ""
2831
  "User will be redirected to the selected page after registration (first "
2832
  "Social Login) through Social Login"
@@ -2834,23 +2987,23 @@ msgstr ""
2834
  "Пользователь будет перенаправлен на выбранную страницу после регистрации "
2835
  "(первый вход чере социальные сети) через социальные логин"
2836
 
2837
- #: ../admin/social_login.php:1392
2838
  #, fuzzy
2839
  msgid "Social Account Linking Options"
2840
  msgstr "Ссылки на социальный аккаунт"
2841
 
2842
- #: ../admin/social_login.php:1407
2843
  #, fuzzy
2844
  msgid "Text to display above the Social Account Linking interface"
2845
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
2846
 
2847
- #: ../admin/social_login.php:1414
2848
  msgid ""
2849
  "Link social account to already existing account, if email address matches"
2850
  msgstr ""
2851
  "Связывает аккаунт соцсетей с существующим аккаунтом если почта совпадает."
2852
 
2853
- #: ../admin/social_login.php:1424
2854
  #, fuzzy
2855
  msgid ""
2856
  "If email address of the user's Social Account matches with an already "
@@ -2863,11 +3016,11 @@ msgstr ""
2863
  "связан с существующей учетной записью. Пользователь сможет управлять этим на "
2864
  "странице профиля."
2865
 
2866
- #: ../admin/social_login.php:1432
2867
  msgid "Enable social account linking at BuddyPress profile page"
2868
  msgstr "Интегрирует социальный аккаунт на странице профиля BuddyPress"
2869
 
2870
- #: ../admin/social_login.php:1442
2871
  msgid ""
2872
  "Enable this option to show social account linking interface at BuddyPress "
2873
  "profile page"
@@ -2875,15 +3028,15 @@ msgstr ""
2875
  "Активируйте эту функцию чтобы интегрировать социальный аккаунт на странице "
2876
  "профиля BuddyPress"
2877
 
2878
- #: ../admin/social_login.php:1453
2879
  msgid "Email popup options"
2880
  msgstr "Параметры всплывающей электронной Почты"
2881
 
2882
- #: ../admin/social_login.php:1458
2883
  msgid "Text on 'Email required' popup"
2884
  msgstr "Текст на всплывающем окне «Электронная почта требуется» "
2885
 
2886
- #: ../admin/social_login.php:1468
2887
  msgid ""
2888
  "This text will be displayed on email required popup. Leave empty if not "
2889
  "required."
@@ -2891,11 +3044,11 @@ msgstr ""
2891
  "Этот текст будет отображаться на всплывающем окне. требующем почту. Оставьте "
2892
  "поле пустым если не требуется."
2893
 
2894
- #: ../admin/social_login.php:1476
2895
  msgid "Error message for 'Email required' popup"
2896
  msgstr "Сообщение ошибки во всплывающем окне \"Требуется почта\""
2897
 
2898
- #: ../admin/social_login.php:1486
2899
  msgid ""
2900
  "This message will be displayed to user if it provides invalid or already "
2901
  "registered email"
@@ -2903,11 +3056,11 @@ msgstr ""
2903
  "Это сообщение будет показано пользователю, если он предоставил неверную или "
2904
  "уже используемую почту"
2905
 
2906
- #: ../admin/social_login.php:1494
2907
  msgid "Email popup height"
2908
  msgstr "Высота высплывающего окна"
2909
 
2910
- #: ../admin/social_login.php:1504
2911
  msgid ""
2912
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2913
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2917,11 +3070,11 @@ msgstr ""
2917
  "\", то вы можете увеличить высотку всплывающего окна. Оставьте пустым для "
2918
  "базового значения."
2919
 
2920
- #: ../admin/social_login.php:1511
2921
  msgid "Enable email verification"
2922
  msgstr "Включить проверку электронной почты"
2923
 
2924
- #: ../admin/social_login.php:1521
2925
  msgid ""
2926
  "If enabled, email provided by the user will be verified by sending a "
2927
  "confirmation link to that email. User would not be able to login without "
@@ -2930,108 +3083,108 @@ msgstr ""
2930
  "Если опция включена, то на почту, которую указал пользователь, придет письмо "
2931
  "с подтверждением. Пользователь не сможет зайти без подтверждения своей почты."
2932
 
2933
- #: ../admin/social_login.php:1541
2934
  #, fuzzy
2935
  msgid "Enable GDPR opt-in"
2936
  msgstr "Активировать комментирование через Disqus"
2937
 
2938
- #: ../admin/social_login.php:1551
2939
  msgid ""
2940
  "Enable it to show GDPR opt-in for social login and social account linking"
2941
  msgstr ""
2942
 
2943
- #: ../admin/social_login.php:1559
2944
  #, fuzzy
2945
  msgid "Placement of GDPR opt-in"
2946
  msgstr "Активировать комментирование через Disqus"
2947
 
2948
- #: ../admin/social_login.php:1563
2949
  #, fuzzy
2950
  msgid "Above Social Login icons"
2951
  msgstr "Параметры входа через соцсети"
2952
 
2953
- #: ../admin/social_login.php:1565
2954
  #, fuzzy
2955
  msgid "Below Social Login icons"
2956
  msgstr "Параметры входа через соцсети"
2957
 
2958
- #: ../admin/social_login.php:1571
2959
  #, fuzzy
2960
  msgid "Placement of GDPR opt-in above or below the social login icons"
2961
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
2962
 
2963
- #: ../admin/social_login.php:1578
2964
  msgid "Opt-in text"
2965
  msgstr ""
2966
 
2967
- #: ../admin/social_login.php:1588
2968
  #, fuzzy
2969
  msgid "Text for the GDPR opt-in"
2970
  msgstr "Активировать комментирование через Disqus"
2971
 
2972
- #: ../admin/social_login.php:1595
2973
  msgid "Text to link to Terms-Conditions page"
2974
  msgstr ""
2975
 
2976
- #: ../admin/social_login.php:1605
2977
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2978
  msgstr ""
2979
 
2980
- #: ../admin/social_login.php:1612
2981
  msgid "Terms-Conditions Url"
2982
  msgstr ""
2983
 
2984
- #: ../admin/social_login.php:1622
2985
  #, fuzzy
2986
  msgid "Url of the terms-conditions page of your website"
2987
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
2988
 
2989
- #: ../admin/social_login.php:1629
2990
  msgid "Text to link to Privacy Policy page"
2991
  msgstr ""
2992
 
2993
- #: ../admin/social_login.php:1639
2994
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2995
  msgstr ""
2996
 
2997
- #: ../admin/social_login.php:1646
2998
  msgid "Privacy Policy Url"
2999
  msgstr ""
3000
 
3001
- #: ../admin/social_login.php:1656
3002
  #, fuzzy
3003
  msgid "Url of the privacy policy page of your website"
3004
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
3005
 
3006
- #: ../admin/social_login.php:1707 ../inc/widget.php:260 ../inc/widget.php:438
3007
  #: ../inc/widget.php:602 ../inc/widget.php:750
3008
  msgid "Select"
3009
  msgstr "Выбор"
3010
 
3011
- #: ../admin/social_login.php:1738
3012
  msgid "Social Login Shortcode & Widget"
3013
  msgstr "Шорткод и виджет для входа через социальные сети "
3014
 
3015
- #: ../admin/social_login.php:1739
3016
  msgid "Social Linking Shortcode"
3017
  msgstr "Шорткод социальных ссылок"
3018
 
3019
- #: ../admin/social_login.php:1754
3020
  #, fuzzy
3021
  msgid "Why is social login not working?"
3022
  msgstr "Почему Facebook логин не работает?"
3023
 
3024
- #: ../admin/social_login.php:1755
3025
  msgid ""
3026
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3027
  "belong to the same app"
3028
  msgstr ""
3029
 
3030
- #: ../admin/social_login.php:1757
3031
  msgid "Social Login not working with Varnish enabled"
3032
  msgstr ""
3033
 
3034
- #: ../admin/social_login.php:1758
3035
  msgid ""
3036
  "Why the user is not appearing logged in even after Social Login until the "
3037
  "webpage is refreshed manually?"
@@ -3242,6 +3395,10 @@ msgstr "Искать"
3242
  msgid "Archives"
3243
  msgstr "Архивы "
3244
 
 
 
 
 
3245
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3246
  msgid "Invalid request"
3247
  msgstr "Неверный Запрос!"
@@ -3250,27 +3407,31 @@ msgstr "Неверный Запрос!"
3250
  msgid "Providers not selected"
3251
  msgstr "Сервисы не выбраны"
3252
 
3253
- #: ../inc/social_login.php:968
 
 
 
 
3254
  msgid "Email"
3255
  msgstr "Email"
3256
 
3257
- #: ../inc/social_login.php:969
3258
  msgid "Confirm email"
3259
  msgstr "Подтвердить e-mail"
3260
 
3261
- #: ../inc/social_login.php:971
3262
  msgid "Save"
3263
  msgstr "Сохранить"
3264
 
3265
- #: ../inc/social_login.php:972
3266
  msgid "Cancel"
3267
  msgstr "Отменить"
3268
 
3269
- #: ../inc/social_login.php:1046
3270
  msgid "Email Verification"
3271
  msgstr "Подтверждение адреса электронной почты"
3272
 
3273
- #: ../inc/social_login.php:1048
3274
  msgid ""
3275
  "Please click on the following link or paste it in browser to verify your "
3276
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-06 12:20+0530\n"
6
+ "PO-Revision-Date: 2021-04-06 12:20+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Russian\n"
9
  "Language: ru_RU\n"
17
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../super_socializer.php:1634
21
  msgid ""
22
  "cURL is not enabled at your website server. Please contact your website "
23
  "server administrator to enable it."
25
  "Curl не включен в вашем веб-сайте. Вам, возможно, потребуется обратиться к "
26
  "администратору вашего сайта, чтобы включить это."
27
 
28
+ #: ../super_socializer.php:1662
29
  #, fuzzy, php-format
30
  msgid ""
31
  "Enter exactly the following url in <strong>Website</strong> option in your "
34
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
35
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
36
 
37
+ #: ../super_socializer.php:1665
38
  #, fuzzy, php-format
39
  msgid ""
40
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
43
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
44
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
45
 
46
+ #: ../super_socializer.php:1668
47
  msgid ""
48
  "Make sure cURL is enabled at your website server. You may need to contact "
49
  "the server administrator of your website to verify this"
51
  "Убедитесь Curl включен в вашем веб-сайте сервера. Вы, возможно, потребуется "
52
  "обратиться к администратору сервера вашего сайта, чтобы убедиться, это"
53
 
54
+ #: ../super_socializer.php:1829
55
+ #, fuzzy
56
+ msgid "Search"
57
+ msgstr "Искать"
58
+
59
+ #: ../super_socializer.php:1851 ../helper.php:995
60
  msgid "Please verify your email address to login."
61
  msgstr "Пожалуйста, подтвердите ваш адрес электронной почты."
62
 
63
+ #: ../super_socializer.php:1851
64
  msgid "Your email has been verified. Now you can login to your account"
65
  msgstr "Ваше сообщение было проверено. Теперь вы можете войти в свой аккаунт"
66
 
67
+ #: ../super_socializer.php:1855
68
  msgid "Notification"
69
  msgstr "Уведомления"
70
 
71
+ #: ../super_socializer.php:1873 ../admin/social_login.php:1443
72
  msgid "Email required"
73
  msgstr "Email (Обязательно)"
74
 
75
+ #: ../super_socializer.php:1876
76
  msgid "Please check your email inbox to complete the registration."
77
  msgstr "Пожалуйста, проверьте свой почтовый ящик для завершения регистрации."
78
 
79
+ #: ../super_socializer.php:1945
80
  msgid "Leave a reply"
81
  msgstr "Оставить ответ"
82
 
83
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
84
  msgid "Shares"
85
  msgstr "Поделились"
86
 
87
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
88
  msgid "Share"
89
  msgstr "Поделиться"
90
 
91
+ #: ../super_socializer.php:1961
92
  #, fuzzy
93
  msgid "Link copied."
94
  msgstr "LinkedIn"
95
 
96
+ #: ../super_socializer.php:2206
97
  msgid "Super Socializer - General Options"
98
  msgstr "Super Socializer - Общие настройки"
99
 
100
+ #: ../super_socializer.php:2206 ../admin/general_options.php:15
101
  #: ../admin/social_commenting.php:47
102
  msgid "General Options"
103
  msgstr "Основные настройки"
104
 
105
+ #: ../super_socializer.php:2274 ../helper.php:924
106
  msgid "Social Avatar"
107
  msgstr "Социальный аватар"
108
 
109
+ #: ../super_socializer.php:2277
110
  msgid "Small Avatar Url"
111
  msgstr "Ссылка для маленького аватара"
112
 
113
+ #: ../super_socializer.php:2281
114
  msgid "Large Avatar Url"
115
  msgstr "Ссылка для большого аватара"
116
 
117
+ #: ../super_socializer.php:2285 ../helper.php:927
118
  msgid ""
119
  "Do not fetch and update social avatar from my profile, next time I Social "
120
  "Login"
122
  "Не получать и обновлять социальный аватар из моего профиля, в следующий раз "
123
  "я когда я использую вход через соцсети"
124
 
125
+ #: ../super_socializer.php:2289 ../helper.php:928
126
  msgid "Update social avatar, next time I Social Login"
127
  msgstr ""
128
  "Обновление аватара соцсетей в следующий раз при использовании входа через "
129
  "соцсети"
130
 
131
+ #: ../super_socializer.php:2366
132
  msgid "Login with your Social ID"
133
  msgstr "Войти, используя социальный аккаунт"
134
 
135
+ #: ../super_socializer.php:2367
136
  msgid "Email you entered is already registered or invalid"
137
  msgstr ""
138
  "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
139
 
140
+ #: ../super_socializer.php:2374
141
  msgid "Please enter a valid email address. You might be required to verify it"
142
  msgstr ""
143
  "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, "
144
  "потребуется проверить его"
145
 
146
+ #: ../super_socializer.php:2378 ../super_socializer.php:3123
147
  msgid "Link your social account to login to your account at this website"
148
  msgstr ""
149
  "Введите ссылку на ваш аккаут в социальных сетях чтобы войти в аккаунт на "
150
  "этом сайте"
151
 
152
+ #: ../super_socializer.php:2633
153
  msgid "Thanks for installing Super Socializer plugin"
154
  msgstr ""
155
 
156
+ #: ../super_socializer.php:2635
157
  msgid "Configure the Plugin"
158
  msgstr ""
159
 
160
+ #: ../super_socializer.php:2646
161
  msgid ""
162
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
163
  "current version of Super Socializer"
164
  msgstr ""
165
 
166
+ #: ../super_socializer.php:2655
167
  msgid ""
168
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
169
  "version of Super Socializer"
170
  msgstr ""
171
 
172
+ #: ../super_socializer.php:2664
173
  msgid ""
174
+ "Update \"Social Login Buttons\" add-on to version 1.2.7 or above for "
175
  "compatibility with current version of Super Socializer"
176
  msgstr ""
177
 
178
+ #: ../super_socializer.php:2673
179
  msgid ""
180
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
181
  "with current version of Super Socializer"
182
  msgstr ""
183
 
184
+ #: ../super_socializer.php:2682
185
  msgid ""
186
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
187
  "with current version of Super Socializer"
188
  msgstr ""
189
 
190
+ #: ../super_socializer.php:2693
191
  #, php-format
192
  msgid ""
193
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
194
  msgstr ""
195
 
196
+ #: ../super_socializer.php:2702
197
  #, php-format
198
  msgid ""
199
  "To continue using Instagram login create a new Instagram App as described <a "
201
  "Instagram App Secret <a href=\"%s\">here</a>"
202
  msgstr ""
203
 
204
+ #: ../super_socializer.php:2711 ../super_socializer.php:2720
205
  #, php-format
206
  msgid ""
207
  "To continue using bitly url shortener, login to your bit.ly account and "
210
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
211
  msgstr ""
212
 
213
+ #: ../super_socializer.php:2736
214
  #, php-format
215
  msgid ""
216
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
217
  msgstr ""
218
 
219
+ #: ../super_socializer.php:2760
220
  #, php-format
221
  msgid ""
222
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
224
  "target=\"_blank\">here</a>"
225
  msgstr ""
226
 
227
+ #: ../super_socializer.php:2760 ../super_socializer.php:2785
228
+ #: ../super_socializer.php:2810 ../super_socializer.php:2835
229
+ #: ../super_socializer.php:2868 ../super_socializer.php:2896
230
+ #: ../super_socializer.php:2923
231
  msgid "Okay"
232
  msgstr "Окей"
233
 
234
+ #: ../super_socializer.php:2785
235
  #, php-format
236
  msgid ""
237
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
239
  "\">here</a>"
240
  msgstr ""
241
 
242
+ #: ../super_socializer.php:2810
243
  #, php-format
244
  msgid ""
245
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
247
  "target=\"_blank\">here</a>"
248
  msgstr ""
249
 
250
+ #: ../super_socializer.php:2835
251
  #, php-format
252
  msgid ""
253
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
255
  "target=\"_blank\">here</a>"
256
  msgstr ""
257
 
258
+ #: ../super_socializer.php:2846
259
  #, php-format
260
  msgid ""
261
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
262
  msgstr ""
263
 
264
+ #: ../super_socializer.php:2868
265
  #, php-format
266
  msgid ""
267
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
269
  "\"%s\" target=\"_blank\">here</a>"
270
  msgstr ""
271
 
272
+ #: ../super_socializer.php:2896
273
  #, php-format
274
  msgid ""
275
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
278
  "your website %s with them. No need to copy-paste any code from their website."
279
  msgstr ""
280
 
281
+ #: ../super_socializer.php:2923
282
  #, php-format
283
  msgid ""
284
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
286
  "\"%s\" target=\"_blank\">here</a>"
287
  msgstr ""
288
 
289
+ #: ../super_socializer.php:2948
290
  #, php-format
291
  msgid ""
292
  "If you cannot get Linkedin login to work after updating the plugin, replace "
294
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
295
  msgstr ""
296
 
297
+ #: ../super_socializer.php:2948 ../super_socializer.php:2975
298
  msgid "Dismiss"
299
  msgstr ""
300
 
301
+ #: ../super_socializer.php:2974
302
  #, php-format
303
  msgid ""
304
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
307
  "that, clear share counts cache from \"Miscellaneous\" section"
308
  msgstr ""
309
 
310
+ #: ../super_socializer.php:3199
311
  msgid ""
312
  "Your browser is blocking some features of this website. Please follow the "
313
  "instructions at {support_url} to unblock these."
319
  msgid "Settings saved"
320
  msgstr "Параметры сохранены"
321
 
322
+ #: ../helper.php:194
323
  #, fuzzy
324
  msgid "Click to toggle help"
325
  msgstr "Нажмите, чтобы скрыть помощь"
326
 
327
+ #: ../helper.php:291
328
  msgid "Add-Ons"
329
  msgstr "Дополнения"
330
 
331
+ #: ../helper.php:292
332
  msgid "Support Documentation"
333
  msgstr "Техническая документация"
334
 
335
+ #: ../helper.php:293
336
  msgid "Settings"
337
  msgstr "Настройки"
338
 
339
+ #: ../helper.php:576
340
  msgid "Account linked successfully"
341
  msgstr "Аккаунт успешно связан"
342
 
343
+ #: ../helper.php:580
344
  msgid "Account already exists or linked"
345
  msgstr "Аккаунт уже существует или связан"
346
 
347
+ #: ../helper.php:616 ../helper.php:618
348
  msgid "Login with"
349
  msgstr "Войти с"
350
 
351
+ #: ../helper.php:653 ../helper.php:659
352
  msgid "Currently"
353
  msgstr "На данный момент"
354
 
355
+ #: ../helper.php:653 ../helper.php:659
356
  msgid "Connected with"
357
  msgstr "Авторизоваться с помощью"
358
 
359
+ #: ../helper.php:653 ../helper.php:659
360
  msgid "Remove"
361
  msgstr "Удалить"
362
 
363
+ #: ../helper.php:730
364
  msgid "Social Account Linking"
365
  msgstr "Ссылки на социальный аккаунт"
366
 
367
+ #: ../helper.php:780
368
  msgid "Disable Standard Social Sharing on this "
369
  msgstr "Отключить стандартный блок Поделиться на этом"
370
 
371
+ #: ../helper.php:785
372
  msgid "Disable Floating Social Sharing on this "
373
  msgstr "Отключить плавающий блок Поделиться на этом"
374
 
375
+ #: ../helper.php:790
376
  msgid "Disable Standard like buttons on this "
377
  msgstr "Откдючить стандартные кнопки Нравится на этом"
378
 
379
+ #: ../helper.php:795
380
  msgid "Disable Floating like buttons on this "
381
  msgstr "Откдючить плавающие кнопки Нравится на этом"
382
 
383
+ #: ../helper.php:800
384
  msgid "Disable Social Commenting on this "
385
  msgstr "Деактивировать социальное комментироване"
386
 
387
+ #: ../helper.php:809
388
  msgid "Standard Sharing Interface"
389
  msgstr "Стандартный интерфейс Поделиться"
390
 
391
+ #: ../helper.php:815 ../helper.php:834
392
  msgid "Starting share count for "
393
  msgstr "Запустить счетчик поделиться для"
394
 
395
+ #: ../helper.php:828
396
  msgid "Floating Sharing Interface"
397
  msgstr "Плавающий интерфейс Поделиться"
398
 
399
+ #: ../helper.php:931
400
  msgid "Small Avatar"
401
  msgstr "Небольшой аватар"
402
 
403
+ #: ../helper.php:935
404
  msgid "Large Avatar"
405
  msgstr "Большой аватар"
406
 
407
+ #: ../helper.php:939 ../admin/general_options.php:89
408
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
409
+ #: ../admin/social_login.php:1933 ../admin/like_buttons.php:780
410
  msgid "Save Changes"
411
  msgstr "Сохранить изменения"
412
 
413
+ #: ../helper.php:1032
414
  msgid "Click to delete social profile data"
415
  msgstr ""
416
 
417
+ #: ../helper.php:1061
418
  #, fuzzy
419
  msgid "Deleting"
420
  msgstr "Настройки"
421
 
422
+ #: ../helper.php:1071
423
  msgid "Deleted"
424
  msgstr ""
425
 
426
+ #: ../helper.php:1073
427
  msgid "Something bad happened"
428
  msgstr ""
429
 
430
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
431
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
432
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
433
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1937
434
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
435
  #, fuzzy, php-format
436
  msgid ""
485
  "Можно указать любые дополнительные правила CSS (без тега &lt; style &gt;)"
486
 
487
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
488
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1943
489
  #: ../admin/like_buttons.php:790
490
  #, fuzzy
491
  msgid "Instagram Shoutout"
492
  msgstr "Instagram"
493
 
494
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
495
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1945
496
  #: ../admin/like_buttons.php:792
497
  msgid ""
498
  "If you can send (to hello@heateor.com) how this plugin is helping your "
635
 
636
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
637
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
638
+ #: ../admin/social_login.php:1899 ../admin/like_buttons.php:50
639
  #: ../admin/like_buttons.php:751
640
  msgid "Shortcode & Widget"
641
  msgstr "Шорткод и виджет"
646
 
647
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
648
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
649
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1913
650
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
651
  msgid "FAQ"
652
  msgstr "Часто задаваемые вопросы (FAQ)"
878
  msgid "Url to share"
879
  msgstr "Ссылка чтобы Поделиться"
880
 
881
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:1184
882
+ #: ../admin/social_login.php:1560 ../admin/like_buttons.php:105
883
  #: ../inc/widget.php:949
884
  msgid "Title"
885
  msgstr "Заголовок"
965
  msgstr "Размещение"
966
 
967
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
968
+ #: ../admin/social_login.php:1501 ../admin/social_login.php:1530
969
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
970
  msgid "Homepage"
971
  msgstr "Главная"
1234
  msgid "Required only to track Facebook share count"
1235
  msgstr ""
1236
 
1237
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:222
1238
  msgid "Facebook App ID"
1239
  msgstr "Facebook App ID"
1240
 
1247
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1248
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1249
 
1250
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:243
1251
  #, fuzzy
1252
  msgid "Facebook App Secret"
1253
  msgstr "Facebook App ID"
1435
  "\"Получение информации о новой поломке\" ."
1436
 
1437
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1438
+ #: ../admin/social_login.php:1915
1439
  msgid ""
1440
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1441
  "an online website for the plugin to function properly."
1493
  msgstr ""
1494
 
1495
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1496
+ #: ../admin/social_login.php:1922
1497
  msgid "Why is my browser blocking some features of the plugin?"
1498
  msgstr "Почему мой браузер блокирует некоторые функции плагина?"
1499
 
1811
  msgid "Advanced Configuration"
1812
  msgstr "Расширенная конфигурация"
1813
 
1814
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1699
1815
  msgid "GDPR"
1816
  msgstr ""
1817
 
1818
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1850
1819
  msgid "XProfile Integration"
1820
  msgstr "XProfile интеграция"
1821
 
1849
 
1850
  #: ../admin/social_login.php:98
1851
  #, fuzzy
1852
+ msgid "Disable Social Login for admin accounts"
1853
+ msgstr "Параметры входа через соцсети"
1854
+
1855
+ #: ../admin/social_login.php:108
1856
+ #, fuzzy
1857
+ msgid ""
1858
+ "After enabling this option, administrator users will not be able to login "
1859
+ "through social login. Other users will be able to login via social login."
1860
+ msgstr ""
1861
+ "После включения этой опции, новые пользователи не смогут войти в через "
1862
+ "социальные входе в систему. Только существующие пользователи смогут "
1863
+ "социальной входе в систему."
1864
+
1865
+ #: ../admin/social_login.php:115
1866
+ #, fuzzy
1867
  msgid "Select Social Networks"
1868
  msgstr "Выберите сервисы"
1869
 
1870
+ #: ../admin/social_login.php:120
1871
  msgid "Facebook"
1872
  msgstr "Facebook"
1873
 
1874
+ #: ../admin/social_login.php:124
1875
  msgid "Twitter"
1876
  msgstr "Twitter"
1877
 
1878
+ #: ../admin/social_login.php:128
1879
  msgid "LinkedIn"
1880
  msgstr "LinkedIn"
1881
 
1882
+ #: ../admin/social_login.php:132
1883
  #, fuzzy
1884
  msgid "Google"
1885
  msgstr "Google+"
1886
 
1887
+ #: ../admin/social_login.php:136
1888
  msgid "Vkontakte"
1889
  msgstr "Вконтакте"
1890
 
1891
+ #: ../admin/social_login.php:140
1892
  msgid "Instagram"
1893
  msgstr "Instagram"
1894
 
1895
+ #: ../admin/social_login.php:144
1896
  msgid "Steam"
1897
  msgstr "Steam"
1898
 
1899
+ #: ../admin/social_login.php:148
1900
  msgid "Line"
1901
  msgstr ""
1902
 
1903
+ #: ../admin/social_login.php:152
1904
  msgid "Wordpress"
1905
  msgstr ""
1906
 
1907
+ #: ../admin/social_login.php:156
1908
  msgid "Windows Live"
1909
  msgstr ""
1910
 
1911
+ #: ../admin/social_login.php:160
1912
  msgid "Yahoo"
1913
  msgstr ""
1914
 
1915
+ #: ../admin/social_login.php:164
1916
+ msgid "Discord"
1917
+ msgstr ""
1918
+
1919
+ #: ../admin/social_login.php:168
1920
+ msgid "Amazon"
1921
+ msgstr ""
1922
+
1923
+ #: ../admin/social_login.php:172
1924
+ msgid "Stackoverflow"
1925
+ msgstr ""
1926
+
1927
+ #: ../admin/social_login.php:176
1928
  msgid "Spotify"
1929
  msgstr ""
1930
 
1931
+ #: ../admin/social_login.php:179
1932
  msgid "Dribbble"
1933
  msgstr ""
1934
 
1935
+ #: ../admin/social_login.php:183
1936
  msgid "Twitch"
1937
  msgstr "Twitch"
1938
 
1939
+ #: ../admin/social_login.php:187
1940
  #, fuzzy
1941
  msgid "Foursquare"
1942
  msgstr "Квадратная"
1943
 
1944
+ #: ../admin/social_login.php:191
1945
  msgid "Dropbox"
1946
  msgstr ""
1947
 
1948
+ #: ../admin/social_login.php:195
1949
  msgid "Disqus"
1950
  msgstr ""
1951
 
1952
+ #: ../admin/social_login.php:199
1953
  msgid "Reddit"
1954
  msgstr ""
1955
 
1956
+ #: ../admin/social_login.php:203
1957
  msgid "Github"
1958
  msgstr ""
1959
 
1960
+ #: ../admin/social_login.php:207
1961
  msgid "Kakao"
1962
  msgstr ""
1963
 
1964
+ #: ../admin/social_login.php:215
1965
  msgid "Select Social ID provider to enable in Social Login"
1966
  msgstr "Выберите социальные сети чтобы активировать вход через социальные сети"
1967
 
1968
+ #: ../admin/social_login.php:232
1969
  #, php-format
1970
  msgid ""
1971
  "Required for Facebook Social Login to work. Please follow the documentation "
1974
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1975
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1976
 
1977
+ #: ../admin/social_login.php:234 ../admin/social_login.php:255
1978
  #, fuzzy
1979
  msgid ""
1980
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1982
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
1983
  "упоминания ссылки."
1984
 
1985
+ #: ../admin/social_login.php:253
1986
  #, fuzzy, php-format
1987
  msgid ""
1988
  "Required for Facebook Social Login to work. Please follow the documentation "
1991
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1992
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1993
 
1994
+ #: ../admin/social_login.php:264
1995
  msgid "Twitter API Key"
1996
  msgstr "Twitter API ключ"
1997
 
1998
+ #: ../admin/social_login.php:274
1999
  #, php-format
2000
  msgid ""
2001
  "Required for Twitter Social Login to work. Please follow the documentation "
2005
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2006
  "Twitter."
2007
 
2008
+ #: ../admin/social_login.php:276 ../admin/social_login.php:301
2009
  #, fuzzy
2010
  msgid ""
2011
  "Paste following url in <strong>Website</strong> option mentioned at the link"
2013
  "Вставьте следующий URL-адрес в <strong>URL веб-сайта</strong> для упоминания "
2014
  "ссылки"
2015
 
2016
+ #: ../admin/social_login.php:280 ../admin/social_login.php:305
2017
+ #: ../admin/social_login.php:493 ../admin/social_login.php:513
2018
+ #: ../admin/social_login.php:848 ../admin/social_login.php:868
2019
+ #: ../admin/social_login.php:889 ../admin/social_login.php:909
2020
+ #: ../admin/social_login.php:1014 ../admin/social_login.php:1034
2021
+ #: ../admin/social_login.php:1099 ../admin/social_login.php:1119
2022
+ #: ../admin/social_login.php:1141 ../admin/social_login.php:1161
2023
  #, fuzzy
2024
  msgid ""
2025
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
2028
  "Вставьте следующий URL-адрес в <strong>URL веб-сайта</strong> для упоминания "
2029
  "ссылки"
2030
 
2031
+ #: ../admin/social_login.php:289
2032
  msgid "Twitter API Secret"
2033
  msgstr "Twitter API секретный ключ"
2034
 
2035
+ #: ../admin/social_login.php:299
2036
  #, php-format
2037
  msgid ""
2038
  "Required for Twitter Social Login to work. Please follow the documentation "
2042
  "href=\"%s\" target=\"_blank\">здесь</a> для получения секретного ключа "
2043
  "приложения Facebook."
2044
 
2045
+ #: ../admin/social_login.php:314
2046
  #, fuzzy
2047
  msgid "LinkedIn Client ID"
2048
  msgstr "LinkedIn"
2049
 
2050
+ #: ../admin/social_login.php:324
2051
  #, fuzzy, php-format
2052
  msgid ""
2053
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2057
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2058
  "LinkedIn."
2059
 
2060
+ #: ../admin/social_login.php:326 ../admin/social_login.php:347
2061
+ #: ../admin/social_login.php:533 ../admin/social_login.php:553
2062
  #, fuzzy
2063
  msgid ""
2064
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2067
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2068
  "упоминания ссылки."
2069
 
2070
+ #: ../admin/social_login.php:335
2071
  #, fuzzy
2072
  msgid "LinkedIn Client Secret"
2073
  msgstr "LinkedIn"
2074
 
2075
+ #: ../admin/social_login.php:345
2076
  #, fuzzy, php-format
2077
  msgid ""
2078
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2083
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2084
  "LinkedIn."
2085
 
2086
+ #: ../admin/social_login.php:356
2087
  #, fuzzy
2088
  msgid "Google Client ID"
2089
  msgstr "Google+ ID клиента"
2090
 
2091
+ #: ../admin/social_login.php:366
2092
  #, fuzzy, php-format
2093
  msgid ""
2094
  "Required for Google Social Login to work. Please follow the documentation at "
2097
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2098
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2099
 
2100
+ #: ../admin/social_login.php:368 ../admin/social_login.php:389
2101
  #, fuzzy
2102
  msgid ""
2103
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2106
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2107
  "упоминания ссылки."
2108
 
2109
+ #: ../admin/social_login.php:377
2110
  #, fuzzy
2111
  msgid "Google Client Secret"
2112
  msgstr "Google+ ID клиента"
2113
 
2114
+ #: ../admin/social_login.php:387
2115
  #, fuzzy, php-format
2116
  msgid ""
2117
  "Required for Google Social Login to work. Please follow the documentation at "
2120
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2121
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2122
 
2123
+ #: ../admin/social_login.php:398
2124
  msgid "Vkontakte Application ID"
2125
  msgstr " ID приложения Vkontakte"
2126
 
2127
+ #: ../admin/social_login.php:408 ../admin/social_login.php:429
2128
  #, php-format
2129
  msgid ""
2130
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2135
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения "
2136
  "Vkontakte."
2137
 
2138
+ #: ../admin/social_login.php:410 ../admin/social_login.php:431
2139
  #, fuzzy
2140
  msgid ""
2141
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2144
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2145
  "упоминания ссылки."
2146
 
2147
+ #: ../admin/social_login.php:419
2148
  #, fuzzy
2149
  msgid "Vkontakte Secure key"
2150
  msgstr "Вконтакте"
2151
 
2152
+ #: ../admin/social_login.php:440
2153
  #, fuzzy
2154
  msgid "Instagram App ID"
2155
  msgstr "Instagram ID клиента"
2156
 
2157
+ #: ../admin/social_login.php:450
2158
  #, fuzzy, php-format
2159
  msgid ""
2160
  "Required for Instagram Social Login to work. Please follow the documentation "
2164
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в "
2165
  "Instagram."
2166
 
2167
+ #: ../admin/social_login.php:452 ../admin/social_login.php:473
2168
  #, fuzzy
2169
  msgid ""
2170
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2173
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2174
  "упоминания ссылки."
2175
 
2176
+ #: ../admin/social_login.php:461
2177
  #, fuzzy
2178
  msgid "Instagram App Secret"
2179
  msgstr "Введите имя пользователя Instagram."
2180
 
2181
+ #: ../admin/social_login.php:471
2182
  #, fuzzy, php-format
2183
  msgid ""
2184
  "Required for Instagram Social Login to work. Please follow the documentation "
2188
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в "
2189
  "Instagram."
2190
 
2191
+ #: ../admin/social_login.php:482
2192
  msgid "Line Channel ID"
2193
  msgstr ""
2194
 
2195
+ #: ../admin/social_login.php:491
2196
  #, fuzzy, php-format
2197
  msgid ""
2198
  "Required for Line Social Login to work. Please follow the documentation at "
2202
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2203
  "LinkedIn."
2204
 
2205
+ #: ../admin/social_login.php:502
2206
  #, fuzzy
2207
  msgid "Line Channel Secret"
2208
  msgstr "LinkedIn"
2209
 
2210
+ #: ../admin/social_login.php:511
2211
  #, fuzzy, php-format
2212
  msgid ""
2213
  "Required for Line Social Login to work. Please follow the documentation at "
2217
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2218
  "LinkedIn."
2219
 
2220
+ #: ../admin/social_login.php:522
2221
  #, fuzzy
2222
  msgid "Wordpress Client ID"
2223
  msgstr "Google+ ID клиента"
2224
 
2225
+ #: ../admin/social_login.php:531
2226
  #, fuzzy, php-format
2227
  msgid ""
2228
  "Required for Wordpress Social Login to work. Please follow the documentation "
2231
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2232
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2233
 
2234
+ #: ../admin/social_login.php:542
2235
  #, fuzzy
2236
  msgid "Wordpress Client Secret"
2237
  msgstr "Google+ ID клиента"
2238
 
2239
+ #: ../admin/social_login.php:551
2240
  #, fuzzy, php-format
2241
  msgid ""
2242
  "Required for Wordpress Social Login to work. Please follow the documentation "
2246
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2247
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2248
 
2249
+ #: ../admin/social_login.php:562
2250
  #, fuzzy
2251
  msgid "Microsoft Client ID"
2252
  msgstr "Google+ ID клиента"
2253
 
2254
+ #: ../admin/social_login.php:571
2255
  #, fuzzy, php-format
2256
  msgid ""
2257
  "Required for Live Social Login to work. Please follow the documentation at "
2260
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2261
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2262
 
2263
+ #: ../admin/social_login.php:573 ../admin/social_login.php:593
2264
+ #: ../admin/social_login.php:806 ../admin/social_login.php:826
2265
+ #: ../admin/social_login.php:971 ../admin/social_login.php:991
2266
  #, fuzzy
2267
  msgid ""
2268
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2271
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2272
  "упоминания ссылки."
2273
 
2274
+ #: ../admin/social_login.php:582
2275
  #, fuzzy
2276
  msgid "Microsoft Client Secret"
2277
  msgstr "Google+ ID клиента"
2278
 
2279
+ #: ../admin/social_login.php:591
2280
  #, fuzzy, php-format
2281
  msgid ""
2282
  "Required for Live Social Login to work. Please follow the documentation at "
2286
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2287
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2288
 
2289
+ #: ../admin/social_login.php:601
2290
  #, fuzzy
2291
  msgid "Steam API Key"
2292
  msgstr "Twitter API ключ"
2293
 
2294
+ #: ../admin/social_login.php:610
2295
  #, fuzzy, php-format
2296
  msgid ""
2297
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2301
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2302
  "Twitter."
2303
 
2304
+ #: ../admin/social_login.php:611
2305
  #, fuzzy
2306
  msgid "Save following <strong>domain</strong> to get the key"
2307
  msgstr ""
2308
  "Вставьте следующий URL-адрес в <strong>URL веб-сайта</strong> для упоминания "
2309
  "ссылки"
2310
 
2311
+ #: ../admin/social_login.php:620
2312
  #, fuzzy
2313
  msgid "Yahoo Client ID"
2314
  msgstr "Google+ ID клиента"
2315
 
2316
+ #: ../admin/social_login.php:629
2317
  #, fuzzy, php-format
2318
  msgid ""
2319
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2322
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2323
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2324
 
2325
+ #: ../admin/social_login.php:631 ../admin/social_login.php:651
2326
  #, fuzzy
2327
  msgid ""
2328
+ "Paste following url in the <strong>Redirect URI(s)</strong> option mentioned "
2329
+ "at the link"
2330
  msgstr ""
2331
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2332
  "упоминания ссылки."
2333
 
2334
+ #: ../admin/social_login.php:640
2335
  #, fuzzy
2336
  msgid "Yahoo Client Secret"
2337
  msgstr "Google+ ID клиента"
2338
 
2339
+ #: ../admin/social_login.php:649
2340
  #, fuzzy, php-format
2341
  msgid ""
2342
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2345
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2346
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2347
 
2348
+ #: ../admin/social_login.php:662
2349
+ #, fuzzy
2350
+ msgid "Discord Client ID"
2351
+ msgstr "Добавьте ваш Twitch Client ID здесь"
2352
+
2353
+ #: ../admin/social_login.php:671
2354
+ #, fuzzy, php-format
2355
+ msgid ""
2356
+ "Required for Discord Social Login to work. Please follow the documentation "
2357
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client ID"
2358
+ msgstr ""
2359
+ "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2360
+ "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2361
+
2362
+ #: ../admin/social_login.php:673 ../admin/social_login.php:693
2363
+ #, fuzzy
2364
+ msgid ""
2365
+ "Paste following url in the <strong>Redirects</strong> option mentioned at "
2366
+ "the link"
2367
+ msgstr ""
2368
+ "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2369
+ "упоминания ссылки."
2370
+
2371
+ #: ../admin/social_login.php:682
2372
+ #, fuzzy
2373
+ msgid "Discord Client Secret"
2374
+ msgstr "Добавьте ваш Twitch Client ID здесь"
2375
+
2376
+ #: ../admin/social_login.php:691
2377
+ #, fuzzy, php-format
2378
+ msgid ""
2379
+ "Required for Discord Social Login to work. Please follow the documentation "
2380
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client "
2381
+ "Secret key"
2382
+ msgstr ""
2383
+ "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2384
+ "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2385
+
2386
+ #: ../admin/social_login.php:704
2387
+ #, fuzzy
2388
+ msgid "Amazon Client ID"
2389
+ msgstr "Google+ ID клиента"
2390
+
2391
+ #: ../admin/social_login.php:713
2392
+ #, fuzzy, php-format
2393
+ msgid ""
2394
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2395
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client ID"
2396
+ msgstr ""
2397
+ "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2398
+ "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2399
+
2400
+ #: ../admin/social_login.php:715 ../admin/social_login.php:735
2401
+ #, fuzzy
2402
+ msgid ""
2403
+ "Paste following url in the <strong>Allowed Return URLs</strong> option "
2404
+ "mentioned at the link"
2405
+ msgstr ""
2406
+ "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2407
+ "упоминания ссылки."
2408
+
2409
+ #: ../admin/social_login.php:724
2410
+ #, fuzzy
2411
+ msgid "Amazon Client Secret"
2412
+ msgstr "Google+ ID клиента"
2413
+
2414
+ #: ../admin/social_login.php:733
2415
+ #, fuzzy, php-format
2416
+ msgid ""
2417
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2418
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client Secret "
2419
+ "key"
2420
+ msgstr ""
2421
+ "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2422
+ "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2423
+
2424
+ #: ../admin/social_login.php:746
2425
+ #, fuzzy
2426
+ msgid "Stackoverflow Client ID"
2427
+ msgstr "Google+ ID клиента"
2428
+
2429
+ #: ../admin/social_login.php:755
2430
+ #, fuzzy, php-format
2431
+ msgid ""
2432
+ "Required for Stackoverflow Social Login to work. Please follow the "
2433
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2434
+ "Stackoverflow Client ID"
2435
+ msgstr ""
2436
+ "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2437
+ "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2438
+
2439
+ #: ../admin/social_login.php:761
2440
+ #, fuzzy
2441
+ msgid "Stackoverflow Client Secret"
2442
+ msgstr "Google+ ID клиента"
2443
+
2444
+ #: ../admin/social_login.php:770
2445
+ #, fuzzy, php-format
2446
+ msgid ""
2447
+ "Required for Stackoverflow Social Login to work. Please follow the "
2448
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2449
+ "Stackoverflow Client Secret key"
2450
+ msgstr ""
2451
+ "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2452
+ "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2453
+
2454
+ #: ../admin/social_login.php:776
2455
+ msgid "Stackoverflow Key"
2456
+ msgstr ""
2457
+
2458
+ #: ../admin/social_login.php:786
2459
+ #, fuzzy, php-format
2460
+ msgid ""
2461
+ "Required for Stackoverflow Social Login to work. Please follow the "
2462
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2463
+ "Stackoverflow Key"
2464
+ msgstr ""
2465
+ "Необходимо для входа через Twitter. Пожалуйста, посмотрите документацию <a "
2466
+ "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2467
+ "Twitter."
2468
+
2469
+ #: ../admin/social_login.php:795
2470
  #, fuzzy
2471
  msgid "Spotify Client ID"
2472
  msgstr "Google+ ID клиента"
2473
 
2474
+ #: ../admin/social_login.php:804
2475
  #, fuzzy, php-format
2476
  msgid ""
2477
  "Required for Spotify Social Login to work. Please follow the documentation "
2480
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2481
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2482
 
2483
+ #: ../admin/social_login.php:815
2484
  #, fuzzy
2485
  msgid "Spotify Client Secret"
2486
  msgstr "Google+ ID клиента"
2487
 
2488
+ #: ../admin/social_login.php:824
2489
  #, fuzzy, php-format
2490
  msgid ""
2491
  "Required for Spotify Social Login to work. Please follow the documentation "
2495
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2496
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2497
 
2498
+ #: ../admin/social_login.php:837
2499
  #, fuzzy
2500
  msgid "Dribbble Client ID"
2501
  msgstr "Google+ ID клиента"
2502
 
2503
+ #: ../admin/social_login.php:846
2504
  #, fuzzy, php-format
2505
  msgid ""
2506
  "Required for Dribbble Social Login to work. Please follow the documentation "
2509
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2510
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2511
 
2512
+ #: ../admin/social_login.php:857
2513
  #, fuzzy
2514
  msgid "Dribbble Client Secret"
2515
  msgstr "Google+ ID клиента"
2516
 
2517
+ #: ../admin/social_login.php:866
2518
  #, fuzzy, php-format
2519
  msgid ""
2520
  "Required for Dribbble Social Login to work. Please follow the documentation "
2524
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2525
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2526
 
2527
+ #: ../admin/social_login.php:878
2528
  #, fuzzy
2529
  msgid "Twitch Client ID"
2530
  msgstr "Добавьте ваш Twitch Client ID здесь"
2531
 
2532
+ #: ../admin/social_login.php:887
2533
  #, fuzzy, php-format
2534
  msgid ""
2535
  "Required for Twitch Social Login to work. Please follow the documentation at "
2538
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2539
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2540
 
2541
+ #: ../admin/social_login.php:898
2542
  #, fuzzy
2543
  msgid "Twitch Client Secret"
2544
  msgstr "Добавьте ваш Twitch Client ID здесь"
2545
 
2546
+ #: ../admin/social_login.php:907
2547
  #, fuzzy, php-format
2548
  msgid ""
2549
  "Required for Twitch Social Login to work. Please follow the documentation at "
2552
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2553
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2554
 
2555
+ #: ../admin/social_login.php:920
2556
  #, fuzzy
2557
  msgid "Foursquare Client ID"
2558
  msgstr "Google+ ID клиента"
2559
 
2560
+ #: ../admin/social_login.php:929
2561
  #, fuzzy, php-format
2562
  msgid ""
2563
  "Required for Foursquare Social Login to work. Please follow the "
2567
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2568
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2569
 
2570
+ #: ../admin/social_login.php:931 ../admin/social_login.php:951
2571
  #, fuzzy
2572
  msgid ""
2573
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
2576
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2577
  "упоминания ссылки."
2578
 
2579
+ #: ../admin/social_login.php:940
2580
  #, fuzzy
2581
  msgid "Foursquare Client Secret"
2582
  msgstr "Google+ ID клиента"
2583
 
2584
+ #: ../admin/social_login.php:949
2585
  #, fuzzy, php-format
2586
  msgid ""
2587
  "Required for Foursquare Social Login to work. Please follow the "
2591
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2592
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2593
 
2594
+ #: ../admin/social_login.php:960
2595
  msgid "Dropbox App Key"
2596
  msgstr ""
2597
 
2598
+ #: ../admin/social_login.php:969
2599
  #, fuzzy, php-format
2600
  msgid ""
2601
  "Required for Dropbox Social Login to work. Please follow the documentation "
2604
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
2605
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
2606
 
2607
+ #: ../admin/social_login.php:980
2608
  #, fuzzy
2609
  msgid "Dropbox App Secret"
2610
  msgstr "Facebook App ID"
2611
 
2612
+ #: ../admin/social_login.php:989
2613
  #, fuzzy, php-format
2614
  msgid ""
2615
  "Required for Dropbox Social Login to work. Please follow the documentation "
2618
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
2619
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
2620
 
2621
+ #: ../admin/social_login.php:1003
2622
  msgid "Disqus Public Key"
2623
  msgstr ""
2624
 
2625
+ #: ../admin/social_login.php:1012
2626
  #, fuzzy, php-format
2627
  msgid ""
2628
  "Required for Disqus Social Login to work. Please follow the documentation at "
2631
  "Необходимо для входа через Xing. Пожалуйста, посмотрите документацию <a href="
2632
  "\"%s\" target=\"_blank\">здесь</a> для получения ключа потребителя Xing."
2633
 
2634
+ #: ../admin/social_login.php:1023
2635
  #, fuzzy
2636
  msgid "Disqus Secret Key"
2637
  msgstr "Короткое имя для панели Disqus (выезжает сбоку при нажатии)"
2638
 
2639
+ #: ../admin/social_login.php:1032
2640
  #, fuzzy, php-format
2641
  msgid ""
2642
  "Required for Disqus Social Login to work. Please follow the documentation at "
2645
  "Необходимо для входа через Xing. Пожалуйста, посмотрите документацию <a href="
2646
  "\"%s\" target=\"_blank\">здесь</a> для получения ключа потребителя Xing."
2647
 
2648
+ #: ../admin/social_login.php:1045
2649
  #, fuzzy
2650
  msgid "Reddit Client ID"
2651
  msgstr "Добавьте ваш Twitch Client ID здесь"
2652
 
2653
+ #: ../admin/social_login.php:1054
2654
  #, fuzzy, php-format
2655
  msgid ""
2656
  "Required for Reddit Social Login to work. Please follow the documentation at "
2659
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2660
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2661
 
2662
+ #: ../admin/social_login.php:1056 ../admin/social_login.php:1076
2663
  #, fuzzy
2664
  msgid ""
2665
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
2668
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2669
  "упоминания ссылки."
2670
 
2671
+ #: ../admin/social_login.php:1065
2672
  #, fuzzy
2673
  msgid "Reddit Client Secret"
2674
  msgstr "Добавьте ваш Twitch Client ID здесь"
2675
 
2676
+ #: ../admin/social_login.php:1074
2677
  #, fuzzy, php-format
2678
  msgid ""
2679
  "Required for Reddit Social Login to work. Please follow the documentation at "
2682
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2683
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2684
 
2685
+ #: ../admin/social_login.php:1088
2686
  #, fuzzy
2687
  msgid "Github Client ID"
2688
  msgstr "Добавьте ваш Twitch Client ID здесь"
2689
 
2690
+ #: ../admin/social_login.php:1097
2691
  #, fuzzy, php-format
2692
  msgid ""
2693
  "Required for Github Social Login to work. Please follow the documentation at "
2696
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2697
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2698
 
2699
+ #: ../admin/social_login.php:1108
2700
  #, fuzzy
2701
  msgid "Github Client Secret"
2702
  msgstr "Добавьте ваш Twitch Client ID здесь"
2703
 
2704
+ #: ../admin/social_login.php:1117
2705
  #, fuzzy, php-format
2706
  msgid ""
2707
  "Required for Github Social Login to work. Please follow the documentation at "
2710
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2711
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2712
 
2713
+ #: ../admin/social_login.php:1130
2714
  #, fuzzy
2715
  msgid "Kakao Client ID"
2716
  msgstr "Google+ ID клиента"
2717
 
2718
+ #: ../admin/social_login.php:1139
2719
  #, fuzzy, php-format
2720
  msgid ""
2721
  "Required for Kakao Social Login to work. Please follow the documentation at "
2724
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2725
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2726
 
2727
+ #: ../admin/social_login.php:1150
2728
  #, fuzzy
2729
  msgid "Kakao Client Secret"
2730
  msgstr "Google+ ID клиента"
2731
 
2732
+ #: ../admin/social_login.php:1159
2733
  #, fuzzy, php-format
2734
  msgid ""
2735
  "Required for Kakao Social Login to work. Please follow the documentation at "
2738
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2739
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2740
 
2741
+ #: ../admin/social_login.php:1179
2742
  msgid "Social Login Options"
2743
  msgstr "Параметры входа через соцсети"
2744
 
2745
+ #: ../admin/social_login.php:1194
2746
  msgid "Text to display above the Social Login interface"
2747
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
2748
 
2749
+ #: ../admin/social_login.php:1202
2750
  msgid "Trigger social login in the same browser tab"
2751
  msgstr ""
2752
 
2753
+ #: ../admin/social_login.php:1212
2754
  msgid "Trigger social login in the same browser tab instead of a popup window"
2755
  msgstr ""
2756
 
2757
+ #: ../admin/social_login.php:1219
2758
  #, fuzzy
2759
  msgid "Center align icons"
2760
  msgstr "Переставить иконы"
2761
 
2762
+ #: ../admin/social_login.php:1229
2763
  #, fuzzy
2764
  msgid "Center align social login icons"
2765
  msgstr "Параметры входа через соцсети"
2766
 
2767
+ #: ../admin/social_login.php:1236
2768
  msgid "Enable at login page"
2769
  msgstr "Включить страницу входа"
2770
 
2771
+ #: ../admin/social_login.php:1246
2772
  msgid ""
2773
  "Social Login interface will get enabled at the login page of your website"
2774
  msgstr ""
2775
  "Интерфейс входа через социальные сети будет активирован на странице входа "
2776
 
2777
+ #: ../admin/social_login.php:1253
2778
  msgid "Enable at register page"
2779
  msgstr "Включить на странице регистрации"
2780
 
2781
+ #: ../admin/social_login.php:1263
2782
  msgid ""
2783
  "Social Login interface will get enabled at the registration page of your "
2784
  "website"
2785
  msgstr "Интерфейс входа через социальные сети будет активирован на странице"
2786
 
2787
+ #: ../admin/social_login.php:1270
2788
  msgid "Enable at comment form"
2789
  msgstr "Включить в форму комментирования"
2790
 
2791
+ #: ../admin/social_login.php:1280
2792
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2793
  msgstr ""
2794
  "Интерфейс входа через социальные сети будет активирован в вашей форме "
2795
  "комментирования Wordpress"
2796
 
2797
+ #: ../admin/social_login.php:1294
2798
  msgid "Enable before WooCommerce Customer Login Form"
2799
  msgstr "Активировать перед формой входа покупателя в WooCommerce"
2800
 
2801
+ #: ../admin/social_login.php:1304
2802
  msgid ""
2803
  "Social Login Interface will get enabled before the customer login form at "
2804
  "WooCommerce My Account page"
2806
  "Интерфейс входа через социальные сети будет активирован перед формой входа "
2807
  "для покупателя на странице Мой Аккаунт в WooCommerce"
2808
 
2809
+ #: ../admin/social_login.php:1311
2810
  #, fuzzy
2811
  msgid "Enable at WooCommerce Customer Login Form"
2812
  msgstr "Включить после формы входа клиента WooCommerce"
2813
 
2814
+ #: ../admin/social_login.php:1321
2815
  #, fuzzy
2816
  msgid ""
2817
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2820
  "Интерфейс входа через социальные сети будет активирован после формы входа "
2821
  "для покупателя на странице Мой Аккаунт в WooCommerce"
2822
 
2823
+ #: ../admin/social_login.php:1328
2824
  #, fuzzy
2825
  msgid "Enable at WooCommerce Customer Register Form"
2826
  msgstr "Включить после формы входа клиента WooCommerce"
2827
 
2828
+ #: ../admin/social_login.php:1338
2829
  #, fuzzy
2830
  msgid ""
2831
  "Integrate Social Login Interface with the customer register form at "
2834
  "Интерфейс входа через социальные сети будет активирован после формы входа "
2835
  "для покупателя на странице Мой Аккаунт в WooCommerce"
2836
 
2837
+ #: ../admin/social_login.php:1345
2838
  msgid "Enable at WooCommerce checkout page"
2839
  msgstr "Включить на странице оформления заказа WooCommerce"
2840
 
2841
+ #: ../admin/social_login.php:1355
2842
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2843
  msgstr ""
2844
  "Интерфейс входа через социальные сети будет активирован на странице "
2845
  "оформления заказа в WooCommerce"
2846
 
2847
+ #: ../admin/social_login.php:1365
2848
  msgid "Auto-approve comments made by Social Login users"
2849
  msgstr ""
2850
  "Автоодобрение комментариев для пользователей, вошедших через социальные сети"
2851
 
2852
+ #: ../admin/social_login.php:1375
2853
  msgid ""
2854
  "If this option is enabled, and WordPress comment is made by Social Login "
2855
  "user, comment will get approved immediately without keeping in moderation."
2858
  "который вошел через социальные сети, то комментарий будет опубликован сразу "
2859
  "без модерации."
2860
 
2861
+ #: ../admin/social_login.php:1376
2862
  msgid "Note: This is not related to Facebook comments"
2863
  msgstr "Примечание: Это не связано с комментариями от Facebook"
2864
 
2865
+ #: ../admin/social_login.php:1385
2866
  msgid "Enable social avatar"
2867
  msgstr "Включение социальных аватар"
2868
 
2869
+ #: ../admin/social_login.php:1395
2870
  msgid ""
2871
  "Social profile pictures of the logged in user will be displayed as profile "
2872
  "avatar"
2874
  "Изображения пользователя в социальных сетях будет использоваться как "
2875
  "изображение профиля на сайте"
2876
 
2877
+ #: ../admin/social_login.php:1404
2878
  msgid "Avatar quality"
2879
  msgstr "Качество аватары"
2880
 
2881
+ #: ../admin/social_login.php:1407
2882
  msgid "Average"
2883
  msgstr "Среднее"
2884
 
2885
+ #: ../admin/social_login.php:1408
2886
  msgid "Best"
2887
  msgstr "лучший"
2888
 
2889
+ #: ../admin/social_login.php:1415
2890
  msgid "Choose avatar quality"
2891
  msgstr "Выберите качество аватара"
2892
 
2893
+ #: ../admin/social_login.php:1423
2894
  msgid ""
2895
  "Show option for users to update social avatar at BuddyPress profile page"
2896
  msgstr ""
2897
  "Показать вариант для пользователей для обновления социального аватара на "
2898
  "странице профиля BuddyPress"
2899
 
2900
+ #: ../admin/social_login.php:1433
2901
  msgid ""
2902
  "If enabled, users would be able to update their social avatar from \"Profile "
2903
  "photo\" section in BuddyPress profile at front-end"
2905
  "Если этот параметр включен, пользователи смогут обновить свой социальный "
2906
  "аватар из раздела «Профиль» фото в профиле BuddyPress "
2907
 
2908
+ #: ../admin/social_login.php:1453
2909
  msgid ""
2910
  "If enabled and Social ID provider does not provide user's email address on "
2911
  "login, user will be asked to provide his/her email address. Otherwise, a "
2915
  "для входа, пользователю потребуется ввести свою почту. В противном же "
2916
  "случае, почта будет создана по образцу."
2917
 
2918
+ #: ../admin/social_login.php:1461
2919
  msgid "Send post-registration email to user to set account password"
2920
  msgstr ""
2921
  "Отправить после регистрации по электронной почте пользователю письмо чтобы "
2922
  "установить пароль учетной записи"
2923
 
2924
+ #: ../admin/social_login.php:1471
2925
  msgid ""
2926
  "If enabled, an email will be sent to user after registration through Social "
2927
  "Login, regarding his/her login credentials (username-password to be able to "
2931
  "социальные сети будет отправлено письмо с именем и пароль чтобы была "
2932
  "возможность зайти черед стандартную форму авторизации"
2933
 
2934
+ #: ../admin/social_login.php:1478
2935
  msgid "Send new user registration notification email to admin"
2936
  msgstr ""
2937
  "Отправить уведомление о регистрации нового пользователя по электронной почте "
2938
  "администратору"
2939
 
2940
+ #: ../admin/social_login.php:1488
2941
  msgid ""
2942
  "If enabled, an email will be sent to admin after new user registers through "
2943
  "Social Login, notifying admin about the new user registration"
2945
  "Если опция включена, на почту администратора прийдет уведомление о "
2946
  "регистрации нового пользователя через соцсети."
2947
 
2948
+ #: ../admin/social_login.php:1495
2949
  msgid "Login redirection"
2950
  msgstr "Перенаправления входа"
2951
 
2952
+ #: ../admin/social_login.php:1499
2953
  msgid "Same page where user logged in"
2954
  msgstr "Та же страница, на которой пользователь произвел вход "
2955
 
2956
+ #: ../admin/social_login.php:1503 ../admin/social_login.php:1532
2957
  msgid "Account dashboard"
2958
  msgstr "Страница управления моим аккаунтом"
2959
 
2960
+ #: ../admin/social_login.php:1506 ../admin/social_login.php:1535
2961
  msgid "BuddyPress profile page"
2962
  msgstr "Страница профиля BuddyPress"
2963
 
2964
+ #: ../admin/social_login.php:1509 ../admin/social_login.php:1538
2965
  msgid "Custom Url"
2966
  msgstr "Пользовательская ссылка"
2967
 
2968
+ #: ../admin/social_login.php:1517
2969
  msgid "User will be redirected to the selected page after Social Login"
2970
  msgstr ""
2971
  "Пользователь будет перенаправлен на выбранную страницу после входа через "
2972
  "социальные сети"
2973
 
2974
+ #: ../admin/social_login.php:1524
2975
  msgid "Registration redirection"
2976
  msgstr "Перенаправлении регистрации"
2977
 
2978
+ #: ../admin/social_login.php:1528
2979
  msgid "Same page from where user registered"
2980
  msgstr "URL целевой страницы, на которой зарегистрирован пользователь"
2981
 
2982
+ #: ../admin/social_login.php:1546
2983
  msgid ""
2984
  "User will be redirected to the selected page after registration (first "
2985
  "Social Login) through Social Login"
2987
  "Пользователь будет перенаправлен на выбранную страницу после регистрации "
2988
  "(первый вход чере социальные сети) через социальные логин"
2989
 
2990
+ #: ../admin/social_login.php:1555
2991
  #, fuzzy
2992
  msgid "Social Account Linking Options"
2993
  msgstr "Ссылки на социальный аккаунт"
2994
 
2995
+ #: ../admin/social_login.php:1570
2996
  #, fuzzy
2997
  msgid "Text to display above the Social Account Linking interface"
2998
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
2999
 
3000
+ #: ../admin/social_login.php:1577
3001
  msgid ""
3002
  "Link social account to already existing account, if email address matches"
3003
  msgstr ""
3004
  "Связывает аккаунт соцсетей с существующим аккаунтом если почта совпадает."
3005
 
3006
+ #: ../admin/social_login.php:1587
3007
  #, fuzzy
3008
  msgid ""
3009
  "If email address of the user's Social Account matches with an already "
3016
  "связан с существующей учетной записью. Пользователь сможет управлять этим на "
3017
  "странице профиля."
3018
 
3019
+ #: ../admin/social_login.php:1595
3020
  msgid "Enable social account linking at BuddyPress profile page"
3021
  msgstr "Интегрирует социальный аккаунт на странице профиля BuddyPress"
3022
 
3023
+ #: ../admin/social_login.php:1605
3024
  msgid ""
3025
  "Enable this option to show social account linking interface at BuddyPress "
3026
  "profile page"
3028
  "Активируйте эту функцию чтобы интегрировать социальный аккаунт на странице "
3029
  "профиля BuddyPress"
3030
 
3031
+ #: ../admin/social_login.php:1616
3032
  msgid "Email popup options"
3033
  msgstr "Параметры всплывающей электронной Почты"
3034
 
3035
+ #: ../admin/social_login.php:1621
3036
  msgid "Text on 'Email required' popup"
3037
  msgstr "Текст на всплывающем окне «Электронная почта требуется» "
3038
 
3039
+ #: ../admin/social_login.php:1631
3040
  msgid ""
3041
  "This text will be displayed on email required popup. Leave empty if not "
3042
  "required."
3044
  "Этот текст будет отображаться на всплывающем окне. требующем почту. Оставьте "
3045
  "поле пустым если не требуется."
3046
 
3047
+ #: ../admin/social_login.php:1639
3048
  msgid "Error message for 'Email required' popup"
3049
  msgstr "Сообщение ошибки во всплывающем окне \"Требуется почта\""
3050
 
3051
+ #: ../admin/social_login.php:1649
3052
  msgid ""
3053
  "This message will be displayed to user if it provides invalid or already "
3054
  "registered email"
3056
  "Это сообщение будет показано пользователю, если он предоставил неверную или "
3057
  "уже используемую почту"
3058
 
3059
+ #: ../admin/social_login.php:1657
3060
  msgid "Email popup height"
3061
  msgstr "Высота высплывающего окна"
3062
 
3063
+ #: ../admin/social_login.php:1667
3064
  msgid ""
3065
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
3066
  "can increase the height of popup by specifying in this option. Leave empty "
3070
  "\", то вы можете увеличить высотку всплывающего окна. Оставьте пустым для "
3071
  "базового значения."
3072
 
3073
+ #: ../admin/social_login.php:1674
3074
  msgid "Enable email verification"
3075
  msgstr "Включить проверку электронной почты"
3076
 
3077
+ #: ../admin/social_login.php:1684
3078
  msgid ""
3079
  "If enabled, email provided by the user will be verified by sending a "
3080
  "confirmation link to that email. User would not be able to login without "
3083
  "Если опция включена, то на почту, которую указал пользователь, придет письмо "
3084
  "с подтверждением. Пользователь не сможет зайти без подтверждения своей почты."
3085
 
3086
+ #: ../admin/social_login.php:1704
3087
  #, fuzzy
3088
  msgid "Enable GDPR opt-in"
3089
  msgstr "Активировать комментирование через Disqus"
3090
 
3091
+ #: ../admin/social_login.php:1714
3092
  msgid ""
3093
  "Enable it to show GDPR opt-in for social login and social account linking"
3094
  msgstr ""
3095
 
3096
+ #: ../admin/social_login.php:1722
3097
  #, fuzzy
3098
  msgid "Placement of GDPR opt-in"
3099
  msgstr "Активировать комментирование через Disqus"
3100
 
3101
+ #: ../admin/social_login.php:1726
3102
  #, fuzzy
3103
  msgid "Above Social Login icons"
3104
  msgstr "Параметры входа через соцсети"
3105
 
3106
+ #: ../admin/social_login.php:1728
3107
  #, fuzzy
3108
  msgid "Below Social Login icons"
3109
  msgstr "Параметры входа через соцсети"
3110
 
3111
+ #: ../admin/social_login.php:1734
3112
  #, fuzzy
3113
  msgid "Placement of GDPR opt-in above or below the social login icons"
3114
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
3115
 
3116
+ #: ../admin/social_login.php:1741
3117
  msgid "Opt-in text"
3118
  msgstr ""
3119
 
3120
+ #: ../admin/social_login.php:1751
3121
  #, fuzzy
3122
  msgid "Text for the GDPR opt-in"
3123
  msgstr "Активировать комментирование через Disqus"
3124
 
3125
+ #: ../admin/social_login.php:1758
3126
  msgid "Text to link to Terms-Conditions page"
3127
  msgstr ""
3128
 
3129
+ #: ../admin/social_login.php:1768
3130
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
3131
  msgstr ""
3132
 
3133
+ #: ../admin/social_login.php:1775
3134
  msgid "Terms-Conditions Url"
3135
  msgstr ""
3136
 
3137
+ #: ../admin/social_login.php:1785
3138
  #, fuzzy
3139
  msgid "Url of the terms-conditions page of your website"
3140
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
3141
 
3142
+ #: ../admin/social_login.php:1792
3143
  msgid "Text to link to Privacy Policy page"
3144
  msgstr ""
3145
 
3146
+ #: ../admin/social_login.php:1802
3147
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
3148
  msgstr ""
3149
 
3150
+ #: ../admin/social_login.php:1809
3151
  msgid "Privacy Policy Url"
3152
  msgstr ""
3153
 
3154
+ #: ../admin/social_login.php:1819
3155
  #, fuzzy
3156
  msgid "Url of the privacy policy page of your website"
3157
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
3158
 
3159
+ #: ../admin/social_login.php:1870 ../inc/widget.php:260 ../inc/widget.php:438
3160
  #: ../inc/widget.php:602 ../inc/widget.php:750
3161
  msgid "Select"
3162
  msgstr "Выбор"
3163
 
3164
+ #: ../admin/social_login.php:1901
3165
  msgid "Social Login Shortcode & Widget"
3166
  msgstr "Шорткод и виджет для входа через социальные сети "
3167
 
3168
+ #: ../admin/social_login.php:1902
3169
  msgid "Social Linking Shortcode"
3170
  msgstr "Шорткод социальных ссылок"
3171
 
3172
+ #: ../admin/social_login.php:1917
3173
  #, fuzzy
3174
  msgid "Why is social login not working?"
3175
  msgstr "Почему Facebook логин не работает?"
3176
 
3177
+ #: ../admin/social_login.php:1918
3178
  msgid ""
3179
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3180
  "belong to the same app"
3181
  msgstr ""
3182
 
3183
+ #: ../admin/social_login.php:1920
3184
  msgid "Social Login not working with Varnish enabled"
3185
  msgstr ""
3186
 
3187
+ #: ../admin/social_login.php:1921
3188
  msgid ""
3189
  "Why the user is not appearing logged in even after Social Login until the "
3190
  "webpage is refreshed manually?"
3395
  msgid "Archives"
3396
  msgstr "Архивы "
3397
 
3398
+ #: ../inc/social_sharing.php:225
3399
+ msgid "More"
3400
+ msgstr ""
3401
+
3402
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3403
  msgid "Invalid request"
3404
  msgstr "Неверный Запрос!"
3407
  msgid "Providers not selected"
3408
  msgstr "Сервисы не выбраны"
3409
 
3410
+ #: ../inc/social_sharing_networks.php:57
3411
+ msgid "Copy Link"
3412
+ msgstr ""
3413
+
3414
+ #: ../inc/social_login.php:1030
3415
  msgid "Email"
3416
  msgstr "Email"
3417
 
3418
+ #: ../inc/social_login.php:1031
3419
  msgid "Confirm email"
3420
  msgstr "Подтвердить e-mail"
3421
 
3422
+ #: ../inc/social_login.php:1033
3423
  msgid "Save"
3424
  msgstr "Сохранить"
3425
 
3426
+ #: ../inc/social_login.php:1034
3427
  msgid "Cancel"
3428
  msgstr "Отменить"
3429
 
3430
+ #: ../inc/social_login.php:1108
3431
  msgid "Email Verification"
3432
  msgstr "Подтверждение адреса электронной почты"
3433
 
3434
+ #: ../inc/social_login.php:1110
3435
  msgid ""
3436
  "Please click on the following link or paste it in browser to verify your "
3437
  "email"
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-01-27 15:38+0530\n"
6
- "PO-Revision-Date: 2021-01-27 15:38+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../super_socializer.php:1570
21
  msgid ""
22
  "cURL is not enabled at your website server. Please contact your website "
23
  "server administrator to enable it."
@@ -25,7 +25,7 @@ msgstr ""
25
  "Curl не включений у вашому веб-сайті. Вам, можливо, буде потрібно звернутися "
26
  "до адміністратора вашого сайту, щоб включити це."
27
 
28
- #: ../super_socializer.php:1598
29
  #, fuzzy, php-format
30
  msgid ""
31
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -34,7 +34,7 @@ msgstr ""
34
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
35
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
36
 
37
- #: ../super_socializer.php:1601
38
  #, fuzzy, php-format
39
  msgid ""
40
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -43,7 +43,7 @@ msgstr ""
43
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
44
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
45
 
46
- #: ../super_socializer.php:1604
47
  msgid ""
48
  "Make sure cURL is enabled at your website server. You may need to contact "
49
  "the server administrator of your website to verify this"
@@ -52,67 +52,72 @@ msgstr ""
52
  "буде потрібно звернутися до адміністратора сервера вашого сайту, щоб "
53
  "переконатися в цьому."
54
 
55
- #: ../super_socializer.php:1786 ../helper.php:986
 
 
 
 
 
56
  msgid "Please verify your email address to login."
57
  msgstr "Будь ласка, підтвердіть свою адресу електронної пошти."
58
 
59
- #: ../super_socializer.php:1786
60
  msgid "Your email has been verified. Now you can login to your account"
61
  msgstr ""
62
  "Ваша електронна адреса була перевірена. Тепер ви можете увійти до свого "
63
  "облікового запису"
64
 
65
- #: ../super_socializer.php:1790
66
  msgid "Notification"
67
  msgstr "Повідомлення"
68
 
69
- #: ../super_socializer.php:1808 ../admin/social_login.php:1280
70
  msgid "Email required"
71
  msgstr "Електронна адреса (обо'язково)"
72
 
73
- #: ../super_socializer.php:1811
74
  msgid "Please check your email inbox to complete the registration."
75
  msgstr "Будь ласка, перевірте вашу поштову скриньку для завершення реєстрації."
76
 
77
- #: ../super_socializer.php:1880
78
  msgid "Leave a reply"
79
  msgstr "Залишити коментар"
80
 
81
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
82
  msgid "Shares"
83
  msgstr "Поширили:"
84
 
85
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
86
  msgid "Share"
87
  msgstr "Поділитися"
88
 
89
- #: ../super_socializer.php:1896
90
  #, fuzzy
91
  msgid "Link copied."
92
  msgstr "LinkedIn"
93
 
94
- #: ../super_socializer.php:2141
95
  msgid "Super Socializer - General Options"
96
  msgstr "Super Socializer - Загальні Параметри"
97
 
98
- #: ../super_socializer.php:2141 ../admin/general_options.php:15
99
  #: ../admin/social_commenting.php:47
100
  msgid "General Options"
101
  msgstr "Загальні параметри"
102
 
103
- #: ../super_socializer.php:2209 ../helper.php:915
104
  msgid "Social Avatar"
105
  msgstr "Соціальний Аватар"
106
 
107
- #: ../super_socializer.php:2212
108
  msgid "Small Avatar Url"
109
  msgstr "Посилання для маленького аватара"
110
 
111
- #: ../super_socializer.php:2216
112
  msgid "Large Avatar Url"
113
  msgstr "Посилання для великого аватара"
114
 
115
- #: ../super_socializer.php:2220 ../helper.php:918
116
  msgid ""
117
  "Do not fetch and update social avatar from my profile, next time I Social "
118
  "Login"
@@ -120,77 +125,77 @@ msgstr ""
120
  "Не отримувати і оновлювати соціальний аватар з мого профілю, в наступний "
121
  "раз коли я використовую вхід через соцмережі"
122
 
123
- #: ../super_socializer.php:2224 ../helper.php:919
124
  msgid "Update social avatar, next time I Social Login"
125
  msgstr ""
126
  "Оновлення аватара соцмереж наступного разу при використанні входу через "
127
  "соцмережі"
128
 
129
- #: ../super_socializer.php:2301
130
  msgid "Login with your Social ID"
131
  msgstr "Увійти через соціальний аккаунт"
132
 
133
- #: ../super_socializer.php:2302
134
  msgid "Email you entered is already registered or invalid"
135
  msgstr "Електронна пошта, яку ви ввели, вже зареєстрована або недійсна"
136
 
137
- #: ../super_socializer.php:2309
138
  msgid "Please enter a valid email address. You might be required to verify it"
139
  msgstr ""
140
  "Будь ласка, введіть дійсну адресу електронної пошти. Вам, можливо, буде "
141
  "потрібно перевірити його"
142
 
143
- #: ../super_socializer.php:2313 ../super_socializer.php:3039
144
  msgid "Link your social account to login to your account at this website"
145
  msgstr ""
146
  "Введіть посилання на ваш аккаунт в соціальних мережах щоб увійти в обліковий "
147
  "запис на цьому сайті"
148
 
149
- #: ../super_socializer.php:2561
150
  msgid "Thanks for installing Super Socializer plugin"
151
  msgstr ""
152
 
153
- #: ../super_socializer.php:2563
154
  msgid "Configure the Plugin"
155
  msgstr ""
156
 
157
- #: ../super_socializer.php:2574
158
  msgid ""
159
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
160
  "current version of Super Socializer"
161
  msgstr ""
162
 
163
- #: ../super_socializer.php:2583
164
  msgid ""
165
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
166
  "version of Super Socializer"
167
  msgstr ""
168
 
169
- #: ../super_socializer.php:2592
170
  msgid ""
171
- "Update \"Social Login Buttons\" add-on to version 1.2.6 or above for "
172
  "compatibility with current version of Super Socializer"
173
  msgstr ""
174
 
175
- #: ../super_socializer.php:2601
176
  msgid ""
177
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
178
  "with current version of Super Socializer"
179
  msgstr ""
180
 
181
- #: ../super_socializer.php:2610
182
  msgid ""
183
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
184
  "with current version of Super Socializer"
185
  msgstr ""
186
 
187
- #: ../super_socializer.php:2621
188
  #, php-format
189
  msgid ""
190
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
191
  msgstr ""
192
 
193
- #: ../super_socializer.php:2630
194
  #, php-format
195
  msgid ""
196
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -198,7 +203,7 @@ msgid ""
198
  "Instagram App Secret <a href=\"%s\">here</a>"
199
  msgstr ""
200
 
201
- #: ../super_socializer.php:2639 ../super_socializer.php:2648
202
  #, php-format
203
  msgid ""
204
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -207,13 +212,13 @@ msgid ""
207
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
208
  msgstr ""
209
 
210
- #: ../super_socializer.php:2664
211
  #, php-format
212
  msgid ""
213
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
214
  msgstr ""
215
 
216
- #: ../super_socializer.php:2688
217
  #, php-format
218
  msgid ""
219
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -221,14 +226,14 @@ msgid ""
221
  "target=\"_blank\">here</a>"
222
  msgstr ""
223
 
224
- #: ../super_socializer.php:2688 ../super_socializer.php:2713
225
- #: ../super_socializer.php:2738 ../super_socializer.php:2763
226
- #: ../super_socializer.php:2796 ../super_socializer.php:2824
227
- #: ../super_socializer.php:2851
228
  msgid "Okay"
229
  msgstr "Гаразд."
230
 
231
- #: ../super_socializer.php:2713
232
  #, php-format
233
  msgid ""
234
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -236,7 +241,7 @@ msgid ""
236
  "\">here</a>"
237
  msgstr ""
238
 
239
- #: ../super_socializer.php:2738
240
  #, php-format
241
  msgid ""
242
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -244,7 +249,7 @@ msgid ""
244
  "target=\"_blank\">here</a>"
245
  msgstr ""
246
 
247
- #: ../super_socializer.php:2763
248
  #, php-format
249
  msgid ""
250
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -252,13 +257,13 @@ msgid ""
252
  "target=\"_blank\">here</a>"
253
  msgstr ""
254
 
255
- #: ../super_socializer.php:2774
256
  #, php-format
257
  msgid ""
258
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
259
  msgstr ""
260
 
261
- #: ../super_socializer.php:2796
262
  #, php-format
263
  msgid ""
264
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -266,7 +271,7 @@ msgid ""
266
  "\"%s\" target=\"_blank\">here</a>"
267
  msgstr ""
268
 
269
- #: ../super_socializer.php:2824
270
  #, php-format
271
  msgid ""
272
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -275,7 +280,7 @@ msgid ""
275
  "your website %s with them. No need to copy-paste any code from their website."
276
  msgstr ""
277
 
278
- #: ../super_socializer.php:2851
279
  #, php-format
280
  msgid ""
281
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -283,7 +288,7 @@ msgid ""
283
  "\"%s\" target=\"_blank\">here</a>"
284
  msgstr ""
285
 
286
- #: ../super_socializer.php:2876
287
  #, php-format
288
  msgid ""
289
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -291,11 +296,11 @@ msgid ""
291
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
292
  msgstr ""
293
 
294
- #: ../super_socializer.php:2876 ../super_socializer.php:2903
295
  msgid "Dismiss"
296
  msgstr ""
297
 
298
- #: ../super_socializer.php:2902
299
  #, php-format
300
  msgid ""
301
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -304,7 +309,7 @@ msgid ""
304
  "that, clear share counts cache from \"Miscellaneous\" section"
305
  msgstr ""
306
 
307
- #: ../super_socializer.php:3115
308
  msgid ""
309
  "Your browser is blocking some features of this website. Please follow the "
310
  "instructions at {support_url} to unblock these."
@@ -316,118 +321,118 @@ msgstr ""
316
  msgid "Settings saved"
317
  msgstr "Налаштування збережені"
318
 
319
- #: ../helper.php:185
320
  #, fuzzy
321
  msgid "Click to toggle help"
322
  msgstr "Натисніть, щоб приховати довідку"
323
 
324
- #: ../helper.php:282
325
  msgid "Add-Ons"
326
  msgstr "Доповнення"
327
 
328
- #: ../helper.php:283
329
  msgid "Support Documentation"
330
  msgstr "Технічна документація"
331
 
332
- #: ../helper.php:284
333
  msgid "Settings"
334
  msgstr "Налаштування"
335
 
336
- #: ../helper.php:567
337
  msgid "Account linked successfully"
338
  msgstr "Аккаунт успішно пов'язаний"
339
 
340
- #: ../helper.php:571
341
  msgid "Account already exists or linked"
342
  msgstr "Аккаунт вже існує або пов'язаний"
343
 
344
- #: ../helper.php:607 ../helper.php:609
345
  msgid "Login with"
346
  msgstr "Увійти з"
347
 
348
- #: ../helper.php:644 ../helper.php:650
349
  msgid "Currently"
350
  msgstr "в даний час"
351
 
352
- #: ../helper.php:644 ../helper.php:650
353
  msgid "Connected with"
354
  msgstr "Авторизуватися за допомогою"
355
 
356
- #: ../helper.php:644 ../helper.php:650
357
  msgid "Remove"
358
  msgstr "Видалити"
359
 
360
- #: ../helper.php:721
361
  msgid "Social Account Linking"
362
  msgstr "Посилання на соціальний аккаунт"
363
 
364
- #: ../helper.php:771
365
  msgid "Disable Standard Social Sharing on this "
366
  msgstr "Відключити стандартний блок Поділитися на цьому"
367
 
368
- #: ../helper.php:776
369
  msgid "Disable Floating Social Sharing on this "
370
  msgstr "Відключити плаваючий блок Поділитися на цьому"
371
 
372
- #: ../helper.php:781
373
  msgid "Disable Standard like buttons on this "
374
  msgstr "Відключити стандартні кнопки Подобається на цьому"
375
 
376
- #: ../helper.php:786
377
  msgid "Disable Floating like buttons on this "
378
  msgstr "Відключити плаваючі кнопки Подобається на цьому"
379
 
380
- #: ../helper.php:791
381
  msgid "Disable Social Commenting on this "
382
  msgstr "Деактивувати соціальне коментування"
383
 
384
- #: ../helper.php:800
385
  msgid "Standard Sharing Interface"
386
  msgstr "Стандартний інтерфейс Поділитися"
387
 
388
- #: ../helper.php:806 ../helper.php:825
389
  msgid "Starting share count for "
390
  msgstr "Запустити лічильник Поділитися для"
391
 
392
- #: ../helper.php:819
393
  msgid "Floating Sharing Interface"
394
  msgstr "Плаваючий інтерфейс Поділитися"
395
 
396
- #: ../helper.php:922
397
  msgid "Small Avatar"
398
  msgstr "Невеликий аватар"
399
 
400
- #: ../helper.php:926
401
  msgid "Large Avatar"
402
  msgstr "Великий аватар"
403
 
404
- #: ../helper.php:930 ../admin/general_options.php:89
405
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
406
- #: ../admin/social_login.php:1770 ../admin/like_buttons.php:780
407
  msgid "Save Changes"
408
  msgstr "Зберегти налаштування"
409
 
410
- #: ../helper.php:1023
411
  msgid "Click to delete social profile data"
412
  msgstr ""
413
 
414
- #: ../helper.php:1052
415
  #, fuzzy
416
  msgid "Deleting"
417
  msgstr "Налаштування"
418
 
419
- #: ../helper.php:1062
420
  msgid "Deleted"
421
  msgstr ""
422
 
423
- #: ../helper.php:1064
424
  msgid "Something bad happened"
425
  msgstr ""
426
 
427
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
428
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
429
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
430
- #: ../admin/social_login.php:5 ../admin/social_login.php:1774
431
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
432
  #, fuzzy, php-format
433
  msgid ""
@@ -481,14 +486,14 @@ msgstr ""
481
  "Можна вказати будь-які додаткові правила CSS (без тега & lt; style & gt;)"
482
 
483
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
484
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1780
485
  #: ../admin/like_buttons.php:790
486
  #, fuzzy
487
  msgid "Instagram Shoutout"
488
  msgstr "Instagram"
489
 
490
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
491
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1782
492
  #: ../admin/like_buttons.php:792
493
  msgid ""
494
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -631,7 +636,7 @@ msgstr "XProfile інтеграція"
631
 
632
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
633
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
634
- #: ../admin/social_login.php:1736 ../admin/like_buttons.php:50
635
  #: ../admin/like_buttons.php:751
636
  msgid "Shortcode & Widget"
637
  msgstr "Шорткод і віджет"
@@ -642,7 +647,7 @@ msgstr "Усунення несправностей"
642
 
643
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
644
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
645
- #: ../admin/social_login.php:46 ../admin/social_login.php:1750
646
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
647
  msgid "FAQ"
648
  msgstr "Часті питання (FAQ)"
@@ -874,8 +879,8 @@ msgstr "Користувальницьке посилання"
874
  msgid "Url to share"
875
  msgstr "Посилання щоб Поділитися"
876
 
877
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:1021
878
- #: ../admin/social_login.php:1397 ../admin/like_buttons.php:105
879
  #: ../inc/widget.php:949
880
  msgid "Title"
881
  msgstr "Заголовок"
@@ -961,7 +966,7 @@ msgid "Placement"
961
  msgstr "Розміщення"
962
 
963
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
964
- #: ../admin/social_login.php:1338 ../admin/social_login.php:1367
965
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
966
  msgid "Homepage"
967
  msgstr "Головна"
@@ -1230,7 +1235,7 @@ msgstr ""
1230
  msgid "Required only to track Facebook share count"
1231
  msgstr ""
1232
 
1233
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:193
1234
  msgid "Facebook App ID"
1235
  msgstr "Facebook App ID"
1236
 
@@ -1243,7 +1248,7 @@ msgstr ""
1243
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1244
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1245
 
1246
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:214
1247
  #, fuzzy
1248
  msgid "Facebook App Secret"
1249
  msgstr "Facebook App ID"
@@ -1432,7 +1437,7 @@ msgstr ""
1432
  "\"Отримання інформації про нову поломки \"."
1433
 
1434
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1435
- #: ../admin/social_login.php:1752
1436
  msgid ""
1437
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1438
  "an online website for the plugin to function properly."
@@ -1490,7 +1495,7 @@ msgid ""
1490
  msgstr ""
1491
 
1492
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1493
- #: ../admin/social_login.php:1759
1494
  msgid "Why is my browser blocking some features of the plugin?"
1495
  msgstr "Чому мій браузер блокує деякі функції плагіна?"
1496
 
@@ -1807,11 +1812,11 @@ msgstr "Основные настройки"
1807
  msgid "Advanced Configuration"
1808
  msgstr "Розширена конфігурація"
1809
 
1810
- #: ../admin/social_login.php:41 ../admin/social_login.php:1536
1811
  msgid "GDPR"
1812
  msgstr ""
1813
 
1814
- #: ../admin/social_login.php:43 ../admin/social_login.php:1687
1815
  msgid "XProfile Integration"
1816
  msgstr "XProfile інтеграція"
1817
 
@@ -1843,96 +1848,122 @@ msgstr ""
1843
 
1844
  #: ../admin/social_login.php:98
1845
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1846
  msgid "Select Social Networks"
1847
  msgstr "Виберіть сервіси"
1848
 
1849
- #: ../admin/social_login.php:103
1850
  msgid "Facebook"
1851
  msgstr "Facebook"
1852
 
1853
- #: ../admin/social_login.php:107
1854
  msgid "Twitter"
1855
  msgstr "Twitter"
1856
 
1857
- #: ../admin/social_login.php:111
1858
  msgid "LinkedIn"
1859
  msgstr "LinkedIn"
1860
 
1861
- #: ../admin/social_login.php:115
1862
  #, fuzzy
1863
  msgid "Google"
1864
  msgstr "Google+"
1865
 
1866
- #: ../admin/social_login.php:119
1867
  msgid "Vkontakte"
1868
  msgstr "Вконтакте"
1869
 
1870
- #: ../admin/social_login.php:123
1871
  msgid "Instagram"
1872
  msgstr "Instagram"
1873
 
1874
- #: ../admin/social_login.php:127
1875
  msgid "Steam"
1876
  msgstr "Steam"
1877
 
1878
- #: ../admin/social_login.php:131
1879
  msgid "Line"
1880
  msgstr ""
1881
 
1882
- #: ../admin/social_login.php:135
1883
  msgid "Wordpress"
1884
  msgstr ""
1885
 
1886
- #: ../admin/social_login.php:139
1887
  msgid "Windows Live"
1888
  msgstr ""
1889
 
1890
- #: ../admin/social_login.php:143
1891
  msgid "Yahoo"
1892
  msgstr ""
1893
 
1894
- #: ../admin/social_login.php:147
 
 
 
 
 
 
 
 
 
 
 
 
1895
  msgid "Spotify"
1896
  msgstr ""
1897
 
1898
- #: ../admin/social_login.php:150
1899
  msgid "Dribbble"
1900
  msgstr ""
1901
 
1902
- #: ../admin/social_login.php:154
1903
  msgid "Twitch"
1904
  msgstr "Twitch"
1905
 
1906
- #: ../admin/social_login.php:158
1907
  #, fuzzy
1908
  msgid "Foursquare"
1909
  msgstr "Квадратна"
1910
 
1911
- #: ../admin/social_login.php:162
1912
  msgid "Dropbox"
1913
  msgstr ""
1914
 
1915
- #: ../admin/social_login.php:166
1916
  msgid "Disqus"
1917
  msgstr ""
1918
 
1919
- #: ../admin/social_login.php:170
1920
  msgid "Reddit"
1921
  msgstr ""
1922
 
1923
- #: ../admin/social_login.php:174
1924
  msgid "Github"
1925
  msgstr ""
1926
 
1927
- #: ../admin/social_login.php:178
1928
  msgid "Kakao"
1929
  msgstr ""
1930
 
1931
- #: ../admin/social_login.php:186
1932
  msgid "Select Social ID provider to enable in Social Login"
1933
  msgstr "Виберіть соцмережі щоб активувати вхід через соцмережі"
1934
 
1935
- #: ../admin/social_login.php:203
1936
  #, php-format
1937
  msgid ""
1938
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1941,7 +1972,7 @@ msgstr ""
1941
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1942
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1943
 
1944
- #: ../admin/social_login.php:205 ../admin/social_login.php:226
1945
  #, fuzzy
1946
  msgid ""
1947
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
@@ -1949,7 +1980,7 @@ msgstr ""
1949
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
1950
  "згадки посилання."
1951
 
1952
- #: ../admin/social_login.php:224
1953
  #, fuzzy, php-format
1954
  msgid ""
1955
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1958,11 +1989,11 @@ msgstr ""
1958
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1959
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1960
 
1961
- #: ../admin/social_login.php:235
1962
  msgid "Twitter API Key"
1963
  msgstr "Twitter API ключ"
1964
 
1965
- #: ../admin/social_login.php:245
1966
  #, php-format
1967
  msgid ""
1968
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1971,7 +2002,7 @@ msgstr ""
1971
  "Необхідно для входу через Twitter. Будь ласка, подивіться документацію <a "
1972
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
1973
 
1974
- #: ../admin/social_login.php:247 ../admin/social_login.php:272
1975
  #, fuzzy
1976
  msgid ""
1977
  "Paste following url in <strong>Website</strong> option mentioned at the link"
@@ -1979,13 +2010,13 @@ msgstr ""
1979
  "Вставити наступний URL-адресу в <strong> URL веб-сайту </ strong> для згадки "
1980
  "посилання"
1981
 
1982
- #: ../admin/social_login.php:251 ../admin/social_login.php:276
1983
- #: ../admin/social_login.php:464 ../admin/social_login.php:484
1984
- #: ../admin/social_login.php:685 ../admin/social_login.php:705
1985
- #: ../admin/social_login.php:726 ../admin/social_login.php:746
1986
- #: ../admin/social_login.php:851 ../admin/social_login.php:871
1987
- #: ../admin/social_login.php:936 ../admin/social_login.php:956
1988
- #: ../admin/social_login.php:978 ../admin/social_login.php:998
1989
  #, fuzzy
1990
  msgid ""
1991
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -1994,11 +2025,11 @@ msgstr ""
1994
  "Вставити наступний URL-адресу в <strong> URL веб-сайту </ strong> для згадки "
1995
  "посилання"
1996
 
1997
- #: ../admin/social_login.php:260
1998
  msgid "Twitter API Secret"
1999
  msgstr "Twitter API секретний ключ"
2000
 
2001
- #: ../admin/social_login.php:270
2002
  #, php-format
2003
  msgid ""
2004
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -2008,12 +2039,12 @@ msgstr ""
2008
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання секретного ключа "
2009
  "додатку Twitter ."
2010
 
2011
- #: ../admin/social_login.php:285
2012
  #, fuzzy
2013
  msgid "LinkedIn Client ID"
2014
  msgstr "LinkedIn"
2015
 
2016
- #: ../admin/social_login.php:295
2017
  #, fuzzy, php-format
2018
  msgid ""
2019
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2022,8 +2053,8 @@ msgstr ""
2022
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2023
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2024
 
2025
- #: ../admin/social_login.php:297 ../admin/social_login.php:318
2026
- #: ../admin/social_login.php:504 ../admin/social_login.php:524
2027
  #, fuzzy
2028
  msgid ""
2029
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -2032,12 +2063,12 @@ msgstr ""
2032
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2033
  "згадки посилання."
2034
 
2035
- #: ../admin/social_login.php:306
2036
  #, fuzzy
2037
  msgid "LinkedIn Client Secret"
2038
  msgstr "LinkedIn"
2039
 
2040
- #: ../admin/social_login.php:316
2041
  #, fuzzy, php-format
2042
  msgid ""
2043
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2047,12 +2078,12 @@ msgstr ""
2047
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2048
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2049
 
2050
- #: ../admin/social_login.php:327
2051
  #, fuzzy
2052
  msgid "Google Client ID"
2053
  msgstr "Google+ ID клієнта"
2054
 
2055
- #: ../admin/social_login.php:337
2056
  #, fuzzy, php-format
2057
  msgid ""
2058
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2061,7 +2092,7 @@ msgstr ""
2061
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2062
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2063
 
2064
- #: ../admin/social_login.php:339 ../admin/social_login.php:360
2065
  #, fuzzy
2066
  msgid ""
2067
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2070,12 +2101,12 @@ msgstr ""
2070
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2071
  "згадки посилання."
2072
 
2073
- #: ../admin/social_login.php:348
2074
  #, fuzzy
2075
  msgid "Google Client Secret"
2076
  msgstr "Google+ ID клієнта"
2077
 
2078
- #: ../admin/social_login.php:358
2079
  #, fuzzy, php-format
2080
  msgid ""
2081
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2084,11 +2115,11 @@ msgstr ""
2084
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2085
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2086
 
2087
- #: ../admin/social_login.php:369
2088
  msgid "Vkontakte Application ID"
2089
  msgstr "ID додатку Вконтакте"
2090
 
2091
- #: ../admin/social_login.php:379 ../admin/social_login.php:400
2092
  #, php-format
2093
  msgid ""
2094
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2098,7 +2129,7 @@ msgstr ""
2098
  "Необхідно для входу через Vkontakte. Будь ласка, подивіться документацію <a "
2099
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Vkontakte."
2100
 
2101
- #: ../admin/social_login.php:381 ../admin/social_login.php:402
2102
  #, fuzzy
2103
  msgid ""
2104
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2107,17 +2138,17 @@ msgstr ""
2107
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2108
  "згадки посилання."
2109
 
2110
- #: ../admin/social_login.php:390
2111
  #, fuzzy
2112
  msgid "Vkontakte Secure key"
2113
  msgstr "Вконтакте"
2114
 
2115
- #: ../admin/social_login.php:411
2116
  #, fuzzy
2117
  msgid "Instagram App ID"
2118
  msgstr "Instagram ID клієнта"
2119
 
2120
- #: ../admin/social_login.php:421
2121
  #, fuzzy, php-format
2122
  msgid ""
2123
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2126,7 +2157,7 @@ msgstr ""
2126
  "Необхідно для входу через Instagram. Будь ласка, подивіться документацію <a "
2127
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Instagram."
2128
 
2129
- #: ../admin/social_login.php:423 ../admin/social_login.php:444
2130
  #, fuzzy
2131
  msgid ""
2132
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2135,12 +2166,12 @@ msgstr ""
2135
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2136
  "згадки посилання."
2137
 
2138
- #: ../admin/social_login.php:432
2139
  #, fuzzy
2140
  msgid "Instagram App Secret"
2141
  msgstr "Введіть ім'я користувача Instagram."
2142
 
2143
- #: ../admin/social_login.php:442
2144
  #, fuzzy, php-format
2145
  msgid ""
2146
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2149,11 +2180,11 @@ msgstr ""
2149
  "Необхідно для входу через Instagram. Будь ласка, подивіться документацію <a "
2150
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Instagram."
2151
 
2152
- #: ../admin/social_login.php:453
2153
  msgid "Line Channel ID"
2154
  msgstr ""
2155
 
2156
- #: ../admin/social_login.php:462
2157
  #, fuzzy, php-format
2158
  msgid ""
2159
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2162,12 +2193,12 @@ msgstr ""
2162
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2163
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2164
 
2165
- #: ../admin/social_login.php:473
2166
  #, fuzzy
2167
  msgid "Line Channel Secret"
2168
  msgstr "LinkedIn"
2169
 
2170
- #: ../admin/social_login.php:482
2171
  #, fuzzy, php-format
2172
  msgid ""
2173
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2176,12 +2207,12 @@ msgstr ""
2176
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2177
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2178
 
2179
- #: ../admin/social_login.php:493
2180
  #, fuzzy
2181
  msgid "Wordpress Client ID"
2182
  msgstr "Google+ ID клієнта"
2183
 
2184
- #: ../admin/social_login.php:502
2185
  #, fuzzy, php-format
2186
  msgid ""
2187
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2190,12 +2221,12 @@ msgstr ""
2190
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2191
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2192
 
2193
- #: ../admin/social_login.php:513
2194
  #, fuzzy
2195
  msgid "Wordpress Client Secret"
2196
  msgstr "Google+ ID клієнта"
2197
 
2198
- #: ../admin/social_login.php:522
2199
  #, fuzzy, php-format
2200
  msgid ""
2201
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2205,12 +2236,12 @@ msgstr ""
2205
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2206
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2207
 
2208
- #: ../admin/social_login.php:533
2209
  #, fuzzy
2210
  msgid "Microsoft Client ID"
2211
  msgstr "Google+ ID клієнта"
2212
 
2213
- #: ../admin/social_login.php:542
2214
  #, fuzzy, php-format
2215
  msgid ""
2216
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2219,9 +2250,9 @@ msgstr ""
2219
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2220
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2221
 
2222
- #: ../admin/social_login.php:544 ../admin/social_login.php:564
2223
- #: ../admin/social_login.php:643 ../admin/social_login.php:663
2224
- #: ../admin/social_login.php:808 ../admin/social_login.php:828
2225
  #, fuzzy
2226
  msgid ""
2227
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2230,12 +2261,12 @@ msgstr ""
2230
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2231
  "згадки посилання."
2232
 
2233
- #: ../admin/social_login.php:553
2234
  #, fuzzy
2235
  msgid "Microsoft Client Secret"
2236
  msgstr "Google+ ID клієнта"
2237
 
2238
- #: ../admin/social_login.php:562
2239
  #, fuzzy, php-format
2240
  msgid ""
2241
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2245,12 +2276,12 @@ msgstr ""
2245
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2246
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2247
 
2248
- #: ../admin/social_login.php:572
2249
  #, fuzzy
2250
  msgid "Steam API Key"
2251
  msgstr "Twitter API ключ"
2252
 
2253
- #: ../admin/social_login.php:581
2254
  #, fuzzy, php-format
2255
  msgid ""
2256
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2259,19 +2290,19 @@ msgstr ""
2259
  "Необхідно для входу через Twitter. Будь ласка, подивіться документацію <a "
2260
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
2261
 
2262
- #: ../admin/social_login.php:582
2263
  #, fuzzy
2264
  msgid "Save following <strong>domain</strong> to get the key"
2265
  msgstr ""
2266
  "Вставити наступний URL-адресу в <strong> URL веб-сайту </ strong> для згадки "
2267
  "посилання"
2268
 
2269
- #: ../admin/social_login.php:591
2270
  #, fuzzy
2271
  msgid "Yahoo Client ID"
2272
  msgstr "Google+ ID клієнта"
2273
 
2274
- #: ../admin/social_login.php:600
2275
  #, fuzzy, php-format
2276
  msgid ""
2277
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2280,21 +2311,21 @@ msgstr ""
2280
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2281
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2282
 
2283
- #: ../admin/social_login.php:602 ../admin/social_login.php:622
2284
  #, fuzzy
2285
  msgid ""
2286
- "Paste following url in <strong>Redirect URI(s)</strong> option mentioned at "
2287
- "the link"
2288
  msgstr ""
2289
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2290
  "згадки посилання."
2291
 
2292
- #: ../admin/social_login.php:611
2293
  #, fuzzy
2294
  msgid "Yahoo Client Secret"
2295
  msgstr "Google+ ID клієнта"
2296
 
2297
- #: ../admin/social_login.php:620
2298
  #, fuzzy, php-format
2299
  msgid ""
2300
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2303,12 +2334,132 @@ msgstr ""
2303
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2304
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2305
 
2306
- #: ../admin/social_login.php:632
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2307
  #, fuzzy
2308
  msgid "Spotify Client ID"
2309
  msgstr "Google+ ID клієнта"
2310
 
2311
- #: ../admin/social_login.php:641
2312
  #, fuzzy, php-format
2313
  msgid ""
2314
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2317,12 +2468,12 @@ msgstr ""
2317
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2318
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2319
 
2320
- #: ../admin/social_login.php:652
2321
  #, fuzzy
2322
  msgid "Spotify Client Secret"
2323
  msgstr "Google+ ID клієнта"
2324
 
2325
- #: ../admin/social_login.php:661
2326
  #, fuzzy, php-format
2327
  msgid ""
2328
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2332,12 +2483,12 @@ msgstr ""
2332
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2333
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2334
 
2335
- #: ../admin/social_login.php:674
2336
  #, fuzzy
2337
  msgid "Dribbble Client ID"
2338
  msgstr "Google+ ID клієнта"
2339
 
2340
- #: ../admin/social_login.php:683
2341
  #, fuzzy, php-format
2342
  msgid ""
2343
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2346,12 +2497,12 @@ msgstr ""
2346
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2347
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2348
 
2349
- #: ../admin/social_login.php:694
2350
  #, fuzzy
2351
  msgid "Dribbble Client Secret"
2352
  msgstr "Google+ ID клієнта"
2353
 
2354
- #: ../admin/social_login.php:703
2355
  #, fuzzy, php-format
2356
  msgid ""
2357
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2361,12 +2512,12 @@ msgstr ""
2361
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2362
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2363
 
2364
- #: ../admin/social_login.php:715
2365
  #, fuzzy
2366
  msgid "Twitch Client ID"
2367
  msgstr "Twitch Client ID "
2368
 
2369
- #: ../admin/social_login.php:724
2370
  #, fuzzy, php-format
2371
  msgid ""
2372
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2375,12 +2526,12 @@ msgstr ""
2375
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2376
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2377
 
2378
- #: ../admin/social_login.php:735
2379
  #, fuzzy
2380
  msgid "Twitch Client Secret"
2381
  msgstr "Twitch Client ID "
2382
 
2383
- #: ../admin/social_login.php:744
2384
  #, fuzzy, php-format
2385
  msgid ""
2386
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2389,12 +2540,12 @@ msgstr ""
2389
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2390
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2391
 
2392
- #: ../admin/social_login.php:757
2393
  #, fuzzy
2394
  msgid "Foursquare Client ID"
2395
  msgstr "Google+ ID клієнта"
2396
 
2397
- #: ../admin/social_login.php:766
2398
  #, fuzzy, php-format
2399
  msgid ""
2400
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2404,7 +2555,7 @@ msgstr ""
2404
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2405
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2406
 
2407
- #: ../admin/social_login.php:768 ../admin/social_login.php:788
2408
  #, fuzzy
2409
  msgid ""
2410
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
@@ -2413,12 +2564,12 @@ msgstr ""
2413
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2414
  "згадки посилання."
2415
 
2416
- #: ../admin/social_login.php:777
2417
  #, fuzzy
2418
  msgid "Foursquare Client Secret"
2419
  msgstr "Google+ ID клієнта"
2420
 
2421
- #: ../admin/social_login.php:786
2422
  #, fuzzy, php-format
2423
  msgid ""
2424
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2428,11 +2579,11 @@ msgstr ""
2428
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2429
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2430
 
2431
- #: ../admin/social_login.php:797
2432
  msgid "Dropbox App Key"
2433
  msgstr ""
2434
 
2435
- #: ../admin/social_login.php:806
2436
  #, fuzzy, php-format
2437
  msgid ""
2438
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2441,12 +2592,12 @@ msgstr ""
2441
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
2442
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
2443
 
2444
- #: ../admin/social_login.php:817
2445
  #, fuzzy
2446
  msgid "Dropbox App Secret"
2447
  msgstr "Facebook App ID"
2448
 
2449
- #: ../admin/social_login.php:826
2450
  #, fuzzy, php-format
2451
  msgid ""
2452
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2455,11 +2606,11 @@ msgstr ""
2455
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
2456
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
2457
 
2458
- #: ../admin/social_login.php:840
2459
  msgid "Disqus Public Key"
2460
  msgstr ""
2461
 
2462
- #: ../admin/social_login.php:849
2463
  #, fuzzy, php-format
2464
  msgid ""
2465
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2468,12 +2619,12 @@ msgstr ""
2468
  "Необхідно для входу через Xing. Будь ласка, подивіться документацію <a href="
2469
  "\"%s\" target=\"_blank\"> тут </a> для отримання ключа споживача Xing."
2470
 
2471
- #: ../admin/social_login.php:860
2472
  #, fuzzy
2473
  msgid "Disqus Secret Key"
2474
  msgstr "Коротке ім'я Disqus"
2475
 
2476
- #: ../admin/social_login.php:869
2477
  #, fuzzy, php-format
2478
  msgid ""
2479
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2482,12 +2633,12 @@ msgstr ""
2482
  "Необхідно для входу через Xing. Будь ласка, подивіться документацію <a href="
2483
  "\"%s\" target=\"_blank\"> тут </a> для отримання ключа споживача Xing."
2484
 
2485
- #: ../admin/social_login.php:882
2486
  #, fuzzy
2487
  msgid "Reddit Client ID"
2488
  msgstr "Twitch Client ID "
2489
 
2490
- #: ../admin/social_login.php:891
2491
  #, fuzzy, php-format
2492
  msgid ""
2493
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2496,7 +2647,7 @@ msgstr ""
2496
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2497
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2498
 
2499
- #: ../admin/social_login.php:893 ../admin/social_login.php:913
2500
  #, fuzzy
2501
  msgid ""
2502
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
@@ -2505,12 +2656,12 @@ msgstr ""
2505
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2506
  "згадки посилання."
2507
 
2508
- #: ../admin/social_login.php:902
2509
  #, fuzzy
2510
  msgid "Reddit Client Secret"
2511
  msgstr "Twitch Client ID "
2512
 
2513
- #: ../admin/social_login.php:911
2514
  #, fuzzy, php-format
2515
  msgid ""
2516
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2519,12 +2670,12 @@ msgstr ""
2519
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2520
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2521
 
2522
- #: ../admin/social_login.php:925
2523
  #, fuzzy
2524
  msgid "Github Client ID"
2525
  msgstr "Twitch Client ID "
2526
 
2527
- #: ../admin/social_login.php:934
2528
  #, fuzzy, php-format
2529
  msgid ""
2530
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2533,12 +2684,12 @@ msgstr ""
2533
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2534
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2535
 
2536
- #: ../admin/social_login.php:945
2537
  #, fuzzy
2538
  msgid "Github Client Secret"
2539
  msgstr "Twitch Client ID "
2540
 
2541
- #: ../admin/social_login.php:954
2542
  #, fuzzy, php-format
2543
  msgid ""
2544
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2547,12 +2698,12 @@ msgstr ""
2547
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2548
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2549
 
2550
- #: ../admin/social_login.php:967
2551
  #, fuzzy
2552
  msgid "Kakao Client ID"
2553
  msgstr "Google+ ID клієнта"
2554
 
2555
- #: ../admin/social_login.php:976
2556
  #, fuzzy, php-format
2557
  msgid ""
2558
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2561,12 +2712,12 @@ msgstr ""
2561
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2562
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2563
 
2564
- #: ../admin/social_login.php:987
2565
  #, fuzzy
2566
  msgid "Kakao Client Secret"
2567
  msgstr "Google+ ID клієнта"
2568
 
2569
- #: ../admin/social_login.php:996
2570
  #, fuzzy, php-format
2571
  msgid ""
2572
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2575,66 +2726,66 @@ msgstr ""
2575
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2576
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2577
 
2578
- #: ../admin/social_login.php:1016
2579
  msgid "Social Login Options"
2580
  msgstr "Параметри входу через соцмережі"
2581
 
2582
- #: ../admin/social_login.php:1031
2583
  msgid "Text to display above the Social Login interface"
2584
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
2585
 
2586
- #: ../admin/social_login.php:1039
2587
  msgid "Trigger social login in the same browser tab"
2588
  msgstr ""
2589
 
2590
- #: ../admin/social_login.php:1049
2591
  msgid "Trigger social login in the same browser tab instead of a popup window"
2592
  msgstr ""
2593
 
2594
- #: ../admin/social_login.php:1056
2595
  #, fuzzy
2596
  msgid "Center align icons"
2597
  msgstr "Змінити порядок іконок"
2598
 
2599
- #: ../admin/social_login.php:1066
2600
  #, fuzzy
2601
  msgid "Center align social login icons"
2602
  msgstr "Параметри входу через соцмережі"
2603
 
2604
- #: ../admin/social_login.php:1073
2605
  msgid "Enable at login page"
2606
  msgstr "Включити сторінку входу"
2607
 
2608
- #: ../admin/social_login.php:1083
2609
  msgid ""
2610
  "Social Login interface will get enabled at the login page of your website"
2611
  msgstr "Інтерфейс входу через соцмережі буде активовано на сторінці входу"
2612
 
2613
- #: ../admin/social_login.php:1090
2614
  msgid "Enable at register page"
2615
  msgstr "Включити на сторінці реєстрації"
2616
 
2617
- #: ../admin/social_login.php:1100
2618
  msgid ""
2619
  "Social Login interface will get enabled at the registration page of your "
2620
  "website"
2621
  msgstr "Інтерфейс входу через соцмережі буде активовано на сторінці"
2622
 
2623
- #: ../admin/social_login.php:1107
2624
  msgid "Enable at comment form"
2625
  msgstr "Включити в формі коментування"
2626
 
2627
- #: ../admin/social_login.php:1117
2628
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2629
  msgstr ""
2630
  "Інтерфейс входу через соцмережі буде активовано у вашій формі коментування "
2631
  "Wordpress"
2632
 
2633
- #: ../admin/social_login.php:1131
2634
  msgid "Enable before WooCommerce Customer Login Form"
2635
  msgstr "Активувати перед формою входу покупця в WooCommerce"
2636
 
2637
- #: ../admin/social_login.php:1141
2638
  msgid ""
2639
  "Social Login Interface will get enabled before the customer login form at "
2640
  "WooCommerce My Account page"
@@ -2642,12 +2793,12 @@ msgstr ""
2642
  "Інтерфейс входу через соцмережі буде активовано перед формою входу для "
2643
  "покупця на сторінці Мій Аккаунт в WooCommerce"
2644
 
2645
- #: ../admin/social_login.php:1148
2646
  #, fuzzy
2647
  msgid "Enable at WooCommerce Customer Login Form"
2648
  msgstr "Включити після форми входу клієнта WooCommerce"
2649
 
2650
- #: ../admin/social_login.php:1158
2651
  #, fuzzy
2652
  msgid ""
2653
  "Integrate Social Login Interface with the customer login form at WooCommerce "
@@ -2656,12 +2807,12 @@ msgstr ""
2656
  "Інтерфейс входу через соцмережі буде активовано після форми входу для "
2657
  "покупця на сторінці Мій Аккаунт в WooCommerce"
2658
 
2659
- #: ../admin/social_login.php:1165
2660
  #, fuzzy
2661
  msgid "Enable at WooCommerce Customer Register Form"
2662
  msgstr "Включити після форми входу клієнта WooCommerce"
2663
 
2664
- #: ../admin/social_login.php:1175
2665
  #, fuzzy
2666
  msgid ""
2667
  "Integrate Social Login Interface with the customer register form at "
@@ -2670,23 +2821,23 @@ msgstr ""
2670
  "Інтерфейс входу через соцмережі буде активовано після форми входу для "
2671
  "покупця на сторінці Мій Аккаунт в WooCommerce"
2672
 
2673
- #: ../admin/social_login.php:1182
2674
  msgid "Enable at WooCommerce checkout page"
2675
  msgstr "Включити на сторінці оформлення замовлення WooCommerce"
2676
 
2677
- #: ../admin/social_login.php:1192
2678
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2679
  msgstr ""
2680
  "Інтерфейс входу через соцмережі буде активовано на сторінці оформлення "
2681
  "замовлення в WooCommerce"
2682
 
2683
- #: ../admin/social_login.php:1202
2684
  msgid "Auto-approve comments made by Social Login users"
2685
  msgstr ""
2686
  "Автоматичне схвалення коментарів для користувачів, які увійшли через "
2687
  "соцмережі"
2688
 
2689
- #: ../admin/social_login.php:1212
2690
  msgid ""
2691
  "If this option is enabled, and WordPress comment is made by Social Login "
2692
  "user, comment will get approved immediately without keeping in moderation."
@@ -2695,15 +2846,15 @@ msgstr ""
2695
  "користувачем, який увійшов через соцмережі, то коментар буде опублікований "
2696
  "відразу без модерації."
2697
 
2698
- #: ../admin/social_login.php:1213
2699
  msgid "Note: This is not related to Facebook comments"
2700
  msgstr "Примітка: Це не пов'язано з коментарями від Facebook"
2701
 
2702
- #: ../admin/social_login.php:1222
2703
  msgid "Enable social avatar"
2704
  msgstr "Включення соціальних аватар"
2705
 
2706
- #: ../admin/social_login.php:1232
2707
  msgid ""
2708
  "Social profile pictures of the logged in user will be displayed as profile "
2709
  "avatar"
@@ -2711,30 +2862,30 @@ msgstr ""
2711
  "Зображення користувача в соцмережах буде використовуватися як зображення "
2712
  "профілю на сайті"
2713
 
2714
- #: ../admin/social_login.php:1241
2715
  msgid "Avatar quality"
2716
  msgstr "Якість аватарки"
2717
 
2718
- #: ../admin/social_login.php:1244
2719
  msgid "Average"
2720
  msgstr "Середнє"
2721
 
2722
- #: ../admin/social_login.php:1245
2723
  msgid "Best"
2724
  msgstr "Кращий"
2725
 
2726
- #: ../admin/social_login.php:1252
2727
  msgid "Choose avatar quality"
2728
  msgstr "Виберіть якість аватара"
2729
 
2730
- #: ../admin/social_login.php:1260
2731
  msgid ""
2732
  "Show option for users to update social avatar at BuddyPress profile page"
2733
  msgstr ""
2734
  "Показати варіант для користувачів для оновлення соціального аватара на "
2735
  "сторінці профілю BuddyPress"
2736
 
2737
- #: ../admin/social_login.php:1270
2738
  msgid ""
2739
  "If enabled, users would be able to update their social avatar from \"Profile "
2740
  "photo\" section in BuddyPress profile at front-end"
@@ -2742,7 +2893,7 @@ msgstr ""
2742
  "Якщо цей параметр включений, користувачі зможуть оновити свій соціальний "
2743
  "аватар з розділу «Профіль» фото в профілі BuddyPress"
2744
 
2745
- #: ../admin/social_login.php:1290
2746
  msgid ""
2747
  "If enabled and Social ID provider does not provide user's email address on "
2748
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2752,13 +2903,13 @@ msgstr ""
2752
  "входу, користувачеві буде потрібно ввести свою пошту. В іншому ж випадку, "
2753
  "пошта буде створена за зразком."
2754
 
2755
- #: ../admin/social_login.php:1298
2756
  msgid "Send post-registration email to user to set account password"
2757
  msgstr ""
2758
  "Відправити після реєстрації електронною поштою користувачу лист щоб "
2759
  "встановити пароль облікового запису"
2760
 
2761
- #: ../admin/social_login.php:1308
2762
  msgid ""
2763
  "If enabled, an email will be sent to user after registration through Social "
2764
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2768,13 +2919,13 @@ msgstr ""
2768
  "буде відправлено лист з ім'ям і пароль щоб була можливість зайти через "
2769
  "стандартну форму авторизації"
2770
 
2771
- #: ../admin/social_login.php:1315
2772
  msgid "Send new user registration notification email to admin"
2773
  msgstr ""
2774
  "Надіслати повідомлення про реєстрацію нового користувача по електронній "
2775
  "пошті адміністратору"
2776
 
2777
- #: ../admin/social_login.php:1325
2778
  msgid ""
2779
  "If enabled, an email will be sent to admin after new user registers through "
2780
  "Social Login, notifying admin about the new user registration"
@@ -2782,41 +2933,41 @@ msgstr ""
2782
  "Якщо опція включена, на пошту адміністратора прийде повідомлення про "
2783
  "реєстрацію нового користувача через соцмережі."
2784
 
2785
- #: ../admin/social_login.php:1332
2786
  msgid "Login redirection"
2787
  msgstr "Перенаправлення входу"
2788
 
2789
- #: ../admin/social_login.php:1336
2790
  msgid "Same page where user logged in"
2791
  msgstr "Та ж сторінка, на якій користувач зробив вхід"
2792
 
2793
- #: ../admin/social_login.php:1340 ../admin/social_login.php:1369
2794
  msgid "Account dashboard"
2795
  msgstr "Сторінка управління аккаунтом"
2796
 
2797
- #: ../admin/social_login.php:1343 ../admin/social_login.php:1372
2798
  msgid "BuddyPress profile page"
2799
  msgstr "Сторінка профілю BuddyPress"
2800
 
2801
- #: ../admin/social_login.php:1346 ../admin/social_login.php:1375
2802
  msgid "Custom Url"
2803
  msgstr "Користувацьке посилання"
2804
 
2805
- #: ../admin/social_login.php:1354
2806
  msgid "User will be redirected to the selected page after Social Login"
2807
  msgstr ""
2808
  "Користувач буде перенаправлений на обрану сторінку після входу через "
2809
  "соцмережі"
2810
 
2811
- #: ../admin/social_login.php:1361
2812
  msgid "Registration redirection"
2813
  msgstr "Перенаправлення реєстрації"
2814
 
2815
- #: ../admin/social_login.php:1365
2816
  msgid "Same page from where user registered"
2817
  msgstr "URL цільової сторінки, на якій зареєстрований користувач"
2818
 
2819
- #: ../admin/social_login.php:1383
2820
  msgid ""
2821
  "User will be redirected to the selected page after registration (first "
2822
  "Social Login) through Social Login"
@@ -2824,23 +2975,23 @@ msgstr ""
2824
  "Користувач буде перенаправлений на обрану сторінку після реєстрації (перший "
2825
  "вхід чере соцмережі) через соцмережі"
2826
 
2827
- #: ../admin/social_login.php:1392
2828
  #, fuzzy
2829
  msgid "Social Account Linking Options"
2830
  msgstr "Посилання на соціальний аккаунт"
2831
 
2832
- #: ../admin/social_login.php:1407
2833
  #, fuzzy
2834
  msgid "Text to display above the Social Account Linking interface"
2835
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
2836
 
2837
- #: ../admin/social_login.php:1414
2838
  msgid ""
2839
  "Link social account to already existing account, if email address matches"
2840
  msgstr ""
2841
  "Пов'язує аккаунт соцмереж з існуючим обліковим записом якщо пошта збігається."
2842
 
2843
- #: ../admin/social_login.php:1424
2844
  #, fuzzy
2845
  msgid ""
2846
  "If email address of the user's Social Account matches with an already "
@@ -2853,11 +3004,11 @@ msgstr ""
2853
  "існуючим обліковим записом. Користувач зможе управляти цим на сторінці "
2854
  "профілю."
2855
 
2856
- #: ../admin/social_login.php:1432
2857
  msgid "Enable social account linking at BuddyPress profile page"
2858
  msgstr "Інтегрує соціальний аккаунт на сторінці профілю BuddyPress"
2859
 
2860
- #: ../admin/social_login.php:1442
2861
  msgid ""
2862
  "Enable this option to show social account linking interface at BuddyPress "
2863
  "profile page"
@@ -2865,15 +3016,15 @@ msgstr ""
2865
  "Активуйте цю функцію щоб інтегрувати соціальний аккаунт на сторінці профілю "
2866
  "BuddyPress"
2867
 
2868
- #: ../admin/social_login.php:1453
2869
  msgid "Email popup options"
2870
  msgstr "Параметри спливаючій електронної пошти"
2871
 
2872
- #: ../admin/social_login.php:1458
2873
  msgid "Text on 'Email required' popup"
2874
  msgstr "Текст на спливаючому вікні «Електронна пошта потрібна»"
2875
 
2876
- #: ../admin/social_login.php:1468
2877
  msgid ""
2878
  "This text will be displayed on email required popup. Leave empty if not "
2879
  "required."
@@ -2881,11 +3032,11 @@ msgstr ""
2881
  "Цей текст буде відображатися на спливаючому вікні, що вимагає пошту. Залиште "
2882
  "поле порожнім якщо не потрібно."
2883
 
2884
- #: ../admin/social_login.php:1476
2885
  msgid "Error message for 'Email required' popup"
2886
  msgstr "Повідомлення помилки у спливаючому вікні \"Потрібно пошта \""
2887
 
2888
- #: ../admin/social_login.php:1486
2889
  msgid ""
2890
  "This message will be displayed to user if it provides invalid or already "
2891
  "registered email"
@@ -2893,11 +3044,11 @@ msgstr ""
2893
  "Це повідомлення буде показано користувачеві, якщо він надав невірну або "
2894
  "раніше запроваджену пошту"
2895
 
2896
- #: ../admin/social_login.php:1494
2897
  msgid "Email popup height"
2898
  msgstr "Висота спливаючого вікна"
2899
 
2900
- #: ../admin/social_login.php:1504
2901
  msgid ""
2902
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2903
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2907,11 +3058,11 @@ msgstr ""
2907
  "то ви можете збільшити висотку спливаючого вікна. Залиште порожнім для "
2908
  "базового значення."
2909
 
2910
- #: ../admin/social_login.php:1511
2911
  msgid "Enable email verification"
2912
  msgstr "Включити перевірку електронної пошти"
2913
 
2914
- #: ../admin/social_login.php:1521
2915
  msgid ""
2916
  "If enabled, email provided by the user will be verified by sending a "
2917
  "confirmation link to that email. User would not be able to login without "
@@ -2920,108 +3071,108 @@ msgstr ""
2920
  "Якщо опція включена, то на пошту, яку вказав користувач, прийде лист з "
2921
  "підтвердженням. Користувач не зможе зайти без підтвердження своєї пошти."
2922
 
2923
- #: ../admin/social_login.php:1541
2924
  #, fuzzy
2925
  msgid "Enable GDPR opt-in"
2926
  msgstr "Активувати коментування через Disqus"
2927
 
2928
- #: ../admin/social_login.php:1551
2929
  msgid ""
2930
  "Enable it to show GDPR opt-in for social login and social account linking"
2931
  msgstr ""
2932
 
2933
- #: ../admin/social_login.php:1559
2934
  #, fuzzy
2935
  msgid "Placement of GDPR opt-in"
2936
  msgstr "Активувати коментування через Disqus"
2937
 
2938
- #: ../admin/social_login.php:1563
2939
  #, fuzzy
2940
  msgid "Above Social Login icons"
2941
  msgstr "Параметри входу через соцмережі"
2942
 
2943
- #: ../admin/social_login.php:1565
2944
  #, fuzzy
2945
  msgid "Below Social Login icons"
2946
  msgstr "Параметри входу через соцмережі"
2947
 
2948
- #: ../admin/social_login.php:1571
2949
  #, fuzzy
2950
  msgid "Placement of GDPR opt-in above or below the social login icons"
2951
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
2952
 
2953
- #: ../admin/social_login.php:1578
2954
  msgid "Opt-in text"
2955
  msgstr ""
2956
 
2957
- #: ../admin/social_login.php:1588
2958
  #, fuzzy
2959
  msgid "Text for the GDPR opt-in"
2960
  msgstr "Активувати коментування через Disqus"
2961
 
2962
- #: ../admin/social_login.php:1595
2963
  msgid "Text to link to Terms-Conditions page"
2964
  msgstr ""
2965
 
2966
- #: ../admin/social_login.php:1605
2967
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2968
  msgstr ""
2969
 
2970
- #: ../admin/social_login.php:1612
2971
  msgid "Terms-Conditions Url"
2972
  msgstr ""
2973
 
2974
- #: ../admin/social_login.php:1622
2975
  #, fuzzy
2976
  msgid "Url of the terms-conditions page of your website"
2977
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
2978
 
2979
- #: ../admin/social_login.php:1629
2980
  msgid "Text to link to Privacy Policy page"
2981
  msgstr ""
2982
 
2983
- #: ../admin/social_login.php:1639
2984
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2985
  msgstr ""
2986
 
2987
- #: ../admin/social_login.php:1646
2988
  msgid "Privacy Policy Url"
2989
  msgstr ""
2990
 
2991
- #: ../admin/social_login.php:1656
2992
  #, fuzzy
2993
  msgid "Url of the privacy policy page of your website"
2994
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
2995
 
2996
- #: ../admin/social_login.php:1707 ../inc/widget.php:260 ../inc/widget.php:438
2997
  #: ../inc/widget.php:602 ../inc/widget.php:750
2998
  msgid "Select"
2999
  msgstr "Вибір"
3000
 
3001
- #: ../admin/social_login.php:1738
3002
  msgid "Social Login Shortcode & Widget"
3003
  msgstr "Шорткод і віджет для входу через соцмережі"
3004
 
3005
- #: ../admin/social_login.php:1739
3006
  msgid "Social Linking Shortcode"
3007
  msgstr "Шорткод соціальних посилань"
3008
 
3009
- #: ../admin/social_login.php:1754
3010
  #, fuzzy
3011
  msgid "Why is social login not working?"
3012
  msgstr "Чому Facebook Логін не працює?"
3013
 
3014
- #: ../admin/social_login.php:1755
3015
  msgid ""
3016
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3017
  "belong to the same app"
3018
  msgstr ""
3019
 
3020
- #: ../admin/social_login.php:1757
3021
  msgid "Social Login not working with Varnish enabled"
3022
  msgstr ""
3023
 
3024
- #: ../admin/social_login.php:1758
3025
  msgid ""
3026
  "Why the user is not appearing logged in even after Social Login until the "
3027
  "webpage is refreshed manually?"
@@ -3232,6 +3383,10 @@ msgstr "Шукати"
3232
  msgid "Archives"
3233
  msgstr "Архіви "
3234
 
 
 
 
 
3235
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3236
  msgid "Invalid request"
3237
  msgstr "Невірний Запит!"
@@ -3240,27 +3395,31 @@ msgstr "Невірний Запит!"
3240
  msgid "Providers not selected"
3241
  msgstr "Сервіси не вибрані"
3242
 
3243
- #: ../inc/social_login.php:968
 
 
 
 
3244
  msgid "Email"
3245
  msgstr "Email"
3246
 
3247
- #: ../inc/social_login.php:969
3248
  msgid "Confirm email"
3249
  msgstr "Підтвердити e-mail"
3250
 
3251
- #: ../inc/social_login.php:971
3252
  msgid "Save"
3253
  msgstr "Зберегти"
3254
 
3255
- #: ../inc/social_login.php:972
3256
  msgid "Cancel"
3257
  msgstr "Скасувати"
3258
 
3259
- #: ../inc/social_login.php:1046
3260
  msgid "Email Verification"
3261
  msgstr "Підтвердження адреси електронної пошти"
3262
 
3263
- #: ../inc/social_login.php:1048
3264
  msgid ""
3265
  "Please click on the following link or paste it in browser to verify your "
3266
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-06 12:20+0530\n"
6
+ "PO-Revision-Date: 2021-04-06 12:20+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
17
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../super_socializer.php:1634
21
  msgid ""
22
  "cURL is not enabled at your website server. Please contact your website "
23
  "server administrator to enable it."
25
  "Curl не включений у вашому веб-сайті. Вам, можливо, буде потрібно звернутися "
26
  "до адміністратора вашого сайту, щоб включити це."
27
 
28
+ #: ../super_socializer.php:1662
29
  #, fuzzy, php-format
30
  msgid ""
31
  "Enter exactly the following url in <strong>Website</strong> option in your "
34
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
35
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
36
 
37
+ #: ../super_socializer.php:1665
38
  #, fuzzy, php-format
39
  msgid ""
40
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
43
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
44
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
45
 
46
+ #: ../super_socializer.php:1668
47
  msgid ""
48
  "Make sure cURL is enabled at your website server. You may need to contact "
49
  "the server administrator of your website to verify this"
52
  "буде потрібно звернутися до адміністратора сервера вашого сайту, щоб "
53
  "переконатися в цьому."
54
 
55
+ #: ../super_socializer.php:1829
56
+ #, fuzzy
57
+ msgid "Search"
58
+ msgstr "Шукати"
59
+
60
+ #: ../super_socializer.php:1851 ../helper.php:995
61
  msgid "Please verify your email address to login."
62
  msgstr "Будь ласка, підтвердіть свою адресу електронної пошти."
63
 
64
+ #: ../super_socializer.php:1851
65
  msgid "Your email has been verified. Now you can login to your account"
66
  msgstr ""
67
  "Ваша електронна адреса була перевірена. Тепер ви можете увійти до свого "
68
  "облікового запису"
69
 
70
+ #: ../super_socializer.php:1855
71
  msgid "Notification"
72
  msgstr "Повідомлення"
73
 
74
+ #: ../super_socializer.php:1873 ../admin/social_login.php:1443
75
  msgid "Email required"
76
  msgstr "Електронна адреса (обо'язково)"
77
 
78
+ #: ../super_socializer.php:1876
79
  msgid "Please check your email inbox to complete the registration."
80
  msgstr "Будь ласка, перевірте вашу поштову скриньку для завершення реєстрації."
81
 
82
+ #: ../super_socializer.php:1945
83
  msgid "Leave a reply"
84
  msgstr "Залишити коментар"
85
 
86
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
87
  msgid "Shares"
88
  msgstr "Поширили:"
89
 
90
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
91
  msgid "Share"
92
  msgstr "Поділитися"
93
 
94
+ #: ../super_socializer.php:1961
95
  #, fuzzy
96
  msgid "Link copied."
97
  msgstr "LinkedIn"
98
 
99
+ #: ../super_socializer.php:2206
100
  msgid "Super Socializer - General Options"
101
  msgstr "Super Socializer - Загальні Параметри"
102
 
103
+ #: ../super_socializer.php:2206 ../admin/general_options.php:15
104
  #: ../admin/social_commenting.php:47
105
  msgid "General Options"
106
  msgstr "Загальні параметри"
107
 
108
+ #: ../super_socializer.php:2274 ../helper.php:924
109
  msgid "Social Avatar"
110
  msgstr "Соціальний Аватар"
111
 
112
+ #: ../super_socializer.php:2277
113
  msgid "Small Avatar Url"
114
  msgstr "Посилання для маленького аватара"
115
 
116
+ #: ../super_socializer.php:2281
117
  msgid "Large Avatar Url"
118
  msgstr "Посилання для великого аватара"
119
 
120
+ #: ../super_socializer.php:2285 ../helper.php:927
121
  msgid ""
122
  "Do not fetch and update social avatar from my profile, next time I Social "
123
  "Login"
125
  "Не отримувати і оновлювати соціальний аватар з мого профілю, в наступний "
126
  "раз коли я використовую вхід через соцмережі"
127
 
128
+ #: ../super_socializer.php:2289 ../helper.php:928
129
  msgid "Update social avatar, next time I Social Login"
130
  msgstr ""
131
  "Оновлення аватара соцмереж наступного разу при використанні входу через "
132
  "соцмережі"
133
 
134
+ #: ../super_socializer.php:2366
135
  msgid "Login with your Social ID"
136
  msgstr "Увійти через соціальний аккаунт"
137
 
138
+ #: ../super_socializer.php:2367
139
  msgid "Email you entered is already registered or invalid"
140
  msgstr "Електронна пошта, яку ви ввели, вже зареєстрована або недійсна"
141
 
142
+ #: ../super_socializer.php:2374
143
  msgid "Please enter a valid email address. You might be required to verify it"
144
  msgstr ""
145
  "Будь ласка, введіть дійсну адресу електронної пошти. Вам, можливо, буде "
146
  "потрібно перевірити його"
147
 
148
+ #: ../super_socializer.php:2378 ../super_socializer.php:3123
149
  msgid "Link your social account to login to your account at this website"
150
  msgstr ""
151
  "Введіть посилання на ваш аккаунт в соціальних мережах щоб увійти в обліковий "
152
  "запис на цьому сайті"
153
 
154
+ #: ../super_socializer.php:2633
155
  msgid "Thanks for installing Super Socializer plugin"
156
  msgstr ""
157
 
158
+ #: ../super_socializer.php:2635
159
  msgid "Configure the Plugin"
160
  msgstr ""
161
 
162
+ #: ../super_socializer.php:2646
163
  msgid ""
164
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
165
  "current version of Super Socializer"
166
  msgstr ""
167
 
168
+ #: ../super_socializer.php:2655
169
  msgid ""
170
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
171
  "version of Super Socializer"
172
  msgstr ""
173
 
174
+ #: ../super_socializer.php:2664
175
  msgid ""
176
+ "Update \"Social Login Buttons\" add-on to version 1.2.7 or above for "
177
  "compatibility with current version of Super Socializer"
178
  msgstr ""
179
 
180
+ #: ../super_socializer.php:2673
181
  msgid ""
182
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
183
  "with current version of Super Socializer"
184
  msgstr ""
185
 
186
+ #: ../super_socializer.php:2682
187
  msgid ""
188
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
189
  "with current version of Super Socializer"
190
  msgstr ""
191
 
192
+ #: ../super_socializer.php:2693
193
  #, php-format
194
  msgid ""
195
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
196
  msgstr ""
197
 
198
+ #: ../super_socializer.php:2702
199
  #, php-format
200
  msgid ""
201
  "To continue using Instagram login create a new Instagram App as described <a "
203
  "Instagram App Secret <a href=\"%s\">here</a>"
204
  msgstr ""
205
 
206
+ #: ../super_socializer.php:2711 ../super_socializer.php:2720
207
  #, php-format
208
  msgid ""
209
  "To continue using bitly url shortener, login to your bit.ly account and "
212
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
213
  msgstr ""
214
 
215
+ #: ../super_socializer.php:2736
216
  #, php-format
217
  msgid ""
218
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
219
  msgstr ""
220
 
221
+ #: ../super_socializer.php:2760
222
  #, php-format
223
  msgid ""
224
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
226
  "target=\"_blank\">here</a>"
227
  msgstr ""
228
 
229
+ #: ../super_socializer.php:2760 ../super_socializer.php:2785
230
+ #: ../super_socializer.php:2810 ../super_socializer.php:2835
231
+ #: ../super_socializer.php:2868 ../super_socializer.php:2896
232
+ #: ../super_socializer.php:2923
233
  msgid "Okay"
234
  msgstr "Гаразд."
235
 
236
+ #: ../super_socializer.php:2785
237
  #, php-format
238
  msgid ""
239
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
241
  "\">here</a>"
242
  msgstr ""
243
 
244
+ #: ../super_socializer.php:2810
245
  #, php-format
246
  msgid ""
247
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
249
  "target=\"_blank\">here</a>"
250
  msgstr ""
251
 
252
+ #: ../super_socializer.php:2835
253
  #, php-format
254
  msgid ""
255
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
257
  "target=\"_blank\">here</a>"
258
  msgstr ""
259
 
260
+ #: ../super_socializer.php:2846
261
  #, php-format
262
  msgid ""
263
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
264
  msgstr ""
265
 
266
+ #: ../super_socializer.php:2868
267
  #, php-format
268
  msgid ""
269
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
271
  "\"%s\" target=\"_blank\">here</a>"
272
  msgstr ""
273
 
274
+ #: ../super_socializer.php:2896
275
  #, php-format
276
  msgid ""
277
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
280
  "your website %s with them. No need to copy-paste any code from their website."
281
  msgstr ""
282
 
283
+ #: ../super_socializer.php:2923
284
  #, php-format
285
  msgid ""
286
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
288
  "\"%s\" target=\"_blank\">here</a>"
289
  msgstr ""
290
 
291
+ #: ../super_socializer.php:2948
292
  #, php-format
293
  msgid ""
294
  "If you cannot get Linkedin login to work after updating the plugin, replace "
296
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
297
  msgstr ""
298
 
299
+ #: ../super_socializer.php:2948 ../super_socializer.php:2975
300
  msgid "Dismiss"
301
  msgstr ""
302
 
303
+ #: ../super_socializer.php:2974
304
  #, php-format
305
  msgid ""
306
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
309
  "that, clear share counts cache from \"Miscellaneous\" section"
310
  msgstr ""
311
 
312
+ #: ../super_socializer.php:3199
313
  msgid ""
314
  "Your browser is blocking some features of this website. Please follow the "
315
  "instructions at {support_url} to unblock these."
321
  msgid "Settings saved"
322
  msgstr "Налаштування збережені"
323
 
324
+ #: ../helper.php:194
325
  #, fuzzy
326
  msgid "Click to toggle help"
327
  msgstr "Натисніть, щоб приховати довідку"
328
 
329
+ #: ../helper.php:291
330
  msgid "Add-Ons"
331
  msgstr "Доповнення"
332
 
333
+ #: ../helper.php:292
334
  msgid "Support Documentation"
335
  msgstr "Технічна документація"
336
 
337
+ #: ../helper.php:293
338
  msgid "Settings"
339
  msgstr "Налаштування"
340
 
341
+ #: ../helper.php:576
342
  msgid "Account linked successfully"
343
  msgstr "Аккаунт успішно пов'язаний"
344
 
345
+ #: ../helper.php:580
346
  msgid "Account already exists or linked"
347
  msgstr "Аккаунт вже існує або пов'язаний"
348
 
349
+ #: ../helper.php:616 ../helper.php:618
350
  msgid "Login with"
351
  msgstr "Увійти з"
352
 
353
+ #: ../helper.php:653 ../helper.php:659
354
  msgid "Currently"
355
  msgstr "в даний час"
356
 
357
+ #: ../helper.php:653 ../helper.php:659
358
  msgid "Connected with"
359
  msgstr "Авторизуватися за допомогою"
360
 
361
+ #: ../helper.php:653 ../helper.php:659
362
  msgid "Remove"
363
  msgstr "Видалити"
364
 
365
+ #: ../helper.php:730
366
  msgid "Social Account Linking"
367
  msgstr "Посилання на соціальний аккаунт"
368
 
369
+ #: ../helper.php:780
370
  msgid "Disable Standard Social Sharing on this "
371
  msgstr "Відключити стандартний блок Поділитися на цьому"
372
 
373
+ #: ../helper.php:785
374
  msgid "Disable Floating Social Sharing on this "
375
  msgstr "Відключити плаваючий блок Поділитися на цьому"
376
 
377
+ #: ../helper.php:790
378
  msgid "Disable Standard like buttons on this "
379
  msgstr "Відключити стандартні кнопки Подобається на цьому"
380
 
381
+ #: ../helper.php:795
382
  msgid "Disable Floating like buttons on this "
383
  msgstr "Відключити плаваючі кнопки Подобається на цьому"
384
 
385
+ #: ../helper.php:800
386
  msgid "Disable Social Commenting on this "
387
  msgstr "Деактивувати соціальне коментування"
388
 
389
+ #: ../helper.php:809
390
  msgid "Standard Sharing Interface"
391
  msgstr "Стандартний інтерфейс Поділитися"
392
 
393
+ #: ../helper.php:815 ../helper.php:834
394
  msgid "Starting share count for "
395
  msgstr "Запустити лічильник Поділитися для"
396
 
397
+ #: ../helper.php:828
398
  msgid "Floating Sharing Interface"
399
  msgstr "Плаваючий інтерфейс Поділитися"
400
 
401
+ #: ../helper.php:931
402
  msgid "Small Avatar"
403
  msgstr "Невеликий аватар"
404
 
405
+ #: ../helper.php:935
406
  msgid "Large Avatar"
407
  msgstr "Великий аватар"
408
 
409
+ #: ../helper.php:939 ../admin/general_options.php:89
410
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
411
+ #: ../admin/social_login.php:1933 ../admin/like_buttons.php:780
412
  msgid "Save Changes"
413
  msgstr "Зберегти налаштування"
414
 
415
+ #: ../helper.php:1032
416
  msgid "Click to delete social profile data"
417
  msgstr ""
418
 
419
+ #: ../helper.php:1061
420
  #, fuzzy
421
  msgid "Deleting"
422
  msgstr "Налаштування"
423
 
424
+ #: ../helper.php:1071
425
  msgid "Deleted"
426
  msgstr ""
427
 
428
+ #: ../helper.php:1073
429
  msgid "Something bad happened"
430
  msgstr ""
431
 
432
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
433
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
434
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
435
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1937
436
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
437
  #, fuzzy, php-format
438
  msgid ""
486
  "Можна вказати будь-які додаткові правила CSS (без тега & lt; style & gt;)"
487
 
488
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
489
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1943
490
  #: ../admin/like_buttons.php:790
491
  #, fuzzy
492
  msgid "Instagram Shoutout"
493
  msgstr "Instagram"
494
 
495
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
496
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1945
497
  #: ../admin/like_buttons.php:792
498
  msgid ""
499
  "If you can send (to hello@heateor.com) how this plugin is helping your "
636
 
637
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
638
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
639
+ #: ../admin/social_login.php:1899 ../admin/like_buttons.php:50
640
  #: ../admin/like_buttons.php:751
641
  msgid "Shortcode & Widget"
642
  msgstr "Шорткод і віджет"
647
 
648
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
649
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
650
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1913
651
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
652
  msgid "FAQ"
653
  msgstr "Часті питання (FAQ)"
879
  msgid "Url to share"
880
  msgstr "Посилання щоб Поділитися"
881
 
882
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:1184
883
+ #: ../admin/social_login.php:1560 ../admin/like_buttons.php:105
884
  #: ../inc/widget.php:949
885
  msgid "Title"
886
  msgstr "Заголовок"
966
  msgstr "Розміщення"
967
 
968
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
969
+ #: ../admin/social_login.php:1501 ../admin/social_login.php:1530
970
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
971
  msgid "Homepage"
972
  msgstr "Головна"
1235
  msgid "Required only to track Facebook share count"
1236
  msgstr ""
1237
 
1238
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:222
1239
  msgid "Facebook App ID"
1240
  msgstr "Facebook App ID"
1241
 
1248
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1249
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1250
 
1251
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:243
1252
  #, fuzzy
1253
  msgid "Facebook App Secret"
1254
  msgstr "Facebook App ID"
1437
  "\"Отримання інформації про нову поломки \"."
1438
 
1439
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1440
+ #: ../admin/social_login.php:1915
1441
  msgid ""
1442
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1443
  "an online website for the plugin to function properly."
1495
  msgstr ""
1496
 
1497
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1498
+ #: ../admin/social_login.php:1922
1499
  msgid "Why is my browser blocking some features of the plugin?"
1500
  msgstr "Чому мій браузер блокує деякі функції плагіна?"
1501
 
1812
  msgid "Advanced Configuration"
1813
  msgstr "Розширена конфігурація"
1814
 
1815
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1699
1816
  msgid "GDPR"
1817
  msgstr ""
1818
 
1819
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1850
1820
  msgid "XProfile Integration"
1821
  msgstr "XProfile інтеграція"
1822
 
1848
 
1849
  #: ../admin/social_login.php:98
1850
  #, fuzzy
1851
+ msgid "Disable Social Login for admin accounts"
1852
+ msgstr "Параметри входу через соцмережі"
1853
+
1854
+ #: ../admin/social_login.php:108
1855
+ #, fuzzy
1856
+ msgid ""
1857
+ "After enabling this option, administrator users will not be able to login "
1858
+ "through social login. Other users will be able to login via social login."
1859
+ msgstr ""
1860
+ "Після включення цієї опції, нові користувачі не зможуть увійти в через "
1861
+ "соцмережі в систему. Тільки існуючі користувачі зможуть зробити це."
1862
+
1863
+ #: ../admin/social_login.php:115
1864
+ #, fuzzy
1865
  msgid "Select Social Networks"
1866
  msgstr "Виберіть сервіси"
1867
 
1868
+ #: ../admin/social_login.php:120
1869
  msgid "Facebook"
1870
  msgstr "Facebook"
1871
 
1872
+ #: ../admin/social_login.php:124
1873
  msgid "Twitter"
1874
  msgstr "Twitter"
1875
 
1876
+ #: ../admin/social_login.php:128
1877
  msgid "LinkedIn"
1878
  msgstr "LinkedIn"
1879
 
1880
+ #: ../admin/social_login.php:132
1881
  #, fuzzy
1882
  msgid "Google"
1883
  msgstr "Google+"
1884
 
1885
+ #: ../admin/social_login.php:136
1886
  msgid "Vkontakte"
1887
  msgstr "Вконтакте"
1888
 
1889
+ #: ../admin/social_login.php:140
1890
  msgid "Instagram"
1891
  msgstr "Instagram"
1892
 
1893
+ #: ../admin/social_login.php:144
1894
  msgid "Steam"
1895
  msgstr "Steam"
1896
 
1897
+ #: ../admin/social_login.php:148
1898
  msgid "Line"
1899
  msgstr ""
1900
 
1901
+ #: ../admin/social_login.php:152
1902
  msgid "Wordpress"
1903
  msgstr ""
1904
 
1905
+ #: ../admin/social_login.php:156
1906
  msgid "Windows Live"
1907
  msgstr ""
1908
 
1909
+ #: ../admin/social_login.php:160
1910
  msgid "Yahoo"
1911
  msgstr ""
1912
 
1913
+ #: ../admin/social_login.php:164
1914
+ msgid "Discord"
1915
+ msgstr ""
1916
+
1917
+ #: ../admin/social_login.php:168
1918
+ msgid "Amazon"
1919
+ msgstr ""
1920
+
1921
+ #: ../admin/social_login.php:172
1922
+ msgid "Stackoverflow"
1923
+ msgstr ""
1924
+
1925
+ #: ../admin/social_login.php:176
1926
  msgid "Spotify"
1927
  msgstr ""
1928
 
1929
+ #: ../admin/social_login.php:179
1930
  msgid "Dribbble"
1931
  msgstr ""
1932
 
1933
+ #: ../admin/social_login.php:183
1934
  msgid "Twitch"
1935
  msgstr "Twitch"
1936
 
1937
+ #: ../admin/social_login.php:187
1938
  #, fuzzy
1939
  msgid "Foursquare"
1940
  msgstr "Квадратна"
1941
 
1942
+ #: ../admin/social_login.php:191
1943
  msgid "Dropbox"
1944
  msgstr ""
1945
 
1946
+ #: ../admin/social_login.php:195
1947
  msgid "Disqus"
1948
  msgstr ""
1949
 
1950
+ #: ../admin/social_login.php:199
1951
  msgid "Reddit"
1952
  msgstr ""
1953
 
1954
+ #: ../admin/social_login.php:203
1955
  msgid "Github"
1956
  msgstr ""
1957
 
1958
+ #: ../admin/social_login.php:207
1959
  msgid "Kakao"
1960
  msgstr ""
1961
 
1962
+ #: ../admin/social_login.php:215
1963
  msgid "Select Social ID provider to enable in Social Login"
1964
  msgstr "Виберіть соцмережі щоб активувати вхід через соцмережі"
1965
 
1966
+ #: ../admin/social_login.php:232
1967
  #, php-format
1968
  msgid ""
1969
  "Required for Facebook Social Login to work. Please follow the documentation "
1972
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1973
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1974
 
1975
+ #: ../admin/social_login.php:234 ../admin/social_login.php:255
1976
  #, fuzzy
1977
  msgid ""
1978
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1980
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
1981
  "згадки посилання."
1982
 
1983
+ #: ../admin/social_login.php:253
1984
  #, fuzzy, php-format
1985
  msgid ""
1986
  "Required for Facebook Social Login to work. Please follow the documentation "
1989
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1990
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1991
 
1992
+ #: ../admin/social_login.php:264
1993
  msgid "Twitter API Key"
1994
  msgstr "Twitter API ключ"
1995
 
1996
+ #: ../admin/social_login.php:274
1997
  #, php-format
1998
  msgid ""
1999
  "Required for Twitter Social Login to work. Please follow the documentation "
2002
  "Необхідно для входу через Twitter. Будь ласка, подивіться документацію <a "
2003
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
2004
 
2005
+ #: ../admin/social_login.php:276 ../admin/social_login.php:301
2006
  #, fuzzy
2007
  msgid ""
2008
  "Paste following url in <strong>Website</strong> option mentioned at the link"
2010
  "Вставити наступний URL-адресу в <strong> URL веб-сайту </ strong> для згадки "
2011
  "посилання"
2012
 
2013
+ #: ../admin/social_login.php:280 ../admin/social_login.php:305
2014
+ #: ../admin/social_login.php:493 ../admin/social_login.php:513
2015
+ #: ../admin/social_login.php:848 ../admin/social_login.php:868
2016
+ #: ../admin/social_login.php:889 ../admin/social_login.php:909
2017
+ #: ../admin/social_login.php:1014 ../admin/social_login.php:1034
2018
+ #: ../admin/social_login.php:1099 ../admin/social_login.php:1119
2019
+ #: ../admin/social_login.php:1141 ../admin/social_login.php:1161
2020
  #, fuzzy
2021
  msgid ""
2022
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
2025
  "Вставити наступний URL-адресу в <strong> URL веб-сайту </ strong> для згадки "
2026
  "посилання"
2027
 
2028
+ #: ../admin/social_login.php:289
2029
  msgid "Twitter API Secret"
2030
  msgstr "Twitter API секретний ключ"
2031
 
2032
+ #: ../admin/social_login.php:299
2033
  #, php-format
2034
  msgid ""
2035
  "Required for Twitter Social Login to work. Please follow the documentation "
2039
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання секретного ключа "
2040
  "додатку Twitter ."
2041
 
2042
+ #: ../admin/social_login.php:314
2043
  #, fuzzy
2044
  msgid "LinkedIn Client ID"
2045
  msgstr "LinkedIn"
2046
 
2047
+ #: ../admin/social_login.php:324
2048
  #, fuzzy, php-format
2049
  msgid ""
2050
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2053
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2054
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2055
 
2056
+ #: ../admin/social_login.php:326 ../admin/social_login.php:347
2057
+ #: ../admin/social_login.php:533 ../admin/social_login.php:553
2058
  #, fuzzy
2059
  msgid ""
2060
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2063
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2064
  "згадки посилання."
2065
 
2066
+ #: ../admin/social_login.php:335
2067
  #, fuzzy
2068
  msgid "LinkedIn Client Secret"
2069
  msgstr "LinkedIn"
2070
 
2071
+ #: ../admin/social_login.php:345
2072
  #, fuzzy, php-format
2073
  msgid ""
2074
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2078
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2079
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2080
 
2081
+ #: ../admin/social_login.php:356
2082
  #, fuzzy
2083
  msgid "Google Client ID"
2084
  msgstr "Google+ ID клієнта"
2085
 
2086
+ #: ../admin/social_login.php:366
2087
  #, fuzzy, php-format
2088
  msgid ""
2089
  "Required for Google Social Login to work. Please follow the documentation at "
2092
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2093
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2094
 
2095
+ #: ../admin/social_login.php:368 ../admin/social_login.php:389
2096
  #, fuzzy
2097
  msgid ""
2098
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2101
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2102
  "згадки посилання."
2103
 
2104
+ #: ../admin/social_login.php:377
2105
  #, fuzzy
2106
  msgid "Google Client Secret"
2107
  msgstr "Google+ ID клієнта"
2108
 
2109
+ #: ../admin/social_login.php:387
2110
  #, fuzzy, php-format
2111
  msgid ""
2112
  "Required for Google Social Login to work. Please follow the documentation at "
2115
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2116
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2117
 
2118
+ #: ../admin/social_login.php:398
2119
  msgid "Vkontakte Application ID"
2120
  msgstr "ID додатку Вконтакте"
2121
 
2122
+ #: ../admin/social_login.php:408 ../admin/social_login.php:429
2123
  #, php-format
2124
  msgid ""
2125
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2129
  "Необхідно для входу через Vkontakte. Будь ласка, подивіться документацію <a "
2130
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Vkontakte."
2131
 
2132
+ #: ../admin/social_login.php:410 ../admin/social_login.php:431
2133
  #, fuzzy
2134
  msgid ""
2135
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2138
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2139
  "згадки посилання."
2140
 
2141
+ #: ../admin/social_login.php:419
2142
  #, fuzzy
2143
  msgid "Vkontakte Secure key"
2144
  msgstr "Вконтакте"
2145
 
2146
+ #: ../admin/social_login.php:440
2147
  #, fuzzy
2148
  msgid "Instagram App ID"
2149
  msgstr "Instagram ID клієнта"
2150
 
2151
+ #: ../admin/social_login.php:450
2152
  #, fuzzy, php-format
2153
  msgid ""
2154
  "Required for Instagram Social Login to work. Please follow the documentation "
2157
  "Необхідно для входу через Instagram. Будь ласка, подивіться документацію <a "
2158
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Instagram."
2159
 
2160
+ #: ../admin/social_login.php:452 ../admin/social_login.php:473
2161
  #, fuzzy
2162
  msgid ""
2163
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2166
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2167
  "згадки посилання."
2168
 
2169
+ #: ../admin/social_login.php:461
2170
  #, fuzzy
2171
  msgid "Instagram App Secret"
2172
  msgstr "Введіть ім'я користувача Instagram."
2173
 
2174
+ #: ../admin/social_login.php:471
2175
  #, fuzzy, php-format
2176
  msgid ""
2177
  "Required for Instagram Social Login to work. Please follow the documentation "
2180
  "Необхідно для входу через Instagram. Будь ласка, подивіться документацію <a "
2181
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Instagram."
2182
 
2183
+ #: ../admin/social_login.php:482
2184
  msgid "Line Channel ID"
2185
  msgstr ""
2186
 
2187
+ #: ../admin/social_login.php:491
2188
  #, fuzzy, php-format
2189
  msgid ""
2190
  "Required for Line Social Login to work. Please follow the documentation at "
2193
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2194
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2195
 
2196
+ #: ../admin/social_login.php:502
2197
  #, fuzzy
2198
  msgid "Line Channel Secret"
2199
  msgstr "LinkedIn"
2200
 
2201
+ #: ../admin/social_login.php:511
2202
  #, fuzzy, php-format
2203
  msgid ""
2204
  "Required for Line Social Login to work. Please follow the documentation at "
2207
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2208
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2209
 
2210
+ #: ../admin/social_login.php:522
2211
  #, fuzzy
2212
  msgid "Wordpress Client ID"
2213
  msgstr "Google+ ID клієнта"
2214
 
2215
+ #: ../admin/social_login.php:531
2216
  #, fuzzy, php-format
2217
  msgid ""
2218
  "Required for Wordpress Social Login to work. Please follow the documentation "
2221
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2222
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2223
 
2224
+ #: ../admin/social_login.php:542
2225
  #, fuzzy
2226
  msgid "Wordpress Client Secret"
2227
  msgstr "Google+ ID клієнта"
2228
 
2229
+ #: ../admin/social_login.php:551
2230
  #, fuzzy, php-format
2231
  msgid ""
2232
  "Required for Wordpress Social Login to work. Please follow the documentation "
2236
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2237
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2238
 
2239
+ #: ../admin/social_login.php:562
2240
  #, fuzzy
2241
  msgid "Microsoft Client ID"
2242
  msgstr "Google+ ID клієнта"
2243
 
2244
+ #: ../admin/social_login.php:571
2245
  #, fuzzy, php-format
2246
  msgid ""
2247
  "Required for Live Social Login to work. Please follow the documentation at "
2250
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2251
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2252
 
2253
+ #: ../admin/social_login.php:573 ../admin/social_login.php:593
2254
+ #: ../admin/social_login.php:806 ../admin/social_login.php:826
2255
+ #: ../admin/social_login.php:971 ../admin/social_login.php:991
2256
  #, fuzzy
2257
  msgid ""
2258
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2261
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2262
  "згадки посилання."
2263
 
2264
+ #: ../admin/social_login.php:582
2265
  #, fuzzy
2266
  msgid "Microsoft Client Secret"
2267
  msgstr "Google+ ID клієнта"
2268
 
2269
+ #: ../admin/social_login.php:591
2270
  #, fuzzy, php-format
2271
  msgid ""
2272
  "Required for Live Social Login to work. Please follow the documentation at "
2276
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2277
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2278
 
2279
+ #: ../admin/social_login.php:601
2280
  #, fuzzy
2281
  msgid "Steam API Key"
2282
  msgstr "Twitter API ключ"
2283
 
2284
+ #: ../admin/social_login.php:610
2285
  #, fuzzy, php-format
2286
  msgid ""
2287
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2290
  "Необхідно для входу через Twitter. Будь ласка, подивіться документацію <a "
2291
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
2292
 
2293
+ #: ../admin/social_login.php:611
2294
  #, fuzzy
2295
  msgid "Save following <strong>domain</strong> to get the key"
2296
  msgstr ""
2297
  "Вставити наступний URL-адресу в <strong> URL веб-сайту </ strong> для згадки "
2298
  "посилання"
2299
 
2300
+ #: ../admin/social_login.php:620
2301
  #, fuzzy
2302
  msgid "Yahoo Client ID"
2303
  msgstr "Google+ ID клієнта"
2304
 
2305
+ #: ../admin/social_login.php:629
2306
  #, fuzzy, php-format
2307
  msgid ""
2308
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2311
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2312
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2313
 
2314
+ #: ../admin/social_login.php:631 ../admin/social_login.php:651
2315
  #, fuzzy
2316
  msgid ""
2317
+ "Paste following url in the <strong>Redirect URI(s)</strong> option mentioned "
2318
+ "at the link"
2319
  msgstr ""
2320
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2321
  "згадки посилання."
2322
 
2323
+ #: ../admin/social_login.php:640
2324
  #, fuzzy
2325
  msgid "Yahoo Client Secret"
2326
  msgstr "Google+ ID клієнта"
2327
 
2328
+ #: ../admin/social_login.php:649
2329
  #, fuzzy, php-format
2330
  msgid ""
2331
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2334
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2335
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2336
 
2337
+ #: ../admin/social_login.php:662
2338
+ #, fuzzy
2339
+ msgid "Discord Client ID"
2340
+ msgstr "Twitch Client ID "
2341
+
2342
+ #: ../admin/social_login.php:671
2343
+ #, fuzzy, php-format
2344
+ msgid ""
2345
+ "Required for Discord Social Login to work. Please follow the documentation "
2346
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client ID"
2347
+ msgstr ""
2348
+ "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2349
+ "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2350
+
2351
+ #: ../admin/social_login.php:673 ../admin/social_login.php:693
2352
+ #, fuzzy
2353
+ msgid ""
2354
+ "Paste following url in the <strong>Redirects</strong> option mentioned at "
2355
+ "the link"
2356
+ msgstr ""
2357
+ "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2358
+ "згадки посилання."
2359
+
2360
+ #: ../admin/social_login.php:682
2361
+ #, fuzzy
2362
+ msgid "Discord Client Secret"
2363
+ msgstr "Twitch Client ID "
2364
+
2365
+ #: ../admin/social_login.php:691
2366
+ #, fuzzy, php-format
2367
+ msgid ""
2368
+ "Required for Discord Social Login to work. Please follow the documentation "
2369
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client "
2370
+ "Secret key"
2371
+ msgstr ""
2372
+ "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2373
+ "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2374
+
2375
+ #: ../admin/social_login.php:704
2376
+ #, fuzzy
2377
+ msgid "Amazon Client ID"
2378
+ msgstr "Google+ ID клієнта"
2379
+
2380
+ #: ../admin/social_login.php:713
2381
+ #, fuzzy, php-format
2382
+ msgid ""
2383
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2384
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client ID"
2385
+ msgstr ""
2386
+ "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2387
+ "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2388
+
2389
+ #: ../admin/social_login.php:715 ../admin/social_login.php:735
2390
+ #, fuzzy
2391
+ msgid ""
2392
+ "Paste following url in the <strong>Allowed Return URLs</strong> option "
2393
+ "mentioned at the link"
2394
+ msgstr ""
2395
+ "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2396
+ "згадки посилання."
2397
+
2398
+ #: ../admin/social_login.php:724
2399
+ #, fuzzy
2400
+ msgid "Amazon Client Secret"
2401
+ msgstr "Google+ ID клієнта"
2402
+
2403
+ #: ../admin/social_login.php:733
2404
+ #, fuzzy, php-format
2405
+ msgid ""
2406
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2407
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client Secret "
2408
+ "key"
2409
+ msgstr ""
2410
+ "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2411
+ "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2412
+
2413
+ #: ../admin/social_login.php:746
2414
+ #, fuzzy
2415
+ msgid "Stackoverflow Client ID"
2416
+ msgstr "Google+ ID клієнта"
2417
+
2418
+ #: ../admin/social_login.php:755
2419
+ #, fuzzy, php-format
2420
+ msgid ""
2421
+ "Required for Stackoverflow Social Login to work. Please follow the "
2422
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2423
+ "Stackoverflow Client ID"
2424
+ msgstr ""
2425
+ "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2426
+ "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2427
+
2428
+ #: ../admin/social_login.php:761
2429
+ #, fuzzy
2430
+ msgid "Stackoverflow Client Secret"
2431
+ msgstr "Google+ ID клієнта"
2432
+
2433
+ #: ../admin/social_login.php:770
2434
+ #, fuzzy, php-format
2435
+ msgid ""
2436
+ "Required for Stackoverflow Social Login to work. Please follow the "
2437
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2438
+ "Stackoverflow Client Secret key"
2439
+ msgstr ""
2440
+ "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2441
+ "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2442
+
2443
+ #: ../admin/social_login.php:776
2444
+ msgid "Stackoverflow Key"
2445
+ msgstr ""
2446
+
2447
+ #: ../admin/social_login.php:786
2448
+ #, fuzzy, php-format
2449
+ msgid ""
2450
+ "Required for Stackoverflow Social Login to work. Please follow the "
2451
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2452
+ "Stackoverflow Key"
2453
+ msgstr ""
2454
+ "Необхідно для входу через Twitter. Будь ласка, подивіться документацію <a "
2455
+ "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
2456
+
2457
+ #: ../admin/social_login.php:795
2458
  #, fuzzy
2459
  msgid "Spotify Client ID"
2460
  msgstr "Google+ ID клієнта"
2461
 
2462
+ #: ../admin/social_login.php:804
2463
  #, fuzzy, php-format
2464
  msgid ""
2465
  "Required for Spotify Social Login to work. Please follow the documentation "
2468
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2469
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2470
 
2471
+ #: ../admin/social_login.php:815
2472
  #, fuzzy
2473
  msgid "Spotify Client Secret"
2474
  msgstr "Google+ ID клієнта"
2475
 
2476
+ #: ../admin/social_login.php:824
2477
  #, fuzzy, php-format
2478
  msgid ""
2479
  "Required for Spotify Social Login to work. Please follow the documentation "
2483
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2484
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2485
 
2486
+ #: ../admin/social_login.php:837
2487
  #, fuzzy
2488
  msgid "Dribbble Client ID"
2489
  msgstr "Google+ ID клієнта"
2490
 
2491
+ #: ../admin/social_login.php:846
2492
  #, fuzzy, php-format
2493
  msgid ""
2494
  "Required for Dribbble Social Login to work. Please follow the documentation "
2497
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2498
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2499
 
2500
+ #: ../admin/social_login.php:857
2501
  #, fuzzy
2502
  msgid "Dribbble Client Secret"
2503
  msgstr "Google+ ID клієнта"
2504
 
2505
+ #: ../admin/social_login.php:866
2506
  #, fuzzy, php-format
2507
  msgid ""
2508
  "Required for Dribbble Social Login to work. Please follow the documentation "
2512
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2513
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2514
 
2515
+ #: ../admin/social_login.php:878
2516
  #, fuzzy
2517
  msgid "Twitch Client ID"
2518
  msgstr "Twitch Client ID "
2519
 
2520
+ #: ../admin/social_login.php:887
2521
  #, fuzzy, php-format
2522
  msgid ""
2523
  "Required for Twitch Social Login to work. Please follow the documentation at "
2526
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2527
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2528
 
2529
+ #: ../admin/social_login.php:898
2530
  #, fuzzy
2531
  msgid "Twitch Client Secret"
2532
  msgstr "Twitch Client ID "
2533
 
2534
+ #: ../admin/social_login.php:907
2535
  #, fuzzy, php-format
2536
  msgid ""
2537
  "Required for Twitch Social Login to work. Please follow the documentation at "
2540
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2541
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2542
 
2543
+ #: ../admin/social_login.php:920
2544
  #, fuzzy
2545
  msgid "Foursquare Client ID"
2546
  msgstr "Google+ ID клієнта"
2547
 
2548
+ #: ../admin/social_login.php:929
2549
  #, fuzzy, php-format
2550
  msgid ""
2551
  "Required for Foursquare Social Login to work. Please follow the "
2555
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2556
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2557
 
2558
+ #: ../admin/social_login.php:931 ../admin/social_login.php:951
2559
  #, fuzzy
2560
  msgid ""
2561
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
2564
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2565
  "згадки посилання."
2566
 
2567
+ #: ../admin/social_login.php:940
2568
  #, fuzzy
2569
  msgid "Foursquare Client Secret"
2570
  msgstr "Google+ ID клієнта"
2571
 
2572
+ #: ../admin/social_login.php:949
2573
  #, fuzzy, php-format
2574
  msgid ""
2575
  "Required for Foursquare Social Login to work. Please follow the "
2579
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2580
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2581
 
2582
+ #: ../admin/social_login.php:960
2583
  msgid "Dropbox App Key"
2584
  msgstr ""
2585
 
2586
+ #: ../admin/social_login.php:969
2587
  #, fuzzy, php-format
2588
  msgid ""
2589
  "Required for Dropbox Social Login to work. Please follow the documentation "
2592
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
2593
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
2594
 
2595
+ #: ../admin/social_login.php:980
2596
  #, fuzzy
2597
  msgid "Dropbox App Secret"
2598
  msgstr "Facebook App ID"
2599
 
2600
+ #: ../admin/social_login.php:989
2601
  #, fuzzy, php-format
2602
  msgid ""
2603
  "Required for Dropbox Social Login to work. Please follow the documentation "
2606
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
2607
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
2608
 
2609
+ #: ../admin/social_login.php:1003
2610
  msgid "Disqus Public Key"
2611
  msgstr ""
2612
 
2613
+ #: ../admin/social_login.php:1012
2614
  #, fuzzy, php-format
2615
  msgid ""
2616
  "Required for Disqus Social Login to work. Please follow the documentation at "
2619
  "Необхідно для входу через Xing. Будь ласка, подивіться документацію <a href="
2620
  "\"%s\" target=\"_blank\"> тут </a> для отримання ключа споживача Xing."
2621
 
2622
+ #: ../admin/social_login.php:1023
2623
  #, fuzzy
2624
  msgid "Disqus Secret Key"
2625
  msgstr "Коротке ім'я Disqus"
2626
 
2627
+ #: ../admin/social_login.php:1032
2628
  #, fuzzy, php-format
2629
  msgid ""
2630
  "Required for Disqus Social Login to work. Please follow the documentation at "
2633
  "Необхідно для входу через Xing. Будь ласка, подивіться документацію <a href="
2634
  "\"%s\" target=\"_blank\"> тут </a> для отримання ключа споживача Xing."
2635
 
2636
+ #: ../admin/social_login.php:1045
2637
  #, fuzzy
2638
  msgid "Reddit Client ID"
2639
  msgstr "Twitch Client ID "
2640
 
2641
+ #: ../admin/social_login.php:1054
2642
  #, fuzzy, php-format
2643
  msgid ""
2644
  "Required for Reddit Social Login to work. Please follow the documentation at "
2647
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2648
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2649
 
2650
+ #: ../admin/social_login.php:1056 ../admin/social_login.php:1076
2651
  #, fuzzy
2652
  msgid ""
2653
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
2656
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2657
  "згадки посилання."
2658
 
2659
+ #: ../admin/social_login.php:1065
2660
  #, fuzzy
2661
  msgid "Reddit Client Secret"
2662
  msgstr "Twitch Client ID "
2663
 
2664
+ #: ../admin/social_login.php:1074
2665
  #, fuzzy, php-format
2666
  msgid ""
2667
  "Required for Reddit Social Login to work. Please follow the documentation at "
2670
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2671
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2672
 
2673
+ #: ../admin/social_login.php:1088
2674
  #, fuzzy
2675
  msgid "Github Client ID"
2676
  msgstr "Twitch Client ID "
2677
 
2678
+ #: ../admin/social_login.php:1097
2679
  #, fuzzy, php-format
2680
  msgid ""
2681
  "Required for Github Social Login to work. Please follow the documentation at "
2684
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2685
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2686
 
2687
+ #: ../admin/social_login.php:1108
2688
  #, fuzzy
2689
  msgid "Github Client Secret"
2690
  msgstr "Twitch Client ID "
2691
 
2692
+ #: ../admin/social_login.php:1117
2693
  #, fuzzy, php-format
2694
  msgid ""
2695
  "Required for Github Social Login to work. Please follow the documentation at "
2698
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2699
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2700
 
2701
+ #: ../admin/social_login.php:1130
2702
  #, fuzzy
2703
  msgid "Kakao Client ID"
2704
  msgstr "Google+ ID клієнта"
2705
 
2706
+ #: ../admin/social_login.php:1139
2707
  #, fuzzy, php-format
2708
  msgid ""
2709
  "Required for Kakao Social Login to work. Please follow the documentation at "
2712
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2713
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2714
 
2715
+ #: ../admin/social_login.php:1150
2716
  #, fuzzy
2717
  msgid "Kakao Client Secret"
2718
  msgstr "Google+ ID клієнта"
2719
 
2720
+ #: ../admin/social_login.php:1159
2721
  #, fuzzy, php-format
2722
  msgid ""
2723
  "Required for Kakao Social Login to work. Please follow the documentation at "
2726
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2727
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2728
 
2729
+ #: ../admin/social_login.php:1179
2730
  msgid "Social Login Options"
2731
  msgstr "Параметри входу через соцмережі"
2732
 
2733
+ #: ../admin/social_login.php:1194
2734
  msgid "Text to display above the Social Login interface"
2735
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
2736
 
2737
+ #: ../admin/social_login.php:1202
2738
  msgid "Trigger social login in the same browser tab"
2739
  msgstr ""
2740
 
2741
+ #: ../admin/social_login.php:1212
2742
  msgid "Trigger social login in the same browser tab instead of a popup window"
2743
  msgstr ""
2744
 
2745
+ #: ../admin/social_login.php:1219
2746
  #, fuzzy
2747
  msgid "Center align icons"
2748
  msgstr "Змінити порядок іконок"
2749
 
2750
+ #: ../admin/social_login.php:1229
2751
  #, fuzzy
2752
  msgid "Center align social login icons"
2753
  msgstr "Параметри входу через соцмережі"
2754
 
2755
+ #: ../admin/social_login.php:1236
2756
  msgid "Enable at login page"
2757
  msgstr "Включити сторінку входу"
2758
 
2759
+ #: ../admin/social_login.php:1246
2760
  msgid ""
2761
  "Social Login interface will get enabled at the login page of your website"
2762
  msgstr "Інтерфейс входу через соцмережі буде активовано на сторінці входу"
2763
 
2764
+ #: ../admin/social_login.php:1253
2765
  msgid "Enable at register page"
2766
  msgstr "Включити на сторінці реєстрації"
2767
 
2768
+ #: ../admin/social_login.php:1263
2769
  msgid ""
2770
  "Social Login interface will get enabled at the registration page of your "
2771
  "website"
2772
  msgstr "Інтерфейс входу через соцмережі буде активовано на сторінці"
2773
 
2774
+ #: ../admin/social_login.php:1270
2775
  msgid "Enable at comment form"
2776
  msgstr "Включити в формі коментування"
2777
 
2778
+ #: ../admin/social_login.php:1280
2779
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2780
  msgstr ""
2781
  "Інтерфейс входу через соцмережі буде активовано у вашій формі коментування "
2782
  "Wordpress"
2783
 
2784
+ #: ../admin/social_login.php:1294
2785
  msgid "Enable before WooCommerce Customer Login Form"
2786
  msgstr "Активувати перед формою входу покупця в WooCommerce"
2787
 
2788
+ #: ../admin/social_login.php:1304
2789
  msgid ""
2790
  "Social Login Interface will get enabled before the customer login form at "
2791
  "WooCommerce My Account page"
2793
  "Інтерфейс входу через соцмережі буде активовано перед формою входу для "
2794
  "покупця на сторінці Мій Аккаунт в WooCommerce"
2795
 
2796
+ #: ../admin/social_login.php:1311
2797
  #, fuzzy
2798
  msgid "Enable at WooCommerce Customer Login Form"
2799
  msgstr "Включити після форми входу клієнта WooCommerce"
2800
 
2801
+ #: ../admin/social_login.php:1321
2802
  #, fuzzy
2803
  msgid ""
2804
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2807
  "Інтерфейс входу через соцмережі буде активовано після форми входу для "
2808
  "покупця на сторінці Мій Аккаунт в WooCommerce"
2809
 
2810
+ #: ../admin/social_login.php:1328
2811
  #, fuzzy
2812
  msgid "Enable at WooCommerce Customer Register Form"
2813
  msgstr "Включити після форми входу клієнта WooCommerce"
2814
 
2815
+ #: ../admin/social_login.php:1338
2816
  #, fuzzy
2817
  msgid ""
2818
  "Integrate Social Login Interface with the customer register form at "
2821
  "Інтерфейс входу через соцмережі буде активовано після форми входу для "
2822
  "покупця на сторінці Мій Аккаунт в WooCommerce"
2823
 
2824
+ #: ../admin/social_login.php:1345
2825
  msgid "Enable at WooCommerce checkout page"
2826
  msgstr "Включити на сторінці оформлення замовлення WooCommerce"
2827
 
2828
+ #: ../admin/social_login.php:1355
2829
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2830
  msgstr ""
2831
  "Інтерфейс входу через соцмережі буде активовано на сторінці оформлення "
2832
  "замовлення в WooCommerce"
2833
 
2834
+ #: ../admin/social_login.php:1365
2835
  msgid "Auto-approve comments made by Social Login users"
2836
  msgstr ""
2837
  "Автоматичне схвалення коментарів для користувачів, які увійшли через "
2838
  "соцмережі"
2839
 
2840
+ #: ../admin/social_login.php:1375
2841
  msgid ""
2842
  "If this option is enabled, and WordPress comment is made by Social Login "
2843
  "user, comment will get approved immediately without keeping in moderation."
2846
  "користувачем, який увійшов через соцмережі, то коментар буде опублікований "
2847
  "відразу без модерації."
2848
 
2849
+ #: ../admin/social_login.php:1376
2850
  msgid "Note: This is not related to Facebook comments"
2851
  msgstr "Примітка: Це не пов'язано з коментарями від Facebook"
2852
 
2853
+ #: ../admin/social_login.php:1385
2854
  msgid "Enable social avatar"
2855
  msgstr "Включення соціальних аватар"
2856
 
2857
+ #: ../admin/social_login.php:1395
2858
  msgid ""
2859
  "Social profile pictures of the logged in user will be displayed as profile "
2860
  "avatar"
2862
  "Зображення користувача в соцмережах буде використовуватися як зображення "
2863
  "профілю на сайті"
2864
 
2865
+ #: ../admin/social_login.php:1404
2866
  msgid "Avatar quality"
2867
  msgstr "Якість аватарки"
2868
 
2869
+ #: ../admin/social_login.php:1407
2870
  msgid "Average"
2871
  msgstr "Середнє"
2872
 
2873
+ #: ../admin/social_login.php:1408
2874
  msgid "Best"
2875
  msgstr "Кращий"
2876
 
2877
+ #: ../admin/social_login.php:1415
2878
  msgid "Choose avatar quality"
2879
  msgstr "Виберіть якість аватара"
2880
 
2881
+ #: ../admin/social_login.php:1423
2882
  msgid ""
2883
  "Show option for users to update social avatar at BuddyPress profile page"
2884
  msgstr ""
2885
  "Показати варіант для користувачів для оновлення соціального аватара на "
2886
  "сторінці профілю BuddyPress"
2887
 
2888
+ #: ../admin/social_login.php:1433
2889
  msgid ""
2890
  "If enabled, users would be able to update their social avatar from \"Profile "
2891
  "photo\" section in BuddyPress profile at front-end"
2893
  "Якщо цей параметр включений, користувачі зможуть оновити свій соціальний "
2894
  "аватар з розділу «Профіль» фото в профілі BuddyPress"
2895
 
2896
+ #: ../admin/social_login.php:1453
2897
  msgid ""
2898
  "If enabled and Social ID provider does not provide user's email address on "
2899
  "login, user will be asked to provide his/her email address. Otherwise, a "
2903
  "входу, користувачеві буде потрібно ввести свою пошту. В іншому ж випадку, "
2904
  "пошта буде створена за зразком."
2905
 
2906
+ #: ../admin/social_login.php:1461
2907
  msgid "Send post-registration email to user to set account password"
2908
  msgstr ""
2909
  "Відправити після реєстрації електронною поштою користувачу лист щоб "
2910
  "встановити пароль облікового запису"
2911
 
2912
+ #: ../admin/social_login.php:1471
2913
  msgid ""
2914
  "If enabled, an email will be sent to user after registration through Social "
2915
  "Login, regarding his/her login credentials (username-password to be able to "
2919
  "буде відправлено лист з ім'ям і пароль щоб була можливість зайти через "
2920
  "стандартну форму авторизації"
2921
 
2922
+ #: ../admin/social_login.php:1478
2923
  msgid "Send new user registration notification email to admin"
2924
  msgstr ""
2925
  "Надіслати повідомлення про реєстрацію нового користувача по електронній "
2926
  "пошті адміністратору"
2927
 
2928
+ #: ../admin/social_login.php:1488
2929
  msgid ""
2930
  "If enabled, an email will be sent to admin after new user registers through "
2931
  "Social Login, notifying admin about the new user registration"
2933
  "Якщо опція включена, на пошту адміністратора прийде повідомлення про "
2934
  "реєстрацію нового користувача через соцмережі."
2935
 
2936
+ #: ../admin/social_login.php:1495
2937
  msgid "Login redirection"
2938
  msgstr "Перенаправлення входу"
2939
 
2940
+ #: ../admin/social_login.php:1499
2941
  msgid "Same page where user logged in"
2942
  msgstr "Та ж сторінка, на якій користувач зробив вхід"
2943
 
2944
+ #: ../admin/social_login.php:1503 ../admin/social_login.php:1532
2945
  msgid "Account dashboard"
2946
  msgstr "Сторінка управління аккаунтом"
2947
 
2948
+ #: ../admin/social_login.php:1506 ../admin/social_login.php:1535
2949
  msgid "BuddyPress profile page"
2950
  msgstr "Сторінка профілю BuddyPress"
2951
 
2952
+ #: ../admin/social_login.php:1509 ../admin/social_login.php:1538
2953
  msgid "Custom Url"
2954
  msgstr "Користувацьке посилання"
2955
 
2956
+ #: ../admin/social_login.php:1517
2957
  msgid "User will be redirected to the selected page after Social Login"
2958
  msgstr ""
2959
  "Користувач буде перенаправлений на обрану сторінку після входу через "
2960
  "соцмережі"
2961
 
2962
+ #: ../admin/social_login.php:1524
2963
  msgid "Registration redirection"
2964
  msgstr "Перенаправлення реєстрації"
2965
 
2966
+ #: ../admin/social_login.php:1528
2967
  msgid "Same page from where user registered"
2968
  msgstr "URL цільової сторінки, на якій зареєстрований користувач"
2969
 
2970
+ #: ../admin/social_login.php:1546
2971
  msgid ""
2972
  "User will be redirected to the selected page after registration (first "
2973
  "Social Login) through Social Login"
2975
  "Користувач буде перенаправлений на обрану сторінку після реєстрації (перший "
2976
  "вхід чере соцмережі) через соцмережі"
2977
 
2978
+ #: ../admin/social_login.php:1555
2979
  #, fuzzy
2980
  msgid "Social Account Linking Options"
2981
  msgstr "Посилання на соціальний аккаунт"
2982
 
2983
+ #: ../admin/social_login.php:1570
2984
  #, fuzzy
2985
  msgid "Text to display above the Social Account Linking interface"
2986
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
2987
 
2988
+ #: ../admin/social_login.php:1577
2989
  msgid ""
2990
  "Link social account to already existing account, if email address matches"
2991
  msgstr ""
2992
  "Пов'язує аккаунт соцмереж з існуючим обліковим записом якщо пошта збігається."
2993
 
2994
+ #: ../admin/social_login.php:1587
2995
  #, fuzzy
2996
  msgid ""
2997
  "If email address of the user's Social Account matches with an already "
3004
  "існуючим обліковим записом. Користувач зможе управляти цим на сторінці "
3005
  "профілю."
3006
 
3007
+ #: ../admin/social_login.php:1595
3008
  msgid "Enable social account linking at BuddyPress profile page"
3009
  msgstr "Інтегрує соціальний аккаунт на сторінці профілю BuddyPress"
3010
 
3011
+ #: ../admin/social_login.php:1605
3012
  msgid ""
3013
  "Enable this option to show social account linking interface at BuddyPress "
3014
  "profile page"
3016
  "Активуйте цю функцію щоб інтегрувати соціальний аккаунт на сторінці профілю "
3017
  "BuddyPress"
3018
 
3019
+ #: ../admin/social_login.php:1616
3020
  msgid "Email popup options"
3021
  msgstr "Параметри спливаючій електронної пошти"
3022
 
3023
+ #: ../admin/social_login.php:1621
3024
  msgid "Text on 'Email required' popup"
3025
  msgstr "Текст на спливаючому вікні «Електронна пошта потрібна»"
3026
 
3027
+ #: ../admin/social_login.php:1631
3028
  msgid ""
3029
  "This text will be displayed on email required popup. Leave empty if not "
3030
  "required."
3032
  "Цей текст буде відображатися на спливаючому вікні, що вимагає пошту. Залиште "
3033
  "поле порожнім якщо не потрібно."
3034
 
3035
+ #: ../admin/social_login.php:1639
3036
  msgid "Error message for 'Email required' popup"
3037
  msgstr "Повідомлення помилки у спливаючому вікні \"Потрібно пошта \""
3038
 
3039
+ #: ../admin/social_login.php:1649
3040
  msgid ""
3041
  "This message will be displayed to user if it provides invalid or already "
3042
  "registered email"
3044
  "Це повідомлення буде показано користувачеві, якщо він надав невірну або "
3045
  "раніше запроваджену пошту"
3046
 
3047
+ #: ../admin/social_login.php:1657
3048
  msgid "Email popup height"
3049
  msgstr "Висота спливаючого вікна"
3050
 
3051
+ #: ../admin/social_login.php:1667
3052
  msgid ""
3053
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
3054
  "can increase the height of popup by specifying in this option. Leave empty "
3058
  "то ви можете збільшити висотку спливаючого вікна. Залиште порожнім для "
3059
  "базового значення."
3060
 
3061
+ #: ../admin/social_login.php:1674
3062
  msgid "Enable email verification"
3063
  msgstr "Включити перевірку електронної пошти"
3064
 
3065
+ #: ../admin/social_login.php:1684
3066
  msgid ""
3067
  "If enabled, email provided by the user will be verified by sending a "
3068
  "confirmation link to that email. User would not be able to login without "
3071
  "Якщо опція включена, то на пошту, яку вказав користувач, прийде лист з "
3072
  "підтвердженням. Користувач не зможе зайти без підтвердження своєї пошти."
3073
 
3074
+ #: ../admin/social_login.php:1704
3075
  #, fuzzy
3076
  msgid "Enable GDPR opt-in"
3077
  msgstr "Активувати коментування через Disqus"
3078
 
3079
+ #: ../admin/social_login.php:1714
3080
  msgid ""
3081
  "Enable it to show GDPR opt-in for social login and social account linking"
3082
  msgstr ""
3083
 
3084
+ #: ../admin/social_login.php:1722
3085
  #, fuzzy
3086
  msgid "Placement of GDPR opt-in"
3087
  msgstr "Активувати коментування через Disqus"
3088
 
3089
+ #: ../admin/social_login.php:1726
3090
  #, fuzzy
3091
  msgid "Above Social Login icons"
3092
  msgstr "Параметри входу через соцмережі"
3093
 
3094
+ #: ../admin/social_login.php:1728
3095
  #, fuzzy
3096
  msgid "Below Social Login icons"
3097
  msgstr "Параметри входу через соцмережі"
3098
 
3099
+ #: ../admin/social_login.php:1734
3100
  #, fuzzy
3101
  msgid "Placement of GDPR opt-in above or below the social login icons"
3102
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
3103
 
3104
+ #: ../admin/social_login.php:1741
3105
  msgid "Opt-in text"
3106
  msgstr ""
3107
 
3108
+ #: ../admin/social_login.php:1751
3109
  #, fuzzy
3110
  msgid "Text for the GDPR opt-in"
3111
  msgstr "Активувати коментування через Disqus"
3112
 
3113
+ #: ../admin/social_login.php:1758
3114
  msgid "Text to link to Terms-Conditions page"
3115
  msgstr ""
3116
 
3117
+ #: ../admin/social_login.php:1768
3118
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
3119
  msgstr ""
3120
 
3121
+ #: ../admin/social_login.php:1775
3122
  msgid "Terms-Conditions Url"
3123
  msgstr ""
3124
 
3125
+ #: ../admin/social_login.php:1785
3126
  #, fuzzy
3127
  msgid "Url of the terms-conditions page of your website"
3128
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
3129
 
3130
+ #: ../admin/social_login.php:1792
3131
  msgid "Text to link to Privacy Policy page"
3132
  msgstr ""
3133
 
3134
+ #: ../admin/social_login.php:1802
3135
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
3136
  msgstr ""
3137
 
3138
+ #: ../admin/social_login.php:1809
3139
  msgid "Privacy Policy Url"
3140
  msgstr ""
3141
 
3142
+ #: ../admin/social_login.php:1819
3143
  #, fuzzy
3144
  msgid "Url of the privacy policy page of your website"
3145
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
3146
 
3147
+ #: ../admin/social_login.php:1870 ../inc/widget.php:260 ../inc/widget.php:438
3148
  #: ../inc/widget.php:602 ../inc/widget.php:750
3149
  msgid "Select"
3150
  msgstr "Вибір"
3151
 
3152
+ #: ../admin/social_login.php:1901
3153
  msgid "Social Login Shortcode & Widget"
3154
  msgstr "Шорткод і віджет для входу через соцмережі"
3155
 
3156
+ #: ../admin/social_login.php:1902
3157
  msgid "Social Linking Shortcode"
3158
  msgstr "Шорткод соціальних посилань"
3159
 
3160
+ #: ../admin/social_login.php:1917
3161
  #, fuzzy
3162
  msgid "Why is social login not working?"
3163
  msgstr "Чому Facebook Логін не працює?"
3164
 
3165
+ #: ../admin/social_login.php:1918
3166
  msgid ""
3167
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3168
  "belong to the same app"
3169
  msgstr ""
3170
 
3171
+ #: ../admin/social_login.php:1920
3172
  msgid "Social Login not working with Varnish enabled"
3173
  msgstr ""
3174
 
3175
+ #: ../admin/social_login.php:1921
3176
  msgid ""
3177
  "Why the user is not appearing logged in even after Social Login until the "
3178
  "webpage is refreshed manually?"
3383
  msgid "Archives"
3384
  msgstr "Архіви "
3385
 
3386
+ #: ../inc/social_sharing.php:225
3387
+ msgid "More"
3388
+ msgstr ""
3389
+
3390
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
3391
  msgid "Invalid request"
3392
  msgstr "Невірний Запит!"
3395
  msgid "Providers not selected"
3396
  msgstr "Сервіси не вибрані"
3397
 
3398
+ #: ../inc/social_sharing_networks.php:57
3399
+ msgid "Copy Link"
3400
+ msgstr ""
3401
+
3402
+ #: ../inc/social_login.php:1030
3403
  msgid "Email"
3404
  msgstr "Email"
3405
 
3406
+ #: ../inc/social_login.php:1031
3407
  msgid "Confirm email"
3408
  msgstr "Підтвердити e-mail"
3409
 
3410
+ #: ../inc/social_login.php:1033
3411
  msgid "Save"
3412
  msgstr "Зберегти"
3413
 
3414
+ #: ../inc/social_login.php:1034
3415
  msgid "Cancel"
3416
  msgstr "Скасувати"
3417
 
3418
+ #: ../inc/social_login.php:1108
3419
  msgid "Email Verification"
3420
  msgstr "Підтвердження адреси електронної пошти"
3421
 
3422
+ #: ../inc/social_login.php:1110
3423
  msgid ""
3424
  "Please click on the following link or paste it in browser to verify your "
3425
  "email"
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-01-27 15:37+0530\n"
5
- "PO-Revision-Date: 2021-01-27 15:37+0530\n"
6
  "Last-Translator: Heateor <hello@heateor.com>\n"
7
  "Language-Team: 汤小贤 <calmsmile@aliyun.com>\n"
8
  "Language: zh_CN\n"
@@ -21,13 +21,13 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: super_socializer.php:1570
25
  msgid ""
26
  "cURL is not enabled at your website server. Please contact your website "
27
  "server administrator to enable it."
28
  msgstr "在您的网站服务器上未启用 curl。请与您的网站服务器管理员联系以启用它。"
29
 
30
- #: super_socializer.php:1598
31
  #, php-format
32
  msgid ""
33
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -36,7 +36,7 @@ msgstr ""
36
  "在 twitter 应用中的 <strong> 网站 </strong> 选项中输入以下 url (请参阅步骤 3 "
37
  "%s)"
38
 
39
- #: super_socializer.php:1601
40
  #, php-format
41
  msgid ""
42
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -45,112 +45,117 @@ msgstr ""
45
  "在 twitter 应用中 <strong> 回调 url </strong> 选项中输入以下 url (请参阅步骤 "
46
  "3 %s)"
47
 
48
- #: super_socializer.php:1604
49
  msgid ""
50
  "Make sure cURL is enabled at your website server. You may need to contact "
51
  "the server administrator of your website to verify this"
52
  msgstr ""
53
  "请确保在您的网站服务器上启用了cURL。对此,请您与您的网站的服务器管理员核实。"
54
 
55
- #: super_socializer.php:1786 helper.php:986
 
 
 
 
 
56
  msgid "Please verify your email address to login."
57
  msgstr "请验证您的电子邮件地址以便登录。"
58
 
59
- #: super_socializer.php:1786
60
  msgid "Your email has been verified. Now you can login to your account"
61
  msgstr "您的电子邮件已验证。现在你可以登录到您的帐户"
62
 
63
- #: super_socializer.php:1790
64
  msgid "Notification"
65
  msgstr "通知"
66
 
67
- #: super_socializer.php:1808 admin/social_login.php:1280
68
  msgid "Email required"
69
  msgstr "邮件地址(比选)"
70
 
71
- #: super_socializer.php:1811
72
  msgid "Please check your email inbox to complete the registration."
73
  msgstr "请检查您的电子邮件收件箱以完成注册。"
74
 
75
- #: super_socializer.php:1880
76
  msgid "Leave a reply"
77
  msgstr "回复"
78
 
79
- #: super_socializer.php:1896 inc/social_sharing.php:241
80
  msgid "Shares"
81
  msgstr "分享"
82
 
83
- #: super_socializer.php:1896 inc/social_sharing.php:241
84
  msgid "Share"
85
  msgstr "分享"
86
 
87
- #: super_socializer.php:1896
88
  msgid "Link copied."
89
  msgstr "链接已复制。"
90
 
91
- #: super_socializer.php:2141
92
  msgid "Super Socializer - General Options"
93
  msgstr "Super Socializer-常规选项"
94
 
95
- #: super_socializer.php:2141 admin/general_options.php:15
96
  #: admin/social_commenting.php:47
97
  msgid "General Options"
98
  msgstr "常规选项"
99
 
100
- #: super_socializer.php:2209 helper.php:915
101
  msgid "Social Avatar"
102
  msgstr "社会化头像"
103
 
104
- #: super_socializer.php:2212
105
  msgid "Small Avatar Url"
106
  msgstr "小头像 Url"
107
 
108
- #: super_socializer.php:2216
109
  msgid "Large Avatar Url"
110
  msgstr "大头像 Url"
111
 
112
- #: super_socializer.php:2220 helper.php:918
113
  msgid ""
114
  "Do not fetch and update social avatar from my profile, next time I Social "
115
  "Login"
116
  msgstr "不从我的个人资料里获取及更新社会化头像,下次社会化登录"
117
 
118
- #: super_socializer.php:2224 helper.php:919
119
  msgid "Update social avatar, next time I Social Login"
120
  msgstr "更新社会化头像,下次社会化登录"
121
 
122
- #: super_socializer.php:2301
123
  msgid "Login with your Social ID"
124
  msgstr "使用您的社交 ID登录"
125
 
126
- #: super_socializer.php:2302
127
  msgid "Email you entered is already registered or invalid"
128
  msgstr "您输入的电子邮件已经注册或无效"
129
 
130
- #: super_socializer.php:2309
131
  msgid "Please enter a valid email address. You might be required to verify it"
132
  msgstr "请输入一个有效的电子邮件地址。您可能需要验证它"
133
 
134
- #: super_socializer.php:2313 super_socializer.php:3039
135
  msgid "Link your social account to login to your account at this website"
136
  msgstr "链接你的社会化媒体帐户登录您本站账号"
137
 
138
- #: super_socializer.php:2561
139
  msgid "Thanks for installing Super Socializer plugin"
140
  msgstr ""
141
 
142
- #: super_socializer.php:2563
143
  msgid "Configure the Plugin"
144
  msgstr ""
145
 
146
- #: super_socializer.php:2574
147
  #, fuzzy
148
  msgid ""
149
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
150
  "current version of Super Socializer"
151
  msgstr "更新 \"facebook 评论审核\" 加载项与当前版本的Super Socialzer"
152
 
153
- #: super_socializer.php:2583
154
  #, fuzzy
155
  msgid ""
156
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
@@ -158,14 +163,14 @@ msgid ""
158
  msgstr ""
159
  "更新 \"facebook 评论通知程序\" 加载项, 以与当前版本的超级社交提供兼容性"
160
 
161
- #: super_socializer.php:2592
162
  #, fuzzy
163
  msgid ""
164
- "Update \"Social Login Buttons\" add-on to version 1.2.6 or above for "
165
  "compatibility with current version of Super Socializer"
166
  msgstr "更新 \"社交登录按钮\" 加载项与当前版本的超级社交器兼容"
167
 
168
- #: super_socializer.php:2601
169
  #, fuzzy
170
  msgid ""
171
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
@@ -174,7 +179,7 @@ msgstr ""
174
  "更新 \"社交分享 mycred 集成\" 加载项, 以最大限度地与当前版本的超级社交提供兼"
175
  "容"
176
 
177
- #: super_socializer.php:2610
178
  #, fuzzy
179
  msgid ""
180
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
@@ -182,7 +187,7 @@ msgid ""
182
  msgstr ""
183
  "更新 \"社交登录 mycred 集成\" 加载项, 以最大限度地兼容当前版本的超级社交"
184
 
185
- #: super_socializer.php:2621
186
  #, php-format
187
  msgid ""
188
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
@@ -190,7 +195,7 @@ msgstr ""
190
  "要继续使用 steam 登录, 请保存 steam api 密钥 < a href = \" %s\" >, 请点击此"
191
  "处 </a>"
192
 
193
- #: super_socializer.php:2630
194
  #, php-format
195
  msgid ""
196
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -198,7 +203,7 @@ msgid ""
198
  "Instagram App Secret <a href=\"%s\">here</a>"
199
  msgstr ""
200
 
201
- #: super_socializer.php:2639 super_socializer.php:2648
202
  #, php-format
203
  msgid ""
204
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -207,13 +212,13 @@ msgid ""
207
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
208
  msgstr ""
209
 
210
- #: super_socializer.php:2664
211
  #, php-format
212
  msgid ""
213
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
214
  msgstr "若要继续使用社交登录, 请在此处保存密钥 < ref = \" %s\" > </a>"
215
 
216
- #: super_socializer.php:2688
217
  #, php-format
218
  msgid ""
219
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -224,14 +229,14 @@ msgstr ""
224
  "facebook 登录正常工作。有关更多详细信息, 请在此处检查步骤 9 < ref = \" %s\" "
225
  "target = \"_ black\" > </a>"
226
 
227
- #: super_socializer.php:2688 super_socializer.php:2713
228
- #: super_socializer.php:2738 super_socializer.php:2763
229
- #: super_socializer.php:2796 super_socializer.php:2824
230
- #: super_socializer.php:2851
231
  msgid "Okay"
232
  msgstr "好的"
233
 
234
- #: super_socializer.php:2713
235
  #, php-format
236
  msgid ""
237
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -242,7 +247,7 @@ msgstr ""
242
  "关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black\" > </"
243
  "a>"
244
 
245
- #: super_socializer.php:2738
246
  #, php-format
247
  msgid ""
248
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -253,7 +258,7 @@ msgstr ""
253
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
254
  "black\" > </a>"
255
 
256
- #: super_socializer.php:2763
257
  #, php-format
258
  msgid ""
259
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -264,13 +269,13 @@ msgstr ""
264
  "常工作。有关更多详细信息, 请在此处检查步骤 11 < ref = \" %s\" target = \"_ "
265
  "black\" > </a>"
266
 
267
- #: super_socializer.php:2774
268
  #, php-format
269
  msgid ""
270
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
271
  msgstr "保存您的网站 < reof = \" %s\" 的隐私政策页面的网址 </a>"
272
 
273
- #: super_socializer.php:2796
274
  #, php-format
275
  msgid ""
276
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -280,7 +285,7 @@ msgstr ""
280
  "这个插件是符合GDPR的。您需要更新网站有关此插件保存的个人数据的隐私政策。如 "
281
  "<a href=\"%s\" target=\"_blank\">这里</a>所述"
282
 
283
- #: super_socializer.php:2824
284
  #, php-format
285
  msgid ""
286
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -289,7 +294,7 @@ msgid ""
289
  "your website %s with them. No need to copy-paste any code from their website."
290
  msgstr ""
291
 
292
- #: super_socializer.php:2851
293
  #, php-format
294
  msgid ""
295
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -300,7 +305,7 @@ msgstr ""
300
  "工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black"
301
  "\" > </a>"
302
 
303
- #: super_socializer.php:2876
304
  #, fuzzy, php-format
305
  msgid ""
306
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -311,11 +316,11 @@ msgstr ""
311
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
312
  "black\" > </a>"
313
 
314
- #: super_socializer.php:2876 super_socializer.php:2903
315
  msgid "Dismiss"
316
  msgstr ""
317
 
318
- #: super_socializer.php:2902
319
  #, php-format
320
  msgid ""
321
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -324,7 +329,7 @@ msgid ""
324
  "that, clear share counts cache from \"Miscellaneous\" section"
325
  msgstr ""
326
 
327
- #: super_socializer.php:3115
328
  msgid ""
329
  "Your browser is blocking some features of this website. Please follow the "
330
  "instructions at {support_url} to unblock these."
@@ -336,118 +341,118 @@ msgstr ""
336
  msgid "Settings saved"
337
  msgstr "设置已保存"
338
 
339
- #: helper.php:185
340
  #, fuzzy
341
  msgid "Click to toggle help"
342
  msgstr "单击隐藏帮助"
343
 
344
- #: helper.php:282
345
  msgid "Add-Ons"
346
  msgstr "加载项"
347
 
348
- #: helper.php:283
349
  msgid "Support Documentation"
350
  msgstr "支持文档"
351
 
352
- #: helper.php:284
353
  msgid "Settings"
354
  msgstr "设置"
355
 
356
- #: helper.php:567
357
  msgid "Account linked successfully"
358
  msgstr "成功关联帐户"
359
 
360
- #: helper.php:571
361
  msgid "Account already exists or linked"
362
  msgstr "帐户已经存在或被链接"
363
 
364
- #: helper.php:607 helper.php:609
365
  #, fuzzy
366
  msgid "Login with"
367
  msgstr "登陸選項"
368
 
369
- #: helper.php:644 helper.php:650
370
  msgid "Currently"
371
  msgstr "目前:"
372
 
373
- #: helper.php:644 helper.php:650
374
  msgid "Connected with"
375
  msgstr "连接与"
376
 
377
- #: helper.php:644 helper.php:650
378
  msgid "Remove"
379
  msgstr "删除"
380
 
381
- #: helper.php:721
382
  msgid "Social Account Linking"
383
  msgstr "社交账户链接"
384
 
385
- #: helper.php:771
386
  msgid "Disable Standard Social Sharing on this "
387
  msgstr "在此禁用社会化共享"
388
 
389
- #: helper.php:776
390
  msgid "Disable Floating Social Sharing on this "
391
  msgstr "在此禁用社交共享的浮动效果"
392
 
393
- #: helper.php:781
394
  msgid "Disable Standard like buttons on this "
395
  msgstr "在此禁用喜欢按钮"
396
 
397
- #: helper.php:786
398
  msgid "Disable Floating like buttons on this "
399
  msgstr "在此禁用喜欢按钮的浮动效果"
400
 
401
- #: helper.php:791
402
  msgid "Disable Social Commenting on this "
403
  msgstr "在此禁用社会化评论"
404
 
405
- #: helper.php:800
406
  msgid "Standard Sharing Interface"
407
  msgstr "标准共享界面"
408
 
409
- #: helper.php:806 helper.php:825
410
  msgid "Starting share count for "
411
  msgstr "开始共享计数"
412
 
413
- #: helper.php:819
414
  msgid "Floating Sharing Interface"
415
  msgstr "浮动共享界面"
416
 
417
- #: helper.php:922
418
  msgid "Small Avatar"
419
  msgstr "小头像"
420
 
421
- #: helper.php:926
422
  msgid "Large Avatar"
423
  msgstr "大头像"
424
 
425
- #: helper.php:930 admin/general_options.php:89 admin/social_sharing.php:1944
426
- #: admin/social_commenting.php:400 admin/social_login.php:1770
427
  #: admin/like_buttons.php:780
428
  msgid "Save Changes"
429
  msgstr "保存更改"
430
 
431
- #: helper.php:1023
432
  msgid "Click to delete social profile data"
433
  msgstr "点击删除社交个人资料数据"
434
 
435
- #: helper.php:1052
436
  msgid "Deleting"
437
  msgstr "删除"
438
 
439
- #: helper.php:1062
440
  msgid "Deleted"
441
  msgstr "已删除"
442
 
443
- #: helper.php:1064
444
  msgid "Something bad happened"
445
  msgstr "发生了一些不好的事情"
446
 
447
  #: admin/general_options.php:7 admin/general_options.php:93
448
  #: admin/social_sharing.php:5 admin/social_sharing.php:1948
449
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
450
- #: admin/social_login.php:5 admin/social_login.php:1774
451
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
452
  #, fuzzy, php-format
453
  msgid ""
@@ -494,13 +499,13 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
494
  msgstr "您可以指定任何额外的 CSS 规则(无需 &lt;style&gt; tag)"
495
 
496
  #: admin/general_options.php:103 admin/social_sharing.php:1954
497
- #: admin/social_commenting.php:410 admin/social_login.php:1780
498
  #: admin/like_buttons.php:790
499
  msgid "Instagram Shoutout"
500
  msgstr ""
501
 
502
  #: admin/general_options.php:105 admin/social_sharing.php:1956
503
- #: admin/social_commenting.php:412 admin/social_login.php:1782
504
  #: admin/like_buttons.php:792
505
  #, fuzzy
506
  msgid ""
@@ -645,7 +650,7 @@ msgstr "第三方集成"
645
 
646
  #: admin/social_sharing.php:67 admin/social_sharing.php:1869
647
  #: admin/social_sharing.php:1871 admin/social_login.php:45
648
- #: admin/social_login.php:1736 admin/like_buttons.php:50
649
  #: admin/like_buttons.php:751
650
  msgid "Shortcode & Widget"
651
  msgstr "简码&小工具"
@@ -656,7 +661,7 @@ msgstr "排错"
656
 
657
  #: admin/social_sharing.php:69 admin/social_sharing.php:1902
658
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
659
- #: admin/social_login.php:46 admin/social_login.php:1750
660
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
661
  msgid "FAQ"
662
  msgstr "常见问题解答"
@@ -882,8 +887,8 @@ msgstr "自定义 URL"
882
  msgid "Url to share"
883
  msgstr "要分享的网址"
884
 
885
- #: admin/social_sharing.php:725 admin/social_login.php:1021
886
- #: admin/social_login.php:1397 admin/like_buttons.php:105 inc/widget.php:949
887
  msgid "Title"
888
  msgstr "标题"
889
 
@@ -965,7 +970,7 @@ msgid "Placement"
965
  msgstr "放置"
966
 
967
  #: admin/social_sharing.php:957 admin/social_sharing.php:1383
968
- #: admin/social_login.php:1338 admin/social_login.php:1367
969
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
970
  msgid "Homepage"
971
  msgstr "主页"
@@ -1211,7 +1216,7 @@ msgstr ""
1211
  msgid "Required only to track Facebook share count"
1212
  msgstr ""
1213
 
1214
- #: admin/social_sharing.php:1584 admin/social_login.php:193
1215
  msgid "Facebook App ID"
1216
  msgstr "Facebook 应用 ID"
1217
 
@@ -1224,7 +1229,7 @@ msgstr ""
1224
  "需要Facebook社交登录。请按照在<a href=“%s” target=“_blank”>的链接 </a>得到"
1225
  "Facebook的应用程序ID"
1226
 
1227
- #: admin/social_sharing.php:1601 admin/social_login.php:214
1228
  msgid "Facebook App Secret"
1229
  msgstr "FacebookAPP密码"
1230
 
@@ -1405,7 +1410,7 @@ msgstr ""
1405
  "题的URL(Facebook分享无法正常工作)。 单击“获取新的Scrape信息”按钮。"
1406
 
1407
  #: admin/social_sharing.php:1904 admin/social_commenting.php:386
1408
- #: admin/social_login.php:1752
1409
  msgid ""
1410
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1411
  "an online website for the plugin to function properly."
@@ -1465,7 +1470,7 @@ msgid ""
1465
  msgstr "如何恢复在将我的网站转移到SSL/https之后丢失的社交分享数?"
1466
 
1467
  #: admin/social_sharing.php:1919 admin/social_commenting.php:389
1468
- #: admin/social_login.php:1759
1469
  msgid "Why is my browser blocking some features of the plugin?"
1470
  msgstr "为什么我的浏览器会阻止插件的某些功能?"
1471
 
@@ -1758,11 +1763,11 @@ msgstr "基本配置"
1758
  msgid "Advanced Configuration"
1759
  msgstr "高级配置"
1760
 
1761
- #: admin/social_login.php:41 admin/social_login.php:1536
1762
  msgid "GDPR"
1763
  msgstr "GDPR"
1764
 
1765
- #: admin/social_login.php:43 admin/social_login.php:1687
1766
  msgid "XProfile Integration"
1767
  msgstr "xprofile 集成"
1768
 
@@ -1791,97 +1796,122 @@ msgstr ""
1791
  "禁止通过社交登录注册消息的页面"
1792
 
1793
  #: admin/social_login.php:98
 
 
 
 
 
 
 
 
 
 
 
 
 
1794
  msgid "Select Social Networks"
1795
  msgstr "设置社交媒体链接"
1796
 
1797
- #: admin/social_login.php:103
1798
  msgid "Facebook"
1799
  msgstr "Facebook"
1800
 
1801
- #: admin/social_login.php:107
1802
  msgid "Twitter"
1803
  msgstr "Twitter"
1804
 
1805
- #: admin/social_login.php:111
1806
  msgid "LinkedIn"
1807
  msgstr "LinkedIn"
1808
 
1809
- #: admin/social_login.php:115
1810
  #, fuzzy
1811
  msgid "Google"
1812
  msgstr "Google+"
1813
 
1814
- #: admin/social_login.php:119
1815
  msgid "Vkontakte"
1816
  msgstr "Vkontakte"
1817
 
1818
- #: admin/social_login.php:123
1819
  msgid "Instagram"
1820
  msgstr "Instagram"
1821
 
1822
- #: admin/social_login.php:127
1823
  msgid "Steam"
1824
  msgstr "Steam"
1825
 
1826
- #: admin/social_login.php:131
1827
  msgid "Line"
1828
  msgstr ""
1829
 
1830
- #: admin/social_login.php:135
1831
  msgid "Wordpress"
1832
  msgstr ""
1833
 
1834
- #: admin/social_login.php:139
1835
  msgid "Windows Live"
1836
  msgstr ""
1837
 
1838
- #: admin/social_login.php:143
1839
  msgid "Yahoo"
1840
  msgstr ""
1841
 
1842
- #: admin/social_login.php:147
 
 
 
 
 
 
 
 
 
 
 
 
1843
  msgid "Spotify"
1844
  msgstr ""
1845
 
1846
- #: admin/social_login.php:150
1847
  msgid "Dribbble"
1848
  msgstr ""
1849
 
1850
- #: admin/social_login.php:154
1851
  msgid "Twitch"
1852
  msgstr "Twitch"
1853
 
1854
- #: admin/social_login.php:158
1855
  #, fuzzy
1856
  msgid "Foursquare"
1857
  msgstr "Foursquare链接:"
1858
 
1859
- #: admin/social_login.php:162
1860
  msgid "Dropbox"
1861
  msgstr ""
1862
 
1863
- #: admin/social_login.php:166
1864
  msgid "Disqus"
1865
  msgstr ""
1866
 
1867
- #: admin/social_login.php:170
1868
  msgid "Reddit"
1869
  msgstr ""
1870
 
1871
- #: admin/social_login.php:174
1872
  #, fuzzy
1873
  msgid "Github"
1874
  msgstr "Github 链接:"
1875
 
1876
- #: admin/social_login.php:178
1877
  msgid "Kakao"
1878
  msgstr ""
1879
 
1880
- #: admin/social_login.php:186
1881
  msgid "Select Social ID provider to enable in Social Login"
1882
  msgstr "选择社会化ID提供商以启用社会化登录"
1883
 
1884
- #: admin/social_login.php:203
1885
  #, php-format
1886
  msgid ""
1887
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1890,13 +1920,13 @@ msgstr ""
1890
  "需要Facebook社交登录。请按照在<a href=“%s” target=“_blank”>的链接 </a>得到"
1891
  "Facebook的应用程序ID"
1892
 
1893
- #: admin/social_login.php:205 admin/social_login.php:226
1894
  #, fuzzy
1895
  msgid ""
1896
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1897
  msgstr "在提到的链接选项中粘贴以下url<strong>网站URL</strong>"
1898
 
1899
- #: admin/social_login.php:224
1900
  #, php-format
1901
  msgid ""
1902
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1905,11 +1935,11 @@ msgstr ""
1905
  "facebook 社交登录工作所需。请按照文档在 < href = \" %s\" 目标 = \"_ black\" "
1906
  "> 此链接 </a>, 以获得 facebook 应用程序机密"
1907
 
1908
- #: admin/social_login.php:235
1909
  msgid "Twitter API Key"
1910
  msgstr "Twitter API密钥"
1911
 
1912
- #: admin/social_login.php:245
1913
  #, php-format
1914
  msgid ""
1915
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1918,30 +1948,30 @@ msgstr ""
1918
  "需要Twitter社交登录。请按照在<a href=“%s” target=“_blank”>的链接</a>得到"
1919
  "Twitter的API密钥"
1920
 
1921
- #: admin/social_login.php:247 admin/social_login.php:272
1922
  #, fuzzy
1923
  msgid ""
1924
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1925
  msgstr "粘贴以下网址 <strong> 网站 </strong> 选项在提到的链接"
1926
 
1927
- #: admin/social_login.php:251 admin/social_login.php:276
1928
- #: admin/social_login.php:464 admin/social_login.php:484
1929
- #: admin/social_login.php:685 admin/social_login.php:705
1930
- #: admin/social_login.php:726 admin/social_login.php:746
1931
- #: admin/social_login.php:851 admin/social_login.php:871
1932
- #: admin/social_login.php:936 admin/social_login.php:956
1933
- #: admin/social_login.php:978 admin/social_login.php:998
1934
  #, fuzzy
1935
  msgid ""
1936
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1937
  "link"
1938
  msgstr "粘贴以下网址 <strong> 回拨 url </strong> 选项在提到的链接"
1939
 
1940
- #: admin/social_login.php:260
1941
  msgid "Twitter API Secret"
1942
  msgstr "Twitter API Secret"
1943
 
1944
- #: admin/social_login.php:270
1945
  #, php-format
1946
  msgid ""
1947
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1950,11 +1980,11 @@ msgstr ""
1950
  "需要Twitter社交登录。请按照在<a href=“%s” target=“_blank”>的链接</a>得到"
1951
  "Twitter的API密钥"
1952
 
1953
- #: admin/social_login.php:285
1954
  msgid "LinkedIn Client ID"
1955
  msgstr ""
1956
 
1957
- #: admin/social_login.php:295
1958
  #, php-format
1959
  msgid ""
1960
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -1963,19 +1993,19 @@ msgstr ""
1963
  "链接登录需要工作。请按照 < href = \" %s\" target = \"_ black\" > 此链接 </a> "
1964
  "的文档获取 linkedin 客户端 id"
1965
 
1966
- #: admin/social_login.php:297 admin/social_login.php:318
1967
- #: admin/social_login.php:504 admin/social_login.php:524
1968
  #, fuzzy
1969
  msgid ""
1970
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
1971
  "the link"
1972
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
1973
 
1974
- #: admin/social_login.php:306
1975
  msgid "LinkedIn Client Secret"
1976
  msgstr ""
1977
 
1978
- #: admin/social_login.php:316
1979
  #, php-format
1980
  msgid ""
1981
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -1985,11 +2015,11 @@ msgstr ""
1985
  "链接登录需要工作。请按照 \"href =\" %s \"target =\" _ black \"> 此链接中的文"
1986
  "档进行操作, 以获取 linkedin 客户端机密"
1987
 
1988
- #: admin/social_login.php:327
1989
  msgid "Google Client ID"
1990
  msgstr ""
1991
 
1992
- #: admin/social_login.php:337
1993
  #, fuzzy, php-format
1994
  msgid ""
1995
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -1998,18 +2028,18 @@ msgstr ""
1998
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
1999
  "接</a>得到GOOGLEPLUS客户端ID"
2000
 
2001
- #: admin/social_login.php:339 admin/social_login.php:360
2002
  #, fuzzy
2003
  msgid ""
2004
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2005
  "mentioned at the link"
2006
  msgstr "粘贴以下 url 在 <strong> 授权的 re正确性 uri </strong> 选项在上述链接"
2007
 
2008
- #: admin/social_login.php:348
2009
  msgid "Google Client Secret"
2010
  msgstr ""
2011
 
2012
- #: admin/social_login.php:358
2013
  #, fuzzy, php-format
2014
  msgid ""
2015
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2018,11 +2048,11 @@ msgstr ""
2018
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2019
  "链接 </a> 获取 google plus 客户端机密"
2020
 
2021
- #: admin/social_login.php:369
2022
  msgid "Vkontakte Application ID"
2023
  msgstr ""
2024
 
2025
- #: admin/social_login.php:379 admin/social_login.php:400
2026
  #, php-format
2027
  msgid ""
2028
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2032,23 +2062,23 @@ msgstr ""
2032
  "要求Vkontakte社会化登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</"
2033
  "a>得到的Vkontakte应用程序ID"
2034
 
2035
- #: admin/social_login.php:381 admin/social_login.php:402
2036
  #, fuzzy
2037
  msgid ""
2038
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2039
  "link"
2040
  msgstr "在<strong>网站地址</strong>选项里(该选项在链接里提到)粘贴以下网址"
2041
 
2042
- #: admin/social_login.php:390
2043
  msgid "Vkontakte Secure key"
2044
  msgstr ""
2045
 
2046
- #: admin/social_login.php:411
2047
  #, fuzzy
2048
  msgid "Instagram App ID"
2049
  msgstr "Instagram"
2050
 
2051
- #: admin/social_login.php:421
2052
  #, fuzzy, php-format
2053
  msgid ""
2054
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2057,19 +2087,19 @@ msgstr ""
2057
  "需要Instagram的社交登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</"
2058
  "a>得到的Instagram客户端ID"
2059
 
2060
- #: admin/social_login.php:423 admin/social_login.php:444
2061
  #, fuzzy
2062
  msgid ""
2063
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2064
  "mentioned at the link"
2065
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2066
 
2067
- #: admin/social_login.php:432
2068
  #, fuzzy
2069
  msgid "Instagram App Secret"
2070
  msgstr "Instagram"
2071
 
2072
- #: admin/social_login.php:442
2073
  #, fuzzy, php-format
2074
  msgid ""
2075
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2078,11 +2108,11 @@ msgstr ""
2078
  "需要Instagram的社交登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</"
2079
  "a>得到的Instagram客户端ID"
2080
 
2081
- #: admin/social_login.php:453
2082
  msgid "Line Channel ID"
2083
  msgstr ""
2084
 
2085
- #: admin/social_login.php:462
2086
  #, fuzzy, php-format
2087
  msgid ""
2088
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2091,11 +2121,11 @@ msgstr ""
2091
  "链接登录需要工作。请按照 < href = \" %s\" target = \"_ black\" > 此链接 </a> "
2092
  "的文档获取 linkedin 客户端 id"
2093
 
2094
- #: admin/social_login.php:473
2095
  msgid "Line Channel Secret"
2096
  msgstr ""
2097
 
2098
- #: admin/social_login.php:482
2099
  #, fuzzy, php-format
2100
  msgid ""
2101
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2104,11 +2134,11 @@ msgstr ""
2104
  "链接登录需要工作。请按照 \"href =\" %s \"target =\" _ black \"> 此链接中的文"
2105
  "档进行操作, 以获取 linkedin 客户端机密"
2106
 
2107
- #: admin/social_login.php:493
2108
  msgid "Wordpress Client ID"
2109
  msgstr ""
2110
 
2111
- #: admin/social_login.php:502
2112
  #, fuzzy, php-format
2113
  msgid ""
2114
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2117,11 +2147,11 @@ msgstr ""
2117
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2118
  "接</a>得到GOOGLEPLUS客户端ID"
2119
 
2120
- #: admin/social_login.php:513
2121
  msgid "Wordpress Client Secret"
2122
  msgstr ""
2123
 
2124
- #: admin/social_login.php:522
2125
  #, fuzzy, php-format
2126
  msgid ""
2127
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -2131,11 +2161,11 @@ msgstr ""
2131
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2132
  "链接 </a> 获取 google plus 客户端机密"
2133
 
2134
- #: admin/social_login.php:533
2135
  msgid "Microsoft Client ID"
2136
  msgstr ""
2137
 
2138
- #: admin/social_login.php:542
2139
  #, fuzzy, php-format
2140
  msgid ""
2141
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2144,20 +2174,20 @@ msgstr ""
2144
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2145
  "接</a>得到GOOGLEPLUS客户端ID"
2146
 
2147
- #: admin/social_login.php:544 admin/social_login.php:564
2148
- #: admin/social_login.php:643 admin/social_login.php:663
2149
- #: admin/social_login.php:808 admin/social_login.php:828
2150
  #, fuzzy
2151
  msgid ""
2152
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2153
  "the link"
2154
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2155
 
2156
- #: admin/social_login.php:553
2157
  msgid "Microsoft Client Secret"
2158
  msgstr ""
2159
 
2160
- #: admin/social_login.php:562
2161
  #, fuzzy, php-format
2162
  msgid ""
2163
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2167,11 +2197,11 @@ msgstr ""
2167
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2168
  "链接 </a> 获取 google plus 客户端机密"
2169
 
2170
- #: admin/social_login.php:572
2171
  msgid "Steam API Key"
2172
  msgstr ""
2173
 
2174
- #: admin/social_login.php:581
2175
  #, php-format
2176
  msgid ""
2177
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2179,15 +2209,15 @@ msgid ""
2179
  msgstr ""
2180
  "蒸汽社交登录工作所需。获取 < href = \" %s\" 目标 = \"_ black\" > 此链接 </a>"
2181
 
2182
- #: admin/social_login.php:582
2183
  msgid "Save following <strong>domain</strong> to get the key"
2184
  msgstr "保存以下 <strong> 域 </strong> 以获取密钥"
2185
 
2186
- #: admin/social_login.php:591
2187
  msgid "Yahoo Client ID"
2188
  msgstr ""
2189
 
2190
- #: admin/social_login.php:600
2191
  #, fuzzy, php-format
2192
  msgid ""
2193
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2196,18 +2226,18 @@ msgstr ""
2196
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2197
  "接</a>得到GOOGLEPLUS客户端ID"
2198
 
2199
- #: admin/social_login.php:602 admin/social_login.php:622
2200
  #, fuzzy
2201
  msgid ""
2202
- "Paste following url in <strong>Redirect URI(s)</strong> option mentioned at "
2203
- "the link"
2204
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2205
 
2206
- #: admin/social_login.php:611
2207
  msgid "Yahoo Client Secret"
2208
  msgstr ""
2209
 
2210
- #: admin/social_login.php:620
2211
  #, fuzzy, php-format
2212
  msgid ""
2213
  "Required for Yahoo Social Login to work. Please follow the documentation at "
@@ -2216,11 +2246,126 @@ msgstr ""
2216
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2217
  "链接 </a> 获取 google plus 客户端机密"
2218
 
2219
- #: admin/social_login.php:632
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2220
  msgid "Spotify Client ID"
2221
  msgstr ""
2222
 
2223
- #: admin/social_login.php:641
2224
  #, fuzzy, php-format
2225
  msgid ""
2226
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2229,11 +2374,11 @@ msgstr ""
2229
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2230
  "接</a>得到GOOGLEPLUS客户端ID"
2231
 
2232
- #: admin/social_login.php:652
2233
  msgid "Spotify Client Secret"
2234
  msgstr ""
2235
 
2236
- #: admin/social_login.php:661
2237
  #, fuzzy, php-format
2238
  msgid ""
2239
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2243,11 +2388,11 @@ msgstr ""
2243
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2244
  "链接 </a> 获取 google plus 客户端机密"
2245
 
2246
- #: admin/social_login.php:674
2247
  msgid "Dribbble Client ID"
2248
  msgstr ""
2249
 
2250
- #: admin/social_login.php:683
2251
  #, fuzzy, php-format
2252
  msgid ""
2253
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2256,11 +2401,11 @@ msgstr ""
2256
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2257
  "接</a>得到GOOGLEPLUS客户端ID"
2258
 
2259
- #: admin/social_login.php:694
2260
  msgid "Dribbble Client Secret"
2261
  msgstr ""
2262
 
2263
- #: admin/social_login.php:703
2264
  #, fuzzy, php-format
2265
  msgid ""
2266
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2270,11 +2415,11 @@ msgstr ""
2270
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2271
  "链接 </a> 获取 google plus 客户端机密"
2272
 
2273
- #: admin/social_login.php:715
2274
  msgid "Twitch Client ID"
2275
  msgstr ""
2276
 
2277
- #: admin/social_login.php:724
2278
  #, fuzzy, php-format
2279
  msgid ""
2280
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2283,12 +2428,12 @@ msgstr ""
2283
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2284
  "接</a>得到GOOGLEPLUS客户端ID"
2285
 
2286
- #: admin/social_login.php:735
2287
  #, fuzzy
2288
  msgid "Twitch Client Secret"
2289
  msgstr "Twitter API Secret"
2290
 
2291
- #: admin/social_login.php:744
2292
  #, fuzzy, php-format
2293
  msgid ""
2294
  "Required for Twitch Social Login to work. Please follow the documentation at "
@@ -2297,12 +2442,12 @@ msgstr ""
2297
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2298
  "链接 </a> 获取 google plus 客户端机密"
2299
 
2300
- #: admin/social_login.php:757
2301
  #, fuzzy
2302
  msgid "Foursquare Client ID"
2303
  msgstr "Foursquare链接:"
2304
 
2305
- #: admin/social_login.php:766
2306
  #, fuzzy, php-format
2307
  msgid ""
2308
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2312,19 +2457,19 @@ msgstr ""
2312
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2313
  "接</a>得到GOOGLEPLUS客户端ID"
2314
 
2315
- #: admin/social_login.php:768 admin/social_login.php:788
2316
  #, fuzzy
2317
  msgid ""
2318
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
2319
  "link"
2320
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2321
 
2322
- #: admin/social_login.php:777
2323
  #, fuzzy
2324
  msgid "Foursquare Client Secret"
2325
  msgstr "Twitter API Secret"
2326
 
2327
- #: admin/social_login.php:786
2328
  #, fuzzy, php-format
2329
  msgid ""
2330
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2334,11 +2479,11 @@ msgstr ""
2334
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2335
  "链接 </a> 获取 google plus 客户端机密"
2336
 
2337
- #: admin/social_login.php:797
2338
  msgid "Dropbox App Key"
2339
  msgstr ""
2340
 
2341
- #: admin/social_login.php:806
2342
  #, fuzzy, php-format
2343
  msgid ""
2344
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2347,12 +2492,12 @@ msgstr ""
2347
  "facebook 社交登录工作所需。请按照文档在 < href = \" %s\" 目标 = \"_ black\" "
2348
  "> 此链接 </a>, 以获得 facebook 应用程序机密"
2349
 
2350
- #: admin/social_login.php:817
2351
  #, fuzzy
2352
  msgid "Dropbox App Secret"
2353
  msgstr "FacebookAPP密码"
2354
 
2355
- #: admin/social_login.php:826
2356
  #, fuzzy, php-format
2357
  msgid ""
2358
  "Required for Dropbox Social Login to work. Please follow the documentation "
@@ -2361,11 +2506,11 @@ msgstr ""
2361
  "facebook 社交登录工作所需。请按照文档在 < href = \" %s\" 目标 = \"_ black\" "
2362
  "> 此链接 </a>, 以获得 facebook 应用程序机密"
2363
 
2364
- #: admin/social_login.php:840
2365
  msgid "Disqus Public Key"
2366
  msgstr ""
2367
 
2368
- #: admin/social_login.php:849
2369
  #, fuzzy, php-format
2370
  msgid ""
2371
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2374,12 +2519,12 @@ msgstr ""
2374
  "需要Xing社会化登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</a>得到"
2375
  "消费者邢重点"
2376
 
2377
- #: admin/social_login.php:860
2378
  #, fuzzy
2379
  msgid "Disqus Secret Key"
2380
  msgstr "Disqus 短名称"
2381
 
2382
- #: admin/social_login.php:869
2383
  #, fuzzy, php-format
2384
  msgid ""
2385
  "Required for Disqus Social Login to work. Please follow the documentation at "
@@ -2388,11 +2533,11 @@ msgstr ""
2388
  "需要Xing社会化登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</a>得到"
2389
  "消费者邢重点"
2390
 
2391
- #: admin/social_login.php:882
2392
  msgid "Reddit Client ID"
2393
  msgstr ""
2394
 
2395
- #: admin/social_login.php:891
2396
  #, fuzzy, php-format
2397
  msgid ""
2398
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2401,19 +2546,19 @@ msgstr ""
2401
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2402
  "接</a>得到GOOGLEPLUS客户端ID"
2403
 
2404
- #: admin/social_login.php:893 admin/social_login.php:913
2405
  #, fuzzy
2406
  msgid ""
2407
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
2408
  "link"
2409
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2410
 
2411
- #: admin/social_login.php:902
2412
  #, fuzzy
2413
  msgid "Reddit Client Secret"
2414
  msgstr "Twitter API Secret"
2415
 
2416
- #: admin/social_login.php:911
2417
  #, fuzzy, php-format
2418
  msgid ""
2419
  "Required for Reddit Social Login to work. Please follow the documentation at "
@@ -2422,11 +2567,11 @@ msgstr ""
2422
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2423
  "链接 </a> 获取 google plus 客户端机密"
2424
 
2425
- #: admin/social_login.php:925
2426
  msgid "Github Client ID"
2427
  msgstr ""
2428
 
2429
- #: admin/social_login.php:934
2430
  #, fuzzy, php-format
2431
  msgid ""
2432
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2435,11 +2580,11 @@ msgstr ""
2435
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2436
  "接</a>得到GOOGLEPLUS客户端ID"
2437
 
2438
- #: admin/social_login.php:945
2439
  msgid "Github Client Secret"
2440
  msgstr ""
2441
 
2442
- #: admin/social_login.php:954
2443
  #, fuzzy, php-format
2444
  msgid ""
2445
  "Required for Github Social Login to work. Please follow the documentation at "
@@ -2448,11 +2593,11 @@ msgstr ""
2448
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2449
  "链接 </a> 获取 google plus 客户端机密"
2450
 
2451
- #: admin/social_login.php:967
2452
  msgid "Kakao Client ID"
2453
  msgstr ""
2454
 
2455
- #: admin/social_login.php:976
2456
  #, fuzzy, php-format
2457
  msgid ""
2458
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2461,11 +2606,11 @@ msgstr ""
2461
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2462
  "接</a>得到GOOGLEPLUS客户端ID"
2463
 
2464
- #: admin/social_login.php:987
2465
  msgid "Kakao Client Secret"
2466
  msgstr ""
2467
 
2468
- #: admin/social_login.php:996
2469
  #, fuzzy, php-format
2470
  msgid ""
2471
  "Required for Kakao Social Login to work. Please follow the documentation at "
@@ -2474,107 +2619,107 @@ msgstr ""
2474
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2475
  "链接 </a> 获取 google plus 客户端机密"
2476
 
2477
- #: admin/social_login.php:1016
2478
  #, fuzzy
2479
  msgid "Social Login Options"
2480
  msgstr "社交登录选项"
2481
 
2482
- #: admin/social_login.php:1031
2483
  msgid "Text to display above the Social Login interface"
2484
  msgstr "文本显示社交登录界面的上方"
2485
 
2486
- #: admin/social_login.php:1039
2487
  msgid "Trigger social login in the same browser tab"
2488
  msgstr ""
2489
 
2490
- #: admin/social_login.php:1049
2491
  msgid "Trigger social login in the same browser tab instead of a popup window"
2492
  msgstr ""
2493
 
2494
- #: admin/social_login.php:1056
2495
  #, fuzzy
2496
  msgid "Center align icons"
2497
  msgstr "重新排列图标"
2498
 
2499
- #: admin/social_login.php:1066
2500
  #, fuzzy
2501
  msgid "Center align social login icons"
2502
  msgstr "社交登录选项"
2503
 
2504
- #: admin/social_login.php:1073
2505
  msgid "Enable at login page"
2506
  msgstr "在登录页面启用"
2507
 
2508
- #: admin/social_login.php:1083
2509
  msgid ""
2510
  "Social Login interface will get enabled at the login page of your website"
2511
  msgstr "社交登录界面会在你的网站的登录页面启用"
2512
 
2513
- #: admin/social_login.php:1090
2514
  msgid "Enable at register page"
2515
  msgstr "在注册页面启用"
2516
 
2517
- #: admin/social_login.php:1100
2518
  msgid ""
2519
  "Social Login interface will get enabled at the registration page of your "
2520
  "website"
2521
  msgstr "社交登录界面会在你的网站的注册页面启用"
2522
 
2523
- #: admin/social_login.php:1107
2524
  msgid "Enable at comment form"
2525
  msgstr "在评论表单启用"
2526
 
2527
- #: admin/social_login.php:1117
2528
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2529
  msgstr "社交登录界面会在您的WordPress评论的表单启用"
2530
 
2531
- #: admin/social_login.php:1131
2532
  msgid "Enable before WooCommerce Customer Login Form"
2533
  msgstr "WooCommerce客户登录表单前启用"
2534
 
2535
- #: admin/social_login.php:1141
2536
  msgid ""
2537
  "Social Login Interface will get enabled before the customer login form at "
2538
  "WooCommerce My Account page"
2539
  msgstr "社交登录界面将在WooCommerce我的帐户页面客户登录表单之前启用"
2540
 
2541
- #: admin/social_login.php:1148
2542
  #, fuzzy
2543
  msgid "Enable at WooCommerce Customer Login Form"
2544
  msgstr "在WooCommerce客户登录表单后启用"
2545
 
2546
- #: admin/social_login.php:1158
2547
  #, fuzzy
2548
  msgid ""
2549
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2550
  "My Account page"
2551
  msgstr "社交登录界面将在WooCommerce我的帐户页面客户登录表单后启用"
2552
 
2553
- #: admin/social_login.php:1165
2554
  #, fuzzy
2555
  msgid "Enable at WooCommerce Customer Register Form"
2556
  msgstr "在WooCommerce客户登录表单后启用"
2557
 
2558
- #: admin/social_login.php:1175
2559
  #, fuzzy
2560
  msgid ""
2561
  "Integrate Social Login Interface with the customer register form at "
2562
  "WooCommerce My Account page"
2563
  msgstr "社交登录界面将在WooCommerce我的帐户页面客户登录表单后启用"
2564
 
2565
- #: admin/social_login.php:1182
2566
  msgid "Enable at WooCommerce checkout page"
2567
  msgstr "在WooCommerce “结算”页面启用"
2568
 
2569
- #: admin/social_login.php:1192
2570
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2571
  msgstr "社交登录界面将在WooCommerce结帐页面启用"
2572
 
2573
- #: admin/social_login.php:1202
2574
  msgid "Auto-approve comments made by Social Login users"
2575
  msgstr "自动批准社交登录用户评论"
2576
 
2577
- #: admin/social_login.php:1212
2578
  msgid ""
2579
  "If this option is enabled, and WordPress comment is made by Social Login "
2580
  "user, comment will get approved immediately without keeping in moderation."
@@ -2582,42 +2727,42 @@ msgstr ""
2582
  "如果启用该选项,已经WordPress评论由社交登录用户发出,评论将会在不需要批准的情"
2583
  "况下立即批准。"
2584
 
2585
- #: admin/social_login.php:1213
2586
  msgid "Note: This is not related to Facebook comments"
2587
  msgstr "注:这Facebook的评论无关"
2588
 
2589
- #: admin/social_login.php:1222
2590
  msgid "Enable social avatar"
2591
  msgstr "启用社交头像"
2592
 
2593
- #: admin/social_login.php:1232
2594
  msgid ""
2595
  "Social profile pictures of the logged in user will be displayed as profile "
2596
  "avatar"
2597
  msgstr "登录用户的社交资料图片将显示为个人头像"
2598
 
2599
- #: admin/social_login.php:1241
2600
  msgid "Avatar quality"
2601
  msgstr "头像质量"
2602
 
2603
- #: admin/social_login.php:1244
2604
  msgid "Average"
2605
  msgstr "一般"
2606
 
2607
- #: admin/social_login.php:1245
2608
  msgid "Best"
2609
  msgstr "最好"
2610
 
2611
- #: admin/social_login.php:1252
2612
  msgid "Choose avatar quality"
2613
  msgstr "选择头像质量"
2614
 
2615
- #: admin/social_login.php:1260
2616
  msgid ""
2617
  "Show option for users to update social avatar at BuddyPress profile page"
2618
  msgstr "在BuddyPress的个人资料页面显示更新显示社会化头像选项"
2619
 
2620
- #: admin/social_login.php:1270
2621
  msgid ""
2622
  "If enabled, users would be able to update their social avatar from \"Profile "
2623
  "photo\" section in BuddyPress profile at front-end"
@@ -2625,7 +2770,7 @@ msgstr ""
2625
  "如果启用,用户将能够在前端从BuddyPress的个人档案“个人资料照片”部分更新社会化"
2626
  "头像"
2627
 
2628
- #: admin/social_login.php:1290
2629
  msgid ""
2630
  "If enabled and Social ID provider does not provide user's email address on "
2631
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2634,11 +2779,11 @@ msgstr ""
2634
  "如果启用,当登录时如果社会化ID提供商不提供或支持用户的电子邮件地址,用户将被"
2635
  "要求提供他/她的电子邮件地址。否则,将产生一个虚拟的电子邮件"
2636
 
2637
- #: admin/social_login.php:1298
2638
  msgid "Send post-registration email to user to set account password"
2639
  msgstr "向用户发送注册后电子邮件以设置帐户密码"
2640
 
2641
- #: admin/social_login.php:1308
2642
  msgid ""
2643
  "If enabled, an email will be sent to user after registration through Social "
2644
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2647,11 +2792,11 @@ msgstr ""
2647
  "如果启用,通过社会化注册登录后,将给用户发送一封email; 包括他/她的登录凭据"
2648
  "(用户名,密码,能够通过传统的登录表单登录)"
2649
 
2650
- #: admin/social_login.php:1315
2651
  msgid "Send new user registration notification email to admin"
2652
  msgstr "向管理员发送新的用户注册通知电子邮件"
2653
 
2654
- #: admin/social_login.php:1325
2655
  msgid ""
2656
  "If enabled, an email will be sent to admin after new user registers through "
2657
  "Social Login, notifying admin about the new user registration"
@@ -2659,59 +2804,59 @@ msgstr ""
2659
  "如果启用, 将在新用户通过社交登录注册后向管理员发送一封电子邮件, 通知管理员有"
2660
  "关新用户注册的信息"
2661
 
2662
- #: admin/social_login.php:1332
2663
  msgid "Login redirection"
2664
  msgstr "登录重定向"
2665
 
2666
- #: admin/social_login.php:1336
2667
  msgid "Same page where user logged in"
2668
  msgstr "用户登录同样的页面"
2669
 
2670
- #: admin/social_login.php:1340 admin/social_login.php:1369
2671
  msgid "Account dashboard"
2672
  msgstr "帐户信息中心"
2673
 
2674
- #: admin/social_login.php:1343 admin/social_login.php:1372
2675
  msgid "BuddyPress profile page"
2676
  msgstr "BuddyPress 档案"
2677
 
2678
- #: admin/social_login.php:1346 admin/social_login.php:1375
2679
  msgid "Custom Url"
2680
  msgstr "自定义 URL"
2681
 
2682
- #: admin/social_login.php:1354
2683
  msgid "User will be redirected to the selected page after Social Login"
2684
  msgstr "用户社交登录后会被重定向到选择的页面"
2685
 
2686
- #: admin/social_login.php:1361
2687
  msgid "Registration redirection"
2688
  msgstr "注册重定向"
2689
 
2690
- #: admin/social_login.php:1365
2691
  msgid "Same page from where user registered"
2692
  msgstr "用户注册同样的页面"
2693
 
2694
- #: admin/social_login.php:1383
2695
  msgid ""
2696
  "User will be redirected to the selected page after registration (first "
2697
  "Social Login) through Social Login"
2698
  msgstr ""
2699
  "注册之后,通过社会化登录(第一个社交化登录)后,用户将被重定向到所选择的页面"
2700
 
2701
- #: admin/social_login.php:1392
2702
  msgid "Social Account Linking Options"
2703
  msgstr "社交帐户链接选项"
2704
 
2705
- #: admin/social_login.php:1407
2706
  msgid "Text to display above the Social Account Linking interface"
2707
  msgstr "要显示在社交帐户链接界面上方的文本"
2708
 
2709
- #: admin/social_login.php:1414
2710
  msgid ""
2711
  "Link social account to already existing account, if email address matches"
2712
  msgstr "如果电子邮件地址匹配, 请将社交帐户链接到已存在的帐户"
2713
 
2714
- #: admin/social_login.php:1424
2715
  msgid ""
2716
  "If email address of the user's Social Account matches with an already "
2717
  "existing account at your website, that social account will be linked to "
@@ -2721,45 +2866,45 @@ msgstr ""
2721
  "如果用户的社交帐户的电子邮件地址与您网站上已存在的帐户匹配, 则该社交帐户将链"
2722
  "接到现有帐户。用户将能够管理这从社交帐户链接界面在他们的个人资料页面。"
2723
 
2724
- #: admin/social_login.php:1432
2725
  msgid "Enable social account linking at BuddyPress profile page"
2726
  msgstr "在BuddyPress的个人资料页面启用社交帐户链接"
2727
 
2728
- #: admin/social_login.php:1442
2729
  msgid ""
2730
  "Enable this option to show social account linking interface at BuddyPress "
2731
  "profile page"
2732
  msgstr "启用该选项,以在BuddyPress的个人资料页显示社交帐户连结界面"
2733
 
2734
- #: admin/social_login.php:1453
2735
  msgid "Email popup options"
2736
  msgstr "电子邮件弹出选项"
2737
 
2738
- #: admin/social_login.php:1458
2739
  msgid "Text on 'Email required' popup"
2740
  msgstr "在“电子邮件必填”弹出口显示的文本"
2741
 
2742
- #: admin/social_login.php:1468
2743
  msgid ""
2744
  "This text will be displayed on email required popup. Leave empty if not "
2745
  "required."
2746
  msgstr "在电子邮件必填弹出口将显示的文本。如果不需要请留空。"
2747
 
2748
- #: admin/social_login.php:1476
2749
  msgid "Error message for 'Email required' popup"
2750
  msgstr "“电子邮件必填”弹出口的错误信息"
2751
 
2752
- #: admin/social_login.php:1486
2753
  msgid ""
2754
  "This message will be displayed to user if it provides invalid or already "
2755
  "registered email"
2756
  msgstr "如果无效及已经注册的email地址,这个信息将显示给用户"
2757
 
2758
- #: admin/social_login.php:1494
2759
  msgid "Email popup height"
2760
  msgstr "电子邮件弹出口高度"
2761
 
2762
- #: admin/social_login.php:1504
2763
  msgid ""
2764
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2765
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2768,11 +2913,11 @@ msgstr ""
2768
  "如果在“电子邮件必填”弹出窗口中看到垂直滚动条,你可以通过这个选项指定加大弹出"
2769
  "的高度。留空为默认。"
2770
 
2771
- #: admin/social_login.php:1511
2772
  msgid "Enable email verification"
2773
  msgstr "启用电子邮件验证"
2774
 
2775
- #: admin/social_login.php:1521
2776
  msgid ""
2777
  "If enabled, email provided by the user will be verified by sending a "
2778
  "confirmation link to that email. User would not be able to login without "
@@ -2781,105 +2926,105 @@ msgstr ""
2781
  "如果启用,将向用户的email地址发送一个确认链接进行验证。不验证,用户将无法登"
2782
  "录。"
2783
 
2784
- #: admin/social_login.php:1541
2785
  msgid "Enable GDPR opt-in"
2786
  msgstr ""
2787
 
2788
- #: admin/social_login.php:1551
2789
  msgid ""
2790
  "Enable it to show GDPR opt-in for social login and social account linking"
2791
  msgstr "使其能够显示 gdpr 选择加入的社交登录和社交帐户链接"
2792
 
2793
- #: admin/social_login.php:1559
2794
  msgid "Placement of GDPR opt-in"
2795
  msgstr ""
2796
 
2797
- #: admin/social_login.php:1563
2798
  #, fuzzy
2799
  msgid "Above Social Login icons"
2800
  msgstr "社交登录选项"
2801
 
2802
- #: admin/social_login.php:1565
2803
  #, fuzzy
2804
  msgid "Below Social Login icons"
2805
  msgstr "社交登录选项"
2806
 
2807
- #: admin/social_login.php:1571
2808
  #, fuzzy
2809
  msgid "Placement of GDPR opt-in above or below the social login icons"
2810
  msgstr "在社交登录图标上方显示的选择加入的文本"
2811
 
2812
- #: admin/social_login.php:1578
2813
  msgid "Opt-in text"
2814
  msgstr ""
2815
 
2816
- #: admin/social_login.php:1588
2817
  msgid "Text for the GDPR opt-in"
2818
  msgstr ""
2819
 
2820
- #: admin/social_login.php:1595
2821
  #, fuzzy
2822
  msgid "Text to link to Terms-Conditions page"
2823
  msgstr "要链接到隐私政策页面的文本"
2824
 
2825
- #: admin/social_login.php:1605
2826
  #, fuzzy
2827
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2828
  msgstr "要链接到隐私策略页的选入文本中的单词"
2829
 
2830
- #: admin/social_login.php:1612
2831
  msgid "Terms-Conditions Url"
2832
  msgstr ""
2833
 
2834
- #: admin/social_login.php:1622
2835
  #, fuzzy
2836
  msgid "Url of the terms-conditions page of your website"
2837
  msgstr "您网站的主页的 Url"
2838
 
2839
- #: admin/social_login.php:1629
2840
  msgid "Text to link to Privacy Policy page"
2841
  msgstr "要链接到隐私政策页面的文本"
2842
 
2843
- #: admin/social_login.php:1639
2844
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2845
  msgstr "要链接到隐私策略页的选入文本中的单词"
2846
 
2847
- #: admin/social_login.php:1646
2848
  msgid "Privacy Policy Url"
2849
  msgstr "隐私政策网址"
2850
 
2851
- #: admin/social_login.php:1656
2852
  msgid "Url of the privacy policy page of your website"
2853
  msgstr "您网站的隐私政策页面的网址"
2854
 
2855
- #: admin/social_login.php:1707 inc/widget.php:260 inc/widget.php:438
2856
  #: inc/widget.php:602 inc/widget.php:750
2857
  msgid "Select"
2858
  msgstr "选择"
2859
 
2860
- #: admin/social_login.php:1738
2861
  msgid "Social Login Shortcode & Widget"
2862
  msgstr ""
2863
 
2864
- #: admin/social_login.php:1739
2865
  msgid "Social Linking Shortcode"
2866
  msgstr "社交链接简码"
2867
 
2868
- #: admin/social_login.php:1754
2869
  msgid "Why is social login not working?"
2870
  msgstr "为什么社交登录不起作用?"
2871
 
2872
- #: admin/social_login.php:1755
2873
  msgid ""
2874
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2875
  "belong to the same app"
2876
  msgstr ""
2877
 
2878
- #: admin/social_login.php:1757
2879
  msgid "Social Login not working with Varnish enabled"
2880
  msgstr ""
2881
 
2882
- #: admin/social_login.php:1758
2883
  msgid ""
2884
  "Why the user is not appearing logged in even after Social Login until the "
2885
  "webpage is refreshed manually?"
@@ -3070,6 +3215,10 @@ msgstr "搜索"
3070
  msgid "Archives"
3071
  msgstr "档案"
3072
 
 
 
 
 
3073
  #: inc/social_sharing.php:942 inc/social_sharing.php:1180
3074
  msgid "Invalid request"
3075
  msgstr "无效请求。"
@@ -3078,27 +3227,31 @@ msgstr "无效请求。"
3078
  msgid "Providers not selected"
3079
  msgstr "未选定的供应商"
3080
 
3081
- #: inc/social_login.php:968
 
 
 
 
3082
  msgid "Email"
3083
  msgstr "邮箱"
3084
 
3085
- #: inc/social_login.php:969
3086
  msgid "Confirm email"
3087
  msgstr "确认邮箱"
3088
 
3089
- #: inc/social_login.php:971
3090
  msgid "Save"
3091
  msgstr "保存"
3092
 
3093
- #: inc/social_login.php:972
3094
  msgid "Cancel"
3095
  msgstr "取消"
3096
 
3097
- #: inc/social_login.php:1046
3098
  msgid "Email Verification"
3099
  msgstr "电子邮件验证"
3100
 
3101
- #: inc/social_login.php:1048
3102
  msgid ""
3103
  "Please click on the following link or paste it in browser to verify your "
3104
  "email"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
+ "POT-Creation-Date: 2021-04-06 12:19+0530\n"
5
+ "PO-Revision-Date: 2021-04-06 12:20+0530\n"
6
  "Last-Translator: Heateor <hello@heateor.com>\n"
7
  "Language-Team: 汤小贤 <calmsmile@aliyun.com>\n"
8
  "Language: zh_CN\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: super_socializer.php:1634
25
  msgid ""
26
  "cURL is not enabled at your website server. Please contact your website "
27
  "server administrator to enable it."
28
  msgstr "在您的网站服务器上未启用 curl。请与您的网站服务器管理员联系以启用它。"
29
 
30
+ #: super_socializer.php:1662
31
  #, php-format
32
  msgid ""
33
  "Enter exactly the following url in <strong>Website</strong> option in your "
36
  "在 twitter 应用中的 <strong> 网站 </strong> 选项中输入以下 url (请参阅步骤 3 "
37
  "%s)"
38
 
39
+ #: super_socializer.php:1665
40
  #, php-format
41
  msgid ""
42
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
45
  "在 twitter 应用中 <strong> 回调 url </strong> 选项中输入以下 url (请参阅步骤 "
46
  "3 %s)"
47
 
48
+ #: super_socializer.php:1668
49
  msgid ""
50
  "Make sure cURL is enabled at your website server. You may need to contact "
51
  "the server administrator of your website to verify this"
52
  msgstr ""
53
  "请确保在您的网站服务器上启用了cURL。对此,请您与您的网站的服务器管理员核实。"
54
 
55
+ #: super_socializer.php:1829
56
+ #, fuzzy
57
+ msgid "Search"
58
+ msgstr "搜索"
59
+
60
+ #: super_socializer.php:1851 helper.php:995
61
  msgid "Please verify your email address to login."
62
  msgstr "请验证您的电子邮件地址以便登录。"
63
 
64
+ #: super_socializer.php:1851
65
  msgid "Your email has been verified. Now you can login to your account"
66
  msgstr "您的电子邮件已验证。现在你可以登录到您的帐户"
67
 
68
+ #: super_socializer.php:1855
69
  msgid "Notification"
70
  msgstr "通知"
71
 
72
+ #: super_socializer.php:1873 admin/social_login.php:1443
73
  msgid "Email required"
74
  msgstr "邮件地址(比选)"
75
 
76
+ #: super_socializer.php:1876
77
  msgid "Please check your email inbox to complete the registration."
78
  msgstr "请检查您的电子邮件收件箱以完成注册。"
79
 
80
+ #: super_socializer.php:1945
81
  msgid "Leave a reply"
82
  msgstr "回复"
83
 
84
+ #: super_socializer.php:1961 inc/social_sharing.php:241
85
  msgid "Shares"
86
  msgstr "分享"
87
 
88
+ #: super_socializer.php:1961 inc/social_sharing.php:241
89
  msgid "Share"
90
  msgstr "分享"
91
 
92
+ #: super_socializer.php:1961
93
  msgid "Link copied."
94
  msgstr "链接已复制。"
95
 
96
+ #: super_socializer.php:2206
97
  msgid "Super Socializer - General Options"
98
  msgstr "Super Socializer-常规选项"
99
 
100
+ #: super_socializer.php:2206 admin/general_options.php:15
101
  #: admin/social_commenting.php:47
102
  msgid "General Options"
103
  msgstr "常规选项"
104
 
105
+ #: super_socializer.php:2274 helper.php:924
106
  msgid "Social Avatar"
107
  msgstr "社会化头像"
108
 
109
+ #: super_socializer.php:2277
110
  msgid "Small Avatar Url"
111
  msgstr "小头像 Url"
112
 
113
+ #: super_socializer.php:2281
114
  msgid "Large Avatar Url"
115
  msgstr "大头像 Url"
116
 
117
+ #: super_socializer.php:2285 helper.php:927
118
  msgid ""
119
  "Do not fetch and update social avatar from my profile, next time I Social "
120
  "Login"
121
  msgstr "不从我的个人资料里获取及更新社会化头像,下次社会化登录"
122
 
123
+ #: super_socializer.php:2289 helper.php:928
124
  msgid "Update social avatar, next time I Social Login"
125
  msgstr "更新社会化头像,下次社会化登录"
126
 
127
+ #: super_socializer.php:2366
128
  msgid "Login with your Social ID"
129
  msgstr "使用您的社交 ID登录"
130
 
131
+ #: super_socializer.php:2367
132
  msgid "Email you entered is already registered or invalid"
133
  msgstr "您输入的电子邮件已经注册或无效"
134
 
135
+ #: super_socializer.php:2374
136
  msgid "Please enter a valid email address. You might be required to verify it"
137
  msgstr "请输入一个有效的电子邮件地址。您可能需要验证它"
138
 
139
+ #: super_socializer.php:2378 super_socializer.php:3123
140
  msgid "Link your social account to login to your account at this website"
141
  msgstr "链接你的社会化媒体帐户登录您本站账号"
142
 
143
+ #: super_socializer.php:2633
144
  msgid "Thanks for installing Super Socializer plugin"
145
  msgstr ""
146
 
147
+ #: super_socializer.php:2635
148
  msgid "Configure the Plugin"
149
  msgstr ""
150
 
151
+ #: super_socializer.php:2646
152
  #, fuzzy
153
  msgid ""
154
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
155
  "current version of Super Socializer"
156
  msgstr "更新 \"facebook 评论审核\" 加载项与当前版本的Super Socialzer"
157
 
158
+ #: super_socializer.php:2655
159
  #, fuzzy
160
  msgid ""
161
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
163
  msgstr ""
164
  "更新 \"facebook 评论通知程序\" 加载项, 以与当前版本的超级社交提供兼容性"
165
 
166
+ #: super_socializer.php:2664
167
  #, fuzzy
168
  msgid ""
169
+ "Update \"Social Login Buttons\" add-on to version 1.2.7 or above for "
170
  "compatibility with current version of Super Socializer"
171
  msgstr "更新 \"社交登录按钮\" 加载项与当前版本的超级社交器兼容"
172
 
173
+ #: super_socializer.php:2673
174
  #, fuzzy
175
  msgid ""
176
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
179
  "更新 \"社交分享 mycred 集成\" 加载项, 以最大限度地与当前版本的超级社交提供兼"
180
  "容"
181
 
182
+ #: super_socializer.php:2682
183
  #, fuzzy
184
  msgid ""
185
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
187
  msgstr ""
188
  "更新 \"社交登录 mycred 集成\" 加载项, 以最大限度地兼容当前版本的超级社交"
189
 
190
+ #: super_socializer.php:2693
191
  #, php-format
192
  msgid ""
193
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
195
  "要继续使用 steam 登录, 请保存 steam api 密钥 < a href = \" %s\" >, 请点击此"
196
  "处 </a>"
197
 
198
+ #: super_socializer.php:2702
199
  #, php-format
200
  msgid ""
201
  "To continue using Instagram login create a new Instagram App as described <a "
203
  "Instagram App Secret <a href=\"%s\">here</a>"
204
  msgstr ""
205
 
206
+ #: super_socializer.php:2711 super_socializer.php:2720
207
  #, php-format
208
  msgid ""
209
  "To continue using bitly url shortener, login to your bit.ly account and "
212
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
213
  msgstr ""
214
 
215
+ #: super_socializer.php:2736
216
  #, php-format
217
  msgid ""
218
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
219
  msgstr "若要继续使用社交登录, 请在此处保存密钥 < ref = \" %s\" > </a>"
220
 
221
+ #: super_socializer.php:2760
222
  #, php-format
223
  msgid ""
224
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
229
  "facebook 登录正常工作。有关更多详细信息, 请在此处检查步骤 9 < ref = \" %s\" "
230
  "target = \"_ black\" > </a>"
231
 
232
+ #: super_socializer.php:2760 super_socializer.php:2785
233
+ #: super_socializer.php:2810 super_socializer.php:2835
234
+ #: super_socializer.php:2868 super_socializer.php:2896
235
+ #: super_socializer.php:2923
236
  msgid "Okay"
237
  msgstr "好的"
238
 
239
+ #: super_socializer.php:2785
240
  #, php-format
241
  msgid ""
242
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
247
  "关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black\" > </"
248
  "a>"
249
 
250
+ #: super_socializer.php:2810
251
  #, php-format
252
  msgid ""
253
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
258
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
259
  "black\" > </a>"
260
 
261
+ #: super_socializer.php:2835
262
  #, php-format
263
  msgid ""
264
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
269
  "常工作。有关更多详细信息, 请在此处检查步骤 11 < ref = \" %s\" target = \"_ "
270
  "black\" > </a>"
271
 
272
+ #: super_socializer.php:2846
273
  #, php-format
274
  msgid ""
275
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
276
  msgstr "保存您的网站 < reof = \" %s\" 的隐私政策页面的网址 </a>"
277
 
278
+ #: super_socializer.php:2868
279
  #, php-format
280
  msgid ""
281
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
285
  "这个插件是符合GDPR的。您需要更新网站有关此插件保存的个人数据的隐私政策。如 "
286
  "<a href=\"%s\" target=\"_blank\">这里</a>所述"
287
 
288
+ #: super_socializer.php:2896
289
  #, php-format
290
  msgid ""
291
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
294
  "your website %s with them. No need to copy-paste any code from their website."
295
  msgstr ""
296
 
297
+ #: super_socializer.php:2923
298
  #, php-format
299
  msgid ""
300
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
305
  "工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black"
306
  "\" > </a>"
307
 
308
+ #: super_socializer.php:2948
309
  #, fuzzy, php-format
310
  msgid ""
311
  "If you cannot get Linkedin login to work after updating the plugin, replace "
316
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
317
  "black\" > </a>"
318
 
319
+ #: super_socializer.php:2948 super_socializer.php:2975
320
  msgid "Dismiss"
321
  msgstr ""
322
 
323
+ #: super_socializer.php:2974
324
  #, php-format
325
  msgid ""
326
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
329
  "that, clear share counts cache from \"Miscellaneous\" section"
330
  msgstr ""
331
 
332
+ #: super_socializer.php:3199
333
  msgid ""
334
  "Your browser is blocking some features of this website. Please follow the "
335
  "instructions at {support_url} to unblock these."
341
  msgid "Settings saved"
342
  msgstr "设置已保存"
343
 
344
+ #: helper.php:194
345
  #, fuzzy
346
  msgid "Click to toggle help"
347
  msgstr "单击隐藏帮助"
348
 
349
+ #: helper.php:291
350
  msgid "Add-Ons"
351
  msgstr "加载项"
352
 
353
+ #: helper.php:292
354
  msgid "Support Documentation"
355
  msgstr "支持文档"
356
 
357
+ #: helper.php:293
358
  msgid "Settings"
359
  msgstr "设置"
360
 
361
+ #: helper.php:576
362
  msgid "Account linked successfully"
363
  msgstr "成功关联帐户"
364
 
365
+ #: helper.php:580
366
  msgid "Account already exists or linked"
367
  msgstr "帐户已经存在或被链接"
368
 
369
+ #: helper.php:616 helper.php:618
370
  #, fuzzy
371
  msgid "Login with"
372
  msgstr "登陸選項"
373
 
374
+ #: helper.php:653 helper.php:659
375
  msgid "Currently"
376
  msgstr "目前:"
377
 
378
+ #: helper.php:653 helper.php:659
379
  msgid "Connected with"
380
  msgstr "连接与"
381
 
382
+ #: helper.php:653 helper.php:659
383
  msgid "Remove"
384
  msgstr "删除"
385
 
386
+ #: helper.php:730
387
  msgid "Social Account Linking"
388
  msgstr "社交账户链接"
389
 
390
+ #: helper.php:780
391
  msgid "Disable Standard Social Sharing on this "
392
  msgstr "在此禁用社会化共享"
393
 
394
+ #: helper.php:785
395
  msgid "Disable Floating Social Sharing on this "
396
  msgstr "在此禁用社交共享的浮动效果"
397
 
398
+ #: helper.php:790
399
  msgid "Disable Standard like buttons on this "
400
  msgstr "在此禁用喜欢按钮"
401
 
402
+ #: helper.php:795
403
  msgid "Disable Floating like buttons on this "
404
  msgstr "在此禁用喜欢按钮的浮动效果"
405
 
406
+ #: helper.php:800
407
  msgid "Disable Social Commenting on this "
408
  msgstr "在此禁用社会化评论"
409
 
410
+ #: helper.php:809
411
  msgid "Standard Sharing Interface"
412
  msgstr "标准共享界面"
413
 
414
+ #: helper.php:815 helper.php:834
415
  msgid "Starting share count for "
416
  msgstr "开始共享计数"
417
 
418
+ #: helper.php:828
419
  msgid "Floating Sharing Interface"
420
  msgstr "浮动共享界面"
421
 
422
+ #: helper.php:931
423
  msgid "Small Avatar"
424
  msgstr "小头像"
425
 
426
+ #: helper.php:935
427
  msgid "Large Avatar"
428
  msgstr "大头像"
429
 
430
+ #: helper.php:939 admin/general_options.php:89 admin/social_sharing.php:1944
431
+ #: admin/social_commenting.php:400 admin/social_login.php:1933
432
  #: admin/like_buttons.php:780
433
  msgid "Save Changes"
434
  msgstr "保存更改"
435
 
436
+ #: helper.php:1032
437
  msgid "Click to delete social profile data"
438
  msgstr "点击删除社交个人资料数据"
439
 
440
+ #: helper.php:1061
441
  msgid "Deleting"
442
  msgstr "删除"
443
 
444
+ #: helper.php:1071
445
  msgid "Deleted"
446
  msgstr "已删除"
447
 
448
+ #: helper.php:1073
449
  msgid "Something bad happened"
450
  msgstr "发生了一些不好的事情"
451
 
452
  #: admin/general_options.php:7 admin/general_options.php:93
453
  #: admin/social_sharing.php:5 admin/social_sharing.php:1948
454
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
455
+ #: admin/social_login.php:5 admin/social_login.php:1937
456
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
457
  #, fuzzy, php-format
458
  msgid ""
499
  msgstr "您可以指定任何额外的 CSS 规则(无需 &lt;style&gt; tag)"
500
 
501
  #: admin/general_options.php:103 admin/social_sharing.php:1954
502
+ #: admin/social_commenting.php:410 admin/social_login.php:1943
503
  #: admin/like_buttons.php:790
504
  msgid "Instagram Shoutout"
505
  msgstr ""
506
 
507
  #: admin/general_options.php:105 admin/social_sharing.php:1956
508
+ #: admin/social_commenting.php:412 admin/social_login.php:1945
509
  #: admin/like_buttons.php:792
510
  #, fuzzy
511
  msgid ""
650
 
651
  #: admin/social_sharing.php:67 admin/social_sharing.php:1869
652
  #: admin/social_sharing.php:1871 admin/social_login.php:45
653
+ #: admin/social_login.php:1899 admin/like_buttons.php:50
654
  #: admin/like_buttons.php:751
655
  msgid "Shortcode & Widget"
656
  msgstr "简码&小工具"
661
 
662
  #: admin/social_sharing.php:69 admin/social_sharing.php:1902
663
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
664
+ #: admin/social_login.php:46 admin/social_login.php:1913
665
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
666
  msgid "FAQ"
667
  msgstr "常见问题解答"
887
  msgid "Url to share"
888
  msgstr "要分享的网址"
889
 
890
+ #: admin/social_sharing.php:725 admin/social_login.php:1184
891
+ #: admin/social_login.php:1560 admin/like_buttons.php:105 inc/widget.php:949
892
  msgid "Title"
893
  msgstr "标题"
894
 
970
  msgstr "放置"
971
 
972
  #: admin/social_sharing.php:957 admin/social_sharing.php:1383
973
+ #: admin/social_login.php:1501 admin/social_login.php:1530
974
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
975
  msgid "Homepage"
976
  msgstr "主页"
1216
  msgid "Required only to track Facebook share count"
1217
  msgstr ""
1218
 
1219
+ #: admin/social_sharing.php:1584 admin/social_login.php:222
1220
  msgid "Facebook App ID"
1221
  msgstr "Facebook 应用 ID"
1222
 
1229
  "需要Facebook社交登录。请按照在<a href=“%s” target=“_blank”>的链接 </a>得到"
1230
  "Facebook的应用程序ID"
1231
 
1232
+ #: admin/social_sharing.php:1601 admin/social_login.php:243
1233
  msgid "Facebook App Secret"
1234
  msgstr "FacebookAPP密码"
1235
 
1410
  "题的URL(Facebook分享无法正常工作)。 单击“获取新的Scrape信息”按钮。"
1411
 
1412
  #: admin/social_sharing.php:1904 admin/social_commenting.php:386
1413
+ #: admin/social_login.php:1915
1414
  msgid ""
1415
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1416
  "an online website for the plugin to function properly."
1470
  msgstr "如何恢复在将我的网站转移到SSL/https之后丢失的社交分享数?"
1471
 
1472
  #: admin/social_sharing.php:1919 admin/social_commenting.php:389
1473
+ #: admin/social_login.php:1922
1474
  msgid "Why is my browser blocking some features of the plugin?"
1475
  msgstr "为什么我的浏览器会阻止插件的某些功能?"
1476
 
1763
  msgid "Advanced Configuration"
1764
  msgstr "高级配置"
1765
 
1766
+ #: admin/social_login.php:41 admin/social_login.php:1699
1767
  msgid "GDPR"
1768
  msgstr "GDPR"
1769
 
1770
+ #: admin/social_login.php:43 admin/social_login.php:1850
1771
  msgid "XProfile Integration"
1772
  msgstr "xprofile 集成"
1773
 
1796
  "禁止通过社交登录注册消息的页面"
1797
 
1798
  #: admin/social_login.php:98
1799
+ #, fuzzy
1800
+ msgid "Disable Social Login for admin accounts"
1801
+ msgstr "社交登录选项"
1802
+
1803
+ #: admin/social_login.php:108
1804
+ #, fuzzy
1805
+ msgid ""
1806
+ "After enabling this option, administrator users will not be able to login "
1807
+ "through social login. Other users will be able to login via social login."
1808
+ msgstr ""
1809
+ "启用此选项之后,新用户不能够通过社交登录了。只有现有的用户将能够社交登录。"
1810
+
1811
+ #: admin/social_login.php:115
1812
  msgid "Select Social Networks"
1813
  msgstr "设置社交媒体链接"
1814
 
1815
+ #: admin/social_login.php:120
1816
  msgid "Facebook"
1817
  msgstr "Facebook"
1818
 
1819
+ #: admin/social_login.php:124
1820
  msgid "Twitter"
1821
  msgstr "Twitter"
1822
 
1823
+ #: admin/social_login.php:128
1824
  msgid "LinkedIn"
1825
  msgstr "LinkedIn"
1826
 
1827
+ #: admin/social_login.php:132
1828
  #, fuzzy
1829
  msgid "Google"
1830
  msgstr "Google+"
1831
 
1832
+ #: admin/social_login.php:136
1833
  msgid "Vkontakte"
1834
  msgstr "Vkontakte"
1835
 
1836
+ #: admin/social_login.php:140
1837
  msgid "Instagram"
1838
  msgstr "Instagram"
1839
 
1840
+ #: admin/social_login.php:144
1841
  msgid "Steam"
1842
  msgstr "Steam"
1843
 
1844
+ #: admin/social_login.php:148
1845
  msgid "Line"
1846
  msgstr ""
1847
 
1848
+ #: admin/social_login.php:152
1849
  msgid "Wordpress"
1850
  msgstr ""
1851
 
1852
+ #: admin/social_login.php:156
1853
  msgid "Windows Live"
1854
  msgstr ""
1855
 
1856
+ #: admin/social_login.php:160
1857
  msgid "Yahoo"
1858
  msgstr ""
1859
 
1860
+ #: admin/social_login.php:164
1861
+ msgid "Discord"
1862
+ msgstr ""
1863
+
1864
+ #: admin/social_login.php:168
1865
+ msgid "Amazon"
1866
+ msgstr ""
1867
+
1868
+ #: admin/social_login.php:172
1869
+ msgid "Stackoverflow"
1870
+ msgstr ""
1871
+
1872
+ #: admin/social_login.php:176
1873
  msgid "Spotify"
1874
  msgstr ""
1875
 
1876
+ #: admin/social_login.php:179
1877
  msgid "Dribbble"
1878
  msgstr ""
1879
 
1880
+ #: admin/social_login.php:183
1881
  msgid "Twitch"
1882
  msgstr "Twitch"
1883
 
1884
+ #: admin/social_login.php:187
1885
  #, fuzzy
1886
  msgid "Foursquare"
1887
  msgstr "Foursquare链接:"
1888
 
1889
+ #: admin/social_login.php:191
1890
  msgid "Dropbox"
1891
  msgstr ""
1892
 
1893
+ #: admin/social_login.php:195
1894
  msgid "Disqus"
1895
  msgstr ""
1896
 
1897
+ #: admin/social_login.php:199
1898
  msgid "Reddit"
1899
  msgstr ""
1900
 
1901
+ #: admin/social_login.php:203
1902
  #, fuzzy
1903
  msgid "Github"
1904
  msgstr "Github 链接:"
1905
 
1906
+ #: admin/social_login.php:207
1907
  msgid "Kakao"
1908
  msgstr ""
1909
 
1910
+ #: admin/social_login.php:215
1911
  msgid "Select Social ID provider to enable in Social Login"
1912
  msgstr "选择社会化ID提供商以启用社会化登录"
1913
 
1914
+ #: admin/social_login.php:232
1915
  #, php-format
1916
  msgid ""
1917
  "Required for Facebook Social Login to work. Please follow the documentation "
1920
  "需要Facebook社交登录。请按照在<a href=“%s” target=“_blank”>的链接 </a>得到"
1921
  "Facebook的应用程序ID"
1922
 
1923
+ #: admin/social_login.php:234 admin/social_login.php:255
1924
  #, fuzzy
1925
  msgid ""
1926
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1927
  msgstr "在提到的链接选项中粘贴以下url<strong>网站URL</strong>"
1928
 
1929
+ #: admin/social_login.php:253
1930
  #, php-format
1931
  msgid ""
1932
  "Required for Facebook Social Login to work. Please follow the documentation "
1935
  "facebook 社交登录工作所需。请按照文档在 < href = \" %s\" 目标 = \"_ black\" "
1936
  "> 此链接 </a>, 以获得 facebook 应用程序机密"
1937
 
1938
+ #: admin/social_login.php:264
1939
  msgid "Twitter API Key"
1940
  msgstr "Twitter API密钥"
1941
 
1942
+ #: admin/social_login.php:274
1943
  #, php-format
1944
  msgid ""
1945
  "Required for Twitter Social Login to work. Please follow the documentation "
1948
  "需要Twitter社交登录。请按照在<a href=“%s” target=“_blank”>的链接</a>得到"
1949
  "Twitter的API密钥"
1950
 
1951
+ #: admin/social_login.php:276 admin/social_login.php:301
1952
  #, fuzzy
1953
  msgid ""
1954
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1955
  msgstr "粘贴以下网址 <strong> 网站 </strong> 选项在提到的链接"
1956
 
1957
+ #: admin/social_login.php:280 admin/social_login.php:305
1958
+ #: admin/social_login.php:493 admin/social_login.php:513
1959
+ #: admin/social_login.php:848 admin/social_login.php:868
1960
+ #: admin/social_login.php:889 admin/social_login.php:909
1961
+ #: admin/social_login.php:1014 admin/social_login.php:1034
1962
+ #: admin/social_login.php:1099 admin/social_login.php:1119
1963
+ #: admin/social_login.php:1141 admin/social_login.php:1161
1964
  #, fuzzy
1965
  msgid ""
1966
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1967
  "link"
1968
  msgstr "粘贴以下网址 <strong> 回拨 url </strong> 选项在提到的链接"
1969
 
1970
+ #: admin/social_login.php:289
1971
  msgid "Twitter API Secret"
1972
  msgstr "Twitter API Secret"
1973
 
1974
+ #: admin/social_login.php:299
1975
  #, php-format
1976
  msgid ""
1977
  "Required for Twitter Social Login to work. Please follow the documentation "
1980
  "需要Twitter社交登录。请按照在<a href=“%s” target=“_blank”>的链接</a>得到"
1981
  "Twitter的API密钥"
1982
 
1983
+ #: admin/social_login.php:314
1984
  msgid "LinkedIn Client ID"
1985
  msgstr ""
1986
 
1987
+ #: admin/social_login.php:324
1988
  #, php-format
1989
  msgid ""
1990
  "Required for LinkedIn Social Login to work. Please follow the documentation "
1993
  "链接登录需要工作。请按照 < href = \" %s\" target = \"_ black\" > 此链接 </a> "
1994
  "的文档获取 linkedin 客户端 id"
1995
 
1996
+ #: admin/social_login.php:326 admin/social_login.php:347
1997
+ #: admin/social_login.php:533 admin/social_login.php:553
1998
  #, fuzzy
1999
  msgid ""
2000
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2001
  "the link"
2002
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2003
 
2004
+ #: admin/social_login.php:335
2005
  msgid "LinkedIn Client Secret"
2006
  msgstr ""
2007
 
2008
+ #: admin/social_login.php:345
2009
  #, php-format
2010
  msgid ""
2011
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2015
  "链接登录需要工作。请按照 \"href =\" %s \"target =\" _ black \"> 此链接中的文"
2016
  "档进行操作, 以获取 linkedin 客户端机密"
2017
 
2018
+ #: admin/social_login.php:356
2019
  msgid "Google Client ID"
2020
  msgstr ""
2021
 
2022
+ #: admin/social_login.php:366
2023
  #, fuzzy, php-format
2024
  msgid ""
2025
  "Required for Google Social Login to work. Please follow the documentation at "
2028
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2029
  "接</a>得到GOOGLEPLUS客户端ID"
2030
 
2031
+ #: admin/social_login.php:368 admin/social_login.php:389
2032
  #, fuzzy
2033
  msgid ""
2034
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2035
  "mentioned at the link"
2036
  msgstr "粘贴以下 url 在 <strong> 授权的 re正确性 uri </strong> 选项在上述链接"
2037
 
2038
+ #: admin/social_login.php:377
2039
  msgid "Google Client Secret"
2040
  msgstr ""
2041
 
2042
+ #: admin/social_login.php:387
2043
  #, fuzzy, php-format
2044
  msgid ""
2045
  "Required for Google Social Login to work. Please follow the documentation at "
2048
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2049
  "链接 </a> 获取 google plus 客户端机密"
2050
 
2051
+ #: admin/social_login.php:398
2052
  msgid "Vkontakte Application ID"
2053
  msgstr ""
2054
 
2055
+ #: admin/social_login.php:408 admin/social_login.php:429
2056
  #, php-format
2057
  msgid ""
2058
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2062
  "要求Vkontakte社会化登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</"
2063
  "a>得到的Vkontakte应用程序ID"
2064
 
2065
+ #: admin/social_login.php:410 admin/social_login.php:431
2066
  #, fuzzy
2067
  msgid ""
2068
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2069
  "link"
2070
  msgstr "在<strong>网站地址</strong>选项里(该选项在链接里提到)粘贴以下网址"
2071
 
2072
+ #: admin/social_login.php:419
2073
  msgid "Vkontakte Secure key"
2074
  msgstr ""
2075
 
2076
+ #: admin/social_login.php:440
2077
  #, fuzzy
2078
  msgid "Instagram App ID"
2079
  msgstr "Instagram"
2080
 
2081
+ #: admin/social_login.php:450
2082
  #, fuzzy, php-format
2083
  msgid ""
2084
  "Required for Instagram Social Login to work. Please follow the documentation "
2087
  "需要Instagram的社交登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</"
2088
  "a>得到的Instagram客户端ID"
2089
 
2090
+ #: admin/social_login.php:452 admin/social_login.php:473
2091
  #, fuzzy
2092
  msgid ""
2093
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2094
  "mentioned at the link"
2095
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2096
 
2097
+ #: admin/social_login.php:461
2098
  #, fuzzy
2099
  msgid "Instagram App Secret"
2100
  msgstr "Instagram"
2101
 
2102
+ #: admin/social_login.php:471
2103
  #, fuzzy, php-format
2104
  msgid ""
2105
  "Required for Instagram Social Login to work. Please follow the documentation "
2108
  "需要Instagram的社交登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</"
2109
  "a>得到的Instagram客户端ID"
2110
 
2111
+ #: admin/social_login.php:482
2112
  msgid "Line Channel ID"
2113
  msgstr ""
2114
 
2115
+ #: admin/social_login.php:491
2116
  #, fuzzy, php-format
2117
  msgid ""
2118
  "Required for Line Social Login to work. Please follow the documentation at "
2121
  "链接登录需要工作。请按照 < href = \" %s\" target = \"_ black\" > 此链接 </a> "
2122
  "的文档获取 linkedin 客户端 id"
2123
 
2124
+ #: admin/social_login.php:502
2125
  msgid "Line Channel Secret"
2126
  msgstr ""
2127
 
2128
+ #: admin/social_login.php:511
2129
  #, fuzzy, php-format
2130
  msgid ""
2131
  "Required for Line Social Login to work. Please follow the documentation at "
2134
  "链接登录需要工作。请按照 \"href =\" %s \"target =\" _ black \"> 此链接中的文"
2135
  "档进行操作, 以获取 linkedin 客户端机密"
2136
 
2137
+ #: admin/social_login.php:522
2138
  msgid "Wordpress Client ID"
2139
  msgstr ""
2140
 
2141
+ #: admin/social_login.php:531
2142
  #, fuzzy, php-format
2143
  msgid ""
2144
  "Required for Wordpress Social Login to work. Please follow the documentation "
2147
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2148
  "接</a>得到GOOGLEPLUS客户端ID"
2149
 
2150
+ #: admin/social_login.php:542
2151
  msgid "Wordpress Client Secret"
2152
  msgstr ""
2153
 
2154
+ #: admin/social_login.php:551
2155
  #, fuzzy, php-format
2156
  msgid ""
2157
  "Required for Wordpress Social Login to work. Please follow the documentation "
2161
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2162
  "链接 </a> 获取 google plus 客户端机密"
2163
 
2164
+ #: admin/social_login.php:562
2165
  msgid "Microsoft Client ID"
2166
  msgstr ""
2167
 
2168
+ #: admin/social_login.php:571
2169
  #, fuzzy, php-format
2170
  msgid ""
2171
  "Required for Live Social Login to work. Please follow the documentation at "
2174
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2175
  "接</a>得到GOOGLEPLUS客户端ID"
2176
 
2177
+ #: admin/social_login.php:573 admin/social_login.php:593
2178
+ #: admin/social_login.php:806 admin/social_login.php:826
2179
+ #: admin/social_login.php:971 admin/social_login.php:991
2180
  #, fuzzy
2181
  msgid ""
2182
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2183
  "the link"
2184
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2185
 
2186
+ #: admin/social_login.php:582
2187
  msgid "Microsoft Client Secret"
2188
  msgstr ""
2189
 
2190
+ #: admin/social_login.php:591
2191
  #, fuzzy, php-format
2192
  msgid ""
2193
  "Required for Live Social Login to work. Please follow the documentation at "
2197
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2198
  "链接 </a> 获取 google plus 客户端机密"
2199
 
2200
+ #: admin/social_login.php:601
2201
  msgid "Steam API Key"
2202
  msgstr ""
2203
 
2204
+ #: admin/social_login.php:610
2205
  #, php-format
2206
  msgid ""
2207
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2209
  msgstr ""
2210
  "蒸汽社交登录工作所需。获取 < href = \" %s\" 目标 = \"_ black\" > 此链接 </a>"
2211
 
2212
+ #: admin/social_login.php:611
2213
  msgid "Save following <strong>domain</strong> to get the key"
2214
  msgstr "保存以下 <strong> 域 </strong> 以获取密钥"
2215
 
2216
+ #: admin/social_login.php:620
2217
  msgid "Yahoo Client ID"
2218
  msgstr ""
2219
 
2220
+ #: admin/social_login.php:629
2221
  #, fuzzy, php-format
2222
  msgid ""
2223
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2226
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2227
  "接</a>得到GOOGLEPLUS客户端ID"
2228
 
2229
+ #: admin/social_login.php:631 admin/social_login.php:651
2230
  #, fuzzy
2231
  msgid ""
2232
+ "Paste following url in the <strong>Redirect URI(s)</strong> option mentioned "
2233
+ "at the link"
2234
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2235
 
2236
+ #: admin/social_login.php:640
2237
  msgid "Yahoo Client Secret"
2238
  msgstr ""
2239
 
2240
+ #: admin/social_login.php:649
2241
  #, fuzzy, php-format
2242
  msgid ""
2243
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2246
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2247
  "链接 </a> 获取 google plus 客户端机密"
2248
 
2249
+ #: admin/social_login.php:662
2250
+ #, fuzzy
2251
+ msgid "Discord Client ID"
2252
+ msgstr "Foursquare链接:"
2253
+
2254
+ #: admin/social_login.php:671
2255
+ #, fuzzy, php-format
2256
+ msgid ""
2257
+ "Required for Discord Social Login to work. Please follow the documentation "
2258
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client ID"
2259
+ msgstr ""
2260
+ "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2261
+ "接</a>得到GOOGLEPLUS客户端ID"
2262
+
2263
+ #: admin/social_login.php:673 admin/social_login.php:693
2264
+ #, fuzzy
2265
+ msgid ""
2266
+ "Paste following url in the <strong>Redirects</strong> option mentioned at "
2267
+ "the link"
2268
+ msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2269
+
2270
+ #: admin/social_login.php:682
2271
+ #, fuzzy
2272
+ msgid "Discord Client Secret"
2273
+ msgstr "Twitter API Secret"
2274
+
2275
+ #: admin/social_login.php:691
2276
+ #, fuzzy, php-format
2277
+ msgid ""
2278
+ "Required for Discord Social Login to work. Please follow the documentation "
2279
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client "
2280
+ "Secret key"
2281
+ msgstr ""
2282
+ "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2283
+ "链接 </a> 获取 google plus 客户端机密"
2284
+
2285
+ #: admin/social_login.php:704
2286
+ #, fuzzy
2287
+ msgid "Amazon Client ID"
2288
+ msgstr "Foursquare链接:"
2289
+
2290
+ #: admin/social_login.php:713
2291
+ #, fuzzy, php-format
2292
+ msgid ""
2293
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2294
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client ID"
2295
+ msgstr ""
2296
+ "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2297
+ "接</a>得到GOOGLEPLUS客户端ID"
2298
+
2299
+ #: admin/social_login.php:715 admin/social_login.php:735
2300
+ #, fuzzy
2301
+ msgid ""
2302
+ "Paste following url in the <strong>Allowed Return URLs</strong> option "
2303
+ "mentioned at the link"
2304
+ msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2305
+
2306
+ #: admin/social_login.php:724
2307
+ #, fuzzy
2308
+ msgid "Amazon Client Secret"
2309
+ msgstr "Twitter API Secret"
2310
+
2311
+ #: admin/social_login.php:733
2312
+ #, fuzzy, php-format
2313
+ msgid ""
2314
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2315
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client Secret "
2316
+ "key"
2317
+ msgstr ""
2318
+ "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2319
+ "链接 </a> 获取 google plus 客户端机密"
2320
+
2321
+ #: admin/social_login.php:746
2322
+ msgid "Stackoverflow Client ID"
2323
+ msgstr ""
2324
+
2325
+ #: admin/social_login.php:755
2326
+ #, fuzzy, php-format
2327
+ msgid ""
2328
+ "Required for Stackoverflow Social Login to work. Please follow the "
2329
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2330
+ "Stackoverflow Client ID"
2331
+ msgstr ""
2332
+ "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2333
+ "接</a>得到GOOGLEPLUS客户端ID"
2334
+
2335
+ #: admin/social_login.php:761
2336
+ #, fuzzy
2337
+ msgid "Stackoverflow Client Secret"
2338
+ msgstr "Twitter API Secret"
2339
+
2340
+ #: admin/social_login.php:770
2341
+ #, fuzzy, php-format
2342
+ msgid ""
2343
+ "Required for Stackoverflow Social Login to work. Please follow the "
2344
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2345
+ "Stackoverflow Client Secret key"
2346
+ msgstr ""
2347
+ "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2348
+ "链接 </a> 获取 google plus 客户端机密"
2349
+
2350
+ #: admin/social_login.php:776
2351
+ msgid "Stackoverflow Key"
2352
+ msgstr ""
2353
+
2354
+ #: admin/social_login.php:786
2355
+ #, fuzzy, php-format
2356
+ msgid ""
2357
+ "Required for Stackoverflow Social Login to work. Please follow the "
2358
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2359
+ "Stackoverflow Key"
2360
+ msgstr ""
2361
+ "需要Twitter社交登录。请按照在<a href=“%s” target=“_blank”>的链接</a>得到"
2362
+ "Twitter的API密钥"
2363
+
2364
+ #: admin/social_login.php:795
2365
  msgid "Spotify Client ID"
2366
  msgstr ""
2367
 
2368
+ #: admin/social_login.php:804
2369
  #, fuzzy, php-format
2370
  msgid ""
2371
  "Required for Spotify Social Login to work. Please follow the documentation "
2374
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2375
  "接</a>得到GOOGLEPLUS客户端ID"
2376
 
2377
+ #: admin/social_login.php:815
2378
  msgid "Spotify Client Secret"
2379
  msgstr ""
2380
 
2381
+ #: admin/social_login.php:824
2382
  #, fuzzy, php-format
2383
  msgid ""
2384
  "Required for Spotify Social Login to work. Please follow the documentation "
2388
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2389
  "链接 </a> 获取 google plus 客户端机密"
2390
 
2391
+ #: admin/social_login.php:837
2392
  msgid "Dribbble Client ID"
2393
  msgstr ""
2394
 
2395
+ #: admin/social_login.php:846
2396
  #, fuzzy, php-format
2397
  msgid ""
2398
  "Required for Dribbble Social Login to work. Please follow the documentation "
2401
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2402
  "接</a>得到GOOGLEPLUS客户端ID"
2403
 
2404
+ #: admin/social_login.php:857
2405
  msgid "Dribbble Client Secret"
2406
  msgstr ""
2407
 
2408
+ #: admin/social_login.php:866
2409
  #, fuzzy, php-format
2410
  msgid ""
2411
  "Required for Dribbble Social Login to work. Please follow the documentation "
2415
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2416
  "链接 </a> 获取 google plus 客户端机密"
2417
 
2418
+ #: admin/social_login.php:878
2419
  msgid "Twitch Client ID"
2420
  msgstr ""
2421
 
2422
+ #: admin/social_login.php:887
2423
  #, fuzzy, php-format
2424
  msgid ""
2425
  "Required for Twitch Social Login to work. Please follow the documentation at "
2428
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2429
  "接</a>得到GOOGLEPLUS客户端ID"
2430
 
2431
+ #: admin/social_login.php:898
2432
  #, fuzzy
2433
  msgid "Twitch Client Secret"
2434
  msgstr "Twitter API Secret"
2435
 
2436
+ #: admin/social_login.php:907
2437
  #, fuzzy, php-format
2438
  msgid ""
2439
  "Required for Twitch Social Login to work. Please follow the documentation at "
2442
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2443
  "链接 </a> 获取 google plus 客户端机密"
2444
 
2445
+ #: admin/social_login.php:920
2446
  #, fuzzy
2447
  msgid "Foursquare Client ID"
2448
  msgstr "Foursquare链接:"
2449
 
2450
+ #: admin/social_login.php:929
2451
  #, fuzzy, php-format
2452
  msgid ""
2453
  "Required for Foursquare Social Login to work. Please follow the "
2457
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2458
  "接</a>得到GOOGLEPLUS客户端ID"
2459
 
2460
+ #: admin/social_login.php:931 admin/social_login.php:951
2461
  #, fuzzy
2462
  msgid ""
2463
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
2464
  "link"
2465
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2466
 
2467
+ #: admin/social_login.php:940
2468
  #, fuzzy
2469
  msgid "Foursquare Client Secret"
2470
  msgstr "Twitter API Secret"
2471
 
2472
+ #: admin/social_login.php:949
2473
  #, fuzzy, php-format
2474
  msgid ""
2475
  "Required for Foursquare Social Login to work. Please follow the "
2479
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2480
  "链接 </a> 获取 google plus 客户端机密"
2481
 
2482
+ #: admin/social_login.php:960
2483
  msgid "Dropbox App Key"
2484
  msgstr ""
2485
 
2486
+ #: admin/social_login.php:969
2487
  #, fuzzy, php-format
2488
  msgid ""
2489
  "Required for Dropbox Social Login to work. Please follow the documentation "
2492
  "facebook 社交登录工作所需。请按照文档在 < href = \" %s\" 目标 = \"_ black\" "
2493
  "> 此链接 </a>, 以获得 facebook 应用程序机密"
2494
 
2495
+ #: admin/social_login.php:980
2496
  #, fuzzy
2497
  msgid "Dropbox App Secret"
2498
  msgstr "FacebookAPP密码"
2499
 
2500
+ #: admin/social_login.php:989
2501
  #, fuzzy, php-format
2502
  msgid ""
2503
  "Required for Dropbox Social Login to work. Please follow the documentation "
2506
  "facebook 社交登录工作所需。请按照文档在 < href = \" %s\" 目标 = \"_ black\" "
2507
  "> 此链接 </a>, 以获得 facebook 应用程序机密"
2508
 
2509
+ #: admin/social_login.php:1003
2510
  msgid "Disqus Public Key"
2511
  msgstr ""
2512
 
2513
+ #: admin/social_login.php:1012
2514
  #, fuzzy, php-format
2515
  msgid ""
2516
  "Required for Disqus Social Login to work. Please follow the documentation at "
2519
  "需要Xing社会化登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</a>得到"
2520
  "消费者邢重点"
2521
 
2522
+ #: admin/social_login.php:1023
2523
  #, fuzzy
2524
  msgid "Disqus Secret Key"
2525
  msgstr "Disqus 短名称"
2526
 
2527
+ #: admin/social_login.php:1032
2528
  #, fuzzy, php-format
2529
  msgid ""
2530
  "Required for Disqus Social Login to work. Please follow the documentation at "
2533
  "需要Xing社会化登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</a>得到"
2534
  "消费者邢重点"
2535
 
2536
+ #: admin/social_login.php:1045
2537
  msgid "Reddit Client ID"
2538
  msgstr ""
2539
 
2540
+ #: admin/social_login.php:1054
2541
  #, fuzzy, php-format
2542
  msgid ""
2543
  "Required for Reddit Social Login to work. Please follow the documentation at "
2546
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2547
  "接</a>得到GOOGLEPLUS客户端ID"
2548
 
2549
+ #: admin/social_login.php:1056 admin/social_login.php:1076
2550
  #, fuzzy
2551
  msgid ""
2552
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
2553
  "link"
2554
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2555
 
2556
+ #: admin/social_login.php:1065
2557
  #, fuzzy
2558
  msgid "Reddit Client Secret"
2559
  msgstr "Twitter API Secret"
2560
 
2561
+ #: admin/social_login.php:1074
2562
  #, fuzzy, php-format
2563
  msgid ""
2564
  "Required for Reddit Social Login to work. Please follow the documentation at "
2567
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2568
  "链接 </a> 获取 google plus 客户端机密"
2569
 
2570
+ #: admin/social_login.php:1088
2571
  msgid "Github Client ID"
2572
  msgstr ""
2573
 
2574
+ #: admin/social_login.php:1097
2575
  #, fuzzy, php-format
2576
  msgid ""
2577
  "Required for Github Social Login to work. Please follow the documentation at "
2580
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2581
  "接</a>得到GOOGLEPLUS客户端ID"
2582
 
2583
+ #: admin/social_login.php:1108
2584
  msgid "Github Client Secret"
2585
  msgstr ""
2586
 
2587
+ #: admin/social_login.php:1117
2588
  #, fuzzy, php-format
2589
  msgid ""
2590
  "Required for Github Social Login to work. Please follow the documentation at "
2593
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2594
  "链接 </a> 获取 google plus 客户端机密"
2595
 
2596
+ #: admin/social_login.php:1130
2597
  msgid "Kakao Client ID"
2598
  msgstr ""
2599
 
2600
+ #: admin/social_login.php:1139
2601
  #, fuzzy, php-format
2602
  msgid ""
2603
  "Required for Kakao Social Login to work. Please follow the documentation at "
2606
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2607
  "接</a>得到GOOGLEPLUS客户端ID"
2608
 
2609
+ #: admin/social_login.php:1150
2610
  msgid "Kakao Client Secret"
2611
  msgstr ""
2612
 
2613
+ #: admin/social_login.php:1159
2614
  #, fuzzy, php-format
2615
  msgid ""
2616
  "Required for Kakao Social Login to work. Please follow the documentation at "
2619
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2620
  "链接 </a> 获取 google plus 客户端机密"
2621
 
2622
+ #: admin/social_login.php:1179
2623
  #, fuzzy
2624
  msgid "Social Login Options"
2625
  msgstr "社交登录选项"
2626
 
2627
+ #: admin/social_login.php:1194
2628
  msgid "Text to display above the Social Login interface"
2629
  msgstr "文本显示社交登录界面的上方"
2630
 
2631
+ #: admin/social_login.php:1202
2632
  msgid "Trigger social login in the same browser tab"
2633
  msgstr ""
2634
 
2635
+ #: admin/social_login.php:1212
2636
  msgid "Trigger social login in the same browser tab instead of a popup window"
2637
  msgstr ""
2638
 
2639
+ #: admin/social_login.php:1219
2640
  #, fuzzy
2641
  msgid "Center align icons"
2642
  msgstr "重新排列图标"
2643
 
2644
+ #: admin/social_login.php:1229
2645
  #, fuzzy
2646
  msgid "Center align social login icons"
2647
  msgstr "社交登录选项"
2648
 
2649
+ #: admin/social_login.php:1236
2650
  msgid "Enable at login page"
2651
  msgstr "在登录页面启用"
2652
 
2653
+ #: admin/social_login.php:1246
2654
  msgid ""
2655
  "Social Login interface will get enabled at the login page of your website"
2656
  msgstr "社交登录界面会在你的网站的登录页面启用"
2657
 
2658
+ #: admin/social_login.php:1253
2659
  msgid "Enable at register page"
2660
  msgstr "在注册页面启用"
2661
 
2662
+ #: admin/social_login.php:1263
2663
  msgid ""
2664
  "Social Login interface will get enabled at the registration page of your "
2665
  "website"
2666
  msgstr "社交登录界面会在你的网站的注册页面启用"
2667
 
2668
+ #: admin/social_login.php:1270
2669
  msgid "Enable at comment form"
2670
  msgstr "在评论表单启用"
2671
 
2672
+ #: admin/social_login.php:1280
2673
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2674
  msgstr "社交登录界面会在您的WordPress评论的表单启用"
2675
 
2676
+ #: admin/social_login.php:1294
2677
  msgid "Enable before WooCommerce Customer Login Form"
2678
  msgstr "WooCommerce客户登录表单前启用"
2679
 
2680
+ #: admin/social_login.php:1304
2681
  msgid ""
2682
  "Social Login Interface will get enabled before the customer login form at "
2683
  "WooCommerce My Account page"
2684
  msgstr "社交登录界面将在WooCommerce我的帐户页面客户登录表单之前启用"
2685
 
2686
+ #: admin/social_login.php:1311
2687
  #, fuzzy
2688
  msgid "Enable at WooCommerce Customer Login Form"
2689
  msgstr "在WooCommerce客户登录表单后启用"
2690
 
2691
+ #: admin/social_login.php:1321
2692
  #, fuzzy
2693
  msgid ""
2694
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2695
  "My Account page"
2696
  msgstr "社交登录界面将在WooCommerce我的帐户页面客户登录表单后启用"
2697
 
2698
+ #: admin/social_login.php:1328
2699
  #, fuzzy
2700
  msgid "Enable at WooCommerce Customer Register Form"
2701
  msgstr "在WooCommerce客户登录表单后启用"
2702
 
2703
+ #: admin/social_login.php:1338
2704
  #, fuzzy
2705
  msgid ""
2706
  "Integrate Social Login Interface with the customer register form at "
2707
  "WooCommerce My Account page"
2708
  msgstr "社交登录界面将在WooCommerce我的帐户页面客户登录表单后启用"
2709
 
2710
+ #: admin/social_login.php:1345
2711
  msgid "Enable at WooCommerce checkout page"
2712
  msgstr "在WooCommerce “结算”页面启用"
2713
 
2714
+ #: admin/social_login.php:1355
2715
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2716
  msgstr "社交登录界面将在WooCommerce结帐页面启用"
2717
 
2718
+ #: admin/social_login.php:1365
2719
  msgid "Auto-approve comments made by Social Login users"
2720
  msgstr "自动批准社交登录用户评论"
2721
 
2722
+ #: admin/social_login.php:1375
2723
  msgid ""
2724
  "If this option is enabled, and WordPress comment is made by Social Login "
2725
  "user, comment will get approved immediately without keeping in moderation."
2727
  "如果启用该选项,已经WordPress评论由社交登录用户发出,评论将会在不需要批准的情"
2728
  "况下立即批准。"
2729
 
2730
+ #: admin/social_login.php:1376
2731
  msgid "Note: This is not related to Facebook comments"
2732
  msgstr "注:这Facebook的评论无关"
2733
 
2734
+ #: admin/social_login.php:1385
2735
  msgid "Enable social avatar"
2736
  msgstr "启用社交头像"
2737
 
2738
+ #: admin/social_login.php:1395
2739
  msgid ""
2740
  "Social profile pictures of the logged in user will be displayed as profile "
2741
  "avatar"
2742
  msgstr "登录用户的社交资料图片将显示为个人头像"
2743
 
2744
+ #: admin/social_login.php:1404
2745
  msgid "Avatar quality"
2746
  msgstr "头像质量"
2747
 
2748
+ #: admin/social_login.php:1407
2749
  msgid "Average"
2750
  msgstr "一般"
2751
 
2752
+ #: admin/social_login.php:1408
2753
  msgid "Best"
2754
  msgstr "最好"
2755
 
2756
+ #: admin/social_login.php:1415
2757
  msgid "Choose avatar quality"
2758
  msgstr "选择头像质量"
2759
 
2760
+ #: admin/social_login.php:1423
2761
  msgid ""
2762
  "Show option for users to update social avatar at BuddyPress profile page"
2763
  msgstr "在BuddyPress的个人资料页面显示更新显示社会化头像选项"
2764
 
2765
+ #: admin/social_login.php:1433
2766
  msgid ""
2767
  "If enabled, users would be able to update their social avatar from \"Profile "
2768
  "photo\" section in BuddyPress profile at front-end"
2770
  "如果启用,用户将能够在前端从BuddyPress的个人档案“个人资料照片”部分更新社会化"
2771
  "头像"
2772
 
2773
+ #: admin/social_login.php:1453
2774
  msgid ""
2775
  "If enabled and Social ID provider does not provide user's email address on "
2776
  "login, user will be asked to provide his/her email address. Otherwise, a "
2779
  "如果启用,当登录时如果社会化ID提供商不提供或支持用户的电子邮件地址,用户将被"
2780
  "要求提供他/她的电子邮件地址。否则,将产生一个虚拟的电子邮件"
2781
 
2782
+ #: admin/social_login.php:1461
2783
  msgid "Send post-registration email to user to set account password"
2784
  msgstr "向用户发送注册后电子邮件以设置帐户密码"
2785
 
2786
+ #: admin/social_login.php:1471
2787
  msgid ""
2788
  "If enabled, an email will be sent to user after registration through Social "
2789
  "Login, regarding his/her login credentials (username-password to be able to "
2792
  "如果启用,通过社会化注册登录后,将给用户发送一封email; 包括他/她的登录凭据"
2793
  "(用户名,密码,能够通过传统的登录表单登录)"
2794
 
2795
+ #: admin/social_login.php:1478
2796
  msgid "Send new user registration notification email to admin"
2797
  msgstr "向管理员发送新的用户注册通知电子邮件"
2798
 
2799
+ #: admin/social_login.php:1488
2800
  msgid ""
2801
  "If enabled, an email will be sent to admin after new user registers through "
2802
  "Social Login, notifying admin about the new user registration"
2804
  "如果启用, 将在新用户通过社交登录注册后向管理员发送一封电子邮件, 通知管理员有"
2805
  "关新用户注册的信息"
2806
 
2807
+ #: admin/social_login.php:1495
2808
  msgid "Login redirection"
2809
  msgstr "登录重定向"
2810
 
2811
+ #: admin/social_login.php:1499
2812
  msgid "Same page where user logged in"
2813
  msgstr "用户登录同样的页面"
2814
 
2815
+ #: admin/social_login.php:1503 admin/social_login.php:1532
2816
  msgid "Account dashboard"
2817
  msgstr "帐户信息中心"
2818
 
2819
+ #: admin/social_login.php:1506 admin/social_login.php:1535
2820
  msgid "BuddyPress profile page"
2821
  msgstr "BuddyPress 档案"
2822
 
2823
+ #: admin/social_login.php:1509 admin/social_login.php:1538
2824
  msgid "Custom Url"
2825
  msgstr "自定义 URL"
2826
 
2827
+ #: admin/social_login.php:1517
2828
  msgid "User will be redirected to the selected page after Social Login"
2829
  msgstr "用户社交登录后会被重定向到选择的页面"
2830
 
2831
+ #: admin/social_login.php:1524
2832
  msgid "Registration redirection"
2833
  msgstr "注册重定向"
2834
 
2835
+ #: admin/social_login.php:1528
2836
  msgid "Same page from where user registered"
2837
  msgstr "用户注册同样的页面"
2838
 
2839
+ #: admin/social_login.php:1546
2840
  msgid ""
2841
  "User will be redirected to the selected page after registration (first "
2842
  "Social Login) through Social Login"
2843
  msgstr ""
2844
  "注册之后,通过社会化登录(第一个社交化登录)后,用户将被重定向到所选择的页面"
2845
 
2846
+ #: admin/social_login.php:1555
2847
  msgid "Social Account Linking Options"
2848
  msgstr "社交帐户链接选项"
2849
 
2850
+ #: admin/social_login.php:1570
2851
  msgid "Text to display above the Social Account Linking interface"
2852
  msgstr "要显示在社交帐户链接界面上方的文本"
2853
 
2854
+ #: admin/social_login.php:1577
2855
  msgid ""
2856
  "Link social account to already existing account, if email address matches"
2857
  msgstr "如果电子邮件地址匹配, 请将社交帐户链接到已存在的帐户"
2858
 
2859
+ #: admin/social_login.php:1587
2860
  msgid ""
2861
  "If email address of the user's Social Account matches with an already "
2862
  "existing account at your website, that social account will be linked to "
2866
  "如果用户的社交帐户的电子邮件地址与您网站上已存在的帐户匹配, 则该社交帐户将链"
2867
  "接到现有帐户。用户将能够管理这从社交帐户链接界面在他们的个人资料页面。"
2868
 
2869
+ #: admin/social_login.php:1595
2870
  msgid "Enable social account linking at BuddyPress profile page"
2871
  msgstr "在BuddyPress的个人资料页面启用社交帐户链接"
2872
 
2873
+ #: admin/social_login.php:1605
2874
  msgid ""
2875
  "Enable this option to show social account linking interface at BuddyPress "
2876
  "profile page"
2877
  msgstr "启用该选项,以在BuddyPress的个人资料页显示社交帐户连结界面"
2878
 
2879
+ #: admin/social_login.php:1616
2880
  msgid "Email popup options"
2881
  msgstr "电子邮件弹出选项"
2882
 
2883
+ #: admin/social_login.php:1621
2884
  msgid "Text on 'Email required' popup"
2885
  msgstr "在“电子邮件必填”弹出口显示的文本"
2886
 
2887
+ #: admin/social_login.php:1631
2888
  msgid ""
2889
  "This text will be displayed on email required popup. Leave empty if not "
2890
  "required."
2891
  msgstr "在电子邮件必填弹出口将显示的文本。如果不需要请留空。"
2892
 
2893
+ #: admin/social_login.php:1639
2894
  msgid "Error message for 'Email required' popup"
2895
  msgstr "“电子邮件必填”弹出口的错误信息"
2896
 
2897
+ #: admin/social_login.php:1649
2898
  msgid ""
2899
  "This message will be displayed to user if it provides invalid or already "
2900
  "registered email"
2901
  msgstr "如果无效及已经注册的email地址,这个信息将显示给用户"
2902
 
2903
+ #: admin/social_login.php:1657
2904
  msgid "Email popup height"
2905
  msgstr "电子邮件弹出口高度"
2906
 
2907
+ #: admin/social_login.php:1667
2908
  msgid ""
2909
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2910
  "can increase the height of popup by specifying in this option. Leave empty "
2913
  "如果在“电子邮件必填”弹出窗口中看到垂直滚动条,你可以通过这个选项指定加大弹出"
2914
  "的高度。留空为默认。"
2915
 
2916
+ #: admin/social_login.php:1674
2917
  msgid "Enable email verification"
2918
  msgstr "启用电子邮件验证"
2919
 
2920
+ #: admin/social_login.php:1684
2921
  msgid ""
2922
  "If enabled, email provided by the user will be verified by sending a "
2923
  "confirmation link to that email. User would not be able to login without "
2926
  "如果启用,将向用户的email地址发送一个确认链接进行验证。不验证,用户将无法登"
2927
  "录。"
2928
 
2929
+ #: admin/social_login.php:1704
2930
  msgid "Enable GDPR opt-in"
2931
  msgstr ""
2932
 
2933
+ #: admin/social_login.php:1714
2934
  msgid ""
2935
  "Enable it to show GDPR opt-in for social login and social account linking"
2936
  msgstr "使其能够显示 gdpr 选择加入的社交登录和社交帐户链接"
2937
 
2938
+ #: admin/social_login.php:1722
2939
  msgid "Placement of GDPR opt-in"
2940
  msgstr ""
2941
 
2942
+ #: admin/social_login.php:1726
2943
  #, fuzzy
2944
  msgid "Above Social Login icons"
2945
  msgstr "社交登录选项"
2946
 
2947
+ #: admin/social_login.php:1728
2948
  #, fuzzy
2949
  msgid "Below Social Login icons"
2950
  msgstr "社交登录选项"
2951
 
2952
+ #: admin/social_login.php:1734
2953
  #, fuzzy
2954
  msgid "Placement of GDPR opt-in above or below the social login icons"
2955
  msgstr "在社交登录图标上方显示的选择加入的文本"
2956
 
2957
+ #: admin/social_login.php:1741
2958
  msgid "Opt-in text"
2959
  msgstr ""
2960
 
2961
+ #: admin/social_login.php:1751
2962
  msgid "Text for the GDPR opt-in"
2963
  msgstr ""
2964
 
2965
+ #: admin/social_login.php:1758
2966
  #, fuzzy
2967
  msgid "Text to link to Terms-Conditions page"
2968
  msgstr "要链接到隐私政策页面的文本"
2969
 
2970
+ #: admin/social_login.php:1768
2971
  #, fuzzy
2972
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2973
  msgstr "要链接到隐私策略页的选入文本中的单词"
2974
 
2975
+ #: admin/social_login.php:1775
2976
  msgid "Terms-Conditions Url"
2977
  msgstr ""
2978
 
2979
+ #: admin/social_login.php:1785
2980
  #, fuzzy
2981
  msgid "Url of the terms-conditions page of your website"
2982
  msgstr "您网站的主页的 Url"
2983
 
2984
+ #: admin/social_login.php:1792
2985
  msgid "Text to link to Privacy Policy page"
2986
  msgstr "要链接到隐私政策页面的文本"
2987
 
2988
+ #: admin/social_login.php:1802
2989
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2990
  msgstr "要链接到隐私策略页的选入文本中的单词"
2991
 
2992
+ #: admin/social_login.php:1809
2993
  msgid "Privacy Policy Url"
2994
  msgstr "隐私政策网址"
2995
 
2996
+ #: admin/social_login.php:1819
2997
  msgid "Url of the privacy policy page of your website"
2998
  msgstr "您网站的隐私政策页面的网址"
2999
 
3000
+ #: admin/social_login.php:1870 inc/widget.php:260 inc/widget.php:438
3001
  #: inc/widget.php:602 inc/widget.php:750
3002
  msgid "Select"
3003
  msgstr "选择"
3004
 
3005
+ #: admin/social_login.php:1901
3006
  msgid "Social Login Shortcode & Widget"
3007
  msgstr ""
3008
 
3009
+ #: admin/social_login.php:1902
3010
  msgid "Social Linking Shortcode"
3011
  msgstr "社交链接简码"
3012
 
3013
+ #: admin/social_login.php:1917
3014
  msgid "Why is social login not working?"
3015
  msgstr "为什么社交登录不起作用?"
3016
 
3017
+ #: admin/social_login.php:1918
3018
  msgid ""
3019
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
3020
  "belong to the same app"
3021
  msgstr ""
3022
 
3023
+ #: admin/social_login.php:1920
3024
  msgid "Social Login not working with Varnish enabled"
3025
  msgstr ""
3026
 
3027
+ #: admin/social_login.php:1921
3028
  msgid ""
3029
  "Why the user is not appearing logged in even after Social Login until the "
3030
  "webpage is refreshed manually?"
3215
  msgid "Archives"
3216
  msgstr "档案"
3217
 
3218
+ #: inc/social_sharing.php:225
3219
+ msgid "More"
3220
+ msgstr ""
3221
+
3222
  #: inc/social_sharing.php:942 inc/social_sharing.php:1180
3223
  msgid "Invalid request"
3224
  msgstr "无效请求。"
3227
  msgid "Providers not selected"
3228
  msgstr "未选定的供应商"
3229
 
3230
+ #: inc/social_sharing_networks.php:57
3231
+ msgid "Copy Link"
3232
+ msgstr ""
3233
+
3234
+ #: inc/social_login.php:1030
3235
  msgid "Email"
3236
  msgstr "邮箱"
3237
 
3238
+ #: inc/social_login.php:1031
3239
  msgid "Confirm email"
3240
  msgstr "确认邮箱"
3241
 
3242
+ #: inc/social_login.php:1033
3243
  msgid "Save"
3244
  msgstr "保存"
3245
 
3246
+ #: inc/social_login.php:1034
3247
  msgid "Cancel"
3248
  msgstr "取消"
3249
 
3250
+ #: inc/social_login.php:1108
3251
  msgid "Email Verification"
3252
  msgstr "电子邮件验证"
3253
 
3254
+ #: inc/social_login.php:1110
3255
  msgid ""
3256
  "Please click on the following link or paste it in browser to verify your "
3257
  "email"
languages/super-socializer.pot 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-01-27 15:38+0530\n"
6
- "PO-Revision-Date: 2021-01-27 15:38+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -15,160 +15,164 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../super_socializer.php:1570
19
  msgid ""
20
  "cURL is not enabled at your website server. Please contact your website "
21
  "server administrator to enable it."
22
  msgstr ""
23
 
24
- #: ../super_socializer.php:1598
25
  #, php-format
26
  msgid ""
27
  "Enter exactly the following url in <strong>Website</strong> option in your "
28
  "Twitter app (see step 3 %s)"
29
  msgstr ""
30
 
31
- #: ../super_socializer.php:1601
32
  #, php-format
33
  msgid ""
34
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
35
  "your Twitter app (see step 3 %s)"
36
  msgstr ""
37
 
38
- #: ../super_socializer.php:1604
39
  msgid ""
40
  "Make sure cURL is enabled at your website server. You may need to contact "
41
  "the server administrator of your website to verify this"
42
  msgstr ""
43
 
44
- #: ../super_socializer.php:1786 ../helper.php:986
 
 
 
 
45
  msgid "Please verify your email address to login."
46
  msgstr ""
47
 
48
- #: ../super_socializer.php:1786
49
  msgid "Your email has been verified. Now you can login to your account"
50
  msgstr ""
51
 
52
- #: ../super_socializer.php:1790
53
  msgid "Notification"
54
  msgstr ""
55
 
56
- #: ../super_socializer.php:1808 ../admin/social_login.php:1280
57
  msgid "Email required"
58
  msgstr ""
59
 
60
- #: ../super_socializer.php:1811
61
  msgid "Please check your email inbox to complete the registration."
62
  msgstr ""
63
 
64
- #: ../super_socializer.php:1880
65
  msgid "Leave a reply"
66
  msgstr ""
67
 
68
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
69
  msgid "Shares"
70
  msgstr ""
71
 
72
- #: ../super_socializer.php:1896 ../inc/social_sharing.php:241
73
  msgid "Share"
74
  msgstr ""
75
 
76
- #: ../super_socializer.php:1896
77
  msgid "Link copied."
78
  msgstr ""
79
 
80
- #: ../super_socializer.php:2141
81
  msgid "Super Socializer - General Options"
82
  msgstr ""
83
 
84
- #: ../super_socializer.php:2141 ../admin/general_options.php:15
85
  #: ../admin/social_commenting.php:47
86
  msgid "General Options"
87
  msgstr ""
88
 
89
- #: ../super_socializer.php:2209 ../helper.php:915
90
  msgid "Social Avatar"
91
  msgstr ""
92
 
93
- #: ../super_socializer.php:2212
94
  msgid "Small Avatar Url"
95
  msgstr ""
96
 
97
- #: ../super_socializer.php:2216
98
  msgid "Large Avatar Url"
99
  msgstr ""
100
 
101
- #: ../super_socializer.php:2220 ../helper.php:918
102
  msgid ""
103
  "Do not fetch and update social avatar from my profile, next time I Social "
104
  "Login"
105
  msgstr ""
106
 
107
- #: ../super_socializer.php:2224 ../helper.php:919
108
  msgid "Update social avatar, next time I Social Login"
109
  msgstr ""
110
 
111
- #: ../super_socializer.php:2301
112
  msgid "Login with your Social ID"
113
  msgstr ""
114
 
115
- #: ../super_socializer.php:2302
116
  msgid "Email you entered is already registered or invalid"
117
  msgstr ""
118
 
119
- #: ../super_socializer.php:2309
120
  msgid "Please enter a valid email address. You might be required to verify it"
121
  msgstr ""
122
 
123
- #: ../super_socializer.php:2313 ../super_socializer.php:3039
124
  msgid "Link your social account to login to your account at this website"
125
  msgstr ""
126
 
127
- #: ../super_socializer.php:2561
128
  msgid "Thanks for installing Super Socializer plugin"
129
  msgstr ""
130
 
131
- #: ../super_socializer.php:2563
132
  msgid "Configure the Plugin"
133
  msgstr ""
134
 
135
- #: ../super_socializer.php:2574
136
  msgid ""
137
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
138
  "current version of Super Socializer"
139
  msgstr ""
140
 
141
- #: ../super_socializer.php:2583
142
  msgid ""
143
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
144
  "version of Super Socializer"
145
  msgstr ""
146
 
147
- #: ../super_socializer.php:2592
148
  msgid ""
149
- "Update \"Social Login Buttons\" add-on to version 1.2.6 or above for "
150
  "compatibility with current version of Super Socializer"
151
  msgstr ""
152
 
153
- #: ../super_socializer.php:2601
154
  msgid ""
155
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
156
  "with current version of Super Socializer"
157
  msgstr ""
158
 
159
- #: ../super_socializer.php:2610
160
  msgid ""
161
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
162
  "with current version of Super Socializer"
163
  msgstr ""
164
 
165
- #: ../super_socializer.php:2621
166
  #, php-format
167
  msgid ""
168
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
169
  msgstr ""
170
 
171
- #: ../super_socializer.php:2630
172
  #, php-format
173
  msgid ""
174
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -176,7 +180,7 @@ msgid ""
176
  "Instagram App Secret <a href=\"%s\">here</a>"
177
  msgstr ""
178
 
179
- #: ../super_socializer.php:2639 ../super_socializer.php:2648
180
  #, php-format
181
  msgid ""
182
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -185,13 +189,13 @@ msgid ""
185
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
186
  msgstr ""
187
 
188
- #: ../super_socializer.php:2664
189
  #, php-format
190
  msgid ""
191
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
192
  msgstr ""
193
 
194
- #: ../super_socializer.php:2688
195
  #, php-format
196
  msgid ""
197
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -199,14 +203,14 @@ msgid ""
199
  "target=\"_blank\">here</a>"
200
  msgstr ""
201
 
202
- #: ../super_socializer.php:2688 ../super_socializer.php:2713
203
- #: ../super_socializer.php:2738 ../super_socializer.php:2763
204
- #: ../super_socializer.php:2796 ../super_socializer.php:2824
205
- #: ../super_socializer.php:2851
206
  msgid "Okay"
207
  msgstr ""
208
 
209
- #: ../super_socializer.php:2713
210
  #, php-format
211
  msgid ""
212
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -214,7 +218,7 @@ msgid ""
214
  "\">here</a>"
215
  msgstr ""
216
 
217
- #: ../super_socializer.php:2738
218
  #, php-format
219
  msgid ""
220
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -222,7 +226,7 @@ msgid ""
222
  "target=\"_blank\">here</a>"
223
  msgstr ""
224
 
225
- #: ../super_socializer.php:2763
226
  #, php-format
227
  msgid ""
228
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -230,13 +234,13 @@ msgid ""
230
  "target=\"_blank\">here</a>"
231
  msgstr ""
232
 
233
- #: ../super_socializer.php:2774
234
  #, php-format
235
  msgid ""
236
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
237
  msgstr ""
238
 
239
- #: ../super_socializer.php:2796
240
  #, php-format
241
  msgid ""
242
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -244,7 +248,7 @@ msgid ""
244
  "\"%s\" target=\"_blank\">here</a>"
245
  msgstr ""
246
 
247
- #: ../super_socializer.php:2824
248
  #, php-format
249
  msgid ""
250
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -253,7 +257,7 @@ msgid ""
253
  "your website %s with them. No need to copy-paste any code from their website."
254
  msgstr ""
255
 
256
- #: ../super_socializer.php:2851
257
  #, php-format
258
  msgid ""
259
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -261,7 +265,7 @@ msgid ""
261
  "\"%s\" target=\"_blank\">here</a>"
262
  msgstr ""
263
 
264
- #: ../super_socializer.php:2876
265
  #, php-format
266
  msgid ""
267
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -269,11 +273,11 @@ msgid ""
269
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
270
  msgstr ""
271
 
272
- #: ../super_socializer.php:2876 ../super_socializer.php:2903
273
  msgid "Dismiss"
274
  msgstr ""
275
 
276
- #: ../super_socializer.php:2902
277
  #, php-format
278
  msgid ""
279
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -282,7 +286,7 @@ msgid ""
282
  "that, clear share counts cache from \"Miscellaneous\" section"
283
  msgstr ""
284
 
285
- #: ../super_socializer.php:3115
286
  msgid ""
287
  "Your browser is blocking some features of this website. Please follow the "
288
  "instructions at {support_url} to unblock these."
@@ -292,116 +296,116 @@ msgstr ""
292
  msgid "Settings saved"
293
  msgstr ""
294
 
295
- #: ../helper.php:185
296
  msgid "Click to toggle help"
297
  msgstr ""
298
 
299
- #: ../helper.php:282
300
  msgid "Add-Ons"
301
  msgstr ""
302
 
303
- #: ../helper.php:283
304
  msgid "Support Documentation"
305
  msgstr ""
306
 
307
- #: ../helper.php:284
308
  msgid "Settings"
309
  msgstr ""
310
 
311
- #: ../helper.php:567
312
  msgid "Account linked successfully"
313
  msgstr ""
314
 
315
- #: ../helper.php:571
316
  msgid "Account already exists or linked"
317
  msgstr ""
318
 
319
- #: ../helper.php:607 ../helper.php:609
320
  msgid "Login with"
321
  msgstr ""
322
 
323
- #: ../helper.php:644 ../helper.php:650
324
  msgid "Currently"
325
  msgstr ""
326
 
327
- #: ../helper.php:644 ../helper.php:650
328
  msgid "Connected with"
329
  msgstr ""
330
 
331
- #: ../helper.php:644 ../helper.php:650
332
  msgid "Remove"
333
  msgstr ""
334
 
335
- #: ../helper.php:721
336
  msgid "Social Account Linking"
337
  msgstr ""
338
 
339
- #: ../helper.php:771
340
  msgid "Disable Standard Social Sharing on this "
341
  msgstr ""
342
 
343
- #: ../helper.php:776
344
  msgid "Disable Floating Social Sharing on this "
345
  msgstr ""
346
 
347
- #: ../helper.php:781
348
  msgid "Disable Standard like buttons on this "
349
  msgstr ""
350
 
351
- #: ../helper.php:786
352
  msgid "Disable Floating like buttons on this "
353
  msgstr ""
354
 
355
- #: ../helper.php:791
356
  msgid "Disable Social Commenting on this "
357
  msgstr ""
358
 
359
- #: ../helper.php:800
360
  msgid "Standard Sharing Interface"
361
  msgstr ""
362
 
363
- #: ../helper.php:806 ../helper.php:825
364
  msgid "Starting share count for "
365
  msgstr ""
366
 
367
- #: ../helper.php:819
368
  msgid "Floating Sharing Interface"
369
  msgstr ""
370
 
371
- #: ../helper.php:922
372
  msgid "Small Avatar"
373
  msgstr ""
374
 
375
- #: ../helper.php:926
376
  msgid "Large Avatar"
377
  msgstr ""
378
 
379
- #: ../helper.php:930 ../admin/general_options.php:89
380
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
381
- #: ../admin/social_login.php:1770 ../admin/like_buttons.php:780
382
  msgid "Save Changes"
383
  msgstr ""
384
 
385
- #: ../helper.php:1023
386
  msgid "Click to delete social profile data"
387
  msgstr ""
388
 
389
- #: ../helper.php:1052
390
  msgid "Deleting"
391
  msgstr ""
392
 
393
- #: ../helper.php:1062
394
  msgid "Deleted"
395
  msgstr ""
396
 
397
- #: ../helper.php:1064
398
  msgid "Something bad happened"
399
  msgstr ""
400
 
401
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
402
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
403
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
404
- #: ../admin/social_login.php:5 ../admin/social_login.php:1774
405
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
406
  #, php-format
407
  msgid ""
@@ -447,13 +451,13 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
447
  msgstr ""
448
 
449
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
450
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1780
451
  #: ../admin/like_buttons.php:790
452
  msgid "Instagram Shoutout"
453
  msgstr ""
454
 
455
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
456
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1782
457
  #: ../admin/like_buttons.php:792
458
  msgid ""
459
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -589,7 +593,7 @@ msgstr ""
589
 
590
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
591
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
592
- #: ../admin/social_login.php:1736 ../admin/like_buttons.php:50
593
  #: ../admin/like_buttons.php:751
594
  msgid "Shortcode & Widget"
595
  msgstr ""
@@ -600,7 +604,7 @@ msgstr ""
600
 
601
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
602
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
603
- #: ../admin/social_login.php:46 ../admin/social_login.php:1750
604
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
605
  msgid "FAQ"
606
  msgstr ""
@@ -820,8 +824,8 @@ msgstr ""
820
  msgid "Url to share"
821
  msgstr ""
822
 
823
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:1021
824
- #: ../admin/social_login.php:1397 ../admin/like_buttons.php:105
825
  #: ../inc/widget.php:949
826
  msgid "Title"
827
  msgstr ""
@@ -904,7 +908,7 @@ msgid "Placement"
904
  msgstr ""
905
 
906
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
907
- #: ../admin/social_login.php:1338 ../admin/social_login.php:1367
908
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
909
  msgid "Homepage"
910
  msgstr ""
@@ -1140,7 +1144,7 @@ msgstr ""
1140
  msgid "Required only to track Facebook share count"
1141
  msgstr ""
1142
 
1143
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:193
1144
  msgid "Facebook App ID"
1145
  msgstr ""
1146
 
@@ -1151,7 +1155,7 @@ msgid ""
1151
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1152
  msgstr ""
1153
 
1154
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:214
1155
  msgid "Facebook App Secret"
1156
  msgstr ""
1157
 
@@ -1319,7 +1323,7 @@ msgid ""
1319
  msgstr ""
1320
 
1321
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1322
- #: ../admin/social_login.php:1752
1323
  msgid ""
1324
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1325
  "an online website for the plugin to function properly."
@@ -1373,7 +1377,7 @@ msgid ""
1373
  msgstr ""
1374
 
1375
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1376
- #: ../admin/social_login.php:1759
1377
  msgid "Why is my browser blocking some features of the plugin?"
1378
  msgstr ""
1379
 
@@ -1656,11 +1660,11 @@ msgstr ""
1656
  msgid "Advanced Configuration"
1657
  msgstr ""
1658
 
1659
- #: ../admin/social_login.php:41 ../admin/social_login.php:1536
1660
  msgid "GDPR"
1661
  msgstr ""
1662
 
1663
- #: ../admin/social_login.php:43 ../admin/social_login.php:1687
1664
  msgid "XProfile Integration"
1665
  msgstr ""
1666
 
@@ -1686,174 +1690,196 @@ msgid ""
1686
  msgstr ""
1687
 
1688
  #: ../admin/social_login.php:98
 
 
 
 
 
 
 
 
 
 
1689
  msgid "Select Social Networks"
1690
  msgstr ""
1691
 
1692
- #: ../admin/social_login.php:103
1693
  msgid "Facebook"
1694
  msgstr ""
1695
 
1696
- #: ../admin/social_login.php:107
1697
  msgid "Twitter"
1698
  msgstr ""
1699
 
1700
- #: ../admin/social_login.php:111
1701
  msgid "LinkedIn"
1702
  msgstr ""
1703
 
1704
- #: ../admin/social_login.php:115
1705
  msgid "Google"
1706
  msgstr ""
1707
 
1708
- #: ../admin/social_login.php:119
1709
  msgid "Vkontakte"
1710
  msgstr ""
1711
 
1712
- #: ../admin/social_login.php:123
1713
  msgid "Instagram"
1714
  msgstr ""
1715
 
1716
- #: ../admin/social_login.php:127
1717
  msgid "Steam"
1718
  msgstr ""
1719
 
1720
- #: ../admin/social_login.php:131
1721
  msgid "Line"
1722
  msgstr ""
1723
 
1724
- #: ../admin/social_login.php:135
1725
  msgid "Wordpress"
1726
  msgstr ""
1727
 
1728
- #: ../admin/social_login.php:139
1729
  msgid "Windows Live"
1730
  msgstr ""
1731
 
1732
- #: ../admin/social_login.php:143
1733
  msgid "Yahoo"
1734
  msgstr ""
1735
 
1736
- #: ../admin/social_login.php:147
 
 
 
 
 
 
 
 
 
 
 
 
1737
  msgid "Spotify"
1738
  msgstr ""
1739
 
1740
- #: ../admin/social_login.php:150
1741
  msgid "Dribbble"
1742
  msgstr ""
1743
 
1744
- #: ../admin/social_login.php:154
1745
  msgid "Twitch"
1746
  msgstr ""
1747
 
1748
- #: ../admin/social_login.php:158
1749
  msgid "Foursquare"
1750
  msgstr ""
1751
 
1752
- #: ../admin/social_login.php:162
1753
  msgid "Dropbox"
1754
  msgstr ""
1755
 
1756
- #: ../admin/social_login.php:166
1757
  msgid "Disqus"
1758
  msgstr ""
1759
 
1760
- #: ../admin/social_login.php:170
1761
  msgid "Reddit"
1762
  msgstr ""
1763
 
1764
- #: ../admin/social_login.php:174
1765
  msgid "Github"
1766
  msgstr ""
1767
 
1768
- #: ../admin/social_login.php:178
1769
  msgid "Kakao"
1770
  msgstr ""
1771
 
1772
- #: ../admin/social_login.php:186
1773
  msgid "Select Social ID provider to enable in Social Login"
1774
  msgstr ""
1775
 
1776
- #: ../admin/social_login.php:203
1777
  #, php-format
1778
  msgid ""
1779
  "Required for Facebook Social Login to work. Please follow the documentation "
1780
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1781
  msgstr ""
1782
 
1783
- #: ../admin/social_login.php:205 ../admin/social_login.php:226
1784
  msgid ""
1785
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1786
  msgstr ""
1787
 
1788
- #: ../admin/social_login.php:224
1789
  #, php-format
1790
  msgid ""
1791
  "Required for Facebook Social Login to work. Please follow the documentation "
1792
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
1793
  msgstr ""
1794
 
1795
- #: ../admin/social_login.php:235
1796
  msgid "Twitter API Key"
1797
  msgstr ""
1798
 
1799
- #: ../admin/social_login.php:245
1800
  #, php-format
1801
  msgid ""
1802
  "Required for Twitter Social Login to work. Please follow the documentation "
1803
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Key"
1804
  msgstr ""
1805
 
1806
- #: ../admin/social_login.php:247 ../admin/social_login.php:272
1807
  msgid ""
1808
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1809
  msgstr ""
1810
 
1811
- #: ../admin/social_login.php:251 ../admin/social_login.php:276
1812
- #: ../admin/social_login.php:464 ../admin/social_login.php:484
1813
- #: ../admin/social_login.php:685 ../admin/social_login.php:705
1814
- #: ../admin/social_login.php:726 ../admin/social_login.php:746
1815
- #: ../admin/social_login.php:851 ../admin/social_login.php:871
1816
- #: ../admin/social_login.php:936 ../admin/social_login.php:956
1817
- #: ../admin/social_login.php:978 ../admin/social_login.php:998
1818
  msgid ""
1819
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1820
  "link"
1821
  msgstr ""
1822
 
1823
- #: ../admin/social_login.php:260
1824
  msgid "Twitter API Secret"
1825
  msgstr ""
1826
 
1827
- #: ../admin/social_login.php:270
1828
  #, php-format
1829
  msgid ""
1830
  "Required for Twitter Social Login to work. Please follow the documentation "
1831
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Secret"
1832
  msgstr ""
1833
 
1834
- #: ../admin/social_login.php:285
1835
  msgid "LinkedIn Client ID"
1836
  msgstr ""
1837
 
1838
- #: ../admin/social_login.php:295
1839
  #, php-format
1840
  msgid ""
1841
  "Required for LinkedIn Social Login to work. Please follow the documentation "
1842
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get LinkedIn Client ID"
1843
  msgstr ""
1844
 
1845
- #: ../admin/social_login.php:297 ../admin/social_login.php:318
1846
- #: ../admin/social_login.php:504 ../admin/social_login.php:524
1847
  msgid ""
1848
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
1849
  "the link"
1850
  msgstr ""
1851
 
1852
- #: ../admin/social_login.php:306
1853
  msgid "LinkedIn Client Secret"
1854
  msgstr ""
1855
 
1856
- #: ../admin/social_login.php:316
1857
  #, php-format
1858
  msgid ""
1859
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -1861,39 +1887,39 @@ msgid ""
1861
  "Secret"
1862
  msgstr ""
1863
 
1864
- #: ../admin/social_login.php:327
1865
  msgid "Google Client ID"
1866
  msgstr ""
1867
 
1868
- #: ../admin/social_login.php:337
1869
  #, php-format
1870
  msgid ""
1871
  "Required for Google Social Login to work. Please follow the documentation at "
1872
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Google Client ID"
1873
  msgstr ""
1874
 
1875
- #: ../admin/social_login.php:339 ../admin/social_login.php:360
1876
  msgid ""
1877
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
1878
  "mentioned at the link"
1879
  msgstr ""
1880
 
1881
- #: ../admin/social_login.php:348
1882
  msgid "Google Client Secret"
1883
  msgstr ""
1884
 
1885
- #: ../admin/social_login.php:358
1886
  #, php-format
1887
  msgid ""
1888
  "Required for Google Social Login to work. Please follow the documentation at "
1889
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Google Client Secret"
1890
  msgstr ""
1891
 
1892
- #: ../admin/social_login.php:369
1893
  msgid "Vkontakte Application ID"
1894
  msgstr ""
1895
 
1896
- #: ../admin/social_login.php:379 ../admin/social_login.php:400
1897
  #, php-format
1898
  msgid ""
1899
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -1901,82 +1927,82 @@ msgid ""
1901
  "Application ID"
1902
  msgstr ""
1903
 
1904
- #: ../admin/social_login.php:381 ../admin/social_login.php:402
1905
  msgid ""
1906
  "Paste following url in <strong>Site address</strong> option mentioned at the "
1907
  "link"
1908
  msgstr ""
1909
 
1910
- #: ../admin/social_login.php:390
1911
  msgid "Vkontakte Secure key"
1912
  msgstr ""
1913
 
1914
- #: ../admin/social_login.php:411
1915
  msgid "Instagram App ID"
1916
  msgstr ""
1917
 
1918
- #: ../admin/social_login.php:421
1919
  #, php-format
1920
  msgid ""
1921
  "Required for Instagram Social Login to work. Please follow the documentation "
1922
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Instagram App ID"
1923
  msgstr ""
1924
 
1925
- #: ../admin/social_login.php:423 ../admin/social_login.php:444
1926
  msgid ""
1927
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
1928
  "mentioned at the link"
1929
  msgstr ""
1930
 
1931
- #: ../admin/social_login.php:432
1932
  msgid "Instagram App Secret"
1933
  msgstr ""
1934
 
1935
- #: ../admin/social_login.php:442
1936
  #, php-format
1937
  msgid ""
1938
  "Required for Instagram Social Login to work. Please follow the documentation "
1939
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Instagram App Secret"
1940
  msgstr ""
1941
 
1942
- #: ../admin/social_login.php:453
1943
  msgid "Line Channel ID"
1944
  msgstr ""
1945
 
1946
- #: ../admin/social_login.php:462
1947
  #, php-format
1948
  msgid ""
1949
  "Required for Line Social Login to work. Please follow the documentation at "
1950
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Line Channel ID"
1951
  msgstr ""
1952
 
1953
- #: ../admin/social_login.php:473
1954
  msgid "Line Channel Secret"
1955
  msgstr ""
1956
 
1957
- #: ../admin/social_login.php:482
1958
  #, php-format
1959
  msgid ""
1960
  "Required for Line Social Login to work. Please follow the documentation at "
1961
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Line Channel Secret"
1962
  msgstr ""
1963
 
1964
- #: ../admin/social_login.php:493
1965
  msgid "Wordpress Client ID"
1966
  msgstr ""
1967
 
1968
- #: ../admin/social_login.php:502
1969
  #, php-format
1970
  msgid ""
1971
  "Required for Wordpress Social Login to work. Please follow the documentation "
1972
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client ID"
1973
  msgstr ""
1974
 
1975
- #: ../admin/social_login.php:513
1976
  msgid "Wordpress Client Secret"
1977
  msgstr ""
1978
 
1979
- #: ../admin/social_login.php:522
1980
  #, php-format
1981
  msgid ""
1982
  "Required for Wordpress Social Login to work. Please follow the documentation "
@@ -1984,30 +2010,30 @@ msgid ""
1984
  "Secret"
1985
  msgstr ""
1986
 
1987
- #: ../admin/social_login.php:533
1988
  msgid "Microsoft Client ID"
1989
  msgstr ""
1990
 
1991
- #: ../admin/social_login.php:542
1992
  #, php-format
1993
  msgid ""
1994
  "Required for Live Social Login to work. Please follow the documentation at "
1995
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Microsoft Client ID"
1996
  msgstr ""
1997
 
1998
- #: ../admin/social_login.php:544 ../admin/social_login.php:564
1999
- #: ../admin/social_login.php:643 ../admin/social_login.php:663
2000
- #: ../admin/social_login.php:808 ../admin/social_login.php:828
2001
  msgid ""
2002
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2003
  "the link"
2004
  msgstr ""
2005
 
2006
- #: ../admin/social_login.php:553
2007
  msgid "Microsoft Client Secret"
2008
  msgstr ""
2009
 
2010
- #: ../admin/social_login.php:562
2011
  #, php-format
2012
  msgid ""
2013
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2015,65 +2041,159 @@ msgid ""
2015
  "Secret key"
2016
  msgstr ""
2017
 
2018
- #: ../admin/social_login.php:572
2019
  msgid "Steam API Key"
2020
  msgstr ""
2021
 
2022
- #: ../admin/social_login.php:581
2023
  #, php-format
2024
  msgid ""
2025
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2026
  "\"_blank\">this link</a>"
2027
  msgstr ""
2028
 
2029
- #: ../admin/social_login.php:582
2030
  msgid "Save following <strong>domain</strong> to get the key"
2031
  msgstr ""
2032
 
2033
- #: ../admin/social_login.php:591
2034
  msgid "Yahoo Client ID"
2035
  msgstr ""
2036
 
2037
- #: ../admin/social_login.php:600
2038
  #, php-format
2039
  msgid ""
2040
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2041
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client ID"
2042
  msgstr ""
2043
 
2044
- #: ../admin/social_login.php:602 ../admin/social_login.php:622
2045
  msgid ""
2046
- "Paste following url in <strong>Redirect URI(s)</strong> option mentioned at "
2047
- "the link"
2048
  msgstr ""
2049
 
2050
- #: ../admin/social_login.php:611
2051
  msgid "Yahoo Client Secret"
2052
  msgstr ""
2053
 
2054
- #: ../admin/social_login.php:620
2055
  #, php-format
2056
  msgid ""
2057
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2058
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client Secret key"
2059
  msgstr ""
2060
 
2061
- #: ../admin/social_login.php:632
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2062
  msgid "Spotify Client ID"
2063
  msgstr ""
2064
 
2065
- #: ../admin/social_login.php:641
2066
  #, php-format
2067
  msgid ""
2068
  "Required for Spotify Social Login to work. Please follow the documentation "
2069
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Spotify Client ID"
2070
  msgstr ""
2071
 
2072
- #: ../admin/social_login.php:652
2073
  msgid "Spotify Client Secret"
2074
  msgstr ""
2075
 
2076
- #: ../admin/social_login.php:661
2077
  #, php-format
2078
  msgid ""
2079
  "Required for Spotify Social Login to work. Please follow the documentation "
@@ -2081,22 +2201,22 @@ msgid ""
2081
  "Secret"
2082
  msgstr ""
2083
 
2084
- #: ../admin/social_login.php:674
2085
  msgid "Dribbble Client ID"
2086
  msgstr ""
2087
 
2088
- #: ../admin/social_login.php:683
2089
  #, php-format
2090
  msgid ""
2091
  "Required for Dribbble Social Login to work. Please follow the documentation "
2092
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Dribbble Client ID"
2093
  msgstr ""
2094
 
2095
- #: ../admin/social_login.php:694
2096
  msgid "Dribbble Client Secret"
2097
  msgstr ""
2098
 
2099
- #: ../admin/social_login.php:703
2100
  #, php-format
2101
  msgid ""
2102
  "Required for Dribbble Social Login to work. Please follow the documentation "
@@ -2104,33 +2224,33 @@ msgid ""
2104
  "Secret"
2105
  msgstr ""
2106
 
2107
- #: ../admin/social_login.php:715
2108
  msgid "Twitch Client ID"
2109
  msgstr ""
2110
 
2111
- #: ../admin/social_login.php:724
2112
  #, php-format
2113
  msgid ""
2114
  "Required for Twitch Social Login to work. Please follow the documentation at "
2115
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Twitch Client ID"
2116
  msgstr ""
2117
 
2118
- #: ../admin/social_login.php:735
2119
  msgid "Twitch Client Secret"
2120
  msgstr ""
2121
 
2122
- #: ../admin/social_login.php:744
2123
  #, php-format
2124
  msgid ""
2125
  "Required for Twitch Social Login to work. Please follow the documentation at "
2126
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Twitch Client Secret"
2127
  msgstr ""
2128
 
2129
- #: ../admin/social_login.php:757
2130
  msgid "Foursquare Client ID"
2131
  msgstr ""
2132
 
2133
- #: ../admin/social_login.php:766
2134
  #, php-format
2135
  msgid ""
2136
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2138,17 +2258,17 @@ msgid ""
2138
  "Foursquare Client ID"
2139
  msgstr ""
2140
 
2141
- #: ../admin/social_login.php:768 ../admin/social_login.php:788
2142
  msgid ""
2143
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
2144
  "link"
2145
  msgstr ""
2146
 
2147
- #: ../admin/social_login.php:777
2148
  msgid "Foursquare Client Secret"
2149
  msgstr ""
2150
 
2151
- #: ../admin/social_login.php:786
2152
  #, php-format
2153
  msgid ""
2154
  "Required for Foursquare Social Login to work. Please follow the "
@@ -2156,342 +2276,342 @@ msgid ""
2156
  "Foursquare Client Secret"
2157
  msgstr ""
2158
 
2159
- #: ../admin/social_login.php:797
2160
  msgid "Dropbox App Key"
2161
  msgstr ""
2162
 
2163
- #: ../admin/social_login.php:806
2164
  #, php-format
2165
  msgid ""
2166
  "Required for Dropbox Social Login to work. Please follow the documentation "
2167
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Dropbox App Key"
2168
  msgstr ""
2169
 
2170
- #: ../admin/social_login.php:817
2171
  msgid "Dropbox App Secret"
2172
  msgstr ""
2173
 
2174
- #: ../admin/social_login.php:826
2175
  #, php-format
2176
  msgid ""
2177
  "Required for Dropbox Social Login to work. Please follow the documentation "
2178
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Dropbox App Secret"
2179
  msgstr ""
2180
 
2181
- #: ../admin/social_login.php:840
2182
  msgid "Disqus Public Key"
2183
  msgstr ""
2184
 
2185
- #: ../admin/social_login.php:849
2186
  #, php-format
2187
  msgid ""
2188
  "Required for Disqus Social Login to work. Please follow the documentation at "
2189
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Disqus Public Key"
2190
  msgstr ""
2191
 
2192
- #: ../admin/social_login.php:860
2193
  msgid "Disqus Secret Key"
2194
  msgstr ""
2195
 
2196
- #: ../admin/social_login.php:869
2197
  #, php-format
2198
  msgid ""
2199
  "Required for Disqus Social Login to work. Please follow the documentation at "
2200
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Disqus Secret Key"
2201
  msgstr ""
2202
 
2203
- #: ../admin/social_login.php:882
2204
  msgid "Reddit Client ID"
2205
  msgstr ""
2206
 
2207
- #: ../admin/social_login.php:891
2208
  #, php-format
2209
  msgid ""
2210
  "Required for Reddit Social Login to work. Please follow the documentation at "
2211
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Reddit Client ID"
2212
  msgstr ""
2213
 
2214
- #: ../admin/social_login.php:893 ../admin/social_login.php:913
2215
  msgid ""
2216
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
2217
  "link"
2218
  msgstr ""
2219
 
2220
- #: ../admin/social_login.php:902
2221
  msgid "Reddit Client Secret"
2222
  msgstr ""
2223
 
2224
- #: ../admin/social_login.php:911
2225
  #, php-format
2226
  msgid ""
2227
  "Required for Reddit Social Login to work. Please follow the documentation at "
2228
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Reddit Client Secret"
2229
  msgstr ""
2230
 
2231
- #: ../admin/social_login.php:925
2232
  msgid "Github Client ID"
2233
  msgstr ""
2234
 
2235
- #: ../admin/social_login.php:934
2236
  #, php-format
2237
  msgid ""
2238
  "Required for Github Social Login to work. Please follow the documentation at "
2239
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Github Client ID"
2240
  msgstr ""
2241
 
2242
- #: ../admin/social_login.php:945
2243
  msgid "Github Client Secret"
2244
  msgstr ""
2245
 
2246
- #: ../admin/social_login.php:954
2247
  #, php-format
2248
  msgid ""
2249
  "Required for Github Social Login to work. Please follow the documentation at "
2250
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Github Client Secret"
2251
  msgstr ""
2252
 
2253
- #: ../admin/social_login.php:967
2254
  msgid "Kakao Client ID"
2255
  msgstr ""
2256
 
2257
- #: ../admin/social_login.php:976
2258
  #, php-format
2259
  msgid ""
2260
  "Required for Kakao Social Login to work. Please follow the documentation at "
2261
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Kakao Client ID"
2262
  msgstr ""
2263
 
2264
- #: ../admin/social_login.php:987
2265
  msgid "Kakao Client Secret"
2266
  msgstr ""
2267
 
2268
- #: ../admin/social_login.php:996
2269
  #, php-format
2270
  msgid ""
2271
  "Required for Kakao Social Login to work. Please follow the documentation at "
2272
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Kakao Client Secret"
2273
  msgstr ""
2274
 
2275
- #: ../admin/social_login.php:1016
2276
  msgid "Social Login Options"
2277
  msgstr ""
2278
 
2279
- #: ../admin/social_login.php:1031
2280
  msgid "Text to display above the Social Login interface"
2281
  msgstr ""
2282
 
2283
- #: ../admin/social_login.php:1039
2284
  msgid "Trigger social login in the same browser tab"
2285
  msgstr ""
2286
 
2287
- #: ../admin/social_login.php:1049
2288
  msgid "Trigger social login in the same browser tab instead of a popup window"
2289
  msgstr ""
2290
 
2291
- #: ../admin/social_login.php:1056
2292
  msgid "Center align icons"
2293
  msgstr ""
2294
 
2295
- #: ../admin/social_login.php:1066
2296
  msgid "Center align social login icons"
2297
  msgstr ""
2298
 
2299
- #: ../admin/social_login.php:1073
2300
  msgid "Enable at login page"
2301
  msgstr ""
2302
 
2303
- #: ../admin/social_login.php:1083
2304
  msgid ""
2305
  "Social Login interface will get enabled at the login page of your website"
2306
  msgstr ""
2307
 
2308
- #: ../admin/social_login.php:1090
2309
  msgid "Enable at register page"
2310
  msgstr ""
2311
 
2312
- #: ../admin/social_login.php:1100
2313
  msgid ""
2314
  "Social Login interface will get enabled at the registration page of your "
2315
  "website"
2316
  msgstr ""
2317
 
2318
- #: ../admin/social_login.php:1107
2319
  msgid "Enable at comment form"
2320
  msgstr ""
2321
 
2322
- #: ../admin/social_login.php:1117
2323
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2324
  msgstr ""
2325
 
2326
- #: ../admin/social_login.php:1131
2327
  msgid "Enable before WooCommerce Customer Login Form"
2328
  msgstr ""
2329
 
2330
- #: ../admin/social_login.php:1141
2331
  msgid ""
2332
  "Social Login Interface will get enabled before the customer login form at "
2333
  "WooCommerce My Account page"
2334
  msgstr ""
2335
 
2336
- #: ../admin/social_login.php:1148
2337
  msgid "Enable at WooCommerce Customer Login Form"
2338
  msgstr ""
2339
 
2340
- #: ../admin/social_login.php:1158
2341
  msgid ""
2342
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2343
  "My Account page"
2344
  msgstr ""
2345
 
2346
- #: ../admin/social_login.php:1165
2347
  msgid "Enable at WooCommerce Customer Register Form"
2348
  msgstr ""
2349
 
2350
- #: ../admin/social_login.php:1175
2351
  msgid ""
2352
  "Integrate Social Login Interface with the customer register form at "
2353
  "WooCommerce My Account page"
2354
  msgstr ""
2355
 
2356
- #: ../admin/social_login.php:1182
2357
  msgid "Enable at WooCommerce checkout page"
2358
  msgstr ""
2359
 
2360
- #: ../admin/social_login.php:1192
2361
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2362
  msgstr ""
2363
 
2364
- #: ../admin/social_login.php:1202
2365
  msgid "Auto-approve comments made by Social Login users"
2366
  msgstr ""
2367
 
2368
- #: ../admin/social_login.php:1212
2369
  msgid ""
2370
  "If this option is enabled, and WordPress comment is made by Social Login "
2371
  "user, comment will get approved immediately without keeping in moderation."
2372
  msgstr ""
2373
 
2374
- #: ../admin/social_login.php:1213
2375
  msgid "Note: This is not related to Facebook comments"
2376
  msgstr ""
2377
 
2378
- #: ../admin/social_login.php:1222
2379
  msgid "Enable social avatar"
2380
  msgstr ""
2381
 
2382
- #: ../admin/social_login.php:1232
2383
  msgid ""
2384
  "Social profile pictures of the logged in user will be displayed as profile "
2385
  "avatar"
2386
  msgstr ""
2387
 
2388
- #: ../admin/social_login.php:1241
2389
  msgid "Avatar quality"
2390
  msgstr ""
2391
 
2392
- #: ../admin/social_login.php:1244
2393
  msgid "Average"
2394
  msgstr ""
2395
 
2396
- #: ../admin/social_login.php:1245
2397
  msgid "Best"
2398
  msgstr ""
2399
 
2400
- #: ../admin/social_login.php:1252
2401
  msgid "Choose avatar quality"
2402
  msgstr ""
2403
 
2404
- #: ../admin/social_login.php:1260
2405
  msgid ""
2406
  "Show option for users to update social avatar at BuddyPress profile page"
2407
  msgstr ""
2408
 
2409
- #: ../admin/social_login.php:1270
2410
  msgid ""
2411
  "If enabled, users would be able to update their social avatar from \"Profile "
2412
  "photo\" section in BuddyPress profile at front-end"
2413
  msgstr ""
2414
 
2415
- #: ../admin/social_login.php:1290
2416
  msgid ""
2417
  "If enabled and Social ID provider does not provide user's email address on "
2418
  "login, user will be asked to provide his/her email address. Otherwise, a "
2419
  "dummy email will be generated"
2420
  msgstr ""
2421
 
2422
- #: ../admin/social_login.php:1298
2423
  msgid "Send post-registration email to user to set account password"
2424
  msgstr ""
2425
 
2426
- #: ../admin/social_login.php:1308
2427
  msgid ""
2428
  "If enabled, an email will be sent to user after registration through Social "
2429
  "Login, regarding his/her login credentials (username-password to be able to "
2430
  "login via traditional login form)"
2431
  msgstr ""
2432
 
2433
- #: ../admin/social_login.php:1315
2434
  msgid "Send new user registration notification email to admin"
2435
  msgstr ""
2436
 
2437
- #: ../admin/social_login.php:1325
2438
  msgid ""
2439
  "If enabled, an email will be sent to admin after new user registers through "
2440
  "Social Login, notifying admin about the new user registration"
2441
  msgstr ""
2442
 
2443
- #: ../admin/social_login.php:1332
2444
  msgid "Login redirection"
2445
  msgstr ""
2446
 
2447
- #: ../admin/social_login.php:1336
2448
  msgid "Same page where user logged in"
2449
  msgstr ""
2450
 
2451
- #: ../admin/social_login.php:1340 ../admin/social_login.php:1369
2452
  msgid "Account dashboard"
2453
  msgstr ""
2454
 
2455
- #: ../admin/social_login.php:1343 ../admin/social_login.php:1372
2456
  msgid "BuddyPress profile page"
2457
  msgstr ""
2458
 
2459
- #: ../admin/social_login.php:1346 ../admin/social_login.php:1375
2460
  msgid "Custom Url"
2461
  msgstr ""
2462
 
2463
- #: ../admin/social_login.php:1354
2464
  msgid "User will be redirected to the selected page after Social Login"
2465
  msgstr ""
2466
 
2467
- #: ../admin/social_login.php:1361
2468
  msgid "Registration redirection"
2469
  msgstr ""
2470
 
2471
- #: ../admin/social_login.php:1365
2472
  msgid "Same page from where user registered"
2473
  msgstr ""
2474
 
2475
- #: ../admin/social_login.php:1383
2476
  msgid ""
2477
  "User will be redirected to the selected page after registration (first "
2478
  "Social Login) through Social Login"
2479
  msgstr ""
2480
 
2481
- #: ../admin/social_login.php:1392
2482
  msgid "Social Account Linking Options"
2483
  msgstr ""
2484
 
2485
- #: ../admin/social_login.php:1407
2486
  msgid "Text to display above the Social Account Linking interface"
2487
  msgstr ""
2488
 
2489
- #: ../admin/social_login.php:1414
2490
  msgid ""
2491
  "Link social account to already existing account, if email address matches"
2492
  msgstr ""
2493
 
2494
- #: ../admin/social_login.php:1424
2495
  msgid ""
2496
  "If email address of the user's Social Account matches with an already "
2497
  "existing account at your website, that social account will be linked to "
@@ -2499,155 +2619,155 @@ msgid ""
2499
  "Linking interface at their profile page."
2500
  msgstr ""
2501
 
2502
- #: ../admin/social_login.php:1432
2503
  msgid "Enable social account linking at BuddyPress profile page"
2504
  msgstr ""
2505
 
2506
- #: ../admin/social_login.php:1442
2507
  msgid ""
2508
  "Enable this option to show social account linking interface at BuddyPress "
2509
  "profile page"
2510
  msgstr ""
2511
 
2512
- #: ../admin/social_login.php:1453
2513
  msgid "Email popup options"
2514
  msgstr ""
2515
 
2516
- #: ../admin/social_login.php:1458
2517
  msgid "Text on 'Email required' popup"
2518
  msgstr ""
2519
 
2520
- #: ../admin/social_login.php:1468
2521
  msgid ""
2522
  "This text will be displayed on email required popup. Leave empty if not "
2523
  "required."
2524
  msgstr ""
2525
 
2526
- #: ../admin/social_login.php:1476
2527
  msgid "Error message for 'Email required' popup"
2528
  msgstr ""
2529
 
2530
- #: ../admin/social_login.php:1486
2531
  msgid ""
2532
  "This message will be displayed to user if it provides invalid or already "
2533
  "registered email"
2534
  msgstr ""
2535
 
2536
- #: ../admin/social_login.php:1494
2537
  msgid "Email popup height"
2538
  msgstr ""
2539
 
2540
- #: ../admin/social_login.php:1504
2541
  msgid ""
2542
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2543
  "can increase the height of popup by specifying in this option. Leave empty "
2544
  "for default."
2545
  msgstr ""
2546
 
2547
- #: ../admin/social_login.php:1511
2548
  msgid "Enable email verification"
2549
  msgstr ""
2550
 
2551
- #: ../admin/social_login.php:1521
2552
  msgid ""
2553
  "If enabled, email provided by the user will be verified by sending a "
2554
  "confirmation link to that email. User would not be able to login without "
2555
  "verifying his/her email"
2556
  msgstr ""
2557
 
2558
- #: ../admin/social_login.php:1541
2559
  msgid "Enable GDPR opt-in"
2560
  msgstr ""
2561
 
2562
- #: ../admin/social_login.php:1551
2563
  msgid ""
2564
  "Enable it to show GDPR opt-in for social login and social account linking"
2565
  msgstr ""
2566
 
2567
- #: ../admin/social_login.php:1559
2568
  msgid "Placement of GDPR opt-in"
2569
  msgstr ""
2570
 
2571
- #: ../admin/social_login.php:1563
2572
  msgid "Above Social Login icons"
2573
  msgstr ""
2574
 
2575
- #: ../admin/social_login.php:1565
2576
  msgid "Below Social Login icons"
2577
  msgstr ""
2578
 
2579
- #: ../admin/social_login.php:1571
2580
  msgid "Placement of GDPR opt-in above or below the social login icons"
2581
  msgstr ""
2582
 
2583
- #: ../admin/social_login.php:1578
2584
  msgid "Opt-in text"
2585
  msgstr ""
2586
 
2587
- #: ../admin/social_login.php:1588
2588
  msgid "Text for the GDPR opt-in"
2589
  msgstr ""
2590
 
2591
- #: ../admin/social_login.php:1595
2592
  msgid "Text to link to Terms-Conditions page"
2593
  msgstr ""
2594
 
2595
- #: ../admin/social_login.php:1605
2596
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2597
  msgstr ""
2598
 
2599
- #: ../admin/social_login.php:1612
2600
  msgid "Terms-Conditions Url"
2601
  msgstr ""
2602
 
2603
- #: ../admin/social_login.php:1622
2604
  msgid "Url of the terms-conditions page of your website"
2605
  msgstr ""
2606
 
2607
- #: ../admin/social_login.php:1629
2608
  msgid "Text to link to Privacy Policy page"
2609
  msgstr ""
2610
 
2611
- #: ../admin/social_login.php:1639
2612
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2613
  msgstr ""
2614
 
2615
- #: ../admin/social_login.php:1646
2616
  msgid "Privacy Policy Url"
2617
  msgstr ""
2618
 
2619
- #: ../admin/social_login.php:1656
2620
  msgid "Url of the privacy policy page of your website"
2621
  msgstr ""
2622
 
2623
- #: ../admin/social_login.php:1707 ../inc/widget.php:260 ../inc/widget.php:438
2624
  #: ../inc/widget.php:602 ../inc/widget.php:750
2625
  msgid "Select"
2626
  msgstr ""
2627
 
2628
- #: ../admin/social_login.php:1738
2629
  msgid "Social Login Shortcode & Widget"
2630
  msgstr ""
2631
 
2632
- #: ../admin/social_login.php:1739
2633
  msgid "Social Linking Shortcode"
2634
  msgstr ""
2635
 
2636
- #: ../admin/social_login.php:1754
2637
  msgid "Why is social login not working?"
2638
  msgstr ""
2639
 
2640
- #: ../admin/social_login.php:1755
2641
  msgid ""
2642
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2643
  "belong to the same app"
2644
  msgstr ""
2645
 
2646
- #: ../admin/social_login.php:1757
2647
  msgid "Social Login not working with Varnish enabled"
2648
  msgstr ""
2649
 
2650
- #: ../admin/social_login.php:1758
2651
  msgid ""
2652
  "Why the user is not appearing logged in even after Social Login until the "
2653
  "webpage is refreshed manually?"
@@ -2827,6 +2947,10 @@ msgstr ""
2827
  msgid "Archives"
2828
  msgstr ""
2829
 
 
 
 
 
2830
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
2831
  msgid "Invalid request"
2832
  msgstr ""
@@ -2835,27 +2959,31 @@ msgstr ""
2835
  msgid "Providers not selected"
2836
  msgstr ""
2837
 
2838
- #: ../inc/social_login.php:968
 
 
 
 
2839
  msgid "Email"
2840
  msgstr ""
2841
 
2842
- #: ../inc/social_login.php:969
2843
  msgid "Confirm email"
2844
  msgstr ""
2845
 
2846
- #: ../inc/social_login.php:971
2847
  msgid "Save"
2848
  msgstr ""
2849
 
2850
- #: ../inc/social_login.php:972
2851
  msgid "Cancel"
2852
  msgstr ""
2853
 
2854
- #: ../inc/social_login.php:1046
2855
  msgid "Email Verification"
2856
  msgstr ""
2857
 
2858
- #: ../inc/social_login.php:1048
2859
  msgid ""
2860
  "Please click on the following link or paste it in browser to verify your "
2861
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-06 12:22+0530\n"
6
+ "PO-Revision-Date: 2021-04-06 12:22+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../super_socializer.php:1634
19
  msgid ""
20
  "cURL is not enabled at your website server. Please contact your website "
21
  "server administrator to enable it."
22
  msgstr ""
23
 
24
+ #: ../super_socializer.php:1662
25
  #, php-format
26
  msgid ""
27
  "Enter exactly the following url in <strong>Website</strong> option in your "
28
  "Twitter app (see step 3 %s)"
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:1665
32
  #, php-format
33
  msgid ""
34
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
35
  "your Twitter app (see step 3 %s)"
36
  msgstr ""
37
 
38
+ #: ../super_socializer.php:1668
39
  msgid ""
40
  "Make sure cURL is enabled at your website server. You may need to contact "
41
  "the server administrator of your website to verify this"
42
  msgstr ""
43
 
44
+ #: ../super_socializer.php:1829
45
+ msgid "Search"
46
+ msgstr ""
47
+
48
+ #: ../super_socializer.php:1851 ../helper.php:995
49
  msgid "Please verify your email address to login."
50
  msgstr ""
51
 
52
+ #: ../super_socializer.php:1851
53
  msgid "Your email has been verified. Now you can login to your account"
54
  msgstr ""
55
 
56
+ #: ../super_socializer.php:1855
57
  msgid "Notification"
58
  msgstr ""
59
 
60
+ #: ../super_socializer.php:1873 ../admin/social_login.php:1443
61
  msgid "Email required"
62
  msgstr ""
63
 
64
+ #: ../super_socializer.php:1876
65
  msgid "Please check your email inbox to complete the registration."
66
  msgstr ""
67
 
68
+ #: ../super_socializer.php:1945
69
  msgid "Leave a reply"
70
  msgstr ""
71
 
72
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
73
  msgid "Shares"
74
  msgstr ""
75
 
76
+ #: ../super_socializer.php:1961 ../inc/social_sharing.php:241
77
  msgid "Share"
78
  msgstr ""
79
 
80
+ #: ../super_socializer.php:1961
81
  msgid "Link copied."
82
  msgstr ""
83
 
84
+ #: ../super_socializer.php:2206
85
  msgid "Super Socializer - General Options"
86
  msgstr ""
87
 
88
+ #: ../super_socializer.php:2206 ../admin/general_options.php:15
89
  #: ../admin/social_commenting.php:47
90
  msgid "General Options"
91
  msgstr ""
92
 
93
+ #: ../super_socializer.php:2274 ../helper.php:924
94
  msgid "Social Avatar"
95
  msgstr ""
96
 
97
+ #: ../super_socializer.php:2277
98
  msgid "Small Avatar Url"
99
  msgstr ""
100
 
101
+ #: ../super_socializer.php:2281
102
  msgid "Large Avatar Url"
103
  msgstr ""
104
 
105
+ #: ../super_socializer.php:2285 ../helper.php:927
106
  msgid ""
107
  "Do not fetch and update social avatar from my profile, next time I Social "
108
  "Login"
109
  msgstr ""
110
 
111
+ #: ../super_socializer.php:2289 ../helper.php:928
112
  msgid "Update social avatar, next time I Social Login"
113
  msgstr ""
114
 
115
+ #: ../super_socializer.php:2366
116
  msgid "Login with your Social ID"
117
  msgstr ""
118
 
119
+ #: ../super_socializer.php:2367
120
  msgid "Email you entered is already registered or invalid"
121
  msgstr ""
122
 
123
+ #: ../super_socializer.php:2374
124
  msgid "Please enter a valid email address. You might be required to verify it"
125
  msgstr ""
126
 
127
+ #: ../super_socializer.php:2378 ../super_socializer.php:3123
128
  msgid "Link your social account to login to your account at this website"
129
  msgstr ""
130
 
131
+ #: ../super_socializer.php:2633
132
  msgid "Thanks for installing Super Socializer plugin"
133
  msgstr ""
134
 
135
+ #: ../super_socializer.php:2635
136
  msgid "Configure the Plugin"
137
  msgstr ""
138
 
139
+ #: ../super_socializer.php:2646
140
  msgid ""
141
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
142
  "current version of Super Socializer"
143
  msgstr ""
144
 
145
+ #: ../super_socializer.php:2655
146
  msgid ""
147
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
148
  "version of Super Socializer"
149
  msgstr ""
150
 
151
+ #: ../super_socializer.php:2664
152
  msgid ""
153
+ "Update \"Social Login Buttons\" add-on to version 1.2.7 or above for "
154
  "compatibility with current version of Super Socializer"
155
  msgstr ""
156
 
157
+ #: ../super_socializer.php:2673
158
  msgid ""
159
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
160
  "with current version of Super Socializer"
161
  msgstr ""
162
 
163
+ #: ../super_socializer.php:2682
164
  msgid ""
165
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
166
  "with current version of Super Socializer"
167
  msgstr ""
168
 
169
+ #: ../super_socializer.php:2693
170
  #, php-format
171
  msgid ""
172
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
173
  msgstr ""
174
 
175
+ #: ../super_socializer.php:2702
176
  #, php-format
177
  msgid ""
178
  "To continue using Instagram login create a new Instagram App as described <a "
180
  "Instagram App Secret <a href=\"%s\">here</a>"
181
  msgstr ""
182
 
183
+ #: ../super_socializer.php:2711 ../super_socializer.php:2720
184
  #, php-format
185
  msgid ""
186
  "To continue using bitly url shortener, login to your bit.ly account and "
189
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
190
  msgstr ""
191
 
192
+ #: ../super_socializer.php:2736
193
  #, php-format
194
  msgid ""
195
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
196
  msgstr ""
197
 
198
+ #: ../super_socializer.php:2760
199
  #, php-format
200
  msgid ""
201
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
203
  "target=\"_blank\">here</a>"
204
  msgstr ""
205
 
206
+ #: ../super_socializer.php:2760 ../super_socializer.php:2785
207
+ #: ../super_socializer.php:2810 ../super_socializer.php:2835
208
+ #: ../super_socializer.php:2868 ../super_socializer.php:2896
209
+ #: ../super_socializer.php:2923
210
  msgid "Okay"
211
  msgstr ""
212
 
213
+ #: ../super_socializer.php:2785
214
  #, php-format
215
  msgid ""
216
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
218
  "\">here</a>"
219
  msgstr ""
220
 
221
+ #: ../super_socializer.php:2810
222
  #, php-format
223
  msgid ""
224
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
226
  "target=\"_blank\">here</a>"
227
  msgstr ""
228
 
229
+ #: ../super_socializer.php:2835
230
  #, php-format
231
  msgid ""
232
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
234
  "target=\"_blank\">here</a>"
235
  msgstr ""
236
 
237
+ #: ../super_socializer.php:2846
238
  #, php-format
239
  msgid ""
240
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
241
  msgstr ""
242
 
243
+ #: ../super_socializer.php:2868
244
  #, php-format
245
  msgid ""
246
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
248
  "\"%s\" target=\"_blank\">here</a>"
249
  msgstr ""
250
 
251
+ #: ../super_socializer.php:2896
252
  #, php-format
253
  msgid ""
254
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
257
  "your website %s with them. No need to copy-paste any code from their website."
258
  msgstr ""
259
 
260
+ #: ../super_socializer.php:2923
261
  #, php-format
262
  msgid ""
263
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
265
  "\"%s\" target=\"_blank\">here</a>"
266
  msgstr ""
267
 
268
+ #: ../super_socializer.php:2948
269
  #, php-format
270
  msgid ""
271
  "If you cannot get Linkedin login to work after updating the plugin, replace "
273
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
274
  msgstr ""
275
 
276
+ #: ../super_socializer.php:2948 ../super_socializer.php:2975
277
  msgid "Dismiss"
278
  msgstr ""
279
 
280
+ #: ../super_socializer.php:2974
281
  #, php-format
282
  msgid ""
283
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
286
  "that, clear share counts cache from \"Miscellaneous\" section"
287
  msgstr ""
288
 
289
+ #: ../super_socializer.php:3199
290
  msgid ""
291
  "Your browser is blocking some features of this website. Please follow the "
292
  "instructions at {support_url} to unblock these."
296
  msgid "Settings saved"
297
  msgstr ""
298
 
299
+ #: ../helper.php:194
300
  msgid "Click to toggle help"
301
  msgstr ""
302
 
303
+ #: ../helper.php:291
304
  msgid "Add-Ons"
305
  msgstr ""
306
 
307
+ #: ../helper.php:292
308
  msgid "Support Documentation"
309
  msgstr ""
310
 
311
+ #: ../helper.php:293
312
  msgid "Settings"
313
  msgstr ""
314
 
315
+ #: ../helper.php:576
316
  msgid "Account linked successfully"
317
  msgstr ""
318
 
319
+ #: ../helper.php:580
320
  msgid "Account already exists or linked"
321
  msgstr ""
322
 
323
+ #: ../helper.php:616 ../helper.php:618
324
  msgid "Login with"
325
  msgstr ""
326
 
327
+ #: ../helper.php:653 ../helper.php:659
328
  msgid "Currently"
329
  msgstr ""
330
 
331
+ #: ../helper.php:653 ../helper.php:659
332
  msgid "Connected with"
333
  msgstr ""
334
 
335
+ #: ../helper.php:653 ../helper.php:659
336
  msgid "Remove"
337
  msgstr ""
338
 
339
+ #: ../helper.php:730
340
  msgid "Social Account Linking"
341
  msgstr ""
342
 
343
+ #: ../helper.php:780
344
  msgid "Disable Standard Social Sharing on this "
345
  msgstr ""
346
 
347
+ #: ../helper.php:785
348
  msgid "Disable Floating Social Sharing on this "
349
  msgstr ""
350
 
351
+ #: ../helper.php:790
352
  msgid "Disable Standard like buttons on this "
353
  msgstr ""
354
 
355
+ #: ../helper.php:795
356
  msgid "Disable Floating like buttons on this "
357
  msgstr ""
358
 
359
+ #: ../helper.php:800
360
  msgid "Disable Social Commenting on this "
361
  msgstr ""
362
 
363
+ #: ../helper.php:809
364
  msgid "Standard Sharing Interface"
365
  msgstr ""
366
 
367
+ #: ../helper.php:815 ../helper.php:834
368
  msgid "Starting share count for "
369
  msgstr ""
370
 
371
+ #: ../helper.php:828
372
  msgid "Floating Sharing Interface"
373
  msgstr ""
374
 
375
+ #: ../helper.php:931
376
  msgid "Small Avatar"
377
  msgstr ""
378
 
379
+ #: ../helper.php:935
380
  msgid "Large Avatar"
381
  msgstr ""
382
 
383
+ #: ../helper.php:939 ../admin/general_options.php:89
384
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
385
+ #: ../admin/social_login.php:1933 ../admin/like_buttons.php:780
386
  msgid "Save Changes"
387
  msgstr ""
388
 
389
+ #: ../helper.php:1032
390
  msgid "Click to delete social profile data"
391
  msgstr ""
392
 
393
+ #: ../helper.php:1061
394
  msgid "Deleting"
395
  msgstr ""
396
 
397
+ #: ../helper.php:1071
398
  msgid "Deleted"
399
  msgstr ""
400
 
401
+ #: ../helper.php:1073
402
  msgid "Something bad happened"
403
  msgstr ""
404
 
405
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
406
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
407
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
408
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1937
409
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
410
  #, php-format
411
  msgid ""
451
  msgstr ""
452
 
453
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
454
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1943
455
  #: ../admin/like_buttons.php:790
456
  msgid "Instagram Shoutout"
457
  msgstr ""
458
 
459
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
460
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1945
461
  #: ../admin/like_buttons.php:792
462
  msgid ""
463
  "If you can send (to hello@heateor.com) how this plugin is helping your "
593
 
594
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
595
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
596
+ #: ../admin/social_login.php:1899 ../admin/like_buttons.php:50
597
  #: ../admin/like_buttons.php:751
598
  msgid "Shortcode & Widget"
599
  msgstr ""
604
 
605
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
606
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
607
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1913
608
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
609
  msgid "FAQ"
610
  msgstr ""
824
  msgid "Url to share"
825
  msgstr ""
826
 
827
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:1184
828
+ #: ../admin/social_login.php:1560 ../admin/like_buttons.php:105
829
  #: ../inc/widget.php:949
830
  msgid "Title"
831
  msgstr ""
908
  msgstr ""
909
 
910
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
911
+ #: ../admin/social_login.php:1501 ../admin/social_login.php:1530
912
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
913
  msgid "Homepage"
914
  msgstr ""
1144
  msgid "Required only to track Facebook share count"
1145
  msgstr ""
1146
 
1147
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:222
1148
  msgid "Facebook App ID"
1149
  msgstr ""
1150
 
1155
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1156
  msgstr ""
1157
 
1158
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:243
1159
  msgid "Facebook App Secret"
1160
  msgstr ""
1161
 
1323
  msgstr ""
1324
 
1325
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1326
+ #: ../admin/social_login.php:1915
1327
  msgid ""
1328
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1329
  "an online website for the plugin to function properly."
1377
  msgstr ""
1378
 
1379
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1380
+ #: ../admin/social_login.php:1922
1381
  msgid "Why is my browser blocking some features of the plugin?"
1382
  msgstr ""
1383
 
1660
  msgid "Advanced Configuration"
1661
  msgstr ""
1662
 
1663
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1699
1664
  msgid "GDPR"
1665
  msgstr ""
1666
 
1667
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1850
1668
  msgid "XProfile Integration"
1669
  msgstr ""
1670
 
1690
  msgstr ""
1691
 
1692
  #: ../admin/social_login.php:98
1693
+ msgid "Disable Social Login for admin accounts"
1694
+ msgstr ""
1695
+
1696
+ #: ../admin/social_login.php:108
1697
+ msgid ""
1698
+ "After enabling this option, administrator users will not be able to login "
1699
+ "through social login. Other users will be able to login via social login."
1700
+ msgstr ""
1701
+
1702
+ #: ../admin/social_login.php:115
1703
  msgid "Select Social Networks"
1704
  msgstr ""
1705
 
1706
+ #: ../admin/social_login.php:120
1707
  msgid "Facebook"
1708
  msgstr ""
1709
 
1710
+ #: ../admin/social_login.php:124
1711
  msgid "Twitter"
1712
  msgstr ""
1713
 
1714
+ #: ../admin/social_login.php:128
1715
  msgid "LinkedIn"
1716
  msgstr ""
1717
 
1718
+ #: ../admin/social_login.php:132
1719
  msgid "Google"
1720
  msgstr ""
1721
 
1722
+ #: ../admin/social_login.php:136
1723
  msgid "Vkontakte"
1724
  msgstr ""
1725
 
1726
+ #: ../admin/social_login.php:140
1727
  msgid "Instagram"
1728
  msgstr ""
1729
 
1730
+ #: ../admin/social_login.php:144
1731
  msgid "Steam"
1732
  msgstr ""
1733
 
1734
+ #: ../admin/social_login.php:148
1735
  msgid "Line"
1736
  msgstr ""
1737
 
1738
+ #: ../admin/social_login.php:152
1739
  msgid "Wordpress"
1740
  msgstr ""
1741
 
1742
+ #: ../admin/social_login.php:156
1743
  msgid "Windows Live"
1744
  msgstr ""
1745
 
1746
+ #: ../admin/social_login.php:160
1747
  msgid "Yahoo"
1748
  msgstr ""
1749
 
1750
+ #: ../admin/social_login.php:164
1751
+ msgid "Discord"
1752
+ msgstr ""
1753
+
1754
+ #: ../admin/social_login.php:168
1755
+ msgid "Amazon"
1756
+ msgstr ""
1757
+
1758
+ #: ../admin/social_login.php:172
1759
+ msgid "Stackoverflow"
1760
+ msgstr ""
1761
+
1762
+ #: ../admin/social_login.php:176
1763
  msgid "Spotify"
1764
  msgstr ""
1765
 
1766
+ #: ../admin/social_login.php:179
1767
  msgid "Dribbble"
1768
  msgstr ""
1769
 
1770
+ #: ../admin/social_login.php:183
1771
  msgid "Twitch"
1772
  msgstr ""
1773
 
1774
+ #: ../admin/social_login.php:187
1775
  msgid "Foursquare"
1776
  msgstr ""
1777
 
1778
+ #: ../admin/social_login.php:191
1779
  msgid "Dropbox"
1780
  msgstr ""
1781
 
1782
+ #: ../admin/social_login.php:195
1783
  msgid "Disqus"
1784
  msgstr ""
1785
 
1786
+ #: ../admin/social_login.php:199
1787
  msgid "Reddit"
1788
  msgstr ""
1789
 
1790
+ #: ../admin/social_login.php:203
1791
  msgid "Github"
1792
  msgstr ""
1793
 
1794
+ #: ../admin/social_login.php:207
1795
  msgid "Kakao"
1796
  msgstr ""
1797
 
1798
+ #: ../admin/social_login.php:215
1799
  msgid "Select Social ID provider to enable in Social Login"
1800
  msgstr ""
1801
 
1802
+ #: ../admin/social_login.php:232
1803
  #, php-format
1804
  msgid ""
1805
  "Required for Facebook Social Login to work. Please follow the documentation "
1806
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1807
  msgstr ""
1808
 
1809
+ #: ../admin/social_login.php:234 ../admin/social_login.php:255
1810
  msgid ""
1811
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1812
  msgstr ""
1813
 
1814
+ #: ../admin/social_login.php:253
1815
  #, php-format
1816
  msgid ""
1817
  "Required for Facebook Social Login to work. Please follow the documentation "
1818
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
1819
  msgstr ""
1820
 
1821
+ #: ../admin/social_login.php:264
1822
  msgid "Twitter API Key"
1823
  msgstr ""
1824
 
1825
+ #: ../admin/social_login.php:274
1826
  #, php-format
1827
  msgid ""
1828
  "Required for Twitter Social Login to work. Please follow the documentation "
1829
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Key"
1830
  msgstr ""
1831
 
1832
+ #: ../admin/social_login.php:276 ../admin/social_login.php:301
1833
  msgid ""
1834
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1835
  msgstr ""
1836
 
1837
+ #: ../admin/social_login.php:280 ../admin/social_login.php:305
1838
+ #: ../admin/social_login.php:493 ../admin/social_login.php:513
1839
+ #: ../admin/social_login.php:848 ../admin/social_login.php:868
1840
+ #: ../admin/social_login.php:889 ../admin/social_login.php:909
1841
+ #: ../admin/social_login.php:1014 ../admin/social_login.php:1034
1842
+ #: ../admin/social_login.php:1099 ../admin/social_login.php:1119
1843
+ #: ../admin/social_login.php:1141 ../admin/social_login.php:1161
1844
  msgid ""
1845
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1846
  "link"
1847
  msgstr ""
1848
 
1849
+ #: ../admin/social_login.php:289
1850
  msgid "Twitter API Secret"
1851
  msgstr ""
1852
 
1853
+ #: ../admin/social_login.php:299
1854
  #, php-format
1855
  msgid ""
1856
  "Required for Twitter Social Login to work. Please follow the documentation "
1857
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Secret"
1858
  msgstr ""
1859
 
1860
+ #: ../admin/social_login.php:314
1861
  msgid "LinkedIn Client ID"
1862
  msgstr ""
1863
 
1864
+ #: ../admin/social_login.php:324
1865
  #, php-format
1866
  msgid ""
1867
  "Required for LinkedIn Social Login to work. Please follow the documentation "
1868
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get LinkedIn Client ID"
1869
  msgstr ""
1870
 
1871
+ #: ../admin/social_login.php:326 ../admin/social_login.php:347
1872
+ #: ../admin/social_login.php:533 ../admin/social_login.php:553
1873
  msgid ""
1874
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
1875
  "the link"
1876
  msgstr ""
1877
 
1878
+ #: ../admin/social_login.php:335
1879
  msgid "LinkedIn Client Secret"
1880
  msgstr ""
1881
 
1882
+ #: ../admin/social_login.php:345
1883
  #, php-format
1884
  msgid ""
1885
  "Required for LinkedIn Social Login to work. Please follow the documentation "
1887
  "Secret"
1888
  msgstr ""
1889
 
1890
+ #: ../admin/social_login.php:356
1891
  msgid "Google Client ID"
1892
  msgstr ""
1893
 
1894
+ #: ../admin/social_login.php:366
1895
  #, php-format
1896
  msgid ""
1897
  "Required for Google Social Login to work. Please follow the documentation at "
1898
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Google Client ID"
1899
  msgstr ""
1900
 
1901
+ #: ../admin/social_login.php:368 ../admin/social_login.php:389
1902
  msgid ""
1903
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
1904
  "mentioned at the link"
1905
  msgstr ""
1906
 
1907
+ #: ../admin/social_login.php:377
1908
  msgid "Google Client Secret"
1909
  msgstr ""
1910
 
1911
+ #: ../admin/social_login.php:387
1912
  #, php-format
1913
  msgid ""
1914
  "Required for Google Social Login to work. Please follow the documentation at "
1915
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Google Client Secret"
1916
  msgstr ""
1917
 
1918
+ #: ../admin/social_login.php:398
1919
  msgid "Vkontakte Application ID"
1920
  msgstr ""
1921
 
1922
+ #: ../admin/social_login.php:408 ../admin/social_login.php:429
1923
  #, php-format
1924
  msgid ""
1925
  "Required for Vkontakte Social Login to work. Please follow the documentation "
1927
  "Application ID"
1928
  msgstr ""
1929
 
1930
+ #: ../admin/social_login.php:410 ../admin/social_login.php:431
1931
  msgid ""
1932
  "Paste following url in <strong>Site address</strong> option mentioned at the "
1933
  "link"
1934
  msgstr ""
1935
 
1936
+ #: ../admin/social_login.php:419
1937
  msgid "Vkontakte Secure key"
1938
  msgstr ""
1939
 
1940
+ #: ../admin/social_login.php:440
1941
  msgid "Instagram App ID"
1942
  msgstr ""
1943
 
1944
+ #: ../admin/social_login.php:450
1945
  #, php-format
1946
  msgid ""
1947
  "Required for Instagram Social Login to work. Please follow the documentation "
1948
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Instagram App ID"
1949
  msgstr ""
1950
 
1951
+ #: ../admin/social_login.php:452 ../admin/social_login.php:473
1952
  msgid ""
1953
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
1954
  "mentioned at the link"
1955
  msgstr ""
1956
 
1957
+ #: ../admin/social_login.php:461
1958
  msgid "Instagram App Secret"
1959
  msgstr ""
1960
 
1961
+ #: ../admin/social_login.php:471
1962
  #, php-format
1963
  msgid ""
1964
  "Required for Instagram Social Login to work. Please follow the documentation "
1965
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Instagram App Secret"
1966
  msgstr ""
1967
 
1968
+ #: ../admin/social_login.php:482
1969
  msgid "Line Channel ID"
1970
  msgstr ""
1971
 
1972
+ #: ../admin/social_login.php:491
1973
  #, php-format
1974
  msgid ""
1975
  "Required for Line Social Login to work. Please follow the documentation at "
1976
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Line Channel ID"
1977
  msgstr ""
1978
 
1979
+ #: ../admin/social_login.php:502
1980
  msgid "Line Channel Secret"
1981
  msgstr ""
1982
 
1983
+ #: ../admin/social_login.php:511
1984
  #, php-format
1985
  msgid ""
1986
  "Required for Line Social Login to work. Please follow the documentation at "
1987
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Line Channel Secret"
1988
  msgstr ""
1989
 
1990
+ #: ../admin/social_login.php:522
1991
  msgid "Wordpress Client ID"
1992
  msgstr ""
1993
 
1994
+ #: ../admin/social_login.php:531
1995
  #, php-format
1996
  msgid ""
1997
  "Required for Wordpress Social Login to work. Please follow the documentation "
1998
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client ID"
1999
  msgstr ""
2000
 
2001
+ #: ../admin/social_login.php:542
2002
  msgid "Wordpress Client Secret"
2003
  msgstr ""
2004
 
2005
+ #: ../admin/social_login.php:551
2006
  #, php-format
2007
  msgid ""
2008
  "Required for Wordpress Social Login to work. Please follow the documentation "
2010
  "Secret"
2011
  msgstr ""
2012
 
2013
+ #: ../admin/social_login.php:562
2014
  msgid "Microsoft Client ID"
2015
  msgstr ""
2016
 
2017
+ #: ../admin/social_login.php:571
2018
  #, php-format
2019
  msgid ""
2020
  "Required for Live Social Login to work. Please follow the documentation at "
2021
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Microsoft Client ID"
2022
  msgstr ""
2023
 
2024
+ #: ../admin/social_login.php:573 ../admin/social_login.php:593
2025
+ #: ../admin/social_login.php:806 ../admin/social_login.php:826
2026
+ #: ../admin/social_login.php:971 ../admin/social_login.php:991
2027
  msgid ""
2028
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2029
  "the link"
2030
  msgstr ""
2031
 
2032
+ #: ../admin/social_login.php:582
2033
  msgid "Microsoft Client Secret"
2034
  msgstr ""
2035
 
2036
+ #: ../admin/social_login.php:591
2037
  #, php-format
2038
  msgid ""
2039
  "Required for Live Social Login to work. Please follow the documentation at "
2041
  "Secret key"
2042
  msgstr ""
2043
 
2044
+ #: ../admin/social_login.php:601
2045
  msgid "Steam API Key"
2046
  msgstr ""
2047
 
2048
+ #: ../admin/social_login.php:610
2049
  #, php-format
2050
  msgid ""
2051
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2052
  "\"_blank\">this link</a>"
2053
  msgstr ""
2054
 
2055
+ #: ../admin/social_login.php:611
2056
  msgid "Save following <strong>domain</strong> to get the key"
2057
  msgstr ""
2058
 
2059
+ #: ../admin/social_login.php:620
2060
  msgid "Yahoo Client ID"
2061
  msgstr ""
2062
 
2063
+ #: ../admin/social_login.php:629
2064
  #, php-format
2065
  msgid ""
2066
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2067
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client ID"
2068
  msgstr ""
2069
 
2070
+ #: ../admin/social_login.php:631 ../admin/social_login.php:651
2071
  msgid ""
2072
+ "Paste following url in the <strong>Redirect URI(s)</strong> option mentioned "
2073
+ "at the link"
2074
  msgstr ""
2075
 
2076
+ #: ../admin/social_login.php:640
2077
  msgid "Yahoo Client Secret"
2078
  msgstr ""
2079
 
2080
+ #: ../admin/social_login.php:649
2081
  #, php-format
2082
  msgid ""
2083
  "Required for Yahoo Social Login to work. Please follow the documentation at "
2084
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client Secret key"
2085
  msgstr ""
2086
 
2087
+ #: ../admin/social_login.php:662
2088
+ msgid "Discord Client ID"
2089
+ msgstr ""
2090
+
2091
+ #: ../admin/social_login.php:671
2092
+ #, php-format
2093
+ msgid ""
2094
+ "Required for Discord Social Login to work. Please follow the documentation "
2095
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client ID"
2096
+ msgstr ""
2097
+
2098
+ #: ../admin/social_login.php:673 ../admin/social_login.php:693
2099
+ msgid ""
2100
+ "Paste following url in the <strong>Redirects</strong> option mentioned at "
2101
+ "the link"
2102
+ msgstr ""
2103
+
2104
+ #: ../admin/social_login.php:682
2105
+ msgid "Discord Client Secret"
2106
+ msgstr ""
2107
+
2108
+ #: ../admin/social_login.php:691
2109
+ #, php-format
2110
+ msgid ""
2111
+ "Required for Discord Social Login to work. Please follow the documentation "
2112
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Discord Client "
2113
+ "Secret key"
2114
+ msgstr ""
2115
+
2116
+ #: ../admin/social_login.php:704
2117
+ msgid "Amazon Client ID"
2118
+ msgstr ""
2119
+
2120
+ #: ../admin/social_login.php:713
2121
+ #, php-format
2122
+ msgid ""
2123
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2124
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client ID"
2125
+ msgstr ""
2126
+
2127
+ #: ../admin/social_login.php:715 ../admin/social_login.php:735
2128
+ msgid ""
2129
+ "Paste following url in the <strong>Allowed Return URLs</strong> option "
2130
+ "mentioned at the link"
2131
+ msgstr ""
2132
+
2133
+ #: ../admin/social_login.php:724
2134
+ msgid "Amazon Client Secret"
2135
+ msgstr ""
2136
+
2137
+ #: ../admin/social_login.php:733
2138
+ #, php-format
2139
+ msgid ""
2140
+ "Required for Amazon Social Login to work. Please follow the documentation at "
2141
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Amazon Client Secret "
2142
+ "key"
2143
+ msgstr ""
2144
+
2145
+ #: ../admin/social_login.php:746
2146
+ msgid "Stackoverflow Client ID"
2147
+ msgstr ""
2148
+
2149
+ #: ../admin/social_login.php:755
2150
+ #, php-format
2151
+ msgid ""
2152
+ "Required for Stackoverflow Social Login to work. Please follow the "
2153
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2154
+ "Stackoverflow Client ID"
2155
+ msgstr ""
2156
+
2157
+ #: ../admin/social_login.php:761
2158
+ msgid "Stackoverflow Client Secret"
2159
+ msgstr ""
2160
+
2161
+ #: ../admin/social_login.php:770
2162
+ #, php-format
2163
+ msgid ""
2164
+ "Required for Stackoverflow Social Login to work. Please follow the "
2165
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2166
+ "Stackoverflow Client Secret key"
2167
+ msgstr ""
2168
+
2169
+ #: ../admin/social_login.php:776
2170
+ msgid "Stackoverflow Key"
2171
+ msgstr ""
2172
+
2173
+ #: ../admin/social_login.php:786
2174
+ #, php-format
2175
+ msgid ""
2176
+ "Required for Stackoverflow Social Login to work. Please follow the "
2177
+ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
2178
+ "Stackoverflow Key"
2179
+ msgstr ""
2180
+
2181
+ #: ../admin/social_login.php:795
2182
  msgid "Spotify Client ID"
2183
  msgstr ""
2184
 
2185
+ #: ../admin/social_login.php:804
2186
  #, php-format
2187
  msgid ""
2188
  "Required for Spotify Social Login to work. Please follow the documentation "
2189
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Spotify Client ID"
2190
  msgstr ""
2191
 
2192
+ #: ../admin/social_login.php:815
2193
  msgid "Spotify Client Secret"
2194
  msgstr ""
2195
 
2196
+ #: ../admin/social_login.php:824
2197
  #, php-format
2198
  msgid ""
2199
  "Required for Spotify Social Login to work. Please follow the documentation "
2201
  "Secret"
2202
  msgstr ""
2203
 
2204
+ #: ../admin/social_login.php:837
2205
  msgid "Dribbble Client ID"
2206
  msgstr ""
2207
 
2208
+ #: ../admin/social_login.php:846
2209
  #, php-format
2210
  msgid ""
2211
  "Required for Dribbble Social Login to work. Please follow the documentation "
2212
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Dribbble Client ID"
2213
  msgstr ""
2214
 
2215
+ #: ../admin/social_login.php:857
2216
  msgid "Dribbble Client Secret"
2217
  msgstr ""
2218
 
2219
+ #: ../admin/social_login.php:866
2220
  #, php-format
2221
  msgid ""
2222
  "Required for Dribbble Social Login to work. Please follow the documentation "
2224
  "Secret"
2225
  msgstr ""
2226
 
2227
+ #: ../admin/social_login.php:878
2228
  msgid "Twitch Client ID"
2229
  msgstr ""
2230
 
2231
+ #: ../admin/social_login.php:887
2232
  #, php-format
2233
  msgid ""
2234
  "Required for Twitch Social Login to work. Please follow the documentation at "
2235
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Twitch Client ID"
2236
  msgstr ""
2237
 
2238
+ #: ../admin/social_login.php:898
2239
  msgid "Twitch Client Secret"
2240
  msgstr ""
2241
 
2242
+ #: ../admin/social_login.php:907
2243
  #, php-format
2244
  msgid ""
2245
  "Required for Twitch Social Login to work. Please follow the documentation at "
2246
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Twitch Client Secret"
2247
  msgstr ""
2248
 
2249
+ #: ../admin/social_login.php:920
2250
  msgid "Foursquare Client ID"
2251
  msgstr ""
2252
 
2253
+ #: ../admin/social_login.php:929
2254
  #, php-format
2255
  msgid ""
2256
  "Required for Foursquare Social Login to work. Please follow the "
2258
  "Foursquare Client ID"
2259
  msgstr ""
2260
 
2261
+ #: ../admin/social_login.php:931 ../admin/social_login.php:951
2262
  msgid ""
2263
  "Paste following url in <strong>Redirect URL</strong> option mentioned at the "
2264
  "link"
2265
  msgstr ""
2266
 
2267
+ #: ../admin/social_login.php:940
2268
  msgid "Foursquare Client Secret"
2269
  msgstr ""
2270
 
2271
+ #: ../admin/social_login.php:949
2272
  #, php-format
2273
  msgid ""
2274
  "Required for Foursquare Social Login to work. Please follow the "
2276
  "Foursquare Client Secret"
2277
  msgstr ""
2278
 
2279
+ #: ../admin/social_login.php:960
2280
  msgid "Dropbox App Key"
2281
  msgstr ""
2282
 
2283
+ #: ../admin/social_login.php:969
2284
  #, php-format
2285
  msgid ""
2286
  "Required for Dropbox Social Login to work. Please follow the documentation "
2287
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Dropbox App Key"
2288
  msgstr ""
2289
 
2290
+ #: ../admin/social_login.php:980
2291
  msgid "Dropbox App Secret"
2292
  msgstr ""
2293
 
2294
+ #: ../admin/social_login.php:989
2295
  #, php-format
2296
  msgid ""
2297
  "Required for Dropbox Social Login to work. Please follow the documentation "
2298
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Dropbox App Secret"
2299
  msgstr ""
2300
 
2301
+ #: ../admin/social_login.php:1003
2302
  msgid "Disqus Public Key"
2303
  msgstr ""
2304
 
2305
+ #: ../admin/social_login.php:1012
2306
  #, php-format
2307
  msgid ""
2308
  "Required for Disqus Social Login to work. Please follow the documentation at "
2309
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Disqus Public Key"
2310
  msgstr ""
2311
 
2312
+ #: ../admin/social_login.php:1023
2313
  msgid "Disqus Secret Key"
2314
  msgstr ""
2315
 
2316
+ #: ../admin/social_login.php:1032
2317
  #, php-format
2318
  msgid ""
2319
  "Required for Disqus Social Login to work. Please follow the documentation at "
2320
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Disqus Secret Key"
2321
  msgstr ""
2322
 
2323
+ #: ../admin/social_login.php:1045
2324
  msgid "Reddit Client ID"
2325
  msgstr ""
2326
 
2327
+ #: ../admin/social_login.php:1054
2328
  #, php-format
2329
  msgid ""
2330
  "Required for Reddit Social Login to work. Please follow the documentation at "
2331
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Reddit Client ID"
2332
  msgstr ""
2333
 
2334
+ #: ../admin/social_login.php:1056 ../admin/social_login.php:1076
2335
  msgid ""
2336
  "Paste following url in <strong>Redirect Uri</strong> option mentioned at the "
2337
  "link"
2338
  msgstr ""
2339
 
2340
+ #: ../admin/social_login.php:1065
2341
  msgid "Reddit Client Secret"
2342
  msgstr ""
2343
 
2344
+ #: ../admin/social_login.php:1074
2345
  #, php-format
2346
  msgid ""
2347
  "Required for Reddit Social Login to work. Please follow the documentation at "
2348
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Reddit Client Secret"
2349
  msgstr ""
2350
 
2351
+ #: ../admin/social_login.php:1088
2352
  msgid "Github Client ID"
2353
  msgstr ""
2354
 
2355
+ #: ../admin/social_login.php:1097
2356
  #, php-format
2357
  msgid ""
2358
  "Required for Github Social Login to work. Please follow the documentation at "
2359
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Github Client ID"
2360
  msgstr ""
2361
 
2362
+ #: ../admin/social_login.php:1108
2363
  msgid "Github Client Secret"
2364
  msgstr ""
2365
 
2366
+ #: ../admin/social_login.php:1117
2367
  #, php-format
2368
  msgid ""
2369
  "Required for Github Social Login to work. Please follow the documentation at "
2370
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Github Client Secret"
2371
  msgstr ""
2372
 
2373
+ #: ../admin/social_login.php:1130
2374
  msgid "Kakao Client ID"
2375
  msgstr ""
2376
 
2377
+ #: ../admin/social_login.php:1139
2378
  #, php-format
2379
  msgid ""
2380
  "Required for Kakao Social Login to work. Please follow the documentation at "
2381
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Kakao Client ID"
2382
  msgstr ""
2383
 
2384
+ #: ../admin/social_login.php:1150
2385
  msgid "Kakao Client Secret"
2386
  msgstr ""
2387
 
2388
+ #: ../admin/social_login.php:1159
2389
  #, php-format
2390
  msgid ""
2391
  "Required for Kakao Social Login to work. Please follow the documentation at "
2392
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Kakao Client Secret"
2393
  msgstr ""
2394
 
2395
+ #: ../admin/social_login.php:1179
2396
  msgid "Social Login Options"
2397
  msgstr ""
2398
 
2399
+ #: ../admin/social_login.php:1194
2400
  msgid "Text to display above the Social Login interface"
2401
  msgstr ""
2402
 
2403
+ #: ../admin/social_login.php:1202
2404
  msgid "Trigger social login in the same browser tab"
2405
  msgstr ""
2406
 
2407
+ #: ../admin/social_login.php:1212
2408
  msgid "Trigger social login in the same browser tab instead of a popup window"
2409
  msgstr ""
2410
 
2411
+ #: ../admin/social_login.php:1219
2412
  msgid "Center align icons"
2413
  msgstr ""
2414
 
2415
+ #: ../admin/social_login.php:1229
2416
  msgid "Center align social login icons"
2417
  msgstr ""
2418
 
2419
+ #: ../admin/social_login.php:1236
2420
  msgid "Enable at login page"
2421
  msgstr ""
2422
 
2423
+ #: ../admin/social_login.php:1246
2424
  msgid ""
2425
  "Social Login interface will get enabled at the login page of your website"
2426
  msgstr ""
2427
 
2428
+ #: ../admin/social_login.php:1253
2429
  msgid "Enable at register page"
2430
  msgstr ""
2431
 
2432
+ #: ../admin/social_login.php:1263
2433
  msgid ""
2434
  "Social Login interface will get enabled at the registration page of your "
2435
  "website"
2436
  msgstr ""
2437
 
2438
+ #: ../admin/social_login.php:1270
2439
  msgid "Enable at comment form"
2440
  msgstr ""
2441
 
2442
+ #: ../admin/social_login.php:1280
2443
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2444
  msgstr ""
2445
 
2446
+ #: ../admin/social_login.php:1294
2447
  msgid "Enable before WooCommerce Customer Login Form"
2448
  msgstr ""
2449
 
2450
+ #: ../admin/social_login.php:1304
2451
  msgid ""
2452
  "Social Login Interface will get enabled before the customer login form at "
2453
  "WooCommerce My Account page"
2454
  msgstr ""
2455
 
2456
+ #: ../admin/social_login.php:1311
2457
  msgid "Enable at WooCommerce Customer Login Form"
2458
  msgstr ""
2459
 
2460
+ #: ../admin/social_login.php:1321
2461
  msgid ""
2462
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2463
  "My Account page"
2464
  msgstr ""
2465
 
2466
+ #: ../admin/social_login.php:1328
2467
  msgid "Enable at WooCommerce Customer Register Form"
2468
  msgstr ""
2469
 
2470
+ #: ../admin/social_login.php:1338
2471
  msgid ""
2472
  "Integrate Social Login Interface with the customer register form at "
2473
  "WooCommerce My Account page"
2474
  msgstr ""
2475
 
2476
+ #: ../admin/social_login.php:1345
2477
  msgid "Enable at WooCommerce checkout page"
2478
  msgstr ""
2479
 
2480
+ #: ../admin/social_login.php:1355
2481
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2482
  msgstr ""
2483
 
2484
+ #: ../admin/social_login.php:1365
2485
  msgid "Auto-approve comments made by Social Login users"
2486
  msgstr ""
2487
 
2488
+ #: ../admin/social_login.php:1375
2489
  msgid ""
2490
  "If this option is enabled, and WordPress comment is made by Social Login "
2491
  "user, comment will get approved immediately without keeping in moderation."
2492
  msgstr ""
2493
 
2494
+ #: ../admin/social_login.php:1376
2495
  msgid "Note: This is not related to Facebook comments"
2496
  msgstr ""
2497
 
2498
+ #: ../admin/social_login.php:1385
2499
  msgid "Enable social avatar"
2500
  msgstr ""
2501
 
2502
+ #: ../admin/social_login.php:1395
2503
  msgid ""
2504
  "Social profile pictures of the logged in user will be displayed as profile "
2505
  "avatar"
2506
  msgstr ""
2507
 
2508
+ #: ../admin/social_login.php:1404
2509
  msgid "Avatar quality"
2510
  msgstr ""
2511
 
2512
+ #: ../admin/social_login.php:1407
2513
  msgid "Average"
2514
  msgstr ""
2515
 
2516
+ #: ../admin/social_login.php:1408
2517
  msgid "Best"
2518
  msgstr ""
2519
 
2520
+ #: ../admin/social_login.php:1415
2521
  msgid "Choose avatar quality"
2522
  msgstr ""
2523
 
2524
+ #: ../admin/social_login.php:1423
2525
  msgid ""
2526
  "Show option for users to update social avatar at BuddyPress profile page"
2527
  msgstr ""
2528
 
2529
+ #: ../admin/social_login.php:1433
2530
  msgid ""
2531
  "If enabled, users would be able to update their social avatar from \"Profile "
2532
  "photo\" section in BuddyPress profile at front-end"
2533
  msgstr ""
2534
 
2535
+ #: ../admin/social_login.php:1453
2536
  msgid ""
2537
  "If enabled and Social ID provider does not provide user's email address on "
2538
  "login, user will be asked to provide his/her email address. Otherwise, a "
2539
  "dummy email will be generated"
2540
  msgstr ""
2541
 
2542
+ #: ../admin/social_login.php:1461
2543
  msgid "Send post-registration email to user to set account password"
2544
  msgstr ""
2545
 
2546
+ #: ../admin/social_login.php:1471
2547
  msgid ""
2548
  "If enabled, an email will be sent to user after registration through Social "
2549
  "Login, regarding his/her login credentials (username-password to be able to "
2550
  "login via traditional login form)"
2551
  msgstr ""
2552
 
2553
+ #: ../admin/social_login.php:1478
2554
  msgid "Send new user registration notification email to admin"
2555
  msgstr ""
2556
 
2557
+ #: ../admin/social_login.php:1488
2558
  msgid ""
2559
  "If enabled, an email will be sent to admin after new user registers through "
2560
  "Social Login, notifying admin about the new user registration"
2561
  msgstr ""
2562
 
2563
+ #: ../admin/social_login.php:1495
2564
  msgid "Login redirection"
2565
  msgstr ""
2566
 
2567
+ #: ../admin/social_login.php:1499
2568
  msgid "Same page where user logged in"
2569
  msgstr ""
2570
 
2571
+ #: ../admin/social_login.php:1503 ../admin/social_login.php:1532
2572
  msgid "Account dashboard"
2573
  msgstr ""
2574
 
2575
+ #: ../admin/social_login.php:1506 ../admin/social_login.php:1535
2576
  msgid "BuddyPress profile page"
2577
  msgstr ""
2578
 
2579
+ #: ../admin/social_login.php:1509 ../admin/social_login.php:1538
2580
  msgid "Custom Url"
2581
  msgstr ""
2582
 
2583
+ #: ../admin/social_login.php:1517
2584
  msgid "User will be redirected to the selected page after Social Login"
2585
  msgstr ""
2586
 
2587
+ #: ../admin/social_login.php:1524
2588
  msgid "Registration redirection"
2589
  msgstr ""
2590
 
2591
+ #: ../admin/social_login.php:1528
2592
  msgid "Same page from where user registered"
2593
  msgstr ""
2594
 
2595
+ #: ../admin/social_login.php:1546
2596
  msgid ""
2597
  "User will be redirected to the selected page after registration (first "
2598
  "Social Login) through Social Login"
2599
  msgstr ""
2600
 
2601
+ #: ../admin/social_login.php:1555
2602
  msgid "Social Account Linking Options"
2603
  msgstr ""
2604
 
2605
+ #: ../admin/social_login.php:1570
2606
  msgid "Text to display above the Social Account Linking interface"
2607
  msgstr ""
2608
 
2609
+ #: ../admin/social_login.php:1577
2610
  msgid ""
2611
  "Link social account to already existing account, if email address matches"
2612
  msgstr ""
2613
 
2614
+ #: ../admin/social_login.php:1587
2615
  msgid ""
2616
  "If email address of the user's Social Account matches with an already "
2617
  "existing account at your website, that social account will be linked to "
2619
  "Linking interface at their profile page."
2620
  msgstr ""
2621
 
2622
+ #: ../admin/social_login.php:1595
2623
  msgid "Enable social account linking at BuddyPress profile page"
2624
  msgstr ""
2625
 
2626
+ #: ../admin/social_login.php:1605
2627
  msgid ""
2628
  "Enable this option to show social account linking interface at BuddyPress "
2629
  "profile page"
2630
  msgstr ""
2631
 
2632
+ #: ../admin/social_login.php:1616
2633
  msgid "Email popup options"
2634
  msgstr ""
2635
 
2636
+ #: ../admin/social_login.php:1621
2637
  msgid "Text on 'Email required' popup"
2638
  msgstr ""
2639
 
2640
+ #: ../admin/social_login.php:1631
2641
  msgid ""
2642
  "This text will be displayed on email required popup. Leave empty if not "
2643
  "required."
2644
  msgstr ""
2645
 
2646
+ #: ../admin/social_login.php:1639
2647
  msgid "Error message for 'Email required' popup"
2648
  msgstr ""
2649
 
2650
+ #: ../admin/social_login.php:1649
2651
  msgid ""
2652
  "This message will be displayed to user if it provides invalid or already "
2653
  "registered email"
2654
  msgstr ""
2655
 
2656
+ #: ../admin/social_login.php:1657
2657
  msgid "Email popup height"
2658
  msgstr ""
2659
 
2660
+ #: ../admin/social_login.php:1667
2661
  msgid ""
2662
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2663
  "can increase the height of popup by specifying in this option. Leave empty "
2664
  "for default."
2665
  msgstr ""
2666
 
2667
+ #: ../admin/social_login.php:1674
2668
  msgid "Enable email verification"
2669
  msgstr ""
2670
 
2671
+ #: ../admin/social_login.php:1684
2672
  msgid ""
2673
  "If enabled, email provided by the user will be verified by sending a "
2674
  "confirmation link to that email. User would not be able to login without "
2675
  "verifying his/her email"
2676
  msgstr ""
2677
 
2678
+ #: ../admin/social_login.php:1704
2679
  msgid "Enable GDPR opt-in"
2680
  msgstr ""
2681
 
2682
+ #: ../admin/social_login.php:1714
2683
  msgid ""
2684
  "Enable it to show GDPR opt-in for social login and social account linking"
2685
  msgstr ""
2686
 
2687
+ #: ../admin/social_login.php:1722
2688
  msgid "Placement of GDPR opt-in"
2689
  msgstr ""
2690
 
2691
+ #: ../admin/social_login.php:1726
2692
  msgid "Above Social Login icons"
2693
  msgstr ""
2694
 
2695
+ #: ../admin/social_login.php:1728
2696
  msgid "Below Social Login icons"
2697
  msgstr ""
2698
 
2699
+ #: ../admin/social_login.php:1734
2700
  msgid "Placement of GDPR opt-in above or below the social login icons"
2701
  msgstr ""
2702
 
2703
+ #: ../admin/social_login.php:1741
2704
  msgid "Opt-in text"
2705
  msgstr ""
2706
 
2707
+ #: ../admin/social_login.php:1751
2708
  msgid "Text for the GDPR opt-in"
2709
  msgstr ""
2710
 
2711
+ #: ../admin/social_login.php:1758
2712
  msgid "Text to link to Terms-Conditions page"
2713
  msgstr ""
2714
 
2715
+ #: ../admin/social_login.php:1768
2716
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2717
  msgstr ""
2718
 
2719
+ #: ../admin/social_login.php:1775
2720
  msgid "Terms-Conditions Url"
2721
  msgstr ""
2722
 
2723
+ #: ../admin/social_login.php:1785
2724
  msgid "Url of the terms-conditions page of your website"
2725
  msgstr ""
2726
 
2727
+ #: ../admin/social_login.php:1792
2728
  msgid "Text to link to Privacy Policy page"
2729
  msgstr ""
2730
 
2731
+ #: ../admin/social_login.php:1802
2732
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2733
  msgstr ""
2734
 
2735
+ #: ../admin/social_login.php:1809
2736
  msgid "Privacy Policy Url"
2737
  msgstr ""
2738
 
2739
+ #: ../admin/social_login.php:1819
2740
  msgid "Url of the privacy policy page of your website"
2741
  msgstr ""
2742
 
2743
+ #: ../admin/social_login.php:1870 ../inc/widget.php:260 ../inc/widget.php:438
2744
  #: ../inc/widget.php:602 ../inc/widget.php:750
2745
  msgid "Select"
2746
  msgstr ""
2747
 
2748
+ #: ../admin/social_login.php:1901
2749
  msgid "Social Login Shortcode & Widget"
2750
  msgstr ""
2751
 
2752
+ #: ../admin/social_login.php:1902
2753
  msgid "Social Linking Shortcode"
2754
  msgstr ""
2755
 
2756
+ #: ../admin/social_login.php:1917
2757
  msgid "Why is social login not working?"
2758
  msgstr ""
2759
 
2760
+ #: ../admin/social_login.php:1918
2761
  msgid ""
2762
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2763
  "belong to the same app"
2764
  msgstr ""
2765
 
2766
+ #: ../admin/social_login.php:1920
2767
  msgid "Social Login not working with Varnish enabled"
2768
  msgstr ""
2769
 
2770
+ #: ../admin/social_login.php:1921
2771
  msgid ""
2772
  "Why the user is not appearing logged in even after Social Login until the "
2773
  "webpage is refreshed manually?"
2947
  msgid "Archives"
2948
  msgstr ""
2949
 
2950
+ #: ../inc/social_sharing.php:225
2951
+ msgid "More"
2952
+ msgstr ""
2953
+
2954
  #: ../inc/social_sharing.php:942 ../inc/social_sharing.php:1180
2955
  msgid "Invalid request"
2956
  msgstr ""
2959
  msgid "Providers not selected"
2960
  msgstr ""
2961
 
2962
+ #: ../inc/social_sharing_networks.php:57
2963
+ msgid "Copy Link"
2964
+ msgstr ""
2965
+
2966
+ #: ../inc/social_login.php:1030
2967
  msgid "Email"
2968
  msgstr ""
2969
 
2970
+ #: ../inc/social_login.php:1031
2971
  msgid "Confirm email"
2972
  msgstr ""
2973
 
2974
+ #: ../inc/social_login.php:1033
2975
  msgid "Save"
2976
  msgstr ""
2977
 
2978
+ #: ../inc/social_login.php:1034
2979
  msgid "Cancel"
2980
  msgstr ""
2981
 
2982
+ #: ../inc/social_login.php:1108
2983
  msgid "Email Verification"
2984
  msgstr ""
2985
 
2986
+ #: ../inc/social_login.php:1110
2987
  msgid ""
2988
  "Please click on the following link or paste it in browser to verify your "
2989
  "email"
library/SteamLogin/SteamLogin.php CHANGED
@@ -1,118 +1,118 @@
1
  <?php
2
  require 'SteamLoginInterface.php';
3
-
4
- class SteamLogin implements SteamLoginInterface
5
- {
6
- /**
7
- * Steam Community OpenID URL
8
- *
9
- * @var string
10
- */
11
- private static $openId = 'https://steamcommunity.com/openid/login';
12
-
13
- /**
14
- * Validates a given URL, ensuring it contains the http or https URI Scheme
15
- *
16
- * @param string $url
17
- * @return bool
18
- */
19
- private function validateUrl($url)
20
- {
21
- if (!filter_var($url, FILTER_VALIDATE_URL)) {
22
- return false;
 
23
  }
24
- return true;
25
- }
26
 
27
- /**
28
- * Build the Steam login URL
29
- *
30
- * @param string $return A custom return to URL
31
- * @return string
32
- */
33
- public function url($return = null, $altRealm = null)
34
- {
35
- $useHttps = !empty($_SERVER['HTTPS']) || (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https');
36
- if (!is_null($return)) {
37
- if (!$this->validateUrl($return)) {
38
- throw new Exception('The return URL must be a valid URL with a URI Scheme or http or https.');
 
 
 
 
 
 
 
39
  }
40
- }
41
- else {
42
- if($altRealm == null)
43
- $return = ($useHttps ? 'https' : 'http') . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'];
44
- else
45
- $return = $altRealm . $_SERVER['SCRIPT_NAME'];
46
- }
47
 
48
- $params = array(
49
- 'openid.ns' => 'http://specs.openid.net/auth/2.0',
50
- 'openid.mode' => 'checkid_setup',
51
- 'openid.return_to' => $return,
52
- 'openid.realm' => $altRealm != null ? $altRealm : (($useHttps ? 'https' : 'http') . '://' . $_SERVER['HTTP_HOST']),
53
- 'openid.identity' => 'http://specs.openid.net/auth/2.0/identifier_select',
54
- 'openid.claimed_id' => 'http://specs.openid.net/auth/2.0/identifier_select',
55
- );
56
 
57
- return self::$openId . '?' . http_build_query($params);
58
- }
59
 
60
- /**
61
- * Validates a Steam login request and returns the users Steam Community ID
62
- *
63
- * @return string
64
- */
65
- public function validate($timeout = 30)
66
- {
67
- $response = null;
68
 
69
- try {
70
- $params = array(
71
- 'openid.assoc_handle' => $_GET['openid_assoc_handle'],
72
- 'openid.signed' => $_GET['openid_signed'],
73
- 'openid.sig' => $_GET['openid_sig'],
74
- 'openid.ns' => 'http://specs.openid.net/auth/2.0',
75
- );
76
 
77
- $signed = explode(',', $_GET['openid_signed']);
78
 
79
- foreach ($signed as $item) {
80
- $val = $_GET['openid_' . str_replace('.', '_', $item)];
81
- $params['openid.' . $item] = get_magic_quotes_gpc() ? stripslashes($val) : $val;
82
- }
83
 
84
- $params['openid.mode'] = 'check_authentication';
85
 
86
- $data = http_build_query($params);
87
 
88
- $context = stream_context_create(array(
89
- 'http' => array(
90
- 'method' => 'POST',
91
- 'header' =>
92
- "Accept-language: en\r\n".
93
- "Content-type: application/x-www-form-urlencoded\r\n" .
94
- "Content-Length: " . strlen($data) . "\r\n",
95
- 'content' => $data,
96
- 'timeout' => $timeout
97
- ),
98
- ));
99
 
100
- $result = file_get_contents(self::$openId, false, $context);
101
 
102
- preg_match("#^https://steamcommunity.com/openid/id/([0-9]{17,25})#", $_GET['openid_claimed_id'], $matches);
103
 
104
- $steamID64 = is_numeric($matches[1]) ? $matches[1] : 0;
105
 
106
- $response = preg_match("#is_valid\s*:\s*true#i", $result) == 1 ? $steamID64 : null;
107
 
108
- } catch (Exception $e) {
109
- $response = null;
110
- }
111
 
112
- if (is_null($response)) {
113
- throw new Exception('The Steam login request timed out or was invalid');
114
- }
115
 
116
- return $response;
 
117
  }
118
- }
1
  <?php
2
  require 'SteamLoginInterface.php';
3
+ if(!class_exists('SteamLogin')){
4
+ class SteamLogin implements SteamLoginInterface{
5
+ /**
6
+ * Steam Community OpenID URL
7
+ *
8
+ * @var string
9
+ */
10
+ private static $openId = 'https://steamcommunity.com/openid/login';
11
+
12
+ /**
13
+ * Validates a given URL, ensuring it contains the http or https URI Scheme
14
+ *
15
+ * @param string $url
16
+ * @return bool
17
+ */
18
+ private function validateUrl($url)
19
+ {
20
+ if (!filter_var($url, FILTER_VALIDATE_URL)) {
21
+ return false;
22
+ }
23
+ return true;
24
  }
 
 
25
 
26
+ /**
27
+ * Build the Steam login URL
28
+ *
29
+ * @param string $return A custom return to URL
30
+ * @return string
31
+ */
32
+ public function url($return = null, $altRealm = null)
33
+ {
34
+ $useHttps = !empty($_SERVER['HTTPS']) || (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https');
35
+ if (!is_null($return)) {
36
+ if (!$this->validateUrl($return)) {
37
+ throw new Exception('The return URL must be a valid URL with a URI Scheme or http or https.');
38
+ }
39
+ }
40
+ else {
41
+ if($altRealm == null)
42
+ $return = ($useHttps ? 'https' : 'http') . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'];
43
+ else
44
+ $return = $altRealm . $_SERVER['SCRIPT_NAME'];
45
  }
 
 
 
 
 
 
 
46
 
47
+ $params = array(
48
+ 'openid.ns' => 'http://specs.openid.net/auth/2.0',
49
+ 'openid.mode' => 'checkid_setup',
50
+ 'openid.return_to' => $return,
51
+ 'openid.realm' => $altRealm != null ? $altRealm : (($useHttps ? 'https' : 'http') . '://' . $_SERVER['HTTP_HOST']),
52
+ 'openid.identity' => 'http://specs.openid.net/auth/2.0/identifier_select',
53
+ 'openid.claimed_id' => 'http://specs.openid.net/auth/2.0/identifier_select',
54
+ );
55
 
56
+ return self::$openId . '?' . http_build_query($params);
57
+ }
58
 
59
+ /**
60
+ * Validates a Steam login request and returns the users Steam Community ID
61
+ *
62
+ * @return string
63
+ */
64
+ public function validate($timeout = 30)
65
+ {
66
+ $response = null;
67
 
68
+ try {
69
+ $params = array(
70
+ 'openid.assoc_handle' => $_GET['openid_assoc_handle'],
71
+ 'openid.signed' => $_GET['openid_signed'],
72
+ 'openid.sig' => $_GET['openid_sig'],
73
+ 'openid.ns' => 'http://specs.openid.net/auth/2.0',
74
+ );
75
 
76
+ $signed = explode(',', $_GET['openid_signed']);
77
 
78
+ foreach ($signed as $item) {
79
+ $val = $_GET['openid_' . str_replace('.', '_', $item)];
80
+ $params['openid.' . $item] = get_magic_quotes_gpc() ? stripslashes($val) : $val;
81
+ }
82
 
83
+ $params['openid.mode'] = 'check_authentication';
84
 
85
+ $data = http_build_query($params);
86
 
87
+ $context = stream_context_create(array(
88
+ 'http' => array(
89
+ 'method' => 'POST',
90
+ 'header' =>
91
+ "Accept-language: en\r\n".
92
+ "Content-type: application/x-www-form-urlencoded\r\n" .
93
+ "Content-Length: " . strlen($data) . "\r\n",
94
+ 'content' => $data,
95
+ 'timeout' => $timeout
96
+ ),
97
+ ));
98
 
99
+ $result = file_get_contents(self::$openId, false, $context);
100
 
101
+ preg_match("#^https://steamcommunity.com/openid/id/([0-9]{17,25})#", $_GET['openid_claimed_id'], $matches);
102
 
103
+ $steamID64 = is_numeric($matches[1]) ? $matches[1] : 0;
104
 
105
+ $response = preg_match("#is_valid\s*:\s*true#i", $result) == 1 ? $steamID64 : null;
106
 
107
+ } catch (Exception $e) {
108
+ $response = null;
109
+ }
110
 
111
+ if (is_null($response)) {
112
+ throw new Exception('The Steam login request timed out or was invalid');
113
+ }
114
 
115
+ return $response;
116
+ }
117
  }
118
+ }
library/SteamLogin/SteamLoginInterface.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  //namespace Ehesp\SteamLogin;
3
-
4
- interface SteamLoginInterface
5
- {
6
- public function url($return);
7
- public function validate();
8
  }
1
  <?php
2
  //namespace Ehesp\SteamLogin;
3
+ if(!interface_exists('SteamLoginInterface')){
4
+ interface SteamLoginInterface{
5
+ public function url($return);
6
+ public function validate();
7
+ }
8
  }
library/Vkontakte/Vkontakte.php CHANGED
@@ -1,545 +1,546 @@
1
  <?php
 
2
  /**
3
  * The Vkontakte PHP SDK
4
  *
5
  * @author Victor Bocharsky <bocharsky.bw@gmail.com>
6
  */
7
- class Vkontakte
8
- {
9
- /**
10
- * The API version used in queries
11
- *
12
- * @link https://vk.com/dev/versions API version list
13
- */
14
- private $apiVersion = '5.103';
15
-
16
- /**
17
- * The client ID (app ID)
18
- *
19
- * @var string
20
- */
21
- private $clientId;
22
-
23
- /**
24
- * The client secret key
25
- *
26
- * @var string
27
- */
28
- private $clientSecret;
29
-
30
- /**
31
- * The scope for login URL
32
- *
33
- * @var array
34
- */
35
- private $scope = array();
36
-
37
- /**
38
- * The URL to which the user will be redirected
39
- *
40
- * @var string
41
- */
42
- private $redirectUri;
43
-
44
- /**
45
- * The response type of login URL
46
- *
47
- * @var string
48
- */
49
- private $responceType = 'code';
50
-
51
- /**
52
- * The current access token
53
- *
54
- * @var array
55
- */
56
- private $accessToken;
57
-
58
- /**
59
- * The type of connection
60
- *
61
- * @var boolean
62
- */
63
- private $persistentConnect = true;
64
-
65
- /**
66
- * The custom string which VK will return back.
67
- *
68
- * @var string
69
- */
70
- private $state;
71
-
72
- /**
73
- * The connection
74
- *
75
- * @var resource
76
- */
77
- private static $connection;
78
-
79
- /**
80
- * @var bool
81
- */
82
- private $IPv6Disabled = false;
83
-
84
- /**
85
- * The Vkontakte instance constructor for quick configuration
86
- *
87
- * @param array $config
88
- */
89
- public function __construct(array $config = array())
90
- {
91
- if (isset($config['api_version'])) {
92
- $this->setApiVersion($config['api_version']);
93
- }
94
- if (isset($config['client_id'])) {
95
- $this->setClientId($config['client_id']);
96
- }
97
- if (isset($config['client_secret'])) {
98
- $this->setClientSecret($config['client_secret']);
99
- }
100
- if (isset($config['scope'])) {
101
- $this->setScope($config['scope']);
102
- }
103
- if (isset($config['redirect_uri'])) {
104
- $this->setRedirectUri($config['redirect_uri']);
105
- }
106
- if (isset($config['response_type'])) {
107
- $this->setResponceType($config['response_type']);
108
- }
109
- if (isset($config['persistent_connect'])) {
110
- $this->setPersistentConnect($config['persistent_connect']);
111
- }
112
- if (isset($config['state'])) {
113
- $this->setState($config['state']);
 
 
 
 
114
  }
115
- if (isset($config['ipv6_disabled'])) {
116
- $this->disableIPv6();
 
 
 
 
 
 
 
117
  }
118
- }
119
 
120
- /**
121
- * Destruct method
122
- */
123
- public function __destruct()
124
- {
125
- if (is_resource(static::$connection)) {
126
- curl_close(static::$connection);
 
127
  }
128
- }
129
 
130
- /**
131
- * Get the user id of current access token
132
- *
133
- * @return string|null
134
- */
135
- public function getUserId()
136
- {
137
- return isset($this->accessToken['user_id']) ? $this->accessToken['user_id'] : null;
138
- }
139
 
140
- /**
141
- * Get the user email of current access token. Email should be requested in scope first.
142
- *
143
- * @return string|null
144
- */
145
- public function getUserEmail()
146
- {
147
- return isset($this->accessToken['email']) ? $this->accessToken['email'] : null;
148
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
149
 
150
- /**
151
- * Get the login URL for Vkontakte sign in
152
- *
153
- * @return string
154
- */
155
- public function getLoginUrl()
156
- {
157
- // required params
158
- $params = array(
159
- 'client_id' => $this->getClientId(),
160
- 'redirect_uri' => $this->getRedirectUri(),
161
- );
162
- // optional params
163
- if ($this->getScope()) {
164
- $params['scope'] = implode(',', $this->getScope());
165
- }
166
- if ($this->getResponceType()) {
167
- $params['response_type'] = $this->getResponceType();
168
- }
169
- if ($this->apiVersion) {
170
- $params['v'] = $this->apiVersion;
171
- }
172
- if ($this->state) {
173
- $params['state'] = $this->state;
174
  }
175
 
176
- return 'https://oauth.vk.com/authorize?' . http_build_query($params);
177
- }
178
-
179
- /**
180
- * Authenticate user and get access token from server
181
- *
182
- * @param string $code
183
- *
184
- * @return $this
185
- */
186
- public function authenticate($code = null)
187
- {
188
- if (null === $code) {
189
- if (isset($_GET['code'])) {
190
- $code = $_GET['code'];
191
  }
192
- }
193
 
194
- $url = 'https://oauth.vk.com/access_token?' . http_build_query(array(
195
- 'client_id' => $this->getClientId(),
196
- 'client_secret' => $this->getClientSecret(),
197
- 'code' => $code,
198
- 'redirect_uri' => $this->getRedirectUri(),
199
- ));
200
 
201
- $token = $this->curl($url);
202
- $decodedToken = json_decode($token, true);
203
- $decodedToken['created'] = time(); // add access token created unix timestamp to array
204
 
205
- $this->setAccessToken($decodedToken);
206
 
207
- return $this;
208
- }
209
 
210
- /**
211
- * Make an API call to https://api.vk.com/method/
212
- *
213
- * @param string $method API method name
214
- * @param array $query API method params
215
- *
216
- * @return mixed The response
217
- *
218
- * @throws \Exception
219
- */
220
- public function api($method, array $query = array())
221
- {
222
- /* Generate query string from array */
223
- foreach ($query as $param => $value) {
224
- if (is_array($value)) {
225
- // implode values of each nested array with comma
226
- $query[$param] = implode(',', $value);
 
227
  }
228
- }
229
- $query['access_token'] = isset($this->accessToken['access_token'])
230
- ? $this->accessToken['access_token']
231
- : '';
232
- if (empty($query['v'])) {
233
- $query['v'] = $this->getApiVersion();
234
- }
235
- $url = 'https://api.vk.com/method/' . $method . '?' . http_build_query($query);
236
- $result = json_decode($this->curl($url), true);
237
 
238
- if (isset($result['response'])) {
239
- return $result['response'];
 
 
 
240
  }
241
 
242
- return $result;
243
- }
 
 
 
 
 
 
 
244
 
245
- /**
246
- * Check is access token expired
247
- *
248
- * @return boolean
249
- */
250
- public function isAccessTokenExpired()
251
- {
252
- return time() > $this->accessToken['created'] + $this->accessToken['expires_in'];
253
- }
 
 
 
 
254
 
255
- /**
256
- * Set the API version
257
- *
258
- * @param string $apiVersion
259
- *
260
- * @return $this
261
- */
262
- public function setApiVersion($apiVersion)
263
- {
264
- $this->apiVersion = $apiVersion;
265
-
266
- return $this;
267
- }
268
 
269
- /**
270
- * Get the API version
271
- *
272
- * @return string
273
- */
274
- public function getApiVersion()
275
- {
276
- return $this->apiVersion;
277
- }
 
 
 
 
278
 
279
- /**
280
- * Set the client ID (app ID)
281
- *
282
- * @param string $clientId
283
- *
284
- * @return $this
285
- */
286
- public function setClientId($clientId)
287
- {
288
- $this->clientId = $clientId;
289
-
290
- return $this;
291
- }
292
 
293
- /**
294
- * Get the client ID (app ID)
295
- *
296
- * @return string
297
- */
298
- public function getClientId()
299
- {
300
- return $this->clientId;
301
- }
 
 
 
 
302
 
303
- /**
304
- * Set the client secret key
305
- *
306
- * @param string $clientSecret
307
- *
308
- * @return $this
309
- */
310
- public function setClientSecret($clientSecret)
311
- {
312
- $this->clientSecret = $clientSecret;
313
-
314
- return $this;
315
- }
316
 
317
- /**
318
- * Get the client secret key
319
- *
320
- * @return string
321
- */
322
- public function getClientSecret()
323
- {
324
- return $this->clientSecret;
325
- }
 
 
 
 
326
 
327
- /**
328
- * Set the scope for login URL
329
- *
330
- * @param array $scope
331
- *
332
- * @return $this
333
- */
334
- public function setScope(array $scope)
335
- {
336
- $this->scope = $scope;
337
-
338
- return $this;
339
- }
340
 
341
- /**
342
- * Get the scope for login URL
343
- *
344
- * @return array
345
- */
346
- public function getScope()
347
- {
348
- return $this->scope;
349
- }
 
 
 
 
350
 
351
- /**
352
- * Set the URL to which the user will be redirected
353
- *
354
- * @param string $redirectUri
355
- *
356
- * @return $this
357
- */
358
- public function setRedirectUri($redirectUri)
359
- {
360
- $this->redirectUri = $redirectUri;
361
-
362
- return $this;
363
- }
364
 
365
- /**
366
- * Get the URL to which the user will be redirected
367
- *
368
- * @return string
369
- */
370
- public function getRedirectUri()
371
- {
372
- return $this->redirectUri;
373
- }
 
 
 
 
374
 
375
- /**
376
- * Set the response type of login URL
377
- *
378
- * @param string $responceType
379
- *
380
- * @return $this
381
- */
382
- public function setResponceType($responceType)
383
- {
384
- $this->responceType = $responceType;
385
-
386
- return $this;
387
- }
388
 
389
- /**
390
- * Get the response type of login URL
391
- *
392
- * @return string
393
- */
394
- public function getResponceType()
395
- {
396
- return $this->responceType;
397
- }
 
 
 
 
398
 
399
- /**
400
- * Set option enable for persistent connection
401
- *
402
- * @param boolean $enable
403
- *
404
- * @return $this
405
- */
406
- public function setPersistentConnect($enable)
407
- {
408
- $this->persistentConnect = (boolean)$enable;
409
-
410
- return $this;
411
- }
412
 
413
- /**
414
- * Whether the status of type connection is persistent
415
- *
416
- * @return boolean
417
- */
418
- public function isPersistentConnect()
419
- {
420
- return $this->persistentConnect;
421
- }
 
 
 
 
 
422
 
423
- /**
424
- * Set the access token
425
- *
426
- * @param string|array $token The access token in json|array format
427
- *
428
- * @return $this
429
- */
430
- public function setAccessToken($token)
431
- {
432
- if (is_string($token)) {
433
- $this->accessToken = json_decode($token, true);
434
- } else {
435
- $this->accessToken = (array)$token;
436
  }
437
 
438
- return $this;
439
- }
 
 
 
 
 
 
 
440
 
441
- /**
442
- * Get the access token
443
- *
444
- * @return array|null The access token
445
- */
446
- public function getAccessToken()
447
- {
448
- return $this->accessToken;
449
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
450
 
451
- /**
452
- * Set the state string
453
- *
454
- * @param string $state. Custom string for returning in response from Vkontakte.
455
- *
456
- * @return $this
457
- */
458
- public function setState($state)
459
- {
460
- $this->state = $state;
461
 
462
- return $this;
463
- }
464
-
465
- /**
466
- * Get the state string
467
- *
468
- * @return string|null
469
- */
470
- public function getState()
471
- {
472
- return $this->state;
473
- }
474
 
475
- public function disableIPv6()
476
- {
477
- $this->IPv6Disabled = true;
478
- }
479
-
480
- public function enableIPv6()
481
- {
482
- $this->IPv6Disabled = false;
483
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
484
 
485
- /**
486
- * @return bool
487
- */
488
- public function isIPv6Disabled()
489
- {
490
- return $this->IPv6Disabled;
491
- }
492
-
493
- /**
494
- * Make the curl request to specified url
495
- *
496
- * @param string $url The url for curl() function
497
- *
498
- * @return mixed The result of curl_exec() function
499
- *
500
- * @throws \Exception
501
- */
502
- protected function curl($url)
503
- {
504
- // create curl resource
505
- if ($this->persistentConnect) {
506
- if (!is_resource(static::$connection)) {
507
- static::$connection = curl_init();
508
  }
509
- $ch = static::$connection;
510
- } else {
511
- $ch = curl_init();
512
- }
513
 
514
- // set url
515
- curl_setopt($ch, CURLOPT_URL, $url);
516
- // return the transfer as a string
517
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
518
- // disable SSL verifying
519
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
520
-
521
- if ($this->IPv6Disabled) {
522
- curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
523
- }
524
 
525
- // $output contains the output string
526
- $result = curl_exec($ch);
 
 
527
 
528
- if (!$result) {
529
- $errno = curl_errno($ch);
530
- $error = curl_error($ch);
531
- }
532
 
533
- if (!$this->persistentConnect) {
534
- // close curl resource to free up system resources
535
- curl_close($ch);
536
- }
537
 
538
- if (isset($errno) && isset($error)) {
539
- throw new \Exception($error, $errno);
540
  }
541
-
542
- return $result;
543
  }
544
-
545
- }
1
  <?php
2
+
3
  /**
4
  * The Vkontakte PHP SDK
5
  *
6
  * @author Victor Bocharsky <bocharsky.bw@gmail.com>
7
  */
8
+ if(!class_exists('Vkontakte')){
9
+ class Vkontakte{
10
+ /**
11
+ * The API version used in queries
12
+ *
13
+ * @link https://vk.com/dev/versions API version list
14
+ */
15
+ private $apiVersion = '5.103';
16
+
17
+ /**
18
+ * The client ID (app ID)
19
+ *
20
+ * @var string
21
+ */
22
+ private $clientId;
23
+
24
+ /**
25
+ * The client secret key
26
+ *
27
+ * @var string
28
+ */
29
+ private $clientSecret;
30
+
31
+ /**
32
+ * The scope for login URL
33
+ *
34
+ * @var array
35
+ */
36
+ private $scope = array();
37
+
38
+ /**
39
+ * The URL to which the user will be redirected
40
+ *
41
+ * @var string
42
+ */
43
+ private $redirectUri;
44
+
45
+ /**
46
+ * The response type of login URL
47
+ *
48
+ * @var string
49
+ */
50
+ private $responceType = 'code';
51
+
52
+ /**
53
+ * The current access token
54
+ *
55
+ * @var array
56
+ */
57
+ private $accessToken;
58
+
59
+ /**
60
+ * The type of connection
61
+ *
62
+ * @var boolean
63
+ */
64
+ private $persistentConnect = true;
65
+
66
+ /**
67
+ * The custom string which VK will return back.
68
+ *
69
+ * @var string
70
+ */
71
+ private $state;
72
+
73
+ /**
74
+ * The connection
75
+ *
76
+ * @var resource
77
+ */
78
+ private static $connection;
79
+
80
+ /**
81
+ * @var bool
82
+ */
83
+ private $IPv6Disabled = false;
84
+
85
+ /**
86
+ * The Vkontakte instance constructor for quick configuration
87
+ *
88
+ * @param array $config
89
+ */
90
+ public function __construct(array $config = array())
91
+ {
92
+ if (isset($config['api_version'])) {
93
+ $this->setApiVersion($config['api_version']);
94
+ }
95
+ if (isset($config['client_id'])) {
96
+ $this->setClientId($config['client_id']);
97
+ }
98
+ if (isset($config['client_secret'])) {
99
+ $this->setClientSecret($config['client_secret']);
100
+ }
101
+ if (isset($config['scope'])) {
102
+ $this->setScope($config['scope']);
103
+ }
104
+ if (isset($config['redirect_uri'])) {
105
+ $this->setRedirectUri($config['redirect_uri']);
106
+ }
107
+ if (isset($config['response_type'])) {
108
+ $this->setResponceType($config['response_type']);
109
+ }
110
+ if (isset($config['persistent_connect'])) {
111
+ $this->setPersistentConnect($config['persistent_connect']);
112
+ }
113
+ if (isset($config['state'])) {
114
+ $this->setState($config['state']);
115
+ }
116
+ if (isset($config['ipv6_disabled'])) {
117
+ $this->disableIPv6();
118
+ }
119
  }
120
+
121
+ /**
122
+ * Destruct method
123
+ */
124
+ public function __destruct()
125
+ {
126
+ if (is_resource(static::$connection)) {
127
+ curl_close(static::$connection);
128
+ }
129
  }
 
130
 
131
+ /**
132
+ * Get the user id of current access token
133
+ *
134
+ * @return string|null
135
+ */
136
+ public function getUserId()
137
+ {
138
+ return isset($this->accessToken['user_id']) ? $this->accessToken['user_id'] : null;
139
  }
 
140
 
141
+ /**
142
+ * Get the user email of current access token. Email should be requested in scope first.
143
+ *
144
+ * @return string|null
145
+ */
146
+ public function getUserEmail()
147
+ {
148
+ return isset($this->accessToken['email']) ? $this->accessToken['email'] : null;
149
+ }
150
 
151
+ /**
152
+ * Get the login URL for Vkontakte sign in
153
+ *
154
+ * @return string
155
+ */
156
+ public function getLoginUrl()
157
+ {
158
+ // required params
159
+ $params = array(
160
+ 'client_id' => $this->getClientId(),
161
+ 'redirect_uri' => $this->getRedirectUri(),
162
+ );
163
+ // optional params
164
+ if ($this->getScope()) {
165
+ $params['scope'] = implode(',', $this->getScope());
166
+ }
167
+ if ($this->getResponceType()) {
168
+ $params['response_type'] = $this->getResponceType();
169
+ }
170
+ if ($this->apiVersion) {
171
+ $params['v'] = $this->apiVersion;
172
+ }
173
+ if ($this->state) {
174
+ $params['state'] = $this->state;
175
+ }
176
 
177
+ return 'https://oauth.vk.com/authorize?' . http_build_query($params);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
  }
179
 
180
+ /**
181
+ * Authenticate user and get access token from server
182
+ *
183
+ * @param string $code
184
+ *
185
+ * @return $this
186
+ */
187
+ public function authenticate($code = null)
188
+ {
189
+ if (null === $code) {
190
+ if (isset($_GET['code'])) {
191
+ $code = $_GET['code'];
192
+ }
 
 
193
  }
 
194
 
195
+ $url = 'https://oauth.vk.com/access_token?' . http_build_query(array(
196
+ 'client_id' => $this->getClientId(),
197
+ 'client_secret' => $this->getClientSecret(),
198
+ 'code' => $code,
199
+ 'redirect_uri' => $this->getRedirectUri(),
200
+ ));
201
 
202
+ $token = $this->curl($url);
203
+ $decodedToken = json_decode($token, true);
204
+ $decodedToken['created'] = time(); // add access token created unix timestamp to array
205
 
206
+ $this->setAccessToken($decodedToken);
207
 
208
+ return $this;
209
+ }
210
 
211
+ /**
212
+ * Make an API call to https://api.vk.com/method/
213
+ *
214
+ * @param string $method API method name
215
+ * @param array $query API method params
216
+ *
217
+ * @return mixed The response
218
+ *
219
+ * @throws \Exception
220
+ */
221
+ public function api($method, array $query = array())
222
+ {
223
+ /* Generate query string from array */
224
+ foreach ($query as $param => $value) {
225
+ if (is_array($value)) {
226
+ // implode values of each nested array with comma
227
+ $query[$param] = implode(',', $value);
228
+ }
229
  }
230
+ $query['access_token'] = isset($this->accessToken['access_token'])
231
+ ? $this->accessToken['access_token']
232
+ : '';
233
+ if (empty($query['v'])) {
234
+ $query['v'] = $this->getApiVersion();
235
+ }
236
+ $url = 'https://api.vk.com/method/' . $method . '?' . http_build_query($query);
237
+ $result = json_decode($this->curl($url), true);
 
238
 
239
+ if (isset($result['response'])) {
240
+ return $result['response'];
241
+ }
242
+
243
+ return $result;
244
  }
245
 
246
+ /**
247
+ * Check is access token expired
248
+ *
249
+ * @return boolean
250
+ */
251
+ public function isAccessTokenExpired()
252
+ {
253
+ return time() > $this->accessToken['created'] + $this->accessToken['expires_in'];
254
+ }
255
 
256
+ /**
257
+ * Set the API version
258
+ *
259
+ * @param string $apiVersion
260
+ *
261
+ * @return $this
262
+ */
263
+ public function setApiVersion($apiVersion)
264
+ {
265
+ $this->apiVersion = $apiVersion;
266
+
267
+ return $this;
268
+ }
269
 
270
+ /**
271
+ * Get the API version
272
+ *
273
+ * @return string
274
+ */
275
+ public function getApiVersion()
276
+ {
277
+ return $this->apiVersion;
278
+ }
 
 
 
 
279
 
280
+ /**
281
+ * Set the client ID (app ID)
282
+ *
283
+ * @param string $clientId
284
+ *
285
+ * @return $this
286
+ */
287
+ public function setClientId($clientId)
288
+ {
289
+ $this->clientId = $clientId;
290
+
291
+ return $this;
292
+ }
293
 
294
+ /**
295
+ * Get the client ID (app ID)
296
+ *
297
+ * @return string
298
+ */
299
+ public function getClientId()
300
+ {
301
+ return $this->clientId;
302
+ }
 
 
 
 
303
 
304
+ /**
305
+ * Set the client secret key
306
+ *
307
+ * @param string $clientSecret
308
+ *
309
+ * @return $this
310
+ */
311
+ public function setClientSecret($clientSecret)
312
+ {
313
+ $this->clientSecret = $clientSecret;
314
+
315
+ return $this;
316
+ }
317
 
318
+ /**
319
+ * Get the client secret key
320
+ *
321
+ * @return string
322
+ */
323
+ public function getClientSecret()
324
+ {
325
+ return $this->clientSecret;
326
+ }
 
 
 
 
327
 
328
+ /**
329
+ * Set the scope for login URL
330
+ *
331
+ * @param array $scope
332
+ *
333
+ * @return $this
334
+ */
335
+ public function setScope(array $scope)
336
+ {
337
+ $this->scope = $scope;
338
+
339
+ return $this;
340
+ }
341
 
342
+ /**
343
+ * Get the scope for login URL
344
+ *
345
+ * @return array
346
+ */
347
+ public function getScope()
348
+ {
349
+ return $this->scope;
350
+ }
 
 
 
 
351
 
352
+ /**
353
+ * Set the URL to which the user will be redirected
354
+ *
355
+ * @param string $redirectUri
356
+ *
357
+ * @return $this
358
+ */
359
+ public function setRedirectUri($redirectUri)
360
+ {
361
+ $this->redirectUri = $redirectUri;
362
+
363
+ return $this;
364
+ }
365
 
366
+ /**
367
+ * Get the URL to which the user will be redirected
368
+ *
369
+ * @return string
370
+ */
371
+ public function getRedirectUri()
372
+ {
373
+ return $this->redirectUri;
374
+ }
 
 
 
 
375
 
376
+ /**
377
+ * Set the response type of login URL
378
+ *
379
+ * @param string $responceType
380
+ *
381
+ * @return $this
382
+ */
383
+ public function setResponceType($responceType)
384
+ {
385
+ $this->responceType = $responceType;
386
+
387
+ return $this;
388
+ }
389
 
390
+ /**
391
+ * Get the response type of login URL
392
+ *
393
+ * @return string
394
+ */
395
+ public function getResponceType()
396
+ {
397
+ return $this->responceType;
398
+ }
 
 
 
 
399
 
400
+ /**
401
+ * Set option enable for persistent connection
402
+ *
403
+ * @param boolean $enable
404
+ *
405
+ * @return $this
406
+ */
407
+ public function setPersistentConnect($enable)
408
+ {
409
+ $this->persistentConnect = (boolean)$enable;
410
+
411
+ return $this;
412
+ }
413
 
414
+ /**
415
+ * Whether the status of type connection is persistent
416
+ *
417
+ * @return boolean
418
+ */
419
+ public function isPersistentConnect()
420
+ {
421
+ return $this->persistentConnect;
422
+ }
 
 
 
 
423
 
424
+ /**
425
+ * Set the access token
426
+ *
427
+ * @param string|array $token The access token in json|array format
428
+ *
429
+ * @return $this
430
+ */
431
+ public function setAccessToken($token)
432
+ {
433
+ if (is_string($token)) {
434
+ $this->accessToken = json_decode($token, true);
435
+ } else {
436
+ $this->accessToken = (array)$token;
437
+ }
438
 
439
+ return $this;
 
 
 
 
 
 
 
 
 
 
 
 
440
  }
441
 
442
+ /**
443
+ * Get the access token
444
+ *
445
+ * @return array|null The access token
446
+ */
447
+ public function getAccessToken()
448
+ {
449
+ return $this->accessToken;
450
+ }
451
 
452
+ /**
453
+ * Set the state string
454
+ *
455
+ * @param string $state. Custom string for returning in response from Vkontakte.
456
+ *
457
+ * @return $this
458
+ */
459
+ public function setState($state)
460
+ {
461
+ $this->state = $state;
462
+
463
+ return $this;
464
+ }
465
+
466
+ /**
467
+ * Get the state string
468
+ *
469
+ * @return string|null
470
+ */
471
+ public function getState()
472
+ {
473
+ return $this->state;
474
+ }
475
 
476
+ public function disableIPv6()
477
+ {
478
+ $this->IPv6Disabled = true;
479
+ }
 
 
 
 
 
 
480
 
481
+ public function enableIPv6()
482
+ {
483
+ $this->IPv6Disabled = false;
484
+ }
 
 
 
 
 
 
 
 
485
 
486
+ /**
487
+ * @return bool
488
+ */
489
+ public function isIPv6Disabled()
490
+ {
491
+ return $this->IPv6Disabled;
492
+ }
493
+
494
+ /**
495
+ * Make the curl request to specified url
496
+ *
497
+ * @param string $url The url for curl() function
498
+ *
499
+ * @return mixed The result of curl_exec() function
500
+ *
501
+ * @throws \Exception
502
+ */
503
+ protected function curl($url)
504
+ {
505
+ // create curl resource
506
+ if ($this->persistentConnect) {
507
+ if (!is_resource(static::$connection)) {
508
+ static::$connection = curl_init();
509
+ }
510
+ $ch = static::$connection;
511
+ } else {
512
+ $ch = curl_init();
513
+ }
514
 
515
+ // set url
516
+ curl_setopt($ch, CURLOPT_URL, $url);
517
+ // return the transfer as a string
518
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
519
+ // disable SSL verifying
520
+ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
521
+
522
+ if ($this->IPv6Disabled) {
523
+ curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
524
  }
 
 
 
 
525
 
526
+ // $output contains the output string
527
+ $result = curl_exec($ch);
 
 
 
 
 
 
 
 
528
 
529
+ if (!$result) {
530
+ $errno = curl_errno($ch);
531
+ $error = curl_error($ch);
532
+ }
533
 
534
+ if (!$this->persistentConnect) {
535
+ // close curl resource to free up system resources
536
+ curl_close($ch);
537
+ }
538
 
539
+ if (isset($errno) && isset($error)) {
540
+ throw new \Exception($error, $errno);
541
+ }
 
542
 
543
+ return $result;
 
544
  }
 
 
545
  }
546
+ }
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Social Share, Social Login and Social Comments Plugin - Super Socializer ===
2
  Contributors: Heateor, farhan8heateor, jatin8heateor, the_champ, Hungarian Translator: László Tavaszi http://kerekmese.hu, Chinese Translator: CalmSmile calmsmile.org, Portuguese Translator: Paulo Purkyt https://www.linkedin.com/in/ppurkyt, Italian Translator: FG3D (Freedom's Gate) https://fg3d.net, Spanish translator: Ignacio Iglesias http://trespies.com, Arabic Translator: http://www.ArabsSM.com, Russian/Ukrainian Translator: Nicholas Lagunov
3
  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
5
  Requires at least: 2.5.0
6
  Tested up to: 5.7
7
- Stable tag: 7.13.15
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
@@ -43,7 +43,7 @@ Integrate Social Login, Social Share and Social Comments at your website easiest
43
  * Mobile responsive sharing interface
44
  * Compatible with AMP
45
  * Enable/Disable vertical/floating sharing interface on mobile device
46
- * Social Login from 20 Social Networks - Facebook, Google, Linkedin, Twitter, Vkontakte, Line, Windows Live (Microsoft), Yahoo, WordPress, Dribbble, Kakao, Spotify, Github, Twitch, Instagram, Steam, Dropbox, Foursquare, Disqus and Reddit
47
  * Enable Social Login interface at WordPress Login, Register pages and comment form
48
  * Syncs user's basic social profile data with WordPress profile
49
  * Enable Social Login at WooCommerce checkout page and customer login form
@@ -212,6 +212,14 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
212
  8. **Social Commenting**: Disqus Commenting selected
213
 
214
  == Changelog ==
 
 
 
 
 
 
 
 
215
  = 7.13.15 [30 March 2021] =
216
  [Bugfix] Kakao login was not working
217
 
@@ -2236,4 +2244,12 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
2236
  [Bugfix] Redirect URL shown for Twitch was incorrect when clicking the (?) icon in front of the Twitch Client ID
2237
 
2238
  = 7.13.15 [30 March 2021] =
2239
- [Bugfix] Kakao login was not working
 
 
 
 
 
 
 
 
1
  === Social Share, Social Login and Social Comments Plugin - Super Socializer ===
2
  Contributors: Heateor, farhan8heateor, jatin8heateor, the_champ, Hungarian Translator: László Tavaszi http://kerekmese.hu, Chinese Translator: CalmSmile calmsmile.org, Portuguese Translator: Paulo Purkyt https://www.linkedin.com/in/ppurkyt, Italian Translator: FG3D (Freedom's Gate) https://fg3d.net, Spanish translator: Ignacio Iglesias http://trespies.com, Arabic Translator: http://www.ArabsSM.com, Russian/Ukrainian Translator: Nicholas Lagunov
3
  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
5
  Requires at least: 2.5.0
6
  Tested up to: 5.7
7
+ Stable tag: 7.13.16
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
43
  * Mobile responsive sharing interface
44
  * Compatible with AMP
45
  * Enable/Disable vertical/floating sharing interface on mobile device
46
+ * Social Login from 23 Social Networks - Facebook, Google, Linkedin, Twitter, Vkontakte, Line, Windows Live (Microsoft), Yahoo, WordPress, Dribbble, Kakao, Spotify, Github, Twitch, Instagram, Steam, Dropbox, Foursquare, Disqus, Reddit, Stack Overflow, Discord and Amazon
47
  * Enable Social Login interface at WordPress Login, Register pages and comment form
48
  * Syncs user's basic social profile data with WordPress profile
49
  * Enable Social Login at WooCommerce checkout page and customer login form
212
  8. **Social Commenting**: Disqus Commenting selected
213
 
214
  == Changelog ==
215
+ = 7.13.16 [6 April 2021] =
216
+ * [New] Plugin now supports Amazon, Stack Overflow and Discord for social login
217
+ * [New] Added an option to disable Social Login for administrators of the website
218
+ * [Bugfix] Third party libraries being used for social login were conflicting with the same libraries being used in other plugins
219
+ * [Improvement] Updated the Facebook SDK being used throughout the plugin to the latest version 10.0
220
+ * [Improvement] "More", "Copy Link" and "Search" strings were not being translated
221
+ <a href="https://blog.heateor.com/super-socializer-now-supports-discord-stack-overflow-and-amazon-for-social-login" target="_blank">More details on What's new</a>
222
+
223
  = 7.13.15 [30 March 2021] =
224
  [Bugfix] Kakao login was not working
225
 
2244
  [Bugfix] Redirect URL shown for Twitch was incorrect when clicking the (?) icon in front of the Twitch Client ID
2245
 
2246
  = 7.13.15 [30 March 2021] =
2247
+ [Bugfix] Kakao login was not working
2248
+
2249
+ = 7.13.16 [6 April 2021] =
2250
+ * [New] Plugin now supports Amazon, Stack Overflow and Discord for social login
2251
+ * [New] Added an option to disable Social Login for administrators of the website
2252
+ * [Bugfix] Third party libraries being used for social login were conflicting with the same libraries being used in other plugins
2253
+ * [Improvement] Updated the Facebook SDK being used throughout the plugin to the latest version 10.0
2254
+ * [Improvement] "More", "Copy Link" and "Search" strings were not being translated
2255
+ <a href="https://blog.heateor.com/super-socializer-now-supports-discord-stack-overflow-and-amazon-for-social-login" target="_blank">More details on What's new</a>
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.15
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.15');
15
 
16
  require 'helper.php';
17
 
@@ -149,18 +149,23 @@ function the_champ_connect(){
149
  }
150
  }
151
 
 
 
 
 
 
152
  // Instagram
153
  if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Instagram')){
154
  if(isset($theChampLoginOptions['providers']) && in_array('instagram', $theChampLoginOptions['providers']) && isset($theChampLoginOptions['insta_id']) && $theChampLoginOptions['insta_id'] != '' && isset($theChampLoginOptions['insta_app_secret']) && $theChampLoginOptions['insta_app_secret'] != ''){
155
  $instagramLoginState = mt_rand();
156
  // save referrer url in state
157
- update_user_meta( $instagramLoginState, 'super_socializer_redirect_to', isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : home_url() );
158
  wp_redirect("https://api.instagram.com/oauth/authorize?client_id=".$theChampLoginOptions['insta_id']."&scope=user_profile,user_media&response_type=code&language=en-us&state=".$instagramLoginState."&redirect_uri=".urlencode(home_url()."/SuperSocializerAuth/Instagram"));
159
  die;
160
  }
161
  }
162
 
163
- if(isset($_GET['code']) && get_user_meta(esc_attr(trim($_GET['state'])), 'super_socializer_redirect_to', true) !== false && remove_query_arg(array('code', 'state'), html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]))) == home_url().'/SuperSocializerAuth/Instagram'){
164
  $postData = array(
165
  'client_id' => $theChampLoginOptions['insta_id'],
166
  'client_secret' => $theChampLoginOptions['insta_app_secret'],
@@ -183,7 +188,6 @@ function the_champ_connect(){
183
  $body = json_decode(wp_remote_retrieve_body($response));
184
  if(isset($body->access_token)){
185
  $authorization = "Bearer ".$body->access_token;
186
-
187
  $response = wp_remote_get('https://graph.instagram.com/'.$body->user_id.'?fields=account_type,id,username&access_token='.$body->access_token, array('timeout' => 15));
188
 
189
  if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
@@ -201,9 +205,9 @@ function the_champ_connect(){
201
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
202
  $redirectTo = the_champ_get_login_redirection_url($instagramRedirectUrl, true);
203
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
204
- $redirectTo = $instagramRedirectUrl.( strpos($instagramRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
205
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
206
- $redirectTo = $instagramRedirectUrl.( strpos($instagramRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
207
  }elseif(isset($response['url']) && $response['url'] != ''){
208
  $redirectTo = $response['url'];
209
  }else{
@@ -346,6 +350,7 @@ function the_champ_connect(){
346
  }
347
  }
348
  }
 
349
  // Line login
350
  if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Line')){
351
  if(isset($theChampLoginOptions['providers']) && in_array('line', $theChampLoginOptions['providers']) && isset($theChampLoginOptions['line_channel_id']) && $theChampLoginOptions['line_channel_id'] != '' && isset($theChampLoginOptions['line_channel_secret']) && $theChampLoginOptions['line_channel_secret'] != ''){
@@ -397,9 +402,9 @@ function the_champ_connect(){
397
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
398
  $redirectTo = the_champ_get_login_redirection_url($lineRedirectUrl, true);
399
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
400
- $redirectTo = $lineRedirectUrl.( strpos($lineRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
401
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
402
- $redirectTo = $lineRedirectUrl.( strpos($lineRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
403
  }elseif(isset($response['url']) && $response['url'] != ''){
404
  $redirectTo = $response['url'];
405
  }else{
@@ -463,9 +468,9 @@ function the_champ_connect(){
463
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
464
  $redirectTo = the_champ_get_login_redirection_url($yahooRedirectUrl, true);
465
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
466
- $redirectTo = $yahooRedirectUrl . ( strpos( $yahooRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
467
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
468
- $redirectTo = $yahooRedirectUrl . ( strpos( $yahooRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
469
  }elseif(isset($response['url']) && $response['url'] != ''){
470
  $redirectTo = $response['url'];
471
  }else{
@@ -473,12 +478,78 @@ function the_champ_connect(){
473
  }
474
  the_champ_close_login_popup($redirectTo);
475
  }
476
-
477
  }
478
  }
479
  }
480
 
481
- //wordpress
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
482
  if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Wordpress')){
483
  if(isset($theChampLoginOptions['providers']) && in_array('wordpress', $theChampLoginOptions['providers']) && isset($theChampLoginOptions['wordpress_client_id']) && $theChampLoginOptions['wordpress_client_id'] != '' && isset($theChampLoginOptions['wordpress_client_secret']) && $theChampLoginOptions['wordpress_client_secret'] != ''){
484
  if(!isset($_GET['code'])){
@@ -593,9 +664,9 @@ function the_champ_connect(){
593
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
594
  $redirectTo = the_champ_get_login_redirection_url($liveRedirectUrl, true);
595
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
596
- $redirectTo = $liveRedirectUrl.( strpos($liveRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
597
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
598
- $redirectTo = $liveRedirectUrl.( strpos($liveRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
599
  }elseif(isset($response['url']) && $response['url'] != ''){
600
  $redirectTo = $response['url'];
601
  }else{
@@ -661,9 +732,9 @@ function the_champ_connect(){
661
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
662
  $redirectTo = the_champ_get_login_redirection_url($twitchRedirectUrl, true);
663
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
664
- $redirectTo = $twitchRedirectUrl . ( strpos( $twitchRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
665
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
666
- $redirectTo = $twitchRedirectUrl . ( strpos( $twitchRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
667
  }elseif(isset($response['url']) && $response['url'] != ''){
668
  $redirectTo = $response['url'];
669
  }else{
@@ -999,9 +1070,9 @@ function the_champ_connect(){
999
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
1000
  $redirectTo = the_champ_get_login_redirection_url($dribbbleRedirectUrl, true);
1001
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
1002
- $redirectTo = $yahooRedirectUrl . ( strpos( $yahooRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
1003
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
1004
- $redirectTo = $dribbbleRedirectUrl . ( strpos( $dribbbleRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
1005
  }elseif(isset($response['url']) && $response['url'] != ''){
1006
  $redirectTo = $response['url'];
1007
  }else{
@@ -1062,9 +1133,9 @@ function the_champ_connect(){
1062
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
1063
  $redirectTo = the_champ_get_login_redirection_url($liveRedirectUrl, true);
1064
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
1065
- $redirectTo = $spotifyRedirectUrl . ( strpos( $spotifyRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
1066
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
1067
- $redirectTo = $spotifyRedirectUrl . ( strpos( $spotifyRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
1068
  }elseif(isset($response['url']) && $response['url'] != ''){
1069
  $redirectTo = $response['url'];
1070
  }else{
@@ -1126,9 +1197,9 @@ function the_champ_connect(){
1126
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
1127
  $redirectTo = the_champ_get_login_redirection_url($kakaoRedirectUrl, true);
1128
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
1129
- $redirectTo = $kakaoRedirectUrl . ( strpos( $kakaoRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
1130
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
1131
- $redirectTo = $kakaoRedirectUrl . ( strpos( $kakaoRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
1132
  }elseif(isset($response['url']) && $response['url'] != ''){
1133
  $redirectTo = $response['url'];
1134
  }else{
@@ -1206,9 +1277,9 @@ function the_champ_connect(){
1206
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
1207
  $redirectTo = the_champ_get_login_redirection_url($githubRedirectUrl, true);
1208
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
1209
- $redirectTo = $githubRedirectUrl . ( strpos( $githubRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
1210
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
1211
- $redirectTo = $githubRedirectUrl . ( strpos( $githublRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
1212
  }elseif(isset($response['url']) && $response['url'] != ''){
1213
  $redirectTo = $response['url'];
1214
  }else{
@@ -1229,7 +1300,7 @@ function the_champ_connect(){
1229
  $facebookLoginState = mt_rand();
1230
  // save referrer url in state
1231
  update_user_meta($facebookLoginState, 'super_socializer_redirect_to', isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : home_url());
1232
- wp_redirect("https://www.facebook.com/v9.0/dialog/oauth?scope=email&client_id=" . $theChampLoginOptions['fb_key'] . "&state=" . $facebookLoginState . "&redirect_uri=" . home_url() . "/?SuperSocializerAuth=Facebook");
1233
  die;
1234
  }elseif(isset($_GET['code']) && isset($_GET['state']) && get_user_meta(esc_attr(trim($_GET['state'])), 'super_socializer_redirect_to', true) !== false){
1235
  $postData = array(
@@ -1238,7 +1309,7 @@ function the_champ_connect(){
1238
  'client_id' => $theChampLoginOptions['fb_key'],
1239
  'client_secret' => $theChampLoginOptions['fb_secret']
1240
  );
1241
- $response = wp_remote_post("https://graph.facebook.com/v9.0/oauth/access_token", array(
1242
  'method' => 'POST',
1243
  'timeout' => 15,
1244
  'redirection' => 5,
@@ -1286,6 +1357,136 @@ function the_champ_connect(){
1286
  }
1287
  }
1288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1289
  // Google
1290
  if(isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Google') {
1291
  if(isset($theChampLoginOptions['providers']) && in_array('google', $theChampLoginOptions['providers']) && isset($theChampLoginOptions['google_key']) && $theChampLoginOptions['google_key'] != '' && isset($theChampLoginOptions['google_secret']) && $theChampLoginOptions['google_secret'] != '') {
@@ -1625,8 +1826,9 @@ function the_champ_frontend_scripts(){
1625
  $fbKey = isset($theChampLoginOptions["fb_key"]) && $theChampLoginOptions["fb_key"] != "" ? $theChampLoginOptions["fb_key"] : "";
1626
  $userVerified = false;
1627
  $emailPopup = false;
 
1628
  ?>
1629
- <script> var theChampSiteUrl = '<?php echo strtok($websiteUrl,"?"); ?>', theChampVerified = <?php echo intval($userVerified) ?>, theChampEmailPopup = <?php echo intval($emailPopup); ?>; </script>
1630
  <?php
1631
  // scripts used for common Social Login functionality
1632
  if(the_champ_social_login_enabled() && !is_user_logged_in()){
@@ -1677,7 +1879,7 @@ function the_champ_frontend_scripts(){
1677
  $twitterRedirect = urlencode(the_champ_get_valid_url(html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]))));
1678
  $currentPageUrl = urldecode($twitterRedirect);
1679
  ?>
1680
- <script> var theChampFBKey = '<?php echo $fbKey ?>', theChampSameTabLogin = '<?php echo isset($theChampLoginOptions["same_tab_login"]) ? 1 : 0; ?>', theChampVerified = <?php echo intval($userVerified) ?>; var theChampAjaxUrl = '<?php echo html_entity_decode(admin_url().$ajaxUrl) ?>'; var theChampPopupTitle = '<?php echo $notification; ?>'; var theChampEmailPopup = <?php echo intval($emailPopup); ?>; var theChampEmailAjaxUrl = '<?php echo html_entity_decode(admin_url().$emailAjaxUrl); ?>'; var theChampEmailPopupTitle = '<?php echo $emailPopupTitle; ?>'; var theChampEmailPopupErrorMsg = '<?php echo htmlspecialchars($emailPopupErrorMessage, ENT_QUOTES); ?>'; var theChampEmailPopupUniqueId = '<?php echo $emailPopupUniqueId; ?>'; var theChampEmailPopupVerifyMessage = '<?php echo $emailPopupVerifyMessage; ?>'; var theChampSteamAuthUrl = "<?php echo $theChampSteamLogin ? $theChampSteamLogin->url( esc_url(home_url()).'?SuperSocializerSteamAuth='.$twitterRedirect ) : ''; ?>"; var theChampCurrentPageUrl = '<?php echo $twitterRedirect ?>'; <?php echo isset($theChampLoginOptions['disable_reg']) && isset($theChampLoginOptions['disable_reg_redirect']) && $theChampLoginOptions['disable_reg_redirect'] != '' ? 'var theChampDisableRegRedirect = "'.html_entity_decode(esc_url($theChampLoginOptions['disable_reg_redirect'])).'";' : ''; ?> var heateorMSEnabled = 0, theChampTwitterAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitter&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampLineAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Line&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampLiveAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Live&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampFacebookAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Facebook&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampYahooAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Yahoo&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampGoogleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Google&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampVkontakteAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Vkontakte&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampLinkedinAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Linkedin&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampInstagramAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Instagram&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampWordpressAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Wordpress&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampDribbbleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Dribbble&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampGithubAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Github&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampSpotifyAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Spotify&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampKakaoAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Kakao&super_socializer_redirect_to=" + theChampCurrentPageUrl; theChampTwitchAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitch&super_socializer_redirect_to=" + theChampCurrentPageUrl; theChampRedditAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Reddit&super_socializer_redirect_to=" + theChampCurrentPageUrl; theChampDisqusAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Disqus&super_socializer_redirect_to=" + theChampCurrentPageUrl; theChampDropboxAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Dropbox&super_socializer_redirect_to=" + theChampCurrentPageUrl; theChampFoursquareAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Foursquare&super_socializer_redirect_to=" + theChampCurrentPageUrl;</script>
1681
  <?php
1682
  if(!$combinedScript){
1683
  wp_enqueue_script('the_champ_sl_common', plugins_url('js/front/social_login/common.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
@@ -2189,7 +2391,14 @@ function the_champ_save_default_options(){
2189
  'foursquare_client_id' => '',
2190
  'foursquare_client_secret' => '',
2191
  'dropbox_app_key' => '',
2192
- 'dropbox_app_secret' => ''
 
 
 
 
 
 
 
2193
  ));
2194
 
2195
  // social commenting options
@@ -2448,11 +2657,11 @@ function the_champ_addon_update_notification(){
2448
  <?php
2449
  }
2450
 
2451
- if(defined('HEATEOR_SOCIAL_LOGIN_BUTTONS_VERSION') && version_compare('1.2.6', HEATEOR_SOCIAL_LOGIN_BUTTONS_VERSION) > 0){
2452
  ?>
2453
  <div class="error notice">
2454
  <h3>Social Login Buttons</h3>
2455
- <p><?php _e('Update "Social Login Buttons" add-on to version 1.2.6 or above for compatibility with current version of Super Socializer', 'super-socializer') ?></p>
2456
  </div>
2457
  <?php
2458
  }
@@ -2780,6 +2989,18 @@ function the_champ_update_db_check(){
2780
  $currentVersion = get_option('the_champ_ss_version');
2781
 
2782
  if($currentVersion && $currentVersion != THE_CHAMP_SS_VERSION){
 
 
 
 
 
 
 
 
 
 
 
 
2783
  if(version_compare("7.13.12", $currentVersion) > 0){
2784
  global $theChampLoginOptions;
2785
  $theChampLoginOptions['reddit_client_id'] = '';
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.16
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.16');
15
 
16
  require 'helper.php';
17
 
149
  }
150
  }
151
 
152
+ // return if social login is disabled
153
+ if(!isset($theChampLoginOptions['enable'])){
154
+ return;
155
+ }
156
+
157
  // Instagram
158
  if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Instagram')){
159
  if(isset($theChampLoginOptions['providers']) && in_array('instagram', $theChampLoginOptions['providers']) && isset($theChampLoginOptions['insta_id']) && $theChampLoginOptions['insta_id'] != '' && isset($theChampLoginOptions['insta_app_secret']) && $theChampLoginOptions['insta_app_secret'] != ''){
160
  $instagramLoginState = mt_rand();
161
  // save referrer url in state
162
+ update_user_meta($instagramLoginState, 'super_socializer_redirect_to', isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : home_url());
163
  wp_redirect("https://api.instagram.com/oauth/authorize?client_id=".$theChampLoginOptions['insta_id']."&scope=user_profile,user_media&response_type=code&language=en-us&state=".$instagramLoginState."&redirect_uri=".urlencode(home_url()."/SuperSocializerAuth/Instagram"));
164
  die;
165
  }
166
  }
167
 
168
+ if(isset($_GET['code']) && isset($_GET['state']) && get_user_meta(esc_attr(trim($_GET['state'])), 'super_socializer_redirect_to', true) !== false && remove_query_arg(array('code', 'state'), html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]))) == home_url().'/SuperSocializerAuth/Instagram'){
169
  $postData = array(
170
  'client_id' => $theChampLoginOptions['insta_id'],
171
  'client_secret' => $theChampLoginOptions['insta_app_secret'],
188
  $body = json_decode(wp_remote_retrieve_body($response));
189
  if(isset($body->access_token)){
190
  $authorization = "Bearer ".$body->access_token;
 
191
  $response = wp_remote_get('https://graph.instagram.com/'.$body->user_id.'?fields=account_type,id,username&access_token='.$body->access_token, array('timeout' => 15));
192
 
193
  if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
205
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
206
  $redirectTo = the_champ_get_login_redirection_url($instagramRedirectUrl, true);
207
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
208
+ $redirectTo = $instagramRedirectUrl.(strpos($instagramRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
209
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
210
+ $redirectTo = $instagramRedirectUrl.(strpos($instagramRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
211
  }elseif(isset($response['url']) && $response['url'] != ''){
212
  $redirectTo = $response['url'];
213
  }else{
350
  }
351
  }
352
  }
353
+
354
  // Line login
355
  if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Line')){
356
  if(isset($theChampLoginOptions['providers']) && in_array('line', $theChampLoginOptions['providers']) && isset($theChampLoginOptions['line_channel_id']) && $theChampLoginOptions['line_channel_id'] != '' && isset($theChampLoginOptions['line_channel_secret']) && $theChampLoginOptions['line_channel_secret'] != ''){
402
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
403
  $redirectTo = the_champ_get_login_redirection_url($lineRedirectUrl, true);
404
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
405
+ $redirectTo = $lineRedirectUrl.(strpos($lineRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
406
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
407
+ $redirectTo = $lineRedirectUrl.(strpos($lineRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
408
  }elseif(isset($response['url']) && $response['url'] != ''){
409
  $redirectTo = $response['url'];
410
  }else{
468
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
469
  $redirectTo = the_champ_get_login_redirection_url($yahooRedirectUrl, true);
470
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
471
+ $redirectTo = $yahooRedirectUrl . (strpos( $yahooRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
472
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
473
+ $redirectTo = $yahooRedirectUrl . (strpos( $yahooRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
474
  }elseif(isset($response['url']) && $response['url'] != ''){
475
  $redirectTo = $response['url'];
476
  }else{
478
  }
479
  the_champ_close_login_popup($redirectTo);
480
  }
 
481
  }
482
  }
483
  }
484
 
485
+ // Discord
486
+ if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Discord')){
487
+ if(isset($theChampLoginOptions['providers']) && in_array('discord', $theChampLoginOptions['providers']) && $theChampLoginOptions['discord_channel_id'] && $theChampLoginOptions['discord_channel_secret']){
488
+ if(!isset($_GET['code'])){
489
+ $discordLoginState = mt_rand();
490
+ // save referrer url in state
491
+ update_user_meta($discordLoginState, 'super_socializer_redirect_to', isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : home_url());
492
+ }
493
+ wp_redirect("https://discord.com/oauth2/authorize/request_auth?client_id=".$theChampLoginOptions['discord_channel_id']."&response_type=code&state=".$discordLoginState."&scope=identify%20email&redirect_uri=".home_url()."/SuperSocializerAuth/Discord");
494
+ die;
495
+ }
496
+ }
497
+
498
+ if(isset($_GET['code']) && isset($_GET['state']) && remove_query_arg(array('code', 'scope', 'state'), html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]))) == home_url().'/SuperSocializerAuth/Discord'){
499
+ $postData = array(
500
+ 'grant_type' => 'authorization_code',
501
+ 'code' => esc_attr(trim($_GET['code'])),
502
+ 'redirect_uri' => home_url()."/SuperSocializerAuth/Discord",
503
+ 'client_id' => $theChampLoginOptions['discord_channel_id'],
504
+ 'client_secret' => $theChampLoginOptions['discord_channel_secret'],
505
+ 'scope' => 'identify%20email'
506
+ );
507
+ $response = wp_remote_post("https://discord.com/api/oauth2/token", array(
508
+ 'method' => 'POST',
509
+ 'timeout' => 15,
510
+ 'redirection' => 5,
511
+ 'httpversion' => '1.0',
512
+ 'sslverify' => false,
513
+ 'headers' => array('Content-Type' => 'application/x-www-form-urlencoded'),
514
+ 'body' => http_build_query($postData)
515
+ )
516
+ );
517
+
518
+ if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
519
+ $body = json_decode(wp_remote_retrieve_body($response));
520
+ $authorization = "Bearer ".$body->access_token;
521
+
522
+ $response = wp_remote_get("https://discordapp.com/api/users/@me", array('timeout' => 15, 'headers' => array('Accept' => 'application/json' , 'Authorization' => $authorization )));
523
+
524
+ if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
525
+ $profileData = json_decode(wp_remote_retrieve_body( $response ));
526
+ if(is_object($profileData) && isset($profileData->id) && isset($profileData->verified) && $profileData->verified == 1){
527
+ $profileData = the_champ_sanitize_profile_data($profileData, 'discord');
528
+ $discordLoginState = esc_attr(trim($_GET['state']));
529
+ $discordRedirectUrl = get_user_meta($discordLoginState, 'super_socializer_redirect_to', true);
530
+ $response = the_champ_user_auth($profileData, 'discord', $discordRedirectUrl);
531
+ if($response == 'show form'){
532
+ return;
533
+ }
534
+ delete_user_meta($discordLoginState, 'super_socializer_redirect_to', true);
535
+ if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
536
+ $redirectTo = the_champ_get_login_redirection_url($discordRedirectUrl, true);
537
+ }elseif(isset($response['message']) && $response['message'] == 'linked'){
538
+ $redirectTo = $discordRedirectUrl . (strpos( $discordRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
539
+ }elseif(isset($response['message']) && $response['message'] == 'not linked'){
540
+ $redirectTo = $discordRedirectUrl . (strpos( $discordRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
541
+ }elseif(isset($response['url']) && $response['url'] != ''){
542
+ $redirectTo = $response['url'];
543
+ }else{
544
+ $redirectTo = the_champ_get_login_redirection_url($discordRedirectUrl);
545
+ }
546
+ the_champ_close_login_popup($redirectTo);
547
+ }
548
+ }
549
+ }
550
+ }
551
+
552
+ // Wordpress
553
  if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Wordpress')){
554
  if(isset($theChampLoginOptions['providers']) && in_array('wordpress', $theChampLoginOptions['providers']) && isset($theChampLoginOptions['wordpress_client_id']) && $theChampLoginOptions['wordpress_client_id'] != '' && isset($theChampLoginOptions['wordpress_client_secret']) && $theChampLoginOptions['wordpress_client_secret'] != ''){
555
  if(!isset($_GET['code'])){
664
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
665
  $redirectTo = the_champ_get_login_redirection_url($liveRedirectUrl, true);
666
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
667
+ $redirectTo = $liveRedirectUrl.(strpos($liveRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
668
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
669
+ $redirectTo = $liveRedirectUrl.(strpos($liveRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
670
  }elseif(isset($response['url']) && $response['url'] != ''){
671
  $redirectTo = $response['url'];
672
  }else{
732
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
733
  $redirectTo = the_champ_get_login_redirection_url($twitchRedirectUrl, true);
734
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
735
+ $redirectTo = $twitchRedirectUrl . (strpos( $twitchRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
736
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
737
+ $redirectTo = $twitchRedirectUrl . (strpos( $twitchRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
738
  }elseif(isset($response['url']) && $response['url'] != ''){
739
  $redirectTo = $response['url'];
740
  }else{
1070
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
1071
  $redirectTo = the_champ_get_login_redirection_url($dribbbleRedirectUrl, true);
1072
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
1073
+ $redirectTo = $dribbbleRedirectUrl . (strpos( $dribbbleRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
1074
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
1075
+ $redirectTo = $dribbbleRedirectUrl . (strpos( $dribbbleRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
1076
  }elseif(isset($response['url']) && $response['url'] != ''){
1077
  $redirectTo = $response['url'];
1078
  }else{
1133
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
1134
  $redirectTo = the_champ_get_login_redirection_url($liveRedirectUrl, true);
1135
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
1136
+ $redirectTo = $spotifyRedirectUrl . (strpos( $spotifyRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
1137
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
1138
+ $redirectTo = $spotifyRedirectUrl . (strpos( $spotifyRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
1139
  }elseif(isset($response['url']) && $response['url'] != ''){
1140
  $redirectTo = $response['url'];
1141
  }else{
1197
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
1198
  $redirectTo = the_champ_get_login_redirection_url($kakaoRedirectUrl, true);
1199
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
1200
+ $redirectTo = $kakaoRedirectUrl . (strpos( $kakaoRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
1201
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
1202
+ $redirectTo = $kakaoRedirectUrl . (strpos( $kakaoRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
1203
  }elseif(isset($response['url']) && $response['url'] != ''){
1204
  $redirectTo = $response['url'];
1205
  }else{
1277
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
1278
  $redirectTo = the_champ_get_login_redirection_url($githubRedirectUrl, true);
1279
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
1280
+ $redirectTo = $githubRedirectUrl . (strpos( $githubRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
1281
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
1282
+ $redirectTo = $githubRedirectUrl . (strpos( $githublRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
1283
  }elseif(isset($response['url']) && $response['url'] != ''){
1284
  $redirectTo = $response['url'];
1285
  }else{
1300
  $facebookLoginState = mt_rand();
1301
  // save referrer url in state
1302
  update_user_meta($facebookLoginState, 'super_socializer_redirect_to', isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : home_url());
1303
+ wp_redirect("https://www.facebook.com/v10.0/dialog/oauth?scope=email&client_id=" . $theChampLoginOptions['fb_key'] . "&state=" . $facebookLoginState . "&redirect_uri=" . home_url() . "/?SuperSocializerAuth=Facebook");
1304
  die;
1305
  }elseif(isset($_GET['code']) && isset($_GET['state']) && get_user_meta(esc_attr(trim($_GET['state'])), 'super_socializer_redirect_to', true) !== false){
1306
  $postData = array(
1309
  'client_id' => $theChampLoginOptions['fb_key'],
1310
  'client_secret' => $theChampLoginOptions['fb_secret']
1311
  );
1312
+ $response = wp_remote_post("https://graph.facebook.com/v10.0/oauth/access_token", array(
1313
  'method' => 'POST',
1314
  'timeout' => 15,
1315
  'redirection' => 5,
1357
  }
1358
  }
1359
 
1360
+ //amazon
1361
+ if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Amazon')){
1362
+ if(isset($theChampLoginOptions['providers']) && in_array('amazon', $theChampLoginOptions['providers']) && $theChampLoginOptions['amazon_client_id'] && $theChampLoginOptions['amazon_client_secret']){
1363
+ if(!isset($_GET['code'])){
1364
+ $amazonLoginState = mt_rand();
1365
+ // save referrer url in state
1366
+ update_user_meta($amazonLoginState, 'super_socializer_redirect_to', isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : home_url());
1367
+ }
1368
+ wp_redirect("https://www.amazon.com/ap/oa?client_id=".$theChampLoginOptions['amazon_client_id']."&response_type=code&scope=profile&state=".$amazonLoginState."&redirect_uri=".urlencode(home_url()."/SuperSocializerAuth/Amazon"));
1369
+ die;
1370
+ }
1371
+ }
1372
+ if(isset($_GET['code']) && isset($_GET['state']) && get_user_meta(esc_attr(trim($_GET['state'])), 'super_socializer_redirect_to', true) && remove_query_arg(array('code','scope', 'state'), html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]))) == home_url().'/SuperSocializerAuth/Amazon'){
1373
+ $postData = array(
1374
+ 'grant_type' => 'authorization_code',
1375
+ 'code' => esc_attr(trim($_GET['code'])),
1376
+ 'redirect_uri' => home_url()."/SuperSocializerAuth/Amazon",
1377
+ 'client_id' => $theChampLoginOptions['amazon_client_id'],
1378
+ 'client_secret' => $theChampLoginOptions['amazon_client_secret']
1379
+ );
1380
+ $response = wp_remote_post("https://api.amazon.com/auth/o2/token", array(
1381
+ 'method' => 'POST',
1382
+ 'timeout' => 15,
1383
+ 'redirection' => 5,
1384
+ 'httpversion' => '1.0',
1385
+ 'sslverify' => false,
1386
+ 'headers' => array('Content-Type' => 'application/x-www-form-urlencoded'),
1387
+ 'body' => http_build_query($postData)
1388
+ )
1389
+ );
1390
+
1391
+ if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
1392
+ $body = json_decode(wp_remote_retrieve_body($response));
1393
+ $authorization = "Bearer ".$body->access_token;
1394
+ $response = wp_remote_get("https://api.amazon.com/user/profile", array('timeout' => 15, 'headers' => array('Accept' => 'application/json' , 'Authorization' => $authorization )));
1395
+ if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
1396
+ $profileData = json_decode(wp_remote_retrieve_body($response));
1397
+ if(is_object($profileData) && isset($profileData->user_id)){
1398
+ $profileData = the_champ_sanitize_profile_data($profileData, 'amazon');
1399
+ $amazonLoginState = esc_attr(trim($_GET['state']));
1400
+ $amazonRedirectUrl = get_user_meta($amazonLoginState, 'super_socializer_redirect_to', true);
1401
+ $response = the_champ_user_auth($profileData, 'amazon', $amazonRedirectUrl);
1402
+ if($response == 'show form'){
1403
+ return;
1404
+ }
1405
+ if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
1406
+ $redirectTo = the_champ_get_login_redirection_url($amazonRedirectUrl, true);
1407
+ }elseif(isset($response['message']) && $response['message'] == 'linked'){
1408
+ $redirectTo = $amazonRedirectUrl . (strpos( $amazonRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
1409
+ }elseif(isset($response['message']) && $response['message'] == 'not linked'){
1410
+ $redirectTo = $amazonRedirectUrl . (strpos( $amazonRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
1411
+ }elseif(isset($response['url']) && $response['url'] != ''){
1412
+ $redirectTo = $response['url'];
1413
+ }else{
1414
+ $redirectTo = the_champ_get_login_redirection_url($amazonRedirectUrl);
1415
+ }
1416
+ the_champ_close_login_popup($redirectTo);
1417
+ }
1418
+ }
1419
+ }
1420
+ }
1421
+
1422
+ // Stack Overflow
1423
+ if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Stackoverflow')){
1424
+ if(isset($theChampLoginOptions['providers']) && in_array('stackoverflow', $theChampLoginOptions['providers']) && $theChampLoginOptions['stackoverflow_client_id'] && $theChampLoginOptions['stackoverflow_client_secret'] && $theChampLoginOptions['stackoverflow_key']){
1425
+ if(!isset($_GET['code'])){
1426
+ $stackoverflowLoginState = mt_rand();
1427
+ // save referrer url in state
1428
+ update_user_meta($stackoverflowLoginState, 'super_socializer_redirect_to', isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : home_url());
1429
+ }
1430
+ wp_redirect("https://stackexchange.com/oauth?client_id=".$theChampLoginOptions['stackoverflow_client_id']."&response_type=code&scope=private_info&state=".$stackoverflowLoginState."&redirect_uri=".urlencode(home_url()."/SuperSocializerAuth/Stackoverflow"));
1431
+ die;
1432
+ }
1433
+ }
1434
+ if(isset($_GET['code']) && isset($_GET['state']) && remove_query_arg(array('code','scope','state'), html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]))) == home_url().'/SuperSocializerAuth/Stackoverflow'){
1435
+ $postData = array(
1436
+ 'grant_type' => 'authorization_code',
1437
+ 'code' => esc_attr(trim($_GET['code'])),
1438
+ 'redirect_uri' => home_url()."/SuperSocializerAuth/Stackoverflow",
1439
+ 'client_id' => $theChampLoginOptions['stackoverflow_client_id'],
1440
+ 'client_secret' => $theChampLoginOptions['stackoverflow_client_secret']
1441
+ );
1442
+ $response = wp_remote_post("https://stackexchange.com/oauth/access_token", array(
1443
+ 'method' => 'POST',
1444
+ 'timeout' => 15,
1445
+ 'redirection' => 5,
1446
+ 'httpversion' => '1.0',
1447
+ 'sslverify' => false,
1448
+ 'headers' => array(
1449
+ 'Content-Type' => 'application/x-www-form-urlencoded',
1450
+ 'Authorization' => 'Basic ' .base64_encode($theChampLoginOptions['stackoverflow_client_id']. ':' .$theChampLoginOptions['stackoverflow_client_secret'])
1451
+ ),
1452
+ 'body' => http_build_query($postData)
1453
+ ));
1454
+
1455
+ if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
1456
+ $body = wp_remote_retrieve_body($response);
1457
+ $k = explode('&', $body);
1458
+ $r = explode('=', $k[0]);
1459
+ $response = wp_remote_get("https://api.stackexchange.com/2.2/me?site=stackoverflow&access_token=".$r[1]."&key=".$theChampLoginOptions['stackoverflow_key'], array(
1460
+ 'timeout' => 15,
1461
+ 'headers' => array('content-type' =>'application/json')
1462
+ ));
1463
+ if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
1464
+ $profileData = json_decode(wp_remote_retrieve_body($response));
1465
+ if(is_object($profileData) && isset($profileData->items[0]->account_id)){
1466
+ $profileData = the_champ_sanitize_profile_data($profileData->items[0], 'stackoverflow');
1467
+ $stackoverflowLoginState = esc_attr(trim($_GET['state']));
1468
+ $stackoverflowRedirectUrl = get_user_meta($stackoverflowLoginState, 'super_socializer_redirect_to', true);
1469
+ $response = the_champ_user_auth($profileData, 'stackoverflow', $stackoverflowRedirectUrl);
1470
+ if($response == 'show form'){
1471
+ return;
1472
+ }
1473
+ if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
1474
+ $redirectTo = the_champ_get_login_redirection_url($stackoverflowRedirectUrl, true);
1475
+ }elseif(isset($response['message']) && $response['message'] == 'linked'){
1476
+ $redirectTo = $stackoverflowRedirectUrl . (strpos( $stackoverflowRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
1477
+ }elseif(isset($response['message']) && $response['message'] == 'not linked'){
1478
+ $redirectTo = $stackoverflowRedirectUrl . (strpos( $stackoverflowRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
1479
+ }elseif(isset($response['url']) && $response['url'] != ''){
1480
+ $redirectTo = $response['url'];
1481
+ }else{
1482
+ $redirectTo = the_champ_get_login_redirection_url($stackoverflowRedirectUrl);
1483
+ }
1484
+ the_champ_close_login_popup($redirectTo);
1485
+ }
1486
+ }
1487
+ }
1488
+ }
1489
+
1490
  // Google
1491
  if(isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Google') {
1492
  if(isset($theChampLoginOptions['providers']) && in_array('google', $theChampLoginOptions['providers']) && isset($theChampLoginOptions['google_key']) && $theChampLoginOptions['google_key'] != '' && isset($theChampLoginOptions['google_secret']) && $theChampLoginOptions['google_secret'] != '') {
1826
  $fbKey = isset($theChampLoginOptions["fb_key"]) && $theChampLoginOptions["fb_key"] != "" ? $theChampLoginOptions["fb_key"] : "";
1827
  $userVerified = false;
1828
  $emailPopup = false;
1829
+ $moreSharePopupPlaceholderSearch = __('Search', 'super-socializer');
1830
  ?>
1831
+ <script>var theChampSiteUrl = '<?php echo strtok($websiteUrl, "?"); ?>', theChampVerified = <?php echo intval($userVerified) ?>, theChampEmailPopup = <?php echo intval($emailPopup); ?>, heateorSsMoreSharePopupSearchText = '<?php echo htmlspecialchars($moreSharePopupPlaceholderSearch, ENT_QUOTES); ?>';</script>
1832
  <?php
1833
  // scripts used for common Social Login functionality
1834
  if(the_champ_social_login_enabled() && !is_user_logged_in()){
1879
  $twitterRedirect = urlencode(the_champ_get_valid_url(html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]))));
1880
  $currentPageUrl = urldecode($twitterRedirect);
1881
  ?>
1882
+ <script> var theChampFBKey = '<?php echo $fbKey ?>', theChampSameTabLogin = '<?php echo isset($theChampLoginOptions["same_tab_login"]) ? 1 : 0; ?>', theChampVerified = <?php echo intval($userVerified) ?>; var theChampAjaxUrl = '<?php echo html_entity_decode(admin_url().$ajaxUrl) ?>'; var theChampPopupTitle = '<?php echo $notification; ?>'; var theChampEmailPopup = <?php echo intval($emailPopup); ?>; var theChampEmailAjaxUrl = '<?php echo html_entity_decode(admin_url().$emailAjaxUrl); ?>'; var theChampEmailPopupTitle = '<?php echo $emailPopupTitle; ?>'; var theChampEmailPopupErrorMsg = '<?php echo htmlspecialchars($emailPopupErrorMessage, ENT_QUOTES); ?>'; var theChampEmailPopupUniqueId = '<?php echo $emailPopupUniqueId; ?>'; var theChampEmailPopupVerifyMessage = '<?php echo $emailPopupVerifyMessage; ?>'; var theChampSteamAuthUrl = "<?php echo $theChampSteamLogin ? $theChampSteamLogin->url( esc_url(home_url()).'?SuperSocializerSteamAuth='.$twitterRedirect ) : ''; ?>"; var theChampCurrentPageUrl = '<?php echo $twitterRedirect ?>'; <?php echo isset($theChampLoginOptions['disable_reg']) && isset($theChampLoginOptions['disable_reg_redirect']) && $theChampLoginOptions['disable_reg_redirect'] != '' ? 'var theChampDisableRegRedirect = "'.html_entity_decode(esc_url($theChampLoginOptions['disable_reg_redirect'])).'";' : ''; ?> var heateorMSEnabled = 0, theChampTwitterAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitter&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampLineAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Line&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampLiveAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Live&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampFacebookAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Facebook&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampYahooAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Yahoo&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampGoogleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Google&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampVkontakteAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Vkontakte&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampLinkedinAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Linkedin&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampInstagramAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Instagram&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampWordpressAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Wordpress&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampDribbbleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Dribbble&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampGithubAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Github&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampSpotifyAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Spotify&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampKakaoAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Kakao&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampTwitchAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitch&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampRedditAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Reddit&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampDisqusAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Disqus&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampDropboxAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Dropbox&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampFoursquareAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Foursquare&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampAmazonAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Amazon&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampStackoverflowAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Stackoverflow&super_socializer_redirect_to=" + theChampCurrentPageUrl, theChampDiscordAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Discord&super_socializer_redirect_to=" + theChampCurrentPageUrl;</script>
1883
  <?php
1884
  if(!$combinedScript){
1885
  wp_enqueue_script('the_champ_sl_common', plugins_url('js/front/social_login/common.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
2391
  'foursquare_client_id' => '',
2392
  'foursquare_client_secret' => '',
2393
  'dropbox_app_key' => '',
2394
+ 'dropbox_app_secret' => '',
2395
+ 'discord_channel_id' => '',
2396
+ 'discord_channel_secret' => '',
2397
+ 'amazon_client_id' => '',
2398
+ 'amazon_client_secret' => '',
2399
+ 'stackoverflow_client_id' => '',
2400
+ 'stackoverflow_client_secret' => '',
2401
+ 'stackoverflow_key' => ''
2402
  ));
2403
 
2404
  // social commenting options
2657
  <?php
2658
  }
2659
 
2660
+ if(defined('HEATEOR_SOCIAL_LOGIN_BUTTONS_VERSION') && version_compare('1.2.7', HEATEOR_SOCIAL_LOGIN_BUTTONS_VERSION) > 0){
2661
  ?>
2662
  <div class="error notice">
2663
  <h3>Social Login Buttons</h3>
2664
+ <p><?php _e('Update "Social Login Buttons" add-on to version 1.2.7 or above for compatibility with current version of Super Socializer', 'super-socializer') ?></p>
2665
  </div>
2666
  <?php
2667
  }
2989
  $currentVersion = get_option('the_champ_ss_version');
2990
 
2991
  if($currentVersion && $currentVersion != THE_CHAMP_SS_VERSION){
2992
+ if(version_compare("7.13.16", $currentVersion) > 0){
2993
+ global $theChampLoginOptions;
2994
+ $theChampLoginOptions['stackoverflow_client_id'] = '';
2995
+ $theChampLoginOptions['stackoverflow_client_secret'] = '';
2996
+ $theChampLoginOptions['stackoverflow_key'] = '';
2997
+ $theChampLoginOptions['amazon_client_id'] = '';
2998
+ $theChampLoginOptions['amazon_client_secret'] = '';
2999
+ $theChampLoginOptions['discord_channel_id'] = '';
3000
+ $theChampLoginOptions['discord_channel_secret'] = '';
3001
+ update_option('the_champ_login', $theChampLoginOptions);
3002
+ }
3003
+
3004
  if(version_compare("7.13.12", $currentVersion) > 0){
3005
  global $theChampLoginOptions;
3006
  $theChampLoginOptions['reddit_client_id'] = '';