Social Login - Version 7.3.11

Version Description

  • Updated Facebook Api for Profile picture updated.
  • Instructions updated for Facebook, Google, Linkedin, Twitter, Windows Live.
  • Conflict with Woocommerce quick edit resolved.
  • Minor UI Changes.
Download this release

Release Info

Developer cyberlord92
Plugin Icon 128x128 Social Login
Version 7.3.11
Comparing to
See all releases

Code changes from version 7.3.10 to 7.3.11

Files changed (64) hide show
  1. class-mo-openid-login-widget.php +0 -57
  2. class-mo-openid-social-share.php +0 -78
  3. class-mo-openid-sso-shortcode-buttons.php +15 -138
  4. includes/images/icons/amazon.png +0 -0
  5. includes/images/icons/apple.png +0 -0
  6. includes/images/icons/delicious.png +0 -0
  7. includes/images/icons/digg.png +0 -0
  8. includes/images/icons/discord.png +0 -0
  9. includes/images/icons/disqus.png +0 -0
  10. includes/images/icons/dribbble.png +0 -0
  11. includes/images/icons/facebook.png +0 -0
  12. includes/images/icons/flickr.png +0 -0
  13. includes/images/icons/foursquare.png +0 -0
  14. includes/images/icons/google.png +0 -0
  15. includes/images/icons/instagram.png +0 -0
  16. includes/images/icons/kakao.png +0 -0
  17. includes/images/icons/line.png +0 -0
  18. includes/images/icons/linkedin.png +0 -0
  19. includes/images/icons/livejournal.png +0 -0
  20. includes/images/icons/mail.png +0 -0
  21. includes/images/icons/meetup.png +0 -0
  22. includes/images/icons/naver.png +0 -0
  23. includes/images/icons/odnoklassniki.png +0 -0
  24. includes/images/icons/paypal.png +0 -0
  25. includes/images/icons/pininterest.png +0 -0
  26. includes/images/icons/pinterest.png +0 -0
  27. includes/images/icons/pocket.png +0 -0
  28. includes/images/icons/print.png +0 -0
  29. includes/images/icons/qq.png +0 -0
  30. includes/images/icons/reddit.png +0 -0
  31. includes/images/icons/renren.png +0 -0
  32. includes/images/icons/salesforce.png +0 -0
  33. includes/images/icons/snapchat.png +0 -0
  34. includes/images/icons/spotify.png +0 -0
  35. includes/images/icons/stackexchange.png +0 -0
  36. includes/images/icons/stumble.png +0 -0
  37. includes/images/icons/teamsnap.png +0 -0
  38. includes/images/icons/tumblr.png +0 -0
  39. includes/images/icons/twitch.png +0 -0
  40. includes/images/icons/twitter.png +0 -0
  41. includes/images/icons/vimeo.png +0 -0
  42. includes/images/icons/vk.png +0 -0
  43. includes/images/icons/vkontakte.png +0 -0
  44. includes/images/icons/whatsapp.png +0 -0
  45. includes/images/icons/wiebo.png +0 -0
  46. includes/images/icons/windowslive.png +0 -0
  47. includes/images/icons/wordpress.png +0 -0
  48. includes/images/icons/yahoo.png +0 -0
  49. lang/miniorange-login-openid-hi_IN.mo +0 -0
  50. lang/miniorange-login-openid-hi_IN.po +584 -242
  51. miniorange_openid_sso_settings.php +5 -4
  52. miniorange_openid_sso_settings_page.php +1 -1
  53. mo-openid-social-login-functions.php +2 -43
  54. readme.txt +17 -3
  55. social_apps/facebook.php +2 -2
  56. social_apps/google.php +2 -2
  57. social_apps/vkontakte.php +1 -1
  58. social_apps/windowslive.php +1 -1
  59. uninstall.php +11 -0
  60. view/config_apps/mo_openid_config_apps.php +10 -2
  61. view/registration/mo_openid_registration.php +14 -5
  62. view/soc_sha/disp_shropt/mo_openid_disp_shropt.php +1 -1
  63. view/soc_sha/share_cnt/mo_openid_shrcnt.php +2 -4
  64. view/soc_sha/soc_apps/mo_openid_sharing.php +22 -51
class-mo-openid-login-widget.php CHANGED
@@ -9,7 +9,6 @@ if(get_option('mo_openid_popup_window')=='0') {
9
  else {
10
  add_action('wp_login', 'mo_openid_login_redirect_pop_up', 11, 2);
11
  }
12
- //add_action('wp_login', 'mo_openid_update_user_meta', 8, 2);
13
  add_action( 'delete_user', 'mo_openid_delete_account_linking_rows' );
14
 
15
  add_action('manage_users_custom_column', 'mo_openid_delete_profile_column', 9, 3);
@@ -1629,62 +1628,6 @@ function mo_openid_login_redirect_pop_up($username = '', $user = NULL){
1629
  }
1630
  }
1631
 
1632
- function mo_openid_update_user_meta($username, $user ){
1633
- mo_openid_start_session();
1634
-
1635
- if(isset($_SESSION['location_city'])? $_SESSION['location_city']: '') {
1636
- update_user_meta($user->ID, 'location_city', $_SESSION['location_city']);
1637
- }
1638
- if(isset($_SESSION['location_country'])? $_SESSION['location_country']: '') {
1639
- update_user_meta($user->ID, 'location_country', $_SESSION['location_country']);
1640
- }
1641
- if(isset($_SESSION['about_me'])? $_SESSION['about_me']: '') {
1642
- update_user_meta($user->ID, 'about_me', $_SESSION['about_me']);
1643
- }
1644
- if(isset($_SESSION['company_name'])? $_SESSION['company_name']: '') {
1645
- update_user_meta($user->ID, 'company_name', $_SESSION['company_name']);
1646
- }
1647
- if(isset($_SESSION['age'])? $_SESSION['age']: '') {
1648
- update_user_meta($user->ID, 'age', $_SESSION['age']);
1649
- }
1650
- if(isset($_SESSION['gender'])? $_SESSION['gender']: '') {
1651
- update_user_meta($user->ID, 'gender', $_SESSION['gender']);
1652
- }
1653
- if(isset($_SESSION['birth_date'])? $_SESSION['birth_date']: '') {
1654
- update_user_meta($user->ID, 'birth_date', $_SESSION['birth_date']);
1655
- }
1656
- if(isset($_SESSION['friend_list'])? $_SESSION['friend_list']: '') {
1657
- update_user_meta($user->ID, 'friend_list', $_SESSION['friend_list']);
1658
- }
1659
- if(isset($_SESSION['website'])? $_SESSION['website']: '') {
1660
- update_user_meta($user->ID, 'website', $_SESSION['website']);
1661
- }
1662
- if(isset($_SESSION['field_of_study'])? $_SESSION['field_of_study']: '') {
1663
- update_user_meta($user->ID, 'field_of_study', $_SESSION['field_of_study']);
1664
- }
1665
- if(isset($_SESSION['university_name'])? $_SESSION['university_name']: '') {
1666
- update_user_meta($user->ID, 'university_name', $_SESSION['university_name']);
1667
- }
1668
- if(isset($_SESSION['places_lived'])? $_SESSION['places_lived']: '') {
1669
- update_user_meta($user->ID, 'places_lived', $_SESSION['places_lived']);
1670
- }
1671
- if(isset($_SESSION['contact_no'])? $_SESSION['contact_no']: '') {
1672
- update_user_meta($user->ID, 'contact_no', $_SESSION['contact_no']);
1673
- }
1674
- if(isset($_SESSION['relationship'])? $_SESSION['relationship']: '') {
1675
- update_user_meta($user->ID, 'relationship', $_SESSION['relationship']);
1676
- }
1677
- if(isset($_SESSION['industry'])? $_SESSION['industry']: '') {
1678
- update_user_meta($user->ID, 'industry', $_SESSION['industry']);
1679
- }
1680
- if(isset($_SESSION['head_line'])? $_SESSION['head_line']: '') {
1681
- update_user_meta($user->ID, 'head_line', $_SESSION['head_line']);
1682
- }
1683
- if(isset($_SESSION['position'])? $_SESSION['position']: '') {
1684
- update_user_meta($user->ID, 'position', $_SESSION['position']);
1685
- }
1686
- update_user_meta( $user->ID, 'NA', isset($_SESSION['NA'])? $_SESSION['NA']:'' );
1687
- }
1688
 
1689
  function mo_openid_link_account( $username, $user ){
1690
  if($user){
9
  else {
10
  add_action('wp_login', 'mo_openid_login_redirect_pop_up', 11, 2);
11
  }
 
12
  add_action( 'delete_user', 'mo_openid_delete_account_linking_rows' );
13
 
14
  add_action('manage_users_custom_column', 'mo_openid_delete_profile_column', 9, 3);
1628
  }
1629
  }
1630
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1631
 
1632
  function mo_openid_link_account( $username, $user ){
1633
  if($user){
class-mo-openid-social-share.php CHANGED
@@ -141,19 +141,6 @@ $url = $http . $_SERVER["HTTP_HOST"] . $_SERVER['REQUEST_URI'];
141
  <?php
142
  }
143
 
144
- if( get_option('mo_openid_delicious_share_enable') ) {
145
- $link = esc_url('http://www.delicious.com/save?v=5&noui&jump=close&url='.$url.'&amp;title='.$title);
146
- ?>
147
- <a rel='nofollow' title="Delicious" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons?>px !important"><i class="mo-custom-share-icon <?php echo $selected_theme; ?> mofa mofa-delicious" style="padding-top:8px;text-align:center;color:#ffffff;font-size:<?php echo ($sharingSize-16); ?>px !important;background-color:#<?php echo $custom_color?>;height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important"></i></a>
148
- <?php
149
- }
150
-
151
- if( get_option('mo_openid_odnoklassniki_share_enable') ) {
152
- $link = esc_url('http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st.comments='.$excerpt.'&amp;st._surl='.$url);
153
- ?>
154
- <a rel='nofollow' title="Odnoklassniki" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons?>px !important"><i class="mo-custom-share-icon <?php echo $selected_theme; ?> mofa mofa-odnoklassniki" style="padding-top:8px;text-align:center;color:#ffffff;font-size:<?php echo ($sharingSize-16); ?>px !important;background-color:#<?php echo $custom_color?>;height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important"></i></a>
155
- <?php
156
- }
157
  if( get_option('mo_openid_mail_share_enable') ) {
158
  ?>
159
  <a rel='nofollow' title="Email this page" onclick="popupCenter('mailto:?subject=<?php echo $email_subject ?>&amp;body=<?php echo $email_body ?>',800,500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons?>px !important">
@@ -259,18 +246,6 @@ $url = $http . $_SERVER["HTTP_HOST"] . $_SERVER['REQUEST_URI'];
259
  <?php
260
  }
261
 
262
- if( get_option('mo_openid_delicious_share_enable') ) {
263
- $link = esc_url('http://www.delicious.com/save?v=5&noui&jump=close&url='.$url.'&amp;title='.$title);
264
- ?>
265
- <a rel='nofollow' title="Delicious" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons-6?>px !important"><i class=" <?php echo $selected_theme; ?> mofa mofa-delicious" style="padding-top:4px;text-align:center;color:#<?php echo $fontColor ?> !important;font-size:<?php echo $sharingSize; ?>px !important;height:<?php echo $sharingSize-4; ?>px !important;width:<?php echo $sharingSize; ?>px !important;height:<?php echo $sharingSize-4; ?>px !important;width:<?php echo $sharingSize; ?>px !important"></i></a>
266
- <?php
267
- }
268
- if( get_option('mo_openid_odnoklassniki_share_enable') ) {
269
- $link = esc_url('http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st.comments='.$excerpt.'&amp;st._surl='.$url);
270
- ?>
271
- <a rel='nofollow' title="Odnoklassniki" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons-6?>px !important"><i class=" <?php echo $selected_theme; ?> mofa mofa-odnoklassniki" style="padding-top:4px;text-align:center;color:#<?php echo $fontColor ?> !important;font-size:<?php echo $sharingSize; ?>px !important;height:<?php echo $sharingSize-4; ?>px !important;width:<?php echo $sharingSize; ?>px !important;height:<?php echo $sharingSize-4; ?>px !important;width:<?php echo $sharingSize; ?>px !important"></i></a>
272
- <?php
273
- }
274
  if( get_option('mo_openid_mail_share_enable') ) {
275
  ?>
276
  <a rel='nofollow' title="Email this page" onclick="popupCenter('mailto:?subject=<?php echo $email_subject ?>&amp;body=<?php echo $email_body ?>',800,500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons?>px !important">
@@ -374,18 +349,6 @@ $url = $http . $_SERVER["HTTP_HOST"] . $_SERVER['REQUEST_URI'];
374
  <a rel='nofollow' title="Digg" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons?>px !important"><img alt='Digg' style= 'padding-top:2px; height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important;' src="<?php echo plugins_url( 'includes/images/icons/digg.png', __FILE__ )?>" class="mo-openid-app-share-icons <?php echo $selected_theme; ?>" ></a>
375
  <?php
376
  }
377
- if( get_option('mo_openid_delicious_share_enable') ) {
378
- $link = esc_url('http://www.delicious.com/save?v=5&noui&jump=close&url='.$url.'&amp;title='.$title);
379
- ?>
380
- <a rel='nofollow' title="Delicious" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons?>px !important"><img alt='Delicious' style= 'padding-top:2px; height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important;' src="<?php echo plugins_url( 'includes/images/icons/delicious.png', __FILE__ )?>" class="mo-openid-app-share-icons <?php echo $selected_theme; ?>" ></a>
381
- <?php
382
- }
383
- if( get_option('mo_openid_odnoklassniki_share_enable') ) {
384
- $link = esc_url('http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st.comments='.$excerpt.'&amp;st._surl='.$url);
385
- ?>
386
- <a rel='nofollow' title="Odnoklassniki" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons?>px !important"><img alt='Odnoklassniki' style= 'padding-top:2px; height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important;' src="<?php echo plugins_url( 'includes/images/icons/odnoklassniki.png', __FILE__ )?>" class="mo-openid-app-share-icons <?php echo $selected_theme; ?>" ></a>
387
- <?php
388
- }
389
  if( get_option('mo_openid_mail_share_enable') ) {
390
  ?>
391
  <a rel='nofollow' title="Email this page" onclick="popupCenter('mailto:?subject=<?php echo $email_subject ?>&amp;body=<?php echo $email_body ?>',800,500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons?>px !important">
@@ -498,20 +461,6 @@ $url = $http . $_SERVER["HTTP_HOST"] . $_SERVER['REQUEST_URI'];
498
  <a rel='nofollow' title="Digg" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" ><i class="mo-custom-share-icon <?php echo $selected_theme; ?> mofa mofa-digg" style="margin-bottom:<?php echo $space_icons-4?>px!important;padding-top:8px;text-align:center;color:#ffffff;font-size:<?php echo ($sharingSize-16); ?>px !important;background-color:#<?php echo $custom_color?>;height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important"></i></a>
499
  <?php
500
  }
501
-
502
- if( get_option('mo_openid_delicious_share_enable') ) {
503
- $link = esc_url('http://www.delicious.com/save?v=5&noui&jump=close&url='.$url.'&amp;title='.$title);
504
- ?>
505
- <a rel='nofollow' title="Delicious" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" ><i class="mo-custom-share-icon <?php echo $selected_theme; ?> mofa mofa-delicious" style="margin-bottom:<?php echo $space_icons-4?>px!important;padding-top:8px;text-align:center;color:#ffffff;font-size:<?php echo ($sharingSize-16); ?>px !important;background-color:#<?php echo $custom_color?>;height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important"></i></a>
506
- <?php
507
- }
508
-
509
- if( get_option('mo_openid_odnoklassniki_share_enable') ) {
510
- $link = esc_url('http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st.comments='.$excerpt.'&amp;st._surl='.$url);
511
- ?>
512
- <a rel='nofollow' title="Odnoklassniki" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" ><i class="mo-custom-share-icon <?php echo $selected_theme; ?> mofa mofa-odnoklassniki" style="margin-bottom:<?php echo $space_icons-4?>px!important;padding-top:8px;text-align:center;color:#ffffff;font-size:<?php echo ($sharingSize-16); ?>px !important;background-color:#<?php echo $custom_color?>;height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important"></i></a>
513
- <?php
514
- }
515
  if( get_option('mo_openid_mail_share_enable') ) {
516
  ?>
517
  <a rel='nofollow' title="Email this page" onclick="popupCenter('mailto:?subject=<?php echo $email_subject ?>&amp;body=<?php echo $email_body ?>',800,500);" class="mo-openid-share-link">
@@ -616,19 +565,6 @@ $url = $http . $_SERVER["HTTP_HOST"] . $_SERVER['REQUEST_URI'];
616
  <?php
617
  }
618
 
619
- if( get_option('mo_openid_delicious_share_enable') ) {
620
- $link = esc_url('http://www.delicious.com/save?v=5&noui&jump=close&url='.$url.'&amp;title='.$title);
621
- ?>
622
- <a rel='nofollow' title="Delicious" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" ><i class=" <?php echo $selected_theme; ?> mofa mofa-delicious" style="margin-bottom:<?php echo $space_icons-4?>px !important;padding-top:4px;text-align:center;color:#<?php echo $fontColor ?> !important;font-size:<?php echo $sharingSize; ?>px !important;height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important"></i></a>
623
- <?php
624
- }
625
-
626
- if( get_option('mo_openid_odnoklassniki_share_enable') ) {
627
- $link = esc_url('http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st.comments='.$excerpt.'&amp;st._surl='.$url);
628
- ?>
629
- <a rel='nofollow' title="Odnoklassniki" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" ><i class=" <?php echo $selected_theme; ?> mofa mofa-odnoklassniki" style="margin-bottom:<?php echo $space_icons-4?>px !important;padding-top:4px;text-align:center;color:#<?php echo $fontColor ?> !important;font-size:<?php echo $sharingSize; ?>px !important;height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important"></i></a>
630
- <?php
631
- }
632
  if( get_option('mo_openid_mail_share_enable') ) {
633
  ?>
634
  <a rel='nofollow' title="Email this page" onclick="popupCenter('mailto:?subject=<?php echo $email_subject ?>&amp;body=<?php echo $email_body ?>',800,500);" class="mo-openid-share-link">
@@ -733,20 +669,6 @@ $url = $http . $_SERVER["HTTP_HOST"] . $_SERVER['REQUEST_URI'];
733
  <?php
734
  }
735
 
736
- if( get_option('mo_openid_delicious_share_enable') ) {
737
- $link = esc_url('http://www.delicious.com/save?v=5&noui&jump=close&url='.$url.'&amp;title='.$title);
738
- ?>
739
- <a rel='nofollow' title="Delicious" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" ><img alt='Delicoius' style= 'margin-bottom:<?php echo $space_icons-6?>px !important;height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important;' src="<?php echo plugins_url( 'includes/images/icons/delicious.png', __FILE__ )?>" class="mo-openid-app-share-icons <?php echo $selected_theme; ?>" ></a>
740
- <?php
741
- }
742
-
743
- if( get_option('mo_openid_odnoklassniki_share_enable') ) {
744
- $link = esc_url('http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st.comments='.$excerpt.'&amp;st._surl='.$url);
745
- ?>
746
- <a rel='nofollow' title="Odnoklassniki" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" ><img alt='Odnoklassniki' style= 'margin-bottom:<?php echo $space_icons-6?>px !important;height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important;' src="<?php echo plugins_url( 'includes/images/icons/odnoklassniki.png', __FILE__ )?>" class="mo-openid-app-share-icons <?php echo $selected_theme; ?>" ></a>
747
- <?php
748
- }
749
-
750
  if( get_option('mo_openid_mail_share_enable') ) {
751
  ?>
752
  <a rel='nofollow' title="Email this page" onclick="popupCenter('mailto:?subject=<?php echo $email_subject ?>&amp;body=<?php echo $email_body ?>',800,500);" class="mo-openid-share-link">
141
  <?php
142
  }
143
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  if( get_option('mo_openid_mail_share_enable') ) {
145
  ?>
146
  <a rel='nofollow' title="Email this page" onclick="popupCenter('mailto:?subject=<?php echo $email_subject ?>&amp;body=<?php echo $email_body ?>',800,500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons?>px !important">
246
  <?php
247
  }
248
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  if( get_option('mo_openid_mail_share_enable') ) {
250
  ?>
251
  <a rel='nofollow' title="Email this page" onclick="popupCenter('mailto:?subject=<?php echo $email_subject ?>&amp;body=<?php echo $email_body ?>',800,500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons?>px !important">
349
  <a rel='nofollow' title="Digg" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons?>px !important"><img alt='Digg' style= 'padding-top:2px; height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important;' src="<?php echo plugins_url( 'includes/images/icons/digg.png', __FILE__ )?>" class="mo-openid-app-share-icons <?php echo $selected_theme; ?>" ></a>
350
  <?php
351
  }
 
 
 
 
 
 
 
 
 
 
 
 
352
  if( get_option('mo_openid_mail_share_enable') ) {
353
  ?>
354
  <a rel='nofollow' title="Email this page" onclick="popupCenter('mailto:?subject=<?php echo $email_subject ?>&amp;body=<?php echo $email_body ?>',800,500);" class="mo-openid-share-link" style="margin-left : <?php echo $spaceBetweenIcons?>px !important">
461
  <a rel='nofollow' title="Digg" onclick="popupCenter('<?php echo $link; ?>', 800, 500);" class="mo-openid-share-link" ><i class="mo-custom-share-icon <?php echo $selected_theme; ?> mofa mofa-digg" style="margin-bottom:<?php echo $space_icons-4?>px!important;padding-top:8px;text-align:center;color:#ffffff;font-size:<?php echo ($sharingSize-16); ?>px !important;background-color:#<?php echo $custom_color?>;height:<?php echo $sharingSize; ?>px !important;width:<?php echo $sharingSize; ?>px !important"></i></a>
462
  <?php
463
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  if( get_option('mo_openid_mail_share_enable') ) {
465
  ?>
466
  <a rel='nofollow' title="Email this page" onclick="popupCenter('mailto:?subject=<?php echo $email_subject ?>&amp;body=<?php echo $email_body ?>',800,500);" class="mo-openid-share-link">
565
  <?php
566
  }
567
 
 
 
 
 
 
 
 
 
 
 
 
 
 
568
  if( get_option('mo_openid_mail_share_enable') ) {
569
  ?>
570
  <a rel='nofollow' title="Email this page" onclick="popupCenter('mailto:?subject=<?php echo $email_subject ?>&amp;body=<?php echo $email_body ?>',800,500);" class="mo-openid-share-link">
669
  <?php
670
  }
671
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
672
  if( get_option('mo_openid_mail_share_enable') ) {
673
  ?>
674
  <a rel='nofollow' title="Email this page" onclick="popupCenter('mailto:?subject=<?php echo $email_subject ?>&amp;body=<?php echo $email_body ?>',800,500);" class="mo-openid-share-link">
class-mo-openid-sso-shortcode-buttons.php CHANGED
@@ -104,18 +104,10 @@ function mo_openid_share_shortcode( $atts = '', $title = '', $excerpt = '' ) {
104
  if( get_option('mo_openid_vkontakte_share_enable') ) {
105
  $link = 'http://vk.com/share.php?url='.$url.'&amp;title='.$title.'&amp;description='.$excerpt;
106
  if ($sharing_counts){
107
- $count = get_transient( 'vkontakte' );
108
- if($count===false) {
109
- $content = file_get_contents("https://vk.com/share.php?act=count&url=".$url);
110
- $content=explode(',',$content);
111
- $content=explode(')',$content[1]);
112
- $count=$content[0];
113
- $count=count_convert($count);
114
- set_transient('vkontakte', $count, 3600);
115
- }
116
  $html .= "<li>";
117
  }
118
- $html .= "<a rel='nofollow' title='Vkontakte' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-vk' style='padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>"; if($sharing_counts){$html .= "<span style='margin-left : " . ($spaceBetweenIcons) . "px !important'>$count</span></li>";};
119
  }
120
  if( get_option('mo_openid_tumblr_share_enable') ) {
121
  $link = 'http://www.tumblr.com/share/link?url='.$url.'&amp;title='.$title;
@@ -125,18 +117,9 @@ function mo_openid_share_shortcode( $atts = '', $title = '', $excerpt = '' ) {
125
  if( get_option('mo_openid_stumble_share_enable') ) {
126
  $link = 'http://www.stumbleupon.com/submit?url='.$url.'&amp;title='.$title;
127
  if ($sharing_counts){
128
- $count = get_transient( 'stumbleupon' );
129
- if($count===false) {
130
- $content = file_get_contents("http://www.stumbleupon.com/services/1.01/badge.getinfo?url=" . $url);
131
- $content = explode(',', $content);
132
- $content = explode(':', $content[5]);
133
- $count = $content[1];
134
- $count=count_convert($count);
135
- set_transient('stumbleupon', $count, 3600);
136
- }
137
  $html .= "<li>";
138
  }
139
- $html .= "<a rel='nofollow' title='StumbleUpon' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-stumbleupon' style='padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>"; if($sharing_counts){$html .= "<span style='margin-left : " . ($spaceBetweenIcons) . "px !important'>$count</span></li>";};
140
  }
141
  if( get_option('mo_openid_linkedin_share_enable') ) {
142
  $link = 'https://www.linkedin.com/shareArticle?mini=true&amp;title='.$title.'&amp;url='.$url.'&amp;summary='.$excerpt;
@@ -156,18 +139,9 @@ function mo_openid_share_shortcode( $atts = '', $title = '', $excerpt = '' ) {
156
 
157
  if( get_option('mo_openid_pinterest_share_enable') ) {
158
  if ($sharing_counts){
159
- $count = get_transient( 'pinterest' );
160
- if($count==false) {
161
- $content_pint = file_get_contents("https://widgets.pinterest.com/v1/urls/count.json?source=6&url=".$url);
162
- $body = preg_replace( '/^receiveCount\((.*)\)$/', '\\1', $content_pint );
163
- $count=explode(":",$body);
164
- $count=explode("}",$count[3]);
165
- $count=count_convert($count[0]);
166
- set_transient('pinterest', $count, 3600);
167
- }
168
  $html .= "<li>";
169
  }
170
- $html .= "<a rel='nofollow' title='Pinterest' href='javascript:pinIt();' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-pinterest' style='padding-top:3px;text-align:center;color:#ffffff;font-size:" .($sharingSize-10). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>"; if($sharing_counts){$html .= "<span style='margin-left : " . ($spaceBetweenIcons) . "px !important'>$count</span></li>";};
171
  }
172
 
173
  if( get_option('mo_openid_pocket_share_enable') ) {
@@ -178,14 +152,6 @@ function mo_openid_share_shortcode( $atts = '', $title = '', $excerpt = '' ) {
178
  $link = 'http://digg.com/submit?url='.$url.'&amp;title='.$title;
179
  if ($sharing_counts){$html .= "<li>";} $html .= "<a rel='nofollow' title='Digg' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-digg' style='padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
180
  }
181
- if( get_option('mo_openid_delicious_share_enable') ) {
182
- $link = 'http://www.delicious.com/save?v=5&noui&jump=close&url='.$url.'&amp;title='.$title;
183
- if ($sharing_counts){$html .= "<li>";} $html .= "<a rel='nofollow' title='Delicious' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-delicious' style='padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
184
- }
185
- if( get_option('mo_openid_odnoklassniki_share_enable') ) {
186
- $link = 'http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st.comments='.$excerpt.'&amp;st._surl='.$url;
187
- if ($sharing_counts){$html .= "<li>";} $html .= "<a rel='nofollow' title='Odnoklassniki' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-odnoklassniki' style='padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
188
- }
189
  if( get_option('mo_openid_mail_share_enable') ) {
190
  if ($sharing_counts){$html .= "<li>";} $html .= "<a rel='nofollow' title='Email this page' onclick='popupCenter(" . '"mailto:?subject= ' . $email_subject . '&amp;body=' . $email_body. '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-envelope' style='padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
191
  }
@@ -244,16 +210,8 @@ function mo_openid_share_shortcode( $atts = '', $title = '', $excerpt = '' ) {
244
  if (get_option('mo_openid_vkontakte_share_enable')) {
245
  $link = 'http://vk.com/share.php?url=' . $url . '&amp;title=' . $title . '&amp;description=' . $excerpt;
246
  if ($sharing_counts){
247
- $count = get_transient( 'vkontakte' );
248
- if($count===false) {
249
- $content = file_get_contents("https://vk.com/share.php?act=count&url=".$url);
250
- $content=explode(',',$content);
251
- $content=explode(')',$content[1]);
252
- $count=$content[0];
253
- $count=count_convert($count);
254
- set_transient('vkontakte', $count, 3600);
255
- }
256
- $html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Vkontakte' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons - 6) . "px !important'><i class=' " . $selected_theme . " mofa mofa-vk' style='padding-top:4px;text-align:center;color:" . $fontColor . ";font-size:" . $sharingSize . "px !important;height:" . $sharingSize . "px !important;width:" . $sharingSize . "px !important;'></i></a>"; if($sharing_counts){$html .= "<span style='margin-left : " . ($spaceBetweenIcons) . "px !important'>$count</span></li>";};
257
  }
258
  if (get_option('mo_openid_tumblr_share_enable')) {
259
  $link = 'http://www.tumblr.com/share/link?url=' . $url . '&amp;title=' . $title;
@@ -262,18 +220,9 @@ function mo_openid_share_shortcode( $atts = '', $title = '', $excerpt = '' ) {
262
  if (get_option('mo_openid_stumble_share_enable')) {
263
  $link = 'http://www.stumbleupon.com/submit?url=' . $url . '&amp;title=' . $title;
264
  if ($sharing_counts){
265
- $count = get_transient( 'stumbleupon' );
266
- if($count===false) {
267
- $content = file_get_contents("http://www.stumbleupon.com/services/1.01/badge.getinfo?url=" . $url);
268
- $content = explode(',', $content);
269
- $content = explode(':', $content[5]);
270
- $count = $content[1];
271
- $count=count_convert($count);
272
- set_transient('stumbleupon', $count, 3600);
273
- }
274
  $html .= "<li style='line-height: 0.0px'>";
275
  }
276
- $html .= "<a rel='nofollow' title='StumbleUpon' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons - 6) . "px !important'><i class=' " . $selected_theme . " mofa mofa-stumbleupon' style='padding-top:4px;text-align:center;color:" . $fontColor . ";font-size:" . $sharingSize . "px !important;height:" . $sharingSize . "px !important;width:" . $sharingSize . "px !important;'></i></a>"; if($sharing_counts){$html .= "<span style='margin-left : " . ($spaceBetweenIcons) . "px !important'>$count</span></li>";};
277
  }
278
  if (get_option('mo_openid_linkedin_share_enable')) {
279
  $link = 'https://www.linkedin.com/shareArticle?mini=true&amp;title=' . $title . '&amp;url=' . $url . '&amp;summary=' . $excerpt;
@@ -285,16 +234,8 @@ function mo_openid_share_shortcode( $atts = '', $title = '', $excerpt = '' ) {
285
  }
286
  if (get_option('mo_openid_pinterest_share_enable')) {
287
  if ($sharing_counts){
288
- $count = get_transient( 'pinterest' );
289
- if($count===false) {
290
- $content_pint = file_get_contents("https://widgets.pinterest.com/v1/urls/count.json?source=6&url=".$url);
291
- $body = preg_replace( '/^receiveCount\((.*)\)$/', '\\1', $content_pint );
292
- $count=explode(":",$body);
293
- $count=explode("}",$count[3]);
294
- $count=count_convert($count[0]);
295
- set_transient('pinterest', $count, 3600);
296
- }
297
- $html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Pinterest' href='javascript:pinIt();' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons - 6) . "px !important'><i class=' " . $selected_theme . " mofa mofa-pinterest' style='padding-top:4px;text-align:center;color:" . $fontColor . ";font-size:" . $sharingSize . "px !important;height:" . $sharingSize . "px !important;width:" . $sharingSize . "px !important;'></i></a>"; if($sharing_counts){$html .= "<span style='margin-left : " . ($spaceBetweenIcons) . "px !important'>$count</span></li>";};
298
  }
299
 
300
  if (get_option('mo_openid_pocket_share_enable')) {
@@ -305,14 +246,6 @@ function mo_openid_share_shortcode( $atts = '', $title = '', $excerpt = '' ) {
305
  $link = 'http://digg.com/submit?url=' . $url . '&amp;title=' . $title;
306
  if ($sharing_counts){$html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Digg' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons - 6) . "px !important'><i class=' " . $selected_theme . " mofa mofa-digg' style='padding-top:4px;text-align:center;color:" . $fontColor . ";font-size:" . $sharingSize . "px !important;height:" . $sharingSize . "px !important;width:" . $sharingSize . "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
307
  }
308
- if (get_option('mo_openid_delicious_share_enable')) {
309
- $link = 'http://www.delicious.com/save?v=5&noui&jump=close&url=' . $url . '&amp;title=' . $title;
310
- if ($sharing_counts){$html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Delicious' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons - 6) . "px !important'><i class=' " . $selected_theme . " mofa mofa-delicious' style='padding-top:4px;text-align:center;color:" . $fontColor . ";font-size:" . $sharingSize . "px !important;height:" . $sharingSize . "px !important;width:" . $sharingSize . "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
311
- }
312
- if (get_option('mo_openid_odnoklassniki_share_enable')) {
313
- $link = 'http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st.comments=' . $excerpt . '&amp;st._surl=' . $url;
314
- if ($sharing_counts){$html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Odnoklassniki' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons - 6) . "px !important'><i class=' " . $selected_theme . " mofa mofa-odnoklassniki' style='padding-top:4px;text-align:center;color:" . $fontColor . ";font-size:" . $sharingSize . "px !important;height:" . $sharingSize . "px !important;width:" . $sharingSize . "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
315
- }
316
  if (get_option('mo_openid_mail_share_enable')) {
317
  if ($sharing_counts){$html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Email this page' onclick='popupCenter(" . '"mailto:?subject= ' . $email_subject . '&amp;body=' . $email_body . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons) . "px !important'><i class=' " . $selected_theme . " mofa mofa-envelope' style='padding-top:4px;text-align:center;color:" . $fontColor . ";font-size:" . $sharingSize . "px !important;height:" . $sharingSize . "px !important;width:" . $sharingSize . "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
318
  }
@@ -369,16 +302,8 @@ function mo_openid_share_shortcode( $atts = '', $title = '', $excerpt = '' ) {
369
  if( get_option('mo_openid_vkontakte_share_enable') ) {
370
  $link = 'http://vk.com/share.php?url='.$url.'&amp;title='.$title.'&amp;description='.$excerpt;
371
  if ($sharing_counts){
372
- $count = get_transient( 'vkontakte' );
373
- if($count===false) {
374
- $content = file_get_contents("https://vk.com/share.php?act=count&url=".$url);
375
- $content=explode(',',$content);
376
- $content=explode(')',$content[1]);
377
- $count=$content[0];
378
- $count=count_convert($count);
379
- set_transient('vkontakte', $count, 3600);
380
- }
381
- $html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Vkontakte' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons) . "px !important'><img alt='Vkontakte' style= 'height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/vk.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>"; if($sharing_counts){$html .= "<span style='margin-left : " . ($spaceBetweenIcons) . "px !important'>$count</span></li>";};
382
  }
383
  if( get_option('mo_openid_tumblr_share_enable') ) {
384
  $link = 'http://www.tumblr.com/share/link?url='.$url.'&amp;title='.$title;
@@ -387,18 +312,10 @@ function mo_openid_share_shortcode( $atts = '', $title = '', $excerpt = '' ) {
387
  if( get_option('mo_openid_stumble_share_enable') ) {
388
  $link = 'http://www.stumbleupon.com/submit?url='.$url.'&amp;title='.$title;
389
  if ($sharing_counts){
390
- $count = get_transient( 'stumbleupon' );
391
- if($count===false) {
392
- $content = file_get_contents("http://www.stumbleupon.com/services/1.01/badge.getinfo?url=" . $url);
393
- $content = explode(',', $content);
394
- $content = explode(':', $content[5]);
395
- $count = $content[1];
396
- $count=count_convert($count);
397
- set_transient('stumbleupon', $count, 3600);
398
- }
399
  $html .= "<li style='line-height: 0.0px'>";
400
  }
401
- $html .= "<a rel='nofollow' title='StumbleUpon' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons) . "px !important'><img alt='StumbleUpon' style= 'height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/stumble.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>"; if($sharing_counts){$html .= "<span style='margin-left : " . ($spaceBetweenIcons) . "px !important'>$count</span></li>";};
402
  }
403
  if( get_option('mo_openid_linkedin_share_enable') ) {
404
  $link = 'https://www.linkedin.com/shareArticle?mini=true&amp;title='.$title.'&amp;url='.$url.'&amp;summary='.$excerpt;
@@ -412,16 +329,7 @@ function mo_openid_share_shortcode( $atts = '', $title = '', $excerpt = '' ) {
412
 
413
  if( get_option('mo_openid_pinterest_share_enable') ) {
414
  if ($sharing_counts){
415
- $count = get_transient( 'pinterest' );
416
- if($count===false) {
417
- $content_pint = file_get_contents("https://widgets.pinterest.com/v1/urls/count.json?source=6&url=".$url);
418
- $body = preg_replace( '/^receiveCount\((.*)\)$/', '\\1', $content_pint );
419
- $count=explode(":",$body);
420
- $count=explode("}",$count[3]);
421
- $count=count_convert($count[0]);
422
- set_transient('pinterest', $count, 3600);
423
- }
424
- $html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Pinterest' href='javascript:pinIt();' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons) . "px !important'><img alt='Pinterest' style= 'height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/pinterest.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>"; if($sharing_counts){$html .= "<span style='margin-left : " . ($spaceBetweenIcons) . "px !important'>$count</span></li>";};
425
  }
426
 
427
  if( get_option('mo_openid_pocket_share_enable') ) {
@@ -432,14 +340,6 @@ function mo_openid_share_shortcode( $atts = '', $title = '', $excerpt = '' ) {
432
  $link = 'http://digg.com/submit?url='.$url.'&amp;title='.$title;
433
  if ($sharing_counts){$html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Digg' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons) . "px !important'><img alt='Digg' style= 'height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/digg.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
434
  }
435
- if( get_option('mo_openid_delicious_share_enable') ) {
436
- $link = 'http://www.delicious.com/save?v=5&noui&jump=close&url='.$url.'&amp;title='.$title;
437
- if ($sharing_counts){$html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Delicious' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons) . "px !important'><img alt='Delicious' style= 'height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/delicious.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
438
- }
439
- if( get_option('mo_openid_odnoklassniki_share_enable') ) {
440
- $link = 'http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st.comments='.$excerpt.'&amp;st._surl='.$url;
441
- if ($sharing_counts){$html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Odnoklassniki' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons) . "px !important'><img alt='Odnoklassniki' style= 'height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/odnoklassniki.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
442
- }
443
  if( get_option('mo_openid_mail_share_enable') ) {
444
  if ($sharing_counts){$html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Email this page' onclick='popupCenter(" . '"mailto:?subject= ' . $email_subject . '&amp;body=' . $email_body. '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><img alt='Email this page' style= 'height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/mail.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
445
  }
@@ -583,14 +483,6 @@ function mo_openid_vertical_share_shortcode( $atts = '', $title = '', $excerpt =
583
  $link = 'http://digg.com/submit?url='.$url.'&amp;title='.$title;
584
  $html .= "<a rel='nofollow' title='Digg' onclick='popupCenter(". '"' . $link . '"' .", 800, 500);' class='mo-openid-share-link' ><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-digg' style='margin-bottom : " . ($spaceBetweenIcons-4) . "px !important;padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>";
585
  }
586
- if( get_option('mo_openid_delicious_share_enable') ) {
587
- $link = 'http://www.delicious.com/save?v=5&noui&jump=close&url='.$url.'&amp;title='.$title;
588
- $html .= "<a rel='nofollow' title='Delicious' onclick='popupCenter(". '"' . $link . '"' .", 800, 500);' class='mo-openid-share-link' ><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-delicious' style='margin-bottom : " . ($spaceBetweenIcons-4) . "px !important;padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>";
589
- }
590
- if( get_option('mo_openid_odnoklassniki_share_enable') ) {
591
- $link = 'http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st.comments='.$excerpt.'&amp;st._surl='.$url;
592
- $html .= "<a rel='nofollow' title='Odnoklassniki' onclick='popupCenter(". '"' . $link . '"' .", 800, 500);' class='mo-openid-share-link' ><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-odnoklassniki' style='margin-bottom : " . ($spaceBetweenIcons-4) . "px !important;padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>";
593
- }
594
  if( get_option('mo_openid_mail_share_enable') ) {
595
  $html .= "<a rel='nofollow' title='Email this page' onclick='popupCenter(" . '"mailto:?subject= ' . $email_subject . '&amp;body=' . $email_body. '"' . ", 800, 500);' class='mo-openid-share-link' ><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-envelope' style='margin-bottom : " . ($spaceBetweenIcons-4) . "px !important;padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>";
596
  }
@@ -658,14 +550,6 @@ function mo_openid_vertical_share_shortcode( $atts = '', $title = '', $excerpt =
658
  $link = 'http://digg.com/submit?url='.$url.'&amp;title='.$title;
659
  $html .= "<a rel='nofollow' title='Digg' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' ><i class='mofa mofa-digg' style='margin-bottom : " . ($spaceBetweenIcons-4) . "px !important;padding-top:4px;text-align:center;color:" .$fontColor . ";font-size:" .$sharingSize. "px !important;height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>";
660
  }
661
- if( get_option('mo_openid_delicious_share_enable') ) {
662
- $link = 'http://www.delicious.com/save?v=5&noui&jump=close&url='.$url.'&amp;title='.$title;
663
- $html .= "<a rel='nofollow' title='Delicious' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' ><i class='mofa mofa-delicious' style='margin-bottom : " . ($spaceBetweenIcons-4) . "px !important;padding-top:4px;text-align:center;color:" .$fontColor . ";font-size:" .$sharingSize. "px !important;height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>";
664
- }
665
- if( get_option('mo_openid_odnoklassniki_share_enable') ) {
666
- $link = 'http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st.comments='.$excerpt.'&amp;st._surl='.$url;
667
- $html .= "<a rel='nofollow' title='Odnoklassniki' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' ><i class='mofa mofa-odnoklassniki' style='margin-bottom : " . ($spaceBetweenIcons-4) . "px !important;padding-top:4px;text-align:center;color:" .$fontColor . ";font-size:" .$sharingSize. "px !important;height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>";
668
- }
669
  if( get_option('mo_openid_mail_share_enable') ) {
670
  $html .= "<a rel='nofollow' title='Email this page' onclick='popupCenter(" . '"mailto:?subject= ' . $email_subject . '&amp;body=' . $email_body. '"' . ", 800, 500);' class='mo-openid-share-link' ><i class='mofa mofa-envelope' style='margin-bottom : " . ($spaceBetweenIcons-4) . "px !important;padding-top:4px;text-align:center;color:" .$fontColor . ";font-size:" .$sharingSize. "px !important;height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>";
671
  }
@@ -732,14 +616,7 @@ function mo_openid_vertical_share_shortcode( $atts = '', $title = '', $excerpt =
732
  $link = 'http://digg.com/submit?url='.$url.'&amp;title='.$title;
733
  $html .= "<a rel='nofollow' title='Digg' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link'><img alt='Digg' style= 'margin-bottom : " . ($spaceBetweenIcons-6) . "px !important;height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/digg.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>";
734
  }
735
- if( get_option('mo_openid_delicious_share_enable') ) {
736
- $link = 'http://www.delicious.com/save?v=5&noui&jump=close&url='.$url.'&amp;title='.$title;
737
- $html .= "<a rel='nofollow' title='Delicious' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link'><img alt='Delicious' style= 'margin-bottom : " . ($spaceBetweenIcons-6) . "px !important;height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/delicious.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>";
738
- }
739
- if( get_option('mo_openid_odnoklassniki_share_enable') ) {
740
- $link = 'http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st.comments='.$excerpt.'&amp;st._surl='.$url;
741
- $html .= "<a rel='nofollow' title='Odnoklassniki' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link'><img alt='Odnoklassniki' style= 'margin-bottom : " . ($spaceBetweenIcons-6) . "px !important;height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/odnoklassniki.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>";
742
- }
743
  if( get_option('mo_openid_mail_share_enable') ) {
744
  $html .= "<a rel='nofollow' title='Email this page' onclick='popupCenter(" . '"mailto:?subject= ' . $email_subject . '&amp;body=' . $email_body. '"' . ", 800, 500);' class='mo-openid-share-link'><img alt='Email this page' style= 'margin-bottom : " . ($spaceBetweenIcons-6) . "px !important; height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/mail.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>";
745
  }
104
  if( get_option('mo_openid_vkontakte_share_enable') ) {
105
  $link = 'http://vk.com/share.php?url='.$url.'&amp;title='.$title.'&amp;description='.$excerpt;
106
  if ($sharing_counts){
107
+
 
 
 
 
 
 
 
 
108
  $html .= "<li>";
109
  }
110
+ $html .= "<a rel='nofollow' title='Vkontakte' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-vk' style='padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
111
  }
112
  if( get_option('mo_openid_tumblr_share_enable') ) {
113
  $link = 'http://www.tumblr.com/share/link?url='.$url.'&amp;title='.$title;
117
  if( get_option('mo_openid_stumble_share_enable') ) {
118
  $link = 'http://www.stumbleupon.com/submit?url='.$url.'&amp;title='.$title;
119
  if ($sharing_counts){
 
 
 
 
 
 
 
 
 
120
  $html .= "<li>";
121
  }
122
+ $html .= "<a rel='nofollow' title='StumbleUpon' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-stumbleupon' style='padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
123
  }
124
  if( get_option('mo_openid_linkedin_share_enable') ) {
125
  $link = 'https://www.linkedin.com/shareArticle?mini=true&amp;title='.$title.'&amp;url='.$url.'&amp;summary='.$excerpt;
139
 
140
  if( get_option('mo_openid_pinterest_share_enable') ) {
141
  if ($sharing_counts){
 
 
 
 
 
 
 
 
 
142
  $html .= "<li>";
143
  }
144
+ $html .= "<a rel='nofollow' title='Pinterest' href='javascript:pinIt();' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-pinterest' style='padding-top:3px;text-align:center;color:#ffffff;font-size:" .($sharingSize-10). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
145
  }
146
 
147
  if( get_option('mo_openid_pocket_share_enable') ) {
152
  $link = 'http://digg.com/submit?url='.$url.'&amp;title='.$title;
153
  if ($sharing_counts){$html .= "<li>";} $html .= "<a rel='nofollow' title='Digg' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-digg' style='padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
154
  }
 
 
 
 
 
 
 
 
155
  if( get_option('mo_openid_mail_share_enable') ) {
156
  if ($sharing_counts){$html .= "<li>";} $html .= "<a rel='nofollow' title='Email this page' onclick='popupCenter(" . '"mailto:?subject= ' . $email_subject . '&amp;body=' . $email_body. '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-envelope' style='padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
157
  }
210
  if (get_option('mo_openid_vkontakte_share_enable')) {
211
  $link = 'http://vk.com/share.php?url=' . $url . '&amp;title=' . $title . '&amp;description=' . $excerpt;
212
  if ($sharing_counts){
213
+
214
+ $html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Vkontakte' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons - 6) . "px !important'><i class=' " . $selected_theme . " mofa mofa-vk' style='padding-top:4px;text-align:center;color:" . $fontColor . ";font-size:" . $sharingSize . "px !important;height:" . $sharingSize . "px !important;width:" . $sharingSize . "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
 
 
 
 
 
 
 
 
215
  }
216
  if (get_option('mo_openid_tumblr_share_enable')) {
217
  $link = 'http://www.tumblr.com/share/link?url=' . $url . '&amp;title=' . $title;
220
  if (get_option('mo_openid_stumble_share_enable')) {
221
  $link = 'http://www.stumbleupon.com/submit?url=' . $url . '&amp;title=' . $title;
222
  if ($sharing_counts){
 
 
 
 
 
 
 
 
 
223
  $html .= "<li style='line-height: 0.0px'>";
224
  }
225
+ $html .= "<a rel='nofollow' title='StumbleUpon' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons - 6) . "px !important'><i class=' " . $selected_theme . " mofa mofa-stumbleupon' style='padding-top:4px;text-align:center;color:" . $fontColor . ";font-size:" . $sharingSize . "px !important;height:" . $sharingSize . "px !important;width:" . $sharingSize . "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
226
  }
227
  if (get_option('mo_openid_linkedin_share_enable')) {
228
  $link = 'https://www.linkedin.com/shareArticle?mini=true&amp;title=' . $title . '&amp;url=' . $url . '&amp;summary=' . $excerpt;
234
  }
235
  if (get_option('mo_openid_pinterest_share_enable')) {
236
  if ($sharing_counts){
237
+
238
+ $html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Pinterest' href='javascript:pinIt();' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons - 6) . "px !important'><i class=' " . $selected_theme . " mofa mofa-pinterest' style='padding-top:4px;text-align:center;color:" . $fontColor . ";font-size:" . $sharingSize . "px !important;height:" . $sharingSize . "px !important;width:" . $sharingSize . "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
 
 
 
 
 
 
 
 
239
  }
240
 
241
  if (get_option('mo_openid_pocket_share_enable')) {
246
  $link = 'http://digg.com/submit?url=' . $url . '&amp;title=' . $title;
247
  if ($sharing_counts){$html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Digg' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons - 6) . "px !important'><i class=' " . $selected_theme . " mofa mofa-digg' style='padding-top:4px;text-align:center;color:" . $fontColor . ";font-size:" . $sharingSize . "px !important;height:" . $sharingSize . "px !important;width:" . $sharingSize . "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
248
  }
 
 
 
 
 
 
 
 
249
  if (get_option('mo_openid_mail_share_enable')) {
250
  if ($sharing_counts){$html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Email this page' onclick='popupCenter(" . '"mailto:?subject= ' . $email_subject . '&amp;body=' . $email_body . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons) . "px !important'><i class=' " . $selected_theme . " mofa mofa-envelope' style='padding-top:4px;text-align:center;color:" . $fontColor . ";font-size:" . $sharingSize . "px !important;height:" . $sharingSize . "px !important;width:" . $sharingSize . "px !important;'></i></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
251
  }
302
  if( get_option('mo_openid_vkontakte_share_enable') ) {
303
  $link = 'http://vk.com/share.php?url='.$url.'&amp;title='.$title.'&amp;description='.$excerpt;
304
  if ($sharing_counts){
305
+
306
+ $html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Vkontakte' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons) . "px !important'><img alt='Vkontakte' style= 'height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/vk.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
 
 
 
 
 
 
 
 
307
  }
308
  if( get_option('mo_openid_tumblr_share_enable') ) {
309
  $link = 'http://www.tumblr.com/share/link?url='.$url.'&amp;title='.$title;
312
  if( get_option('mo_openid_stumble_share_enable') ) {
313
  $link = 'http://www.stumbleupon.com/submit?url='.$url.'&amp;title='.$title;
314
  if ($sharing_counts){
315
+
 
 
 
 
 
 
 
 
316
  $html .= "<li style='line-height: 0.0px'>";
317
  }
318
+ $html .= "<a rel='nofollow' title='StumbleUpon' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons) . "px !important'><img alt='StumbleUpon' style= 'height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/stumble.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
319
  }
320
  if( get_option('mo_openid_linkedin_share_enable') ) {
321
  $link = 'https://www.linkedin.com/shareArticle?mini=true&amp;title='.$title.'&amp;url='.$url.'&amp;summary='.$excerpt;
329
 
330
  if( get_option('mo_openid_pinterest_share_enable') ) {
331
  if ($sharing_counts){
332
+ $html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Pinterest' href='javascript:pinIt();' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons) . "px !important'><img alt='Pinterest' style= 'height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/pinterest.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
 
 
 
 
 
 
 
 
 
333
  }
334
 
335
  if( get_option('mo_openid_pocket_share_enable') ) {
340
  $link = 'http://digg.com/submit?url='.$url.'&amp;title='.$title;
341
  if ($sharing_counts){$html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Digg' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " . ($spaceBetweenIcons) . "px !important'><img alt='Digg' style= 'height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/digg.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
342
  }
 
 
 
 
 
 
 
 
343
  if( get_option('mo_openid_mail_share_enable') ) {
344
  if ($sharing_counts){$html .= "<li style='line-height: 0.0px'>";} $html .= "<a rel='nofollow' title='Email this page' onclick='popupCenter(" . '"mailto:?subject= ' . $email_subject . '&amp;body=' . $email_body. '"' . ", 800, 500);' class='mo-openid-share-link' style='margin-left : " .($spaceBetweenIcons) . "px !important'><img alt='Email this page' style= 'height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/mail.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>"; if($sharing_counts){$html .= "<span2 style='margin-left : " . ($spaceBetweenIcons) . "px !important'></span2></li>";};
345
  }
483
  $link = 'http://digg.com/submit?url='.$url.'&amp;title='.$title;
484
  $html .= "<a rel='nofollow' title='Digg' onclick='popupCenter(". '"' . $link . '"' .", 800, 500);' class='mo-openid-share-link' ><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-digg' style='margin-bottom : " . ($spaceBetweenIcons-4) . "px !important;padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>";
485
  }
 
 
 
 
 
 
 
 
486
  if( get_option('mo_openid_mail_share_enable') ) {
487
  $html .= "<a rel='nofollow' title='Email this page' onclick='popupCenter(" . '"mailto:?subject= ' . $email_subject . '&amp;body=' . $email_body. '"' . ", 800, 500);' class='mo-openid-share-link' ><i class='mo-custom-share-icon " .$selected_theme. " mofa mofa-envelope' style='margin-bottom : " . ($spaceBetweenIcons-4) . "px !important;padding-top:8px;text-align:center;color:#ffffff;font-size:" .($sharingSize-16). "px !important;background-color:#" .$custom_color. ";height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>";
488
  }
550
  $link = 'http://digg.com/submit?url='.$url.'&amp;title='.$title;
551
  $html .= "<a rel='nofollow' title='Digg' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link' ><i class='mofa mofa-digg' style='margin-bottom : " . ($spaceBetweenIcons-4) . "px !important;padding-top:4px;text-align:center;color:" .$fontColor . ";font-size:" .$sharingSize. "px !important;height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>";
552
  }
 
 
 
 
 
 
 
 
553
  if( get_option('mo_openid_mail_share_enable') ) {
554
  $html .= "<a rel='nofollow' title='Email this page' onclick='popupCenter(" . '"mailto:?subject= ' . $email_subject . '&amp;body=' . $email_body. '"' . ", 800, 500);' class='mo-openid-share-link' ><i class='mofa mofa-envelope' style='margin-bottom : " . ($spaceBetweenIcons-4) . "px !important;padding-top:4px;text-align:center;color:" .$fontColor . ";font-size:" .$sharingSize. "px !important;height:" .$sharingSize. "px !important;width:" .$sharingSize. "px !important;'></i></a>";
555
  }
616
  $link = 'http://digg.com/submit?url='.$url.'&amp;title='.$title;
617
  $html .= "<a rel='nofollow' title='Digg' onclick='popupCenter(" . '"' . $link . '"' . ", 800, 500);' class='mo-openid-share-link'><img alt='Digg' style= 'margin-bottom : " . ($spaceBetweenIcons-6) . "px !important;height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/digg.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>";
618
  }
619
+
 
 
 
 
 
 
 
620
  if( get_option('mo_openid_mail_share_enable') ) {
621
  $html .= "<a rel='nofollow' title='Email this page' onclick='popupCenter(" . '"mailto:?subject= ' . $email_subject . '&amp;body=' . $email_body. '"' . ", 800, 500);' class='mo-openid-share-link'><img alt='Email this page' style= 'margin-bottom : " . ($spaceBetweenIcons-6) . "px !important; height: " . $sharingSize . "px !important;width: " . $sharingSize . "px !important;' src='" . plugins_url( 'includes/images/icons/mail.png', __FILE__ ) . "' class='mo-openid-app-share-icons " . $selected_theme . "' ></a>";
622
  }
includes/images/icons/amazon.png CHANGED
Binary file
includes/images/icons/apple.png CHANGED
Binary file
includes/images/icons/delicious.png DELETED
Binary file
includes/images/icons/digg.png CHANGED
Binary file
includes/images/icons/discord.png CHANGED
Binary file
includes/images/icons/disqus.png CHANGED
Binary file
includes/images/icons/dribbble.png CHANGED
Binary file
includes/images/icons/facebook.png CHANGED
Binary file
includes/images/icons/flickr.png CHANGED
Binary file
includes/images/icons/foursquare.png CHANGED
Binary file
includes/images/icons/google.png CHANGED
Binary file
includes/images/icons/instagram.png CHANGED
Binary file
includes/images/icons/kakao.png CHANGED
Binary file
includes/images/icons/line.png CHANGED
Binary file
includes/images/icons/linkedin.png CHANGED
Binary file
includes/images/icons/livejournal.png CHANGED
Binary file
includes/images/icons/mail.png CHANGED
Binary file
includes/images/icons/meetup.png CHANGED
Binary file
includes/images/icons/naver.png CHANGED
Binary file
includes/images/icons/odnoklassniki.png CHANGED
Binary file
includes/images/icons/paypal.png CHANGED
Binary file
includes/images/icons/pininterest.png DELETED
Binary file
includes/images/icons/pinterest.png CHANGED
Binary file
includes/images/icons/pocket.png CHANGED
Binary file
includes/images/icons/print.png CHANGED
Binary file
includes/images/icons/qq.png CHANGED
Binary file
includes/images/icons/reddit.png CHANGED
Binary file
includes/images/icons/renren.png CHANGED
Binary file
includes/images/icons/salesforce.png CHANGED
Binary file
includes/images/icons/snapchat.png CHANGED
Binary file
includes/images/icons/spotify.png CHANGED
Binary file
includes/images/icons/stackexchange.png CHANGED
Binary file
includes/images/icons/stumble.png CHANGED
Binary file
includes/images/icons/teamsnap.png CHANGED
Binary file
includes/images/icons/tumblr.png CHANGED
Binary file
includes/images/icons/twitch.png CHANGED
Binary file
includes/images/icons/twitter.png CHANGED
Binary file
includes/images/icons/vimeo.png CHANGED
Binary file
includes/images/icons/vk.png CHANGED
Binary file
includes/images/icons/vkontakte.png CHANGED
Binary file
includes/images/icons/whatsapp.png CHANGED
Binary file
includes/images/icons/wiebo.png CHANGED
Binary file
includes/images/icons/windowslive.png CHANGED
Binary file
includes/images/icons/wordpress.png CHANGED
Binary file
includes/images/icons/yahoo.png CHANGED
Binary file
lang/miniorange-login-openid-hi_IN.mo CHANGED
Binary file
lang/miniorange-login-openid-hi_IN.po CHANGED
@@ -1,29 +1,29 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: miniorange-login-openid\n"
4
- "POT-Creation-Date: 2020-01-24 16:06+0530\n"
5
- "PO-Revision-Date: 2020-01-24 16:06+0530\n"
6
  "Last-Translator: \n"
7
  "Language-Team: miniOrange\n"
8
  "Language: hi_IN\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.2.3\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n"
15
  "X-Poedit-KeywordsList: mo_sl;__;_e\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: class-mo-openid-login-widget.php:42
19
  msgid "Login using Social Apps like Google, Facebook, LinkedIn, Microsoft, Instagram."
20
  msgstr "गुगल फेसबुक, लिंक्डइन, मायक्रोसॉफ्ट, इंस्टाग्रामसारख्या सोशल अॅप्स वापरुन लॉगिन करा."
21
 
22
- #: class-mo-openid-login-widget.php:542 class-mo-openid-login-widget.php:550
23
  msgid "Logout"
24
  msgstr "लॉगआउट"
25
 
26
- #: class-mo-openid-login-widget.php:1357
27
  msgid ""
28
  "Share using horizontal widget. Lets you share with Social Apps like Google, Facebook, LinkedIn, "
29
  "Pinterest, Reddit."
@@ -31,7 +31,7 @@ msgstr ""
31
  "क्षैतिज विजेट का उपयोग करके साझा करें।गूगल, फेसबुक, लिंक्डइन,Pinterest,जैसे सोशल ऐप्स के साथ साझा करने की सुविधा देता "
32
  "है।"
33
 
34
- #: class-mo-openid-login-widget.php:1402
35
  msgid ""
36
  "Share using a vertical floating widget. Lets you share with Social Apps like Google, Facebook, "
37
  "LinkedIn, Pinterest, Reddit."
@@ -39,199 +39,249 @@ msgstr ""
39
  "वर्टिकल फ्लोटिंग विजेट का उपयोग करके शेयर करें। गूगल, फेसबुक, लिंक्डइन, Pinterest, रेडडिट.जैसे सोशल ऐप्स के साथ साझा "
40
  "करने की सुविधा देता है"
41
 
42
- #: miniorange_openid_sso_settings.php:97
43
  msgid "Login with"
44
  msgstr "से लोगिन करें"
45
 
46
- #: miniorange_openid_sso_settings.php:266
47
  msgid "Configure OpenID"
48
  msgstr "ओपनआयडी कॉन्फिगर करा"
49
 
50
- #: miniorange_openid_sso_settings_page.php:55 miniorange_openid_sso_settings_page.php:487
51
- #: miniorange_openid_sso_settings_page.php:630 miniorange_openid_sso_settings_page.php:815
 
 
 
 
 
 
52
  msgid "miniOrange Social Login"
53
  msgstr "मिनीऑरेंज सोशल लॉगिन"
54
 
55
- #: miniorange_openid_sso_settings_page.php:56 miniorange_openid_sso_settings_page.php:488
56
- #: miniorange_openid_sso_settings_page.php:631 miniorange_openid_sso_settings_page.php:816
57
  #: view/profile/mo_openid_profile.php:23 view/profile/mo_openid_profile.php:51
58
  msgid "Privacy Policy"
59
  msgstr "गोपनीयता नीति"
60
 
61
- #: miniorange_openid_sso_settings_page.php:57 miniorange_openid_sso_settings_page.php:489
62
- #: miniorange_openid_sso_settings_page.php:632 miniorange_openid_sso_settings_page.php:817
63
  msgid "FAQs"
64
  msgstr "अक्सर पूछे जाने वाले प्रश्न"
65
 
66
- #: miniorange_openid_sso_settings_page.php:58 miniorange_openid_sso_settings_page.php:490
67
- #: miniorange_openid_sso_settings_page.php:633 miniorange_openid_sso_settings_page.php:818
68
  msgid "Forum"
69
  msgstr "मंच"
70
 
71
- #: miniorange_openid_sso_settings_page.php:59 miniorange_openid_sso_settings_page.php:98
72
- #: miniorange_openid_sso_settings_page.php:491 miniorange_openid_sso_settings_page.php:634
73
  msgid "Add On"
74
  msgstr "ऐड ऑन"
75
 
76
- #: miniorange_openid_sso_settings_page.php:60 miniorange_openid_sso_settings_page.php:492
77
- #: miniorange_openid_sso_settings_page.php:635 miniorange_openid_sso_settings_page.php:820
78
- msgid "Upgrade Now"
79
- msgstr "अब अपग्रेड करें"
80
 
81
- #: miniorange_openid_sso_settings_page.php:61
82
  msgid "What's new in miniOrange"
83
  msgstr "मिनीऑरेंज में नया क्या है"
84
 
85
- #: miniorange_openid_sso_settings_page.php:63
86
  msgid "Rate us"
87
  msgstr "हमें रेट करें"
88
 
89
- #: miniorange_openid_sso_settings_page.php:66
90
  msgid "Restart Tour"
91
  msgstr "टूर को पुनः आरंभ करें"
92
 
93
- #: miniorange_openid_sso_settings_page.php:68
94
  msgid "Setup Plugin"
95
  msgstr "सेटअप प्लगइन"
96
 
97
- #: miniorange_openid_sso_settings_page.php:81 miniorange_openid_sso_settings_page.php:504
98
- #: miniorange_openid_sso_settings_page.php:647 miniorange_openid_sso_settings_page.php:830
99
  msgid "miniOrange"
100
  msgstr "मिनीऑरेंज"
101
 
102
- #: miniorange_openid_sso_settings_page.php:84
103
  msgid "Configure Apps"
104
  msgstr "एप्लिकेशन कॉन्फ़िगर करें"
105
 
106
- #: miniorange_openid_sso_settings_page.php:85
107
  msgid "Customise Social Login Icons"
108
  msgstr "सामाजिक लॉगिन बटन"
109
 
110
- #: miniorange_openid_sso_settings_page.php:86 view/disp_options/mo_openid_dispopt.php:98
111
- #: view/disp_options/mo_openid_dispopt.php:131 view/soc_com/com_Enable/mo_openid_comm_enable.php:10
112
  #: view/soc_com/com_Enable/mo_openid_comm_enable.php:12
113
  #: view/soc_com/com_display_options/mo_openid_comm_disp_opt.php:41
114
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:214
115
  msgid "Display Options"
116
  msgstr "प्रदर्शित विकल्प"
117
 
118
- #: miniorange_openid_sso_settings_page.php:87
119
  msgid "Redirect Options"
120
  msgstr "पुनर्निर्देशन विकल्प"
121
 
122
- #: miniorange_openid_sso_settings_page.php:88
123
  msgid "Registration"
124
  msgstr "पंजीकरण पृष्ठ लिंक"
125
 
126
- #: miniorange_openid_sso_settings_page.php:89
127
  msgid "GDPR"
128
  msgstr "जीडीपीआर सेटिंग्स"
129
 
130
- #: miniorange_openid_sso_settings_page.php:89 miniorange_openid_sso_settings_page.php:90
131
- #: miniorange_openid_sso_settings_page.php:91 miniorange_openid_sso_settings_page.php:93
132
- #: miniorange_openid_sso_settings_page.php:94 miniorange_openid_sso_settings_page.php:95
133
- #: miniorange_openid_sso_settings_page.php:96 view/disp_options/mo_openid_dispopt.php:28
134
- #: view/disp_options/mo_openid_dispopt.php:46 view/disp_options/mo_openid_dispopt.php:94
 
 
 
 
 
135
  #: view/premium_features/mo_openid_prem_feat.php:90 view/premium_features/mo_openid_prem_feat.php:105
136
  #: view/premium_features/mo_openid_prem_feat.php:121 view/premium_features/mo_openid_prem_feat.php:135
137
  #: view/premium_features/mo_openid_prem_feat.php:149 view/premium_features/mo_openid_prem_feat.php:160
138
- #: view/profile/mo_openid_profile.php:84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  msgid "PRO"
140
  msgstr "प्रीमियम"
141
 
142
- #: miniorange_openid_sso_settings_page.php:90 view/restrict_domain/mo_openid_restrict_dom.php:11
143
  #: view/restrict_domain/mo_openid_restrict_dom.php:41
144
  msgid "Domain Restriction"
145
  msgstr "रेस्ट्रिक्ट डोमेन"
146
 
147
- #: miniorange_openid_sso_settings_page.php:91 view/link_social_account/mo_openid_Acclink.php:72
148
  msgid "Link Social Account"
149
  msgstr "खाता लिंक"
150
 
151
- #: miniorange_openid_sso_settings_page.php:92 view/profile_completion/mo_openid_prof_comp.php:60
152
  msgid "Profile Completion"
153
  msgstr "प्रोफाइल प्राप्ति"
154
 
155
- #: miniorange_openid_sso_settings_page.php:93 view/email_settings/mo_openid_set_email.php:74
156
  msgid "Email Notification"
157
  msgstr "ई - मेल अधिसूचना"
158
 
159
- #: miniorange_openid_sso_settings_page.php:94
160
  msgid "Recaptcha"
161
  msgstr "रेकॉप्टचा"
162
 
163
- #: miniorange_openid_sso_settings_page.php:95 view/premium_features/mo_openid_prem_feat.php:159
164
  msgid "Premium Features"
165
  msgstr "प्रीमियम सुविधाएँ"
166
 
167
- #: miniorange_openid_sso_settings_page.php:96 view/integration/mo_openid_integrate.php:116
168
  msgid "Integrations"
169
  msgstr "एकीकरण"
170
 
171
- #: miniorange_openid_sso_settings_page.php:97 miniorange_openid_sso_settings_page.php:523
172
- #: miniorange_openid_sso_settings_page.php:654
173
  msgid "Shortcodes"
174
  msgstr "शॉर्टकोड"
175
 
176
- #: miniorange_openid_sso_settings_page.php:99
177
  msgid "User Profile"
178
  msgstr "सामाजिक प्रोफ़ाइल"
179
 
180
- #: miniorange_openid_sso_settings_page.php:184 miniorange_openid_sso_settings_page.php:575
181
- #: miniorange_openid_sso_settings_page.php:710 miniorange_openid_sso_settings_page.php:882
182
  msgid "NEED HELP"
183
  msgstr "कोई मदद चाहिए? "
184
 
185
- #: miniorange_openid_sso_settings_page.php:509
186
  msgid ""
187
  "Select\n"
188
  " Social Apps"
189
  msgstr "सोशल एप्स का चयन करें"
190
 
191
- #: miniorange_openid_sso_settings_page.php:513 miniorange_openid_sso_settings_page.php:652
192
  msgid "Customization"
193
  msgstr "अनुकूलन "
194
 
195
- #: miniorange_openid_sso_settings_page.php:516
196
  msgid ""
197
  "Social\n"
198
  " Share Counts"
199
  msgstr "सामाजिक शेयर गिनता"
200
 
201
- #: miniorange_openid_sso_settings_page.php:520
202
  msgid ""
203
  "Display\n"
204
  " Option"
205
  msgstr "प्रदर्शित विकल्प"
206
 
207
- #: miniorange_openid_sso_settings_page.php:650 view/soc_com/com_Enable/mo_openid_comm_enable.php:10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  #: view/soc_com/com_select_app/mo_openid_comm_select_app.php:20
209
  msgid "Select Applications"
210
  msgstr "एप्लिकेशन चुनें"
211
 
212
- #: miniorange_openid_sso_settings_page.php:651
213
  msgid "Display options"
214
  msgstr "प्रदर्शित विकल्प"
215
 
216
- #: miniorange_openid_sso_settings_page.php:653
217
  msgid "Enable and Add Social Comments"
218
  msgstr "सक्षम करें और सामाजिक टिप्पणियाँ जोड़ें"
219
 
220
- #: miniorange_openid_sso_settings_page.php:819 view/faq/mo_openid_faq.php:108
221
  #: view/faq/mo_openid_faq.php:117
222
  msgid "Social Login"
223
  msgstr "सामाजिक लॉगिन"
224
 
225
- #: miniorange_openid_sso_settings_page.php:833 view/add_on/custom_registration_form.php:9
226
  #: view/mo_new/mo_openid_whats_new.php:65
227
  msgid "Custom Registration Form"
228
  msgstr "कस्टम पंजीकरण फार्म"
229
 
230
- #: miniorange_openid_sso_settings_page.php:834
231
  msgid "Go to Social Login"
232
  msgstr "सामाजिक लॉगिन पर जाएं"
233
 
234
- #: miniorange_openid_sso_settings_page.php:835
235
  msgid "Licensing Plans"
236
  msgstr "लाइसेंसिंग योजनाएं"
237
 
@@ -303,6 +353,7 @@ msgid "No"
303
  msgstr "नहीं"
304
 
305
  #: view/add_on/custom_registration_form.php:124 view/integration/mo_openid_integrate.php:29
 
306
  msgid "Cancel"
307
  msgstr "रद्द करना"
308
 
@@ -462,17 +513,19 @@ msgid "Last click on"
462
  msgstr "अंतिम पर क्लिक करें"
463
 
464
  #: view/add_on/custom_registration_form.php:160
465
- #: view/customise_social_icons/mo_openid_cust_icons.php:119 view/disp_options/mo_openid_dispopt.php:92
466
  #: view/email_settings/mo_openid_set_email.php:66 view/gdpr/mo_openid_gdpr.php:33
467
  #: view/integration/mo_openid_integrate.php:108 view/link_social_account/mo_openid_Acclink.php:65
468
- #: view/profile_completion/mo_openid_prof_comp.php:52
469
- #: view/redirect_options/mo_openid_redirect_op.php:121 view/registration/mo_openid_registration.php:48
470
- #: view/restrict_domain/mo_openid_restrict_dom.php:33 view/soc_com/com_Cust/mo_openid_comm_cust.php:23
471
  #: view/soc_com/com_display_options/mo_openid_comm_disp_opt.php:36
472
- #: view/soc_com/com_select_app/mo_openid_comm_select_app.php:49
473
  #: view/soc_sha/cust_text/mo_openid_cust_shricon.php:227
474
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:205
475
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:74
 
 
476
  msgid "Save"
477
  msgstr " सहेजें "
478
 
@@ -484,15 +537,15 @@ msgstr "बटन"
484
  msgid "Social Login Add On"
485
  msgstr "सोशल लॉगइन ऐड ऑन"
486
 
487
- #: view/config_apps/mo_openid_config_apps.php:35
488
  msgid "Active"
489
  msgstr "सक्रिय"
490
 
491
- #: view/config_apps/mo_openid_config_apps.php:65
492
  msgid "Premium Applications"
493
  msgstr "प्रीमियम आवेदन"
494
 
495
- #: view/config_apps/mo_openid_config_apps.php:100
496
  msgid "Configure Applications"
497
  msgstr "एप्लिकेशन कॉन्फ़िगर करें"
498
 
@@ -520,81 +573,87 @@ msgstr "वर्ग"
520
  msgid "Long Button"
521
  msgstr "पाठ के साथ लंबा बटन"
522
 
523
- #: view/customise_social_icons/mo_openid_cust_icons.php:31
524
  #: view/soc_sha/cust_text/mo_openid_cust_shricon.php:29
525
  msgid "Theme"
526
  msgstr "थीम"
527
 
528
- #: view/customise_social_icons/mo_openid_cust_icons.php:34
529
  #: view/soc_sha/cust_text/mo_openid_cust_shricon.php:59
530
  msgid "Default"
531
  msgstr "डिफ़ॉल्ट "
532
 
533
- #: view/customise_social_icons/mo_openid_cust_icons.php:40
534
  msgid "Custom background*"
535
  msgstr "कस्टम पृष्ठभूमि"
536
 
537
- #: view/customise_social_icons/mo_openid_cust_icons.php:49
538
  msgid "*Custom background:"
539
  msgstr "कस्टम पृष्ठभूमि"
540
 
541
- #: view/customise_social_icons/mo_openid_cust_icons.php:49
542
  msgid "This will change the background color of login icons"
543
  msgstr "कस्टम पृष्ठभूमि: यह लॉगिन आइकन की पृष्ठभूमि का रंग बदल देगा।"
544
 
545
- #: view/customise_social_icons/mo_openid_cust_icons.php:52
546
  #: view/soc_sha/cust_text/mo_openid_cust_shricon.php:31
547
  msgid "Size of Icons"
548
  msgstr "प्रतीक का आकार"
549
 
550
- #: view/customise_social_icons/mo_openid_cust_icons.php:54
551
  msgid "Width:"
552
  msgstr "चौड़ाई"
553
 
554
- #: view/customise_social_icons/mo_openid_cust_icons.php:57
555
  msgid "Height:"
556
  msgstr "ऊंचाई"
557
 
558
- #: view/customise_social_icons/mo_openid_cust_icons.php:60
559
  msgid "Curve:"
560
  msgstr "वक्र"
561
 
562
- #: view/customise_social_icons/mo_openid_cust_icons.php:71
563
  #: view/soc_sha/cust_text/mo_openid_cust_shricon.php:30
564
  msgid "Space between Icons"
565
  msgstr "प्रतीक के बीच की जगह"
566
 
567
- #: view/customise_social_icons/mo_openid_cust_icons.php:79
568
  msgid "Customize Text For Social Login Buttons / Icons"
569
  msgstr "सामाजिक लॉगिन बटन / प्रतीक के लिए पाठ अनुकूलित करें"
570
 
571
- #: view/customise_social_icons/mo_openid_cust_icons.php:82
572
  msgid "Select color for customize text:"
573
  msgstr "कस्टमाइज़ टेक्स्ट के लिए रंग का चयन करें"
574
 
575
- #: view/customise_social_icons/mo_openid_cust_icons.php:90
576
  msgid "Enter text to show above login widget:"
577
  msgstr "लॉगिन विजेट ऊपर दिखाने के लिए टेक्स्ट दर्ज करें"
578
 
579
- #: view/customise_social_icons/mo_openid_cust_icons.php:96
580
  msgid "Enter text to show on your login buttons:"
581
  msgstr "अपने लॉगिन बटन (यदि आपके पास है) पर दिखाने के लिए पाठ दर्ज करें"
582
 
583
- #: view/customise_social_icons/mo_openid_cust_icons.php:103
584
  msgid "Customize Text to show user after Login"
585
  msgstr "लॉगिन के बाद उपयोगकर्ता को दिखाने के लिए टेक्स्ट कस्टमाइज़ करें"
586
 
587
- #: view/customise_social_icons/mo_openid_cust_icons.php:106
588
  msgid "Enter text to show before the logout link. Use ##username## to display current username:"
589
  msgstr ""
590
  "लॉगआउट लिंक से पहले दिखाने के लिए पाठ दर्ज करें। वर्तमान उपयोगकर्ता नाम प्रदर्शित करने के लिए ## उपयोगकर्ता नाम ## "
591
  "का उपयोग करें:"
592
 
593
- #: view/customise_social_icons/mo_openid_cust_icons.php:113
594
  msgid "Enter text to show as logout link:"
595
  msgstr "लॉगआउट लिंक के रूप में दिखाने के लिए पाठ दर्ज करें"
596
 
597
- #: view/customise_social_icons/mo_openid_cust_icons.php:215
 
 
 
 
 
 
598
  msgid "Customize Login Icons"
599
  msgstr "साझाकरण आइकन अनुकूलित करें"
600
 
@@ -627,98 +686,134 @@ msgid "Contact Us"
627
  msgstr "संपर्क करें"
628
 
629
  #: view/disp_options/mo_openid_dispopt.php:28
630
- msgid "BuddyPress display options"
631
- msgstr "बुडडीप्रेस प्रदर्शित विकल्प"
 
 
632
 
633
- #: view/disp_options/mo_openid_dispopt.php:30
634
- msgid "Before BuddyPress Registration Form"
635
- msgstr "बुडडीप्रेस रजिस्ट्रेशन फॉर्म से पहले"
 
 
636
 
637
  #: view/disp_options/mo_openid_dispopt.php:35
638
- msgid "Before BuddyPress Account Details"
639
- msgstr "बुडडीप्रेस खाते तपशील करण्यापूर्वी"
 
 
640
 
641
- #: view/disp_options/mo_openid_dispopt.php:40
642
- msgid "After BuddyPress Registration Form"
643
- msgstr "बुडडीप्रेस नोंदणी फॉर्म नंतर"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
644
 
645
- #: view/disp_options/mo_openid_dispopt.php:46
646
  msgid "Woocommerce display options"
647
  msgstr "वूकमर्स प्रदर्शित विकल्प"
648
 
649
- #: view/disp_options/mo_openid_dispopt.php:48
650
  msgid "Before WooCommerce Login Form"
651
  msgstr "वूकमर्स लॉगिन फॉर्म से पहले"
652
 
653
- #: view/disp_options/mo_openid_dispopt.php:53
654
  msgid "Before 'Remember Me' of WooCommerce Login Form"
655
  msgstr "वूकमर्स लॉगिन फॉर्म के 'मुझे याद रखें' से पहले"
656
 
657
- #: view/disp_options/mo_openid_dispopt.php:57
658
  msgid "After WooCommerce Login Form"
659
  msgstr "वूकमर्स लॉगिन फॉर्म के बाद"
660
 
661
- #: view/disp_options/mo_openid_dispopt.php:62
662
  msgid "Before WooCommerce Registration Form"
663
  msgstr "वूकमर्स पंजीकरण फॉर्म से पहले"
664
 
665
- #: view/disp_options/mo_openid_dispopt.php:66
666
  msgid "Before 'Register button' of WooCommerce Registration Form"
667
  msgstr "वूकमर्स पंजीकरण फॉर्म के 'रजिस्टर बटन' से पहले"
668
 
669
- #: view/disp_options/mo_openid_dispopt.php:71
670
  msgid "After WooCommerce Registration Form"
671
  msgstr "वूकमर्स पंजीकरण फॉर्म के बाद"
672
 
673
- #: view/disp_options/mo_openid_dispopt.php:76
674
  msgid "Before WooCommerce Checkout Form"
675
  msgstr "वूकमर्स चेकआउट फॉर्म से पहले"
676
 
677
- #: view/disp_options/mo_openid_dispopt.php:81
678
  msgid "After WooCommerce Checkout Form"
679
  msgstr "वूकमर्स चेकआउट फॉर्म के बाद"
680
 
681
- #: view/disp_options/mo_openid_dispopt.php:87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
682
  msgid "Display miniOrange logo with social login icons on selected form"
683
  msgstr "चयनित फ़ॉर्म पर सामाजिक लॉगिन आइकन के साथ मिनीऑरे लोगो प्रदर्शित करें"
684
 
685
- #: view/disp_options/mo_openid_dispopt.php:94
686
  msgid "These features are available in premium version only. To know more about the premium plugin "
687
  msgstr "ये सुविधाएँ केवल प्रीमियम संस्करण में उपलब्ध हैं। प्रीमियम प्लगइन के बारे में अधिक जानने के लिए"
688
 
689
- #: view/disp_options/mo_openid_dispopt.php:94
690
  msgid "click here"
691
  msgstr "यहां पर क्लिक करें"
692
 
693
- #: view/disp_options/mo_openid_dispopt.php:95
694
  msgid "Add Login Icons"
695
  msgstr "लॉगिन आइकन जोड़ें"
696
 
697
- #: view/disp_options/mo_openid_dispopt.php:98
698
  msgid "You can add login icons in the following areas from"
699
  msgstr "आप प्रदर्शन विकल्प से निम्न क्षेत्रों में लॉगिन आइकन जोड़ सकते हैं। "
700
 
701
- #: view/disp_options/mo_openid_dispopt.php:98
702
  msgid "For other areas(widget areas), use Login widget"
703
  msgstr "अन्य क्षेत्रों (विजेट क्षेत्रों) के लिए, लॉगिन विजेट का उपयोग करें"
704
 
705
- #: view/disp_options/mo_openid_dispopt.php:100
706
  msgid "Default Login Form: This option places login icons below the default login form on wp-login"
707
  msgstr "डिफ़ॉल्ट लॉगिन फ़ॉर्म: यह विकल्प wp-login पर डिफ़ॉल्ट लॉगिन फ़ॉर्म के नीचे लॉगिन आइकन देता है"
708
 
709
- #: view/disp_options/mo_openid_dispopt.php:101
710
  msgid "Default Registration Form: This option places login icons below the default registration form"
711
  msgstr "डिफ़ॉल्ट पंजीकरण फॉर्म: यह विकल्प डिफ़ॉल्ट पंजीकरण फॉर्म के नीचे लॉगिन आइकन रखता है।"
712
 
713
- #: view/disp_options/mo_openid_dispopt.php:103
714
  msgid "Comment Form: This option places login icons above the comment section of all your posts"
715
  msgstr "टिप्पणी फ़ॉर्म: यह विकल्प आपके सभी पोस्ट के टिप्पणी अनुभाग के ऊपर लॉगिन आइकन देता है।"
716
 
717
- #: view/disp_options/mo_openid_dispopt.php:108
718
  msgid "Add Login Icons as Widget"
719
  msgstr "विजेट के रूप में लॉगिन आइकन जोड़ें"
720
 
721
- #: view/disp_options/mo_openid_dispopt.php:111
722
  msgid ""
723
  "Go to Widgets. Among the available widgets you\n"
724
  " will find miniOrange Social Login Widget, drag it to the widget area "
@@ -728,25 +823,32 @@ msgstr ""
728
  "प्रकटन-> विजेट पर जाएं। उपलब्ध विगेट्स में आप मिनीऑर्ग सोशल लॉगिन विजेट प्राप्त करेंगे, इसे विजेट क्षेत्र में खींचें जहाँ आप "
729
  "इसे प्रदर्शित करना चाहते हैं"
730
 
731
- #: view/disp_options/mo_openid_dispopt.php:114
732
  msgid "Now logout and go to your site. You will see Social Login icon for which you enabled login."
733
  msgstr "अब लॉगआउट करें और अपनी साइट पर जाएं। आपको ऐप आइकन दिखाई देगा जिसके लिए आपने लॉगिन सक्षम किया था।"
734
 
735
- #: view/disp_options/mo_openid_dispopt.php:115
736
  msgid "Click that app icon and login with your existing app account to wordpress"
737
  msgstr "उस ऐप आइकन पर क्लिक करें और अपने मौजूदा ऐप अकाउंट से वर्डप्रेस पर लॉगइन करें."
738
 
739
- #: view/disp_options/mo_openid_dispopt.php:119
740
  msgid "Using Shortcode"
741
  msgstr "उपयोग शॉर्टकोड"
742
 
743
- #: view/disp_options/mo_openid_dispopt.php:122
 
 
 
 
 
 
 
744
  msgid ""
745
  "You can use this shortcode <code id='2'>[miniorange_social_login]</code><i style= \"width: 11px;"
746
  "height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy "
747
  "mo_copytooltip\" onclick=\"copyToClipboard(this, '#2', '#shortcode_url2_copy')\"><span id="
748
  "\"shortcode_url2_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i> to display social "
749
- "icons on any login page, post, mo_openid_popup and php pages."
750
  msgstr ""
751
  "आप किसी भी <code id='2'>[miniorange_social_login]</code> लॉगिन पेज, पोस्ट, mo_openid_popup और पीएचपी "
752
  "पेज पर सोशल आइकन प्रदर्शित करने के <i style=\"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" "
@@ -754,7 +856,7 @@ msgstr ""
754
  "'#2', '#shortcode_url2_copy')\"><span id=\"shortcode_url2_copy\" class=\"mo_copytooltiptext\">लिए "
755
  "क्लिपबोर्ड</span></i> पर इस शॉर्टकोड कॉपी का उपयोग कर सकते हैं।"
756
 
757
- #: view/disp_options/mo_openid_dispopt.php:123
758
  msgid "* Detailed information about how to use shortcode is given in <a href="
759
  msgstr "* शॉर्टकोड का उपयोग करने के तरीके के बारे में विस्तृत जानकारी <a href="
760
 
@@ -1121,10 +1223,12 @@ msgid "tab."
1121
  msgstr "टैब "
1122
 
1123
  #: view/faq/mo_openid_faq.php:109 view/redirect_options/mo_openid_redirect_op.php:13
 
1124
  msgid "Same page where user logged in"
1125
  msgstr "वही पृष्ठ जहाँ उपयोगकर्ता ने लॉग इन किया था"
1126
 
1127
  #: view/faq/mo_openid_faq.php:110 view/redirect_options/mo_openid_redirect_op.php:21
 
1128
  msgid "Homepage"
1129
  msgstr "मुखपृष्ठ"
1130
 
@@ -1271,7 +1375,7 @@ msgstr ""
1271
  "HTML फ़ाइल पर जाएं जो आपके पृष्ठ / पोस्ट को आमंत्रित करता है और निम्न HTML स्निपेट डालें। इसके अलावा, अपनी आवश्यकता "
1272
  "के अनुसार मार्जिन-बाएं मूल्य बढ़ाएं। फ़ाइल सहेजें।"
1273
 
1274
- #: view/faq/mo_openid_faq.php:155 view/soc_sha/soc_apps/mo_openid_sharing.php:570
1275
  msgid "Social Sharing"
1276
  msgstr "सामाजिक साझाकरण"
1277
 
@@ -1285,8 +1389,8 @@ msgid ""
1285
  "content."
1286
  msgstr "सामग्री के पहले या बाद में सामग्री के बाद, आप सामग्री से पहले सामाजिक साझाकरण आइकन डाल सकते हैं।"
1287
 
1288
- #: view/faq/mo_openid_faq.php:159 view/soc_sha/share_cnt/mo_openid_shrcnt.php:50
1289
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:53 view/soc_sha/share_cnt/mo_openid_shrcnt.php:57
1290
  msgid "Go to"
1291
  msgstr " पर जाएं,"
1292
 
@@ -1565,10 +1669,16 @@ msgstr ""
1565
  msgid "Sync Woocommerce checkout fields"
1566
  msgstr "वूकमर्स चेकआउट फ़ील्ड सिंक करें"
1567
 
1568
- #: view/licensing_plans/mo_openid_lic_plans.php:1856
1569
  msgid "Licensing Plan For Social Login"
1570
  msgstr "सामाजिक लॉगिन के लिए लाइसेंसिंग योजना"
1571
 
 
 
 
 
 
 
1572
  #: view/link_social_account/mo_openid_Acclink.php:19
1573
  msgid ""
1574
  "Enable account linking to let your users link their Social accounts with existing WordPress account. "
@@ -1818,7 +1928,7 @@ msgstr ""
1818
  msgid "for how we use your information. We don’t sell your information to any third-party organization"
1819
  msgstr "हम आपकी जानकारी का उपयोग कैसे करते हैं। हम आपकी जानकारी को किसी तीसरे पक्ष के संगठन को नहीं बेचते हैं"
1820
 
1821
- #: view/profile/mo_openid_profile.php:27 view/soc_sha/soc_apps/mo_openid_sharing.php:202
1822
  msgid "Email"
1823
  msgstr "मेल "
1824
 
@@ -1878,11 +1988,11 @@ msgstr ""
1878
  "सोशल मीडिया एप्लिकेशन से उपयोगकर्ता नाम या ईमेल की अनुपलब्धता के मामले में, उपयोगकर्ता को इसे इनपुट करने के लिए कहा "
1879
  "जाता है"
1880
 
1881
- #: view/profile_completion/mo_openid_prof_comp.php:16
1882
  msgid "*NOTE:"
1883
  msgstr "* नोट:"
1884
 
1885
- #: view/profile_completion/mo_openid_prof_comp.php:16
1886
  msgid ""
1887
  "Disabling profile completion is not recommended. Instagram and Twitter don't return email address. "
1888
  "Please keep this enabled if you are using Instagram or Twitter. This feature requires SMTP to be "
@@ -1894,94 +2004,94 @@ msgstr ""
1894
  "वेबसाइट के लिए सेटअप करने की आवश्यकता होती है क्योंकि हम अपने ईमेल पते को सत्यापित करने के लिए ईमेल पर उपयोगकर्ताओं "
1895
  "को एक कोड भेजते हैं।"
1896
 
1897
- #: view/profile_completion/mo_openid_prof_comp.php:19
1898
  msgid "Customize Text for Profile Completion"
1899
  msgstr "प्रोफ़ाइल पूर्ण करने के लिए पाठ अनुकूलित करें"
1900
 
1901
- #: view/profile_completion/mo_openid_prof_comp.php:19
1902
  msgid "Preview Profile Completion form"
1903
  msgstr "प्रोफ़ाइल पूर्ण करने के लिए पाठ अनुकूलित करें"
1904
 
1905
- #: view/profile_completion/mo_openid_prof_comp.php:21
1906
  msgid "Enter title of Profle Completion"
1907
  msgstr "प्रोपल कंप्लीशन का टाइटल दर्ज करें"
1908
 
1909
- #: view/profile_completion/mo_openid_prof_comp.php:22
1910
  msgid "Enter Username Label text"
1911
  msgstr "उपयोगकर्ता नाम लेबल टेक्स्ट दर्ज करें"
1912
 
1913
- #: view/profile_completion/mo_openid_prof_comp.php:23
1914
  msgid "Enter Email Label text"
1915
  msgstr "ईमेल लेबल टेक्स्ट दर्ज करें"
1916
 
1917
- #: view/profile_completion/mo_openid_prof_comp.php:24
1918
  msgid "Enter Submit button text"
1919
  msgstr "सबमिट बटन टेक्स्ट दर्ज करें"
1920
 
1921
- #: view/profile_completion/mo_openid_prof_comp.php:25
1922
  msgid "Enter instruction for Profile Completion"
1923
  msgstr "प्रोफ़ाइल पूर्ण करने के लिए निर्देश दर्ज करें"
1924
 
1925
- #: view/profile_completion/mo_openid_prof_comp.php:27
1926
  msgid "Enter extra instruction for Profile Completion "
1927
  msgstr "प्रोफ़ाइल पूर्ण करने के लिए अतिरिक्त निर्देश दर्ज करें"
1928
 
1929
- #: view/profile_completion/mo_openid_prof_comp.php:29
1930
  msgid "Enter username already exists warning message text "
1931
  msgstr "उपयोगकर्ता नाम दर्ज करें चेतावनी संदेश पाठ पहले से मौजूद है"
1932
 
1933
- #: view/profile_completion/mo_openid_prof_comp.php:30
1934
  msgid "Customize Text for Email Verification"
1935
  msgstr "ईमेल सत्यापन के लिए पाठ अनुकूलित करें"
1936
 
1937
- #: view/profile_completion/mo_openid_prof_comp.php:30
1938
  msgid "Preview Email Verification form"
1939
  msgstr "ईमेल सत्यापन प्रपत्र का पूर्वावलोकन करें"
1940
 
1941
- #: view/profile_completion/mo_openid_prof_comp.php:32
1942
  msgid "Enter title of Email Verification form"
1943
  msgstr "ईमेल सत्यापन फ़ॉर्म का शीर्षक दर्ज करें"
1944
 
1945
- #: view/profile_completion/mo_openid_prof_comp.php:33
1946
  msgid "Enter Resend OTP button text"
1947
  msgstr "ओटीपी बटन पाठ भेजें दर्ज करें"
1948
 
1949
- #: view/profile_completion/mo_openid_prof_comp.php:34
1950
  msgid "Enter Back button text"
1951
  msgstr "वापस बटन टेक्स्ट दर्ज करें:"
1952
 
1953
- #: view/profile_completion/mo_openid_prof_comp.php:35
1954
  msgid "Enter instruction for Email Verification form"
1955
  msgstr "ईमेल सत्यापन फ़ॉर्म के लिए निर्देश दर्ज करें"
1956
 
1957
- #: view/profile_completion/mo_openid_prof_comp.php:37
1958
  msgid "Enter verification code in Email Verification form"
1959
  msgstr "ईमेल सत्यापन फ़ॉर्म में सत्यापन कोड दर्ज करें"
1960
 
1961
- #: view/profile_completion/mo_openid_prof_comp.php:39
1962
  msgid "Enter Message for wrong OTP"
1963
  msgstr "गलत ओटीपी के लिए संदेश दर्ज करें"
1964
 
1965
- #: view/profile_completion/mo_openid_prof_comp.php:40
1966
  msgid "Customized E-mail Message"
1967
  msgstr "अनुकूलित ई-मेल संदेश"
1968
 
1969
- #: view/profile_completion/mo_openid_prof_comp.php:41
1970
  #: view/soc_sha/cust_text/mo_openid_cust_shricon.php:107
1971
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:201
1972
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:556
1973
  msgid "NOTE"
1974
  msgstr "ध्यान दें"
1975
 
1976
- #: view/profile_completion/mo_openid_prof_comp.php:41
1977
  msgid "Please enter"
1978
  msgstr " दर्ज करें"
1979
 
1980
- #: view/profile_completion/mo_openid_prof_comp.php:41
1981
  msgid "in message where you want to show one time password."
1982
  msgstr "संदेश में जहां आप एक बार पासवर्ड दिखाना चाहते हैं।"
1983
 
1984
- #: view/profile_completion/mo_openid_prof_comp.php:43
1985
  msgid "Display miniOrange logo with social login icons on profile completion forms"
1986
  msgstr "सामाजिक लॉगिन आइकन और खाता लिंकिंग और प्रोफ़ाइल पूर्णता फॉर्मों के साथ मिनीऑरेंज लोगो प्रदर्शित करें."
1987
 
@@ -2050,15 +2160,18 @@ msgid "Redirect URL after login:"
2050
  msgstr "लॉगिन के बाद रीडायरेक्ट करें"
2051
 
2052
  #: view/redirect_options/mo_openid_redirect_op.php:32
 
2053
  msgid "Account dashboard"
2054
  msgstr "खाता डैशबोर्ड"
2055
 
2056
  #: view/redirect_options/mo_openid_redirect_op.php:40
 
2057
  msgid "Custom URL"
2058
  msgstr "कस्टम यूआरएल"
2059
 
2060
  #: view/redirect_options/mo_openid_redirect_op.php:51
2061
  #: view/redirect_options/mo_openid_redirect_op.php:110
 
2062
  msgid "Relative URL"
2063
  msgstr "सापेक्ष यूआरएल"
2064
 
@@ -2087,7 +2200,13 @@ msgstr "वर्तमान पृष्ठ"
2087
  msgid "Login Page"
2088
  msgstr "लॉगिन वाला पन्ना"
2089
 
2090
- #: view/redirect_options/mo_openid_redirect_op.php:128
 
 
 
 
 
 
2091
  msgid "Redirection Options"
2092
  msgstr "पुनर्निर्देशन विकल्प"
2093
 
@@ -2131,27 +2250,63 @@ msgstr ""
2131
  "सामाजिक लॉगिन के माध्यम से पंजीकरण करने वाले सभी उपयोगकर्ताओं को यह भूमिका सौंपने के लिए रोल मैपिंग का उपयोग करें। "
2132
  "रोल मैप्ड उपयोगकर्ता के अनुसार वेबसाइट पर भूमिका दी जाएगी।"
2133
 
2134
- #: view/registration/mo_openid_registration.php:32
2135
  msgid "Enable Email Notification to Admin"
2136
  msgstr "व्यवस्थापक को ईमेल अधिसूचना सक्षम करें"
2137
 
2138
- #: view/registration/mo_openid_registration.php:34
2139
  msgid "Enable Email Notification to Admin - on User Registration"
2140
  msgstr "उपयोगकर्ता पंजीकरण पर उपयोगकर्ता को ईमेल अधिसूचना सक्षम करें"
2141
 
2142
- #: view/registration/mo_openid_registration.php:38
2143
  msgid "This feature requires SMTP to be configured"
2144
  msgstr "इन सुविधाओं को एसएमटीपी सेटअप करने की आवश्यकता है|"
2145
 
2146
- #: view/registration/mo_openid_registration.php:41
2147
  msgid "Set Display Picture for User"
2148
  msgstr "उपयोगकर्ता के लिए प्रदर्शन चित्र सेट करें"
2149
 
2150
- #: view/registration/mo_openid_registration.php:43
2151
  msgid "Set Display Picture for User - on User Registration"
2152
  msgstr "उपयोगकर्ता के लिए प्रदर्शन चित्र सेट करें -उपयोगकर्ता पंजीकरण पर"
2153
 
2154
- #: view/registration/mo_openid_registration.php:53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2155
  msgid "Registration Options"
2156
  msgstr "पंजीकरण के विकल्प"
2157
 
@@ -2361,7 +2516,21 @@ msgstr "ऐप की गिनती"
2361
  msgid "Any value for number of icons in one row"
2362
  msgstr "एक पंक्ति में माउस की संख्या के लिए कोई मान"
2363
 
2364
- #: view/shrtco/mo_openid_shrtco.php:187
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2365
  msgid "Social Login Shortcodes"
2366
  msgstr "डिफ़ॉल्ट सामाजिक लॉगिन शोर्ट"
2367
 
@@ -2377,7 +2546,13 @@ msgstr "टिप्पणियाँ - डिफ़ॉल्ट लेबल"
2377
  msgid "Comments - Facebook Label"
2378
  msgstr "टिप्पणियाँ - फेसबुक लेबल"
2379
 
2380
- #: view/soc_com/com_Cust/mo_openid_comm_cust.php:30
 
 
 
 
 
 
2381
  msgid "Customize Text For Social Comment Labels"
2382
  msgstr "सामाजिक शेयर आइकन के लिए पाठ अनुकूलित करें"
2383
 
@@ -2452,7 +2627,13 @@ msgstr "डिफ़ॉल्ट वर्डप्रेस टिप्पण
2452
  msgid "Facebook Comments"
2453
  msgstr "फेसबुक टिप्पणियां"
2454
 
2455
- #: view/soc_com/com_select_app/mo_openid_comm_select_app.php:55
 
 
 
 
 
 
2456
  msgid "Social Comments"
2457
  msgstr "सामाजिक टिप्पणियाँ "
2458
 
@@ -2551,27 +2732,27 @@ msgstr "उन विकल्पों का चयन करें जहा
2551
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:57
2552
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:81
2553
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:105
2554
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:140
2555
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:160
2556
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:185
2557
  msgid "Before content"
2558
  msgstr "सामग्री आधी"
2559
 
2560
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:61
2561
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:85
2562
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:109
2563
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:144
2564
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:164
2565
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:189
2566
  msgid "After content"
2567
  msgstr "सामग्री नंतर"
2568
 
2569
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:65
2570
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:91
2571
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:114
2572
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:149
2573
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:169
2574
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:194
2575
  msgid "Both before and after content"
2576
  msgstr "सामग्री आधी आणि नंतर दोन्ही"
2577
 
@@ -2579,61 +2760,75 @@ msgstr "सामग्री आधी आणि नंतर दोन्ह
2579
  msgid " WooCommerce Individual Product Page(Top)"
2580
  msgstr "वूकमर्स व्यक्तिगत उत्पाद पृष्ठ (शीर्ष)"
2581
 
2582
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:130
 
 
 
 
 
 
2583
  msgid "WooCommerce Individual Product Page"
2584
  msgstr "वूकमर्स व्यक्तिगत उत्पाद पृष्ठ"
2585
 
2586
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:135
2587
  msgid "BBPress Forums Page"
2588
  msgstr "बीबीप्रेस मंच पृष्ठ"
2589
 
2590
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:155
2591
  msgid "BBPress Topic Page"
2592
  msgstr "बीबीप्रेस विषय पृष्ठ"
2593
 
2594
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:178
2595
  msgid "BBPress Reply Page"
2596
  msgstr "बीबीप्रेस उत्तर पृष्ठ"
2597
 
2598
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:201
2599
  msgid "The icons in above pages will be placed horizontally. For vertical icons, add "
2600
  msgstr ""
2601
  "उपरोक्त पृष्ठों के आइकन क्षैतिज रूप से रखे जाएंगे। वर्टिकल आइकन्स के लिए, मिनीऑर्ग शेयरिंग - अपियरेंस-> विजेट्स से वर्टिकल "
2602
  "विजेट जोड़ें।"
2603
 
2604
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:201
2605
  msgid "miniOrange Sharing - Vertical"
2606
  msgstr "मिनीओरेन्ज शेयरिंग - वर्टिकल"
2607
 
2608
- #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:201
2609
  msgid "widget from Appearance->Widgets."
2610
  msgstr "सूरत से विजेट-> विजेट।"
2611
 
2612
  #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:17
2613
- msgid "Share counts are supported for Facebook, Vkontakte, Stumble Upon and Pinterest"
2614
- msgstr "फेसबुक, व्हिक्टकटे, स्टम्ब्ले अपॉन और पिनटेरेस्ट के लिए शेयर मायने रखता है"
 
 
2615
 
2616
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:19
 
 
 
 
 
 
2617
  msgid "Enable share counts"
2618
  msgstr "शेयर गणना सक्षम करें"
2619
 
2620
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:24
2621
  msgid "Delete Count Session"
2622
  msgstr "गणना सत्र हटाएं"
2623
 
2624
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:47
2625
  msgid "Facebook Access Token"
2626
  msgstr "फेसबुक एक्सेस टोकन"
2627
 
2628
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:48
2629
  msgid "Instructions to configure Facebook Share Counts"
2630
  msgstr "फेसबुक शेअर गणना कॉन्फिगर करण्याच्या सूचना"
2631
 
2632
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:50
2633
  msgid "Sign in with your Facebook account"
2634
  msgstr "अपने फेसबुक खाते के साथ साइन इन करें"
2635
 
2636
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:52
2637
  msgid ""
2638
  "Use an existing app if you already have one or create a new facebook\n"
2639
  " app by clicking on "
@@ -2641,95 +2836,95 @@ msgstr ""
2641
  "यदि आप पहले से ही एक नया फेसबुक बनाते हैं या बनाते हैं तो मौजूदा ऐप का उपयोग करें\n"
2642
  "app पर क्लिक करके"
2643
 
2644
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:53 view/soc_sha/share_cnt/mo_openid_shrcnt.php:54
2645
  msgid "Create App"
2646
  msgstr "ऐप बनाएं"
2647
 
2648
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:53
2649
  msgid "My Apps"
2650
  msgstr "मेरी एप्प्स"
2651
 
2652
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:53
2653
  msgid ""
2654
  "and\n"
2655
  " select"
2656
  msgstr "तथा चुनते हैं"
2657
 
2658
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:54
2659
  msgid ""
2660
  " Enter Display Name i.e App Name and click\n"
2661
  " on"
2662
  msgstr "डिस्प्ले नाम यानी ऐप का नाम डालें और क्लिक करें पर"
2663
 
2664
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:55
2665
  msgid "Create App ID"
2666
  msgstr "ऐप आईडी बनाएं"
2667
 
2668
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:57
2669
  msgid "Tools"
2670
  msgstr "उपकरण"
2671
 
2672
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:57
2673
  msgid "select"
2674
  msgstr "चुनते हैं"
2675
 
2676
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:57
2677
  msgid "Graph API Explorer"
2678
  msgstr "ग्राफ एपीआई एक्सप्लोरर"
2679
 
2680
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:57
2681
  msgid "and click on"
2682
  msgstr "और पर क्लिक करें"
2683
 
2684
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:57
2685
  msgid ""
2686
  "Get\n"
2687
  " Access Token"
2688
  msgstr "पहुँच टोकन प्राप्त करें"
2689
 
2690
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:60
2691
  msgid "Now, go to"
2692
  msgstr "अब, करने के लिए जाओ"
2693
 
2694
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:60
2695
  msgid "Access Token Tool"
2696
  msgstr "टोकन टूल तक पहुंचें"
2697
 
2698
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:60
2699
  msgid "and press"
2700
  msgstr "और दबाएँ"
2701
 
2702
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:60
2703
  msgid "Debug"
2704
  msgstr "डिबग"
2705
 
2706
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:60
2707
  msgid "option at right side for the "
2708
  msgstr "के लिए दाईं ओर विकल्प"
2709
 
2710
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:60
2711
  msgid "User Token"
2712
  msgstr "उपयोगकर्ता टोकन"
2713
 
2714
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:61
2715
  msgid "Now copy the"
2716
  msgstr "अब कॉपी करें"
2717
 
2718
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:61
2719
  msgid "Access Token"
2720
  msgstr "एक्सेस टोकन"
2721
 
2722
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:61
2723
  msgid ""
2724
  "and paste it in the above field and\n"
2725
  " click on"
2726
  msgstr "और इसे उपरोक्त क्षेत्र में पेस्ट करें और पर क्लिक करें"
2727
 
2728
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:62
2729
  msgid "save"
2730
  msgstr " सहेजें "
2731
 
2732
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:65
2733
  msgid ""
2734
  "According to the new updates of\n"
2735
  " Facebook API it will expires after every 60 days. So to "
@@ -2739,7 +2934,7 @@ msgstr ""
2739
  "फेसबुक एपीआई के नए अपडेट के अनुसार यह हर 60 दिनों के बाद समाप्त हो जाएगा। तो किसी भी मुद्दे से बचने के लिए इसे 60 "
2740
  "दिनों से पहले फिर से अपडेट करें"
2741
 
2742
- #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:101
2743
  msgid "Share Counts"
2744
  msgstr "शेयर गणना सक्षम करें"
2745
 
@@ -2849,80 +3044,227 @@ msgstr "बाएंऑफसेट (अगर संरेखण छोड़
2849
  msgid "Social Sharing Shortcode"
2850
  msgstr "डिफ़ॉल्ट सामाजिक लॉगिन शोर्ट"
2851
 
2852
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:18
2853
  msgid "Select Social Apps"
2854
  msgstr "सोशल एप्स का चयन करें"
2855
 
2856
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:20
2857
  msgid "Select applications to enable social sharing"
2858
  msgstr "सामाजिक साझाकरण सक्षम करने के लिए एप्लिकेशन का चयन करें"
2859
 
2860
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:28
2861
  msgid "Facebook"
2862
  msgstr "फेसबुक"
2863
 
2864
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:36
2865
  msgid "Twitter"
2866
  msgstr "ट्विटर"
2867
 
2868
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:47
2869
  msgid "Google"
2870
  msgstr "गूगल"
2871
 
2872
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:61
2873
  msgid "Vkontakte"
2874
  msgstr "व्हिक्टकटे"
2875
 
2876
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:74
2877
  msgid "Tumblr"
2878
  msgstr "टंबलर"
2879
 
2880
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:91
2881
  msgid "StumbleUpon"
2882
  msgstr "स्टंबलउपॉन "
2883
 
2884
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:105
2885
  msgid "LinkedIn"
2886
  msgstr "लिंक्डइन"
2887
 
2888
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:134
2889
  msgid "Pinterest"
2890
  msgstr "पिनटेरेस्ट"
2891
 
2892
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:148
2893
  msgid "Pocket"
2894
  msgstr "पॉकेट"
2895
 
2896
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:165
2897
  msgid "Digg"
2898
  msgstr "डिग"
2899
 
2900
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:178
2901
- msgid "Delicious"
2902
- msgstr "डिलीशियस"
2903
-
2904
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:191
2905
- msgid "Odnoklassniki"
2906
- msgstr "ओन्नोक्लास्निकी"
2907
-
2908
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:214
2909
  msgid "Print"
2910
  msgstr "प्रिंट "
2911
 
2912
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:228
2913
  msgid "Whatsapp"
2914
  msgstr "व्हाट्सएप"
2915
 
2916
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:249
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2917
  msgid "No apps selected"
2918
  msgstr "कोई एप्लिकेशन नहीं चुना गया"
2919
 
2920
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:556
2921
  msgid ""
2922
  "Custom background: This will\n"
2923
  " change the background color of sharing icons"
2924
  msgstr "कस्टम पृष्ठभूमि: यह लॉगिन आइकन की पृष्ठभूमि का रंग बदल देगा।"
2925
 
2926
- #: view/soc_sha/soc_apps/mo_openid_sharing.php:558
2927
  msgid "No background: This will change the font color of icons without background"
2928
  msgstr "कोई पृष्ठभूमि नहीं: यह बिना पृष्ठभूमि के आइकन के फ़ॉन्ट रंग को बदल देगा"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: miniorange-login-openid\n"
4
+ "POT-Creation-Date: 2020-07-28 19:28+0530\n"
5
+ "PO-Revision-Date: 2020-07-28 19:29+0530\n"
6
  "Last-Translator: \n"
7
  "Language-Team: miniOrange\n"
8
  "Language: hi_IN\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.2.4\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n"
15
  "X-Poedit-KeywordsList: mo_sl;__;_e\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: class-mo-openid-login-widget.php:40
19
  msgid "Login using Social Apps like Google, Facebook, LinkedIn, Microsoft, Instagram."
20
  msgstr "गुगल फेसबुक, लिंक्डइन, मायक्रोसॉफ्ट, इंस्टाग्रामसारख्या सोशल अॅप्स वापरुन लॉगिन करा."
21
 
22
+ #: class-mo-openid-login-widget.php:146 class-mo-openid-login-widget.php:153
23
  msgid "Logout"
24
  msgstr "लॉगआउट"
25
 
26
+ #: class-mo-openid-login-widget.php:971
27
  msgid ""
28
  "Share using horizontal widget. Lets you share with Social Apps like Google, Facebook, LinkedIn, "
29
  "Pinterest, Reddit."
31
  "क्षैतिज विजेट का उपयोग करके साझा करें।गूगल, फेसबुक, लिंक्डइन,Pinterest,जैसे सोशल ऐप्स के साथ साझा करने की सुविधा देता "
32
  "है।"
33
 
34
+ #: class-mo-openid-login-widget.php:1016
35
  msgid ""
36
  "Share using a vertical floating widget. Lets you share with Social Apps like Google, Facebook, "
37
  "LinkedIn, Pinterest, Reddit."
39
  "वर्टिकल फ्लोटिंग विजेट का उपयोग करके शेयर करें। गूगल, फेसबुक, लिंक्डइन, Pinterest, रेडडिट.जैसे सोशल ऐप्स के साथ साझा "
40
  "करने की सुविधा देता है"
41
 
42
+ #: miniorange_openid_sso_settings.php:98
43
  msgid "Login with"
44
  msgstr "से लोगिन करें"
45
 
46
+ #: miniorange_openid_sso_settings.php:285
47
  msgid "Configure OpenID"
48
  msgstr "ओपनआयडी कॉन्फिगर करा"
49
 
50
+ #: miniorange_openid_sso_settings_page.php:43 miniorange_openid_sso_settings_page.php:45
51
+ #: miniorange_openid_sso_settings_page.php:506 miniorange_openid_sso_settings_page.php:670
52
+ #: miniorange_openid_sso_settings_page.php:854
53
+ msgid "Upgrade Now"
54
+ msgstr "अब अपग्रेड करें"
55
+
56
+ #: miniorange_openid_sso_settings_page.php:65 miniorange_openid_sso_settings_page.php:501
57
+ #: miniorange_openid_sso_settings_page.php:665 miniorange_openid_sso_settings_page.php:849
58
  msgid "miniOrange Social Login"
59
  msgstr "मिनीऑरेंज सोशल लॉगिन"
60
 
61
+ #: miniorange_openid_sso_settings_page.php:66 miniorange_openid_sso_settings_page.php:502
62
+ #: miniorange_openid_sso_settings_page.php:666 miniorange_openid_sso_settings_page.php:850
63
  #: view/profile/mo_openid_profile.php:23 view/profile/mo_openid_profile.php:51
64
  msgid "Privacy Policy"
65
  msgstr "गोपनीयता नीति"
66
 
67
+ #: miniorange_openid_sso_settings_page.php:67 miniorange_openid_sso_settings_page.php:503
68
+ #: miniorange_openid_sso_settings_page.php:667 miniorange_openid_sso_settings_page.php:851
69
  msgid "FAQs"
70
  msgstr "अक्सर पूछे जाने वाले प्रश्न"
71
 
72
+ #: miniorange_openid_sso_settings_page.php:68 miniorange_openid_sso_settings_page.php:504
73
+ #: miniorange_openid_sso_settings_page.php:668 miniorange_openid_sso_settings_page.php:852
74
  msgid "Forum"
75
  msgstr "मंच"
76
 
77
+ #: miniorange_openid_sso_settings_page.php:69 miniorange_openid_sso_settings_page.php:108
78
+ #: miniorange_openid_sso_settings_page.php:505 miniorange_openid_sso_settings_page.php:669
79
  msgid "Add On"
80
  msgstr "ऐड ऑन"
81
 
82
+ #: miniorange_openid_sso_settings_page.php:70
83
+ msgid "Licensing Plan"
84
+ msgstr "लाइसेंसिंग योजनाएं"
 
85
 
86
+ #: miniorange_openid_sso_settings_page.php:71
87
  msgid "What's new in miniOrange"
88
  msgstr "मिनीऑरेंज में नया क्या है"
89
 
90
+ #: miniorange_openid_sso_settings_page.php:73
91
  msgid "Rate us"
92
  msgstr "हमें रेट करें"
93
 
94
+ #: miniorange_openid_sso_settings_page.php:76
95
  msgid "Restart Tour"
96
  msgstr "टूर को पुनः आरंभ करें"
97
 
98
+ #: miniorange_openid_sso_settings_page.php:78
99
  msgid "Setup Plugin"
100
  msgstr "सेटअप प्लगइन"
101
 
102
+ #: miniorange_openid_sso_settings_page.php:91 miniorange_openid_sso_settings_page.php:518
103
+ #: miniorange_openid_sso_settings_page.php:682 miniorange_openid_sso_settings_page.php:864
104
  msgid "miniOrange"
105
  msgstr "मिनीऑरेंज"
106
 
107
+ #: miniorange_openid_sso_settings_page.php:94
108
  msgid "Configure Apps"
109
  msgstr "एप्लिकेशन कॉन्फ़िगर करें"
110
 
111
+ #: miniorange_openid_sso_settings_page.php:95
112
  msgid "Customise Social Login Icons"
113
  msgstr "सामाजिक लॉगिन बटन"
114
 
115
+ #: miniorange_openid_sso_settings_page.php:96 view/disp_options/mo_openid_dispopt.php:120
116
+ #: view/disp_options/mo_openid_dispopt.php:153 view/soc_com/com_Enable/mo_openid_comm_enable.php:10
117
  #: view/soc_com/com_Enable/mo_openid_comm_enable.php:12
118
  #: view/soc_com/com_display_options/mo_openid_comm_disp_opt.php:41
119
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:217
120
  msgid "Display Options"
121
  msgstr "प्रदर्शित विकल्प"
122
 
123
+ #: miniorange_openid_sso_settings_page.php:97
124
  msgid "Redirect Options"
125
  msgstr "पुनर्निर्देशन विकल्प"
126
 
127
+ #: miniorange_openid_sso_settings_page.php:98
128
  msgid "Registration"
129
  msgstr "पंजीकरण पृष्ठ लिंक"
130
 
131
+ #: miniorange_openid_sso_settings_page.php:99
132
  msgid "GDPR"
133
  msgstr "जीडीपीआर सेटिंग्स"
134
 
135
+ #: miniorange_openid_sso_settings_page.php:99 miniorange_openid_sso_settings_page.php:100
136
+ #: miniorange_openid_sso_settings_page.php:101 miniorange_openid_sso_settings_page.php:103
137
+ #: miniorange_openid_sso_settings_page.php:104 miniorange_openid_sso_settings_page.php:105
138
+ #: miniorange_openid_sso_settings_page.php:106 miniorange_openid_sso_settings_page.php:540
139
+ #: miniorange_openid_sso_settings_page.php:543 miniorange_openid_sso_settings_page.php:546
140
+ #: view/customise_social_icons/mo_openid_cust_icons.php:206 view/disp_options/mo_openid_dispopt.php:28
141
+ #: view/disp_options/mo_openid_dispopt.php:62 view/disp_options/mo_openid_dispopt.php:67
142
+ #: view/disp_options/mo_openid_dispopt.php:71 view/disp_options/mo_openid_dispopt.php:76
143
+ #: view/disp_options/mo_openid_dispopt.php:81 view/disp_options/mo_openid_dispopt.php:86
144
+ #: view/disp_options/mo_openid_dispopt.php:91 view/disp_options/mo_openid_dispopt.php:116
145
  #: view/premium_features/mo_openid_prem_feat.php:90 view/premium_features/mo_openid_prem_feat.php:105
146
  #: view/premium_features/mo_openid_prem_feat.php:121 view/premium_features/mo_openid_prem_feat.php:135
147
  #: view/premium_features/mo_openid_prem_feat.php:149 view/premium_features/mo_openid_prem_feat.php:160
148
+ #: view/profile/mo_openid_profile.php:84 view/redirect_options/mo_openid_redirect_op.php:124
149
+ #: view/registration/mo_openid_registration.php:33 view/registration/mo_openid_registration.php:54
150
+ #: view/registration/mo_openid_registration.php:65 view/registration/mo_openid_registration.php:82
151
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:120
152
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:124
153
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:133
154
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:17 view/soc_sha/soc_apps/mo_openid_sharing.php:210
155
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:223 view/soc_sha/soc_apps/mo_openid_sharing.php:234
156
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:245 view/soc_sha/soc_apps/mo_openid_sharing.php:256
157
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:267 view/soc_sha/soc_apps/mo_openid_sharing.php:278
158
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:289 view/soc_sha/soc_apps/mo_openid_sharing.php:300
159
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:311 view/soc_sha/soc_apps/mo_openid_sharing.php:322
160
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:335 view/soc_sha/soc_apps/mo_openid_sharing.php:346
161
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:357 view/soc_sha/soc_apps/mo_openid_sharing.php:368
162
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:379 view/soc_sha/soc_apps/mo_openid_sharing.php:392
163
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:403 view/soc_sha/soc_apps/mo_openid_sharing.php:415
164
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:426 view/soc_sha/soc_apps/mo_openid_sharing.php:437
165
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:450 view/soc_sha/soc_apps/mo_openid_sharing.php:461
166
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:472 view/soc_sha/soc_apps/mo_openid_sharing.php:483
167
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:494 view/soc_sha/soc_apps/mo_openid_sharing.php:507
168
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:518
169
+ #: view/soc_sha/soc_med_cust/mo_openid_social_media_cust.php:15
170
+ #: view/soc_sha/soc_med_cust/mo_openid_social_media_cust.php:24
171
+ #: view/soc_sha/soc_med_ser/mo_openid_social_media_services.php:14
172
+ #: view/soc_sha/soc_med_ser/mo_openid_social_media_services.php:27
173
  msgid "PRO"
174
  msgstr "प्रीमियम"
175
 
176
+ #: miniorange_openid_sso_settings_page.php:100 view/restrict_domain/mo_openid_restrict_dom.php:11
177
  #: view/restrict_domain/mo_openid_restrict_dom.php:41
178
  msgid "Domain Restriction"
179
  msgstr "रेस्ट्रिक्ट डोमेन"
180
 
181
+ #: miniorange_openid_sso_settings_page.php:101 view/link_social_account/mo_openid_Acclink.php:72
182
  msgid "Link Social Account"
183
  msgstr "खाता लिंक"
184
 
185
+ #: miniorange_openid_sso_settings_page.php:102 view/profile_completion/mo_openid_prof_comp.php:65
186
  msgid "Profile Completion"
187
  msgstr "प्रोफाइल प्राप्ति"
188
 
189
+ #: miniorange_openid_sso_settings_page.php:103 view/email_settings/mo_openid_set_email.php:74
190
  msgid "Email Notification"
191
  msgstr "ई - मेल अधिसूचना"
192
 
193
+ #: miniorange_openid_sso_settings_page.php:104
194
  msgid "Recaptcha"
195
  msgstr "रेकॉप्टचा"
196
 
197
+ #: miniorange_openid_sso_settings_page.php:105 view/premium_features/mo_openid_prem_feat.php:159
198
  msgid "Premium Features"
199
  msgstr "प्रीमियम सुविधाएँ"
200
 
201
+ #: miniorange_openid_sso_settings_page.php:106 view/integration/mo_openid_integrate.php:116
202
  msgid "Integrations"
203
  msgstr "एकीकरण"
204
 
205
+ #: miniorange_openid_sso_settings_page.php:107 miniorange_openid_sso_settings_page.php:537
206
+ #: miniorange_openid_sso_settings_page.php:689
207
  msgid "Shortcodes"
208
  msgstr "शॉर्टकोड"
209
 
210
+ #: miniorange_openid_sso_settings_page.php:109
211
  msgid "User Profile"
212
  msgstr "सामाजिक प्रोफ़ाइल"
213
 
214
+ #: miniorange_openid_sso_settings_page.php:194 miniorange_openid_sso_settings_page.php:610
215
+ #: miniorange_openid_sso_settings_page.php:745 miniorange_openid_sso_settings_page.php:916
216
  msgid "NEED HELP"
217
  msgstr "कोई मदद चाहिए? "
218
 
219
+ #: miniorange_openid_sso_settings_page.php:523
220
  msgid ""
221
  "Select\n"
222
  " Social Apps"
223
  msgstr "सोशल एप्स का चयन करें"
224
 
225
+ #: miniorange_openid_sso_settings_page.php:527 miniorange_openid_sso_settings_page.php:687
226
  msgid "Customization"
227
  msgstr "अनुकूलन "
228
 
229
+ #: miniorange_openid_sso_settings_page.php:530
230
  msgid ""
231
  "Social\n"
232
  " Share Counts"
233
  msgstr "सामाजिक शेयर गिनता"
234
 
235
+ #: miniorange_openid_sso_settings_page.php:534
236
  msgid ""
237
  "Display\n"
238
  " Option"
239
  msgstr "प्रदर्शित विकल्प"
240
 
241
+ #: miniorange_openid_sso_settings_page.php:540
242
+ #, fuzzy
243
+ #| msgid "Social Login Shortcodes"
244
+ msgid "Social Media Services"
245
+ msgstr "डिफ़ॉल्ट सामाजिक लॉगिन शोर्ट"
246
+
247
+ #: miniorange_openid_sso_settings_page.php:543
248
+ #, fuzzy
249
+ #| msgid "Customization"
250
+ msgid "Social Icons Customization"
251
+ msgstr "अनुकूलन "
252
+
253
+ #: miniorange_openid_sso_settings_page.php:546 view/soc_sha/twitter_btn/mo_twitter_btn.php:105
254
+ msgid "Twitter Follow Button"
255
+ msgstr ""
256
+
257
+ #: miniorange_openid_sso_settings_page.php:685 view/soc_com/com_Enable/mo_openid_comm_enable.php:10
258
  #: view/soc_com/com_select_app/mo_openid_comm_select_app.php:20
259
  msgid "Select Applications"
260
  msgstr "एप्लिकेशन चुनें"
261
 
262
+ #: miniorange_openid_sso_settings_page.php:686
263
  msgid "Display options"
264
  msgstr "प्रदर्शित विकल्प"
265
 
266
+ #: miniorange_openid_sso_settings_page.php:688
267
  msgid "Enable and Add Social Comments"
268
  msgstr "सक्षम करें और सामाजिक टिप्पणियाँ जोड़ें"
269
 
270
+ #: miniorange_openid_sso_settings_page.php:853 view/faq/mo_openid_faq.php:108
271
  #: view/faq/mo_openid_faq.php:117
272
  msgid "Social Login"
273
  msgstr "सामाजिक लॉगिन"
274
 
275
+ #: miniorange_openid_sso_settings_page.php:867 view/add_on/custom_registration_form.php:9
276
  #: view/mo_new/mo_openid_whats_new.php:65
277
  msgid "Custom Registration Form"
278
  msgstr "कस्टम पंजीकरण फार्म"
279
 
280
+ #: miniorange_openid_sso_settings_page.php:868
281
  msgid "Go to Social Login"
282
  msgstr "सामाजिक लॉगिन पर जाएं"
283
 
284
+ #: miniorange_openid_sso_settings_page.php:869
285
  msgid "Licensing Plans"
286
  msgstr "लाइसेंसिंग योजनाएं"
287
 
353
  msgstr "नहीं"
354
 
355
  #: view/add_on/custom_registration_form.php:124 view/integration/mo_openid_integrate.php:29
356
+ #: view/soc_sha/soc_med_cust/mo_openid_social_media_cust.php:77
357
  msgid "Cancel"
358
  msgstr "रद्द करना"
359
 
513
  msgstr "अंतिम पर क्लिक करें"
514
 
515
  #: view/add_on/custom_registration_form.php:160
516
+ #: view/customise_social_icons/mo_openid_cust_icons.php:115 view/disp_options/mo_openid_dispopt.php:114
517
  #: view/email_settings/mo_openid_set_email.php:66 view/gdpr/mo_openid_gdpr.php:33
518
  #: view/integration/mo_openid_integrate.php:108 view/link_social_account/mo_openid_Acclink.php:65
519
+ #: view/profile_completion/mo_openid_prof_comp.php:57
520
+ #: view/redirect_options/mo_openid_redirect_op.php:178 view/registration/mo_openid_registration.php:95
521
+ #: view/restrict_domain/mo_openid_restrict_dom.php:33 view/soc_com/com_Cust/mo_openid_comm_cust.php:27
522
  #: view/soc_com/com_display_options/mo_openid_comm_disp_opt.php:36
523
+ #: view/soc_com/com_select_app/mo_openid_comm_select_app.php:60
524
  #: view/soc_sha/cust_text/mo_openid_cust_shricon.php:227
525
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:208
526
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:73
527
+ #: view/soc_sha/soc_med_ser/mo_openid_social_media_services.php:32
528
+ #: view/soc_sha/twitter_btn/mo_twitter_btn.php:100
529
  msgid "Save"
530
  msgstr " सहेजें "
531
 
537
  msgid "Social Login Add On"
538
  msgstr "सोशल लॉगइन ऐड ऑन"
539
 
540
+ #: view/config_apps/mo_openid_config_apps.php:34
541
  msgid "Active"
542
  msgstr "सक्रिय"
543
 
544
+ #: view/config_apps/mo_openid_config_apps.php:67
545
  msgid "Premium Applications"
546
  msgstr "प्रीमियम आवेदन"
547
 
548
+ #: view/config_apps/mo_openid_config_apps.php:102
549
  msgid "Configure Applications"
550
  msgstr "एप्लिकेशन कॉन्फ़िगर करें"
551
 
573
  msgid "Long Button"
574
  msgstr "पाठ के साथ लंबा बटन"
575
 
576
+ #: view/customise_social_icons/mo_openid_cust_icons.php:29
577
  #: view/soc_sha/cust_text/mo_openid_cust_shricon.php:29
578
  msgid "Theme"
579
  msgstr "थीम"
580
 
581
+ #: view/customise_social_icons/mo_openid_cust_icons.php:30
582
  #: view/soc_sha/cust_text/mo_openid_cust_shricon.php:59
583
  msgid "Default"
584
  msgstr "डिफ़ॉल्ट "
585
 
586
+ #: view/customise_social_icons/mo_openid_cust_icons.php:36
587
  msgid "Custom background*"
588
  msgstr "कस्टम पृष्ठभूमि"
589
 
590
+ #: view/customise_social_icons/mo_openid_cust_icons.php:45
591
  msgid "*Custom background:"
592
  msgstr "कस्टम पृष्ठभूमि"
593
 
594
+ #: view/customise_social_icons/mo_openid_cust_icons.php:45
595
  msgid "This will change the background color of login icons"
596
  msgstr "कस्टम पृष्ठभूमि: यह लॉगिन आइकन की पृष्ठभूमि का रंग बदल देगा।"
597
 
598
+ #: view/customise_social_icons/mo_openid_cust_icons.php:48
599
  #: view/soc_sha/cust_text/mo_openid_cust_shricon.php:31
600
  msgid "Size of Icons"
601
  msgstr "प्रतीक का आकार"
602
 
603
+ #: view/customise_social_icons/mo_openid_cust_icons.php:50
604
  msgid "Width:"
605
  msgstr "चौड़ाई"
606
 
607
+ #: view/customise_social_icons/mo_openid_cust_icons.php:53
608
  msgid "Height:"
609
  msgstr "ऊंचाई"
610
 
611
+ #: view/customise_social_icons/mo_openid_cust_icons.php:56
612
  msgid "Curve:"
613
  msgstr "वक्र"
614
 
615
+ #: view/customise_social_icons/mo_openid_cust_icons.php:67
616
  #: view/soc_sha/cust_text/mo_openid_cust_shricon.php:30
617
  msgid "Space between Icons"
618
  msgstr "प्रतीक के बीच की जगह"
619
 
620
+ #: view/customise_social_icons/mo_openid_cust_icons.php:75
621
  msgid "Customize Text For Social Login Buttons / Icons"
622
  msgstr "सामाजिक लॉगिन बटन / प्रतीक के लिए पाठ अनुकूलित करें"
623
 
624
+ #: view/customise_social_icons/mo_openid_cust_icons.php:78
625
  msgid "Select color for customize text:"
626
  msgstr "कस्टमाइज़ टेक्स्ट के लिए रंग का चयन करें"
627
 
628
+ #: view/customise_social_icons/mo_openid_cust_icons.php:86
629
  msgid "Enter text to show above login widget:"
630
  msgstr "लॉगिन विजेट ऊपर दिखाने के लिए टेक्स्ट दर्ज करें"
631
 
632
+ #: view/customise_social_icons/mo_openid_cust_icons.php:92
633
  msgid "Enter text to show on your login buttons:"
634
  msgstr "अपने लॉगिन बटन (यदि आपके पास है) पर दिखाने के लिए पाठ दर्ज करें"
635
 
636
+ #: view/customise_social_icons/mo_openid_cust_icons.php:99
637
  msgid "Customize Text to show user after Login"
638
  msgstr "लॉगिन के बाद उपयोगकर्ता को दिखाने के लिए टेक्स्ट कस्टमाइज़ करें"
639
 
640
+ #: view/customise_social_icons/mo_openid_cust_icons.php:102
641
  msgid "Enter text to show before the logout link. Use ##username## to display current username:"
642
  msgstr ""
643
  "लॉगआउट लिंक से पहले दिखाने के लिए पाठ दर्ज करें। वर्तमान उपयोगकर्ता नाम प्रदर्शित करने के लिए ## उपयोगकर्ता नाम ## "
644
  "का उपयोग करें:"
645
 
646
+ #: view/customise_social_icons/mo_openid_cust_icons.php:109
647
  msgid "Enter text to show as logout link:"
648
  msgstr "लॉगआउट लिंक के रूप में दिखाने के लिए पाठ दर्ज करें"
649
 
650
+ #: view/customise_social_icons/mo_openid_cust_icons.php:206
651
+ #, fuzzy
652
+ #| msgid "Custom App"
653
+ msgid "Custom CSS"
654
+ msgstr "कस्टम ऐप"
655
+
656
+ #: view/customise_social_icons/mo_openid_cust_icons.php:231
657
  msgid "Customize Login Icons"
658
  msgstr "साझाकरण आइकन अनुकूलित करें"
659
 
686
  msgstr "संपर्क करें"
687
 
688
  #: view/disp_options/mo_openid_dispopt.php:28
689
+ #, fuzzy
690
+ #| msgid "Woocommerce display options"
691
+ msgid "Ultimate Member display options"
692
+ msgstr "वूकमर्स प्रदर्शित विकल्प"
693
 
694
+ #: view/disp_options/mo_openid_dispopt.php:31
695
+ #, fuzzy
696
+ #| msgid "Before WooCommerce Login Form"
697
+ msgid "Before Ultimate Member Login Form Fields"
698
+ msgstr "वूकमर्स लॉगिन फॉर्म से पहले"
699
 
700
  #: view/disp_options/mo_openid_dispopt.php:35
701
+ #, fuzzy
702
+ #| msgid "After WooCommerce Login Form"
703
+ msgid "After Ultimate Member Login Form Fields"
704
+ msgstr "वूकमर्स लॉगिन फॉर्म के बाद"
705
 
706
+ #: view/disp_options/mo_openid_dispopt.php:39
707
+ #, fuzzy
708
+ #| msgid "Before 'Register button' of WooCommerce Registration Form"
709
+ msgid "After 'Register button' of Ultimate Member Form"
710
+ msgstr "वूकमर्स पंजीकरण फॉर्म के 'रजिस्टर बटन' से पहले"
711
+
712
+ #: view/disp_options/mo_openid_dispopt.php:43
713
+ #, fuzzy
714
+ #| msgid "Before WooCommerce Registration Form"
715
+ msgid "Before Ultimate Member Registration Form Fields"
716
+ msgstr "वूकमर्स पंजीकरण फॉर्म से पहले"
717
+
718
+ #: view/disp_options/mo_openid_dispopt.php:47
719
+ #, fuzzy
720
+ #| msgid "After WooCommerce Registration Form"
721
+ msgid "After Ultimate Member Registration Form Fields"
722
+ msgstr "वूकमर्स पंजीकरण फॉर्म के बाद"
723
 
724
+ #: view/disp_options/mo_openid_dispopt.php:52
725
  msgid "Woocommerce display options"
726
  msgstr "वूकमर्स प्रदर्शित विकल्प"
727
 
728
+ #: view/disp_options/mo_openid_dispopt.php:55
729
  msgid "Before WooCommerce Login Form"
730
  msgstr "वूकमर्स लॉगिन फॉर्म से पहले"
731
 
732
+ #: view/disp_options/mo_openid_dispopt.php:59
733
  msgid "Before 'Remember Me' of WooCommerce Login Form"
734
  msgstr "वूकमर्स लॉगिन फॉर्म के 'मुझे याद रखें' से पहले"
735
 
736
+ #: view/disp_options/mo_openid_dispopt.php:62
737
  msgid "After WooCommerce Login Form"
738
  msgstr "वूकमर्स लॉगिन फॉर्म के बाद"
739
 
740
+ #: view/disp_options/mo_openid_dispopt.php:67
741
  msgid "Before WooCommerce Registration Form"
742
  msgstr "वूकमर्स पंजीकरण फॉर्म से पहले"
743
 
744
+ #: view/disp_options/mo_openid_dispopt.php:71
745
  msgid "Before 'Register button' of WooCommerce Registration Form"
746
  msgstr "वूकमर्स पंजीकरण फॉर्म के 'रजिस्टर बटन' से पहले"
747
 
748
+ #: view/disp_options/mo_openid_dispopt.php:76
749
  msgid "After WooCommerce Registration Form"
750
  msgstr "वूकमर्स पंजीकरण फॉर्म के बाद"
751
 
752
+ #: view/disp_options/mo_openid_dispopt.php:81
753
  msgid "Before WooCommerce Checkout Form"
754
  msgstr "वूकमर्स चेकआउट फॉर्म से पहले"
755
 
756
+ #: view/disp_options/mo_openid_dispopt.php:86
757
  msgid "After WooCommerce Checkout Form"
758
  msgstr "वूकमर्स चेकआउट फॉर्म के बाद"
759
 
760
+ #: view/disp_options/mo_openid_dispopt.php:91
761
+ msgid "BuddyPress display options"
762
+ msgstr "बुडडीप्रेस प्रदर्शित विकल्प"
763
+
764
+ #: view/disp_options/mo_openid_dispopt.php:93
765
+ msgid "Before BuddyPress Registration Form"
766
+ msgstr "बुडडीप्रेस रजिस्ट्रेशन फॉर्म से पहले"
767
+
768
+ #: view/disp_options/mo_openid_dispopt.php:98
769
+ msgid "Before BuddyPress Account Details"
770
+ msgstr "बुडडीप्रेस खाते तपशील करण्यापूर्वी"
771
+
772
+ #: view/disp_options/mo_openid_dispopt.php:103
773
+ msgid "After BuddyPress Registration Form"
774
+ msgstr "बुडडीप्रेस नोंदणी फॉर्म नंतर"
775
+
776
+ #: view/disp_options/mo_openid_dispopt.php:109
777
  msgid "Display miniOrange logo with social login icons on selected form"
778
  msgstr "चयनित फ़ॉर्म पर सामाजिक लॉगिन आइकन के साथ मिनीऑरे लोगो प्रदर्शित करें"
779
 
780
+ #: view/disp_options/mo_openid_dispopt.php:116
781
  msgid "These features are available in premium version only. To know more about the premium plugin "
782
  msgstr "ये सुविधाएँ केवल प्रीमियम संस्करण में उपलब्ध हैं। प्रीमियम प्लगइन के बारे में अधिक जानने के लिए"
783
 
784
+ #: view/disp_options/mo_openid_dispopt.php:116
785
  msgid "click here"
786
  msgstr "यहां पर क्लिक करें"
787
 
788
+ #: view/disp_options/mo_openid_dispopt.php:117
789
  msgid "Add Login Icons"
790
  msgstr "लॉगिन आइकन जोड़ें"
791
 
792
+ #: view/disp_options/mo_openid_dispopt.php:120
793
  msgid "You can add login icons in the following areas from"
794
  msgstr "आप प्रदर्शन विकल्प से निम्न क्षेत्रों में लॉगिन आइकन जोड़ सकते हैं। "
795
 
796
+ #: view/disp_options/mo_openid_dispopt.php:120
797
  msgid "For other areas(widget areas), use Login widget"
798
  msgstr "अन्य क्षेत्रों (विजेट क्षेत्रों) के लिए, लॉगिन विजेट का उपयोग करें"
799
 
800
+ #: view/disp_options/mo_openid_dispopt.php:122
801
  msgid "Default Login Form: This option places login icons below the default login form on wp-login"
802
  msgstr "डिफ़ॉल्ट लॉगिन फ़ॉर्म: यह विकल्प wp-login पर डिफ़ॉल्ट लॉगिन फ़ॉर्म के नीचे लॉगिन आइकन देता है"
803
 
804
+ #: view/disp_options/mo_openid_dispopt.php:123
805
  msgid "Default Registration Form: This option places login icons below the default registration form"
806
  msgstr "डिफ़ॉल्ट पंजीकरण फॉर्म: यह विकल्प डिफ़ॉल्ट पंजीकरण फॉर्म के नीचे लॉगिन आइकन रखता है।"
807
 
808
+ #: view/disp_options/mo_openid_dispopt.php:125
809
  msgid "Comment Form: This option places login icons above the comment section of all your posts"
810
  msgstr "टिप्पणी फ़ॉर्म: यह विकल्प आपके सभी पोस्ट के टिप्पणी अनुभाग के ऊपर लॉगिन आइकन देता है।"
811
 
812
+ #: view/disp_options/mo_openid_dispopt.php:130
813
  msgid "Add Login Icons as Widget"
814
  msgstr "विजेट के रूप में लॉगिन आइकन जोड़ें"
815
 
816
+ #: view/disp_options/mo_openid_dispopt.php:133
817
  msgid ""
818
  "Go to Widgets. Among the available widgets you\n"
819
  " will find miniOrange Social Login Widget, drag it to the widget area "
823
  "प्रकटन-> विजेट पर जाएं। उपलब्ध विगेट्स में आप मिनीऑर्ग सोशल लॉगिन विजेट प्राप्त करेंगे, इसे विजेट क्षेत्र में खींचें जहाँ आप "
824
  "इसे प्रदर्शित करना चाहते हैं"
825
 
826
+ #: view/disp_options/mo_openid_dispopt.php:136
827
  msgid "Now logout and go to your site. You will see Social Login icon for which you enabled login."
828
  msgstr "अब लॉगआउट करें और अपनी साइट पर जाएं। आपको ऐप आइकन दिखाई देगा जिसके लिए आपने लॉगिन सक्षम किया था।"
829
 
830
+ #: view/disp_options/mo_openid_dispopt.php:137
831
  msgid "Click that app icon and login with your existing app account to wordpress"
832
  msgstr "उस ऐप आइकन पर क्लिक करें और अपने मौजूदा ऐप अकाउंट से वर्डप्रेस पर लॉगइन करें."
833
 
834
+ #: view/disp_options/mo_openid_dispopt.php:141
835
  msgid "Using Shortcode"
836
  msgstr "उपयोग शॉर्टकोड"
837
 
838
+ #: view/disp_options/mo_openid_dispopt.php:144
839
+ #, fuzzy
840
+ #| msgid ""
841
+ #| "You can use this shortcode <code id='2'>[miniorange_social_login]</code><i style= \"width: 11px;"
842
+ #| "height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy "
843
+ #| "mo_copytooltip\" onclick=\"copyToClipboard(this, '#2', '#shortcode_url2_copy')\"><span id="
844
+ #| "\"shortcode_url2_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i> to display "
845
+ #| "social icons on any login page, post, mo_openid_popup and php pages."
846
  msgid ""
847
  "You can use this shortcode <code id='2'>[miniorange_social_login]</code><i style= \"width: 11px;"
848
  "height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy "
849
  "mo_copytooltip\" onclick=\"copyToClipboard(this, '#2', '#shortcode_url2_copy')\"><span id="
850
  "\"shortcode_url2_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i> to display social "
851
+ "icons on any login page, post, popup and PHP pages."
852
  msgstr ""
853
  "आप किसी भी <code id='2'>[miniorange_social_login]</code> लॉगिन पेज, पोस्ट, mo_openid_popup और पीएचपी "
854
  "पेज पर सोशल आइकन प्रदर्शित करने के <i style=\"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" "
856
  "'#2', '#shortcode_url2_copy')\"><span id=\"shortcode_url2_copy\" class=\"mo_copytooltiptext\">लिए "
857
  "क्लिपबोर्ड</span></i> पर इस शॉर्टकोड कॉपी का उपयोग कर सकते हैं।"
858
 
859
+ #: view/disp_options/mo_openid_dispopt.php:145
860
  msgid "* Detailed information about how to use shortcode is given in <a href="
861
  msgstr "* शॉर्टकोड का उपयोग करने के तरीके के बारे में विस्तृत जानकारी <a href="
862
 
1223
  msgstr "टैब "
1224
 
1225
  #: view/faq/mo_openid_faq.php:109 view/redirect_options/mo_openid_redirect_op.php:13
1226
+ #: view/redirect_options/mo_openid_redirect_op.php:133
1227
  msgid "Same page where user logged in"
1228
  msgstr "वही पृष्ठ जहाँ उपयोगकर्ता ने लॉग इन किया था"
1229
 
1230
  #: view/faq/mo_openid_faq.php:110 view/redirect_options/mo_openid_redirect_op.php:21
1231
+ #: view/redirect_options/mo_openid_redirect_op.php:140
1232
  msgid "Homepage"
1233
  msgstr "मुखपृष्ठ"
1234
 
1375
  "HTML फ़ाइल पर जाएं जो आपके पृष्ठ / पोस्ट को आमंत्रित करता है और निम्न HTML स्निपेट डालें। इसके अलावा, अपनी आवश्यकता "
1376
  "के अनुसार मार्जिन-बाएं मूल्य बढ़ाएं। फ़ाइल सहेजें।"
1377
 
1378
+ #: view/faq/mo_openid_faq.php:155 view/soc_sha/soc_apps/mo_openid_sharing.php:859
1379
  msgid "Social Sharing"
1380
  msgstr "सामाजिक साझाकरण"
1381
 
1389
  "content."
1390
  msgstr "सामग्री के पहले या बाद में सामग्री के बाद, आप सामग्री से पहले सामाजिक साझाकरण आइकन डाल सकते हैं।"
1391
 
1392
+ #: view/faq/mo_openid_faq.php:159 view/soc_sha/share_cnt/mo_openid_shrcnt.php:49
1393
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:52 view/soc_sha/share_cnt/mo_openid_shrcnt.php:56
1394
  msgid "Go to"
1395
  msgstr " पर जाएं,"
1396
 
1669
  msgid "Sync Woocommerce checkout fields"
1670
  msgstr "वूकमर्स चेकआउट फ़ील्ड सिंक करें"
1671
 
1672
+ #: view/licensing_plans/mo_openid_lic_plans.php:461 view/licensing_plans/mo_openid_lic_plans.php:957
1673
  msgid "Licensing Plan For Social Login"
1674
  msgstr "सामाजिक लॉगिन के लिए लाइसेंसिंग योजना"
1675
 
1676
+ #: view/licensing_plans/mo_openid_lic_plans.php:810
1677
+ #, fuzzy
1678
+ #| msgid "Licensing Plan For Social Login"
1679
+ msgid "Licensing Plan For Social Sharing"
1680
+ msgstr "सामाजिक लॉगिन के लिए लाइसेंसिंग योजना"
1681
+
1682
  #: view/link_social_account/mo_openid_Acclink.php:19
1683
  msgid ""
1684
  "Enable account linking to let your users link their Social accounts with existing WordPress account. "
1928
  msgid "for how we use your information. We don’t sell your information to any third-party organization"
1929
  msgstr "हम आपकी जानकारी का उपयोग कैसे करते हैं। हम आपकी जानकारी को किसी तीसरे पक्ष के संगठन को नहीं बेचते हैं"
1930
 
1931
+ #: view/profile/mo_openid_profile.php:27 view/soc_sha/soc_apps/mo_openid_sharing.php:172
1932
  msgid "Email"
1933
  msgstr "मेल "
1934
 
1988
  "सोशल मीडिया एप्लिकेशन से उपयोगकर्ता नाम या ईमेल की अनुपलब्धता के मामले में, उपयोगकर्ता को इसे इनपुट करने के लिए कहा "
1989
  "जाता है"
1990
 
1991
+ #: view/profile_completion/mo_openid_prof_comp.php:21
1992
  msgid "*NOTE:"
1993
  msgstr "* नोट:"
1994
 
1995
+ #: view/profile_completion/mo_openid_prof_comp.php:21
1996
  msgid ""
1997
  "Disabling profile completion is not recommended. Instagram and Twitter don't return email address. "
1998
  "Please keep this enabled if you are using Instagram or Twitter. This feature requires SMTP to be "
2004
  "वेबसाइट के लिए सेटअप करने की आवश्यकता होती है क्योंकि हम अपने ईमेल पते को सत्यापित करने के लिए ईमेल पर उपयोगकर्ताओं "
2005
  "को एक कोड भेजते हैं।"
2006
 
2007
+ #: view/profile_completion/mo_openid_prof_comp.php:24
2008
  msgid "Customize Text for Profile Completion"
2009
  msgstr "प्रोफ़ाइल पूर्ण करने के लिए पाठ अनुकूलित करें"
2010
 
2011
+ #: view/profile_completion/mo_openid_prof_comp.php:24
2012
  msgid "Preview Profile Completion form"
2013
  msgstr "प्रोफ़ाइल पूर्ण करने के लिए पाठ अनुकूलित करें"
2014
 
2015
+ #: view/profile_completion/mo_openid_prof_comp.php:26
2016
  msgid "Enter title of Profle Completion"
2017
  msgstr "प्रोपल कंप्लीशन का टाइटल दर्ज करें"
2018
 
2019
+ #: view/profile_completion/mo_openid_prof_comp.php:27
2020
  msgid "Enter Username Label text"
2021
  msgstr "उपयोगकर्ता नाम लेबल टेक्स्ट दर्ज करें"
2022
 
2023
+ #: view/profile_completion/mo_openid_prof_comp.php:28
2024
  msgid "Enter Email Label text"
2025
  msgstr "ईमेल लेबल टेक्स्ट दर्ज करें"
2026
 
2027
+ #: view/profile_completion/mo_openid_prof_comp.php:29
2028
  msgid "Enter Submit button text"
2029
  msgstr "सबमिट बटन टेक्स्ट दर्ज करें"
2030
 
2031
+ #: view/profile_completion/mo_openid_prof_comp.php:30
2032
  msgid "Enter instruction for Profile Completion"
2033
  msgstr "प्रोफ़ाइल पूर्ण करने के लिए निर्देश दर्ज करें"
2034
 
2035
+ #: view/profile_completion/mo_openid_prof_comp.php:32
2036
  msgid "Enter extra instruction for Profile Completion "
2037
  msgstr "प्रोफ़ाइल पूर्ण करने के लिए अतिरिक्त निर्देश दर्ज करें"
2038
 
2039
+ #: view/profile_completion/mo_openid_prof_comp.php:34
2040
  msgid "Enter username already exists warning message text "
2041
  msgstr "उपयोगकर्ता नाम दर्ज करें चेतावनी संदेश पाठ पहले से मौजूद है"
2042
 
2043
+ #: view/profile_completion/mo_openid_prof_comp.php:35
2044
  msgid "Customize Text for Email Verification"
2045
  msgstr "ईमेल सत्यापन के लिए पाठ अनुकूलित करें"
2046
 
2047
+ #: view/profile_completion/mo_openid_prof_comp.php:35
2048
  msgid "Preview Email Verification form"
2049
  msgstr "ईमेल सत्यापन प्रपत्र का पूर्वावलोकन करें"
2050
 
2051
+ #: view/profile_completion/mo_openid_prof_comp.php:37
2052
  msgid "Enter title of Email Verification form"
2053
  msgstr "ईमेल सत्यापन फ़ॉर्म का शीर्षक दर्ज करें"
2054
 
2055
+ #: view/profile_completion/mo_openid_prof_comp.php:38
2056
  msgid "Enter Resend OTP button text"
2057
  msgstr "ओटीपी बटन पाठ भेजें दर्ज करें"
2058
 
2059
+ #: view/profile_completion/mo_openid_prof_comp.php:39
2060
  msgid "Enter Back button text"
2061
  msgstr "वापस बटन टेक्स्ट दर्ज करें:"
2062
 
2063
+ #: view/profile_completion/mo_openid_prof_comp.php:40
2064
  msgid "Enter instruction for Email Verification form"
2065
  msgstr "ईमेल सत्यापन फ़ॉर्म के लिए निर्देश दर्ज करें"
2066
 
2067
+ #: view/profile_completion/mo_openid_prof_comp.php:42
2068
  msgid "Enter verification code in Email Verification form"
2069
  msgstr "ईमेल सत्यापन फ़ॉर्म में सत्यापन कोड दर्ज करें"
2070
 
2071
+ #: view/profile_completion/mo_openid_prof_comp.php:44
2072
  msgid "Enter Message for wrong OTP"
2073
  msgstr "गलत ओटीपी के लिए संदेश दर्ज करें"
2074
 
2075
+ #: view/profile_completion/mo_openid_prof_comp.php:45
2076
  msgid "Customized E-mail Message"
2077
  msgstr "अनुकूलित ई-मेल संदेश"
2078
 
2079
+ #: view/profile_completion/mo_openid_prof_comp.php:46
2080
  #: view/soc_sha/cust_text/mo_openid_cust_shricon.php:107
2081
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:204
2082
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:845
2083
  msgid "NOTE"
2084
  msgstr "ध्यान दें"
2085
 
2086
+ #: view/profile_completion/mo_openid_prof_comp.php:46
2087
  msgid "Please enter"
2088
  msgstr " दर्ज करें"
2089
 
2090
+ #: view/profile_completion/mo_openid_prof_comp.php:46
2091
  msgid "in message where you want to show one time password."
2092
  msgstr "संदेश में जहां आप एक बार पासवर्ड दिखाना चाहते हैं।"
2093
 
2094
+ #: view/profile_completion/mo_openid_prof_comp.php:48
2095
  msgid "Display miniOrange logo with social login icons on profile completion forms"
2096
  msgstr "सामाजिक लॉगिन आइकन और खाता लिंकिंग और प्रोफ़ाइल पूर्णता फॉर्मों के साथ मिनीऑरेंज लोगो प्रदर्शित करें."
2097
 
2160
  msgstr "लॉगिन के बाद रीडायरेक्ट करें"
2161
 
2162
  #: view/redirect_options/mo_openid_redirect_op.php:32
2163
+ #: view/redirect_options/mo_openid_redirect_op.php:151
2164
  msgid "Account dashboard"
2165
  msgstr "खाता डैशबोर्ड"
2166
 
2167
  #: view/redirect_options/mo_openid_redirect_op.php:40
2168
+ #: view/redirect_options/mo_openid_redirect_op.php:157
2169
  msgid "Custom URL"
2170
  msgstr "कस्टम यूआरएल"
2171
 
2172
  #: view/redirect_options/mo_openid_redirect_op.php:51
2173
  #: view/redirect_options/mo_openid_redirect_op.php:110
2174
+ #: view/redirect_options/mo_openid_redirect_op.php:169
2175
  msgid "Relative URL"
2176
  msgstr "सापेक्ष यूआरएल"
2177
 
2200
  msgid "Login Page"
2201
  msgstr "लॉगिन वाला पन्ना"
2202
 
2203
+ #: view/redirect_options/mo_openid_redirect_op.php:124
2204
+ #, fuzzy
2205
+ #| msgid "Enable Logout Redirection"
2206
+ msgid "Enable Registration Redirection"
2207
+ msgstr "लॉगआउट पुनर्निर्देशन सक्षम करें"
2208
+
2209
+ #: view/redirect_options/mo_openid_redirect_op.php:185
2210
  msgid "Redirection Options"
2211
  msgstr "पुनर्निर्देशन विकल्प"
2212
 
2250
  "सामाजिक लॉगिन के माध्यम से पंजीकरण करने वाले सभी उपयोगकर्ताओं को यह भूमिका सौंपने के लिए रोल मैपिंग का उपयोग करें। "
2251
  "रोल मैप्ड उपयोगकर्ता के अनुसार वेबसाइट पर भूमिका दी जाएगी।"
2252
 
2253
+ #: view/registration/mo_openid_registration.php:37
2254
  msgid "Enable Email Notification to Admin"
2255
  msgstr "व्यवस्थापक को ईमेल अधिसूचना सक्षम करें"
2256
 
2257
+ #: view/registration/mo_openid_registration.php:39
2258
  msgid "Enable Email Notification to Admin - on User Registration"
2259
  msgstr "उपयोगकर्ता पंजीकरण पर उपयोगकर्ता को ईमेल अधिसूचना सक्षम करें"
2260
 
2261
+ #: view/registration/mo_openid_registration.php:43
2262
  msgid "This feature requires SMTP to be configured"
2263
  msgstr "इन सुविधाओं को एसएमटीपी सेटअप करने की आवश्यकता है|"
2264
 
2265
+ #: view/registration/mo_openid_registration.php:46
2266
  msgid "Set Display Picture for User"
2267
  msgstr "उपयोगकर्ता के लिए प्रदर्शन चित्र सेट करें"
2268
 
2269
+ #: view/registration/mo_openid_registration.php:48
2270
  msgid "Set Display Picture for User - on User Registration"
2271
  msgstr "उपयोगकर्ता के लिए प्रदर्शन चित्र सेट करें -उपयोगकर्ता पंजीकरण पर"
2272
 
2273
+ #: view/registration/mo_openid_registration.php:54
2274
+ msgid "Admin Disable bar"
2275
+ msgstr ""
2276
+
2277
+ #: view/registration/mo_openid_registration.php:62
2278
+ msgid "This feature disables admin bar form selected roles of the users"
2279
+ msgstr ""
2280
+
2281
+ #: view/registration/mo_openid_registration.php:65
2282
+ msgid "Send user activation link over email"
2283
+ msgstr ""
2284
+
2285
+ #: view/registration/mo_openid_registration.php:67
2286
+ #, fuzzy
2287
+ #| msgid "Enable Email Notification to Admin - on User Registration"
2288
+ msgid "Send user activation link over email - on User Registration"
2289
+ msgstr "उपयोगकर्ता पंजीकरण पर उपयोगकर्ता को ईमेल अधिसूचना सक्षम करें"
2290
+
2291
+ #: view/registration/mo_openid_registration.php:82
2292
+ #, fuzzy
2293
+ #| msgid "Enable Auto Field Registration Form"
2294
+ msgid "Enable Registration For Pages"
2295
+ msgstr "ऑटो फ़ील्ड पंजीकरण फ़ॉर्म सक्षम करें"
2296
+
2297
+ #: view/registration/mo_openid_registration.php:84
2298
+ msgid "Enable registration for specific pages"
2299
+ msgstr ""
2300
+
2301
+ #: view/registration/mo_openid_registration.php:88
2302
+ msgid "Enter Page URLs to Enable Registration:"
2303
+ msgstr ""
2304
+
2305
+ #: view/registration/mo_openid_registration.php:90
2306
+ msgid "Enter Page URL to Redeirect if user is not allowed to register:"
2307
+ msgstr ""
2308
+
2309
+ #: view/registration/mo_openid_registration.php:100
2310
  msgid "Registration Options"
2311
  msgstr "पंजीकरण के विकल्प"
2312
 
2516
  msgid "Any value for number of icons in one row"
2517
  msgstr "एक पंक्ति में माउस की संख्या के लिए कोई मान"
2518
 
2519
+ #: view/shrtco/mo_openid_shrtco.php:181
2520
+ msgid "Shortcode in php file"
2521
+ msgstr ""
2522
+
2523
+ #: view/shrtco/mo_openid_shrtco.php:182
2524
+ msgid "You can use shortcode in PHP file as following: "
2525
+ msgstr ""
2526
+
2527
+ #: view/shrtco/mo_openid_shrtco.php:184
2528
+ msgid ""
2529
+ "Replace SHORTCODE in above code with the required shortcode like <code>[miniorange_social_login "
2530
+ "theme=\"default\"]</code>, so the final code looks like following :"
2531
+ msgstr ""
2532
+
2533
+ #: view/shrtco/mo_openid_shrtco.php:192
2534
  msgid "Social Login Shortcodes"
2535
  msgstr "डिफ़ॉल्ट सामाजिक लॉगिन शोर्ट"
2536
 
2546
  msgid "Comments - Facebook Label"
2547
  msgstr "टिप्पणियाँ - फेसबुक लेबल"
2548
 
2549
+ #: view/soc_com/com_Cust/mo_openid_comm_cust.php:23
2550
+ #, fuzzy
2551
+ #| msgid "Comments - Default Label"
2552
+ msgid "Comments - Disqus Label"
2553
+ msgstr "टिप्पणियाँ - डिफ़ॉल्ट लेबल"
2554
+
2555
+ #: view/soc_com/com_Cust/mo_openid_comm_cust.php:34
2556
  msgid "Customize Text For Social Comment Labels"
2557
  msgstr "सामाजिक शेयर आइकन के लिए पाठ अनुकूलित करें"
2558
 
2627
  msgid "Facebook Comments"
2628
  msgstr "फेसबुक टिप्पणियां"
2629
 
2630
+ #: view/soc_com/com_select_app/mo_openid_comm_select_app.php:50
2631
+ #, fuzzy
2632
+ #| msgid "Social Comments"
2633
+ msgid "Disqus Comments"
2634
+ msgstr "सामाजिक टिप्पणियाँ "
2635
+
2636
+ #: view/soc_com/com_select_app/mo_openid_comm_select_app.php:66
2637
  msgid "Social Comments"
2638
  msgstr "सामाजिक टिप्पणियाँ "
2639
 
2732
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:57
2733
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:81
2734
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:105
2735
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:143
2736
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:163
2737
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:188
2738
  msgid "Before content"
2739
  msgstr "सामग्री आधी"
2740
 
2741
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:61
2742
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:85
2743
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:109
2744
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:147
2745
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:167
2746
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:192
2747
  msgid "After content"
2748
  msgstr "सामग्री नंतर"
2749
 
2750
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:65
2751
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:91
2752
  #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:114
2753
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:152
2754
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:172
2755
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:197
2756
  msgid "Both before and after content"
2757
  msgstr "सामग्री आधी आणि नंतर दोन्ही"
2758
 
2760
  msgid " WooCommerce Individual Product Page(Top)"
2761
  msgstr "वूकमर्स व्यक्तिगत उत्पाद पृष्ठ (शीर्ष)"
2762
 
2763
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:124
2764
+ #, fuzzy
2765
+ #| msgid "Before WooCommerce Checkout Form"
2766
+ msgid "Below WooCommerce Product"
2767
+ msgstr "वूकमर्स चेकआउट फॉर्म से पहले"
2768
+
2769
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:133
2770
  msgid "WooCommerce Individual Product Page"
2771
  msgstr "वूकमर्स व्यक्तिगत उत्पाद पृष्ठ"
2772
 
2773
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:138
2774
  msgid "BBPress Forums Page"
2775
  msgstr "बीबीप्रेस मंच पृष्ठ"
2776
 
2777
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:158
2778
  msgid "BBPress Topic Page"
2779
  msgstr "बीबीप्रेस विषय पृष्ठ"
2780
 
2781
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:181
2782
  msgid "BBPress Reply Page"
2783
  msgstr "बीबीप्रेस उत्तर पृष्ठ"
2784
 
2785
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:204
2786
  msgid "The icons in above pages will be placed horizontally. For vertical icons, add "
2787
  msgstr ""
2788
  "उपरोक्त पृष्ठों के आइकन क्षैतिज रूप से रखे जाएंगे। वर्टिकल आइकन्स के लिए, मिनीऑर्ग शेयरिंग - अपियरेंस-> विजेट्स से वर्टिकल "
2789
  "विजेट जोड़ें।"
2790
 
2791
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:204
2792
  msgid "miniOrange Sharing - Vertical"
2793
  msgstr "मिनीओरेन्ज शेयरिंग - वर्टिकल"
2794
 
2795
+ #: view/soc_sha/disp_shropt/mo_openid_disp_shropt.php:204
2796
  msgid "widget from Appearance->Widgets."
2797
  msgstr "सूरत से विजेट-> विजेट।"
2798
 
2799
  #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:17
2800
+ msgid ""
2801
+ "Share counts are supported for <b>Facebook</b> If you are Enabling share counts then it will give "
2802
+ "you the exact counts of share that is done by that particular social media."
2803
+ msgstr ""
2804
 
2805
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:17
2806
+ msgid ""
2807
+ " <b>Vkontakte</b>, <b>Stumble Upon</b>, <b>Buffer</b> and <b>Pinterest</b> and are supported in "
2808
+ "Paid Version"
2809
+ msgstr ""
2810
+
2811
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:20
2812
  msgid "Enable share counts"
2813
  msgstr "शेयर गणना सक्षम करें"
2814
 
2815
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:25
2816
  msgid "Delete Count Session"
2817
  msgstr "गणना सत्र हटाएं"
2818
 
2819
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:46
2820
  msgid "Facebook Access Token"
2821
  msgstr "फेसबुक एक्सेस टोकन"
2822
 
2823
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:47
2824
  msgid "Instructions to configure Facebook Share Counts"
2825
  msgstr "फेसबुक शेअर गणना कॉन्फिगर करण्याच्या सूचना"
2826
 
2827
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:49
2828
  msgid "Sign in with your Facebook account"
2829
  msgstr "अपने फेसबुक खाते के साथ साइन इन करें"
2830
 
2831
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:51
2832
  msgid ""
2833
  "Use an existing app if you already have one or create a new facebook\n"
2834
  " app by clicking on "
2836
  "यदि आप पहले से ही एक नया फेसबुक बनाते हैं या बनाते हैं तो मौजूदा ऐप का उपयोग करें\n"
2837
  "app पर क्लिक करके"
2838
 
2839
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:52 view/soc_sha/share_cnt/mo_openid_shrcnt.php:53
2840
  msgid "Create App"
2841
  msgstr "ऐप बनाएं"
2842
 
2843
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:52
2844
  msgid "My Apps"
2845
  msgstr "मेरी एप्प्स"
2846
 
2847
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:52
2848
  msgid ""
2849
  "and\n"
2850
  " select"
2851
  msgstr "तथा चुनते हैं"
2852
 
2853
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:53
2854
  msgid ""
2855
  " Enter Display Name i.e App Name and click\n"
2856
  " on"
2857
  msgstr "डिस्प्ले नाम यानी ऐप का नाम डालें और क्लिक करें पर"
2858
 
2859
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:54
2860
  msgid "Create App ID"
2861
  msgstr "ऐप आईडी बनाएं"
2862
 
2863
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:56
2864
  msgid "Tools"
2865
  msgstr "उपकरण"
2866
 
2867
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:56
2868
  msgid "select"
2869
  msgstr "चुनते हैं"
2870
 
2871
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:56
2872
  msgid "Graph API Explorer"
2873
  msgstr "ग्राफ एपीआई एक्सप्लोरर"
2874
 
2875
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:56
2876
  msgid "and click on"
2877
  msgstr "और पर क्लिक करें"
2878
 
2879
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:56
2880
  msgid ""
2881
  "Get\n"
2882
  " Access Token"
2883
  msgstr "पहुँच टोकन प्राप्त करें"
2884
 
2885
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:59
2886
  msgid "Now, go to"
2887
  msgstr "अब, करने के लिए जाओ"
2888
 
2889
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:59
2890
  msgid "Access Token Tool"
2891
  msgstr "टोकन टूल तक पहुंचें"
2892
 
2893
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:59
2894
  msgid "and press"
2895
  msgstr "और दबाएँ"
2896
 
2897
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:59
2898
  msgid "Debug"
2899
  msgstr "डिबग"
2900
 
2901
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:59
2902
  msgid "option at right side for the "
2903
  msgstr "के लिए दाईं ओर विकल्प"
2904
 
2905
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:59
2906
  msgid "User Token"
2907
  msgstr "उपयोगकर्ता टोकन"
2908
 
2909
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:60
2910
  msgid "Now copy the"
2911
  msgstr "अब कॉपी करें"
2912
 
2913
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:60
2914
  msgid "Access Token"
2915
  msgstr "एक्सेस टोकन"
2916
 
2917
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:60
2918
  msgid ""
2919
  "and paste it in the above field and\n"
2920
  " click on"
2921
  msgstr "और इसे उपरोक्त क्षेत्र में पेस्ट करें और पर क्लिक करें"
2922
 
2923
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:61
2924
  msgid "save"
2925
  msgstr " सहेजें "
2926
 
2927
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:64
2928
  msgid ""
2929
  "According to the new updates of\n"
2930
  " Facebook API it will expires after every 60 days. So to "
2934
  "फेसबुक एपीआई के नए अपडेट के अनुसार यह हर 60 दिनों के बाद समाप्त हो जाएगा। तो किसी भी मुद्दे से बचने के लिए इसे 60 "
2935
  "दिनों से पहले फिर से अपडेट करें"
2936
 
2937
+ #: view/soc_sha/share_cnt/mo_openid_shrcnt.php:100
2938
  msgid "Share Counts"
2939
  msgstr "शेयर गणना सक्षम करें"
2940
 
3044
  msgid "Social Sharing Shortcode"
3045
  msgstr "डिफ़ॉल्ट सामाजिक लॉगिन शोर्ट"
3046
 
3047
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:16
3048
  msgid "Select Social Apps"
3049
  msgstr "सोशल एप्स का चयन करें"
3050
 
3051
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:18
3052
  msgid "Select applications to enable social sharing"
3053
  msgstr "सामाजिक साझाकरण सक्षम करने के लिए एप्लिकेशन का चयन करें"
3054
 
3055
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:26
3056
  msgid "Facebook"
3057
  msgstr "फेसबुक"
3058
 
3059
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:34
3060
  msgid "Twitter"
3061
  msgstr "ट्विटर"
3062
 
3063
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:45
3064
  msgid "Google"
3065
  msgstr "गूगल"
3066
 
3067
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:59
3068
  msgid "Vkontakte"
3069
  msgstr "व्हिक्टकटे"
3070
 
3071
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:72
3072
  msgid "Tumblr"
3073
  msgstr "टंबलर"
3074
 
3075
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:89
3076
  msgid "StumbleUpon"
3077
  msgstr "स्टंबलउपॉन "
3078
 
3079
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:103
3080
  msgid "LinkedIn"
3081
  msgstr "लिंक्डइन"
3082
 
3083
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:132
3084
  msgid "Pinterest"
3085
  msgstr "पिनटेरेस्ट"
3086
 
3087
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:146
3088
  msgid "Pocket"
3089
  msgstr "पॉकेट"
3090
 
3091
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:163
3092
  msgid "Digg"
3093
  msgstr "डिग"
3094
 
3095
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:184
 
 
 
 
 
 
 
 
3096
  msgid "Print"
3097
  msgstr "प्रिंट "
3098
 
3099
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:195
3100
  msgid "Whatsapp"
3101
  msgstr "व्हाट्सएप"
3102
 
3103
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:207
3104
+ msgid "Amazon_wishlist"
3105
+ msgstr ""
3106
+
3107
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:220
3108
+ msgid "Telegram"
3109
+ msgstr ""
3110
+
3111
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:231
3112
+ msgid "Line"
3113
+ msgstr ""
3114
+
3115
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:242
3116
+ msgid "Yahoo"
3117
+ msgstr ""
3118
+
3119
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:253
3120
+ msgid "Renren"
3121
+ msgstr ""
3122
+
3123
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:264
3124
+ msgid "Buffer"
3125
+ msgstr ""
3126
+
3127
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:275
3128
+ msgid "Instapaper"
3129
+ msgstr ""
3130
+
3131
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:286
3132
+ msgid "Mewe"
3133
+ msgstr ""
3134
+
3135
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:297
3136
+ msgid "Livejournal"
3137
+ msgstr ""
3138
+
3139
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:308
3140
+ msgid "Mix"
3141
+ msgstr ""
3142
+
3143
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:319
3144
+ #, fuzzy
3145
+ #| msgid "Email"
3146
+ msgid "Aol_mail"
3147
+ msgstr "मेल "
3148
+
3149
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:332
3150
+ msgid "Qzone"
3151
+ msgstr ""
3152
+
3153
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:343
3154
+ msgid "Gmail"
3155
+ msgstr "मेल "
3156
+
3157
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:354
3158
+ msgid "Typepad_post"
3159
+ msgstr ""
3160
+
3161
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:365
3162
+ msgid "Fark"
3163
+ msgstr ""
3164
+
3165
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:376
3166
+ msgid "Bookmark"
3167
+ msgstr ""
3168
+
3169
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:389
3170
+ msgid "Fintel"
3171
+ msgstr ""
3172
+
3173
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:400
3174
+ msgid "Mendeley"
3175
+ msgstr ""
3176
+
3177
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:411
3178
+ msgid "Slashdot"
3179
+ msgstr ""
3180
+
3181
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:423
3182
+ msgid "Wanelo"
3183
+ msgstr ""
3184
+
3185
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:434
3186
+ msgid "Classroom"
3187
+ msgstr ""
3188
+
3189
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:447
3190
+ msgid "Yummly"
3191
+ msgstr ""
3192
+
3193
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:458
3194
+ msgid "Hacker_news"
3195
+ msgstr ""
3196
+
3197
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:469
3198
+ msgid "Kakao"
3199
+ msgstr ""
3200
+
3201
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:480
3202
+ msgid "Plurk"
3203
+ msgstr ""
3204
+
3205
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:491
3206
+ msgid "Trello"
3207
+ msgstr ""
3208
+
3209
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:504
3210
+ msgid "Wykop"
3211
+ msgstr ""
3212
+
3213
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:515
3214
+ msgid "Weibo"
3215
+ msgstr ""
3216
+
3217
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:537
3218
  msgid "No apps selected"
3219
  msgstr "कोई एप्लिकेशन नहीं चुना गया"
3220
 
3221
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:845
3222
  msgid ""
3223
  "Custom background: This will\n"
3224
  " change the background color of sharing icons"
3225
  msgstr "कस्टम पृष्ठभूमि: यह लॉगिन आइकन की पृष्ठभूमि का रंग बदल देगा।"
3226
 
3227
+ #: view/soc_sha/soc_apps/mo_openid_sharing.php:847
3228
  msgid "No background: This will change the font color of icons without background"
3229
  msgstr "कोई पृष्ठभूमि नहीं: यह बिना पृष्ठभूमि के आइकन के फ़ॉन्ट रंग को बदल देगा"
3230
+
3231
+ #: view/soc_sha/soc_med_cust/mo_openid_social_media_cust.php:5
3232
+ msgid "Social Customize Icons"
3233
+ msgstr "सामाजिक टिप्पणियाँ"
3234
+
3235
+ #: view/soc_sha/soc_med_cust/mo_openid_social_media_cust.php:25
3236
+ msgid "<b> Unlock this feature if you want to setup your own customize social sharing app</b>"
3237
+ msgstr ""
3238
+
3239
+ #: view/soc_sha/soc_med_cust/mo_openid_social_media_cust.php:55
3240
+ msgid "Delete"
3241
+ msgstr ""
3242
+
3243
+ #: view/soc_sha/soc_med_ser/mo_openid_social_media_services.php:4
3244
+ #, fuzzy
3245
+ #| msgid "Social Login Shortcodes"
3246
+ msgid "Social Media Service"
3247
+ msgstr "डिफ़ॉल्ट सामाजिक लॉगिन शोर्ट"
3248
+
3249
+ #: view/soc_sha/soc_med_ser/mo_openid_social_media_services.php:13
3250
+ msgid ""
3251
+ "Enable this feature to users will get option for like, recommend and pin your website page on "
3252
+ "facebook and pinterest"
3253
+ msgstr ""
3254
+
3255
+ #: view/soc_sha/soc_med_ser/mo_openid_social_media_services.php:26
3256
+ msgid "Enable this feature to to give user an option to E-amil subcribe on your website."
3257
+ msgstr ""
3258
+
3259
+ #: view/soc_sha/twitter_btn/mo_twitter_btn.php:14
3260
+ msgid "Enable Twitter Follow Button"
3261
+ msgstr ""
3262
+
3263
+ #~ msgid "Share counts are supported for Facebook, Vkontakte, Stumble Upon and Pinterest"
3264
+ #~ msgstr "फेसबुक, व्हिक्टकटे, स्टम्ब्ले अपॉन और पिनटेरेस्ट के लिए शेयर मायने रखता है"
3265
+
3266
+ #~ msgid "Delicious"
3267
+ #~ msgstr "डिलीशियस"
3268
+
3269
+ #~ msgid "Odnoklassniki"
3270
+ #~ msgstr "ओन्नोक्लास्निकी"
miniorange_openid_sso_settings.php CHANGED
@@ -4,12 +4,12 @@
4
  * Plugin Name: Social Login, Social Sharing by miniOrange
5
  * Plugin URI: https://www.miniorange.com
6
  * Description: Allow your users to login, comment and share with Facebook, Google, Apple, Twitter, LinkedIn etc using customizable buttons.
7
- * Version: 7.3.10
8
  * Author: miniOrange
9
  * License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
10
  */
11
 
12
- define('MO_OPENID_SOCIAL_LOGIN_VERSION', '7.3.10');
13
  define('plugin_url', plugin_dir_url(__FILE__) . "includes/images/icons/");
14
  define('MOSL_PLUGIN_DIR',str_replace('/','\\',plugin_dir_path(__FILE__)));
15
  require('miniorange_openid_sso_settings_page.php');
@@ -141,7 +141,7 @@ class miniorange_openid_sso_settings
141
  add_option( 'mo_openid_share_widget_customize_text_color', '000000');
142
  add_option( 'mo_openid_share_widget_customize_text', 'Share with:' );
143
  add_option( 'mo_openid_share_email_subject','I wanted you to see this site' );
144
- add_option('share_app','facebook#twitter#google#vkontakte#tumblr#stumble#linkedin#reddit#pinterest#pocket#digg#delicious#odnoklassniki#mail#print#whatsapp');
145
  add_option( 'mo_openid_popup_window', '0');
146
  add_action('mo_openid_registration_redirect','1');
147
  add_option('mo_sharing_icon_custom_size','35');
@@ -250,7 +250,8 @@ Thank you.';
250
  }
251
 
252
  function mo_openid_plugin_settings_script() {
253
- wp_enqueue_script( 'mo_openid_admin_settings_jquery_script', plugins_url('includes/js/config-jquery.js', __FILE__ ));
 
254
  wp_enqueue_script( 'mo_openid_admin_settings_jquery1_script', plugins_url('includes/js/config-jquery-ui.js', __FILE__ ));
255
  wp_enqueue_script( 'mo_openid_admin_settings_phone_script', plugins_url('includes/js/phone.js', __FILE__ ));
256
  wp_enqueue_script( 'mo_openid_admin_settings_color_script', plugins_url('includes/jscolor/jscolor.js', __FILE__ ));
4
  * Plugin Name: Social Login, Social Sharing by miniOrange
5
  * Plugin URI: https://www.miniorange.com
6
  * Description: Allow your users to login, comment and share with Facebook, Google, Apple, Twitter, LinkedIn etc using customizable buttons.
7
+ * Version: 7.3.11
8
  * Author: miniOrange
9
  * License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
10
  */
11
 
12
+ define('MO_OPENID_SOCIAL_LOGIN_VERSION', '7.3.11');
13
  define('plugin_url', plugin_dir_url(__FILE__) . "includes/images/icons/");
14
  define('MOSL_PLUGIN_DIR',str_replace('/','\\',plugin_dir_path(__FILE__)));
15
  require('miniorange_openid_sso_settings_page.php');
141
  add_option( 'mo_openid_share_widget_customize_text_color', '000000');
142
  add_option( 'mo_openid_share_widget_customize_text', 'Share with:' );
143
  add_option( 'mo_openid_share_email_subject','I wanted you to see this site' );
144
+ add_option('share_app','facebook#twitter#google#vkontakte#tumblr#stumble#linkedin#reddit#pinterest#pocket#digg#mail#print#whatsapp');
145
  add_option( 'mo_openid_popup_window', '0');
146
  add_action('mo_openid_registration_redirect','1');
147
  add_option('mo_sharing_icon_custom_size','35');
250
  }
251
 
252
  function mo_openid_plugin_settings_script() {
253
+ if(strpos(get_current_screen()->id, 'miniorange-social-login-sharing_page') === false) return;
254
+ wp_enqueue_script( 'mo_openid_admin_settings_jquery_script', plugins_url('includes/js/social/config-jquery.js', __FILE__ ));
255
  wp_enqueue_script( 'mo_openid_admin_settings_jquery1_script', plugins_url('includes/js/config-jquery-ui.js', __FILE__ ));
256
  wp_enqueue_script( 'mo_openid_admin_settings_phone_script', plugins_url('includes/js/phone.js', __FILE__ ));
257
  wp_enqueue_script( 'mo_openid_admin_settings_color_script', plugins_url('includes/jscolor/jscolor.js', __FILE__ ));
miniorange_openid_sso_settings_page.php CHANGED
@@ -67,7 +67,7 @@ function mo_register_openid() {
67
  <td> <a id="faq" style="margin-top: 23px" class="button" <?php echo $active_tab == 'faq' ? 'nav-tab-active' : ''; ?> href="<?php echo add_query_arg( array('tab' => 'faq'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('FAQs');?></a></td>
68
  <td> <a id="forum" style="margin-top: 23px" class="button" <?php echo $active_tab == 'forum' ? 'nav-tab-active' : ''; ?>" href="https://wordpress.org/support/plugin/miniorange-login-openid/" target="_blank"><?php echo mo_sl('Forum');?></a></td>
69
  <td> <a id="addon" style="margin-top: 23px;background: #FFA335;border-color: #FFA335;color: white;" class="button" <?php echo $active_tab == 'add_on' ? 'nav-tab-active' : ''; ?>" href="<?php echo add_query_arg( array('tab' => 'add_on'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('Add On');?></a></td>
70
- <td> <a id="pricing" style="margin-top: 23px;background: #FFA335;border-color: #FFA335;color: white;" class="button"<?php echo $active_tab == 'licensing_plans' ? 'nav-tab-active' : ''; ?>" href="<?php echo add_query_arg( array('tab' => 'licensing_plans'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('Upgrade Now');?></a></td>
71
  <td> <a id="whats_new" style="margin-top: 23px;background: #62B772;border-color: #62B772;color: white;" class="button"<?php echo $active_tab == 'whats_new' ? 'nav-tab-active' : ''; ?>" href="<?php echo add_query_arg( array('tab' => 'whats_new'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl("What's new in miniOrange");?></a></td>
72
  <td>
73
  <a id="mo_openid_rateus_modal" onclick="asdf(this)" style="margin-top: 23px" class="button" ><?php echo mo_sl('Rate us');?></a>
67
  <td> <a id="faq" style="margin-top: 23px" class="button" <?php echo $active_tab == 'faq' ? 'nav-tab-active' : ''; ?> href="<?php echo add_query_arg( array('tab' => 'faq'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('FAQs');?></a></td>
68
  <td> <a id="forum" style="margin-top: 23px" class="button" <?php echo $active_tab == 'forum' ? 'nav-tab-active' : ''; ?>" href="https://wordpress.org/support/plugin/miniorange-login-openid/" target="_blank"><?php echo mo_sl('Forum');?></a></td>
69
  <td> <a id="addon" style="margin-top: 23px;background: #FFA335;border-color: #FFA335;color: white;" class="button" <?php echo $active_tab == 'add_on' ? 'nav-tab-active' : ''; ?>" href="<?php echo add_query_arg( array('tab' => 'add_on'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('Add On');?></a></td>
70
+ <td> <a id="pricing" style="margin-top: 23px;background: #FFA335;border-color: #FFA335;color: white;" class="button"<?php echo $active_tab == 'licensing_plans' ? 'nav-tab-active' : ''; ?>" href="<?php echo add_query_arg( array('tab' => 'licensing_plans'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('Licensing Plan');?></a></td>
71
  <td> <a id="whats_new" style="margin-top: 23px;background: #62B772;border-color: #62B772;color: white;" class="button"<?php echo $active_tab == 'whats_new' ? 'nav-tab-active' : ''; ?>" href="<?php echo add_query_arg( array('tab' => 'whats_new'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl("What's new in miniOrange");?></a></td>
72
  <td>
73
  <a id="mo_openid_rateus_modal" onclick="asdf(this)" style="margin-top: 23px" class="button" ><?php echo mo_sl('Rate us');?></a>
mo-openid-social-login-functions.php CHANGED
@@ -179,28 +179,6 @@ function mo_openid_process_user_details($appuserdetails,$appname)
179
  $user_name = $splitemail[0];
180
  }
181
 
182
- $extended_attr = array(
183
- 'location_city' => $location_city,
184
- 'location_country' => $location_country,
185
- 'about_me' => $about_me,
186
- 'company_name' => $company_name,
187
- 'age' => $age,
188
- 'gender' => $gender,
189
- 'birth_date' => $birth_date,
190
- 'friend_list' => $friend_nos,
191
- 'website' => $website,
192
- 'field_of_study' => $field_of_study,
193
- 'university_name' => $university_name,
194
- 'places_lived' => $places_lived,
195
- 'position' => $position,
196
- 'relationship' => $relationship,
197
- 'contact_no' => $contact_no,
198
- 'industry' => $industry,
199
- 'head_line' => $head_line,
200
- 'NA' => $NA
201
- );
202
-
203
- mo_openid_save_extended_attributes_in_session($extended_attr);
204
 
205
  //Set User Full Name
206
  if (isset($first_name) && isset($last_name)) {
@@ -360,6 +338,8 @@ function mo_create_new_user($user_val){
360
  );
361
  $user_id = wp_insert_user( $userdata);
362
 
 
 
363
  if(is_wp_error( $user_id )) {
364
  print_r($user_id);
365
  wp_die("Error Code 5: ".get_option('mo_registration_error_message'));
@@ -398,27 +378,6 @@ function mo_openid_customize_logo(){
398
  return $logo;
399
  }
400
 
401
- function mo_openid_save_extended_attributes_in_session($extended_attr){
402
- mo_openid_start_session();
403
- $_SESSION['location_city'] = isset($extended_attr['location_city'])?$extended_attr['location_city']:'';
404
- $_SESSION['location_country'] = isset($extended_attr['$location_country'])?$extended_attr['location_country']:'';
405
- $_SESSION['about_me'] = isset($extended_attr['about_me'])?$extended_attr['about_me']:'';
406
- $_SESSION['company_name'] = isset($extended_attr['company_name'])?$extended_attr['company_name']:'';
407
- $_SESSION['age'] = isset($extended_attr['age'])?$extended_attr['age']:'';
408
- $_SESSION['gender'] = isset($extended_attr['gender'])?$extended_attr['gender']:'';
409
- $_SESSION['birth_date'] = isset($extended_attr['birth_date'])?$extended_attr['birth_date']:'';
410
- $_SESSION['friend_list'] = isset($extended_attr['friend_nos'])?$extended_attr['friend_list']:'';
411
- $_SESSION['website'] = isset($extended_attr['website'])?$extended_attr['website']:'';
412
- $_SESSION['field_of_study'] = isset($extended_attr['field_of_study'])?$extended_attr['field_of_study']:'';
413
- $_SESSION['university_name'] = isset($extended_attr['university_name'])?$extended_attr['university_name']:'';
414
- $_SESSION['places_lived'] = isset($extended_attr['places_lived'])?$extended_attr['places_lived']:'';
415
- $_SESSION['relationship'] = isset($extended_attr['relationship'])?$extended_attr['relationship']:'';
416
- $_SESSION['contact_no'] = isset($extended_attr['contact_no'])?$extended_attr['contact_no']:'';
417
- $_SESSION['industry'] = isset($extended_attr['industry'])?$extended_attr['industry']:'';
418
- $_SESSION['head_line'] = isset($extended_attr['head_line'])?$extended_attr['head_line']:'';
419
- $_SESSION['position'] = isset($extended_attr['position'])?$extended_attr['position']:'';
420
- $_SESSION['NA'] = 'NA';
421
- }
422
 
423
  function sso_field_mapping_add_on($user_val)
424
  {
179
  $user_name = $splitemail[0];
180
  }
181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
 
183
  //Set User Full Name
184
  if (isset($first_name) && isset($last_name)) {
338
  );
339
  $user_id = wp_insert_user( $userdata);
340
 
341
+
342
+
343
  if(is_wp_error( $user_id )) {
344
  print_r($user_id);
345
  wp_die("Error Code 5: ".get_option('mo_registration_error_message'));
378
  return $logo;
379
  }
380
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
381
 
382
  function sso_field_mapping_add_on($user_val)
383
  {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.miniorange.com
4
  Tags: social login, facebook login, google login, twitter login, Vkontakte login, Woocommerce, social, facebook, twitter, google, login, google, social connect, social network login, social plugin, Vkontakte, LinkedIn
5
  Requires at least: 2.0.2
6
  Tested up to: 5.4
7
- Stable tag: 7.3.10
8
  License: GPLv2 or later
9
  License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
10
 
@@ -36,7 +36,7 @@ Social Plugin enables social login, social sharing, social comments using social
36
  * **Support** using email and in-plugin support form.
37
 
38
  = Free Social Sharing & Social Comments Features =
39
- * Share with social applications - Facebook, Twitter, Google+, Pinterest, Reddit, Vkontakte, Tumblr, StumbleUpon, LinkedIn, Pocket, Digg, Delicious, Odnoklassniki, Email, Print, Whatsapp
40
  * **Icon Customizations** - customize shape, theme, space & size of social sharing icons.
41
  * **Preview is available for Social Sharing icons**
42
  * Add Social Comments using Facebook.
@@ -86,7 +86,7 @@ Social Login includes Facebook, Twitter, Google, Vkontakte, LinkedIn, Instagram,
86
  One-click social login to your WordPress site using social login applications like Google, Twitter, Facebook. This means, if your user is logged in to Google, user can comment on any blog or site by simply clicking the `google icon` - no username or password is explicitly required! Simply enable Social Login, **no setup of social media application** is required and you are done.
87
 
88
  = Social Sharing =
89
- Allow anyone to easily share your website content using their favorite social sharing applications. Social Sharing applications include Facebook, Twitter, Google+, Pinterest, Reddit, Vkontakte, Tumblr, StumbleUpon, LinkedIn, Pocket, Digg, Delicious, Odnoklassniki, Email, Print, Whatsapp and more. Customize your social sharing buttons to suit to your website's theme. Social sharing on homepage includes sharing with content or excerpt.
90
 
91
  See the <a href="https://wordpress.org/plugins/miniorange-login-openid/screenshots/">Screenshots</a> section for visuals on social sharing.
92
 
@@ -184,6 +184,13 @@ Please email us at info@miniorange.com. You can also submit your query from the
184
  12. Social Sharing icons without background.
185
 
186
  ==Changelog==
 
 
 
 
 
 
 
187
  = 7.3.10 =
188
  * Facebook API updated.
189
  * Minor UI Changes.
@@ -738,6 +745,13 @@ SECURITY FIXES
738
  * First version of Social Login, Social Sharing plugin.
739
 
740
  == Upgrade Notice ==
 
 
 
 
 
 
 
741
  = 7.3.10 =
742
  * Facebook API updated.
743
  * Minor UI Changes.
4
  Tags: social login, facebook login, google login, twitter login, Vkontakte login, Woocommerce, social, facebook, twitter, google, login, google, social connect, social network login, social plugin, Vkontakte, LinkedIn
5
  Requires at least: 2.0.2
6
  Tested up to: 5.4
7
+ Stable tag: 7.3.11
8
  License: GPLv2 or later
9
  License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
10
 
36
  * **Support** using email and in-plugin support form.
37
 
38
  = Free Social Sharing & Social Comments Features =
39
+ * Share with social applications - Facebook, Twitter, Google+, Pinterest, Reddit, Vkontakte, Tumblr, StumbleUpon, LinkedIn, Pocket, Digg, Email, Print, Whatsapp
40
  * **Icon Customizations** - customize shape, theme, space & size of social sharing icons.
41
  * **Preview is available for Social Sharing icons**
42
  * Add Social Comments using Facebook.
86
  One-click social login to your WordPress site using social login applications like Google, Twitter, Facebook. This means, if your user is logged in to Google, user can comment on any blog or site by simply clicking the `google icon` - no username or password is explicitly required! Simply enable Social Login, **no setup of social media application** is required and you are done.
87
 
88
  = Social Sharing =
89
+ Allow anyone to easily share your website content using their favorite social sharing applications. Social Sharing applications include Facebook, Twitter, Google+, Pinterest, Reddit, Vkontakte, Tumblr, StumbleUpon, LinkedIn, Pocket, Digg, Email, Print, Whatsapp and more. Customize your social sharing buttons to suit to your website's theme. Social sharing on homepage includes sharing with content or excerpt.
90
 
91
  See the <a href="https://wordpress.org/plugins/miniorange-login-openid/screenshots/">Screenshots</a> section for visuals on social sharing.
92
 
184
  12. Social Sharing icons without background.
185
 
186
  ==Changelog==
187
+
188
+ = 7.3.11 =
189
+ * Updated Facebook Api for Profile picture updated.
190
+ * Instructions updated for Facebook, Google, Linkedin, Twitter, Windows Live.
191
+ * Conflict with Woocommerce quick edit resolved.
192
+ * Minor UI Changes.
193
+
194
  = 7.3.10 =
195
  * Facebook API updated.
196
  * Minor UI Changes.
745
  * First version of Social Login, Social Sharing plugin.
746
 
747
  == Upgrade Notice ==
748
+
749
+ = 7.3.11 =
750
+ * Updated Facebook Api for Profile picture updated.
751
+ * Instructions updated for Facebook, Google, Linkedin, Twitter, Windows Live.
752
+ * Conflict with Woocommerce quick edit resolved.
753
+ * Minor UI Changes.
754
+
755
  = 7.3.10 =
756
  * Facebook API updated.
757
  * Minor UI Changes.
social_apps/facebook.php CHANGED
@@ -8,7 +8,7 @@ class mo_facebook
8
  public $instructions;
9
  public function __construct() {
10
  $this->site_url = get_option( 'siteurl' );
11
- $this->instructions="Go to Facebook developers console <a href=\"https://developers.facebook.com/apps/\" target=\"_blank\">https://developers.facebook.com/apps/</a>. Login with your facebook developer account.##Click on Create a New App/Add new App button.##Enter <b>Display Name</b> and click on Create App ID.##Click on <b>Products</b> from left pane of the page and select <b>Facebook Login</b> and click on <b>Set Up</b> button.##Click on <b>Web</b>. Enter <b><code id='0'>".get_option("siteurl")."</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#0', '#shortcode_url_copy')\"><span id=\"shortcode_url_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> into <b>Site URL</b> than click on <b> Save</b>.##Goto <b>Settings -> Basic</b> from left pane of the page, Enter <b><code id='1'>".$_SERVER['HTTP_HOST']."</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#1', '#shortcode_url1_copy')\"><span id=\"shortcode_url1_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> in <b>App Domain</b>, your privacy policy URL in <b>Privacy Policy URL</b> and select <b>Category</b> of your website. Then click on <b>Save Changes</b>.##From the left pane, select <b>Facebook Login -> Settings</b>.##Under Client OAuth Settings section, Enter <b><code id='2'>".mo_get_permalink('facebook')."</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#2', '#shortcode_url2_copy')\"><span id=\"shortcode_url2_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> in <b>Valid OAuth Redirect URIs</b> and click on <b>Save Changes</b> button.##Change your app status from In Development to Live by clicking on OFF (sliding button) beside Status option of the top right corner. Then, click on Confirm button.##Go to Settings > Basic. Paste your <b>App ID</b> and <b>App Secret</b> provided by Facebook into the fields above.##Input <b> email, public_profile </b>as scope.##If you want to access the <b>user_birthday, user_hometown, user_location</b> of a Facebook user, you need to send your app for review to Facebook. For submitting an app for review, click <a target=\"_blank\" href=\"https://developers.facebook.com/docs/facebook-login/review/how-to-submit \">here</a>. After your app is reviewed, you can add the scopes you have sent for review in the scope above. If your app is not approved or is in the process of getting approved, let the scope be <b>email, public_profile</b>##Click on the <b>Save settings</b> button.##Go to Social Login tab to configure the display as well as other login settings.";
12
  }
13
 
14
  function mo_openid_get_app_code()
@@ -38,7 +38,7 @@ class mo_facebook
38
  $access_token = isset( $access_token_json_output['access_token']) ? $access_token_json_output['access_token'] : '';
39
  mo_openid_start_session();
40
  $px = get_option('facebook_profile_pic_resolution')?get_option('facebook_profile_pic_resolution'):'180';
41
- $profile_url ='https://graph.facebook.com/me?fields=id,name,about,link,email,first_name,last_name&access_token=' .$access_token;
42
  $profile_json_output = mo_openid_get_social_app_data($access_token,$profile_url,'facebook');
43
 
44
  //Test Configuration
8
  public $instructions;
9
  public function __construct() {
10
  $this->site_url = get_option( 'siteurl' );
11
+ $this->instructions="Go to Facebook developers console <a href=\"https://developers.facebook.com/apps/\" target=\"_blank\">https://developers.facebook.com/apps/</a>. Login with your facebook developer account.##Click on Create a New App/Add new App.##Select the type of app you want to create and enter <b>App Display Name</b>, <b>App Contact Email</b>.##Click on <b>Create App ID</b> button and complete the Security Check. ##Select <b>Facebook Login</b> on products page and click on <b>Set Up</b> button. ##Click on <b>Web</b>. Enter <b><code id='0'>".get_option("siteurl")."</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#0', '#shortcode_url_copy')\"><span id=\"shortcode_url_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> into <b>Site URL</b> than click on <b>Save</b>. ##Click on settings on left side menu and select basics option. ##Enter <b><code id='100'>".$_SERVER['HTTP_HOST']."</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#100', '#shortcode_url3_copy')\"><span id=\"shortcode_url3_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> in <b>App Domain</b>, your privacy policy URL in <b>Privacy Policy URL</b> and select <b>Category</b> of your website. Then click on <b>Save Changes</b>. ##Click on <b>Facebook Login</b> on the left side panel and select <b>Settings</b> option. ##Scroll down and add the following URL to the <b>Valid OAuth redirect URIs</b> field <b><code id='2'>".mo_get_permalink('facebook')."</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#2', '#shortcode_url2_copy')\"><span id=\"shortcode_url2_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> and click on <b>Save Changes</b> button. ##Change your app status to <b>In Development</b> by clicking on the toggle button. ##Go to Settings > Basic. Paste your <b>App ID</b> and <b>App Secret</b> provided by Facebook into the fields above.##Input <b> email, public_profile </b>as scope.##If you want to access the <b>user_birthday, user_hometown, user_location</b> of a Facebook user, you need to send your app for review to Facebook. For submitting an app for review, click <a target=\"_blank\" href=\"https://developers.facebook.com/docs/facebook-login/review/how-to-submit \">here</a>. After your app is reviewed, you can add the scopes you have sent for review in the scope above. If your app is not approved or is in the process of getting approved, let the scope be <b>email, public_profile</b>##Click on the <b>Save settings</b> button.##Go to Social Login tab to configure the display as well as other login settings.";
12
  }
13
 
14
  function mo_openid_get_app_code()
38
  $access_token = isset( $access_token_json_output['access_token']) ? $access_token_json_output['access_token'] : '';
39
  mo_openid_start_session();
40
  $px = get_option('facebook_profile_pic_resolution')?get_option('facebook_profile_pic_resolution'):'180';
41
+ $profile_url ='https://graph.facebook.com/me?fields=id,name,about,link,email,first_name,last_name,picture.width(720).height(720)&access_token=' .$access_token;
42
  $profile_json_output = mo_openid_get_social_app_data($access_token,$profile_url,'facebook');
43
 
44
  //Test Configuration
social_apps/google.php CHANGED
@@ -9,7 +9,7 @@ class mo_google
9
  public $instructions;
10
  public function __construct() {
11
  $this->site_url = get_option( 'siteurl' );
12
- $this->instructions="Visit the Google website for developers <a href=\"https://console.developers.google.com/project/\" target=\"_blank\">console.developers.google.com</a>.##From the project drop-down, choose <b>Create a new project</b>, enter a name for the project, and optionally, edit the provided Project ID. Click <b>Create</b>.##Click Navigation menu in the left-upper corner and go to <b>APIs & Services</b> -> <b>Credentials</b>##On the Credentials page, select <b>Create credentials</b>, then select <b>OAuth client ID</b>.##You may be prompted to set a product name on the Consent screen. If so, click <b>Configure consent screen</b>, supply the requested information, and click Save to return to the Credentials screen.##Select <b>Web Application</b> for the Application Type. Follow the instructions to enter JavaScript origins, redirect URIs, or both. provide <b><code id='3'>".mo_get_permalink('google')."</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#3', '#shortcode_url_copy')\"><span id=\"shortcode_url_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> for the Redirect URI.##Click <b>Create</b>.##On the page that appears, copy the <b>client ID</b> and <b>client secret</b> to your clipboard, as you will need them to configure above.##Enable the <b>Google+ API</b>. In the Dashboard menu, click on <b>ENABLE APIS AND SERVICES</b>.##Type Google+ in search box, select Google+ API and click on <b>Enable</b>. </b>##Go to Social Login tab and configure the icons.";
13
  }
14
 
15
  function mo_openid_get_app_code()
@@ -76,4 +76,4 @@ class mo_google
76
  );
77
  return $appuserdetails;
78
  }
79
- }
9
  public $instructions;
10
  public function __construct() {
11
  $this->site_url = get_option( 'siteurl' );
12
+ $this->instructions="Visit the Google website for developers <a href=\"https://console.developers.google.com/project/\" target=\"_blank\">console.developers.google.com</a>.##From the project drop-down, choose <b>Create a new project</b>, enter a name for the project, and optionally, edit the provided Project ID. Click <b>Create</b>.##Click Navigation menu in the left-upper corner and go to <b>APIs & Services</b> -> <b>Credentials</b>##On the Credentials page, select <b>Create credentials</b>, then select <b>OAuth client ID</b>.##You may be prompted to set a product name on the Consent screen. If so, click <b>Configure consent screen</b>. ##In OAuth consent screen tab Enter <b>Application name</b> and <b>Authorized domains</b> as <b><code id='100'>".$_SERVER['HTTP_HOST']."</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#100', '#shortcode_url3_copy')\"><span id=\"shortcode_url3_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b>. ##Give an valid URL for homepage, Privacy policy, terms of Services field. ##Supply the requested information, and click Save to return to the Credentials screen. ##On Create OAuth client ID tab select <b>Web Application</b> for the Application Type. Follow the instructions to Enter Application name and Redirect URIs, as <b><code id='3'>".mo_get_permalink('google')."</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#3', '#shortcode_url_copy')\"><span id=\"shortcode_url_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> then click <b>Create</b>.##On the page that appears, copy the <b>client ID</b> and <b>client secret</b> to your clipboard, as you will need them to configure above.##Enable the <b>Google+ API</b>. In the Dashboard menu, click on <b>ENABLE APIS AND SERVICES</b>.##Type Google+ in search box, select Google+ API and click on <b>Enable</b>. </b>##Go to Social Login tab and configure the icons.";
13
  }
14
 
15
  function mo_openid_get_app_code()
76
  );
77
  return $appuserdetails;
78
  }
79
+ }
social_apps/vkontakte.php CHANGED
@@ -13,7 +13,7 @@ class mo_vkontakte
13
  {
14
  if (get_option('permalink_structure') !== "") {
15
  $this->site_url = get_option('siteurl');
16
- $this->instructions = "Go to <a href=\"https://new.vk.com/dev\" target=\"_blank\">https://new.vk.com/dev</a> and sign in with your vkontakte account.##Go to <strong>My Apps</strong> and click on <strong>Create an Application</strong>.##Provide a name for your app.##Select <strong>Website</strong> as the <strong>Category</strong>. Select <b><code id='4'>" . get_option('siteurl') . "</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#4', '#shortcode_url_copy')\"><span id=\"shortcode_url_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> as <strong>Site address</strong>##Enter the <b><code id='5'>" . str_replace('https://', '', get_option("siteurl")) . "</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#5', '#shortcode_url1_copy')\"><span id=\"shortcode_url1_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> as Base domain.##Click on <strong>Connect Site</strong> to create the app.##You will be required to confirm your request with a code send via SMS.##Once the application is created, select <strong>Settings</strong> in the left nav.##Enter the <b><code id='6'>" . get_social_app_redirect_uri('vkontakte') . "</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#6', '#shortcode_url2_copy')\"><span id=\"shortcode_url2_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> as <b>Authorized redirect URI.</b>##Click on Save.##From the top of the same page, copy the <b>Application ID</b> (This is your <b>Client ID </b>) and <b>Secure Key</b> (This is your <b>Client Secret</b>). Paste them into the fields above.##Click on the Save settings button.##Go to Social Login tab to configure the display as well as other login settings.";
17
  }
18
  else{
19
  $this->instructions= "<strong style='color: red;font-weight: bold'><br>You have selected plain permalink and vkontakte does not support it.</strong><br><br> Please change the permalink to continue further.Follow the steps given below:<br>1. Go to settings from the left panel and select the permalinks option.<br>2. Plain permalink is selected ,so please select any other permalink and click on save button.<br> <strong class='mo_openid_note_style' style='color: red;font-weight: bold'> When you will change the permalink ,then you have to re-configure all the custom apps because that will change the redirect URL.</strong>";
13
  {
14
  if (get_option('permalink_structure') !== "") {
15
  $this->site_url = get_option('siteurl');
16
+ $this->instructions = "Go to <a href=\"https://new.vk.com/dev\" target=\"_blank\">https://new.vk.com/dev</a> and sign in with your vkontakte account.##Go to <strong>My Apps</strong> and click on <strong>Create an Application</strong>.##Provide a name for your app in Title field..##Select <strong>Website</strong> as the <strong>Category</strong>. Select <b><code id='4'>" . get_option('siteurl') . "</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#4', '#shortcode_url_copy')\"><span id=\"shortcode_url_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> as <strong>Webite address</strong>##Enter the <b><code id='5'>" . str_replace('https://', '', get_option("siteurl")) . "</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#5', '#shortcode_url1_copy')\"><span id=\"shortcode_url1_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> as Base domain.##Click on <strong>Connect Webite</strong> to create the app.##You will be required to confirm your request with a code received via Call or SMS.##Once the application is created, select <strong>Settings</strong> in the left nav.##Enter the <b><code id='6'>" . get_social_app_redirect_uri('vkontakte') . "</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#6', '#shortcode_url2_copy')\"><span id=\"shortcode_url2_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> as <b>Authorized redirect URI.</b>##Click on Save.##From the top of the same page, copy the <b>Application ID</b> (This is your <b>Client ID </b>) and <b>Secure Key</b> (This is your <b>Client Secret</b>). Paste them into the fields above.##Click on the Save and Test Configuration button.##Go to Social Login tab to configure the display as well as other login settings.";
17
  }
18
  else{
19
  $this->instructions= "<strong style='color: red;font-weight: bold'><br>You have selected plain permalink and vkontakte does not support it.</strong><br><br> Please change the permalink to continue further.Follow the steps given below:<br>1. Go to settings from the left panel and select the permalinks option.<br>2. Plain permalink is selected ,so please select any other permalink and click on save button.<br> <strong class='mo_openid_note_style' style='color: red;font-weight: bold'> When you will change the permalink ,then you have to re-configure all the custom apps because that will change the redirect URL.</strong>";
social_apps/windowslive.php CHANGED
@@ -12,7 +12,7 @@ class mo_windowslive
12
  {
13
  if (get_option('permalink_structure') !== "") {
14
  $this->site_url = get_option('siteurl');
15
- $this->instructions = "Go to <a href=\"https://apps.dev.microsoft.com/\" target=\"_blank\">https://apps.dev.microsoft.com/</a> and sign in with your windows account.##Click on Add an app in Azure Portal.##Sign in with your Microsoft azure account.##Click on <b>New Registration tab</b>.##Name your new app and select Accounts in any organizational directory as supported accounts types . click on <b>Register</b>.##Click on <strong>Authentication</strong> from left side menu. ##Enter <b><code id='12'>" . mo_get_permalink('windowslive') . "</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#12', '#shortcode_url_copy')\"><span id=\"shortcode_url_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> as Redirect URL.<strong>Copy the Client ID from the Overview tab.</strong>. This is your <b>Client ID </b>.##Go to Certificates and Security tab.##Click on <b>New Client Sceret</b>. Copy your password. This is your <b>Client Secret</b>.##Scroll down to <strong>Advanced Options</strong> and make sure <strong>Live SDK support</strong> is checked.##Click on the Save button.##Copy the client ID and client secret to your clipboard, as you will need them to configure above. ##Click on the Save settings button.##Go to Social Login tab to configure the display as well as other login settings.";
16
  }else{
17
  $this->instructions= "<strong style='color: red;font-weight: bold'><br>You have selected plain permalink and vkontakte doesnot support it.</strong><br><br> Please change the permalink to continue further.Follow the steps given below:<br>1. Go to settings from the left panel and select the permalinks option.<br>2. Plain permalink is selected ,so please select any other permalink and click on save button.<br> <strong class='mo_openid_note_style' style='color: red;font-weight: bold'> When you will change the permalink ,then you have to re-configure the already set up custom apps because that will change the redirect URL.</strong>";
18
  }
12
  {
13
  if (get_option('permalink_structure') !== "") {
14
  $this->site_url = get_option('siteurl');
15
+ $this->instructions = "Go to <a href=\"https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade/\" target=\"_blank\">https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade</a> and sign in with your Microsoft azure account.##Click on <b>New Registration tab</b>.##Name your new app and select Accounts in any organizational directory as supported accounts types . click on <b>Register</b>.##Click on <strong>Authentication</strong> from left side menu. ##Enter <b><code id='12'>" . mo_get_permalink('windowslive') . "</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"mofa mofa-fw mofa-lg mofa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#12', '#shortcode_url_copy')\"><span id=\"shortcode_url_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> as Redirect URL.<strong>Copy the Client ID from the Overview tab.</strong>. This is your <b>Client ID </b>.##Go to Certificates and Security tab.##Click on <b>New Client Sceret</b>. Copy your password. This is your <b>Client Secret</b>.##Scroll down to <strong>Advanced Options</strong> and make sure <strong>Live SDK support</strong> is checked.##Click on the Save button.##Copy the client ID and client secret to your clipboard, as you will need them to configure above. ##Click on the Save settings button.##Go to Social Login tab to configure the display as well as other login settings.";
16
  }else{
17
  $this->instructions= "<strong style='color: red;font-weight: bold'><br>You have selected plain permalink and vkontakte doesnot support it.</strong><br><br> Please change the permalink to continue further.Follow the steps given below:<br>1. Go to settings from the left panel and select the permalinks option.<br>2. Plain permalink is selected ,so please select any other permalink and click on save button.<br> <strong class='mo_openid_note_style' style='color: red;font-weight: bold'> When you will change the permalink ,then you have to re-configure the already set up custom apps because that will change the redirect URL.</strong>";
18
  }
uninstall.php CHANGED
@@ -208,4 +208,15 @@ delete_option('mo_openid_user_activation_date');
208
  delete_option('mo_openid_registration_redirection_enable');
209
  delete_option('mo_openid_relative_register_redirect_url');
210
 
 
 
 
 
 
 
 
 
 
 
 
211
  ?>
208
  delete_option('mo_openid_registration_redirection_enable');
209
  delete_option('mo_openid_relative_register_redirect_url');
210
 
211
+
212
+ delete_option('mo_openid_rating_given');
213
+ delete_option('widget_mo_openid_sharing_hor_wid');
214
+ delete_option('widget_mo_openid_sharing_ver_wid');
215
+ delete_option('mo_openid_user_activation_date1');
216
+ delete_option('mo_disqus_shortname');
217
+ delete_option('mo_openid_user_register_message');
218
+ delete_option('mo_openid_registration_email_content');
219
+ delete_option('mo_openid_tour_new');
220
+ delete_option('mo_openid_register_email_message');
221
+
222
  ?>
view/config_apps/mo_openid_config_apps.php CHANGED
@@ -836,8 +836,16 @@ function mo_openid_show_apps()
836
  jQuery('#mo_openid_register_old_user').hide();
837
  if(application_name == 'facebook' || application_name == 'twitter' || application_name == 'instagram') {
838
  jQuery("#mo_set_pre_config_app").hide();
839
- jQuery("#mo_ssl_notice").text("SSL certificate is required for "+application_name.charAt(0).toUpperCase()+application_name.substr(1)+" custom app");
840
- jQuery("#mo_ssl_notice").show();
 
 
 
 
 
 
 
 
841
  }
842
  else {
843
  jQuery("#mo_set_pre_config_app").show();
836
  jQuery('#mo_openid_register_old_user').hide();
837
  if(application_name == 'facebook' || application_name == 'twitter' || application_name == 'instagram') {
838
  jQuery("#mo_set_pre_config_app").hide();
839
+ if(application_name == 'facebook' || application_name == 'instagram') {
840
+
841
+ jQuery("#mo_ssl_notice").text("SSL certificate is required for " + application_name.charAt(0).toUpperCase() + application_name.substr(1) + " custom app");
842
+ jQuery("#mo_ssl_notice").show();
843
+ }
844
+ }
845
+ else if(application_name == 'linkedin'){
846
+ jQuery("#mo_ssl_notice").text("LinkedIn custom application needs to be verified for the scope permissions.You can also use our pre-configured application where you don't have to create custom application.")
847
+ jQuery("#mo_ssl_notice").show();
848
+
849
  }
850
  else {
851
  jQuery("#mo_set_pre_config_app").show();
view/registration/mo_openid_registration.php CHANGED
@@ -30,7 +30,7 @@ function mo_openid_registration()
30
  <label style="cursor: auto" class="mo_openid_note_style"> <?php echo mo_sl('Use Role Mapping to assign this role to the all users registering through Social Login. According to the role mapped user will be granted role on the website.');?></label>
31
  <label style="cursor: auto" class="mo_openid_note_style">If you want the user to select the role/profile please use our Custom Registration Form Add on.
32
  <?php if (!is_plugin_active('miniorange-login-openid-extra-attributes-addon/miniorange_openid_sso_customization_addon.php')) {?>
33
- <a style="left: 1%; position: relative; text-decoration: none" class="mo-openid-premium" href="<?php echo site_url().'/wp-admin/admin.php?page=mo_openid_settings_addOn&tab=licensing_plans'; ?>"><?php echo mo_sl('PRO');?></a>
34
  <?php } ?>
35
  </label>
36
  </div><br><hr>
@@ -50,7 +50,16 @@ function mo_openid_registration()
50
  <?php checked( get_option('moopenid_social_login_avatar') == 1 );?> /><b style="font-size: 15px;"></b><span class="mo_openid_checkbox_checkmark"></span>
51
  </label>
52
  </div>
53
-
 
 
 
 
 
 
 
 
 
54
 
55
  <br/><hr>
56
  <h3><?php echo mo_sl('Send user activation link over email');?><a style="left: 1%; position: relative; text-decoration: none" class="mo-openid-premium" href="<?php echo add_query_arg( array('tab' => 'licensing_plans'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('PRO');?></a></h3>
@@ -78,8 +87,8 @@ function mo_openid_registration()
78
  <br/>
79
  <label style="cursor: auto"><?php echo mo_sl('Enter Page URLs to Enable Registration:');?></label>
80
  <textarea rows="4" cols="50" class="mo_openid_textfield_css" style="border: 1px solid ;border-color: #0867b2;width: 100%" disabled placeholder="Please enter URLs seperated by semicolon(;)"/></textarea>
81
- <br/><label style="cursor: auto"><?php echo mo_sl('Enter Page URL to Redeirect if user is not allowed to register:');?></label>
82
- <textarea rows="4" cols="50" class="mo_openid_textfield_css" disabled style="border: 1px solid ;border-color: #0867b2;width: 100%"/></textarea>
83
  </label>
84
 
85
  </div>
@@ -91,4 +100,4 @@ function mo_openid_registration()
91
  jQuery('#mo_openid_page_heading').text('<?php echo mo_sl('Registration Options');?>');
92
  </script>
93
  <?php
94
- }
30
  <label style="cursor: auto" class="mo_openid_note_style"> <?php echo mo_sl('Use Role Mapping to assign this role to the all users registering through Social Login. According to the role mapped user will be granted role on the website.');?></label>
31
  <label style="cursor: auto" class="mo_openid_note_style">If you want the user to select the role/profile please use our Custom Registration Form Add on.
32
  <?php if (!is_plugin_active('miniorange-login-openid-extra-attributes-addon/miniorange_openid_sso_customization_addon.php')) {?>
33
+ <a style="left: 1%; position: relative; text-decoration: none" class="mo-openid-premium" href="<?php echo site_url().'/wp-admin/admin.php?page=mo_openid_settings_addOn&tab=licensing_plans'; ?>"><?php echo mo_sl('PRO');?></a>
34
  <?php } ?>
35
  </label>
36
  </div><br><hr>
50
  <?php checked( get_option('moopenid_social_login_avatar') == 1 );?> /><b style="font-size: 15px;"></b><span class="mo_openid_checkbox_checkmark"></span>
51
  </label>
52
  </div>
53
+ <br/><hr>
54
+ <h3><?php echo mo_sl('Admin Disable bar');?><a style="left: 1%; position: relative; text-decoration: none" class="mo-openid-premium" href="<?php echo add_query_arg( array('tab' => 'licensing_plans'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('PRO');?></a></h3>
55
+ <div>
56
+ <input type="checkbox" disabled>Administrator &nbsp;&nbsp;&nbsp;
57
+ <input type="checkbox" disabled>Author &nbsp;&nbsp;&nbsp;
58
+ <input type="checkbox" disabled>Editor &nbsp;&nbsp;&nbsp;
59
+ <input type="checkbox" disabled>Contributor &nbsp;&nbsp;&nbsp;
60
+ <input type="checkbox" disabled>Subscriber &nbsp;&nbsp;&nbsp;
61
+ </div>
62
+ <label style="cursor: auto" class="mo_openid_note_style"><?php echo mo_sl('This feature disables admin bar form selected roles of the users');?>.</label>
63
 
64
  <br/><hr>
65
  <h3><?php echo mo_sl('Send user activation link over email');?><a style="left: 1%; position: relative; text-decoration: none" class="mo-openid-premium" href="<?php echo add_query_arg( array('tab' => 'licensing_plans'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('PRO');?></a></h3>
87
  <br/>
88
  <label style="cursor: auto"><?php echo mo_sl('Enter Page URLs to Enable Registration:');?></label>
89
  <textarea rows="4" cols="50" class="mo_openid_textfield_css" style="border: 1px solid ;border-color: #0867b2;width: 100%" disabled placeholder="Please enter URLs seperated by semicolon(;)"/></textarea>
90
+ <br/><label style="cursor: auto"><?php echo mo_sl('Enter Page URL to Redeirect if user is not allowed to register:');?></label>
91
+ <textarea rows="4" cols="50" class="mo_openid_textfield_css" disabled style="border: 1px solid ;border-color: #0867b2;width: 100%"/></textarea>
92
  </label>
93
 
94
  </div>
100
  jQuery('#mo_openid_page_heading').text('<?php echo mo_sl('Registration Options');?>');
101
  </script>
102
  <?php
103
+ }
view/soc_sha/disp_shropt/mo_openid_disp_shropt.php CHANGED
@@ -200,7 +200,7 @@ function mo_openid_display_share_opt(){
200
 
201
  </div>
202
  </div>
203
- <div id="below">
204
  <p class="mo_openid_note_style" ><strong><?php echo mo_sl('NOTE');?>:</strong> <?php echo mo_sl('The icons in above pages will be placed horizontally. For vertical icons, add ');?><b><?php echo mo_sl('miniOrange Sharing - Vertical');?></b> <?php echo mo_sl('widget from Appearance->Widgets.');?></p>
205
 
206
  </div>
200
 
201
  </div>
202
  </div>
203
+ <div id="below" style="margin: 14px">
204
  <p class="mo_openid_note_style" ><strong><?php echo mo_sl('NOTE');?>:</strong> <?php echo mo_sl('The icons in above pages will be placed horizontally. For vertical icons, add ');?><b><?php echo mo_sl('miniOrange Sharing - Vertical');?></b> <?php echo mo_sl('widget from Appearance->Widgets.');?></p>
205
 
206
  </div>
view/soc_sha/share_cnt/mo_openid_shrcnt.php CHANGED
@@ -14,7 +14,7 @@ function mo_openid_share_cnt(){
14
  <tr>
15
  <td>
16
 
17
- <p class="mo_openid_note_style" style="font-size: 15px;"><?php echo mo_sl('Share counts are supported for <b>Facebook</b>, <b>Vkontakte</b>, <b>Stumble Upon</b>, <b>LinkedIn</b>, <b>Buffer</b> and <b>Pinterest</b> If you are Enabling share counts then it will give you the exact counts of share that is done by that particular social media.');?><br><br><?php echo mo_sl('<b>Buffer</b> and <b>LinkedIn</b> are supported in Paid Version');?>.<a style="left: 1%; position: relative; text-decoration: none" class="mo-openid-premium" href="<?php echo add_query_arg( array('tab' => 'licensing_plans'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('PRO');?></a>.</p>
18
 
19
  <br>
20
  <label class="mo_openid_checkbox_container"> <b style="font-size: 14px;"><?php echo mo_sl('Enable share counts');?></b>
@@ -29,9 +29,7 @@ function mo_openid_share_cnt(){
29
  <script>
30
  function delete_transit() {
31
  var a = "<?php delete_transient('facebook');
32
- delete_transient('vkontakte');
33
- delete_transient('stumbleupon');
34
- delete_transient('pinterest'); ?>";
35
  location.reload();
36
  }
37
  </script>
14
  <tr>
15
  <td>
16
 
17
+ <p class="mo_openid_note_style" style="font-size: 15px;"><?php echo mo_sl('Share counts are supported for <b>Facebook</b> If you are Enabling share counts then it will give you the exact counts of share that is done by that particular social media.');?><br><br><?php echo mo_sl(' <b>Vkontakte</b>, <b>Stumble Upon</b>, <b>Buffer</b> and <b>Pinterest</b> and are supported in Paid Version');?>.<a style="left: 1%; position: relative; text-decoration: none" class="mo-openid-premium" href="<?php echo add_query_arg( array('tab' => 'licensing_plans'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('PRO');?></a>.</p>
18
 
19
  <br>
20
  <label class="mo_openid_checkbox_container"> <b style="font-size: 14px;"><?php echo mo_sl('Enable share counts');?></b>
29
  <script>
30
  function delete_transit() {
31
  var a = "<?php delete_transient('facebook');
32
+ ?>";
 
 
33
  location.reload();
34
  }
35
  </script>
view/soc_sha/soc_apps/mo_openid_sharing.php CHANGED
@@ -167,34 +167,6 @@ wp_enqueue_style( 'mo-openid-share-font-awesome',plugins_url('includes/css/mo-fo
167
  <span class="mo_openid_checkbox_checkmark"></span>
168
  </label>
169
 
170
-
171
-
172
- </td>
173
- <td style="width:20%">
174
-
175
-
176
- <label class="mo_openid_checkbox_container"><?php echo mo_sl('Delicious');?>
177
- <input type="checkbox" id="mo_openid_delicious_share_enable" class="app_enable"
178
- name="mo_openid_delicious_share_enable" value="1"
179
- onclick="addSelectedApps(this,'delicious');mo_openid_enable_share('mo_openid_delicious_share_enable');" <?php checked(get_option('mo_openid_delicious_share_enable') == 1); ?> />
180
- <span class="mo_openid_checkbox_checkmark"></span>
181
- </label>
182
-
183
-
184
-
185
- </td>
186
- <td style="width:20%">
187
-
188
-
189
- <label class="mo_openid_checkbox_container"><?php echo mo_sl('Odnoklassniki');?>
190
- <input type="checkbox" id="mo_openid_odnoklassniki_share_enable" class="app_enable"
191
- name="mo_openid_odnoklassniki_share_enable" value="1"
192
- onclick="addSelectedApps(this,'odnoklassniki');mo_openid_enable_share('mo_openid_odnoklassniki_share_enable');" <?php checked(get_option('mo_openid_odnoklassniki_share_enable') == 1); ?> />
193
- <span class="mo_openid_checkbox_checkmark"></span>
194
- </label>
195
-
196
-
197
- </td>
198
  <td style="width:20%">
199
 
200
  <label class="mo_openid_checkbox_container"><?php echo mo_sl('Email');?>
@@ -218,11 +190,8 @@ wp_enqueue_style( 'mo-openid-share-font-awesome',plugins_url('includes/css/mo-fo
218
 
219
 
220
  </td>
221
- </tr>
222
- <tr>
223
  <td style="width:20%">
224
 
225
-
226
  <label class="mo_openid_checkbox_container"><?php echo mo_sl('Whatsapp');?>
227
  <input type="checkbox" id="mo_openid_whatsapp_share_enable" class="app_enable"
228
  name="mo_openid_whatsapp_share_enable" value="1"
@@ -243,6 +212,8 @@ wp_enqueue_style( 'mo-openid-share-font-awesome',plugins_url('includes/css/mo-fo
243
 
244
 
245
  </td>
 
 
246
  <td style="width:20%">
247
 
248
 
@@ -276,6 +247,26 @@ wp_enqueue_style( 'mo-openid-share-font-awesome',plugins_url('includes/css/mo-fo
276
 
277
 
278
  </td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
279
  </tr>
280
  <tr>
281
  <td style="width:20%">
@@ -529,26 +520,6 @@ wp_enqueue_style( 'mo-openid-share-font-awesome',plugins_url('includes/css/mo-fo
529
 
530
 
531
  </td>
532
- <td style="width:20%">
533
-
534
-
535
- <label class="mo_openid_checkbox_container_disable"><?php echo mo_sl('Renren');?>
536
- <input type="checkbox" id="mo_openid_renren_share_enable" disabled/>
537
- <span class="mo_openid_checkbox_checkmark"></span>
538
- <a style="left: 1%; position: relative; text-decoration: none" class="mo-openid-premium" href="<?php echo add_query_arg( array('tab' => 'licensing_plans'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('PRO');?></a>
539
- </label>
540
-
541
-
542
- </td>
543
- <td style="width:20%">
544
-
545
-
546
- <label class="mo_openid_checkbox_container_disable"><?php echo mo_sl('Buffer');?>
547
- <input type="checkbox" id="mo_openid_buffer_share_enable" disabled/>
548
- <span class="mo_openid_checkbox_checkmark"></span>
549
- <a style="left: 1%; position: relative; text-decoration: none" class="mo-openid-premium" href="<?php echo add_query_arg( array('tab' => 'licensing_plans'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('PRO');?></a>
550
- </label>
551
-
552
 
553
  </td>
554
  </tr>
167
  <span class="mo_openid_checkbox_checkmark"></span>
168
  </label>
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  <td style="width:20%">
171
 
172
  <label class="mo_openid_checkbox_container"><?php echo mo_sl('Email');?>
190
 
191
 
192
  </td>
 
 
193
  <td style="width:20%">
194
 
 
195
  <label class="mo_openid_checkbox_container"><?php echo mo_sl('Whatsapp');?>
196
  <input type="checkbox" id="mo_openid_whatsapp_share_enable" class="app_enable"
197
  name="mo_openid_whatsapp_share_enable" value="1"
212
 
213
 
214
  </td>
215
+ </tr>
216
+ <tr>
217
  <td style="width:20%">
218
 
219
 
247
 
248
 
249
  </td>
250
+ <td style="width:20%">
251
+
252
+
253
+ <label class="mo_openid_checkbox_container_disable"><?php echo mo_sl('Renren');?>
254
+ <input type="checkbox" id="mo_openid_renren_share_enable" disabled/>
255
+ <span class="mo_openid_checkbox_checkmark"></span>
256
+ <a style="left: 1%; position: relative; text-decoration: none" class="mo-openid-premium" href="<?php echo add_query_arg( array('tab' => 'licensing_plans'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('PRO');?></a>
257
+ </label>
258
+
259
+
260
+ </td>
261
+ <td style="width:20%">
262
+
263
+
264
+ <label class="mo_openid_checkbox_container_disable"><?php echo mo_sl('Buffer');?>
265
+ <input type="checkbox" id="mo_openid_buffer_share_enable" disabled/>
266
+ <span class="mo_openid_checkbox_checkmark"></span>
267
+ <a style="left: 1%; position: relative; text-decoration: none" class="mo-openid-premium" href="<?php echo add_query_arg( array('tab' => 'licensing_plans'), $_SERVER['REQUEST_URI'] ); ?>"><?php echo mo_sl('PRO');?></a>
268
+ </label>
269
+
270
  </tr>
271
  <tr>
272
  <td style="width:20%">
520
 
521
 
522
  </td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
523
 
524
  </td>
525
  </tr>