NSL/Persistent/Persistent.php000066600000003712152140537220012221 0ustar00storage === NULL) { if (is_user_logged_in()) { $this->storage = new Transient(); } else { $this->storage = new Session(); } } } public static function set($key, $value) { self::$instance->storage->set($key, $value); } public static function get($key) { return self::$instance->storage->get($key); } public static function delete($key) { self::$instance->storage->delete($key); } /** * @param $user_login * @param WP_User $user */ public function transferSessionToUser($user_login, $user = null) { if (!$user) { // For do_action( 'wp_login' ) calls that lacked passing the 2nd arg. $user = get_user_by('login', $user_login); } $newStorage = new Transient($user->ID); /** * $this->storage might be NULL if init action not called yet */ if ($this->storage !== NULL) { $newStorage->transferData($this->storage); } $this->storage = $newStorage; } public static function clear() { self::$instance->storage->clear(); } } new Persistent();NSL/Persistent/Storage/Abstract.php000066600000002763152140537220013235 0ustar00load(true); $this->data[$key] = $value; $this->store(); } public function get($key) { $this->load(); if (isset($this->data[$key])) { return $this->data[$key]; } return null; } public function delete($key) { $this->load(); if (isset($this->data[$key])) { unset($this->data[$key]); $this->store(); } } public function clear() { $this->data = array(); $this->store(); } protected function load($createSession = false) { static $isLoaded = false; if (!$isLoaded) { $data = maybe_unserialize(get_site_transient($this->sessionId)); if (is_array($data)) { $this->data = $data; } $isLoaded = true; } } private function store() { if (empty($this->data)) { delete_site_transient($this->sessionId); } else { set_site_transient($this->sessionId, $this->data, apply_filters('nsl_persistent_expiration', HOUR_IN_SECONDS)); } } /** * @param StorageAbstract $storage */ public function transferData($storage) { $this->data = $storage->data; $this->store(); $storage->clear(); } }NSL/Persistent/Storage/Transient.php000066600000000443152140537220013432 0ustar00sessionId = 'nsl_persistent_' . $user_id; } }NSL/Persistent/Storage/Session.php000066600000005134152140537220013110 0ustar00sessionName = 'wordpress_nsl'; } if (defined('NSL_SESSION_NAME')) { $this->sessionName = NSL_SESSION_NAME; } $this->sessionName = apply_filters('nsl_session_name', $this->sessionName); } public function clear() { parent::clear(); $this->destroy(); } private function destroy() { $sessionID = $this->sessionId; if ($sessionID) { $this->setCookie($sessionID, time() - YEAR_IN_SECONDS, apply_filters('nsl_session_use_secure_cookie', false)); add_action('shutdown', array( $this, 'destroySiteTransient' )); } } public function destroySiteTransient() { $sessionID = $this->sessionId; if ($sessionID) { delete_site_transient('nsl_' . $sessionID); } } protected function load($createSession = false) { static $isLoaded = false; if ($this->sessionId === null) { if (isset($_COOKIE[$this->sessionName])) { $this->sessionId = 'nsl_persistent_' . md5(SECURE_AUTH_KEY . $_COOKIE[$this->sessionName]); } else if ($createSession) { $unique = uniqid('nsl', true); $this->setCookie($unique, apply_filters('nsl_session_cookie_expiration', 0), apply_filters('nsl_session_use_secure_cookie', false)); $this->sessionId = 'nsl_persistent_' . md5(SECURE_AUTH_KEY . $unique); $isLoaded = true; } } if (!$isLoaded) { if ($this->sessionId !== null) { $data = maybe_unserialize(get_site_transient($this->sessionId)); if (is_array($data)) { $this->data = $data; } $isLoaded = true; } } } private function setCookie($value, $expire, $secure = false) { setcookie($this->sessionName, $value, $expire, COOKIEPATH ? COOKIEPATH : '/', COOKIE_DOMAIN, $secure); } }NSL/GDPR.php000066600000012270152140537220006454 0ustar00' . __('What personal data we collect and why we collect it') . ''; $content .= '

' . sprintf(__('%1$s collects data when a visitor register, login or link the account with with any of the enabled social provider. It collects the following data: email address, name, social provider identifier and access token. Also it can collect profile picture and more fields with the Pro Addon\'s sync data feature.'), 'Nextend Social Login') . '

'; $content .= '

' . __('Who we share your data with') . '

'; $content .= '

' . sprintf(__('%1$s stores the personal data on your site and does not share it with anyone except the access token which used for the authenticated communication with the social providers.'), 'Nextend Social Login') . '

'; $content .= '

' . __('Does the plugin share personal data with third parties') . '

'; $content .= '

' . sprintf(__('%1$s use the access token what the social provider gave to communicate with the providers to verify account and securely access personal data.'), 'Nextend Social Login') . '

'; $content .= '

' . __('How long we retain your data') . '

'; $content .= '

' . sprintf(__('%1$s removes the collected personal data when the user deleted from WordPress.'), 'Nextend Social Login') . '

'; $content .= '

' . __('Does the plugin use personal data collected by others?') . '

'; $content .= '

' . sprintf(__('%1$s use the personal data collected by the social providers to create account on your site when the visitor authorize it.'), 'Nextend Social Login') . '

'; $content .= '

' . __('Does the plugin store things in the browser?') . '

'; $content .= '

' . sprintf(__('Yes, %1$s must create a cookie for visitors who use the social login authorization flow. This cookie required for every provider to secure the communication and to redirect the user back to the last location.'), 'Nextend Social Login') . '

'; $content .= '

' . __('Does the plugin collect telemetry data, directly or indirectly?') . '

'; $content .= '

' . __('No') . '

'; $content .= '

' . __('Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a third party?') . '

'; $content .= '

' . __('No') . '

'; wp_add_privacy_policy_content('Nextend Social Login', wp_kses_post($content)); } public function register_exporter($exporters) { $exporters['nextend-facebook-connect'] = array( 'exporter_friendly_name' => 'Nextend Social Login', 'callback' => array( $this, 'exporter' ), ); return $exporters; } public function exporter($email_address, $page = 1) { $email_address = trim($email_address); $data_to_export = array(); $user = get_user_by('email', $email_address); if (!$user) { return array( 'data' => array(), 'done' => true, ); } $user_data_to_export = array(); foreach (NextendSocialLogin::$allowedProviders AS $provider) { $user_data_to_export = array_merge($user_data_to_export, $provider->exportPersonalData($user->ID)); } if (!empty($user_data_to_export)) { $data_to_export[] = array( 'group_id' => 'user', 'group_label' => __('User'), 'item_id' => "user-{$user->ID}", 'data' => $user_data_to_export, ); } return array( 'data' => $data_to_export, 'done' => true, ); } public function register_eraser($erasers) { $erasers['nextend-facebook-connect'] = array( 'exporter_friendly_name' => 'Nextend Social Login', 'callback' => array( $this, 'eraser' ), ); return $erasers; } public function eraser($email_address, $page = 1) { return array( 'items_removed' => false, 'items_retained' => false, 'messages' => array(), 'done' => true, ); } } new GDPR();NSL/Notices.php000066600000012343152140537220007325 0ustar00get_error_messages() as $m) { self::add('error', $m); } } else { self::add('error', $message); } } public static function getErrors() { if (isset(self::$notices['error'])) { $errors = self::$notices['error']; unset(self::$notices['error']); self::set(); return $errors; } return false; } public static function addSuccess($message) { self::add('success', $message); } public static function displayNotices() { $html = self::getHTML(); if (!empty($html)) { echo '
' . $html . '
'; } } public function admin_notices() { echo self::getHTML(); } /** * Displays the non-displayed notices in lightbox as a fallback */ public function notices_fallback() { $html = self::getHTML(); if (!empty($html)) { ?>

' . $message . '

'; } } if (isset(self::$notices['error'])) { foreach (self::$notices['error'] AS $message) { $html .= '

' . $message . '

'; } } self::clear(); return $html; } private static function get() { return Persistent::get('notices'); } private static function set() { Persistent::set('notices', self::$notices); } public static function clear() { Persistent::delete('notices'); self::$notices = array(); } }NSL/REST.php000066600000003255152140537220006500 0ustar00\w[\w\s\-]*)/get_user', array( 'args' => array( 'provider' => array( 'required' => true, 'validate_callback' => array( $this, 'validate_provider' ) ), 'access_token' => array( 'required' => true, ), ), array( 'methods' => 'POST', 'callback' => array( $this, 'get_user' ) ), )); } public function validate_provider($providerID) { return NextendSocialLogin::isProviderEnabled($providerID); } /** * @param WP_REST_Request $request Full details about the request. * * @return WP_Error|WP_REST_Response */ public function get_user($request) { $provider = NextendSocialLogin::$enabledProviders[$request['provider']]; try { $user = $provider->findUserByAccessToken($request['access_token']); } catch (Exception $e) { return new WP_Error('error', $e->getMessage()); } return $user; } } new REST(); js/nsl.js000066600000020264152140537220006323 0ustar00window.NSLPopup = function (url, title, w, h) { var userAgent = navigator.userAgent, mobile = function () { return /\b(iPhone|iP[ao]d)/.test(userAgent) || /\b(iP[ao]d)/.test(userAgent) || /Android/i.test(userAgent) || /Mobile/i.test(userAgent); }, screenX = window.screenX !== undefined ? window.screenX : window.screenLeft, screenY = window.screenY !== undefined ? window.screenY : window.screenTop, outerWidth = window.outerWidth !== undefined ? window.outerWidth : document.documentElement.clientWidth, outerHeight = window.outerHeight !== undefined ? window.outerHeight : document.documentElement.clientHeight - 22, targetWidth = mobile() ? null : w, targetHeight = mobile() ? null : h, V = screenX < 0 ? window.screen.width + screenX : screenX, left = parseInt(V + (outerWidth - targetWidth) / 2, 10), right = parseInt(screenY + (outerHeight - targetHeight) / 2.5, 10), features = []; if (targetWidth !== null) { features.push('width=' + targetWidth); } if (targetHeight !== null) { features.push('height=' + targetHeight); } features.push('left=' + left); features.push('top=' + right); features.push('scrollbars=1'); var newWindow = window.open(url, title, features.join(',')); if (window.focus) { newWindow.focus(); } return newWindow; }; var isWebView = null; function checkWebView() { if (isWebView === null) { function _detectOS(ua) { if (/Android/.test(ua)) { return "Android"; } else if (/iPhone|iPad|iPod/.test(ua)) { return "iOS"; } else if (/Windows/.test(ua)) { return "Windows"; } else if (/Mac OS X/.test(ua)) { return "Mac"; } else if (/CrOS/.test(ua)) { return "Chrome OS"; } else if (/Firefox/.test(ua)) { return "Firefox OS"; } return ""; } function _detectBrowser(ua) { var android = /Android/.test(ua); if (/CriOS/.test(ua)) { return "Chrome for iOS"; } else if (/Edge/.test(ua)) { return "Edge"; } else if (android && /Silk\//.test(ua)) { return "Silk"; } else if (/Chrome/.test(ua)) { return "Chrome"; } else if (/Firefox/.test(ua)) { return "Firefox"; } else if (android) { return "AOSP"; } else if (/MSIE|Trident/.test(ua)) { return "IE"; } else if (/Safari\//.test(ua)) { return "Safari"; } else if (/AppleWebKit/.test(ua)) { return "WebKit"; } return ""; } function _detectBrowserVersion(ua, browser) { if (browser === "Chrome for iOS") { return _getVersion(ua, "CriOS/"); } else if (browser === "Edge") { return _getVersion(ua, "Edge/"); } else if (browser === "Chrome") { return _getVersion(ua, "Chrome/"); } else if (browser === "Firefox") { return _getVersion(ua, "Firefox/"); } else if (browser === "Silk") { return _getVersion(ua, "Silk/"); } else if (browser === "AOSP") { return _getVersion(ua, "Version/"); } else if (browser === "IE") { return /IEMobile/.test(ua) ? _getVersion(ua, "IEMobile/") : /MSIE/.test(ua) ? _getVersion(ua, "MSIE ") : _getVersion(ua, "rv:"); } else if (browser === "Safari") { return _getVersion(ua, "Version/"); } else if (browser === "WebKit") { return _getVersion(ua, "WebKit/"); } return "0.0.0"; } function _getVersion(ua, token) { try { return _normalizeSemverString(ua.split(token)[1].trim().split(/[^\w\.]/)[0]); } catch (o_O) { } return "0.0.0"; } function _normalizeSemverString(version) { var ary = version.split(/[\._]/); return (parseInt(ary[0], 10) || 0) + "." + (parseInt(ary[1], 10) || 0) + "." + (parseInt(ary[2], 10) || 0); } function _isWebView(ua, os, browser, version, options) { switch (os + browser) { case "iOSSafari": return false; case "iOSWebKit": return _isWebView_iOS(options); case "AndroidAOSP": return false; case "AndroidChrome": return parseFloat(version) >= 42 ? /; wv/.test(ua) : /\d{2}\.0\.0/.test(version) ? true : _isWebView_Android(options); } return false; } function _isWebView_iOS(options) { var document = (window["document"] || {}); if ("WEB_VIEW" in options) { return options["WEB_VIEW"]; } return !("fullscreenEnabled" in document || "webkitFullscreenEnabled" in document || false); } function _isWebView_Android(options) { if ("WEB_VIEW" in options) { return options["WEB_VIEW"]; } return !("requestFileSystem" in window || "webkitRequestFileSystem" in window || false); } var options = {}; var nav = window.navigator || {}; var ua = nav.userAgent || ""; var os = _detectOS(ua); var browser = _detectBrowser(ua); var browserVersion = _detectBrowserVersion(ua, browser); isWebView = _isWebView(ua, os, browser, browserVersion, options); } return isWebView; } window._nsl.push(function ($) { window.nslRedirect = function (url) { $('
').appendTo('body'); window.location = url; }; var targetWindow = _targetWindow || 'prefer-popup', lastPopup = false; $(document.body).on('click', 'a[data-plugin="nsl"][data-action="connect"],a[data-plugin="nsl"][data-action="link"]', function (e) { if (lastPopup && !lastPopup.closed) { e.preventDefault(); lastPopup.focus(); } else { var $target = $(this), href = $target.attr('href'), success = false; if (href.indexOf('?') !== -1) { href += '&'; } else { href += '?'; } var redirectTo = $target.data('redirect'); if (redirectTo === 'current') { href += 'redirect=' + encodeURIComponent(window.location.href) + '&'; } else if (redirectTo && redirectTo !== '') { href += 'redirect=' + encodeURIComponent(redirectTo) + '&'; } if (targetWindow !== 'prefer-same-window' && checkWebView()) { targetWindow = 'prefer-same-window'; } if (targetWindow === 'prefer-popup') { lastPopup = NSLPopup(href + 'display=popup', 'nsl-social-connect', $target.data('popupwidth'), $target.data('popupheight')); if (lastPopup) { success = true; e.preventDefault(); } } else if (targetWindow === 'prefer-new-tab') { var newTab = window.open(href + 'display=popup', '_blank'); if (newTab) { if (window.focus) { newTab.focus(); } success = true; e.preventDefault(); } } if (!success) { window.location = href; e.preventDefault(); } } }); var googleLoginButton = $('a[data-plugin="nsl"][data-provider="google"]'); if (googleLoginButton.length && checkWebView()) { googleLoginButton.remove(); } });index.html000066600000000000152140537220006534 0ustar00admin/templates-provider/settings-other.php000066600000006143152140537220015163 0ustar00getProvider(); $settings = $provider->settings; ?>

get('terms_show') == 1): ?>

get('terms'); $hasOverriddenTerms = !empty($terms); ?>
style="display:none;" > 4, 'media_buttons' => false )); ?>
admin/templates-provider/buttons.php000066600000022761152140537220013706 0ustar00getProvider(); $settings = $provider->settings; $isPRO = apply_filters('nsl-pro', false); ?>
getPath() . '/admin/buttons.php'; if (file_exists($buttonsPath)) { include($buttonsPath); } ?>

get('custom_default_button'); if (!empty($buttonTemplate)) { $useCustom = true; } else { $buttonTemplate = $provider->getRawDefaultButton(); } ?>
style="display:none;">



{{label}}"); ?>

get('custom_icon_button'); if (!empty($buttonTemplate)) { $useCustom = true; } else { $buttonTemplate = $provider->getRawIconButton(); } ?>
style="display:none;">

admin/templates-provider/menu.php000066600000002674152140537220013155 0ustar00Pro'; } ?>
provider->hasSyncFields()): ?>
admin/templates-provider/settings-pro.php000066600000020045152140537220014637 0ustar00getProvider(); $settings = $provider->settings; $isPRO = apply_filters('nsl-pro', false); $attr = ''; if (!$isPRO) { $attr = ' disabled '; } ?>

style="opacity:0.5;">










get_names(); $disable_roles = $settings->get('disabled_roles'); foreach ($roles AS $roleKey => $label): ?>
get('register_roles'); ?>
$label): ?>

admin/templates-provider/sync-data.php000066600000013042152140537220014063 0ustar00getProvider(); $settings = $provider->settings; $isPRO = apply_filters('nsl-pro', false); $attr = ''; if (!$isPRO) { $attr = ' disabled '; } ?>
getId() . '_sync_warning', false); if (!empty($sync_warning_message)): ?>

getSyncFields(); foreach ($syncFields AS $fieldName => $fieldData): ?>
/>
getSyncDataFieldDescription($fieldName); ?>

admin/templates-provider/usage.php000066600000005401152140537220013304 0ustar00getProvider(); ?>

   

getId() . '"]', '[nextend_social_login provider="' . $provider->getId() . '" style="icon"]', '[nextend_social_login provider="' . $provider->getId() . '" style="icon" redirect="https://nextendweb.com/"]', '[nextend_social_login trackerdata="source"]' ); ?>

getLoginUrl() . '" data-plugin="nsl" data-action="connect" data-redirect="current" data-provider="' . esc_attr($provider->getId()) . '" data-popupwidth="' . $provider->getPopupWidth() . '" data-popupheight="' . $provider->getPopupHeight() . '">' . "\n\t" . __('Click here to login or register', 'nextend-facebook-connect') . "\n" . ''; ?>

getLoginUrl() . '" data-plugin="nsl" data-action="connect" data-redirect="current" data-provider="' . esc_attr($provider->getId()) . '" data-popupwidth="' . $provider->getPopupWidth() . '" data-popupheight="' . $provider->getPopupHeight() . '">' . "\n\t" . '' . "\n" . ''; ?>
admin/images/nsl-logo.png000066600000003122152140537220011344 0ustar00PNG  IHDR@@iqIDATx]U9\l@UB+" ⃍`BJЄ`E__ MKcAb b\ jBښ>sΝ9gfEy3kk)fly8g8kO o4M\!u:'vVЦ&l;:5ٴSq niUy|wA9z| 1""va؈&O}xʮy-lEuuɒm;$[+QX#42{vKI7Vq){q N pW^I6o0۰-w#3a75q'%Cx(q7O'ՒJR怳iLsRv{!y0U)ʬ*Ӟ_F"Ƣ1zPV C%\O6N3m!Vt!x.nGpo !,yn e9)u3S\BX6g]Z5Δ<4fBxy5x-f/i !/8`N6^=6m5l]5V ՑT3 O V5_"[cǤiS6@7va8[Bk* ^ĭSP) y ~(?n:U^(!T{QwT1 lю}RߖQ9LH Ja HU#W`O+̲SҮDbJn"c 'IbMt/F%r{c*%pJ٪><]qKyAJWğup|¾;1IENDB`admin/images/layouts/below.png000066600000013474152140537220012435 0ustar00PNG  IHDReIDATx\u.3˲Ba!PjdI篣oydSOKK/|~SΠJofige~ENRZ€uP`eqegvktGz?k?(N'NW ]"A$Q8$ D (DHpI"A$Q8$ Ddn<<׽CmZA''Mб•+DX+{ͦu׬[}LEpXdd{m̂^J7t}mWɭ|HrM:^- h|}{5 y*ZpXyț:bj0ԛ_pV&^oh/Ǚ Ff6t)sl3wD;g{rѫ)ɯ,W,Wz¶:mX`!}QRxK8 YM{QPgTUly07/rw;.$T0Z='/'Y˵6/=%T:tZ4gՁh4mHS>oZFr|呬V_?-KY{4"@sLij--$nxm^tTkZ|y޺gՁZO 2yūj}jNA@Sy sdnJ{}N/|¼YQaJXn]S U(;WôYV"wmu9:9!uSNr _N_xE$kiQ_XXE#qbWmH_; 5Y%1歘4"WHt|)3tE7}$eDm~Z6g)T|XQw.:|/ۻPIbr7B"KLe ߜu xxM~!+ 2 .yfϦe[.7b"cǫX]k,r\t|1/g ;f;pA|Wnro3_ڏ]L2(`E;L{n?}B֢nY<C^8T*g{fc%kVnEq4l; p S䤱~q:rqa/ ǎfamZ3>yUʊ4qO7e'8VcGFsqfp낼/+\c]yѾC?4} : ZEf$"BY6pw'ణ u胟Ee`֧Gsj7ӕޭߕSȇF2|ݟwks:#l, *$}_U׻l0ݳ%mS`?{ "v=cʎ?u,C2v8k;! ]SSv ye``!여 ,櫏fq1dsy\RR3 ʃ M=-՝">&*xBEl1[,8SjƊV 5'DZyNcQ.9gT c MZ6/FQt`)%Qu `7zʺpVaBhm]R >>P(a,::lmp8P@?W<0t,C3FBdB$Mnh ڇ`hS=\s-0Ap&@ӥr |y &Z8CgUceDOJ2~~جў'K]g*N8h[m8f}d\?g=^2<ƗCK<7[^^^*حVOOs]ZZv,n7{Xa!_,>@=+dfl/.t"P%"07ccFuuڶ^Qt\s۸%cۧUP, 0%WN_@Y ؼhUm/kua>яOx9飄'.۲W~$z_OL{Qq:h6WX;x>xĵ=1_EOOpA5o>֝ `_}i2՟E=ш}S17-*|qWԿ?5s#^UgB޿0:k7*r7~7Ne_g>7Y-TC,O N'khBu6{ƌŲp-v/n=R;. ߆G?7옞 WNwx|yskxC* hL@ဨ  <D (DHpI"A$Q8$ D (DN… 6-((5ի}> ̐*P(@Fq…K.<,dhkkxȸ+[RRbGVwYV, (ÔJBNtuH$ $lEܼ"#wՃ eeqbXׇ 9~_ϑw$>[>HdV\<8w$-H7i_1zpG 揋rܒʊF3cI\ MZ U^parSqQkRGZGmyE H[ҋ#][^qdZ~xxڴ9\ɵ+&kȵ}/>tkY:'~[^g6Ao>MV'ڵMZ[ot̝ i̬iGI]hŧ-XĞ];ߜw$?zqQkR82ί~ζjUWW tpsh4WR49[fUk?qrmZ;9+_?qܜeK^57(H%/MK4QQ[kؒᾏ<^,xYkR]=q=*ǽ3wvB{{IιY"8umZ|=::p\+qQ&,lqAA:F3s4WR[{>g붼#祖?.:jϮxZk7QpMh4Ix=3|VNb2>W\㸠ZF3.:`8:l9ot$\kӝS\/]=(Pk8߻w$?<,ss--0ȆS8–-yA_|zKfVmeK^pM9|$?g붹N9}jttdm㢮]kmuefN:ٺ< ҹᾏ8Gz/6G8p k<\ȸV\\ w4i DV~D Bppw/4$ފ2 i0|uu{q2bĈK.u. toTfqSY(  {B$THpI"A$Q8$ D (DHpI"k⿊&SIENDB`admin/images/layouts/above.png000066600000013467152140537220012423 0ustar00PNG  IHDReIDATx\Te @@%&nںd/SWMK]̛^s5(ĽyEVRlv€q gadp9gfȯcs_9gsg3t(owE (DHpI"A$Q8$ D (DHpI"q4 \z}Kqwy'Ve j5jB[_2ZK.566<,dhoo7 .]r1cƨꛪV`us-n@T*:wCJ$Q8$g+fA!{d,+">du~#X>qNb386y-N:VnΊe.vղ֧M,ը5lza/=4i΢g渶^p͙?7ltt䢤P"8m}Z^5::q\ Q&,l qAA:F3{ WR[{1gc?!:jߞ]xZk7QpMh4]EIOx53|f6Ib2>W\㸠QZF3!:`:l5ts$\[]S\/]=,Pkط}w,?<,ss.-0FR8V,{N_|v[fVm˞sM9z,?gsM=szttd]7kkseY3fϜ:پ< ҹ8W.6O:x銠 kJҷ%_=%7[aAV!6sFalq^uFcc\o4Z]9hk7am"ojPoxYEXlXfs'3FKlVDTgXwS_NMYq:XL 2muFcI7݌Mܧ}kۢ2TqfCP, J]+s$V6E> own]H`4[vO^Nvaڗk"l]{h[zu{ϫdf,ٔ8 wc~h/sߌcYK~ ZZ+2xEށ*K'Q˷G7 ZZ.IIʖ"6}'#*5Z {ϫ|SuꪗԜz5V꼾_IsQaJXo[S U(;Wô[VK"wzl 9:9!uK0m[=_A_tU$kn䴨/,H|-˸Xx1k6%/?sѺKI VM+To9ZC`G?Y?z6 ֻ?. f*e}jҎG.L[9Y˗p$19K_]֭vj Jf2_NȄoMa2V}&qk'h+dj\5elA)LPZPPںrW,gn>,b>i8 {6]*x+ xؕkyM !Y`Xݿhb=QoF$(̀/of*mh~Ң:Do{ n\^(_o5whF+( gROgULzD B#gESV^`uXmG0EWfv7ye -(b:`P/f&"RcLJ@gZ{&KP6BUrψHƪ/5|Fyҳk%svl1кB>d/vQz.k{}ie6IIKRՊ|UƶʸaAu0c5z$5q^+mª}dyVS֘>jZ3wye|akKi#ߘy=/qq!G3_Wm:ègfeyO9NAD7$p\|YVy27ވ$I"A$Q8$ D (DHpI"A$Q8?vH$疽aw[Bdĭ\:gP>7_/2VZ\">&kBs 6utlx""YE- csH(*.!CIN*x?11O_;mj<ɈCd=}<$L̬Qy饱6={[vMEof Dsn5}ay@5sUjعc%G js߉eHP]۷G7=?3T[/In4ૺ'UZ;T8Xʫ3.gf%eҏS!Y30f9v Z2jLQӞ]6+-6X%+Z6qy٩سk1KbLT𴠞`|aID_%=a9cQ~.!CHيղ^9?ةcO*"cA:Z(}Z|_(9ԉ&4X( rr+,D$74vtԗf>aԌ5gz}pΘb8|*L g]cSpkH.!Ch0=.A!>'#I$Q8$oG[!VHh"[!7B㭐C (?7%pI"A$Q8$ D (DHpIxXA$Q8$ D`<4HuH":DHpI"A$Q8$ D (Dܟ$j^T-^?x}={{r HuUFqoؽ#NmqnTE]YA%BjrӭƳ~gſ}zoAdK@ىepo@tx'DkvcWv"_պyvs}ls2\wXNچ68`X5mmP*z %l?_YU h|V'0!gSސehhLHܲZYAL"ǟZv&qĎPh\nAo~:oR9g UjԡsHII N^k2 byr;e %<ڙ 630?-Sy.gٺ0I/#}pt>Pa[oS";DX/=,urW\m"yJ+7qr{χϿ>ֺ?Z+gf/Rh|{ZfUVNJV~yՐ=S =P]{DƄBߴ4xq!~"\ Gz| p @TƎ ȩ#D_+f&8 '޳_d B:`~1x2XZ?h=p(lT/J|Cedyjiڰ <XOAJ%N'~ɔ1lo]) Nh?5P*v\5`z/gP87E׿ 02p:P@9]D9:$2п22GLwwCm?[H- Z2>9gnkZĈQN A$Q8$ D (DHpI"A$Q8$ ꤿGIXIENDB`admin/images/layouts/above-separator.png000066600000014253152140537220014413 0ustar00PNG  IHDRO\rIDATx\?.3B &XDFME⏳pVx/|OEkR bc֜G0'Qlqp&`cegv@*?wg?3\.z@/ QD (D(pEAQ8" QD (D(pEE].lE1((Hrk׮.3 2*f=ZR.'zoAg!G{{doܟE>EEEcܸqZGf3L^^^qqqnAp8P2F(F΍&: %(Dg+ \;0A8~k,zTރfC___7Ks?|/W ~{Fv+*#3g?{b 2$/>[,'N K~p%ɋc;22pܜO-I^gm‹ %8~27~ j G{q}jx?}_^c2.WԘL WHyK-6O?/QT[,r%-~c}(WLsu5RyE`EQE{s >Wck){9țR[<$/ޑq}*<}Ib3^T^q}q_\=읻cn僌&gsf==)d${.{dЇ<֣3g-}yePA>4)<VXX@ /,O߭E}[!߁[!pC,Щ,QD (D(pEAQ8" QD F/WUUTRz'i¤E ,ZDϲK}&aH8pdd_l~  >3~a}dࠡnиw+UU ד-29&i#Ο )88hɓci3=GuucDDDtʷ|>'JJKMGѣpJGN+|ۘ'3 dz򛴾|9wqGvKІJeݾTVv-Ir6e.̽6_? 57W2elͩ tXn쐎64ub{F@}󍖙R&Կ=nrk9@pOeד케:[d\_IEs曜Qaj4ݺHy(;ŗcmѰWt-m.rSv~@lMLݖ0 r{H+WG^_-+Tlv(&afZ!9iE+Ҷ'@d>9[KMY3MfC_/xt;Z]pxizcEIBt}aZP?#$\z"$&$aYK+:]EI&njX*ӲL_k^_2c⼼UmhQuO ɛs0zDDt*n[BU'|'ŭZ;_g4{96 \6Qm,]Ҳ"}O.-iC PX ϯC@:-;  : 6~Q6(>e[4zIS[,\*_~) 4`}~qW/V(#Cl$ӦvwB:Q42L~j \TU=?[_ .t+=2ÓpxGD26c%vZgh%KEo ICVf<[@[W U |ņmu|qꋯEłs~B-9ڂ|!d/vIzXƞ!z0?%I[(*vte)K'%2}Ge6 K$X.4X:ZPZ[Xn&l+2͟UNj`X"!cwvQz<5Wj3E_<$|c~{ŀr"͌?h{?V>¢̬ԣ M#Eݩx0)5Ĩp(;!2kjt5J=w<m;kQJ<|~w~j.D!iy&O۵ Y:_Mё4|'ww'^{~.I øq&$%ۭJp}t$ڸcUJ 2 mD]!%(D}7"_PNgccwY8XRT =p8<ųpj r<=3lA<|tAQ8" QD (D(pEAQ8" QD (D(pE~0y<r9Ng$;< ǵk<*OF4QDD(pEAQ8" QD (D(pEhc]2y򕽳~o;yĎ_ܱ|nW ruol\;l`+O&9@jj0.YMzAsHycI&x'<;%w_ |QԊ"wߗo $eggu<=8nȊܸ% ݿXxð|}{|R@3{ujXImcC+Z5H:$iPCW'/3l+%M6X Vi?+<+31_%eҎS! fi}%dpyIH Z>9h8oG5"FE'Hw(+žxՅ ŒO-i*/h'Oo PG"[0NϱK lEf++֬^<'EׯvuZ k6o0tc)x R'q* $V/ * HŅ"r :Ow+,$$74nlNi 7QT9>a-nD#TqY[ƥ4Jא(}]BQ?`sA!>'#IQ8"oC㭐>x+o4 QD㭐;VHpE]P8" QD (D(pEAQ8" .npEA`<!~I)QD (D(pEAQ8" Q&ɽWE/Y.]7ƼGXx EW7o' 9vrH$ IrgiSzOw8K*<3q;< Fc}$Uz"cEZo㛦]'RF:~Yrsr.y1@\.@t\*Oqg0l_ /ڬ7w9l U?r@FRz#z")9|'1]?,\ mmp:rmmpHPTjع?tָV{;NT|' ! SݔijXHLH䙍UzrG!$,5ϼ0J/,qߤhVތx&+ :is1+}EX-DQ_6ws퀈 *\;lv\h=E^73!&?CעT`(i6fny-{ת*5[a!Z}zo6zn7Hߝ/r)o"$St~Nc_[핿y+kCz^s?>gI'}%'E;eR]?NԔ^o_h{Wu>j8:w*h|wtSȎ==`''S:[9w wsHvcw+wqr;ê^]hm9=~ >>߹w?_Tġhڷ{¯ku N~6zN\Olgs|wdPuuE3Nt=77Js~ekgx MT*1晚 I/*T*xyne[qN -hoJ NsOOtr O1Z|gWL_AAj Qpp@]C G<nB P{AK L ~P.GFښolwP7|R j{dJ6}AԀK p* ?jHWͽ Wz.'T*;Q8F> 2369h꿅^Z=Z:lkN>o)A1QD (D(pEAQ8" QD (D(pE '5PIENDB`admin/images/layouts/below-separator.png000066600000014262152140537220014427 0ustar00PNG  IHDRO\yIDATx}\SO9(`bU˓b֮jGo>Q켶:u.iYB ۋUjmig>;VX j& Ir OGs}/s'p: 'ʁn(DHpI"A$Q8$ D (DHpI"#Vysa(X{QNN8mھm=b5RmJYn}ơrw3奤naٓMi95BlaP]AAV!Fp=+7W]`jt/X]c"XETSVJMmκwo6 ߈VC1zS%bsS^MZjrҲuT*SWcQXm4ݴ kW>,N/(|W73l1jk-*j͢Mb=][uA::bEn^QomFc/?u83#^7gn~1Bi̛w}qN^!alNߑ>RWŝ?43>Ćz&:^_p sVچol|Om8uQR˜6'LX{Z_5Us ^X5zh47N]jZ[Wcr-_}>+8o敃GD 7.PlEbؙ1-HX[N 2iՅ Vɛt2Ln +55aI[4R(۸i aL AJ?n&!ay'l:rϓfo,~8i$m,}2{= _pr!}&i$ חthCd1uɫͫ5y/d|O3T&!A2)3K2=kYnM@Ҕ sr M}ZjCXx~C,l yN 2_re+gk̦N7Kvp1ܳiԅ+f268B}>Ң:H59Q m|ł/?IҢ51ګlzUtz'sE E `uXmk7~E;8R`ؒfE&{L`c93.ZuA.!rv7\◖y2}CN8<=EG%SԢZןb{ʙʄA@UK`џ,c׾@_1`5>|g^#Q7 ƂBA6];&ȒsTpu^4@h]2v} zIIM-S+'.JZ8F+ [>)ᧅ_$Br*m¢$=ZEEc$m7y=ǜ%qi3_ƪp0+;[( E)=;NgnllБW3>,Қ}yh笚^Gsۓ?poBr,Pa]P'-0%+Fh˴&\ٝ|h3N;sA xOm|\oZIgEa8"V@E^dJ_-8Dn66nZԂ Br+DH󫬬v~vB^S*G]]ݭ˵e=<< Vt:vYCTR8()T>b1|tA$Q8$ D (DHpI"A$Q8$ D (DHpIAcn>ys:>3'˲ʓ!F$)D (DHpI"A$Q8$ D (DH"c Ern;jw}gXe/_-}LD~z=@^!׋O\ڕS_tlx""ZD͵cmH(*].!IN*p==!{Wۿ󿗽VĒgrdכ ˰$>I3NO1pjJa ܒv_^;7nڕ|wxb@5}yrHQVKH#rڜ{{FrU`#w %Ʃ Tƨ?/ <JŸ 36ͮJJ3&WMØ%IyW3P_v li6aIܮ}ɼ/4KBtD8W{ʦ~bTCqnI=~7c k8m(Q.!Hي /-Y|Ih0f_bfZlTX[~Culzuv@ޙJ@;1ҒYGc?+  .xXW#,`m.8P,˫ W萣ݭ5{_92XR+Zf,!=y(`CcqsP%̏ܘ?&iڇDiҏz]GJ`rD%$ Duho[!hr34 5"qC D (DHpI"A$Q8$ D[Ƈ)DHpI4]!=xHoCIt@J$Q8$ D (DHpI"A$IryC%V[s?:t1/k 賝$379 vײ$vQtʤ ݧEem¡R<={2Vk(^{Xts-M}#xy[I\a4Wsr2~*qGN@1B^PǛ>=[Z 8P!^E?Aipdn=\!8\]~LjwDc8R,qXTGⓔ}ugvo;8qgKַV\ޝM>^׶L{/9:u,?}|(6N׆wBA]lUESc6n]WҗZ8ƱkA+~+\/悂Raflp¬i؂ b؀Bs+E!d#'V6Ϛ`CىS"0y)ZE*6 N\:/kkC 2vDozVg [jcY:+v u4e,hnhn]RvP- X[p@}QPG?0xtC=FBdb'N( [$2`Ѣ}깸%a5ZjuK]oNc2i:Cdhͦ AAo j  'v-Vh</}Ak?AM#va0a-Lu=Zwe,ivBT?Yy|g:rf rmIKݞ+rD IdnVԌC4u~mKXLl3mqKOˡZ`!XoQ;1_2)pyGcTU%҅G>R3'mp/%vmT^X;^<;9uOtp"ѿ#Rg+Nu*27r'x>6ى==ы_ OOo>֝ e_a*>xca=㹧8e)yw^U}:OXlʩ_*<=ܢhYNMhBuk ҘcAP-]lc#R.!ЂG~ <~7|]_w"šy έP@1ϔ  xP(Pί|нn 8D46 JTp8=9quO=Am=j ߗ@Alap:aC /0l + @8{c% pWy"p><_|ϕXC݊klj;j2t NtWM#Gt%?Q[]YӟX8g̊phvI:]/,`%t钬k;ߏX:94tԻ;wM2J˪ :˿eTdkseWM&CCC֮N=+թ\5\\5\~cWX\O쑣ٮX:SאQŗUTTwP:8IFu/Vrm'O]vVDOE80.v[ϫnάCH\i>lCבǍ T.vo@j sVF9WzN@?J Y}-iUU.~5̭̊3+ODFgnݦ?qc:?ͮlu׾[yrƴ'?:ܺ=йh<ܥݫ}'O-|qi@uh_ s;`uIDATx \Tǽ "+A#4Z5joMj Ubʵ66DKjh0LD Qpم=9dA%93sfg~ΞcUWWfrAt?^oY1AoeoP=.bD )XS$h A H HA&Dڄ[n 0t;ŧM[YY ...qZh.f^PVKfhqV꯾U*jjj\NAN $$s-43L2hRH*UA ;;;=zȐ!T{D#J۔իTD@>tGs%qi97oREuGCt+_:qt< `f̘8}iYNMAyqaރc}aMn:xzXs' @?GGRkGZhM!uUK^& rx{{}3/d"dYy?Zx{СuǾ8aNgʛ;F{jʧa F^_n:eK-=ΜM0 o –ح+GL"Zխ@&OvslLxu|nG/ix0__|&eia*ȑy4>>;cÑ)9H H&o'O˿\.E1LߡR {J~gRӮ+W7Ԙ'&~# %A߸%vk}6UEtb~(2?(8YYC$E‡SN.%d5beW#~B|5PX$m ~7jYVXV[[Ӛ9SqpǟCC(--^vFUsb4Jv]qQ>LyO7/99EXN4bTVV,wx[&-ksp12։MoҽBL|7*U(l7s[\+s!xhqauőtHvyxB*-b^obP&k,86Hb) Pt<5 DU#qbV!-؝e@e ,]$eDJغP^ L_ =[~>MyWwo^gop(W8An`/E<5byв<X~KVc<+É ]alژߏhV"xf8N@Nm)zQq*elgxtpX̮^Y@&FccM½icͶ8{*՘r=\{s!8a%qG:? |oiSņ krp Æ&j%VmQ :x }*j!M¯9ʝQHO*pbZ$f0ެt:&͑D~Ym>9¬'濿|$.⤸MX) -\)@ʻbʿ)#$ycCY3GP0w,{Ni̺JZv&Ƅ|j2T!Qy\e.oq:6/k1g:%An٫iӺmF:`تPn׫,]Y{1,]Z0n2LCe.A,U2(< sc(0;'(@ 8Ȁ9J\ʹL$} axjY1W>!D_AA RVaV E^yz]?Yr?AN |V] *{g!̪f$bWpd]`#ָRI2bz=;q $pfcyx iSCJܲ@( 0̭(8\<L[m-%2v ֝Ku!qT7i# G(Gaگ{.1вI1A S5FYCJr}hH<|l_b'i|Z{y//zq }9Z&4AtIaVVavU ggX['q][ηXYYQKmO<Ctu&A)._ !M[5E0ѣ A$h A H HA&4A 4A M$hPA7`џh/1?RAR+] sA>4A M$hM$h A H HA&CS+@[MܛhioRP,A]ګ Qie_ᄈ 㐈mR'EZ(II~.r*c}-h*-jB1VY؂9К;P^TcZ-;S [?P 2RO H((ؓDh]BZ\g"r/vFĿaǖ|ۑ =[2¦܉2?Gc:aXU؋]ubM\2+ }vTV`;2ZHN\FAF-vtEcbbNuEN ap91MG_n!IV P~5Br$01Y9k!T||4(sŊ-+&0k؝Zs=Q8F&A?xQ;lTw2LRq}ݗ T7z(0kaJ_3B,]2 oB9=ĸd$( 9Y"H|yõ>Eho'שɇ~@L /% 1gR;sUoci8x"$b)[V# %ESdžcu(OU 8PSq~NJ0T( ޴L*܆z ,t9 zrB?#`e3advLmv:%\-#s+olj2H{1nQ~O023zbbnB<q2g0ED&^ÁڸWa?Yo%]+~&a<50 zM$h芓¬,=\AsamMFh?KJJ:BsR)lllfD'jjj!::t[/"Q 4AtEwM&4A M M$h A 莴[IYh ADW4҃j~?j_%G*BjKA#ȇ&4A M M$h A H z;/e`TklHm ,תwo^?A L6 |jZ/ǝI.@ tm1&XGr<9*@XSovȇ=dӧyTWW7/̓xSvR!Ե]2v^I׏a-`*=Ǣ3\ֳ!zVfk٦|ښӦG"j7^± {F)  Rm|VDnbݖZnXpCTjlYUŪLDDoO(_d|n߇& pֲs⊔8$2&ن'rApW2"`p;>Op4x@yQuv@p)n܎v_,}}$~l Oܧց= )ksKytO Q K6e_5:ñ)ؔENwYc)^]-1enG+߅BqZA *Wj=1kJ]‚r9J w!1N*c霐ty*(B H"cZnp, KS?j{$dbJIUr-]tfaRΏX]nA|J Z ,8bfn/`όvXp%f#X߾uzN+Sa=S@ |XڮoGrHEҼ@y`8B57!fgMA?aKHX~B(ͱXO1;kCb0YgdXΣ'`emA]/ف]GF \ >]_tHl+|z?*ǹ<:P,p<; Bj$hGON {|2׉} d'n̽!K2q1cb \ *|̥`H R/Gl|#]ňRȷ$\?].?y'yZ]:+Y>g(ŚP󡙿7Z<4s[h#5QӴѢQgpPQnXCgͿ=3Uv<g3JYÞ_X{ XdKl!f5.V6e<[{jIs~T.ѓ-* GVb;쯣 W'rʋfE&`gfC{A\:" h j;pYRg\Ss[ r9֭M_wH,VYBbXB8Mt5MW\!z5$ M܏}ۆU.,f^Vl{w9bN]˖ɶ/V0 HA>4A&4A M M$h A AD7ջ[n*0`9g7oee*ǝjyAZ-]b۷[Gw۩T*^^^Dt9Ҫ&xT<=v##-4ܪ%n/?|c9پ2[ϭɢ>2Q׮"YI8gLq|}|ͷg#,#G>.:Ox#;;G GJff A7' Y ZbYmmNk:L ǹM>tLzgΊMV͉YZ+uqE1b0qa<(qb9ySYY)=h5nko` z/4=4W˲MxnTs6pXBk۲Sqqcӗv)©=iLKi&7пG:!\\CbAh>jM%Iu`zz̊Wۤe0jdNGNNFGMeGE0g^M˚#o%`NesIx&:: ō;W-$iBWRk^|Ə׳jMO1klpc{vs8d8J.U/ԗ813WM)e.K- NqSR-)ƕ2X6BJOFo%ar.Sy~k!;Ռ-*V|rXҒϷv*I̩Wߥ&{cN/zzrlP()\Z>K[NaSfg ,I>*(#G-d.#Lx 3FbųK>Iu}0!'e]A9Wˤ7p#S)[6 S趝Gb]nbZ^PfO Wq{ݳy5*L0pT66哷C!!bo <@.z8J)uxP3?}2 ֓Bl Ŝ$M%)F⌁eӾPx{z@~m\l_hAD-B>)"򀪺:ԃ륓hll+(t:]8什=: ^@;xA,"-LXhZhZhZhZhZhZhZhZhZhZhZhZhZhZhJX_@nƊɉ"""񍕰ƅ4$)rP(4E-4E-4E-4E-4E-4E-4E-4E-4E-4E-4E-4EہN[;euIV ED~ê#@z HhX p3%`)h)hqՈV-4E-4E-4E-4E-4E-4E-4E-4E-4E-zZhZhZhJXn 7WDDD+Xa! iS`BSPhZhZhZhZhZhZhZhZhJuגx ):w |}Q#@U쇨ǐCϽq_ԮWwt QXCQ#2v gu9/*ah4{B<O>K1 xIbʓ3ICRgE]_`G۱D0ƟgPcdy@w~ϕGQ C{@n E XӾljUWm;(9@sM%l]JN;(MضFsp`qmP (Ww_[Q–;XBQy}֪4Q(eWM ^c,<z_hu_;=@\.AVFsvL_OU\VV,߄$7m]dXTW=6zޮԖqLaŖ*?ĺ}-j`BɆv ҫ*z݁SRܚGu\?3)U7޹wr_;m1<ğ25WnN1:/}@M[qJK+p) VR6i,9$aLYmVB3(sàhU]Y:մNC!.B['3L %.(*CFō R1g*]S8;<})>&TjkzZ{=L},/; [5Z&3 ,kWACtzZ,?,A(6xٓE۸=ϴr\UB>[ } FZxǓ À YP)kxjV/&ͮδ(Eq*/Nw*~R> W1?4GdU{co7 !V00zC tc^{c'c,noc!cA!}t9*~6Gg\Vػ,Ǿ}yhգD_⛇OEEA #HλuxRrεNLw <~9Lҷ`zlD*W7st^tӿSó֔Z@qcXC}? x.9z%qS$xt ~?A[茜m"cx |Q)18h> n2Կ0g|g:6* Q@{2 9 uDjAw׏~_y4^{{Ovgq{ :Q^TD:ATk~Z帎|Thi!t 10n3s{˟,w2'Ɔc O^{`f L ̖+5Q`sQzΞS:K=l 3,޸:zh ~!۹L JyÁo@Z,ɿU> ;h}?'FQE Wt^{>o'h]g[^ @\>pvӇK顯#b[ׁY^O'e:RfV}xGkەnJc ZhHHHHH+!"Qlҭ"B^h%`&$D(:_B%rP(4E-4E-4E-4E-4E-4E-4E-4E-4E-4E-4E-4E-4E-4EO"d8+ɟ]K2 B\V~ JDh߶"BS$BS$BS$BS$BS$BS$BS$BS$BS$BSBɓx<Ϟ=KCCCnnFY_ֿ`}N_~B}=ɓ'ihhrZݴaC#䓓JKKioogL D'ۍf#**nYDhg+rP(4E-4%Yv![nd;`0U>Y6,ķ ;wt:+*o y^+c={}.N$'%uOع䤤^˽m1aYe+W }ӿu;2i"xErR%z''Od[.k`ذL-cРql=WTrf 9)g~ eevE?hP1y`/~n}nnz omy;`Ͷvӵ}^Q*W׋ |=q ef2O tW8[[Yt9:0eD1װhA[ΘQ/A>dт`7o| g@<(m 2,+=[|A[c`[e^{?l':^=5r1C*]f3.Cu@ٻE xi;{ž9m'՗?93zEǏXz omyAҾu#hA^ph#tVsN'0e=g3;خuEN'Ng+ۗ_$++?nxjf8NNl{NǏ`:'zd7ò2ټ5~?n =l6w;ytF|v܅y-.}nOƼNl63,+Dp(Pv]}FrRS&M$9kV>z`:ݶe &0dIG.N-.=(-9~AV^'3;v`:LȔIܽdeePv}9^?lm Hzuq}cܽ낽/3!#mڛ;`}<Z+?aD$o_|G!4EW9Ch!a:0{|*Ź!ZQǓ3"R\.ǎĉڛg9GCCCsNsN7ߓ0N ksTU BtRDn됫` Mi;)h)h)h)h)h)h)h)h)h)h)h)h)@m>9IENDB`admin/images/buttons/icon.png000066600000005335152140537220012250 0ustar00PNG  IHDRtGtEXtSoftwareAdobe ImageReadyqe<#iTXtXML:com.adobe.xmp !PIDATxyLgo* x DmqsDMt#qf$Y(zF r r @9@9@ r r @9@9<.hC{:QKJ-e'.PctSj}&2IaN-Nxs1 V/%',YhVά\2z^鬞.JJAVRd_[<'j$F)l9~K iuȒndcx".OKTIDOE>n*㻭\} xȲ}Mm^N~$c\e3q}&((ݮk>!Z8=>Ai4/dM:埬BE5qJCYrl^^jmN7tؠo +;,8bڱc b gƵǽ=vNG/)/,״J[ȊnϱeLzr٩>iR&~@}kBQHtoH/&ES+ ҭbQ33u=/I5tKg$E NTF4UI4;CX56]U>Ư8AְtzIT{|{?$FV@SH4H3@o"m%='nAm_a}qls(DEf+dgfF}lW/ߵKt$bD'kbR(MILvAr|XrKAV5H[8g|s=CE5uflh!ǰm3sM$:Չz8%Я"ي@7{ߙb7ݏF1ﺟv+ FCu&w*F,<Ěc)WER Rqk0c5fq1X@{jէC!)Wc|i9^[yׄpRԸc2xtQjʎHdJ`1ʨgԧ#dyȭ )5ـhhFj,sA}Z!W'o{zΞyJx!3{֜>t케LG~ZlDT"hYujDS#kݸVhBuv%ӴF-bi9Q.TTeaR޲wzyM^ []"z?x=7q5 WşD'&9*MJ<6_>sڒ_pU } rGP0njn/qeR)I3 EᩈSw)IL1iJ8ux3 'g&bUzڼ`vMk(%ؚ-d1#ny (:XxDMK"phz.]rK4vP=K)r r @9@9@9r r r@9@9 Ȳ rIENDB`admin/images/buttons/default.png000066600000012717152140537220012746 0ustar00PNG  IHDRtGtEXtSoftwareAdobe ImageReadyqe<#iTXtXML:com.adobe.xmp %)y$BIDATx puJH c @=16. ਖ਼:ԃk';M&cjb@Sȼj!@F`=jY.Z=H{m**ġ&PQp(8T* CEPQp(8TTbŕA zlﺏ+}j)ٙiSϛ5D?x{=e{:J||ŗLD^[x,;ݝLgj_~}9ht{n@.--s-OUg/nA 50gkyUs1b|ff W9Aa_4?7Tj!3\BLRk H'"FGÖ3 0)ڲ2y舗 8XYG3l֝h[.l+>  {hp5ۏnY%Y:G퉶:Wm8vE`1W|_ӬpDtv:u[ Z#=~d-LFĠbP^~0/}wsi:9?,L{9 h;F؄D'&cex3\oqRd: І6^l([b')%hcoІ%tToz@yhn18SNf3 cP^fFxvv,y7m:o&#7'C'(ZzK98L+mUIq=/)pH-.ʗ00}8ӓ>n̿|E.owOo :$cĦ;L?L TKڰUIvb8ȹY<Łӊ^ԫ/j`ٳ~sFӮri /Kj y ғw|<3s `bbmN)"JxʣnJ4=eԆmhICx渐a[jJq-gm:酕8x]H%}BqSakPH̘,5/) }$d\_Դ3J".>^-PްVV'D+A h,sɛs NvI] Ch@߰ LNRL*!`GP$ܙ͖JcȈ3o'k.û&7TR/q\r:A!msm-nd5o/ϽuhF3Ghɹ  Cv~PZ.㋮\Y6:ZuFSP}5/]0xea=GIXKs&N-k[XdT7}c9Oc/3zYYh$() fJwyI",rP#cǻ $RRX3f׼X $@f1KVE@e3^5`W9S{R]~PXʔi}KA8#b?<t)N3i-d1r+}|۸[(9qRm)}9%|\\RI E"ETmǰ%я@D=8rf(vZK%OFU<|/  r6X=r,T /^.F (28;mgg,;{f<%\MH`-Ψ8tb336΍{ r'T(Uݴig!sE۷;k**bnR+Eo݇d'C*EJRp8:_c7H&Q'zlQSۧGRʪhAPQp(8T* S~̿"׻n~לz\ ("ӿOo|1 P CI/$ւTEo+* CJj2k?o;hoG93)mǂTl{nb5λFOc|7w{WulC=*v u2nw*>iпp a|tcn\Aߟ=vtcn;~S\a(̭9vt؞)G￞V2aY9 S.g_u؝BmLj*,\m98NYcn QI׸!&Z4{Znd.(07yX.1uBcKq0!';"](va9v.QʔҮ26y1vekԌ"?ѐ@R(cgR+iq(dLTċ15elJI$`Q%l7fFt*-mab^?g9>\?4%c@AGc`!BAڱ\0aŴf:LΌYp4) rQ8$ǁo2ݝ[8I\khqEn )Zc pqˎ0TpS,w*rSql >K2hw[GB=)?VҰ JnWAf}U%Zu/)ێ9vt8GU ua589 Y"bgKn1HIMNt0#%\ߊF\:fVEmHQvޖ9aoA ^Ke0$}˴˰Jk2B U¯l;/"p%D ,4$c:r˸7.?JvzvЖb`[Iq !uY|r1UD@PHM*2G)7v8 cVX]CMW#x}heeڳWlEEP/TfI(R}XBG'|0-~KECE' Q-HU* CEPQp(8T**  0^͎JIENDB`admin/images/stars-small.png000066600000001043152140537220012054 0ustar00PNG  IHDR"D4gAMA a`PLTEMɿ&rګtRNSPk]D44dH֜$$mFDIDATHْ PG\QF/:*N]订"LjqFڦiOH=1iycHĐ $!a"F) jfJd5Q#L{IE3!ݝz} aH!ޗ#x6t9+$鶥Dp~F:RSNǐ ~D֐ %ܘ0ڗj#i~{CT F@ԔΔ8xϭ> 0ʍڈIENDB`admin/images/test-needed.png000066600000003637152140537220012026 0ustar00PNG  IHDR@@iqfIDATxݛ_lS?^ǎ8R3@(Z&݆&V*U=uS[J7Mt]Ӥ T!E,#kԔIq[BBۉǎ ιץ)/;{9ʷ~끻r`>< \.kV,xxt.D5U`rOge6+gkp6P'+@lŘ*PC8 m\N($C Fͅ4h96S  Tm*b7/6lgB#/7ļ~Bs  l n6!g}rGپ-KS~F!SDNq؏i3@Bdk3qjEElBz*ڡH*=նɱjH @9r3ܮDM O7-U p"?e[kKPʡa1."?hj)O(Z՚˭&^XA=Q4 q7D40,Yd0GvŭX=!:GQye+由CS:/k<8{qzHGeI>)$ٹ\^l_製;aL}YyMaR/کvrip %S&`-M|p'vs+0TAەa̍0 b|QgɢX_mٵK311v罾QeMN5`lOQEyS+: E㲥sزFYEㆩ'_񳨼 P'bK֠0hdWR-ٹQSӀ] k8:eąANy*)b,OspLYJtE-x(0!as~6e:6-f3GBFcqG\4׉[SYVf3f F-Q8U9EU B*ٓqCU_ U F4:@UKvOW`LSo.lip@#-R D#ZRϥ7?(Cb*~ qI7#1㦝w85'#t&8U^oN|ܢHQvl oB^8&/a}nve aĭ;C9|& |y 5ƈ8Z":) B 3tQE,-Zd3Q`b)fn;а |.f7h -vƶ!`WF\b\  iOqstxn632;Xpyڪ>ED9y}~PDD&6yĆg3IENDB`admin/images/stars-big.png000066600000010443152140537220011511 0ustar00PNG  IHDRvgAMA aPLTELMQPEIC2?e[tj(^Z,]W"DG0jc)LM.h]8?2ӮTS-\y$bK#05t4T/@:;A2(!h)7|%8[(ZIDATx隢@ڽ:+"o5Ū+?vۧBL2@T@T@T@T@T@T@-'r2Y~Twu8o;P}~SP)B)ZTa Vנr/Ta%:>hB/ZTa%oDZTa *ٰVhX+Tz8lRRƸ* \X+J0A%VB\2FKe@5&;C24ڽMCaNF}iݳnn4(#vrKu98Ew` bC:#:CuhR &jȫKf g5VU7>|,݇MQ^0>ۦbPmEH{{Do~ioiSPl&qCxxz=>4:j$,>$xOOH/i<_OoTIp^k>Zd&uR&83;"Ui1w6)`>SKfPq1#jp6i])bfe6FhPi *rQF=*-(8v", ?i~=mL&iELE>G1=?HW.EL^ßҨT}V\Zpx~S#zq5XACn1X1PAC14PAC14PAC1PACZE **********1PAP *(bH1GPĀ"fPAC% F74JwsS\=Go1P!/T+ 6-k3FcQk.|;;d&1\e&1d&H>24E uzCFcZ3pr 0VKy՝+bC6SU.jQ#3ԣeb(b˕ UGlhFkU]qEyO-[쁳قX AuS3u)Oz8"<:]kc|9{[pF=S11SǚXG1TPAC(bRFP"mЗ!Y9uf]ZѠcx0Y-u,IIf4LJ'J]fbg5VE^]`5-6S>鰚W=Q<-m["ƊjF#"&f3NzȀ"&q$9g=4EMLEELڄ.w.'ʽrϫ@;jnI_Xġ8vӴ+&^YrFMYwJɐ^~}uTw˺tEbj( vud`gQ̐^3#R3+6&W`7C ,_UNH/{\hcT@T@T@EbMCkIENDB`admin/images/exclamation-mark.png000066600000002352152140537220013052 0ustar00PNG  IHDR@@iqIDATxMlTUP6%PRp!w..D$"[tWY hrpGDC\% ĄuqtzۙǹI}s==ݠ,,Ǔx0snc2.~µVբ&($]O"qD ЎjE+ GpHh5 `vaEя8\( cx+W.5`)N ͱM0Z[Omb:Ѓo0o"0OcDQ잾ήZ o&AsUaoجOy;T3Cln ،:a*^ަɆLv̀GEKdBNH3 ڃ|! σ4^ǺV+ʀuBy,'1dBT ɉB!Q + itvD-֐6WPXEPⵣ$;Mc- 7cDBVEάvE O0 ǘk,VoڱTyԀi0cU ;Ngk- tt4[5k1O`IŎ M,w%O\ZI\Ց,dNĎRۊV*vxJ9pWbF/<\[\[B;1Cr=Ø!!qScp#bg~PboTo(˧n KOPqo{l?*'.}TpӃ.h2 GI+|1D洐8 He2T(ZĀSRd%?"CiSOӖȉK)zՊ{X JNJ5lwN 'RaqA`ko@T, Z&v$#,-ɬ9m{Ti33tB9:KJuzƮy!YI{{IK{ &–ex_ER#+iZ䂰 fFmMc5^K¢Fyz2F?-,M>`wJ \} }?b!IENDB`admin/images/google/uniform.png000066600000006623152140537220012556 0ustar00PNG  IHDR8PtEXtSoftwareAdobe ImageReadyqe<ZiTXtXML:com.adobe.xmp IDATxmL[`@hxue@SU&>t4"} Z-*Z3T*R|aLjRMS.diEj qK6/ؗfcl'_{=?sl666 Ѡ P**B@@ T T PP*BB@mׯ;x~t5P+4X_1qᥴIͨJNDR/|Vr}-J**Ũ3 bIK0dF,BB@@\A;*.vPaK/w}z*pkV0ȲPGT;3\u{jw'TP# ;o_UCS31ٱG4ޭa/̱? ,Й+q*a#WfN{ڈ;7[rnZ>e^\ߏ'>[ٱ+3dd"Gy͇]G%W= &n2 kぃÿ\t|w7sbSهc`]XQ'UY;rxvx)8ިxdh[F:Xԝ򪍦ÿó?zlD9Rj8v*OR+bo?z[NP]P@}wtu -] -\]9]U5dvTR`qR!%pxGqRgy;;0=_nozn,aB!s>"N'ԎEt^N\ `APV<0ATNƅISw<-f ocN&@|Yw>ؓo$_R)+J_Y NյD$ vQP 6PyO/ ~€`K*t0^jh?Y01:3yYש8u{R'dh"FCSSjj(b8NkWWQ іs8Ph߶mYTjTRnI=%/.34:|b,fۋadĹ?%5ĵ&3_Q}}%C)?C`*h^OS#8\5L}OT[čFkaXR@oPlm{/Dz[N.fUGdmHIS&Do$ӗݷӳLOlJwqBL?R>ƑDf,ceBUAa R`%)TوD־)'=Sk|5K>{='Q Vu 1R[FGEܷQEzH5a  HM`p7/x%OUO($S5QG]GL(p3'~wrɹzb,"VTB$-;6sxjK52 H&9BQCEռFf)<_F]bN+vJ%!jaBԇY YIB'v%jkPAm[*2 _PAE6쬌Icq]w0F>YGtv0Ehi|MF'DlMd.lz^fg9r`_Q,f[/洳'p5'Ҡ4,KԓM$)$B>jBBw3®@Pi]m}综3?w!->!v[f:GBG4;R"jz#{pi +-It<#R'\D#caױ[UNe[gqKJ :1H҇蓹e䥙L3EZlM~Přwշ]Rd{țZ7s60Ķv6鑓!5GJMsF f m鯗)Aߔxgm_< +V*+`@@r}=+[̯wokWWFGsL:5CMUJ0y(TIK& B@@ T PP*BB@㴣"~RIENDB`admin/images/google/light.png000066600000007174152140537220012210 0ustar00PNG  IHDR8PtEXtSoftwareAdobe ImageReadyqe<iTXtXML:com.adobe.xmp p 'IDATxoLǟ;.(2T6p)&MdDۋj^ ʴU^i)VfS;UtVFuR* N\R,Ǧ;s1|{>T*DŽ&o=ATv+/F8^v2$ @T@UrgՕaky񱗾M8b0/N&x|ccc}}̵Rho=Қ_sOzGcǎY,Xvwl%XC$T ]fhdH@\懼.O/LxGcӍ޽1,_i']OvucWeNS>q8@KT4pyOޚ_H"o寫DoyAa`z}_^[t݀Iϵ|UT n_~~ t;DZt·+OK>6u\;hm6SW-L(;m'N`;hCm+-h%&脣jZk;w5R }ǯjJ#:u[$} 3 X SEՖi7|ߐiG񏫹ɐzlNJ'k&ʫJwưA,CnBIo^-4%XN'yyE]pG/XZ}B~Eg,UV_ͪ$M}6 5{|WyZ速.)G-RcEp:2+FDxc y.g Q~7=$Ʃ.^43p F v j[FÏvll*l^znD‹4Àfɻ]z%.QK׀S SQwڱ˓ޠW`t&,&4Ph DKOߞ5D;)-J"iu3%WNzzhh_FEiV9z^;i\j  'm3q $'(J3e4 FP>"JhGڐf~Ͷw{f$6/{az8CDմ[i3l_9ZBl/3g;fzz/̽hgGRkxERZtĢ2|HS #I%r 1o.[v9Q_ rvܛ!BdErId:(P~Ͱ^#Y4y.% Qsa,TL.ˍؿ@R lK>J.'ᕆ1Q̋rSVTZɫa~ʻE)>rͭB $̓wJgX$bhAuWziB<呺z&ŭ_~E.[/rs'cHS;4smr8=y1VN. >wl*Z` Jr>; -h6侀뒠L,wJ3G|gbP4ZwZcLX*$B hED'y{̉ [}sWxKnV߶ g QoNDnlԡNsH`Ҋpd|'}6^t<:*N1%׽#+֎IjQWsr;lZRvҮV^uJNY£I:s Q `~{+vN/|կa˴>՟6WcO_0["^MSAxot+_9:KRUU9Wc<8=īR eVCRI y!KQNi34C\vT"ʅ-=fH_|?Z?ydk30Gq#,ƞuFCC=ڑ~ȓU^ʯ3sOkK+ɋu) Q1ڋM[-S׾ KZZՍݒVjh+T/QkG9a9~[mQ DQ5? @1Q9BPTƙPeٚ׵x O IDATx}Lǟ $x $lvBʊYGT5QұdžtZmA:Q+2 MT@I TiPPT6t*JNOj ~=bcbc8?r~s>F$(mL T P**B@@ T T PP*ڭP @2<<5csͨJy9xqe̾6x+,z;:t3{\Vsr}-*yUJEЂ~x:8pPh1*x--d \hBDli]-ԨM T T ȚnKF͈_&체>Q5ab Uon] fb+/W*@#Ej{=+AXYjKWZm-v \5RHH|E&=ܮZqx08&Y^܈ϑ=5_n1 L NX+ ="ߑ67c1NS*_Dk:UH]ۥ@L\֩h9SƷ[KhnD6^)sɋ t U5|깟ΓFcZcK?:ni*;R+h8i*cp M7aKt/M'pd"RdۣTvi\;QW,էX~7 vNڝc̆i"CV:)Ɵ$2Ӊ\Ø+L"_qF< K=%L$'?SWɵ)0ќ</EegkT^7ؾtJK7<.ĐR:V訥u @?>ڕ:\oRNja ٠2l]Rgp#IOh2|{pYwMw[|L9q\BMcQ_#ݳo3&]Lxxhajvq*) (ޒM ?]07/tesvj(bߦs4*\uFOIMR"V.uUg&%Vݐ 9͞SYc𒔹sL ~:\\6>E{7E} pV$úbm^vFdW JK{Dgh6LfLS#NQ&<ٟި*c_3uT3jzm!bPlGÛarfFZo=WXLo(q 6$5؂TLtF< Sѳ ېz Cԙ"ȝ@IUTgaKz sH CvX 2? [vBiC :8cx!YmQʳy>P[ǏzBέ-29+cewn?mⰩel ,rN]I EsX7ŷǵɨ{aPF+aM+v5!ncUB̩ԇ!Ԍ$WTkQ>oJ\Po>xw/ /΍7Rl[~[Wew[K޳Q=g{/Y QKe$?Q"44|-|Χ7 4|%vCo96 J*?Q,{/2ҠkH%P:Q|i۷J)+nx>~ANCE3vhMٺ7gQU9Vӳ*<-YW5'ڜeJYo2M9WrǭBY$*8.a&귦߆Am6?]PªUs49.L e7qgXVX wdZ(rzo@y> 7Á7}De=0mx8~(i|={C{a'=J]R$aKկgVSm1OY8T]5^2v<{TabRV4TjqWO~3?v8~2뫪#["XTJ˗]X|˷ݰ9YIG 0˰`w|L^g~ Rt}**B@@!T '?R_8+Pi^]78Kф72H -4t3[9b 9z2"\}c1 D-*m:SU_ T P**B@@ T T PP*_NϑI WIENDB`admin/images/error.png000066600000002531152140537220010746 0ustar00PNG  IHDR@@iq IDATxKlTeL!rSFEcą74^ BPX +V,TrD)( %͸v:3g3̜3O|/wa")alLD/sgp '3.)2$$]ix)|5A 0N*h`?OM1 K/yKem.8Ѭt<[Ґk4P1qh 0h$@#&TF)0%7A[,„eA1~Ўo&Y#hmz h]WX&hiB-r؇ ʚłQ ˓RǹW!Q9aQZ(Ǘi {FP̀Fk F x VaT0 gElS14tf&'{: 5`Vg*5685̀e;m  ὖi ZaVdL!ѵhܹ[[mΝM=tEK3h@⃝+Vɍ}l[2PйuYƌ1qŪ_b7u;ϗ_uMۄۺT O<^L#m[\*DŽj\ruۖ4$¼P9ANq" f`‰-q:oH';Q&tߔD%8tO/'7ah9:BG޻oΞ;L;{Fm&-~`p|F)w1 p| -5BIѢGk-- g5&ve.'{0dS9ޅ˙ɖ˂e* \A p< 5s\m ( dzS%BN#4eJ!6'xX8pCȥ*&E7@r倰Q2ZKpT>Ts=}xE8upPWzv6!*+v Zk&O#E܈+un֊a`Y:RGX7 ̕c$"Z46XG*)sޯE$G :)3b+TvS$yvx(s&^6%6C77Q Fؚ6p|a<;%\OwmƯ?IENDB`admin/images/ok.png000066600000003131152140537220010223 0ustar00PNG  IHDR@@iq IDATxYlTUsAөS(*F([eI;`"IĈ"b-,Y2P4*BD&&(NXt{i%tνν|G9T` 0 xx4] p *UU7X,Dt:v3p5r 4q蟏 Q⪉MB En}縡tD0lU`Tb`iH D\&@$0!q3ʋ$"2P$ڊ'uZPNŀxgs}9  $2 (RdKȀWRX<3q9p'?2| B~0ˀY\İ8=fL| c裁ISX<~)UBn6mKX*'}Y1>= d'Z0`-!1As"o"'5)Qe226]LN&>&YoN1GfɎ*$8w2ޞiݾ434ĒEBL;wizk8\[v!;j4j#x7g'mԷݖ.CeGXmlgsOnlUV?@׸X&q4-.cm񬚵)F[sW.&jZo^Z /S/e[4-37F۽7Sr]k2I#O}+]VTd2+}#PM9aSDnFT9r 3x 1Yj@h{JYXص5T8P:׀}Q2}A;!^-i _r&it !FKcAlXaBIENDB`admin/images/padlock.png000066600000002643152140537220011236 0ustar00PNG  IHDR@@iqjIDATxMlTUvhK;P DK1Ҥ"I#nDHInun, lb5 0.n\ "mE@[Zq]L;3K7s=s:{ϽךԂaV`e&p _& 8]j1G,TSN5F D~5q"~`ԶǀvR6Zn09O -eQn. ?Ǻr;@]Br(';іr b Ћh+R`wR D[%tbP | ,]DVST? NDs  | 4; myCv9v+/vǁ/SOd | 5OσlxjZlEsH@-j'}VbCĆ:l)NϨ]Y1W`n&̚Oîqa$Iű/(F$"_: ![4M&sbB|x'J T2mO v#:3-m8*] %sR(؃L݈cb@ rjkp\p&U4pԆ(8h-jYˆ![KNF=uҏWGg x؎ py~x:3F23C@#1$]} 0C IENDB`admin/templates/fix-redirect-uri.php000066600000002703152140537220013534 0ustar00

checkOauthRedirectUrl()) { $wrongOauthProviders[] = $provider; } } if (count($wrongOauthProviders) === 0) { echo '

' . __('Every Oauth Redirect URI seems fine', 'nextend-facebook-connect') . '

'; foreach (NextendSocialLogin::$enabledProviders AS $provider) { $provider->getAdmin() ->renderOauthChangedInstruction(); } } else { ?>

Nextend Social Login'); ?>

getAdmin() ->renderOauthChangedInstruction(); } ?>
admin/templates/menu.php000066600000001666152140537220011325 0ustar00
admin/templates/settings/comment.php000066600000007460152140537220013661 0ustar00


%2$s > %3$s \' for this feature to work', 'nextend-facebook-connect'), __('Settings'), __('Discussion'), __('Users must be registered and logged in to comment')); ?>





admin/templates/settings/general-pro.php000066600000013526152140537220014432 0ustar00











get_names(); $adminbar_disabled_roles = $settings->get('admin_bar_roles'); foreach ($roles AS $roleKey => $label): ?>

admin/templates/settings/memberpress.php000066600000024475152140537220014550 0ustar00










admin/templates/settings/login-form.php000066600000010070152140537220014257 0ustar00





wp_login_form





admin/templates/settings/buddypress.php000066600000025220152140537220014375 0ustar00







bp_sidebar_login_form action. ', 'nextend-facebook-connect'); ?>








admin/templates/settings/privacy.php000066600000011212152140537220013662 0ustar00
get('terms_show') != '1') : ?> style="display:none;" > get('terms'), 'terms', array( 'textarea_rows' => 4, 'media_buttons' => false )); ?>

admin/templates/settings/general.php000066600000032172152140537220013632 0ustar00


'register-flow-page', 'show_option_none' => __('None', "nextend-facebook-connect"), 'selected' => $settings->get('register-flow-page') )); remove_filter('get_pages', array( 'NextendSocialLogin', 'getFreePagesForRegisterFlow' )); ?>

[nextend_social_login_register_flow]', '' . __("Usage:", "nextend-facebook-connect") . ''); ?>

' . __("Important:", "nextend-facebook-connect") . ''); ?>

'proxy-page', 'show_option_none' => __('None', "nextend-facebook-connect"), 'selected' => $settings->get('proxy-page') )); remove_filter('get_pages', array( 'NextendSocialLogin', 'getFreePagesForOauthProxyPage' )); ?>

' . __("Usage:", "nextend-facebook-connect") . ''); ?>

' . __("Important:", "nextend-facebook-connect") . ''); ?>

get('default_redirect'); if (!empty($default_redirect)) { $useDefault = true; } ?>
style="display:none;"> get('default_redirect_reg'); if (!empty($default_redirectReg)) { $useDefault = true; } ?>
style="display:none;">
get('redirect'); if (!empty($redirect)) { $useCustom = true; } ?>
style="display:none;"> get('redirect_reg'); if (!empty($redirectReg)) { $useCustom = true; } ?>
style="display:none;">
get('blacklisted_urls'); ?>



Login Restriction page'); ?>






admin/templates/settings/ultimate-member.php000066600000026642152140537220015313 0ustar00











admin/templates/settings/login-form-pro.php000066600000022772152140537220015071 0ustar00









admin/templates/settings/woocommerce.php000066600000041024152140537220014530 0ustar00











woocommerce_after_checkout_billing_form







admin/templates/settings/userpro.php000066600000024022152140537220013707 0ustar00











admin/templates/review.php000066600000010711152140537230011652 0ustar00get('review_state'); if ((0 < $state && $state < 5) || $state == 6) { // Rated 1, 2, 3, 4 OR 6 return; } ?>
style="display:none;">

Nextend Social Login and can take a minute please leave us a review. It will be a tremendous help for us!', 'nextend-facebook-connect'); ?>
admin/templates/pro.php000066600000005736152140537230011164 0ustar00

Debug: getLabel(); ?>

getTestUrl()); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, ""); curl_setopt($ch, CURLOPT_VERBOSE, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($ch, CURLOPT_TIMEOUT, 5); $cacert = ABSPATH . WPINC . '/certificates/ca-bundle.crt'; if (file_exists($cacert)) { curl_setopt($ch, CURLOPT_CAINFO, $cacert); } $file = tempnam(sys_get_temp_dir(), 'nsl-test'); $temporaryHandle = fopen($file, 'w+'); curl_setopt($ch, CURLOPT_STDERR, $temporaryHandle); $output = curl_exec($ch); curl_close($ch); rewind($temporaryHandle); $verboseLog = stream_get_contents($temporaryHandle); if (preg_match('/connected/i', $verboseLog)) { ?>

getTestUrl()); ?>

getTestUrl()); ?>

", htmlspecialchars($verboseLog), "\n"; fclose($temporaryHandle); echo "
", htmlspecialchars($output), "
\n"; @unlink($file); ?>
admin/templates/provider.php000066600000000242152140537230012201 0ustar00getAdmin(); $admin->settingsForm();admin/templates/footer.php000066600000000054152140537230011646 0ustar00
admin/templates/debug.php000066600000004630152140537230011442 0ustar00

Pro Addon State: " . $proAddonState . "

"; echo "

Authorized Domain: " . $activation_data['domain'] . "

"; $currentDomain = NextendSocialLogin::getDomain(); echo "

Current Domain: " . $currentDomain . "


"; $licenseKey = substr($activation_data['license_key'], 0, 8); echo "

License Key: " . $licenseKey . "...

"; $isLicenseKeyOk = NextendSocialLogin::hasLicense(); echo "

License Key OK: " . (boolval($isLicenseKeyOk) ? 'Yes' : 'No') . "


"; } $defaultRedirect = NextendSocialLogin::$settings->get('default_redirect'); echo "

Default Redirect URL: " . $defaultRedirect . "

"; $defaultRedirectReg = NextendSocialLogin::$settings->get('default_redirect_reg'); echo "

Default Reg Redirect URL: " . $defaultRedirectReg . "


"; $fixRedirect = NextendSocialLogin::$settings->get('redirect'); echo "

Fix Redirect URL: " . $fixRedirect . "

"; $fixRedirectReg = NextendSocialLogin::$settings->get('redirect_reg'); echo "

Fix Reg Redirect URL: " . $fixRedirectReg . "


"; echo '

' . __('Test network connection with providers', 'nextend-facebook-connect') . '

'; if (!function_exists('curl_init')) { ?>

getLabel()); ?>

admin/templates/providers.php000066600000025257152140537230012401 0ustar00
0) { include_once(dirname(__FILE__) . '/review.php'); } ?> getState(); $providerAdmin = $provider->getAdmin(); ?>
<?php echo esc_attr($provider->getLabel()); ?>

getLabel(); ?>

ID, 'nsl_newsletter_subscription', true); if (!$already_subscribed): ?>
admin/templates/pro-addon.php000066600000016622152140537230012243 0ustar00

admin/templates/global-settings.php000066600000007020152140537230013446 0ustar00Pro'; } ?> admin/admin.php000066600000075001152140537230007446 0ustar00 'nextend-social-login', 'view' => $view ), admin_url('options-general.php')); } public static function getAdminSettingsUrl($subview = 'general') { return add_query_arg(array( 'page' => 'nextend-social-login', 'view' => 'global-settings', 'subview' => $subview ), admin_url('options-general.php')); } public static function admin_menu() { $menu = add_options_page('Nextend Social Login', 'Nextend Social Login', 'manage_options', 'nextend-social-login', array( 'NextendSocialLoginAdmin', 'display_admin' )); add_action('admin_print_styles-' . $menu, 'NextendSocialLoginAdmin::admin_css'); } public static function admin_css() { wp_enqueue_style('nsl-admin-stylesheet', plugins_url('/style.css?nsl-ver=' . urlencode(NextendSocialLogin::$version), NSL_ADMIN_PATH)); } public static function display_admin() { $view = !empty($_REQUEST['view']) ? $_REQUEST['view'] : ''; if (substr($view, 0, 9) == 'provider-') { $providerID = substr($view, 9); if (isset(NextendSocialLogin::$providers[$providerID])) { self::display_admin_area('provider', $providerID); return; } } switch ($view) { case 'fix-redirect-uri': self::display_admin_area('fix-redirect-uri'); break; case 'debug': self::display_admin_area('debug'); break; case 'test-connection': self::display_admin_area('test-connection'); break; case 'global-settings': self::display_admin_area('global-settings'); break; case 'pro-addon': self::display_admin_area('pro-addon'); break; case 'install-pro': if (check_admin_referer('nextend-social-login')) { self::display_admin_area('install-pro'); } else { self::display_admin_area('providers'); } break; default: self::display_admin_area('providers'); break; } } /** * @param string $view * @param string $currentProvider */ private static function display_admin_area($view, $currentProvider = '') { if (empty($currentProvider)) { include(dirname(__FILE__) . '/templates/header.php'); include(dirname(__FILE__) . '/templates/menu.php'); Notices::displayNotices(); /** @var string $view */ include(dirname(__FILE__) . '/templates/' . $view . '.php'); include(dirname(__FILE__) . '/templates/footer.php'); } else { include(dirname(__FILE__) . '/templates/' . $view . '.php'); } } public static function renderProSettings() { include(dirname(__FILE__) . '/templates/global-settings-pro.php'); } public static function admin_init() { if (current_user_can('manage_options')) { if (!isset($_GET['page']) || $_GET['page'] != 'nextend-social-login' || !isset($_GET['view']) || $_GET['view'] != 'fix-redirect-uri') { add_action('admin_notices', 'NextendSocialLoginAdmin::show_oauth_uri_notice'); } if (!self::isPro() && NextendSocialLogin::$settings->get('woocommerce_dismissed') == 0 && class_exists('woocommerce', false) && count(NextendSocialLogin::$enabledProviders)) { add_action('admin_notices', 'NextendSocialLoginAdmin::show_woocommerce_notice'); } if (defined('THEME_MY_LOGIN_VERSION') && version_compare(THEME_MY_LOGIN_VERSION, '7.0.0', '>=')) { if (!NextendSocialLogin::getRegisterFlowPage() || !NextendSocialLogin::getProxyPage()) { add_action('admin_notices', 'NextendSocialLoginAdmin::show_theme_my_login_notice'); } } } if (isset($_GET['page']) && $_GET['page'] == 'nextend-social-login') { if (!empty($_GET['view'])) { switch ($_GET['view']) { case 'enable': case 'sub-enable': if (!empty($_GET['provider'])) { if (check_admin_referer('nextend-social-login_enable_' . $_GET['provider'])) { NextendSocialLogin::enableProvider($_GET['provider']); } if ($_GET['view'] == 'sub-enable') { wp_redirect(NextendSocialLogin::$providers[$_GET['provider']]->getAdmin() ->getUrl('settings')); exit; } wp_redirect(self::getAdminUrl()); exit; } break; case 'disable': case 'sub-disable': if (!empty($_GET['provider'])) { if (check_admin_referer('nextend-social-login_disable_' . $_GET['provider'])) { NextendSocialLogin::disableProvider($_GET['provider']); } if ($_GET['view'] == 'sub-disable') { wp_redirect(NextendSocialLogin::$providers[$_GET['provider']]->getAdmin() ->getUrl('settings')); exit; } wp_redirect(self::getAdminUrl()); exit; } break; case 'update_oauth_redirect_url': if (check_admin_referer('nextend-social-login_update_oauth_redirect_url')) { foreach (NextendSocialLogin::$enabledProviders AS $provider) { $provider->updateOauthRedirectUrl(); } } wp_redirect(self::getAdminUrl()); exit; case 'dismiss_woocommerce': if (check_admin_referer('nsl_dismiss_woocommerce')) { NextendSocialLogin::$settings->update(array( 'woocommerce_dismissed' => 1 )); if (!empty($_REQUEST['redirect_to'])) { wp_safe_redirect($_REQUEST['redirect_to']); exit; } } wp_redirect(self::getAdminUrl()); break; } } } add_action('admin_post_nextend-social-login', 'NextendSocialLoginAdmin::save_form_data'); add_action('wp_ajax_nextend-social-login', 'NextendSocialLoginAdmin::ajax_save_form_data'); add_action('admin_enqueue_scripts', 'NextendSocialLoginAdmin::admin_enqueue_scripts'); if (!function_exists('json_decode')) { add_settings_error('nextend-social', 'settings_updated', printf(__('%s needs json_decode function.', 'nextend-facebook-connect'), 'Nextend Social Login') . ' ' . __('Please contact your server administrator and ask for solution!', 'nextend-facebook-connect'), 'error'); } add_action('show_user_profile', array( 'NextendSocialLoginAdmin', 'showUserFields' )); add_action('edit_user_profile', array( 'NextendSocialLoginAdmin', 'showUserFields' )); add_filter('display_post_states', array( 'NextendSocialLoginAdmin', 'display_post_states' ), 10, 2); } public static function save_form_data() { if (current_user_can('manage_options') && check_admin_referer('nextend-social-login')) { foreach ($_POST AS $k => $v) { if (is_string($v)) { $_POST[$k] = stripslashes($v); } } $view = !empty($_REQUEST['view']) ? $_REQUEST['view'] : ''; if ($view == 'global-settings') { NextendSocialLogin::$settings->update($_POST); Notices::addSuccess(__('Settings saved.')); wp_redirect(self::getAdminSettingsUrl(!empty($_REQUEST['subview']) ? $_REQUEST['subview'] : '')); exit; } else if ($view == 'pro-addon') { NextendSocialLogin::$settings->update($_POST); if (NextendSocialLogin::hasLicense()) { Notices::addSuccess(__('The activation was successful', 'nextend-facebook-connect')); } wp_redirect(self::getAdminUrl($view)); exit; } else if ($view == 'pro-addon-deauthorize') { NextendSocialLogin::$settings->update(array( 'license_key' => '' )); Notices::addSuccess(__('Deactivate completed.', 'nextend-facebook-connect')); wp_redirect(self::getAdminUrl('pro-addon')); exit; } else if (substr($view, 0, 9) == 'provider-') { $providerID = substr($view, 9); if (isset(NextendSocialLogin::$providers[$providerID])) { if (NextendSocialLogin::$providers[$providerID]->settings->update($_POST)) { Notices::addSuccess(__('Settings saved.')); } wp_redirect(NextendSocialLogin::$providers[$providerID]->getAdmin() ->getUrl(isset($_POST['subview']) ? $_POST['subview'] : '')); exit; } } } wp_redirect(self::getAdminUrl()); exit; } public static function ajax_save_form_data() { check_ajax_referer('nextend-social-login'); if (current_user_can('manage_options')) { $view = !empty($_POST['view']) ? $_POST['view'] : ''; switch ($view) { case 'orderProviders': if (!empty($_POST['ordering'])) { NextendSocialLogin::$settings->update(array( 'ordering' => $_POST['ordering'] )); } break; case 'newsletterSubscribe': $user_info = wp_get_current_user(); update_user_meta($user_info->ID, 'nsl_newsletter_subscription', 1); break; } } } public static function validateSettings($newData, $postedData) { if (isset($postedData['redirect'])) { if (isset($postedData['custom_redirect_enabled']) && $postedData['custom_redirect_enabled'] == '1') { $newData['redirect'] = trim(sanitize_text_field($postedData['redirect'])); } else { $newData['redirect'] = ''; } } if (isset($postedData['redirect_reg'])) { if (isset($postedData['custom_redirect_reg_enabled']) && $postedData['custom_redirect_reg_enabled'] == '1') { $newData['redirect_reg'] = trim(sanitize_text_field($postedData['redirect_reg'])); } else { $newData['redirect_reg'] = ''; } } if (isset($postedData['default_redirect'])) { if (isset($postedData['default_redirect_enabled']) && $postedData['default_redirect_enabled'] == '1') { $newData['default_redirect'] = trim(sanitize_text_field($postedData['default_redirect'])); } else { $newData['default_redirect'] = ''; } } if (isset($postedData['default_redirect_reg'])) { if (isset($postedData['default_redirect_reg_enabled']) && $postedData['default_redirect_reg_enabled'] == '1') { $newData['default_redirect_reg'] = trim(sanitize_text_field($postedData['default_redirect_reg'])); } else { $newData['default_redirect_reg'] = ''; } } foreach ($postedData as $key => $value) { switch ($key) { case 'debug': case 'login_restriction': case 'avatars_in_all_media': case 'terms_show': case 'store_name': case 'store_email': case 'avatar_store': case 'store_access_token': case 'redirect_prevent_external': if ($value == 1) { $newData[$key] = 1; } else { $newData[$key] = 0; } break; case 'terms': $newData[$key] = wp_kses_post($value); break; case 'blacklisted_urls': $newData[$key] = sanitize_textarea_field($postedData[$key]); break; case 'show_login_form': case 'login_form_button_align': case 'show_registration_form': case 'show_embedded_login_form': case 'embedded_login_form_button_align': $newData[$key] = sanitize_text_field($value); break; case 'enabled': if (is_array($value)) { $newData[$key] = $value; } break; case 'ordering': if (is_array($value)) { $newData[$key] = $value; } break; case 'license_key': Notices::clear(); $value = trim(sanitize_text_field($value)); if (!empty($value)) { try { $response = self::apiCall('test-license', array('license_key' => $value)); if ($response === 'OK') { $newData['licenses'] = array( array( 'license_key' => $value, 'domain' => NextendSocialLogin::getDomain() ) ); wp_clean_plugins_cache(); } } catch (Exception $e) { Notices::addError($e->getMessage()); } } else { wp_clean_plugins_cache(); $newData['licenses'] = array(); } break; case 'review_state': case 'woocommerce_dismissed': $newData[$key] = intval($value); break; case 'register-flow-page': case 'proxy-page': if (get_post($value) !== null) { $newData[$key] = $value; } else { $newData[$key] = ''; } break; case 'allow_register': if ($value == '0') { $newData[$key] = 0; } else if ($value == '1') { $newData[$key] = 1; } else { $newData[$key] = -1; } break; } } return $newData; } public static function plugin_action_links($links, $file) { if ($file != NSL_PLUGIN_BASENAME) { return $links; } $settings_link = '' . __('Settings') . ''; $reactivate_link = sprintf('%s', wp_nonce_url(admin_url('admin.php?page=nextend-social-login&repairnsl=1'), 'repairnsl'), 'Reactivate'); array_unshift($links, $settings_link, $reactivate_link); return $links; } public static function admin_enqueue_scripts() { if ('settings_page_nextend-social-login' === get_current_screen()->id) { // Since WordPress 4.9 if (function_exists('wp_enqueue_code_editor')) { // Enqueue code editor and settings for manipulating HTML. $settings = wp_enqueue_code_editor(array('type' => 'text/html')); // Bail if user disabled CodeMirror. if (false === $settings) { return; } wp_add_inline_script('code-editor', sprintf('jQuery( function() { var settings = %s; jQuery(".nextend-html-editor").each(function(i, el){wp.codeEditor.initialize( el, settings);}); } );', wp_json_encode($settings))); $settings['codemirror']['readOnly'] = 'nocursor'; wp_add_inline_script('code-editor', sprintf('jQuery( function() { var settings = %s; jQuery(".nextend-html-editor-readonly").each(function(i, el){wp.codeEditor.initialize( el, settings);}); } );', wp_json_encode($settings))); } if (isset($_GET['view']) && $_GET['view'] == 'pro-addon') { wp_enqueue_script('plugin-install'); wp_enqueue_script('updates'); } } } private static $endpoint = 'https://api.nextendweb.com/v2/nextend-api/v2/'; public static function getEndpoint($action = '') { return self::$endpoint . 'product/nsl/' . urlencode($action); } /** * @param $action * @param array $args * * @return bool|mixed * @throws Exception */ public static function apiCall($action, $args = array()) { $body = array( 'platform' => 'wordpress', 'domain' => NextendSocialLogin::getDomain() ); $activation_data = NextendSocialLogin::getLicense(); if ($activation_data !== false) { $body['license_key'] = $activation_data['license_key']; } else { $body['license_key'] = ''; } $http_args = array( 'timeout' => 15, 'user-agent' => 'WordPress', 'body' => array_merge($body, $args) ); $request = wp_remote_get(self::getEndpoint($action), $http_args); if (is_wp_error($request)) { throw new Exception($request->get_error_message()); } else if (wp_remote_retrieve_response_code($request) !== 200) { $response = json_decode(wp_remote_retrieve_body($request), true); if (isset($response['message'])) { $message = 'Nextend Social Login Pro Addon: ' . $response['message']; Notices::addError($message); return new WP_Error('error', $message); } throw new Exception(sprintf(__('Unexpected response: %s', 'nextend-facebook-connect'), wp_remote_retrieve_body($request))); } $response = json_decode(wp_remote_retrieve_body($request), true); return $response; } public static function showProBox() { if (!self::isPro()) { include(dirname(__FILE__) . '/templates/pro.php'); } } public static function getProState() { if (NextendSocialLogin::hasLicense()) { if (self::isPro()) { return 'activated'; } else if (!current_user_can('install_plugins')) { return 'no-capability'; } else if (class_exists('NextendSocialLoginPRO', false) && version_compare(NextendSocialLoginPRO::$version, NextendSocialLogin::$nslPROMinVersion, '<')) { return 'not-compatible'; } else { if (file_exists(WP_PLUGIN_DIR . '/nextend-social-login-pro/nextend-social-login-pro.php')) { return 'installed'; } else { return 'not-installed'; } } } return 'no-license'; } public static function trackUrl($url, $source) { return add_query_arg(array( 'utm_campaign' => 'nsl', 'utm_source' => urlencode($source), 'utm_medium' => 'nsl-wordpress-' . (apply_filters('nsl-pro', false) ? 'pro' : 'free') ), $url); } public static function save_review_state() { check_ajax_referer('nsl_save_review_state'); if (isset($_POST['review_state'])) { $review_state = intval($_POST['review_state']); if ($review_state > 0) { NextendSocialLogin::$settings->update(array( 'review_state' => $review_state )); } } wp_die(); } public static function show_oauth_uri_notice() { foreach (NextendSocialLogin::$enabledProviders AS $provider) { if (!$provider->checkOauthRedirectUrl()) { echo '

' . sprintf(__('%s detected that your login url changed. You must update the Oauth redirect URIs in the related social applications.', 'nextend-facebook-connect'), 'Nextend Social Login') . '

' . __('Fix Error', 'nextend-facebook-connect') . ' - ' . __('Oauth Redirect URI', 'nextend-facebook-connect') . '

'; break; } } } public static function show_woocommerce_notice() { $dismissUrl = wp_nonce_url(add_query_arg(array('redirect_to' => NextendSocialLogin::getCurrentPageURL()), NextendSocialLoginAdmin::getAdminUrl('dismiss_woocommerce')), 'nsl_dismiss_woocommerce'); echo '

' . sprintf(__('%1$s detected that %2$s installed on your site. You need the Pro Addon to display Social Login buttons in %2$s login form!', 'nextend-facebook-connect'), 'Nextend Social Login', 'WooCommerce') . '

' . __('Dismiss and check Pro Addon', 'nextend-facebook-connect') . ' ' . __('Dismiss', 'nextend-facebook-connect') . '

'; } public static function show_theme_my_login_notice() { echo '

' . sprintf(__('%1$s detected that %2$s installed on your site. You must set "Page for register flow" and "OAuth redirect uri proxy page" in %1$s to work properly.', 'nextend-facebook-connect'), 'Nextend Social Login', 'Theme My Login') . '

' . __('Fix now', 'nextend-facebook-connect') . '

'; } public static function isPro() { return apply_filters('nsl-pro', false); } public static function showUserFields($user) { include(dirname(__FILE__) . '/EditUser.php'); } public static function authorizeBox($view = 'pro-addon') { $args = array( 'product' => 'nsl', 'domain' => NextendSocialLogin::getDomain(), 'platform' => 'wordpress' ); $authorizeUrl = NextendSocialLoginAdmin::trackUrl('https://secure.nextendweb.com/authorize/', 'authorize'); ?>

ID) { $post_states['nsl_proxy_page'] = __('OAuth proxy page') . ' — NSL'; } if (NextendSocialLogin::getRegisterFlowPage() === $post->ID) { $post_states['nsl_proxy_page'] = __('Register flow page') . ' — NSL'; } return $post_states; } }admin/EditUser.php000066600000004000152140537230010071 0ustar00 settings; if (!$provider->isUserConnected($user->ID)) continue; $hasData = false; ob_start(); ?>

getLabel(); ?>

getSyncFields() AS $fieldName => $fieldData): ?> get('sync_fields/fields/' . $fieldName . '/meta_key'); $value = get_user_meta($user->ID, $meta_key, true); if (isset($value) && $value !== '') { ?>
"; print_r(formatUserMeta((array)$unSerialized)); echo ""; } else { echo esc_html($value); } $hasData = true; ?>
$meta_value) { $formatted_usermeta .= formatUserMeta($meta_value, $level . '[' . $meta_key . ']'); } } else { $formatted_usermeta .= "\n" . $level . ' = ' . $user_meta; } return $formatted_usermeta; } admin/upgrader.php000066600000006627152140537230010177 0ustar00slug === 'nextend-social-login-pro') { try { $res = (object)NextendSocialLoginAdmin::apiCall($action, (array)$args); } catch (Exception $e) { $res = new WP_Error('error', $e->getMessage()); } } return $res; } public static function upgrader_pre_download($reply, $package, $upgrader) { $needle = NextendSocialLoginAdmin::getEndpoint(); if (substr($package, 0, strlen($needle)) == $needle) { add_filter('http_response', 'NextendSocialUpgrader::http_response', 10, 3); } return $reply; } public static function http_response($response, $r, $url) { $needle = NextendSocialLoginAdmin::getEndpoint(); if (substr($url, 0, strlen($needle)) == $needle && 200 != wp_remote_retrieve_response_code($response) || is_wp_error($response)) { if (isset($response['filename']) && file_exists($response['filename'])) { $body = @json_decode(@file_get_contents($response['filename']), true); if (is_array($body) && isset($body['message'])) { $message = 'Nextend Social Login Pro Addon: ' . $body['message']; if (isset($body['code']) && $body['code'] == 'license_invalid' && NextendSocialLogin::hasLicense()) { NextendSocialLogin::$settings->update(array( 'license_key' => '' )); $message .= ' - the stored license key has been removed!'; } Notices::addError($message); return new WP_Error('error', $message); } } } return $response; } public static function injectUpdate($transient) { if (!class_exists('NextendSocialLoginPRO', false)) { return $transient; } $filename = "nextend-social-login-pro/nextend-social-login-pro.php"; if (!isset($transient->response[$filename])) { try { $item = (object)NextendSocialLoginAdmin::apiCall('plugin_information', array('slug' => 'nextend-social-login-pro')); } catch (Exception $e) { $item = new WP_Error('error', $e->getMessage()); } if (!is_wp_error($item)) { $item->plugin = 'nextend-social-login-pro/nextend-social-login-pro.php'; if (version_compare(NextendSocialLoginPRO::$version, $item->new_version, '<')) { $transient->response[$filename] = (object)$item; unset($transient->no_update[$filename]); } else { $transient->no_update[$filename] = (object)$item; unset($transient->response[$filename]); } } } return $transient; } }admin/style.css000066600000027353152140537230007526 0ustar00#screen-meta, #screen-meta-links { display: none !important; } .nsl-clear { clear: both; } #wpcontent { padding-left: 0; padding-right: 0; } #nsl-admin { margin: 0; } .error + #nsl-admin, .notice + #nsl-admin, .updated + #nsl-admin { margin-top: 30px; } #nsl-admin, #nsl-admin p, #nsl-admin ul, #nsl-admin li { font-size: 13px; } #nsl-admin .nsl-admin-embed-youtube { position: relative; max-width: 1280px; margin-top: 40px; } #nsl-admin .nsl-admin-embed-youtube div { padding-bottom: 56.25%; } #nsl-admin .nsl-admin-embed-youtube iframe { position: absolute; left: 0; top: 0; width: 100%; height: 100%; } #nsl-admin .form-table th em { font-weight: normal; } #nsl-admin .nsl-admin-header { background: #0073aa; height: 106px; display: flex; align-items: center; padding: 0 20px; } #nsl-admin .nsl-admin-header h1 { margin: 0 auto 0 0; padding: 0; } #nsl-admin .nsl-admin-header h1, #nsl-admin .nsl-admin-header h1 a { color: #ffffff; font-size: 24px; text-decoration: none; } #nsl-admin .nsl-admin-header h1 a { line-height: 64px; vertical-align: top; } #nsl-admin .nsl-admin-header a:focus { box-shadow: none; } #nsl-admin .nsl-admin-header h1 a img { margin: 0 10px; vertical-align: middle; } #nsl-admin .nsl-admin-header a.nsl-admin-header-nav { color: #ffffff; font-size: 16px; text-decoration: none; padding: 20px; } #nsl-admin .nsl-admin-nav-bar { display: flex; background: #ffffff; height: 55px; border-bottom: 1px solid #dbdbdb; padding: 0 10px; } #nsl-admin .nsl-admin-nav-bar .nsl-admin-nav-tab { padding: 0 20px; } #nsl-admin .nsl-admin-nav-bar .nsl-admin-nav-tab { line-height: 55px; text-decoration: none; color: #23282d; } #nsl-admin .nsl-admin-nav-bar .nsl-admin-nav-tab:focus { box-shadow: none; } #nsl-admin .nsl-admin-nav-bar .nsl-admin-nav-tab.nsl-admin-nav-tab-active { box-shadow: inset 0 -3px 0 0 #00a0d2; color: #000; font-weight: bold; } #nsl-admin .nsl-admin-sub-nav-bar { display: flex; height: 40px; border-bottom: 1px solid #dddddd; } #nsl-admin .nsl-admin-sub-nav-bar .nsl-admin-nav-tab { position: relative; margin-right: 30px; line-height: 40px; text-decoration: none; color: #23282d; } #nsl-admin .nsl-admin-sub-nav-bar .nsl-admin-nav-tab:focus { box-shadow: none; } #nsl-admin .nsl-admin-sub-nav-bar .nsl-admin-nav-tab.nsl-admin-nav-tab-active { box-shadow: inset 0 -3px 0 0 #00a0d2; color: #000; font-weight: bold; } #nsl-admin .nsl-admin-sub-nav-bar .nsl-admin-nav-tab .nsl-pro-badge { display: block; background: #0073aa; border-radius: 3px; color: #fff; position: absolute; right: -20px; top: -2px; padding: 0 5px; line-height: 16px; font-size: 10px; font-weight: normal; text-transform: uppercase; } .nsl-dashboard-providers { position: relative; padding: 15px; } .nsl-dashboard-providers .nsl-dashboard-newsletter { position: relative; float: left; width: 340px; height: 220px; margin: 15px; box-sizing: border-box; border-radius: 5px; padding: 15px; display: flex; flex-flow: column; } .nsl-dashboard-providers .nsl-dashboard-newsletter-content { text-align: center; display: flex; flex-flow: column; justify-content: center; align-items: center; height: 100%; } .nsl-dashboard-providers .nsl-dashboard-newsletter-content h2 { color: #000000; font-size: 18px; line-height: 1.5; margin: 0; font-weight: 600; } .nsl-dashboard-providers .nsl-dashboard-newsletter-content input[type="text"] { margin: 0 0 13px 0; text-align: center; } .nsl-dashboard-providers .nsl-dashboard-provider { position: relative; float: left; width: 340px; height: 220px; margin: 15px; display: flex; flex-flow: column; } .nsl-dashboard-providers .nsl-dashboard-provider-top { height: 166px; display: flex; flex-flow: column; justify-content: center; align-items: center; border-top-left-radius: 5px; border-top-right-radius: 5px; } .nsl-dashboard-providers h2 { color: #ffffff; font-size: 22px; margin: 20px 0 0 0; font-weight: 600; } .nsl-dashboard-providers .nsl-dashboard-provider-bottom { background: #ffffff; flex: 1 1 auto; display: flex; align-items: center; padding: 0 15px; border: 1px solid #dbdbdb; border-width: 0 1px 1px 1px; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; } .nsl-dashboard-provider-bottom-state { margin-right: auto; font-size: 14px; color: #23282d; } [data-state="not-tested"] .nsl-dashboard-provider-bottom-state { color: #0b97c6; } [data-state="disabled"] .nsl-dashboard-provider-bottom-state { color: #c8463f; } [data-state="enabled"] .nsl-dashboard-provider-bottom-state { color: #46b450; } .nsl-dashboard-providers .nsl-dashboard-provider-bottom a + a { margin-left: 10px; } .nsl-dashboard-provider-sortable-handle { position: absolute; left: 0; top: 0; width: 27px; height: 34px; cursor: move; background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAiCAYAAACuoaIwAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA+tpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE4LTAxLTE3VDE1OjE4OjM5KzAxOjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOC0wMS0xN1QxNjoxMTo0MSswMTowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOC0wMS0xN1QxNjoxMTo0MSswMTowMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjhCNkM3MkZGQjk4MTFFN0E4RDJBRUZBQTI4OUVBNzIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjhCNkM3MzBGQjk4MTFFN0E4RDJBRUZBQTI4OUVBNzIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCOEI2QzcyREZCOTgxMUU3QThEMkFFRkFBMjg5RUE3MiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCOEI2QzcyRUZCOTgxMUU3QThEMkFFRkFBMjg5RUE3MiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Po8u91EAAABlSURBVHjaYvz//z8DvQATAx3BqGWjlg0ey1iIUKMDxHFQ9iIgvkKkHFk+AxnGD8VxJMhRHIyMZMoRbRkoeD4B8QcgXkiCHKZrRsvG0aQ/mvRHk/5o0h9N+qNJf9SyUcuoCAACDABr5TA7L7qpSQAAAABJRU5ErkJggg=='); } .nsl-provider-notice { position: absolute; right: 10px; top: 0; color: #fff; line-height: 32px; font-size: 16px; } .nsl-admin-notices { padding: 30px 30px 0; } .nsl-admin-content .nsl-admin-notices { padding: 20px 0 0; } .nsl-admin-notices > div { margin: 5px 0 2px; } .nsl-admin-content { padding: 10px 30px; } .nsl-admin-sub-content { padding: 20px 0; } .nsl-box { max-width: 500px; padding: 30px; margin: 30px 0; background: #ffffff no-repeat 20px 40px; border-radius: 5px; padding-left: 110px; } .nsl-box h2 { margin: 10px 0 0 0; } .nsl-box p { margin: 20px 0 0 0; } .nsl-box-yellow { border: 3px solid #f9cb4f; } .nsl-box-yellow-bg { background: #faf7ea no-repeat 20px 40px; } .nsl-box-blue { border: 3px solid #00a0d2; background-image: url('images/test-needed.png'); } .nsl-box-green { border: 3px solid #46b450; background-image: url('images/ok.png'); } .nsl-box-red { border: 3px solid #c8463f; } .nsl-box-error { background-image: url('images/error.png'); } .nsl-box-padlock { background-image: url('images/padlock.png'); } .nsl-box-exclamation-mark { background-image: url('images/exclamation-mark.png'); } .nsl-box .button { margin-right: 10px; } #nsl-test-configuration { line-height: 28px; } #nsl-test-configuration > * { margin-right: 10px; } #nsl-test-please-save { display: none; } #nsl-admin .CodeMirror { height: auto; } #nsl-admin .CodeMirror-scroll { min-height: 100px; } #nsl-admin fieldset label { vertical-align: top; } input[type="radio"] ~ img { margin-top: 20px; margin-right: 30px; } input[type="radio"]:checked ~ img { box-shadow: 0 0 0 3px #00a0d2; border-radius: 3px; } .nsl-box-review { position: relative; float: left; width: 340px; height: 220px; margin: 15px; text-align: center; background: #fff; border-radius: 5px; } .nsl-box-review-bigstar { width: 170px; height: 105px; margin: 20px auto 0; background-image: url('images/stars-big.png'); } [data-stars="1"] .nsl-box-review-bigstar { background-position: 0 -105px; } [data-stars="2"] .nsl-box-review-bigstar { background-position: 0 -210px; } [data-stars="3"] .nsl-box-review-bigstar { background-position: 0 -315px; } [data-stars="4"] .nsl-box-review-bigstar { background-position: 0 -420px; } [data-stars="5"] .nsl-box-review-bigstar { background-position: 0 -525px; } .nsl-box-review-label { color: #7b8898; font-size: 15px; line-height: 22px; height: 22px; overflow: hidden; display: none; } [data-stars="0"] .nsl-box-review-label[data-star="0"], [data-stars="1"] .nsl-box-review-label[data-star="1"], [data-stars="2"] .nsl-box-review-label[data-star="2"], [data-stars="3"] .nsl-box-review-label[data-star="3"], [data-stars="4"] .nsl-box-review-label[data-star="4"], [data-stars="5"] .nsl-box-review-label[data-star="5"] { display: block; } .nsl-box-review-stars-container { width: 170px; height: 34px; margin: 0 auto; } .nsl-box-review-star { cursor: pointer; transition: transform 0.4s; vertical-align: top; float: left; width: 34px; height: 34px; background-image: url('images/stars-small.png'); } [data-stars="1"] .nsl-box-review-star[data-star="1"], [data-stars="2"] .nsl-box-review-star[data-star="1"], [data-stars="2"] .nsl-box-review-star[data-star="2"], [data-stars="3"] .nsl-box-review-star[data-star="1"], [data-stars="3"] .nsl-box-review-star[data-star="2"], [data-stars="3"] .nsl-box-review-star[data-star="3"], [data-stars="4"] .nsl-box-review-star[data-star="1"], [data-stars="4"] .nsl-box-review-star[data-star="2"], [data-stars="4"] .nsl-box-review-star[data-star="3"], [data-stars="4"] .nsl-box-review-star[data-star="4"], [data-stars="5"] .nsl-box-review-star[data-star="1"], [data-stars="5"] .nsl-box-review-star[data-star="2"], [data-stars="5"] .nsl-box-review-star[data-star="3"], [data-stars="5"] .nsl-box-review-star[data-star="4"], [data-stars="5"] .nsl-box-review-star[data-star="5"] { background-position: 0 -34px; transform: scale(1.3); } .nsl-box-review-star-5 { position: relative; display: flex; flex-flow: column; border: 3px solid #f9cb4f; justify-content: center; box-sizing: border-box; padding: 0 30px; } .nsl-box-review-star-5 h3 { margin: 0 0 10px; } .nsl-box-review-star-5-description { margin: 0 0 20px; } .nsl-box-review-star-5 .nsl-box-review-star-5-close { display: none; position: absolute; right: 10px; top: 10px; color: #23282d; cursor: pointer; } .nsl-box-review-star-5:HOVER .nsl-box-review-star-5-close { display: block; } .nsl-box-review-star-5 .nsl-box-review-star-5-close:before { content: "\f158"; font: 400 16px/1 dashicons; speak: none; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .nsl-admin-setting-disabled input[type=text] { display: none; }admin/interim.php000066600000002273152140537230010026 0ustar00' . __('You have logged in successfully.') . '

'; $interim_login = 'success'; ?> > <?php __('You have logged in successfully.'); ?> window._nsl.push(function ($) { $(document).ready(function () { var $main = $('#nsl-custom-login-form-main'); $main.find('.nsl-container') .addClass('nsl-container-login-layout-below') .css('display', 'block'); var $jetpackSSO = $('#jetpack-sso-wrap__action'); if ($jetpackSSO.length) { $jetpackSSO .append($main.clone().attr('id', 'nsl-custom-login-form-jetpack-sso')); $main.insertBefore('#jetpack-sso-wrap'); } else { var $form = $('#loginform,#registerform,#front-login-form,#setupform'); if ($form.parent().hasClass('tml')) { $form = $form.parent(); } $main.appendTo($form); } }); }); template-parts/embedded-login/below.php000066600000002015152140537230014172 0ustar00 providers/twitter/admin/settings.php000066600000007677152140537230013753 0ustar00getProvider(); $settings = $provider->settings; ?>
renderSettingsHeader(); ?>

Getting Started', 'nextend-facebook-connect'), 'API secret key', $this->getUrl()); ?>

renderOtherSettings(); ?>




renderProSettings(); ?>
providers/twitter/admin/fix-redirect-uri.php000066600000001724152140537230015260 0ustar00getProvider(); ?>
  1. %s', 'nextend-facebook-connect'), 'https://developer.twitter.com/en/apps'); ?>
  2. Details" button', 'nextend-facebook-connect'); ?>
  3. Edit button can be found on the App details tab. Click on it and select "Edit details"', 'nextend-facebook-connect'); ?>
  4. Callback URLs" field: %s', 'nextend-facebook-connect'), $provider->getRedirectUriForApp()); ?>
  5. Save"', 'nextend-facebook-connect'); ?>
providers/twitter/admin/getting-started.php000066600000006560152140537230015206 0ustar00getProvider(); ?>

  1. %s', 'nextend-facebook-connect'), 'https://developer.twitter.com/en/apps/create'); ?>
  2. %s if you aren\'t already there!', 'nextend-facebook-connect'), 'https://developer.twitter.com/en/apps/create'); ?>
  3. App name, Application description fields. Then enter your site\'s URL to the Website URL field: %s', 'nextend-facebook-connect'), site_url()); ?>
  4. Enable Sign in with Twitter!', 'nextend-facebook-connect'); ?>
  5. Callback URLs" field: %s', 'nextend-facebook-connect'), $provider->getRedirectUriForApp()); ?>
  6. Terms of Service URL", "Privacy policy URL" and "Tell us how this app will be used" fields!', 'nextend-facebook-connect'); ?>
  7. Create button.', 'nextend-facebook-connect'); ?>
  8. Create button again!', 'nextend-facebook-connect'); ?>
  9. Permissions tab and click Edit.', 'nextend-facebook-connect'); ?>
  10. Request email address from users under the Additional permissions section and click Save.', 'nextend-facebook-connect'); ?>
  11. Keys and tokens tab and find the API key and API secret key', 'nextend-facebook-connect'); ?>

providers/twitter/twitter.png000066600000004016152140537230012502 0ustar00PNG  IHDR<<:rtEXtSoftwareAdobe ImageReadyqe<iTXtXML:com.adobe.xmp 4~ IDATx[HA`h%F]() .ЅBފB2ꡗ^*Bz]4,("QeP a'2/?'Igfwf~;774d 83-X ւ`-X ւ#ԃnA\@*g_)ae (e O3} !B_(w=ڃs5t#{`<4YvG7wlEbwsOA߆Hc=LN:A|;d74"b7Kf=T܂߄4$ n,} UDί4b L Ím燿\+vB_E(gQ0,||Eb_ŠIus1h% tEbONC&E``Y҃ฃrp 􂻠 lsz!F(YKBUqvI`@3puzx%\ KlngEq?[[ qaQ[)ӭ`+Dp=oGA fde-@gq :wFq@ N HXΣ9۱Ai!#ƂO>DtR"aX&RQ^_UXFE+1,,Z=d.j+lN:< VUUp0EYjrbX)PK^ 'diX GPd7(7 (ja٧ ;3ܰz-*\XtR-5`ae'S {a`YpP409 X\D[sѳd|i#uK ZBp1f gϣB*O3c"VqUX"V'X [g-`-X ւ`-8vW!:IENDB`providers/twitter/twitter.php000066600000020522152140537230012505 0ustar00'; protected $sync_fields = array( 'description' => array( 'label' => 'Bio', 'node' => 'me' ), 'lang' => array( 'label' => 'Language', 'node' => 'me' ), 'location' => array( 'label' => 'Location', 'node' => 'me' ), 'created_at' => array( 'label' => 'Register date', 'node' => 'me' ), 'profile_url' => array( 'label' => 'Profile URL', 'node' => 'me' ), 'screen_name' => array( 'label' => 'Screen name', 'node' => 'me' ), 'url' => array( 'label' => 'Owned website', 'node' => 'me' ) ); public function __construct() { $this->id = 'twitter'; $this->label = 'Twitter'; $this->path = dirname(__FILE__); $this->requiredFields = array( 'consumer_key' => 'Consumer Key', 'consumer_secret' => 'Consumer Secret' ); parent::__construct(array( 'consumer_key' => '', 'consumer_secret' => '', 'login_label' => 'Continue with Twitter', 'link_label' => 'Link account with Twitter', 'unlink_label' => 'Unlink account from Twitter', 'profile_image_size' => 'normal' )); } protected function forTranslation() { __('Continue with Twitter', 'nextend-facebook-connect'); __('Link account with Twitter', 'nextend-facebook-connect'); __('Unlink account from Twitter', 'nextend-facebook-connect'); } public function validateSettings($newData, $postedData) { $newData = parent::validateSettings($newData, $postedData); foreach ($postedData AS $key => $value) { switch ($key) { case 'tested': if ($postedData[$key] == '1' && (!isset($newData['tested']) || $newData['tested'] != '0')) { $newData['tested'] = 1; } else { $newData['tested'] = 0; } break; case 'consumer_key': case 'consumer_secret': $newData[$key] = trim(sanitize_text_field($value)); if ($this->settings->get($key) !== $newData[$key]) { $newData['tested'] = 0; } if (empty($newData[$key])) { Notices::addError(sprintf(__('The %1$s entered did not appear to be a valid. Please enter a valid %2$s.', 'nextend-facebook-connect'), $this->requiredFields[$key], $this->requiredFields[$key])); } break; case 'profile_image_size': $newData[$key] = trim(sanitize_text_field($value)); break; } } return $newData; } public function getRedirectUriForApp() { $parts = explode('?', $this->getRedirectUri()); return $parts[0]; } /** * @return NextendSocialProviderTwitterClient */ public function getClient() { if ($this->client === null) { require_once dirname(__FILE__) . '/twitter-client.php'; $this->client = new NextendSocialProviderTwitterClient($this->id, $this->settings->get('consumer_key'), $this->settings->get('consumer_secret')); $this->client->setRedirectUri($this->getRedirectUri()); } return $this->client; } /** * @return array|mixed|object * @throws Exception */ protected function getCurrentUserInfo() { $response = $this->getClient() ->get('account/verify_credentials', array( 'include_email' => 'true', 'include_entities' => 'false', 'skip_status' => 'true' )); if (isset($response['id']) && isset($response['id_str'])) { // On 32bit and Windows server, we must copy id_str to id as the id int representation won't be OK $response['id'] = $response['id_str']; } return $response; } public function getMe() { return $this->authUserData; } /** * @param $key * * @return string */ public function getAuthUserData($key) { switch ($key) { case 'id': return $this->authUserData['id']; case 'email': return !empty($this->authUserData['email']) ? $this->authUserData['email'] : ''; case 'name': return $this->authUserData['name']; case 'username': return $this->authUserData['screen_name']; case 'first_name': $name = explode(' ', $this->getAuthUserData('name'), 2); return isset($name[0]) ? $name[0] : ''; case 'last_name': $name = explode(' ', $this->getAuthUserData('name'), 2); return isset($name[1]) ? $name[1] : ''; case 'picture': $profile_image_size = $this->settings->get('profile_image_size'); $profile_image = $this->authUserData['profile_image_url_https']; $avatar_url = ''; if (!empty($profile_image)) { switch ($profile_image_size) { case 'mini': $avatar_url = str_replace('_normal.', '_' . $profile_image_size . '.', $profile_image); break; case 'bigger': $avatar_url = str_replace('_normal.', '_' . $profile_image_size . '.', $profile_image); break; case 'original': $avatar_url = str_replace('_normal.', '.', $profile_image); break; } } return $avatar_url; } return parent::getAuthUserData($key); } public function syncProfile($user_id, $provider, $access_token) { if ($this->needUpdateAvatar($user_id)) { if ($this->getAuthUserData('picture')) { $this->updateAvatar($user_id, $this->getAuthUserData('picture')); } } $this->storeAccessToken($user_id, $access_token); } public function deleteLoginPersistentData() { parent::deleteLoginPersistentData(); if ($this->client !== null) { $this->client->deleteLoginPersistentData(); } } public function getAvatar($user_id) { if (!$this->isUserConnected($user_id)) { return false; } $picture = $this->getUserData($user_id, 'profile_picture'); if (!$picture || $picture == '') { return false; } return $picture; } } NextendSocialLogin::addProvider(new NextendSocialProviderTwitter);providers/twitter/twitter-client.php000066600000022242152140537230013762 0ustar00consumer_key = $consumer_key; $this->consumer_secret = $consumer_secret; } public function getTestUrl() { return $this->endpoint; } /** * @param string $redirect_uri */ public function setRedirectUri($redirect_uri) { $this->redirect_uri = $redirect_uri; } public function deleteLoginPersistentData() { Persistent::delete($this->providerID . '_request_token'); } /** * @return string * @throws Exception */ public function createAuthUrl() { $response = $this->oauthRequest($this->endpoint . 'oauth/request_token', 'POST', array(), array( 'oauth_callback' => $this->redirect_uri )); $oauthTokenData = $this->extract_params($response); Persistent::set($this->providerID . '_request_token', maybe_serialize($oauthTokenData)); return $this->endpoint . 'oauth/authenticate?oauth_token=' . $oauthTokenData['oauth_token'] /*. '&force_login=1'*/ ; } /** * @throws Exception */ public function checkError() { if (isset($_GET['denied'])) { throw new Exception('Authentication cancelled'); } } public function hasAuthenticateData() { return isset($_REQUEST['oauth_token']) && isset($_REQUEST['oauth_verifier']); } /** * @return false|string * @throws Exception */ public function authenticate() { $requestToken = maybe_unserialize(Persistent::get($this->providerID . '_request_token')); $response = $this->oauthRequest($this->endpoint . 'oauth/access_token', 'POST', array(), array( 'oauth_verifier' => $_GET['oauth_verifier'] ), array( 'token' => $requestToken['oauth_token'], 'secret' => $requestToken['oauth_token_secret'] )); $accessTokenData = $this->extract_params($response); $access_token_data = wp_json_encode(array( 'oauth_token' => $accessTokenData['oauth_token'], 'oauth_token_secret' => $accessTokenData['oauth_token_secret'], 'user_id' => $accessTokenData['user_id'], 'screen_name' => $accessTokenData['screen_name'] )); $this->setAccessTokenData($access_token_data); return $access_token_data; } /** * @param $path * @param array $data * * @return array|mixed|object * @throws Exception */ public function get($path, $data = array(), $endpoint = false) { if (!$endpoint) { $endpoint = $this->endpoint; } $response = $this->oauthRequest($endpoint . '1.1/' . $path . '.json', 'GET', $data + array( 'user_id' => $this->access_token_data['user_id'] ), array(), array( 'token' => $this->access_token_data['oauth_token'], 'secret' => $this->access_token_data['oauth_token_secret'] )); return json_decode($response, true); } /** * @param $url * @param $method * @param array $_requestData * @param array $_oauthData * @param array $context * * @return string * @throws Exception */ private function oauthRequest($url, $method, $_requestData = array(), $_oauthData = array(), $context = array()) { $method = strtoupper($method); uksort($_requestData, 'strcmp'); $headers = array(); $headers['Authorization'] = $this->getAuthorizationHeader($url, $method, $_requestData, $_oauthData, $context); $http_args = array( 'timeout' => 15, 'user-agent' => 'WordPress', 'headers' => $headers, 'body' => $_requestData ); if ($method == 'POST') { $request = wp_remote_post($url, $http_args); } else { $request = wp_remote_get($url, $http_args); } if (is_wp_error($request)) { throw new Exception($request->get_error_message()); } else if (wp_remote_retrieve_response_code($request) !== 200) { $this->errorFromResponse(json_decode(wp_remote_retrieve_body($request), true)); throw new Exception(sprintf(__('Unexpected response: %s', 'nextend-facebook-connect'), wp_remote_retrieve_body($request))); } return wp_remote_retrieve_body($request); } private function getAuthorizationHeader($url, $method, $_requestData = array(), $_oauthData = array(), $context = array()) { $oauthParams = $this->getOauth1Params($context); foreach ($_oauthData as $k => $v) { $oauthParams[$this->safe_encode($k)] = $this->safe_encode($v); } $params = array_merge($oauthParams, $_requestData); unset($params['oauth_signature']); uksort($params, 'strcmp'); $prepared_pairs_with_oauth = array(); foreach ($params as $k => $v) { $prepared_pairs_with_oauth[] = "{$k}={$v}"; } $paramsForSignature = implode('&', $this->safe_encode(array( $method, $url, implode('&', $prepared_pairs_with_oauth) ))); $left = $this->safe_encode($this->consumer_secret); $right = $this->safe_encode($this->secret($context)); $signing_key = $left . '&' . $right; $oauthParams['oauth_signature'] = $this->safe_encode(base64_encode(hash_hmac('sha1', $paramsForSignature, $signing_key, true))); uksort($oauthParams, 'strcmp'); $encoded_quoted_pairs = array(); foreach ($oauthParams as $k => $v) { $encoded_quoted_pairs[] = "{$k}=\"{$v}\""; } return 'OAuth ' . implode(', ', $encoded_quoted_pairs); } /** * @param $response * * @throws Exception */ private function errorFromResponse($response) { if (isset($response['errors']) && is_array($response['errors'])) { throw new Exception($response['errors'][0]['message']); } } private function safe_encode($data) { if (is_array($data)) { return array_map(array( $this, 'safe_encode' ), $data); } else if (is_scalar($data)) { return str_ireplace(array( '+', '%7E' ), array( ' ', '~' ), rawurlencode($data)); } else { return ''; } } private function safe_decode($data) { if (is_array($data)) { return array_map(array( $this, 'safe_decode' ), $data); } else if (is_scalar($data)) { return rawurldecode($data); } else { return ''; } } private function extract_params($body) { $kvs = explode('&', $body); $decoded = array(); foreach ($kvs as $kv) { $kv = explode('=', $kv, 2); $kv[0] = $this->safe_decode($kv[0]); $kv[1] = $this->safe_decode($kv[1]); $decoded[$kv[0]] = $kv[1]; } return $decoded; } private function nonce($length = 12, $include_time = true) { $prefix = $include_time ? microtime() : ''; return md5(substr($prefix . uniqid(), 0, $length)); } private function timestamp() { $time = time(); return (string)$time; } private function getOauth1Params($data) { $defaults = array( 'oauth_nonce' => $this->nonce(), 'oauth_timestamp' => $this->timestamp(), 'oauth_version' => self::VERSION, 'oauth_consumer_key' => $this->consumer_key, 'oauth_signature_method' => self::SIGNATURE_METHOD, ); // include the user token if it exists if ($oauth_token = $this->token($data)) { $defaults['oauth_token'] = $oauth_token; } $encoded = array(); foreach ($defaults as $k => $v) { $encoded[$this->safe_encode($k)] = $this->safe_encode($v); } return $encoded; } private function token($context) { if (isset($context['token']) && !empty($context['token'])) { return $context['token']; } else if (isset($context['user_token'])) { return $context['user_token']; } return ''; } private function secret($context) { if (isset($context['secret']) && !empty($context['secret'])) { return $context['secret']; } else if (isset($context['user_secret'])) { return $context['user_secret']; } return ''; } }providers/linkedin/linkedin.php000066600000000526152140537230012675 0ustar00id = 'linkedin'; $this->label = 'LinkedIn'; $this->path = dirname(__FILE__); } } NextendSocialLogin::addProvider(new NextendSocialProviderLinkedIn());providers/linkedin/linkedin.png000066600000003140152140537230012665 0ustar00PNG  IHDR<<:rtEXtSoftwareAdobe ImageReadyqe<iTXtXML:com.adobe.xmp Ǖ IDATxK(Daz5,d)#ׂeCv&%Y 6J%ʂĊ,2s4;,o==3aD$G 0 Ƿp;30 J46ے EgGxȗͦgYS}I ʚ12UvjՅub]ua?_umB U]x ֘W _NO++k- &8e ܀sUO@%(YV',[kÄvp)E_eZҩ`,lG`@% @G'kjc*< Q(X+WY3 @_~YY-h%~Ws\aki@v|BH²,isA7AfhNF^ 5] ?Cc u3d6B*H8R4 0 0 0 0 0 0 01?,,2Ƿ 俪OIENDB`providers/google/google.png000066600000005636152140537230012037 0ustar00PNG  IHDR<<:rtEXtSoftwareAdobe ImageReadyqe<#iTXtXML:com.adobe.xmp #IDATx[ pTݻd!3$PPQOnRq=\Up3p`%@PxR>!H d&Of %EFi؆w v+A6`O`w*Y'p/7pqCF9iQ7/}D: e hnΝܤek&\ie%]t,.6QnX/ׁ,ncOZ5s\qug1ز- c?.WUV fּ,Ξ&H;n` W_h\(WU 4ɘvHvzu@P +Lij`lNW7gf01̹@9##I++[Ʈ`s'EiC&^A'-Ar0N<?1oZ O6Lt[$SG@VĨ%ˀֶPIqGcX&Q(XirxZ+٣C9 mÀPi$)$d?֭!| -LE!$ZJF#lq7HyX)EXZgcyVͥ"EfzbR`Xctl\l\cQ$z@&0H3)Ejo #T4,l @F<`CJR{MDGagŭ rRh{dםc?`B`t~ Qфci/]jų @}+=ˏr>)]EǬEKI(K{ ?)sๆ9ծn1?WBuRSwtQ!XXUt^  D:o)vBz-q4CLܼiSugȁXoVKף[x.~_xll-ĉ$LΝM!X >Ly* G3 #0Z xPGK |$ p~%fk̚`R-ٛE}X7 uaUiW2y zb W~,z %})@qVM.}:|K'TUǏdVkwXu|mu(kNXA|S9΃٣ƺHcZIYvsi\\k&pS+zV4IuwSaΨeUPt(֕<$2嘶baj(91w4NȚ״^iJT15qZQi[qd #χccccc p [+0W+CCnPW-缝ltIENDB`providers/google/admin/buttons.php000066600000002470152140537230013345 0ustar00

providers/google/admin/settings.php000066600000006442152140537230013512 0ustar00getProvider(); $settings = $provider->settings; ?>
renderSettingsHeader(); ?>

Getting Started', 'nextend-facebook-connect'), 'Client ID', $this->getUrl()); ?>

renderOtherSettings(); $this->renderProSettings(); ?>
providers/google/admin/fix-redirect-uri.php000066600000001767152140537230015041 0ustar00getProvider(); ?>
  1. %s', 'nextend-facebook-connect'), 'https://console.developers.google.com/apis/'); ?>
  2. Credentials" in the left hand menu', 'nextend-facebook-connect'); ?>
  3. OAuth 2.0 Client IDs" section find your Client ID: %s', 'nextend-facebook-connect'), $provider->settings->get('client_id')); ?>
  4. Authorised redirect URIs" field: %s', 'nextend-facebook-connect'), $provider->getLoginUrl()); ?>
  5. Save"', 'nextend-facebook-connect'); ?>
providers/google/admin/getting-started.php000066600000010732152140537230014754 0ustar00getProvider(); ?>

  1. https://console.developers.google.com/apis/'); ?>
  2. Create" button on the right side! ( If you already have a project, click on the name of your project in the dashboard instead, which will bring up a modal and click "New Project". )', 'nextend-facebook-connect'); ?>
  3. Create" button again', 'nextend-facebook-connect'); ?>
  4. OAuth consent screen” button on the left hand side.', 'nextend-facebook-connect'); ?>
  5. User Type according to your needs. If you want to enable the social login with Google for any users with a Google account, then pick the External option!', 'nextend-facebook-connect'); ?>
    • Note: We don\'t use sensitive or restricted scopes either. But if you will use this App for other purposes too, then you may need to go through an %1$s!', 'nextend-facebook-connect'),'independent security review'); ?>
  6. Application name" field, which will appear as the name of the app asking for consent.', 'nextend-facebook-connect'); ?>
  7. Authorized domains" field with your domain name probably: %s without subdomains!', 'nextend-facebook-connect'), str_replace('www.', '', $_SERVER['HTTP_HOST'])); ?>
  8. %1$s" menu point, then click the "%2$s" button in the top bar.', 'nextend-facebook-connect'), 'Credentials', '+ Create Credentials') ?>
  9. OAuth client ID" option.', 'nextend-facebook-connect'); ?>
  10. Web application" under Application type.', 'nextend-facebook-connect'); ?>
  11. Name" that for your OAuth client ID.', 'nextend-facebook-connect'); ?>
  12. Authorised redirect URIs" field: %s', 'nextend-facebook-connect'), $provider->getLoginUrl()); ?>
  13. Create" button', 'nextend-facebook-connect'); ?>
  14. Client ID" and "Client Secret" from there.', 'nextend-facebook-connect'); ?>

providers/google/google.php000066600000025704152140537230012040 0ustar00'; protected $svgUniform = ''; const requiredApi1 = 'Google People API'; protected $sync_fields = array( 'gender' => array( 'label' => 'Gender', 'node' => 'me', ), 'link' => array( 'label' => 'Profile link', 'node' => 'me', ), 'locale' => array( 'label' => 'Locale', 'node' => 'me', ), 'biographies' => array( 'label' => 'Biographies', 'node' => 'people', 'description' => self::requiredApi1, ), 'birthdays' => array( 'label' => 'Birthdays', 'node' => 'people', 'scope' => 'https://www.googleapis.com/auth/user.birthday.read', 'description' => self::requiredApi1, ), 'occupations' => array( 'label' => 'Occupations', 'node' => 'people', 'description' => self::requiredApi1, ), 'organizations' => array( 'label' => 'Organizations', 'node' => 'people', 'description' => self::requiredApi1, ), 'residences' => array( 'label' => 'Residences', 'node' => 'people', 'description' => self::requiredApi1, ), 'taglines' => array( 'label' => 'Taglines', 'node' => 'people', 'description' => self::requiredApi1, ), 'ageRanges' => array( 'label' => 'Age ranges', 'node' => 'people', 'description' => self::requiredApi1, ), 'addresses' => array( 'label' => 'Addresses', 'node' => 'people', 'scope' => 'https://www.googleapis.com/auth/user.addresses.read', 'description' => self::requiredApi1, ), 'phoneNumbers' => array( 'label' => 'Phone Numbers', 'node' => 'people', 'scope' => 'https://www.googleapis.com/auth/user.phonenumbers.read', 'description' => self::requiredApi1, ) ); public function __construct() { $this->id = 'google'; $this->label = 'Google'; $this->path = dirname(__FILE__); $this->requiredFields = array( 'client_id' => 'Client ID', 'client_secret' => 'Client Secret' ); parent::__construct(array( 'client_id' => '', 'client_secret' => '', 'select_account' => 1, 'skin' => 'light', 'login_label' => 'Continue with Google', 'link_label' => 'Link account with Google', 'unlink_label' => 'Unlink account from Google' )); } protected function forTranslation() { __('Continue with Google', 'nextend-facebook-connect'); __('Link account with Google', 'nextend-facebook-connect'); __('Unlink account from Google', 'nextend-facebook-connect'); } public function getRawDefaultButton() { $skin = $this->settings->get('skin'); switch ($skin) { case 'dark': $color = $this->color; $svg = $this->svg; break; case 'light': $color = '#fff'; $svg = $this->svg; break; default: $color = $this->colorUniform; $svg = $this->svgUniform; } return '
' . $svg . '
{{label}}
'; } public function getRawIconButton() { return '
' . $this->svgUniform . '
'; } public function validateSettings($newData, $postedData) { $newData = parent::validateSettings($newData, $postedData); foreach ($postedData AS $key => $value) { switch ($key) { case 'tested': if ($postedData[$key] == '1' && (!isset($newData['tested']) || $newData['tested'] != '0')) { $newData['tested'] = 1; } else { $newData['tested'] = 0; } break; case 'skin': $newData[$key] = trim(sanitize_text_field($value)); break; case 'client_id': case 'client_secret': $newData[$key] = trim(sanitize_text_field($value)); if ($this->settings->get($key) !== $newData[$key]) { $newData['tested'] = 0; } if (empty($newData[$key])) { Notices::addError(sprintf(__('The %1$s entered did not appear to be a valid. Please enter a valid %2$s.', 'nextend-facebook-connect'), $this->requiredFields[$key], $this->requiredFields[$key])); } break; case 'select_account': $newData[$key] = $value ? 1 : 0; break; } } return $newData; } public function getClient() { if ($this->client === null) { require_once dirname(__FILE__) . '/google-client.php'; $this->client = new NextendSocialProviderGoogleClient($this->id); $this->client->setClientId($this->settings->get('client_id')); $this->client->setClientSecret($this->settings->get('client_secret')); $this->client->setRedirectUri($this->getRedirectUri()); if (!$this->settings->get('select_account')) { $this->client->setPrompt(''); } } return $this->client; } /** * @return array * @throws Exception */ protected function getCurrentUserInfo() { $fields = array( 'id', 'name', 'email', 'family_name', 'given_name', 'picture', ); $extra_me_fields = apply_filters('nsl_google_sync_node_fields', array(), 'me'); return $this->getClient() ->get('userinfo?fields=' . implode(',', array_merge($fields, $extra_me_fields))); } public function getMe() { return $this->authUserData; } /** * @return array * @throws Exception */ public function getMyPeople() { $extra_people_fields = apply_filters('nsl_google_sync_node_fields', array(), 'people'); if (!empty($extra_people_fields)) { return $this->getClient() ->get('people/me?personFields=' . implode(',', $extra_people_fields), array(), 'https://people.googleapis.com/v1/'); } return $extra_people_fields; } /** * @param $key * * @return string */ public function getAuthUserData($key) { switch ($key) { case 'id': return $this->authUserData['id']; case 'email': return $this->authUserData['email']; case 'name': return !empty($this->authUserData['name']) ? $this->authUserData['name'] : ''; case 'first_name': return !empty($this->authUserData['given_name']) ? $this->authUserData['given_name'] : ''; case 'last_name': return !empty($this->authUserData['family_name']) ? $this->authUserData['family_name'] : ''; case 'picture': return $this->authUserData['picture']; } return parent::getAuthUserData($key); } public function syncProfile($user_id, $provider, $access_token) { if ($this->needUpdateAvatar($user_id)) { $this->updateAvatar($user_id, $this->getAuthUserData('picture')); } $this->storeAccessToken($user_id, $access_token); } public function deleteLoginPersistentData() { parent::deleteLoginPersistentData(); if ($this->client !== null) { $this->client->deleteLoginPersistentData(); } } public function getAvatar($user_id) { if (!$this->isUserConnected($user_id)) { return false; } $picture = $this->getUserData($user_id, 'profile_picture'); if (!$picture || $picture == '') { return false; } return $picture; } public function getSyncDataFieldDescription($fieldName) { if (isset($this->sync_fields[$fieldName]['description'])) { return sprintf(__('Required API: %1$s', 'nextend-facebook-connect'), $this->sync_fields[$fieldName]['description']); } return parent::getSyncDataFieldDescription($fieldName); } } NextendSocialLogin::addProvider(new NextendSocialProviderGoogle);providers/google/google-client.php000066600000003126152140537230013306 0ustar00 '', 'expires_in' => -1, 'created' => -1 ); private $accessType = 'offline'; private $prompt = 'select_account'; protected $scopes = array( 'email', 'profile' ); protected $endpointAuthorization = 'https://accounts.google.com/o/oauth2/auth'; protected $endpointAccessToken = 'https://accounts.google.com/o/oauth2/token'; protected $endpointRestAPI = 'https://www.googleapis.com/oauth2/v1/'; protected $defaultRestParams = array( 'alt' => 'json' ); /** * @param string $access_token_data */ public function setAccessTokenData($access_token_data) { $this->access_token_data = json_decode($access_token_data, true); } public function createAuthUrl() { $args = array( 'access_type' => urlencode($this->accessType) ); if ($this->prompt != '') { $args['prompt'] = urlencode($this->prompt); } return add_query_arg($args, parent::createAuthUrl()); } /** * @param string $prompt */ public function setPrompt($prompt) { $this->prompt = $prompt; } /** * @param $response * * @throws Exception */ protected function errorFromResponse($response) { if (isset($response['error']['message'])) { throw new Exception($response['error']['message']); } } }providers/vk/vk.png000066600000003574152140537230010346 0ustar00PNG  IHDR><> OtEXtSoftwareAdobe ImageReadyqe<(iTXtXML:com.adobe.xmp %,IDATxkHQwTX$AP}$?^H VB!E`_ { "2( "J"![A"aG#.<=;xeΙϽs9? ƣ%ƩiZkZkZx(5`>H3@a?+h/A ~dgYM#!٢}<At#P&TRՀ4 ~KSl hAxKHQ*bp ſJ5tr3B7JNߙ;iH3>6$ۙmdm ?'zXIJD/MVQwTiRh|O M < /- G]~6ULDnE]˙O%yXV-j维R9pl8Bh!Q4A.PՒyp8>ͣFZZ{kψfz4kEjZcme6*Yhᣔ^S8 NZjS .Ln |HU2 [Tg>}PvCL6-"jG 22ǰո~۠1 Cs8-X jci+Ac57ZƑv2=q _ҎH{<id = 'vk'; $this->label = 'VKontakte'; $this->path = dirname(__FILE__); } } NextendSocialLogin::addProvider(new NextendSocialProviderVK());providers/apple/apple.png000066600000003406152140537230011502 0ustar00PNG  IHDR2<$5tEXtSoftwareAdobe ImageReadyqe<#iTXtXML:com.adobe.xmp WyIDATxԚ]HQǯRaM}H/Q[=}<ETdOKAo}X- RD!HX>XAfd]34;qg{9i&B`e` ]r3@4"a}6 \ L}"H\,A.BV{zʰ0VG&!AH%-Y/Jms WAZmWܿ>#(!Y)?DN3|| Rtg }:] |P W}>[|o-(y0`VV2+\?x'7> wWW΀>͙r zuzС! xy[!͚?6bNV-p ?<8)x(XJ 1DHw8#Sn=` ӌDE3qOΞEB) 4N+!񳋁e L|*]DHJHJުd dI_N3u"d'9; Ql[0Ȣ y&.![4;!vNŶ,#1;@U>*-b!x L}fB>#tEs*O}9+xڨ^3L\6L_$C!s%S0+bs id = 'apple'; $this->label = 'Apple'; $this->path = dirname(__FILE__); } } NextendSocialLogin::addProvider(new NextendSocialProviderApple());providers/paypal/paypal.php000066600000000516152140537230012056 0ustar00id = 'paypal'; $this->label = 'PayPal'; $this->path = dirname(__FILE__); } } NextendSocialLogin::addProvider(new NextendSocialProviderPaypal());providers/paypal/paypal.png000066600000006242152140537230012055 0ustar00PNG  IHDR<vtEXtSoftwareAdobe ImageReadyqe<(iTXtXML:com.adobe.xmp IDATx]ylTEmP95Ph F x$F$*4T@%PC(AA$^XErv߳yΗys|f H$,,"N%%%%%%%%%%%E"NHRe{7 C\s ; 8q~8.o٩镀LNw&u z;8\']鮿iɥINwAP|\N@'DZ߯qlH Tp9W.klJz.suRʥO\H0KeWL54p.)Qi\q͸Qo1@I\X0 \$?M%e5U9.T4QJ !1z# 4iS.CП<*9Q(\UBfCł1Խu891ԝP3,pC>#ȖʥyԿvmLi۹:Jrc.;@djCW.;'jwiQKD Sē8Mhk밶ix.Ӵ 6q&q ΰ(Edp9-Mr 2_B+HN3\lFqBY5=&L>':|Nl9EԴ[|#ǹ o3w2 )J|3<#Я0-\ Qh uDH"ث.]=!-2V Xsl- pqo2/2$3w>߈#(T#66J3Xj!q=+ ~zbSEkXRs^l\>UJ6b e! )X-!ĥH{Ů]G ije\ʇ}f FۭϵHz"rIA(bYh/.i&<)f"T<*68,i|͠&s5^0خYuFy4 I!U {)G MeK(>ck1.׸9hfЀ'Kˋs*3hJ ysY^g?!{AbGߋe:>I֚Ѳ9A0KNƵȪerJ(]M4LC)kd46t(4EPډIXM8Uy&68mz47$ɖ>,8u?oiOF["\p=vd'M`{\>@l efʥaS6ǡ]B\*JA51Ίf#6HB5?1$"c1QY486OhW Z~Kڙdӥ%R~#J>${a_O8Va$b7m#k sWMR&LD"S1 j(B?˰[0F\|W҇Ѹ/bd⸅g YShB 1&r4}2і(39}0a)GD@t6]'ih@eObrӹ[Q 䅗i^|LYy3ŮGq,6mP;lQ&s%_䆢fsTvԁoBoZhb8тiA wgƫc#) xɟeȢ|ьdGHP{<~"2I "{LDvPo*g80Ey,8ƅXcAT%LN@E2v.:Q0ʮQU&lR/.]$'7O3!ɾCvYpҙF{TH&̶i1gj b#g=aL .ss4D,j4ٚ\裭)&5¯;bkʇql<&u#^D(~H6U\^rVߤAk8aDYi0|܇ȴ> BHw2tF4<yD(?!R[˙k,bLXAs\ qt6r>Q_*=R)6]FG"^:lS/dXp.O+َ PW/X3`ӱīazaŦ =jΤd[vj!`4}DFWRKgI$^Q˙E+iw!.,%4Qe8i2`qD8Q `DN`'NcV-^퐅J?!~qIENDB`providers/yahoo/yahoo.php000066600000000512152140537230011534 0ustar00id = 'yahoo'; $this->label = 'Yahoo'; $this->path = dirname(__FILE__); } } NextendSocialLogin::addProvider(new NextendSocialProviderYahoo());providers/yahoo/yahoo.png000066600000007007152140537230011537 0ustar00PNG  IHDR<_=HtEXtSoftwareAdobe ImageReadyqe<#iTXtXML:com.adobe.xmp DYк zIDATx\ }`X]>.~0h ~"ĔȯT$$| 'Ƥİ% &, b0|r;܉w=3==ʢOa_O߾3}v`"g<x88qp3g<x[pp2jx؋!āؚké{gE5ċ(WƲ9)8x"%mˈpz?lm%#G#EY\ۦC_baBO\E\I|6nEeUĦ78I{4Zxĝ>x(^aPep}U2݆eUOONINO^Ih$ ՅG WKϝ:C#{=e<[b3kٯ7KckCMb:+LA\uiP"nBUSA\zD&rįk쟉c(| [r_e4RˆYzfFFOؗxqq"qȮ!^~ÉwC-s}MC VP!gk2ƋEl,wr x /A v#[Al)>:6(z3P<<!>9 8!eXp|GA*/N't)(UczqsAxQKwl]DYN|&@ aF[ ȕAs)bNMkͬU"VB /ݼ7]#toGG9ƴHK=*yH"ޘ`4uPA5r3Ez.!ťZL B'b>o65|V\{ư)ʩR^Xj)ouI3둢Y'>b1:iiv$oI2qUWƓ5Pw؃ves.Lj?j[aSQ ;"X0@=hy*',ҤKmgOq/n/g*e( g6F A՗[ٽ(]DPPʗ-! }|L ) K2)6XspJ5CL:πWE_1( x9" /WͤS51,8w.3{B=S%\0z "+cNCmbJh3bkj b3P\bJn0""wBLѹ}lXw]okQeNjqy-7zjVϜu-#'<}"iyHol1s},.Q'#uV4getProvider(); ?>
  1. %s', 'nextend-facebook-connect'), 'https://developers.facebook.com/apps/'); ?>
  2. %s', 'nextend-facebook-connect'), $provider->settings->get('appid')); ?>
  3. Facebook Login > Settings"', 'nextend-facebook-connect'); ?>
  4. Valid OAuth redirect URIs" field: %s', 'nextend-facebook-connect'), $provider->getLoginUrl()); ?>
  5. Save Changes"', 'nextend-facebook-connect'); ?>
providers/facebook/admin/getting-started.php000066600000011732152140537230015252 0ustar00getProvider(); ?>
getLoginUrl(), 0, 8) !== 'https://'): ?>

  1. https://developers.facebook.com/apps/'); ?>
  2. Add a New App" button', 'nextend-facebook-connect'); ?>
  3. Become a Facebook Developer", then you need to click on the green "Register Now" button, fill the form then finally verify your account.', 'nextend-facebook-connect'); ?>
  4. Display Name" and "Contact Email". The specified "Display Name" will appear on your %s!', 'nextend-facebook-connect'), 'Consent Screen'); ?>
  5. Create App ID" button and complete the Security Check.', 'nextend-facebook-connect'); ?>
  6. %1$s” menu point, then click “%2$s”.', 'nextend-facebook-connect'), 'Settings', 'Basic') ?>
  7. App Domains" field, probably: %s', 'nextend-facebook-connect'), str_replace('www.', '', $_SERVER['HTTP_HOST'])); ?>
  8. Privacy Policy URL" field. Provide a publicly available and easily accessible privacy policy that explains what data you are collecting and how you will use that data.', 'nextend-facebook-connect'); ?>
  9. Category”, an “App Icon” and pick the “Business Use” option that describes your the App best, then press "Save Changes".', 'nextend-facebook-connect'); ?>
  10. %1$s” menu point, then click “%2$s”.', 'nextend-facebook-connect'), 'Facebook Login', 'Settings') ?>
  11. Valid OAuth redirect URIs" field: %s', 'nextend-facebook-connect'), $provider->getLoginUrl()); ?>
  12. Save Changes”', 'nextend-facebook-connect'); ?>
  13. In development" label, then click the "Switch Mode" button.', 'nextend-facebook-connect'); ?>
  14. %1$s" menu point, then click "%2$s" again. Here you can see your "APP ID" and you can see your "App secret" if you click on the "Show" button. These will be needed in plugin’s settings.', 'nextend-facebook-connect'), 'Settings', 'Basic') ?>

providers/facebook/admin/settings.php000066600000006140152140537230014002 0ustar00getProvider(); $settings = $provider->settings; ?>
getLoginUrl(), 0, 8) !== 'https://'): ?>

renderSettingsHeader(); ?>

Getting Started', 'nextend-facebook-connect'), 'App ID', $this->getUrl()); ?>

renderOtherSettings(); $this->renderProSettings(); ?>
providers/facebook/facebook.php000066600000020017152140537230012622 0ustar00'; protected $popupWidth = 475; protected $popupHeight = 175; protected $sync_fields = array( 'age_range' => array( 'label' => 'Age range', 'node' => 'me', 'scope' => 'user_age_range' ), 'birthday' => array( 'label' => 'Birthday', 'node' => 'me', 'scope' => 'user_birthday' ), 'link' => array( 'label' => 'Profile link', 'node' => 'me', 'scope' => 'user_link' ), 'hometown' => array( 'label' => 'Hometown', 'node' => 'me', 'scope' => 'user_hometown' ), 'location' => array( 'label' => 'Location', 'node' => 'me', 'scope' => 'user_location' ), 'gender' => array( 'label' => 'Gender', 'node' => 'me', 'scope' => 'user_gender' ) ); public function __construct() { $this->id = 'facebook'; $this->label = 'Facebook'; $this->path = dirname(__FILE__); $this->requiredFields = array( 'appid' => 'App ID', 'secret' => 'App Secret' ); add_filter('nsl_finalize_settings_' . $this->optionKey, array( $this, 'finalizeSettings' )); parent::__construct(array( 'appid' => '', 'secret' => '', 'login_label' => 'Continue with Facebook', 'link_label' => 'Link account with Facebook', 'unlink_label' => 'Unlink account from Facebook' )); } protected function forTranslation() { __('Continue with Facebook', 'nextend-facebook-connect'); __('Link account with Facebook', 'nextend-facebook-connect'); __('Unlink account from Facebook', 'nextend-facebook-connect'); } public function finalizeSettings($settings) { if (defined('NEXTEND_FB_APP_ID')) { $settings['appid'] = NEXTEND_FB_APP_ID; } if (defined('NEXTEND_FB_APP_SECRET')) { $settings['secret'] = NEXTEND_FB_APP_SECRET; } return $settings; } /** * @return NextendSocialProviderFacebookClient */ public function getClient() { if ($this->client === null) { require_once dirname(__FILE__) . '/facebook-client.php'; $this->client = new NextendSocialProviderFacebookClient($this->id, $this->isTest()); $this->client->setClientId($this->settings->get('appid')); $this->client->setClientSecret($this->settings->get('secret')); $this->client->setRedirectUri($this->getRedirectUri()); } return $this->client; } public function validateSettings($newData, $postedData) { $newData = parent::validateSettings($newData, $postedData); foreach ($postedData AS $key => $value) { switch ($key) { case 'tested': if ($postedData[$key] == '1' && (!isset($newData['tested']) || $newData['tested'] != '0')) { $newData['tested'] = 1; } else { $newData['tested'] = 0; } break; case 'appid': case 'secret': $newData[$key] = trim(sanitize_text_field($value)); if ($this->settings->get($key) !== $newData[$key]) { $newData['tested'] = 0; } if (empty($newData[$key])) { Notices::addError(sprintf(__('The %1$s entered did not appear to be a valid. Please enter a valid %2$s.', 'nextend-facebook-connect'), $this->requiredFields[$key], $this->requiredFields[$key])); } break; } } return $newData; } /** * @param $accessTokenData * * @return string * @throws Exception */ protected function requestLongLivedToken($accessTokenData) { $client = $this->getClient(); if (!$client->isAccessTokenLongLived()) { return $client->requestLongLivedAccessToken(); } return $accessTokenData; } /** * @return array|mixed * @throws Exception */ protected function getCurrentUserInfo() { $fields = array( 'id', 'name', 'email', 'first_name', 'last_name', 'picture.type(large)' ); $extra_fields = apply_filters('nsl_facebook_sync_node_fields', array(), 'me'); return $this->getClient() ->get('/me?fields=' . implode(',', array_merge($fields, $extra_fields))); } public function getMe() { return $this->authUserData; } public function getAuthUserData($key) { switch ($key) { case 'id': return $this->authUserData['id']; case 'email': return !empty($this->authUserData['email']) ? $this->authUserData['email'] : ''; case 'name': return $this->authUserData['name']; case 'first_name': return $this->authUserData['first_name']; case 'last_name': return $this->authUserData['last_name']; case 'picture': $profilePicture = $this->authUserData['picture']; if (!empty($profilePicture) && !empty($profilePicture['data'])) { if (isset($profilePicture['data']['is_silhouette']) && !$profilePicture['data']['is_silhouette']) { return $profilePicture['data']['url']; } } return ''; } return parent::getAuthUserData($key); } public function syncProfile($user_id, $provider, $access_token) { if ($this->needUpdateAvatar($user_id)) { if ($this->getAuthUserData('picture')) { $this->updateAvatar($user_id, $this->getAuthUserData('picture')); } } $this->storeAccessToken($user_id, $access_token); } protected function saveUserData($user_id, $key, $data) { switch ($key) { case 'access_token': update_user_meta($user_id, 'fb_user_access_token', $data); break; default: parent::saveUserData($user_id, $key, $data); break; } } protected function getUserData($user_id, $key) { switch ($key) { case 'access_token': return get_user_meta($user_id, 'fb_user_access_token', true); break; } return parent::getUserData($user_id, $key); } public function deleteLoginPersistentData() { parent::deleteLoginPersistentData(); if ($this->client !== null) { $this->client->deleteLoginPersistentData(); } } public function getSyncDataFieldDescription($fieldName) { if (isset($this->sync_fields[$fieldName]['scope'])) { return sprintf(__('Required scope: %1$s', 'nextend-facebook-connect'), $this->sync_fields[$fieldName]['scope']); } return parent::getSyncDataFieldDescription($fieldName); } } NextendSocialLogin::addProvider(new NextendSocialProviderFacebook);providers/facebook/facebook.png000066600000002710152140537230012617 0ustar00PNG  IHDR<<:rtEXtSoftwareAdobe ImageReadyqe<iTXtXML:com.adobe.xmp rpɕsIDATx1K@{ZE[Xp◰šՏK7;;] ƿ(r/^~KBL$bXPQ麇 #6q;hhWr)| @”>`'E7>Ⱥ>OG8tSY2xΥ,u֐]g3V0Y,r_@,5/Z-A0kY»ܷ" wV ZaI;Y.\`BfYV5蟜Oe֯?'2ÃiyZ [a-g(#dCVNV}l<_kpZ킾|*zHa S0)La S0)La Sv-Qª[Z6IENDB`providers/facebook/facebook-client.php000066600000007000152140537230014073 0ustar00 '', 'expires_in' => -1, 'created' => -1 ); protected $scopes = array( 'public_profile', 'email' ); public function __construct($providerID, $isTest) { $this->isTest = $isTest; parent::__construct($providerID); $this->endpointAccessToken = 'https://graph.facebook.com/' . self::DEFAULT_GRAPH_VERSION . '/oauth/access_token'; $this->endpointRestAPI = 'https://graph.facebook.com/' . self::DEFAULT_GRAPH_VERSION . '/'; } public function getEndpointAuthorization() { if (preg_match('/Android|iPhone|iP[ao]d|Mobile/', $_SERVER['HTTP_USER_AGENT'])) { $endpointAuthorization = 'https://m.facebook.com/'; } else { $endpointAuthorization = 'https://www.facebook.com/'; } $endpointAuthorization .= self::DEFAULT_GRAPH_VERSION . '/dialog/oauth'; if ((isset($_GET['display']) && $_GET['display'] == 'popup') || $this->isTest) { $endpointAuthorization .= '?display=popup'; } return $endpointAuthorization; } protected function formatScopes($scopes) { return implode(',', $scopes); } public function isAccessTokenLongLived() { return $this->access_token_data['created'] + $this->access_token_data['expires_in'] > time() + (60 * 60 * 2); } /** * @return false|string * @throws Exception */ public function requestLongLivedAccessToken() { $http_args = array( 'timeout' => 15, 'user-agent' => 'WordPress', 'body' => array( 'grant_type' => 'fb_exchange_token', 'client_id' => $this->client_id, 'client_secret' => $this->client_secret, 'fb_exchange_token' => $this->access_token_data['access_token'] ) ); $request = wp_remote_get($this->endpointAccessToken, $this->extendAllHttpArgs($http_args)); if (is_wp_error($request)) { throw new Exception($request->get_error_message()); } else if (wp_remote_retrieve_response_code($request) !== 200) { $this->errorFromResponse(json_decode(wp_remote_retrieve_body($request), true)); } $accessTokenData = json_decode(wp_remote_retrieve_body($request), true); if (!is_array($accessTokenData)) { throw new Exception(sprintf(__('Unexpected response: %s', 'nextend-facebook-connect'), wp_remote_retrieve_body($request))); } $accessTokenData['created'] = time(); $this->access_token_data = $accessTokenData; return wp_json_encode($accessTokenData); } protected function errorFromResponse($response) { if (isset($response['error'])) { throw new Exception($response['error']['message']); } } protected function extendAllHttpArgs($http_args) { $http_args['body']['appsecret_proof'] = hash_hmac('sha256', $this->getAccessToken(), $this->client_secret); return $http_args; } protected function getAccessToken() { if (!empty($this->access_token_data['access_token'])) { return $this->access_token_data['access_token']; } return $this->client_id; } }providers/amazon/amazon.png000066600000005757152140537230012065 0ustar00PNG  IHDRx<~tEXtSoftwareAdobe ImageReadyqe<(iTXtXML:com.adobe.xmp B~]IDATx[ lUE](|,}) (X+"QEqe "15$BDY1 H (h&T`Dd ,J7'wޛ9 ̛7罙{ qP(`q" l[X-V` + la[X-!p'`OMw-\zՀ]Ip-x- [bVjxX4t_`W``&0p#pp)^N1<\|XppKQ,> & pl.׶pY_B;$`7M;˕C%.`k>gx,p,r3]sRfۇ97qxB$p8K;-=uoOa mLC欍g mP 8ãV~^y[6kn k7GGO 0v"Y;RX(__ApAf@)]OlXt%[6k`3ZR3ugvӗ=Ad3՗DKSC*zK5͏CRM}* ƷbPAv|v=z!_c6lfS;Ql #p2=>6*l2x.l2$ZlȢ/r$k4/a&t+d6%$#qai ,p+QE 0d ŠB`#@UJfsȁF3`#u> S$S~(!$P0ƨ  Tbʺ c ? | d[k9Ul!ئk>cBY+p8R'W $)%6.RC T(+| MUEEB2h p4~]43l:4i*Uy A\^l{+ #/_U~g8W(8o+O2K/ތB@&ndFIkYf&nC Bٛ簯G?2(ʊ"10/=}5M d eyikĶ^g6FV| H ~lF e7 u+fB`.64!4W7EP_/i< {o\a<= ʲ*3KMҶ#r= Lт%_Y#L)^w 9z-RXSb#y: wqJ}¥20Y#%S /5ſ][&R[_7Xщy.pqz{]\D0BIt +Gx[3ܦ`fR/ϴ~#/:cvV#jrҦ cc$k<^뭔OemcmiC* }868pR? 1aoluy.=X#IRud `[ PFun<Ăe4BA@QqE1id = 'amazon'; $this->label = 'Amazon'; $this->path = dirname(__FILE__); } } NextendSocialLogin::addProvider(new NextendSocialProviderAmazon());providers/disqus/disqus.php000066600000000516152140537230012122 0ustar00id = 'disqus'; $this->label = 'Disqus'; $this->path = dirname(__FILE__); } } NextendSocialLogin::addProvider(new NextendSocialProviderDisqus());providers/disqus/disqus.png000066600000004004152140537230012113 0ustar00PNG  IHDR><> OtEXtSoftwareAdobe ImageReadyqe<(iTXtXML:com.adobe.xmp HrIDATxܛkHQnS^AVZZT =H{m}ǧ>ԃ z`V=4,>XFZYfelFMqg;wv̜{Ι{=a0? 恩 L#@~L'v |u<. ,2hVv$\!42ܱ xeUɠ5cI**r2tP/ G^m4MN `Q 84rFP)NLo)/GhƓ0R`/7LЭ ܒs`Ţ׊@i« FO&hqb@4OO7T0  Uw쪳‡*z5k1+g3ޛBYt`YJVbb7۱2XfF)pe -+cH4K@՗/1э`U_wĐf>u(ѭN+ cD4%)"S?s+>X%29쵓i7.0,Jؚq֌j0)қq@w7nQ,WTX$BSo*WR.n[˃ Chm5Qx03@*\qd[,;ܸ k"fIENDB`providers/wordpress/wordpress.php000066600000000536152140537230013364 0ustar00id = 'wordpress'; $this->label = 'WordPress.com'; $this->path = dirname(__FILE__); } } NextendSocialLogin::addProvider(new NextendSocialProviderWordpress());providers/wordpress/wordpress.png000066600000005206152140537230013360 0ustar00PNG  IHDR6<-ItEXtSoftwareAdobe ImageReadyqe<(iTXtXML:com.adobe.xmp {IDATx[ilUE~ﱴF҂hRcbbB5E%`1F+F@FRJqE"6bIJ"PhyCq̼n}H<ɗvf333/#"\:a4aa$a/'!ϴ'vªH41%'O#fzJB !*b OWc30PXƘM8K w:ف0tyreEՙh 5FdЕ0pPSۅX1&'HHE)Gaп @,_:%Em\(}"2 [=lJ(:GB E#2M*&eeTQ I+DE)$qLq%-fRH@.-@7K1q7VǛO#Lr%|p .?iyvr!~0~?a N:y:\Rep= 'zM-H@ap)qx>0Q+NBOz00XVHABE ٧KhKBg\k˷ ,$0,:+E?Ahogh`&k -8UStBuギ;h--4ȱz[L{΄}1f9q }9X |WtGYb0"&֭-"Ru' s5RrT\oql:zq]cb7V<1B G%bo\B<& k\rm'L IـS2340qr^'q`_~ޛB|B1byr~ +b"B{[:( 4bd^9ݛ Bµ!v}>]c(h8֢H=dz4kIvZk "[t #KkI?L- bF-.RCc S&˰u-*>ǖq7^Lt u ĐX̠Ғ(v0J(Mu[<;+ %$?u!2Zѓ/e!=3*'+ mu[T,E9OA=syU sa0x?Ҭ3CFOI6sX.4`Lhј8+ ^Rre"24 9X˗u^ѵȠA@GS}t={` ])6ʵ4X<4[M,\]\1AGy^{Pz۶*VXL[5U2`yF=^[Lh֡1cn9'_}ౘ_G5 وrCХ I`̈́[ćd\hdnR^H`9=0 =d3skEB{ ~mv$?Û^ȨIENDB`licence.txt000066600000043254152140537230006725 0ustar00 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. includes/provider-dummy.php000066600000003453152140537230012061 0ustar00id; } /** * @return string */ public function getLabel() { return $this->label; } public function enable() { return false; } public function isEnabled() { return false; } public function isTested() { return false; } public function isTest() { return false; } public function connect() { } public function getState() { return 'pro-only'; } public function getIcon() { return plugins_url('/providers/' . $this->id . '/' . $this->id . '.png', NSL_PATH_FILE); } /** * @return string */ public function getColor() { return $this->color; } /** * @return int */ public function getPopupWidth() { return $this->popupWidth; } /** * @return int */ public function getPopupHeight() { return $this->popupHeight; } /** * @return mixed */ public function getPath() { return $this->path; } /** * @return NextendSocialProviderAdmin */ public function getAdmin() { return $this->admin; } /** * @param string $subview * * @return bool */ public function adminDisplaySubView($subview) { return false; } }includes/avatar.php000066600000041603152140537230010353 0ustar00get('avatar_store')) { add_action('nsl_update_avatar', array( $this, 'updateAvatar' ), 10, 3); // WP User Avatar https://wordpress.org/plugins/wp-user-avatar/ // Ultimate member if (!defined('WPUA_VERSION') && !class_exists('UM', false) && !class_exists('buddypress', false)) { add_filter('get_avatar', array( $this, 'renderAvatar' ), 5, 6); add_filter('bp_core_fetch_avatar', array( $this, 'renderAvatarBP' ), 3, 2); add_filter('bp_core_fetch_avatar_url', array( $this, 'renderAvatarBPUrl' ), 3, 2); } add_filter('post_mime_types', array( $this, 'addPostMimeTypeAvatar' )); add_filter('ajax_query_attachments_args', array( $this, 'modifyQueryAttachmentsArgs' )); } } public function addPostMimeTypeAvatar($types) { $types['avatar'] = array( __('Avatar', 'nextend-facebook-connect'), __('Manage Avatar', 'nextend-facebook-connect'), _n_noop('Avatar (%s)', 'Avatar (%s)', 'nextend-facebook-connect') ); return $types; } public function modifyQueryAttachmentsArgs($query) { if (!isset($query['meta_query']) || !is_array($query['meta_query'])) { $query['meta_query'] = array(); } if ($query['post_mime_type'] === 'avatar') { $query['post_mime_type'] = 'image'; $query['meta_query']['relation'] = 'AND'; $query['meta_query'][] = array( 'key' => '_wp_attachment_wp_user_avatar', 'compare' => 'EXISTS' ); } else { $avatars_in_all_media = NextendSocialLogin::$settings->get('avatars_in_all_media'); //Avatars will be loaded in Media Libray Grid view - All media items if $avatars_in_all_media is disabled! if (!$avatars_in_all_media) { $query['meta_query']['relation'] = 'AND'; $query['meta_query'][] = array( 'key' => '_wp_attachment_wp_user_avatar', 'compare' => 'NOT EXISTS' ); } } return $query; } /** * @param NextendSocialProvider $provider * @param $user_id * @param $avatarUrl */ public function updateAvatar($provider, $user_id, $avatarUrl) { global $blog_id, $wpdb; if (!empty($avatarUrl)) { if (class_exists('UM', false)) { require_once(ABSPATH . '/wp-admin/includes/file.php'); $profile_photo = get_user_meta($user_id, 'profile_photo', true); if (empty($profile_photo)) { $extension = 'jpg'; if (preg_match('/\.(jpg|jpeg|gif|png)/', $avatarUrl, $match)) { $extension = $match[1]; } $avatarTempPath = download_url($avatarUrl); if (!is_wp_error($avatarTempPath)) { $umAvatarKey = 'profile_photo'; $umNameWithExtension = $umAvatarKey . '.' . $extension; $umUserAvatarDir = UM() ->uploader() ->get_upload_user_base_dir($user_id, true); if ($umUserAvatarDir) { $umUserAvatarPath = $umUserAvatarDir . DIRECTORY_SEPARATOR . $umNameWithExtension; $umAvatarInfo = @getimagesize($avatarTempPath); /*this copy will be deleted after resizing*/ copy($avatarTempPath, $umUserAvatarPath); UM() ->uploader() ->resize_image($umUserAvatarPath, $umUserAvatarPath, $umAvatarKey, $user_id, '0,0,' . $umAvatarInfo[0] . ',' . $umAvatarInfo[0]); /*the final profile_photo*/ copy($avatarTempPath, $umUserAvatarPath); update_user_meta($user_id, $umAvatarKey, $umNameWithExtension); } } unlink($avatarTempPath); UM() ->user() ->remove_cache($user_id); }; return; } //upload user avatar for BuddyPress - bp_displayed_user_avatar() function if (class_exists('BuddyPress', false)) { if (!empty($avatarUrl)) { $extension = 'jpg'; if (preg_match('/\.(jpg|jpeg|gif|png)/', $avatarUrl, $match)) { $extension = $match[1]; } require_once(ABSPATH . '/wp-admin/includes/file.php'); $avatarTempPath = download_url($avatarUrl); if (!is_wp_error($avatarTempPath)) { if (!function_exists('xprofile_avatar_upload_dir')) { require_once(buddypress()->plugin_dir . '/bp-xprofile/bp-xprofile-functions.php'); } $pathInfo = xprofile_avatar_upload_dir('avatars', $user_id); if (wp_mkdir_p($pathInfo['path'])) { if ($av_dir = opendir($pathInfo['path'] . '/')) { $hasAvatar = false; while (false !== ($avatar_file = readdir($av_dir))) { if ((preg_match("/-bpfull/", $avatar_file) || preg_match("/-bpthumb/", $avatar_file))) { $hasAvatar = true; break; } } if (!$hasAvatar) { copy($avatarTempPath, $pathInfo['path'] . '/' . 'avatar-bpfull.' . $extension); rename($avatarTempPath, $pathInfo['path'] . '/' . 'avatar-bpthumb.' . $extension); } } closedir($av_dir); } } } } /** * $original_attachment_id is false, if the user has had avatar set but the path is not found. */ $original_attachment_id = get_user_meta($user_id, $wpdb->get_blog_prefix($blog_id) . 'user_avatar', true); if ($original_attachment_id) { $attached_file = get_attached_file($original_attachment_id); if (($attached_file && !file_exists($attached_file)) || !$attached_file) { $original_attachment_id = false; } } $overwriteAttachment = false; /** * Overwrite the original attachment if avatar was set and the provider attachment exits. */ if ($original_attachment_id && get_post_meta($original_attachment_id, $provider->getId() . '_avatar', true)) { $overwriteAttachment = true; } if (!$original_attachment_id) { /** * If the user unlink and link the social provider back the original avatar will be used. */ $args = array( 'post_type' => 'attachment', 'post_status' => 'inherit', 'meta_query' => array( array( 'key' => $provider->getId() . '_avatar', 'value' => $provider->getAuthUserData('id') ) ) ); $query = new WP_Query($args); if ($query->post_count > 0) { $original_attachment_id = $query->posts[0]->ID; $overwriteAttachment = true; update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id) . 'user_avatar', $original_attachment_id); } } /** * If there was no original avatar or overwrite mode is on, download the avatar of the selected provider.* */ if (!$original_attachment_id || $overwriteAttachment === true) { require_once(ABSPATH . '/wp-admin/includes/file.php'); $avatarTempPath = download_url($avatarUrl); if (!is_wp_error($avatarTempPath)) { $mime = wp_get_image_mime($avatarTempPath); $mime_to_ext = apply_filters('getimagesize_mimes_to_exts', array( 'image/jpeg' => 'jpg', 'image/png' => 'png', 'image/gif' => 'gif', 'image/bmp' => 'bmp', 'image/tiff' => 'tif', )); /** * If the uploaded image has extension from the mime type and it is appear in the $mime_to_ext. * Make a unique filename, depending on the extension. * Copy the downloaded file with the new name to the uploads path. * Unlin the downloaded file. */ if (isset($mime_to_ext[$mime])) { $wp_upload_dir = wp_upload_dir(); $filename = 'user-' . $user_id . '.' . $mime_to_ext[$mime]; $filename = wp_unique_filename($wp_upload_dir['path'], $filename); $newAvatarPath = trailingslashit($wp_upload_dir['path']) . $filename; $newFile = @copy($avatarTempPath, $newAvatarPath); @unlink($avatarTempPath); if (false !== $newFile) { $url = $wp_upload_dir['url'] . '/' . basename($filename); if ($overwriteAttachment) { $originalAvatarImage = get_attached_file($original_attachment_id); // we got the same image, so we do not want to store it if (md5_file($originalAvatarImage) === md5_file($newAvatarPath)) { @unlink($newAvatarPath); } else { // Store the new avatar and remove the old one @unlink($originalAvatarImage); update_attached_file($original_attachment_id, $newAvatarPath); // Make sure that this file is included, as wp_generate_attachment_metadata() depends on it. require_once(ABSPATH . 'wp-admin/includes/image.php'); wp_update_attachment_metadata($original_attachment_id, wp_generate_attachment_metadata($original_attachment_id, $newAvatarPath)); update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id) . 'user_avatar', $original_attachment_id); } } else { $attachment = array( 'guid' => $url, 'post_mime_type' => $mime, 'post_title' => '', 'post_content' => '', 'post_status' => 'private', ); $new_attachment_id = wp_insert_attachment($attachment, $newAvatarPath); if (!is_wp_error($new_attachment_id)) { // Make sure that this file is included, as wp_generate_attachment_metadata() depends on it. require_once(ABSPATH . 'wp-admin/includes/image.php'); wp_update_attachment_metadata($new_attachment_id, wp_generate_attachment_metadata($new_attachment_id, $newAvatarPath)); update_post_meta($new_attachment_id, $provider->getId() . '_avatar', $provider->getAuthUserData('id')); update_post_meta($new_attachment_id, '_wp_attachment_wp_user_avatar', $user_id); update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id) . 'user_avatar', $new_attachment_id); } } } } } } } } public function renderAvatar($avatar = '', $id_or_email, $size = 96, $default = '', $alt = false, $args = array()) { global $blog_id, $wpdb; $id = 0; /** * Get the user id depending on the $id_or_email, it can be the user id, email and object. */ if (is_numeric($id_or_email)) { $id = $id_or_email; } else if (is_string($id_or_email)) { $user = get_user_by('email', $id_or_email); if ($user) { $id = $user->ID; } } else if (is_object($id_or_email)) { if (!empty($id_or_email->comment_author_email)) { $user = get_user_by('email', $id_or_email->comment_author_email); if ($user) { $id = $user->ID; } } else if (!empty($id_or_email->user_id)) { $id = $id_or_email->user_id; } } if ($id == 0) { return $avatar; } $url = ''; /** * Get the avatar attachment id of the user. */ $attachment_id = get_user_meta($id, $wpdb->get_blog_prefix($blog_id) . 'user_avatar', true); if (wp_attachment_is_image($attachment_id)) { $get_size = is_numeric($size) ? array( $size, $size ) : $size; $image_src_array = wp_get_attachment_image_src($attachment_id, $get_size); $url = $image_src_array[0]; if (is_numeric($size)) { $args['width'] = $image_src_array[1]; $args['height'] = $image_src_array[2]; } } if (empty($url)) { $url = NextendSocialLogin::getAvatar($id); } if (!$url) { return $avatar; } if (defined('IS_PROFILE_PAGE') && IS_PROFILE_PAGE) { add_filter('user_profile_picture_description', array( $this, 'removeProfilePictureGravatarDescription' )); } $class = array( 'avatar', 'avatar-' . (int)$args['size'], 'photo' ); if ($args['class']) { if (is_array($args['class'])) { $class = array_merge($class, $args['class']); } else { $class[] = $args['class']; } } return sprintf("%s", esc_attr($args['alt']), esc_url($url), esc_attr(join(' ', $class)), (int)$args['height'], (int)$args['width'], $args['extra_attr']); } public function renderAvatarBP($avatar, $params) { if (strpos($avatar, 'gravatar.com', 0) > -1) { $avatar = $this->renderAvatar($avatar, ($params['object'] == 'user') ? $params['item_id'] : '', ($params['object'] == 'user') ? (($params['type'] == 'thumb') ? 50 : 150) : 50, '', ''); } return $avatar; } public function renderAvatarBPUrl($avatar, $params) { if (strpos($avatar, 'gravatar.com', 0) > -1) { $avatar = $this->renderAvatar($avatar, ($params['object'] == 'user') ? $params['item_id'] : '', ($params['object'] == 'user') ? (($params['type'] == 'thumb') ? 50 : 150) : 50, '', ''); } return $avatar; } public function removeProfilePictureGravatarDescription($description) { if (strpos($description, 'Gravatar') !== false) { return ''; } return $description; } } NextendSocialLoginAvatar::getInstance();includes/oauth2.php000066600000021725152140537230010302 0ustar00validateState()) { throw new Exception($_GET['error'] . ': ' . htmlspecialchars_decode($_GET['error_description'])); } } } public function getTestUrl() { return $this->endpointAccessToken; } public function hasAuthenticateData() { return isset($_REQUEST['code']); } /** * @param string $client_id */ public function setClientId($client_id) { $this->client_id = $client_id; } /** * @param string $client_secret */ public function setClientSecret($client_secret) { $this->client_secret = $client_secret; } /** * @param string $redirect_uri */ public function setRedirectUri($redirect_uri) { $this->redirect_uri = $redirect_uri; } public function getEndpointAuthorization() { return $this->endpointAuthorization; } /* * Adds response_type, client_id, redirect_uri and state as query parameter in the Authorization Url. * client_id can be found in the App when you create one * redirect_uri is the url you wish to be redirected after you entered you login credentials * state is a randomly generated string */ public function createAuthUrl() { $args = array( 'response_type' => 'code', 'client_id' => urlencode($this->client_id), 'redirect_uri' => urlencode($this->redirect_uri), 'state' => urlencode($this->getState()) ); $scopes = apply_filters('nsl_' . $this->providerID . '_scopes', $this->scopes); if (count($scopes)) { $args['scope'] = urlencode($this->formatScopes($scopes)); } return add_query_arg($args, $this->getEndpointAuthorization()); } /** * @param $scopes * Connects an array of scopes with whitespace. * * @return string */ protected function formatScopes($scopes) { return implode(' ', array_unique($scopes)); } /** * @return bool|false|string * If the code that was sent by the selected provider and the state is valid, * we can make a request for an accessToken with wp_remote_post(). * The result contains HTTP headers and content. * * Returns the accessToken with which we can make certain requests for their user profile data. * @throws Exception */ public function authenticate() { if (isset($_GET['code'])) { if (!$this->validateState()) { throw new Exception('Unable to validate CSRF state'); } $http_args = array( 'timeout' => 15, 'user-agent' => 'WordPress', 'body' => array( 'grant_type' => 'authorization_code', 'code' => $_GET['code'], 'redirect_uri' => $this->redirect_uri, 'client_id' => $this->client_id, 'client_secret' => $this->client_secret ) ); $request = wp_remote_post($this->endpointAccessToken, $this->extendAllHttpArgs($http_args)); if (is_wp_error($request)) { throw new Exception($request->get_error_message()); } else if (wp_remote_retrieve_response_code($request) !== 200) { $this->errorFromResponse(json_decode(wp_remote_retrieve_body($request), true)); } $accessTokenData = json_decode(wp_remote_retrieve_body($request), true); if (!is_array($accessTokenData)) { throw new Exception(sprintf(__('Unexpected response: %s', 'nextend-facebook-connect'), wp_remote_retrieve_body($request))); } $accessTokenData['created'] = time(); $this->access_token_data = $accessTokenData; return wp_json_encode($accessTokenData); } return false; } /** * @param $response * * @throws Exception */ protected function errorFromResponse($response) { if (isset($response['error'])) { throw new Exception($response['error'] . ': ' . $response['error_description']); } } public function deleteLoginPersistentData() { Persistent::delete($this->providerID . '_state'); } /** * If the stored state is the same as the state we have received from the remote Provider, it is valid. * * @return bool */ protected function validateState() { $this->state = Persistent::get($this->providerID . '_state'); if ($this->state === false) { return false; } if (empty($_GET['state'])) { return false; } if ($_GET['state'] == $this->state) { return true; } return false; } /** * Returns the stored state for the current provider. * * @return bool|mixed|null|string */ protected function getState() { $this->state = Persistent::get($this->providerID . '_state'); if ($this->state === null) { $this->state = $this->generateRandomState(); Persistent::set($this->providerID . '_state', $this->state); } return $this->state; } /** * Generates a random string, which will be needed for the remote provider. * It will be stored for a time. * * @return bool|string */ protected function generateRandomState() { if (function_exists('random_bytes')) { return $this->bytesToString(random_bytes(self::CSRF_LENGTH)); } if (function_exists('mcrypt_create_iv')) { /** @noinspection PhpDeprecationInspection */ $binaryString = mcrypt_create_iv(self::CSRF_LENGTH, MCRYPT_DEV_URANDOM); if ($binaryString !== false) { return $this->bytesToString($binaryString); } } if (function_exists('openssl_random_pseudo_bytes')) { $wasCryptographicallyStrong = false; $binaryString = openssl_random_pseudo_bytes(self::CSRF_LENGTH, $wasCryptographicallyStrong); if ($binaryString !== false && $wasCryptographicallyStrong === true) { return $this->bytesToString($binaryString); } } return $this->randomStr(self::CSRF_LENGTH); } private function bytesToString($binaryString) { return substr(bin2hex($binaryString), 0, self::CSRF_LENGTH); } private function randomStr($length, $keyspace = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') { $str = ''; $max = strlen($keyspace) - 1; for ($i = 0; $i < $length; ++$i) { $str .= $keyspace[random_int(0, $max)]; } return $str; } /** * @param $path * @param array $data * @param $endpoint * * @return array * @throws Exception */ public function get($path, $data = array(), $endpoint = false) { $http_args = array( 'timeout' => 15, 'user-agent' => 'WordPress', 'body' => array_merge($this->defaultRestParams, $data) ); if (!$endpoint) { $endpoint = $this->endpointRestAPI; } $request = wp_remote_get($endpoint . $path, $this->extendHttpArgs($this->extendAllHttpArgs($http_args))); if (is_wp_error($request)) { throw new Exception($request->get_error_message()); } else if (wp_remote_retrieve_response_code($request) !== 200) { $this->errorFromResponse(json_decode(wp_remote_retrieve_body($request), true)); } $result = json_decode(wp_remote_retrieve_body($request), true); if (!is_array($result)) { throw new Exception(sprintf(__('Unexpected response: %s', 'nextend-facebook-connect'), wp_remote_retrieve_body($request))); } return $result; } /** * @param $http_args * Puts additional data into the http header. * Used for getting access to the resources with a bearer token. * * @return mixed */ protected function extendHttpArgs($http_args) { $http_args['headers'] = array( 'Authorization' => 'Bearer ' . $this->access_token_data['access_token'] ); return $http_args; } protected function extendAllHttpArgs($http_args) { return $http_args; } }includes/userData.php000066600000024146152140537230010650 0ustar00userData = $userData; $this->socialUser = $socialUser; $this->provider = $provider; $askExtraData = apply_filters('nsl_registration_require_extra_input', false, $this->userData); if ($askExtraData) { $registerFlowPage = NextendSocialLogin::getRegisterFlowPage(); if ($registerFlowPage !== false) { if (!is_page($registerFlowPage)) { wp_redirect(add_query_arg(array( 'loginSocial' => $this->provider->getId() ), get_permalink($registerFlowPage))); exit; } $this->isCustomRegisterFlow = true; } else if (NextendSocialLogin::$WPLoginCurrentView == 'login' && get_option('users_can_register')) { wp_redirect(add_query_arg(array( 'loginSocial' => $this->provider->getId() ), NextendSocialLogin::getRegisterUrl())); exit; } $this->errors = new WP_Error(); $this->userData = apply_filters('nsl_registration_validate_extra_input', $this->userData, $this->errors); /** * It is not a submit or there is an error */ if (!$this->isPost() || $this->errors->get_error_code() != '') { $this->displayForm(); } } $this->errors = new WP_Error(); $this->userData = apply_filters('nsl_registration_user_data', $this->userData, $this->provider, $this->errors); if ($this->errors->get_error_code() != '') { $this->provider->deleteLoginPersistentData(); if ($this->errors->get_error_message() != '') { Notices::addError($this->errors->get_error_message()); } wp_redirect(site_url('wp-login.php')); exit(); } } public function toArray() { return $this->userData; } public function isPost() { return isset($_POST['submit']); } /** * @throws NSLContinuePageRenderException */ public function displayForm() { NextendSocialLogin::removeLoginFormAssets(); if ($this->isCustomRegisterFlow) { add_shortcode('nextend_social_login_register_flow', array( $this, 'customRegisterFlowShortcode' )); throw new NSLContinuePageRenderException('CUSTOM_REGISTER_FLOW'); } else { if (!function_exists('login_header')) { if (NextendSocialLogin::$WPLoginCurrentView == 'register-bp') { if (class_exists('NextendSocialLoginPRO', false)) { remove_action('bp_before_account_details_fields', 'NextendSocialLoginPRO::bp_register_form'); remove_action('bp_before_register_page', 'NextendSocialLoginPRO::bp_register_form'); remove_action('bp_after_register_page', 'NextendSocialLoginPRO::bp_register_form'); } add_action('bp_before_register_page', array( $this, 'bp_before_register_page' )); add_action('bp_after_register_page', array( $this, 'bp_after_register_page' )); throw new NSLContinuePageRenderException('BuddyPress'); } else if (defined('THEME_MY_LOGIN_PATH')) { add_shortcode('theme-my-login', array( $this, 'render_registration_form_tml' )); throw new NSLContinuePageRenderException('THEME_MY_LOGIN'); } require_once(dirname(__FILE__) . '/compat-wp-login.php'); } login_header(__('Registration Form'), '

' . __('Register For This Site!') . '

', $this->errors); echo $this->render_registration_form(); login_footer('user_login'); exit; } } public function customRegisterFlowShortcode() { $errors = $this->errors; if (is_wp_error($errors)) { $html = array(); if ($errors->get_error_messages()) { foreach ($errors->get_error_messages() as $error) { $html[] = '
' . $error . '
'; } } if (!empty($html)) { echo ''; echo '
' . implode('', $html) . '
'; } } $this->errors = array(); return $this->render_registration_form(); } public function render_registration_form() { if ($this->isCustomRegisterFlow) { $postUrl = add_query_arg(array( 'loginSocial' => $this->provider->getId() ), get_permalink(NextendSocialLogin::getRegisterFlowPage())); } else if (strpos(NextendSocialLogin::$WPLoginCurrentView, 'register') === 0) { $postUrl = add_query_arg(array( 'loginSocial' => $this->provider->getId() ), NextendSocialLogin::getRegisterUrl()); } else { $postUrl = add_query_arg('loginSocial', $this->provider->getId(), NextendSocialLogin::getLoginUrl('login_post')); } ob_start(); ?>
userData, $this->provider); ?> userData, $this->provider); ?>

'; $after_message = '

'; echo $before_message . $registerMessage . $after_message; } $wp_error = $this->errors; if (is_wp_error($wp_error)) { if ($wp_error->get_error_code()) { $errors = ''; $messages = ''; foreach ($wp_error->get_error_codes() as $code) { $severity = $wp_error->get_error_data($code); foreach ($wp_error->get_error_messages($code) as $error) { if ('message' == $severity) { $messages .= ' ' . $error . "
\n"; } else { $errors .= ' ' . $error . "
\n"; } } } if (!empty($errors)) { echo '

' . apply_filters('login_errors', $errors) . "

\n"; } if (!empty($messages)) { echo '

' . apply_filters('login_messages', $messages) . "

\n"; } } } $this->errors = array(); echo $this->render_registration_form(); ?>
errors; if (is_wp_error($wp_error)) { if ($wp_error->get_error_code()) { $errors = ''; $messages = ''; foreach ($wp_error->get_error_codes() as $code) { $severity = $wp_error->get_error_data($code); foreach ($wp_error->get_error_messages($code) as $error) { if ('message' == $severity) { $messages .= ' ' . $error . "
\n"; } else { $errors .= ' ' . $error . "
\n"; } } } $html = ''; if (!empty($errors)) { $html .= '
' . apply_filters('login_errors', $errors) . "
\n"; } if (!empty($messages)) { $html .= '
' . apply_filters('login_messages', $messages) . "
\n"; } if (!empty($html)) { ?>
errors = array(); echo $this->render_registration_form(); } }includes/compat-wp-login.php000066600000021335152140537230012112 0ustar00` element. * Default 'Log In'. * @param string $message Optional. Message to display in header. Default empty. * @param WP_Error $wp_error Optional. The error to pass. Default empty. */ function login_header( $title = 'Log In', $message = '', $wp_error = '' ) { global $error, $interim_login, $action; // Don't index any of these forms add_action('login_head', 'wp_no_robots'); add_action('login_head', 'wp_login_viewport_meta'); if (empty($wp_error)) $wp_error = new WP_Error(); // Shake it! $shake_error_codes = array( 'empty_password', 'empty_email', 'invalid_email', 'invalidcombo', 'empty_username', 'invalid_username', 'incorrect_password' ); /** * Filters the error codes array for shaking the login form. * * @param array $shake_error_codes Error codes that shake the login form. * * @since 3.0.0 * */ $shake_error_codes = apply_filters('shake_error_codes', $shake_error_codes); if ($shake_error_codes && $wp_error->get_error_code() && in_array($wp_error->get_error_code(), $shake_error_codes)) add_action('login_head', 'wp_shake_js', 12); $login_title = get_bloginfo('name', 'display'); /* translators: Login screen title. 1: Login screen name, 2: Network or site name */ $login_title = sprintf(__('%1$s ‹ %2$s — WordPress'), $title, $login_title); /** * Filters the title tag content for login page. * * @param string $login_title The page title, with extra context added. * @param string $title The original page title. * * @since 4.9.0 * */ $login_title = apply_filters('login_title', $login_title, $title); ?> > <?php echo $login_title; ?> get_error_code()) { ?> site_name; } else { $login_header_url = __('https://wordpress.org/'); $login_header_title = __('Powered by WordPress'); } /** * Filters link URL of the header logo above login form. * * @param string $login_header_url Login header logo URL. * * @since 2.1.0 * */ $login_header_url = apply_filters('login_headerurl', $login_header_url); /** * Filters the title attribute of the header logo above login form. * * @param string $login_header_title Login header logo title attribute. * * @since 2.1.0 * */ $login_header_title = apply_filters('login_headertitle', $login_header_title); /* * To match the URL/title set above, Multisite sites have the blog name, * while single sites get the header title. */ if (is_multisite()) { $login_header_text = get_bloginfo('name', 'display'); } else { $login_header_text = $login_header_title; } $classes = array( 'login-action-' . $action, 'wp-core-ui' ); if (is_rtl()) $classes[] = 'rtl'; if ($interim_login) { $classes[] = 'interim-login'; ?>

add('error', $error); unset($error); } if ($wp_error->get_error_code()) { $errors = ''; $messages = ''; foreach ($wp_error->get_error_codes() as $code) { $severity = $wp_error->get_error_data($code); foreach ($wp_error->get_error_messages($code) as $error_message) { if ('message' == $severity) $messages .= ' ' . $error_message . "
\n"; else $errors .= ' ' . $error_message . "
\n"; } } if (!empty($errors)) { /** * Filters the error messages displayed above the login form. * * @param string $errors Login error message. * * @since 2.1.0 * */ echo '
' . apply_filters('login_errors', $errors) . "
\n"; } if (!empty($messages)) { /** * Filters instructional messages displayed above the login form. * * @param string $messages Login messages. * * @since 2.5.0 * */ echo '

' . apply_filters('login_messages', $messages) . "

\n"; } } } // End of login_header() /** * Outputs the footer for the login page. * * @param string $input_id Which input to auto-focus */ function login_footer($input_id = '') { global $interim_login; // Don't allow interim logins to navigate away from the page. if (!$interim_login): ?>

', '
'); } ?>
providerID = $providerID; } public function checkError() { } /** * @param string $access_token_data */ public function setAccessTokenData($access_token_data) { $this->access_token_data = json_decode($access_token_data, true); } public abstract function createAuthUrl(); public abstract function authenticate(); public abstract function get($path, $data = array(), $endpoint = false); /** * @return bool */ public abstract function hasAuthenticateData(); /** * @return string */ public abstract function getTestUrl(); }includes/provider.php000066600000111735152140537230010733 0ustar00dbID)) { $this->dbID = $this->id; } $this->optionKey = 'nsl_' . $this->id; do_action('nsl_provider_init', $this); $this->sync_fields = apply_filters('nsl_' . $this->getId() . '_sync_fields', $this->sync_fields); $extraSettings = apply_filters('nsl_' . $this->getId() . '_extra_settings', array( 'ask_email' => 'when-empty', 'ask_user' => 'never', 'ask_password' => 'never', 'auto_link' => 'email', 'disabled_roles' => array(), 'register_roles' => array( 'default' ) )); foreach ($this->getSyncFields() AS $field_name => $fieldData) { $extraSettings['sync_fields/fields/' . $field_name . '/enabled'] = 0; $extraSettings['sync_fields/fields/' . $field_name . '/meta_key'] = $this->id . '_' . $field_name; } $this->settings = new NextendSocialLoginSettings($this->optionKey, array_merge(array( 'settings_saved' => '0', 'tested' => '0', 'custom_default_button' => '', 'custom_icon_button' => '', 'login_label' => '', 'link_label' => '', 'unlink_label' => '', 'user_prefix' => '', 'user_fallback' => '', 'oauth_redirect_url' => '', 'terms' => '', 'sync_fields/link' => 0, 'sync_fields/login' => 0 ), $extraSettings, $defaultSettings)); $this->admin = new NextendSocialProviderAdmin($this); } public function getOptionKey() { return $this->optionKey; } public function getRawDefaultButton() { return '
' . $this->svg . '
{{label}}
'; } public function getRawIconButton() { return '
' . $this->svg . '
'; } public function getDefaultButton($label) { $button = $this->settings->get('custom_default_button'); if (!empty($button)) { return str_replace('{{label}}', __($label, 'nextend-facebook-connect'), $button); } return str_replace('{{label}}', __($label, 'nextend-facebook-connect'), $this->getRawDefaultButton()); } public function getIconButton() { $button = $this->settings->get('custom_icon_button'); if (!empty($button)) { return $button; } return $this->getRawIconButton(); } public function getLoginUrl() { $args = array('loginSocial' => $this->getId()); if (isset($_REQUEST['interim-login'])) { $args['interim-login'] = 1; } return add_query_arg($args, NextendSocialLogin::getLoginUrl()); } public function getRedirectUri() { $args = array('loginSocial' => $this->getId()); return add_query_arg($args, NextendSocialLogin::getLoginUrl()); } public function getRedirectUriForApp() { return $this->getRedirectUri(); } public function needPro() { return false; } /** * Enable the selected provider. * * @return bool */ public function enable() { $this->enabled = true; do_action('nsl_' . $this->getId() . '_enabled'); return true; } /** * Check if provider is enabled. * * @return bool */ public function isEnabled() { return $this->enabled; } /** * Check if provider is verified. * * @return bool */ public function isTested() { return !!$this->settings->get('tested'); } /** * Check if login url was changed by another plugin. If it was changed returns true, else false. * * @return bool */ public function checkOauthRedirectUrl() { $oauth_redirect_url = $this->settings->get('oauth_redirect_url'); if (empty($oauth_redirect_url) || $oauth_redirect_url == $this->getRedirectUri()) { return true; } return false; } public function updateOauthRedirectUrl() { $this->settings->update(array( 'oauth_redirect_url' => $this->getRedirectUri() )); } /** * @return array */ public function getRequiredFields() { return $this->requiredFields; } /** * Get the current state of a Provider. * * @return string */ public function getState() { foreach ($this->requiredFields AS $name => $label) { $value = $this->settings->get($name); if (empty($value)) { return 'not-configured'; } } if (!$this->isTested()) { return 'not-tested'; } if (!$this->isEnabled()) { return 'disabled'; } return 'enabled'; } /** * Authenticate and connect with the provider. */ public function connect() { try { $this->doAuthenticate(); } catch (NSLContinuePageRenderException $e) { // This is not an error. We allow the page to continue the normal display flow and later we inject our things. // Used by Theme my login function where we override the shortcode and we display our email request. } catch (Exception $e) { $this->onError($e); } } /** * @return NextendSocialAuth */ protected abstract function getClient(); public function getTestUrl() { return $this->getClient() ->getTestUrl(); } /** * @throws NSLContinuePageRenderException */ protected function doAuthenticate() { if (!headers_sent()) { //All In One WP Security sets a LOCATION header, so we need to remove it to do a successful test. if (function_exists('header_remove')) { header_remove("LOCATION"); } else { header('LOCATION:', true); //Under PHP 5.3 } } //If it is a real login action, add the actions for the connection. if (!$this->isTest()) { add_action($this->id . '_login_action_before', array( $this, 'liveConnectBefore' )); add_action($this->id . '_login_action_redirect', array( $this, 'liveConnectRedirect' )); add_action($this->id . '_login_action_get_user_profile', array( $this, 'liveConnectGetUserProfile' )); $interim_login = isset($_REQUEST['interim-login']); if ($interim_login) { Persistent::set($this->id . '_interim_login', 1); } /** * Store the settings for the provider login. */ $display = isset($_REQUEST['display']); if ($display && $_REQUEST['display'] == 'popup') { Persistent::set($this->id . '_display', 'popup'); } } else { //This is just to verify the settings. add_action($this->id . '_login_action_get_user_profile', array( $this, 'testConnectGetUserProfile' )); } // Redirect if the registration is blocked by another Plugin like Cerber. if (function_exists('cerber_is_allowed')) { $allowed = cerber_is_allowed(); if (!$allowed) { global $wp_cerber; $error = $wp_cerber->getErrorMsg(); Notices::addError($error); $this->redirectToLoginForm(); } } do_action($this->id . '_login_action_before', $this); $client = $this->getClient(); $accessTokenData = $this->getAnonymousAccessToken(); $client->checkError(); do_action($this->id . '_login_action_redirect', $this); /** * Check if we have an accessToken and a code. * If there is no access token and code it redirects to the Authorization Url. */ if (!$accessTokenData && !$client->hasAuthenticateData()) { header('LOCATION: ' . $client->createAuthUrl()); exit; } else { /** * If the code is OK but there is no access token, authentication is necessary. */ if (!$accessTokenData) { $accessTokenData = $client->authenticate(); $accessTokenData = $this->requestLongLivedToken($accessTokenData); /** * store the access token */ $this->setAnonymousAccessToken($accessTokenData); } else { $client->setAccessTokenData($accessTokenData); } /** * if the login display was in popup window, * in the source window the user is redirected to the login url. * and the popup window must be closed */ if (Persistent::get($this->id . '_display') == 'popup') { Persistent::delete($this->id . '_display'); ?> <?php _e('Authentication successful', 'nextend-facebook-connect'); ?> authUserData = $this->getCurrentUserInfo(); do_action($this->id . '_login_action_get_user_profile', $accessTokenData); } } /** * @param $access_token * Connect with the selected provider. * After a successful login, we no longer need the previous persistent data. */ public function liveConnectGetUserProfile($access_token) { $socialUser = new NextendSocialUser($this, $access_token); $socialUser->liveConnectGetUserProfile(); $this->deleteLoginPersistentData(); $this->redirectToLastLocationOther(); } /** * @param $user_id * @param $providerIdentifier * @param $isRegister * Insert the userid into the wp_social_users table, * in this way a link is created between user accounts and the providers. * * @return bool */ public function linkUserToProviderIdentifier($user_id, $providerIdentifier, $isRegister = false) { /** @var $wpdb WPDB */ global $wpdb; $connectedProviderID = $this->getProviderIdentifierByUserID($user_id); if ($connectedProviderID !== null) { if ($connectedProviderID == $providerIdentifier) { // This provider already linked to this user return true; } // User already have this provider attached to his account with different provider id. return false; } if ($isRegister) { /** * This is a register action. */ $wpdb->insert($wpdb->prefix . 'social_users', array( 'ID' => $user_id, 'type' => $this->dbID, 'identifier' => $providerIdentifier, 'register_date' => current_time('mysql'), 'link_date' => current_time('mysql'), ), array( '%d', '%s', '%s', '%s', '%s' )); } else { /** * This is a link action. */ $wpdb->insert($wpdb->prefix . 'social_users', array( 'ID' => $user_id, 'type' => $this->dbID, 'identifier' => $providerIdentifier, 'link_date' => current_time('mysql'), ), array( '%d', '%s', '%s', '%s' )); } do_action('nsl_' . $this->getId() . '_link_user', $user_id, $this->getId()); return true; } public function getUserIDByProviderIdentifier($identifier) { /** @var $wpdb WPDB */ global $wpdb; return $wpdb->get_var($wpdb->prepare('SELECT ID FROM `' . $wpdb->prefix . 'social_users` WHERE type = %s AND identifier = %s', array( $this->dbID, $identifier ))); } protected function getProviderIdentifierByUserID($user_id) { /** @var $wpdb WPDB */ global $wpdb; return $wpdb->get_var($wpdb->prepare('SELECT identifier FROM `' . $wpdb->prefix . 'social_users` WHERE type = %s AND ID = %s', array( $this->dbID, $user_id ))); } /** * @param $user_id * Delete the link between the user account and the provider. */ public function removeConnectionByUserID($user_id) { /** @var $wpdb WPDB */ global $wpdb; $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'social_users` WHERE type = %s AND ID = %d', array( $this->dbID, $user_id ))); } protected function unlinkUser() { //Filter to disable unlinking social accounts $unlinkAllowed = apply_filters('nsl_allow_unlink', true); if ($unlinkAllowed) { $user_info = wp_get_current_user(); if ($user_info->ID) { $this->removeConnectionByUserID($user_info->ID); return true; } } return false; } /** * If the current user has linked the account with a provider return the user identifier else false. * * @return bool|null|string */ public function isCurrentUserConnected() { /** @var $wpdb WPDB */ global $wpdb; $current_user = wp_get_current_user(); $ID = $wpdb->get_var($wpdb->prepare('SELECT identifier FROM `' . $wpdb->prefix . 'social_users` WHERE type LIKE %s AND ID = %d', array( $this->dbID, $current_user->ID ))); if ($ID === null) { return false; } return $ID; } /** * @param $user_id * If a user has linked the account with a provider return the user identifier else false. * * @return bool|null|string */ public function isUserConnected($user_id) { /** @var $wpdb WPDB */ global $wpdb; $ID = $wpdb->get_var($wpdb->prepare('SELECT identifier FROM `' . $wpdb->prefix . 'social_users` WHERE type LIKE %s AND ID = %d', array( $this->dbID, $user_id ))); if ($ID === null) { return false; } return $ID; } public function findUserByAccessToken($access_token) { return $this->getUserIDByProviderIdentifier($this->findSocialIDByAccessToken($access_token)); } public function findSocialIDByAccessToken($access_token) { $client = $this->getClient(); $client->setAccessTokenData($access_token); $this->authUserData = $this->getCurrentUserInfo(); return $this->getAuthUserData('id'); } public function getConnectButton($buttonStyle = 'default', $redirectTo = null, $trackerData = false) { $arg = array(); if (!empty($redirectTo)) { $arg['redirect'] = urlencode($redirectTo); } else if (!empty($_GET['redirect_to'])) { $arg['redirect'] = urlencode($_GET['redirect_to']); } else { $arg['redirect'] = NextendSocialLogin::getCurrentPageURL(); } if ($trackerData !== false) { $arg['trackerdata'] = urlencode($trackerData); $arg['trackerdata_hash'] = urlencode(wp_hash($trackerData)); } switch ($buttonStyle) { case 'icon': $button = $this->getIconButton(); break; default: $button = $this->getDefaultButton($this->settings->get('login_label')); break; } return '' . $button . ''; } public function getLinkButton() { $args = array( 'action' => 'link' ); $redirect = NextendSocialLogin::getCurrentPageURL(); if ($redirect !== false) { $args['redirect'] = urlencode($redirect); } return '' . $this->getDefaultButton($this->settings->get('link_label')) . ''; } public function getUnLinkButton() { $args = array( 'action' => 'unlink' ); $redirect = NextendSocialLogin::getCurrentPageURL(); if ($redirect !== false) { $args['redirect'] = urlencode($redirect); } return '' . $this->getDefaultButton($this->settings->get('unlink_label')) . ''; } public function redirectToLoginForm() { self::redirect(__('Authentication error', 'nextend-facebook-connect'), NextendSocialLogin::getLoginUrl()); } /** * -Allows for logged in users to unlink their account from a provider, if it was linked, and * redirects to the last location. * -During linking process, store the action as link. After the linking process is finished, * delete this stored info and redirects to the last location. */ public function liveConnectBefore() { if (is_user_logged_in() && $this->isCurrentUserConnected()) { if (isset($_GET['action']) && $_GET['action'] == 'unlink') { if ($this->unlinkUser()) { Notices::addSuccess(__('Unlink successful.', 'nextend-facebook-connect')); } else { Notices::addError(__('Unlink is not allowed!', 'nextend-facebook-connect')); } } $this->redirectToLastLocationOther(); exit; } if (isset($_GET['action']) && $_GET['action'] == 'link') { Persistent::set($this->id . '_action', 'link'); } if (is_user_logged_in() && Persistent::get($this->id . '_action') != 'link') { $this->deleteLoginPersistentData(); $this->redirectToLastLocationOther(); exit; } } /** * Store where the user logged in. */ public function liveConnectRedirect() { if (!empty($_GET['trackerdata']) && !empty($_GET['trackerdata_hash'])) { if (wp_hash($_GET['trackerdata']) === $_GET['trackerdata_hash']) { Persistent::set('trackerdata', $_GET['trackerdata']); } } if (!empty($_GET['redirect'])) { Persistent::set('redirect', $_GET['redirect']); } } public function redirectToLastLocation() { if (Persistent::get($this->id . '_interim_login') == 1) { $this->deleteLoginPersistentData(); $url = add_query_arg('interim_login', 'nsl', NextendSocialLogin::getLoginUrl('login')); self::redirect(__('Authentication successful', 'nextend-facebook-connect'), $url); exit; } self::redirect(__('Authentication successful', 'nextend-facebook-connect'), $this->getLastLocationRedirectTo()); } protected function redirectToLastLocationOther() { $this->redirectToLastLocation(); } protected function validateRedirect($location) { $location = wp_sanitize_redirect($location); return wp_validate_redirect($location, apply_filters('wp_safe_redirect_fallback', admin_url(), 302)); } public function hasFixedRedirect() { if (NextendSocialLogin::$WPLoginCurrentFlow == 'register') { $fixedRedirect = NextendSocialLogin::$settings->get('redirect_reg'); $fixedRedirect = apply_filters($this->id . '_register_redirect_url', $fixedRedirect, $this); if (!empty($fixedRedirect)) { return true; } } else if (NextendSocialLogin::$WPLoginCurrentFlow == 'login') { $fixedRedirect = NextendSocialLogin::$settings->get('redirect'); $fixedRedirect = apply_filters($this->id . '_login_redirect_url', $fixedRedirect, $this); if (!empty($fixedRedirect)) { return true; } } return false; } /** * If fixed redirect url is set, redirect to fixed redirect url. * If fixed redirect url is not set, but redirect is in the url redirect to the $_GET['redirect']. * If fixed redirect url is not set and there is no redirect in the url, redirects to the default redirect url if it * is set. * Else redirect to the site url. * * @return mixed|void */ protected function getLastLocationRedirectTo() { $redirect_to = ''; $requested_redirect_to = ''; $fixedRedirect = ''; if (NextendSocialLogin::$WPLoginCurrentFlow == 'register') { $fixedRedirect = NextendSocialLogin::$settings->get('redirect_reg'); $fixedRedirect = apply_filters($this->id . '_register_redirect_url', $fixedRedirect, $this); } else if (NextendSocialLogin::$WPLoginCurrentFlow == 'login') { $fixedRedirect = NextendSocialLogin::$settings->get('redirect'); $fixedRedirect = apply_filters($this->id . '_login_redirect_url', $fixedRedirect, $this); } if (!empty($fixedRedirect)) { $redirect_to = $fixedRedirect; } else { $requested_redirect_to = Persistent::get('redirect'); if (!empty($requested_redirect_to)) { if (empty($requested_redirect_to) || !NextendSocialLogin::isAllowedRedirectUrl($requested_redirect_to)) { if (!empty($_GET['redirect']) && NextendSocialLogin::isAllowedRedirectUrl($_GET['redirect'])) { $requested_redirect_to = $_GET['redirect']; } else { $requested_redirect_to = ''; } } if (empty($requested_redirect_to)) { $redirect_to = site_url(); } else { $redirect_to = $requested_redirect_to; } $redirect_to = wp_sanitize_redirect($redirect_to); $redirect_to = wp_validate_redirect($redirect_to, site_url()); $redirect_to = $this->validateRedirect($redirect_to); } else if (!empty($_GET['redirect']) && NextendSocialLogin::isAllowedRedirectUrl($_GET['redirect'])) { $redirect_to = $_GET['redirect']; $redirect_to = wp_sanitize_redirect($redirect_to); $redirect_to = wp_validate_redirect($redirect_to, site_url()); $redirect_to = $this->validateRedirect($redirect_to); } if (empty($redirect_to)) { $defaultRedirect = ''; if (NextendSocialLogin::$WPLoginCurrentFlow == 'register') { $defaultRedirect = NextendSocialLogin::$settings->get('default_redirect_reg'); $defaultRedirect = apply_filters($this->id . '_default_register_redirect_url', $defaultRedirect, $this); } else if (NextendSocialLogin::$WPLoginCurrentFlow == 'login') { $defaultRedirect = NextendSocialLogin::$settings->get('default_redirect'); $defaultRedirect = apply_filters($this->id . '_default_[login_redirect_url', $defaultRedirect, $this); } if ((!empty($defaultRedirect))) { $redirect_to = $defaultRedirect; } } $redirect_to = apply_filters('nsl_' . $this->getId() . 'default_last_location_redirect', $redirect_to, $requested_redirect_to); } if ($redirect_to == '' || $redirect_to == $this->getLoginUrl()) { $redirect_to = site_url(); } Persistent::delete('redirect'); return apply_filters('nsl_' . $this->getId() . 'last_location_redirect', $redirect_to, $requested_redirect_to); } /** * @param $user_id * @param $provider NextendSocialProvider * @param $access_token string */ public function syncProfile($user_id, $provider, $access_token) { } /** * Check if a logged in user with manage_options capability, want to verify their provider settings. * * @return bool */ public function isTest() { if (is_user_logged_in() && current_user_can('manage_options')) { if (isset($_REQUEST['test'])) { Persistent::set('test', 1); return true; } else if (Persistent::get('test') == 1) { return true; } } return false; } /** * Make the current provider in verified mode, and update the oauth_redirect_url. */ public function testConnectGetUserProfile() { $this->deleteLoginPersistentData(); $this->settings->update(array( 'tested' => 1, 'oauth_redirect_url' => $this->getRedirectUri() )); Notices::addSuccess(__('The test was successful', 'nextend-facebook-connect')); ?> <?php _e('The test was successful', 'nextend-facebook-connect'); ?> id . '_at', $accessToken); } protected function getAnonymousAccessToken() { return Persistent::get($this->id . '_at'); } public function deleteLoginPersistentData() { Persistent::delete($this->id . '_at'); Persistent::delete($this->id . '_interim_login'); Persistent::delete($this->id . '_display'); Persistent::delete($this->id . '_action'); Persistent::delete('test'); } /** * @param $e Exception */ protected function onError($e) { if (NextendSocialLogin::$settings->get('debug') == 1 || $this->isTest()) { header('HTTP/1.0 401 Unauthorized'); echo "Error: " . $e->getMessage() . "\n"; } else { //@TODO we might need to make difference between user cancelled auth and error and redirect the user based on that. $url = $this->getLastLocationRedirectTo(); ?> <?php echo __('Authentication failed', 'nextend-facebook-connect'); ?> deleteLoginPersistentData(); exit; } protected function saveUserData($user_id, $key, $data) { update_user_meta($user_id, $this->id . '_' . $key, $data); } protected function getUserData($user_id, $key) { return get_user_meta($user_id, $this->id . '_' . $key, true); } public function getAccessToken($user_id) { return $this->getUserData($user_id, 'access_token'); } /** * @param $user_id * * @return bool * @deprecated * */ public function getAvatar($user_id) { return false; } /** * @return array */ protected function getCurrentUserInfo() { return array(); } protected function requestLongLivedToken($accessTokenData) { return $accessTokenData; } /** * @param $key * * @return string */ public function getAuthUserData($key) { return ''; } /** * @param $title * @param $url * Redirect the source of the popup window to a specified url. */ public static function redirect($title, $url) { ?> <?php echo $title; ?> sync_fields; } public function hasSyncFields() { return !empty($this->sync_fields); } public function validateSettings($newData, $postedData) { return $newData; } protected function needUpdateAvatar($user_id) { return apply_filters('nsl_avatar_store', NextendSocialLogin::$settings->get('avatar_store'), $user_id, $this); } protected function updateAvatar($user_id, $url) { do_action('nsl_update_avatar', $this, $user_id, $url); } public function exportPersonalData($userID) { $data = array(); $socialID = $this->isUserConnected($userID); if ($socialID !== false) { $data[] = array( 'name' => $this->getLabel() . ' ' . __('Identifier'), 'value' => $socialID, ); } $accessToken = $this->getAccessToken($userID); if (!empty($accessToken)) { $data[] = array( 'name' => $this->getLabel() . ' ' . __('Access token'), 'value' => $accessToken, ); } $profilePicture = $this->getUserData($userID, 'profile_picture'); if (!empty($profilePicture)) { $data[] = array( 'name' => $this->getLabel() . ' ' . __('Profile picture'), 'value' => $profilePicture, ); } foreach ($this->getSyncFields() AS $fieldName => $fieldData) { $meta_key = $this->settings->get('sync_fields/fields/' . $fieldName . '/meta_key'); if (!empty($meta_key)) { $value = get_user_meta($userID, $meta_key, true); if (!empty($value)) { $data[] = array( 'name' => $this->getLabel() . ' ' . $fieldData['label'], 'value' => $value ); } } } return $data; } protected function storeAccessToken($userID, $accessToken) { if (NextendSocialLogin::$settings->get('store_access_token') == 1) { $this->saveUserData($userID, 'access_token', $accessToken); } } public function getSyncDataFieldDescription($fieldName) { return ''; } /** * @param $user_id * Update social_users table with login date of the user. */ public function logLoginDate($user_id) { /** @var $wpdb WPDB */ global $wpdb; $wpdb->update($wpdb->prefix . 'social_users', array('login_date' => current_time('mysql'),), array( 'ID' => $user_id, 'type' => $this->dbID ), array( '%s', '%s' )); } }includes/provider-admin.php000066600000027774152140537230012032 0ustar00provider = $provider; $this->path = $this->provider->getPath() . '/admin'; add_filter('nsl_update_settings_validate_' . $this->provider->getOptionKey(), array( $this, 'validateSettings' ), 10, 2); } /** * @return NextendSocialProvider */ public function getProvider() { return $this->provider; } /** * @param string $subview * Returns the admin URL for a subview. * * @return string */ public function getUrl($subview = '') { return add_query_arg(array( 'subview' => $subview ), NextendSocialLoginAdmin::getAdminUrl('provider-' . $this->provider->getId())); } /** * @param $newData * @param $postedData * Returns the validated settings for the buttons. * * @return mixed */ public function validateSettings($newData, $postedData) { $newData = $this->provider->validateSettings($newData, $postedData); if (isset($postedData['custom_default_button'])) { if (isset($postedData['custom_default_button_enabled']) && $postedData['custom_default_button_enabled'] == '1') { $newData['custom_default_button'] = $postedData['custom_default_button']; } else { if ($postedData['custom_default_button'] != '') { $newData['custom_default_button'] = ''; } } } if (isset($postedData['custom_icon_button'])) { if (isset($postedData['custom_icon_button_enabled']) && $postedData['custom_icon_button_enabled'] == '1') { $newData['custom_icon_button'] = $postedData['custom_icon_button']; } else { if ($postedData['custom_icon_button'] != '') { $newData['custom_icon_button'] = ''; } } } if (isset($postedData['terms'])) { if (isset($postedData['terms_override']) && $postedData['terms_override'] == '1') { $newData['terms'] = $postedData['terms']; } else { $newData['terms'] = ''; } } foreach ($postedData AS $key => $value) { switch ($key) { case 'login_label': case 'link_label': case 'unlink_label': $newData[$key] = wp_kses_post($value); break; case 'user_prefix': case 'user_fallback': $newData[$key] = preg_replace("/[^A-Za-z0-9\-_ ]/", '', $value); break; case 'settings_saved': $newData[$key] = intval($value) ? 1 : 0; break; case 'oauth_redirect_url': $newData[$key] = $value; break; } } return $newData; } /** * Displays a subview if it is set in the URL. */ public function settingsForm() { $subview = !empty($_REQUEST['subview']) ? $_REQUEST['subview'] : ''; $this->displaySubView($subview); } /** * @param $subview * Display the requested subview */ protected function displaySubView($subview) { if (!$this->provider->adminDisplaySubView($subview)) { switch ($subview) { case 'settings': $this->render('settings'); break; case 'buttons': $this->render('buttons'); break; case 'sync-data': if ($this->provider->hasSyncFields()) { $this->render('sync-data'); } else { wp_redirect($this->provider->getAdmin() ->getUrl()); exit; } break; case 'usage': $this->render('usage'); break; default: $this->render('getting-started'); break; } } } /** * @param $view * @param bool $showMenu * Enframe the specified part-view with the complete view(header, menu, footer). */ public function render($view, $showMenu = true) { include(self::$globalPath . '/templates/header.php'); $_view = $view; $view = 'providers'; include(self::$globalPath . '/templates/menu.php'); $view = $_view; echo '
'; echo '

' . $this->provider->getLabel() . '

'; if ($showMenu) { include(self::$globalPath . '/templates-provider/menu.php'); } Notices::displayNotices(); if ($view == 'buttons') { include(self::$globalPath . '/templates-provider/buttons.php'); } else if ($view == 'usage') { include(self::$globalPath . '/templates-provider/usage.php'); } else if ($view == 'sync-data') { include(self::$globalPath . '/templates-provider/sync-data.php'); } else { include($this->path . '/' . $view . '.php'); } echo '
'; include(self::$globalPath . '/templates/footer.php'); } /** * Display the Verify part of the settings subview. */ public function renderSettingsHeader() { $provider = $this->provider; $state = $provider->getState(); ?>

If you see error message in the popup check the copied ID and secret or the app itself. Otherwise your settings are fine.', 'nextend-facebook-connect'); ?>

settings->get('tested') == '1') : ?>

-

getLabel()); break; case 'enabled': printf(__('This provider works fine, but you can test it again. If you don’t want to let users register or login with %s anymore you can disable it.', 'nextend-facebook-connect'), $provider->getLabel()); echo '

'; echo '

'; printf(__('This provider is currently enabled, which means that users can register or login via their %s account.', 'nextend-facebook-connect'), $provider->getLabel()); break; } ?>

' . $this->provider->getLabel() . ''; include($this->path . '/fix-redirect-uri.php'); } } NextendSocialProviderAdmin::$globalPath = NSL_PATH . '/admin';includes/user.php000066600000054572152140537230010064 0ustar00provider = $provider; $this->access_token = $access_token; } /** * @param $key * $key is like id, email, name, first_name, last_name * Returns a single userdata of the current provider or empty sting if $key is invalid. * * @return string */ public function getAuthUserData($key) { return $this->provider->getAuthUserData($key); } /** * Connect with a Provider * If user is not logged in * - and has no linked social data (in wp_social_users table), prepare them for register. * - but if has linked social data, log them in. * If the user is logged in, retrieve the user data, * - if the user has no linked social data with the selected provider and there is no other user who linked that id * , link them and sync the access_token. */ public function liveConnectGetUserProfile() { $user_id = $this->provider->getUserIDByProviderIdentifier($this->getAuthUserData('id')); if ($user_id !== null && !get_user_by('id', $user_id)) { $this->provider->removeConnectionByUserID($user_id); $user_id = null; } if (!is_user_logged_in()) { if ($user_id == null) { $this->prepareRegister(); } else { $this->login($user_id); } } else { $current_user = wp_get_current_user(); if ($user_id === null) { // Let's connect the account to the current user! if ($this->provider->linkUserToProviderIdentifier($current_user->ID, $this->getAuthUserData('id'))) { $this->provider->syncProfile($current_user->ID, $this->provider, $this->access_token); Notices::addSuccess(sprintf(__('Your %1$s account is successfully linked with your account. Now you can sign in with %2$s easily.', 'nextend-facebook-connect'), $this->provider->getLabel(), $this->provider->getLabel())); } else { Notices::addError(sprintf(__('You have already linked a(n) %s account. Please unlink the current and then you can link other %s account.', 'nextend-facebook-connect'), $this->provider->getLabel(), $this->provider->getLabel())); } } else if ($current_user->ID != $user_id) { Notices::addError(sprintf(__('This %s account is already linked to other user.', 'nextend-facebook-connect'), $this->provider->getLabel())); } } } /** * Prepares the registration and registers the user. * If the email is not registered yet, checks if register is enabled call register() function. * If the email is already registered, checks if autolink is enabled, if it is, log the user in. * Autolink enabled: links the current provider account with the existing social account and attempts to login. * Autolink disabled: Add error with already registered email message. */ protected function prepareRegister() { $user_id = false; $providerUserID = $this->getAuthUserData('id'); $email = ''; if (NextendSocialLogin::$settings->get('store_email') == 1) { $email = $this->getAuthUserData('email'); } if (empty($email)) { $email = ''; } else { $user_id = email_exists($email); } if ($user_id === false) { // Real register if (apply_filters('nsl_is_register_allowed', true, $this->provider)) { $this->register($providerUserID, $email); } else { //unset the persistent data, so if an error happened, the user can re-authenticate with providers (Google) that offer account selector screen Persistent::delete($this->provider->getId() . '_at'); Persistent::delete($this->provider->getId() . '_state'); $proxyPage = NextendSocialLogin::getProxyPage(); if ($proxyPage) { $errors = new WP_Error(); $errors->add('registerdisabled', __('User registration is currently not allowed.')); Notices::addError($errors->get_error_message()); } NextendSocialProvider::redirect(__('Authentication error', 'nextend-facebook-connect'), add_query_arg('registration', 'disabled', NextendSocialLogin::getLoginUrl())); exit; } } else if ($this->autoLink($user_id, $providerUserID)) { $this->login($user_id); } $this->provider->redirectToLoginForm(); } /** * @param $username * Makes the username in an appropriate format. Removes white space and some special characters. * Also turns it into lowercase. And put a prefix before the username if user_prefix is set. * If this formated username is valid returns it, else return false. * * @return bool|string */ protected function sanitizeUserName($username) { if (empty($username)) { return false; } $username = strtolower($username); $username = preg_replace('/\s+/', '', $username); $sanitized_user_login = sanitize_user($this->provider->settings->get('user_prefix') . $username, true); if (empty($sanitized_user_login)) { return false; } if (!validate_username($sanitized_user_login)) { return false; } return $sanitized_user_login; } /** * @param $providerID * @param $email * Registers the user. * * @return bool */ protected function register($providerID, $email) { NextendSocialLogin::$WPLoginCurrentFlow = 'register'; $sanitized_user_login = false; if (NextendSocialLogin::$settings->get('store_name') == 1) { /** * First checks provided first_name & last_name if it is not available checks name if it is neither available checks secondary_name. */ $sanitized_user_login = $this->sanitizeUserName($this->getAuthUserData('first_name') . $this->getAuthUserData('last_name')); if ($sanitized_user_login === false) { $sanitized_user_login = $this->sanitizeUserName($this->getAuthUserData('username')); if ($sanitized_user_login === false) { $sanitized_user_login = $this->sanitizeUserName($this->getAuthUserData('name')); } } } $email = ''; if (NextendSocialLogin::$settings->get('store_email') == 1) { $email = $this->getAuthUserData('email'); } $userData = array( 'email' => $email, 'username' => $sanitized_user_login ); do_action('nsl_before_register', $this->provider); do_action('nsl_' . $this->provider->getId() . '_before_register'); if (NextendSocialLogin::$settings->get('terms_show') == '1') { add_filter('nsl_registration_require_extra_input', array( $this, 'require_extra_input_terms' )); } /** @var array $userData Validated user data */ $userData = $this->finalizeUserData($userData); /** * -If neither of the usernames ( first_name & last_name, secondary_name) are appropriate, the fallback username will be combined with and id that was sent by the provider. * -In this way we can generate an appropriate username. */ if (empty($userData['username'])) { $userData['username'] = sanitize_user($this->provider->settings->get('user_fallback') . md5(uniqid(rand())), true); } /** * If the username is already in use, it will get a number suffix, that is not registered yet. */ $default_user_name = $userData['username']; $i = 1; while (username_exists($userData['username'])) { $userData['username'] = $default_user_name . $i; $i++; } /** * Generates a random password. And set the default_password_nag to true. So the user get notify about randomly generated password. */ if (empty($userData['password'])) { $userData['password'] = wp_generate_password(12, false); add_action('user_register', array( $this, 'registerCompleteDefaultPasswordNag' )); } /** * Preregister, checks what roles shall be informed about the registration and sends a notification to them. */ do_action('nsl_pre_register_new_user', $this); $loginRestriction = NextendSocialLogin::$settings->get('login_restriction'); if ($loginRestriction) { $errors = new WP_Error(); //Prevent New User Approve registration before NSL registration if (class_exists('pw_new_user_approve', false)) { remove_action('register_post', array( pw_new_user_approve::instance(), 'create_new_user' ), 10); } //Ultimate Member redirects before we update the Avatar, we need to sync before the redirect if (class_exists('UM', false)) { add_action('um_registration_after_auto_login', array( $this, 'syncProfileUser' ), 10); } /*For TML 6.4.17 Register notification integration*/ do_action('register_post', $userData['username'], $userData['email'], $errors); if ($errors->get_error_code()) { Notices::addError($errors); $this->redirectToLastLocationLogin(); } } /** * Eduma theme user priority 1000 to auto log in users. We need to stay under that priority @see https://themeforest.net/item/education-wordpress-theme-education-wp/14058034 * WooCommerce Follow-Up Emails use priority 10, so we need higher @see https://woocommerce.com/products/follow-up-emails/ * * If there was no error during the registration process, * -links the user to the providerIdentifier ( wp_social_users table in database store this link ). * -set the roles for the user. * -login the user. */ add_action('user_register', array( $this, 'registerComplete' ), 31); $this->userExtraData = $userData; $user_data = array( 'user_login' => wp_slash($userData['username']), 'user_email' => wp_slash($userData['email']), 'user_pass' => $userData['password'] ); if (NextendSocialLogin::$settings->get('store_name') == 1) { $name = $this->getAuthUserData('name'); if (!empty($name)) { $user_data['display_name'] = $name; } $first_name = $this->getAuthUserData('first_name'); if (!empty($first_name)) { $user_data['first_name'] = $first_name; } $last_name = $this->getAuthUserData('last_name'); if (!empty($last_name)) { $user_data['last_name'] = $last_name; } } //Prevent sending the Woocommerce User Email Verification notification if Login restriction is turned off. if (class_exists('XLWUEV_Core', false) && !$loginRestriction) { remove_action('user_register', array( XLWUEV_Woocommerce_Confirmation_Email_Public::instance(), 'custom_form_user_register' ), 10); remove_action('woocommerce_created_customer_notification', array( XLWUEV_Woocommerce_Confirmation_Email_Public::instance(), 'new_user_registration_from_registration_form' ), 10); } $error = wp_insert_user($user_data); if (is_wp_error($error)) { Notices::addError($error); $this->redirectToLastLocationLogin(); } else if ($error === 0) { $this->registerError(); exit; } //registerComplete will log in user and redirects. If we reach here, the user creation failed. return false; } /** * By setting the default_password_nag to true, will inform the user about random password usage. */ public function registerCompleteDefaultPasswordNag($user_id) { update_user_option($user_id, 'default_password_nag', true, true); } /** * @param $user_id * Retrieves the name, first_name, last_name and update the user data. * Also set a reminder to change the generated password. * Links the user with the provider. Set their roles. Send notification about the registration to the selected * roles. Logs the user in. * * @return bool */ public function registerComplete($user_id) { if (is_wp_error($user_id) || $user_id === 0) { /** Registration failed */ $this->registerError(); return false; } if (class_exists('WooCommerce', false)) { if (NextendSocialLogin::$settings->get('store_name') == 1) { $first_name = $this->getAuthUserData('first_name'); if (!empty($first_name)) { add_user_meta($user_id, 'billing_first_name', $first_name); } $last_name = $this->getAuthUserData('last_name'); if (!empty($last_name)) { add_user_meta($user_id, 'billing_last_name', $last_name); } } } update_user_option($user_id, 'default_password_nag', true, true); $this->provider->linkUserToProviderIdentifier($user_id, $this->getAuthUserData('id'), true); do_action('nsl_registration_store_extra_input', $user_id, $this->userExtraData); do_action('nsl_register_new_user', $user_id, $this->provider); do_action('nsl_' . $this->provider->getId() . '_register_new_user', $user_id, $this->provider); $this->provider->deleteLoginPersistentData(); do_action('register_new_user', $user_id); //BuddyPress - add register activity to accounts registered with social login if (class_exists('BuddyPress', false)) { if (!function_exists('bp_core_new_user_activity')) { require_once(buddypress()->plugin_dir . '/bp-members/bp-members-activity.php'); } bp_core_new_user_activity($user_id); } /*Ultimate Member Registration integration -> Registration notificationhoz*/ $loginRestriction = NextendSocialLogin::$settings->get('login_restriction'); if (class_exists('UM', false) && $loginRestriction) { //Necessary to clear the UM user cache that was generated by: um\core\User:set_gravatar UM() ->user() ->remove_cache($user_id); add_filter('um_get_current_page_url', array( $this, 'um_get_loginpage' )); do_action('um_user_register', $user_id, array()); } //Woocommerce User Email Verification integration - By default it blocks login with NSL if (class_exists('XLWUEV_Core', false) && !$loginRestriction) { update_user_meta($user_id, 'wcemailverified', 'true'); } $this->login($user_id); return true; } private function registerError() { /** @var $wpdb WPDB */ global $wpdb; $isDebug = NextendSocialLogin::$settings->get('debug') == 1; if ($isDebug) { if ($wpdb->last_error !== '') { echo "

WordPress database error: [" . esc_html($wpdb->last_error) . "]
" . esc_html($wpdb->last_query) . "

"; } } $this->provider->deleteLoginPersistentData(); if ($isDebug) { exit; } } protected function login($user_id) { /** @var $wpdb WPDB */ global $wpdb; $loginRestriction = NextendSocialLogin::$settings->get('login_restriction'); if ($loginRestriction) { $user = new WP_User($user_id); $user = apply_filters('authenticate', $user, $user->get('user_login'), null); if (is_wp_error($user)) { Notices::addError($user); $this->provider->redirectToLoginForm(); return $user; } /** * Other plugins use this hook to prevent log in */ $user = apply_filters('wp_authenticate_user', $user, null); if (is_wp_error($user)) { Notices::addError($user); $this->provider->redirectToLoginForm(); return $user; } } $this->user_id = $user_id; add_action('nsl_' . $this->provider->getId() . '_login', array( $this->provider, 'syncProfile' ), 10, 3); $isLoginAllowed = apply_filters('nsl_' . $this->provider->getId() . '_is_login_allowed', true, $this->provider, $user_id); if ($isLoginAllowed) { wp_set_current_user($user_id); $secure_cookie = is_ssl(); $secure_cookie = apply_filters('secure_signon_cookie', $secure_cookie, array()); global $auth_secure_cookie; // XXX ugly hack to pass this to wp_authenticate_cookie $auth_secure_cookie = $secure_cookie; wp_set_auth_cookie($user_id, true, $secure_cookie); $user_info = get_userdata($user_id); $this->provider->logLoginDate($user_id); $addStrongerRedirect = NextendSocialLogin::$settings->get('redirect_prevent_external') == 1 || $this->provider->hasFixedRedirect(); if ($addStrongerRedirect) { /** * If another plugin tries to redirect in wp_login action, we will intercept and use our redirects */ add_filter('wp_redirect', array( $this, 'wp_redirect_filter' ), 10000000); } do_action('wp_login', $user_info->user_login, $user_info); if ($addStrongerRedirect) { /** * Remove redirect interception when not needed anymore */ remove_filter('wp_redirect', array( $this, 'wp_redirect_filter' ), 10000000); } $this->finishLogin(); } $this->provider->redirectToLoginForm(); } public function wp_redirect_filter($redirect) { $this->finishLogin(); exit; } protected function finishLogin() { do_action('nsl_login', $this->user_id, $this->provider); do_action('nsl_' . $this->provider->getId() . '_login', $this->user_id, $this->provider, $this->access_token); $this->redirectToLastLocationLogin(); } /** * Redirect the user to * -the Fixed redirect url if it is set * -where the login happened if redirect is specified in the url * -the Default redirect url if it is set, and if redirect was not specified in the url */ public function redirectToLastLocationLogin() { if (NextendSocialLogin::$settings->get('redirect_prevent_external') == 0) { add_filter('nsl_' . $this->provider->getId() . 'default_last_location_redirect', array( $this, 'loginLastLocationRedirect' ), 9, 2); } $this->provider->redirectToLastLocation(); } /** * @param $redirect_to * @param $requested_redirect_to * Modifies where the user shall be redirected, after successful login. * * @return mixed|void */ public function loginLastLocationRedirect($redirect_to, $requested_redirect_to) { return apply_filters('login_redirect', $redirect_to, $requested_redirect_to, wp_get_current_user()); } /** * @param $user_id * @param $providerUserID * If autoLink is enabled, it links the current account with the provider. * * @return bool */ public function autoLink($user_id, $providerUserID) { $isAutoLinkAllowed = true; $isAutoLinkAllowed = apply_filters('nsl_' . $this->provider->getId() . '_auto_link_allowed', $isAutoLinkAllowed, $this->provider, $user_id); if ($isAutoLinkAllowed) { return $this->provider->linkUserToProviderIdentifier($user_id, $providerUserID); } return false; } /** * @return NextendSocialProvider */ public function getProvider() { return $this->provider; } /** * @param $userData * * @return array * @throws NSLContinuePageRenderException */ public function finalizeUserData($userData) { $data = new NextendSocialUserData($userData, $this, $this->provider); return $data->toArray(); } public function require_extra_input_terms($askExtraData) { add_action('nsl_registration_form_end', array( $this, 'registration_form_terms' ), 10000); return true; } public function registration_form_terms($userData) { ?>

provider->settings->get('terms'); if (empty($terms)) { $terms = NextendSocialLogin::$settings->get('terms'); } if (function_exists('get_privacy_policy_url')) { $terms = str_replace('#privacy_policy_url', get_privacy_policy_url(), $terms); } echo __($terms, 'nextend-facebook-connect'); ?>

provider->syncProfile($user_id, $this->provider, $this->access_token); } public function um_get_loginpage($page_url) { return um_get_core_page('login'); } }includes/exceptions.php000066600000000102152140537230011243 0ustar00Page for " "register flow\" and \"OAuth redirect uri proxy page\" in %1$s to " "work properly." msgstr "" #: nextend-facebook-connect/admin/admin.php:596 msgid "Fix now" msgstr "" #: nextend-facebook-connect/admin/admin.php:620 msgid "Activate your Pro Addon" msgstr "" #: nextend-facebook-connect/admin/admin.php:621 msgid "" "To be able to use the Pro features, you need to activate Nextend Social " "Connect Pro Addon. You can do this by clicking on the Activate button below " "then select the related purchase." msgstr "" #: nextend-facebook-connect/admin/admin.php:626 #: nextend-social-login-pro/nextend-social-login-pro.php:60 msgid "Activate" msgstr "" #: nextend-facebook-connect/admin/admin.php:724 msgid "License key" msgstr "" #: nextend-facebook-connect/admin/admin.php:747 msgid "OAuth proxy page" msgstr "" #: nextend-facebook-connect/admin/admin.php:750 msgid "Register flow page" msgstr "" #: nextend-facebook-connect/admin/interim.php:12 #: nextend-facebook-connect/admin/interim.php:23 msgid "You have logged in successfully." msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:79 msgid "Login label" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:84 #: nextend-facebook-connect/admin/templates-provider/buttons.php:95 #: nextend-facebook-connect/admin/templates-provider/buttons.php:106 #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #: nextend-facebook-connect/admin/templates-provider/buttons.php:165 #: nextend-facebook-connect/admin/templates/settings/privacy.php:53 msgid "Reset to default" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:89 msgid "Link label" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:101 msgid "Unlink label" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:112 msgid "Default button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:128 #: nextend-facebook-connect/admin/templates-provider/buttons.php:158 msgid "Use custom button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #, php-format msgid "Use the %s in your custom button's code to make the label show up." msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:143 msgid "Icon button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:174 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140 #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170 #: nextend-facebook-connect/admin/templates/settings/comment.php:73 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171 #: nextend-facebook-connect/admin/templates/settings/privacy.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186 #: nextend-facebook-connect/admin/templates/settings/userpro.php:167 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:254 #: nextend-facebook-connect/providers/facebook/admin/settings.php:57 #: nextend-facebook-connect/providers/google/admin/settings.php:62 #: nextend-facebook-connect/providers/twitter/admin/settings.php:48 #: nextend-social-login-pro/providers/amazon/admin/settings.php:47 #: nextend-social-login-pro/providers/disqus/admin/settings.php:47 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47 #: nextend-social-login-pro/providers/paypal/admin/settings.php:60 #: nextend-social-login-pro/providers/vk/admin/settings.php:48 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47 msgid "Save Changes" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:13 #: nextend-facebook-connect/admin/templates/providers.php:61 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17 #: nextend-facebook-connect/providers/google/admin/getting-started.php:9 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8 msgid "Getting Started" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:17 msgid "Buttons" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:21 msgid "Sync data" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:24 msgid "Usage" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11 msgid "Other settings" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16 msgid "Username prefix on register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23 msgid "Fallback username prefix on register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27 msgid "Used when username is invalid or not stored" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32 #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #: nextend-facebook-connect/admin/templates/settings/privacy.php:35 msgid "Terms and conditions" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #, php-format msgid "Override global \"%1$s\"" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12 msgid "PRO settings" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32 msgid "Ask E-mail on registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69 msgid "Never" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38 msgid "When email is not provided or empty" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72 msgid "Always" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50 msgid "Ask Username on registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53 msgid "Never, generate automatically" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56 msgid "When username is empty or invalid" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64 msgid "Ask Password on registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81 msgid "Automatically connect the existing account upon registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85 #: nextend-facebook-connect/admin/templates/providers.php:39 #: nextend-facebook-connect/admin/templates/settings/general.php:48 #: nextend-facebook-connect/admin/templates/settings/general.php:212 #: nextend-facebook-connect/admin/templates/settings/general.php:227 #: nextend-facebook-connect/admin/templates/settings/general.php:245 #: nextend-facebook-connect/includes/provider-admin.php:217 msgid "Disabled" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88 msgid "Automatic, based on email address" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93 msgid "Disable login for the selected roles" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113 msgid "Default roles for user who registered with this provider" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:99 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:118 #: nextend-facebook-connect/admin/templates/settings/comment.php:39 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105 #: nextend-facebook-connect/admin/templates/settings/userpro.php:51 #: nextend-facebook-connect/admin/templates/settings/userpro.php:102 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180 #: nextend-facebook-connect/widget.php:42 msgid "Default" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50 #: nextend-facebook-connect/includes/userData.php:188 msgid "Register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58 msgid "Login" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66 msgid "Link" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84 msgid "Store in meta key" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:9 msgid "Shortcode" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:12 msgid "Important!" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:13 msgid "The shortcodes are only rendered for users who haven't logged in yet!" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:14 msgid "See the full list of shortcode parameters." msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:31 msgid "Simple link" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:34 msgid "Click here to login or register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:39 msgid "Image button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:42 msgid "Image url" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:7 #: nextend-facebook-connect/admin/templates/header.php:20 msgid "Debug" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:41 msgid "Test network connection with providers" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:48 msgid "You don't have cURL support, please enable it in php.ini!" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:58 #, php-format msgid "Test %1$s connection" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2 msgid "Fix Oauth Redirect URIs" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13 msgid "Every Oauth Redirect URI seems fine" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32 msgid "Got it" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:28 #: nextend-facebook-connect/admin/templates/menu.php:8 msgid "Global Settings" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:31 msgid "General" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:33 msgid "Privacy" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form.php:9 #: nextend-facebook-connect/admin/templates/settings/userpro.php:18 msgid "Login Form" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:39 msgid "Comment" msgstr "" #: nextend-facebook-connect/admin/templates/header.php:14 msgid "Docs" msgstr "" #: nextend-facebook-connect/admin/templates/header.php:17 msgid "Support" msgstr "" #: nextend-facebook-connect/admin/templates/header.php:23 #: nextend-facebook-connect/admin/templates/menu.php:12 msgid "Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/menu.php:6 msgid "Providers" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:13 msgid "Error" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:14 msgid "" "You don’t have sufficient permissions to install and activate plugins. " "Please contact your site’s administrator!" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:22 #: nextend-facebook-connect/admin/templates/pro-addon.php:32 #: nextend-facebook-connect/admin/templates/pro.php:34 msgid "Activate Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:23 msgid "" "Pro Addon is installed but not activated. To be able to use the Pro " "features, you need to activate it." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:37 #: nextend-facebook-connect/admin/templates/pro-addon.php:142 msgid "Deactivate Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:48 #: nextend-facebook-connect/admin/templates/pro.php:43 msgid "Pro Addon is not installed" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:50 msgid "" "To access the Pro features, you need to install and activate the Pro Addon." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:59 #, php-format msgid "Install %s now" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:60 #: nextend-facebook-connect/admin/templates/pro.php:47 msgid "Install Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:94 msgid "Activating..." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:118 msgid "Not compatible!" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:119 #, php-format msgid "" "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or " "newer." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:123 msgid "Update Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:133 msgid "Pro Addon is installed and activated" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:135 msgid "" "You installed and activated the Pro Addon. If you don’t want to use it " "anymore, you can deactivate using the button below." msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:8 msgid "Get Pro Addon to unlock more features" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:9 #, php-format msgid "" "The features below are available in %s Pro Addon. Get it today and tweak the " "awesome settings." msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:10 msgid "" "If you already have a license, you can Authorize your Pro Addon. Otherwise " "you can purchase it using the button below." msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:14 msgid "Buy Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:16 msgid "Authorize Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:25 msgid "Pro Addon is not activated" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:26 #: nextend-facebook-connect/admin/templates/pro.php:44 msgid "" "To be able to use the Pro features, you need to install and activate the " "Nextend Social Connect Pro Addon." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:30 msgid "Not Available" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:33 msgid "Not Configured" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:36 msgid "Not Verified" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:42 #: nextend-facebook-connect/admin/templates/settings/general.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:215 #: nextend-facebook-connect/admin/templates/settings/general.php:230 #: nextend-facebook-connect/admin/templates/settings/general.php:248 #: nextend-facebook-connect/includes/provider-admin.php:220 #: nextend-facebook-connect/providers/google/admin/settings.php:53 #: nextend-social-login-pro/providers/paypal/admin/settings.php:51 msgid "Enabled" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:54 msgid "Upgrade Now" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:69 #: nextend-facebook-connect/includes/provider-admin.php:204 msgid "Verify Settings" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:77 #: nextend-facebook-connect/includes/provider-admin.php:249 msgid "Enable" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:89 #: nextend-facebook-connect/includes/provider-admin.php:257 msgid "Disable" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:114 msgid "Stay Updated" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:115 msgid "" "Receive info on the latest plugin updates and social provider related " "changes." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:116 msgid "Enter your email address" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:120 msgid "Subscribe" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:136 msgid "Saving..." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:137 msgid "Saving failed" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:138 msgid "Order Saved" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "Successfully subscribed!" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "" "We'll be bringing you all the latest news and updates about Social Login - " "right to your inbox." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:214 msgid "The entered email address is invalid!" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:14 msgid "Rate your experience!" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:15 msgid "Hated it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:16 msgid "Disliked it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:17 msgid "It was ok" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:18 msgid "Liked it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:19 msgid "Loved it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:31 msgid "Please Leave a Review" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:32 msgid "" "If you are happy with Nextend Social Login and can take a minute " "please leave us a review. It will be a tremendous help for us!" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:34 msgid "Ok, you deserve it" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96 msgid "Register form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23 msgid "No Connect button" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26 msgid "Connect button before register" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:221 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:226 msgid "Action:" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31 msgid "Connect button before account details" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36 msgid "Connect button after register" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44 msgid "Register button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:105 #: nextend-facebook-connect/admin/templates/settings/comment.php:45 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111 #: nextend-facebook-connect/admin/templates/settings/userpro.php:57 #: nextend-facebook-connect/admin/templates/settings/userpro.php:108 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30 #: nextend-facebook-connect/widget.php:47 msgid "Icon" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:64 msgid "Sidebar Login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:69 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:85 #: nextend-facebook-connect/admin/templates/settings/login-form.php:17 #: nextend-facebook-connect/admin/templates/settings/login-form.php:30 #: nextend-facebook-connect/admin/templates/settings/login-form.php:47 #: nextend-facebook-connect/admin/templates/settings/userpro.php:26 #: nextend-facebook-connect/admin/templates/settings/userpro.php:39 msgid "Hide login buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:72 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88 #: nextend-facebook-connect/admin/templates/settings/login-form.php:14 #: nextend-facebook-connect/admin/templates/settings/login-form.php:27 #: nextend-facebook-connect/admin/templates/settings/login-form.php:44 #: nextend-facebook-connect/admin/templates/settings/userpro.php:23 #: nextend-facebook-connect/admin/templates/settings/userpro.php:36 #: nextend-facebook-connect/widget.php:76 msgid "Show login buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:73 msgid "" "Some themes that use BuddyPress, display the social buttons twice in the " "same login form. This option can disable the one for: " "bp_sidebar_login_form action. " msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:80 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38 msgid "Login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:93 msgid "Login button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:48 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52 #: nextend-facebook-connect/admin/templates/settings/userpro.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58 msgid "Login layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:110 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124 #: nextend-facebook-connect/admin/templates/settings/userpro.php:70 #: nextend-facebook-connect/admin/templates/settings/userpro.php:121 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186 msgid "Below" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:130 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130 #: nextend-facebook-connect/admin/templates/settings/userpro.php:76 #: nextend-facebook-connect/admin/templates/settings/userpro.php:127 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192 msgid "Below with separator" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:136 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136 #: nextend-facebook-connect/admin/templates/settings/userpro.php:82 #: nextend-facebook-connect/admin/templates/settings/userpro.php:133 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198 msgid "Above" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:142 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142 #: nextend-facebook-connect/admin/templates/settings/userpro.php:88 #: nextend-facebook-connect/admin/templates/settings/userpro.php:139 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204 msgid "Above with separator" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:150 #: nextend-facebook-connect/admin/templates/settings/comment.php:53 #: nextend-facebook-connect/admin/templates/settings/login-form.php:53 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:151 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:166 #: nextend-facebook-connect/admin/templates/settings/userpro.php:147 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:233 msgid "Button alignment" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155 #: nextend-facebook-connect/admin/templates/settings/comment.php:58 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140 #: nextend-facebook-connect/admin/templates/settings/login-form.php:58 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:156 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171 #: nextend-facebook-connect/admin/templates/settings/userpro.php:152 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:238 #: nextend-facebook-connect/widget.php:57 msgid "Left" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:158 #: nextend-facebook-connect/admin/templates/settings/comment.php:61 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:143 #: nextend-facebook-connect/admin/templates/settings/login-form.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:159 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:174 #: nextend-facebook-connect/admin/templates/settings/userpro.php:155 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:241 #: nextend-facebook-connect/widget.php:62 msgid "Center" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162 #: nextend-facebook-connect/admin/templates/settings/comment.php:65 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147 #: nextend-facebook-connect/admin/templates/settings/login-form.php:65 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:163 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178 #: nextend-facebook-connect/admin/templates/settings/userpro.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:245 #: nextend-facebook-connect/widget.php:67 msgid "Right" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:18 msgid "Login button" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:23 #: nextend-facebook-connect/admin/templates/settings/privacy.php:42 msgid "Show" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:26 msgid "Hide" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 #, php-format msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Discussion" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Users must be registered and logged in to comment" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:33 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18 msgid "Button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29 msgid "Target window" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34 msgid "Prefer popup" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37 msgid "Prefer new tab" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40 msgid "Prefer same window" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46 msgid "Registration notification sent to" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:242 msgid "WordPress default" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54 msgid "Nobody" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60 msgid "Admin" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63 msgid "User and Admin" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69 msgid "Unlink" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75 #, fuzzy #| msgid "Social accounts" msgid "Allow Social account unlink" msgstr "Социальная сеть" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81 msgid "Disable Admin bar for roles" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:43 msgid "Debug mode" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:56 msgid "Page for register flow" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:66 #: nextend-facebook-connect/admin/templates/settings/general.php:91 msgid "None" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:74 msgid "" "This setting is used when you request additional data from the users (such " "as email address) and to display the Terms and conditions." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #, php-format msgid "" "%2$s First create a new page and insert the following shortcode: %1$s then " "select this page above" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #: nextend-facebook-connect/admin/templates/settings/general.php:101 msgid "Usage:" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 #, php-format msgid "" "%1$s You won't be able to reach the selected page unless a social login/" "registration happens." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 msgid "Important:" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:80 msgid "OAuth redirect uri proxy page" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:100 msgid "" "You can use this setting when wp-login.php page is not available to handle " "the OAuth flow." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:101 #, php-format msgid "%1$s First create a new page then select this page above." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:108 msgid "Prevent external redirect overrides" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:114 msgid "Disable external redirects" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:121 msgid "Default redirect url" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:134 #: nextend-facebook-connect/admin/templates/settings/general.php:172 msgid "for Login" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:149 #: nextend-facebook-connect/admin/templates/settings/general.php:187 msgid "for Register" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:159 msgid "Fixed redirect url" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:196 msgid "Blacklisted redirects" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:202 msgid "If you want to blacklist redirect url params. One pattern per line." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:207 msgid "Support login restrictions" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:217 #, php-format msgid "Please visit to our %1$s to check what plugins are supported!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:222 msgid "Display avatars in \"All media items\"" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:232 msgid "" "Enabling this option can speed up loading images in Media Library - Grid " "view!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:237 msgid "Membership" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:250 msgid "Allow registration with Social login." msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33 #: nextend-facebook-connect/admin/templates/settings/userpro.php:45 msgid "Login form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66 msgid "Below and floating" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:85 msgid "Embedded Login form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:104 msgid "Embedded Login layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:135 msgid "Embedded login form button alignment" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form.php:22 #: nextend-facebook-connect/includes/userData.php:137 msgid "Registration Form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form.php:36 msgid "Embedded login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69 msgid "Sign Up form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74 msgid "No Connect button in Sign Up form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167 msgid "Connect button on" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84 msgid "Sign Up form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103 msgid "Sign Up layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212 msgid "Account details" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155 msgid "No link buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158 msgid "Link buttons after account details" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:6 #: nextend-facebook-connect/nextend-social-login.php:143 msgid "" "By clicking Register, you accept our Privacy Policy" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:59 msgid "Store" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:65 msgid "First and last name" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:68 msgid "When not enabled, username will be randomly generated." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:78 #: nextend-social-login-pro/class-provider-extension.php:322 msgid "Email" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:81 msgid "When not enabled, email will be empty." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:91 #: nextend-facebook-connect/includes/avatar.php:59 msgid "Avatar" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:102 #: nextend-facebook-connect/includes/provider.php:1066 msgid "Access token" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23 msgid "No Connect button in Login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89 msgid "No Connect button in Register form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99 #: nextend-facebook-connect/admin/templates/settings/userpro.php:96 msgid "Register form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118 #: nextend-facebook-connect/admin/templates/settings/userpro.php:115 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116 msgid "Register layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/userpro.php:31 msgid "Register Form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43 msgid "No Connect button in login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101 msgid "No Connect button in register form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154 msgid "Billing form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159 msgid "No Connect button in billing form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174 msgid "Billing layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217 msgid "No Connect buttons in account details form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:220 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:225 msgid "Link buttons on" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:42 #, php-format msgid "Network connection successful: %1$s" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:49 #, php-format msgid "Network connection failed: %1$s" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:52 msgid "" "Please contact with your hosting provider to resolve the network issue " "between your server and the provider." msgstr "" #: nextend-facebook-connect/includes/avatar.php:60 msgid "Manage Avatar" msgstr "" #: nextend-facebook-connect/includes/avatar.php:61 #, php-format msgid "Avatar (%s)" msgid_plural "Avatar (%s)" msgstr[0] "" msgstr[1] "" #: nextend-facebook-connect/includes/compat-wp-login.php:49 #, php-format msgid "%1$s ‹ %2$s — WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:115 msgid "https://wordpress.org/" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:116 msgid "Powered by WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:260 #, php-format msgctxt "site" msgid "← Back to %s" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:198 msgid "Your configuration needs to be verified" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:199 msgid "" "Before you can start letting your users register with your app it needs to " "be tested. This test makes sure that no users will have troubles with the " "login and registration process.
If you see error message in the popup " "check the copied ID and secret or the app itself. Otherwise your settings " "are fine." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:205 msgid "Please save your changes to verify settings." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:213 msgid "Works Fine" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:227 #, php-format msgid "" "This provider is currently disabled, which means that users can’t register " "or login via their %s account." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:230 #, php-format msgid "" "This provider works fine, but you can test it again. If you don’t want to " "let users register or login with %s anymore you can disable it." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:233 #, php-format msgid "" "This provider is currently enabled, which means that users can register or " "login via their %s account." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:241 msgid "Verify Settings Again" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:242 msgid "Please save your changes before verifying settings." msgstr "" #: nextend-facebook-connect/includes/provider.php:350 #: nextend-facebook-connect/includes/provider.php:693 #: nextend-facebook-connect/includes/provider.php:698 msgid "Authentication successful" msgstr "" #: nextend-facebook-connect/includes/provider.php:635 #: nextend-facebook-connect/includes/user.php:127 msgid "Authentication error" msgstr "" #: nextend-facebook-connect/includes/provider.php:650 msgid "Unlink successful." msgstr "" #: nextend-facebook-connect/includes/provider.php:652 msgid "Unlink is not allowed!" msgstr "" #: nextend-facebook-connect/includes/provider.php:856 #: nextend-facebook-connect/includes/provider.php:863 msgid "The test was successful" msgstr "" #: nextend-facebook-connect/includes/provider.php:909 msgid "Authentication failed" msgstr "" #: nextend-facebook-connect/includes/provider.php:1058 msgid "Identifier" msgstr "" #: nextend-facebook-connect/includes/provider.php:1074 msgid "Profile picture" msgstr "" #: nextend-facebook-connect/includes/user.php:74 #, php-format msgid "" "Your %1$s account is successfully linked with your account. Now you can sign " "in with %2$s easily." msgstr "" #: nextend-facebook-connect/includes/user.php:77 #, php-format msgid "" "You have already linked a(n) %s account. Please unlink the current and then " "you can link other %s account." msgstr "" #: nextend-facebook-connect/includes/user.php:82 #, php-format msgid "This %s account is already linked to other user." msgstr "" #: nextend-facebook-connect/includes/user.php:122 msgid "User registration is currently not allowed." msgstr "" #: nextend-facebook-connect/includes/userData.php:137 msgid "Register For This Site!" msgstr "" #: nextend-facebook-connect/nextend-facebook-connect.php:34 #, php-format msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE." msgstr "" #: nextend-facebook-connect/nextend-facebook-connect.php:41 #, php-format msgid "" "%1$s requires WordPress version %2$s+. Because you are using an earlier " "version, the plugin is currently NOT ACTIVE." msgstr "" #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 #, php-format msgid "Please update %1$s to version %2$s or newer." msgstr "" #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 msgid "Update now!" msgstr "" #: nextend-facebook-connect/nextend-social-login.php:735 #: nextend-facebook-connect/nextend-social-login.php:1111 msgid "Social Login" msgstr "" #: nextend-facebook-connect/nextend-social-login.php:1092 msgid "Social Accounts" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8 #, php-format msgid "Navigate to %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/google/admin/getting-started.php:17 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9 #, php-format msgid "Log in with your %s credentials if you are not logged in" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10 #, php-format msgid "Click on the App with App ID: %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11 msgid "In the left sidebar, click on \"Facebook Login > Settings\"" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36 #, php-format msgid "" "Add the following URL to the \"Valid OAuth redirect URIs\" field: " "%s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13 msgid "Click on \"Save Changes\"" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11 #: nextend-facebook-connect/providers/facebook/admin/settings.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22 #, php-format msgid "" "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in " "order to allow login with %1$s." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13 #: nextend-facebook-connect/providers/facebook/admin/settings.php:15 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24 msgid "How to get SSL for my WordPress site?" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19 #: nextend-facebook-connect/providers/google/admin/getting-started.php:11 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create a %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21 #: nextend-facebook-connect/providers/google/admin/getting-started.php:13 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:32 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:13 #, php-format msgctxt "App creation" msgid "Create %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24 #: nextend-facebook-connect/providers/google/admin/getting-started.php:16 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:16 #, php-format msgid "Navigate to %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26 msgid "Click on the \"Add a New App\" button" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27 msgid "" "If you see the message \"Become a Facebook Developer\", then you need " "to click on the green \"Register Now\" button, fill the form then " "finally verify your account." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28 #, php-format msgid "" "Fill \"Display Name\" and \"Contact Email\". The specified " "\"Display Name\" will appear on your %s!" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29 msgid "" "Click the \"Create App ID\" button and complete the Security Check." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35 #, php-format msgid "" "On the left side, click on the “%1$s” menu point, then click “" "%2$s”." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31 msgid "Enter your domain name to the \"App Domains\" field." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32 #, php-format msgid "" "Enter your domain name to the \"App Domains\" field, probably: %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33 msgid "" "Fill up the \"Privacy Policy URL\" field. Provide a publicly " "available and easily accessible privacy policy that explains what data you " "are collecting and how you will use that data." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34 msgid "" "Select a “Category”, an “App Icon” and pick the “Business " "Use” option that describes your the App best, then press \"Save " "Changes\"." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37 msgid "Click on “Save Changes”" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38 msgid "" "Your application is currently private, which means that only you can log in " "with it. In the top bar click on the switch next to the \"In development\" label, then click the \"Switch Mode\" button." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39 #, php-format msgid "" "Finally on the left side, click on the \"%1$s\" menu point, then " "click \"%2$s\" again. Here you can see your \"APP ID\" and you " "can see your \"App secret\" if you click on the \"Show\" button. " "These will be needed in plugin’s settings." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43 #: nextend-facebook-connect/providers/google/admin/getting-started.php:40 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:30 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:29 #, php-format msgid "I am done setting up my %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:35 #: nextend-social-login-pro/providers/vk/admin/settings.php:27 msgid "App ID" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:36 #: nextend-facebook-connect/providers/facebook/admin/settings.php:48 #: nextend-facebook-connect/providers/google/admin/settings.php:28 #: nextend-facebook-connect/providers/google/admin/settings.php:41 #: nextend-facebook-connect/providers/twitter/admin/settings.php:28 #: nextend-social-login-pro/providers/amazon/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:39 #: nextend-social-login-pro/providers/apple/admin/settings.php:79 #: nextend-social-login-pro/providers/apple/admin/settings.php:90 #: nextend-social-login-pro/providers/apple/admin/settings.php:100 #: nextend-social-login-pro/providers/apple/admin/settings.php:108 #: nextend-social-login-pro/providers/disqus/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39 #: nextend-social-login-pro/providers/paypal/admin/settings.php:27 #: nextend-social-login-pro/providers/paypal/admin/settings.php:39 #: nextend-social-login-pro/providers/vk/admin/settings.php:28 #: nextend-social-login-pro/providers/vk/admin/settings.php:40 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39 msgid "Required" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:41 #: nextend-facebook-connect/providers/google/admin/settings.php:35 #: nextend-facebook-connect/providers/twitter/admin/settings.php:33 #: nextend-social-login-pro/providers/amazon/admin/settings.php:33 #: nextend-social-login-pro/providers/apple/admin/settings.php:34 #: nextend-social-login-pro/providers/apple/admin/settings.php:85 #: nextend-social-login-pro/providers/disqus/admin/settings.php:33 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33 #: nextend-social-login-pro/providers/paypal/admin/settings.php:33 #: nextend-social-login-pro/providers/vk/admin/settings.php:34 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33 #, php-format msgid "" "If you are not sure what is your %1$s, please head over to Getting Started" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:47 msgid "App Secret" msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:79 msgid "Continue with Facebook" msgstr "Войти через Facebook" #: nextend-facebook-connect/providers/facebook/facebook.php:80 msgid "Link account with Facebook" msgstr "Связать аккаунты с Facebook" #: nextend-facebook-connect/providers/facebook/facebook.php:81 msgid "Unlink account from Facebook" msgstr "Отвязать аккаунты от Facebook" #: nextend-facebook-connect/providers/facebook/facebook.php:135 #: nextend-facebook-connect/providers/google/google.php:158 #: nextend-facebook-connect/providers/twitter/twitter.php:95 #: nextend-social-login-pro/providers/amazon/amazon.php:65 #: nextend-social-login-pro/providers/apple/apple.php:71 #: nextend-social-login-pro/providers/apple/apple.php:77 #: nextend-social-login-pro/providers/disqus/disqus.php:112 #: nextend-social-login-pro/providers/linkedin/linkedin.php:63 #: nextend-social-login-pro/providers/paypal/paypal.php:90 #: nextend-social-login-pro/providers/vk/vk.php:61 #: nextend-social-login-pro/providers/wordpress/wordpress.php:99 #: nextend-social-login-pro/providers/yahoo/yahoo.php:90 #, php-format msgid "" "The %1$s entered did not appear to be a valid. Please enter a valid %2$s." msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:253 #: nextend-social-login-pro/providers/paypal/paypal.php:170 #, php-format msgid "Required scope: %1$s" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:2 msgid "Button skin" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:8 msgid "Uniform" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:14 msgid "Light" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:20 msgid "Dark" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10 msgid "Click on the \"Credentials\" in the left hand menu" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11 #, php-format msgid "" "Under the \"OAuth 2.0 Client IDs\" section find your Client ID: " "%s" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/google/admin/getting-started.php:34 #, php-format msgid "" "Add the following URL to the \"Authorised redirect URIs\" field: " "%s" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14 msgid "Click on \"Save\"" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:18 msgid "" "If you don't have a project yet, you'll need to create one. You can do this " "by clicking on the blue \"Create\" button on the right side! ( If " "you already have a project, click on the name of your project in the " "dashboard instead, which will bring up a modal and click \"New Project\". )" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:19 msgid "Name your project and then click on the \"Create\" button again" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:20 msgid "Once you have a project, you'll end up in the dashboard." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:21 msgid "Click the “OAuth consent screen” button on the left hand side." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:22 msgid "" "Choose a User Type according to your needs. If you want to enable the " "social login with Google for any users with a Google account, then pick the " "External option!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:24 #, php-format msgid "" "Note: We don't use sensitive or restricted scopes either. But if you " "will use this App for other purposes too, then you may need to go through an " "%1$s!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:27 msgid "" "Enter a name for your App to the \"Application name\" field, which " "will appear as the name of the app asking for consent." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:28 #, php-format msgid "" "Fill the \"Authorized domains\" field with your domain name probably: " "%s without subdomains!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:29 msgid "Save your settings!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:30 #, php-format msgid "" "On the left side, click on the \"%1$s\" menu point, then click the " "\"%2$s\" button in the top bar." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:31 msgid "Choose the \"OAuth client ID\" option." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:32 msgid "Select the \"Web application\" under Application type." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:33 msgid "Enter \"Name\" that for your OAuth client ID." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:35 msgid "Click on the \"Create\" button" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:36 msgid "" "A modal should pop up with your credentials. If that doesn't happen, go to " "the Credentials in the left hand menu and select your app by clicking on its " "name and you'll be able to copy-paste the \"Client ID\" and " "\"Client Secret\" from there." msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:26 #: nextend-social-login-pro/providers/apple/admin/settings.php:28 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26 #: nextend-social-login-pro/providers/paypal/admin/settings.php:26 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26 msgid "Client ID" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:40 #: nextend-social-login-pro/providers/amazon/admin/settings.php:38 #: nextend-social-login-pro/providers/apple/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38 msgid "Client Secret" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:47 msgid "Select account on each login" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:56 msgid "" "Disable, when you don't want to see the account select prompt on each login." msgstr "" #: nextend-facebook-connect/providers/google/google.php:106 msgid "Continue with Google" msgstr "Войти через Google" #: nextend-facebook-connect/providers/google/google.php:107 msgid "Link account with Google" msgstr "Связать аккаунты с Google" #: nextend-facebook-connect/providers/google/google.php:108 msgid "Unlink account from Google" msgstr "Отвязать аккаунты от Google" #: nextend-facebook-connect/providers/google/google.php:285 #, php-format msgid "Required API: %1$s" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10 msgid "Find your App and click on the \"Details\" button" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11 msgid "" "The Edit button can be found on the App details tab. Click on it and " "select \"Edit details\"" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22 #, php-format msgid "Add the following URL to the \"Callback URLs\" field: %s" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in yet" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18 msgid "" "If you don't have a developer account yet, please apply one by filling all " "the required details! This is required for the next steps!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19 #, php-format msgid "" "Once your developer account is complete, navigate back to %s if you " "aren't already there!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20 #, php-format msgid "" "Fill the App name, Application description fields. Then enter " "your site's URL to the Website URL field: %s" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21 msgid "Tick the checkbox next to Enable Sign in with Twitter!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23 msgid "" "Fill the “Terms of Service URL\", \"Privacy policy URL\" and " "\"Tell us how this app will be used\" fields!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24 msgid "Click the Create button." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25 msgid "Read the Developer Terms and click the Create button again!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26 msgid "Select the Permissions tab and click Edit." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27 msgid "" "Tick the Request email address from users under the Additional " "permissions section and click Save." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28 msgid "" "Go to the Keys and tokens tab and find the API key and API " "secret key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:26 msgid "API Key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:38 msgid "API secret key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:57 msgid "Profile image size" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:71 msgid "Original" msgstr "" #: nextend-facebook-connect/providers/twitter/twitter.php:69 msgid "Continue with Twitter" msgstr "Войти через Twitter" #: nextend-facebook-connect/providers/twitter/twitter.php:70 msgid "Link account with Twitter" msgstr "Связать аккаунты с Twitter" #: nextend-facebook-connect/providers/twitter/twitter.php:71 msgid "Unlink account from Twitter" msgstr "Отвязать аккаунты от Twitter" #: nextend-facebook-connect/widget.php:10 #, php-format msgid "%s Buttons" msgstr "" #: nextend-facebook-connect/widget.php:30 msgid "Title:" msgstr "" #: nextend-facebook-connect/widget.php:38 msgid "Button style:" msgstr "" #: nextend-facebook-connect/widget.php:53 msgid "Button align:" msgstr "" #: nextend-facebook-connect/widget.php:85 msgid "Show link buttons" msgstr "" #: nextend-facebook-connect/widget.php:94 msgid "Show unlink buttons" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:117 msgid "Social login is not allowed with this role!" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:213 #: nextend-social-login-pro/class-provider-extension.php:216 #: nextend-social-login-pro/class-provider-extension.php:222 #: nextend-social-login-pro/class-provider-extension.php:229 #: nextend-social-login-pro/class-provider-extension.php:300 #: nextend-social-login-pro/class-provider-extension.php:303 #: nextend-social-login-pro/class-provider-extension.php:307 msgid "ERROR" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:213 msgid "Please enter a username." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:216 msgid "" "This username is invalid because it uses illegal characters. Please enter a " "valid username." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:222 msgid "This username is already registered. Please choose another one." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:229 msgid "Sorry, that username is not allowed." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:247 msgid "Username" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:300 msgid "Please enter an email address." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:303 msgid "The email address isn’t correct." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:307 msgid "This email is already registered, please choose another one." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:327 msgid "Registration confirmation will be emailed to you." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:378 msgid "ERROR: Please enter a password." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:384 msgid "ERROR: Passwords may not contain the character \"\\\"." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:390 msgid "" "ERROR: Please enter the same password in both password " "fields." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:407 msgid "Password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:417 msgid "Strength indicator" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:422 msgid "Confirm use of weak password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:428 msgid "Confirm password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:440 #, php-format msgid "" "This email is already registered, please login in to your account to link " "with %1$s." msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:54 #, php-format msgid "Please install and activate %1$s to use the %2$s" msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:68 msgid "Network Activate" msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:80 msgid "Install now!" msgstr "" #: nextend-social-login-pro/provider-extensions/facebook.php:74 #, php-format msgid "" "The Facebook Sync data needs an approved %1$s and your App must use the " "latest %2$s version!" msgstr "" #: nextend-social-login-pro/provider-extensions/google.php:176 #, php-format msgid "" "Most of these information can only be retrieved, when the field is marked as " "Public on the user's %s page!" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26 #, php-format msgid "Visit %s" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30 msgid "" "On the right side, under \"Manage\", hover over the gear icon and " "select \"Web Settings\" option." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31 msgid "Click \"Edit\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33 #, php-format msgid "" "Add the following URL to the \"Allowed Return URLs\" field %s " msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27 msgid "" "If you don't have a Security Profile yet, you'll need to create one. You can " "do this by clicking on the orange \"Create a New Security Profile\" " "button on the left side." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28 msgid "" "Fill \"Security Profile Name\", \"Security Profile Description" "\" and \"Consent Privacy Notice URL\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29 msgid "Once you filled all the required fields, click \"Save\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32 #, php-format msgid "" "Fill \"Allowed Origins\" with the url of your homepage, probably: " "%s" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28 msgid "When all fields are filled, click \"Save\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:35 msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" at the " "middle of the page, under the \"Web Settings\" tab." msgstr "" #: nextend-social-login-pro/providers/amazon/amazon.php:39 msgid "Continue with Amazon" msgstr "" #: nextend-social-login-pro/providers/amazon/amazon.php:40 msgid "Link account with Amazon" msgstr "" #: nextend-social-login-pro/providers/amazon/amazon.php:41 msgid "Unlink account from Amazon" msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21 msgid "Click on the name of your service." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22 msgid "" "Click the \"Configure\" button next to \"Sign In with Apple\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53 #, php-format msgid "Click the blue + icon next to %1$s heading." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79 #, php-format msgid "" "Fill the \"Domains and Subdomains\" field with your domain name " "probably: %s" msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:80 #, php-format msgid "Add the following URL to the \"Return URLs\" field: %s" msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:26 msgid "" "Finally press \"Next\" then \"Done\" and finally click on the " "\"Continue\" and the \"Save\" button!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\", \"%3$s\", \"%4$s\" and \"%5$s" "\" according to your %1$s App." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35 msgid "" "Make sure you have an active subscription for the Apple Developer " "Program!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36 msgid "" "Make sure your site have SSL, since Apple only allows HTTPS urls!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:41 msgid "1.) Create the associated App:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the %2$s " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:44 msgid "Enter a \"Description\"" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45 #, php-format msgid "" "At the \"Bundle ID\" field select the \"Explicit\" option and " "enter your domain name in reverse-domain name style, with the name of the " "app at its end: %s.nslapp" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46 msgid "" "Under the \"Capabilities\" section, tick the \"Sign In with Apple\" option." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47 msgid "" "Scroll up and press the \"Continue\" button and then the " "\"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50 msgid "2.) Create the Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:52 #, php-format msgid "On the left hand side, click on the \"%s\" tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:54 msgid "Enter a name in the Key Name field." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55 msgid "" "Tick the \"Sign In with Apple\" option, then click on \"Configure\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56 msgid "" "If you have multiple Apps, then at the \"Choose a Primary App ID\" " "field select the App what you just created, then click \"Save" "\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57 msgid "" "Finally press the \"Continue\" button and then the \"Register" "\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58 msgid "Don't download the key yet!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61 msgid "3.) Create the Service:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:63 #, php-format msgid "" "Go to the \"%1$s\" section, what you will find within the \"%2$s\" " "tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the \"%2$s\" " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:65 msgid "Enter a \"Description\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66 #, php-format msgid "" "At the \"Identifier\" field enter your domain name in reverse-domain " "name style, with the name of the client at its end: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69 msgid "Note: This will also be used as Service Identifier later!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72 msgid "" "Press the \"Continue\" button and then the \"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:73 #, php-format msgid "In the \"%1$s\" section, click the service you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76 msgid "" "Tick the \"Sign In with Apple\" option and click the \"Configure\" button next to it." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:78 msgid "" "If you have multiple Apps, then at the \"Primary App ID\" field select the " "App what you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:83 msgid "" "Save the configuration by clicking on the \"Save\" button and " "pressing \"Done\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:84 msgid "" "Finally press the \"Continue\" button and then the \"Save\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:87 msgid "4.) Configure Nextend Social Login with your credentials:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:89 msgid "Go to Nextend Social Login > Providers > Apple > Settings tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:90 msgid "Private Key ID:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:92 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:110 #, php-format msgid "Navigate to: %s" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:93 msgid "Click on the name of your Key." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:94 msgid "You will find your \"Private Key ID\" under \"Key ID\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:97 msgid "Private Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99 msgid "" "Click the \"Download\" button to download the key file. Once this " "file is downloaded, it will no longer be available, so make sure you keep " "this file safe! " msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:100 msgid "" "Open the downloaded file with a text editor, like Notepad, copy " "all of its contents and paste it into the \"Private Key" "\" field of Nextend Social Login." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:103 msgid "Team Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105 msgid "" "A 10 character long identifier, what you can find on the top-right " "corner, just under your name." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:108 msgid "Service Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111 #, php-format msgid "" "You will find it under the \"IDENTIFIER\" column. If you configured " "the service according to the suggestions, it will probably end to .nslclient " "e.g.: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:114 msgid "" "Once you filled up all the fields, click on the \"Generate Token\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115 msgid "Finally verify the settings and enable the provider!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:116 msgid "" "When you need to change your credentials for some reason, then you must " "delete the token, copy the new credentials and generate a new token!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:48 msgid "Delete credentials" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:78 msgid "Private Key ID" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:89 msgid "Private Key" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:99 msgid "Team Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:107 msgid "Service Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:117 msgid "Generate Token" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:53 #, fuzzy #| msgid "Continue with Google" msgid "Continue with Apple" msgstr "Войти через Google" #: nextend-social-login-pro/providers/apple/apple.php:54 #, fuzzy #| msgid "Link account with Google" msgid "Link account with Apple" msgstr "Связать аккаунты с Google" #: nextend-social-login-pro/providers/apple/apple.php:55 #, fuzzy #| msgid "Unlink account from Google" msgid "Unlink account from Apple" msgstr "Отвязать аккаунты от Google" #: nextend-social-login-pro/providers/apple/apple.php:107 #: nextend-social-login-pro/providers/apple/apple.php:204 #: nextend-social-login-pro/providers/apple/apple.php:221 #, php-format msgid "Token generation failed: %1$s" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:107 msgid "Please check your credentials!" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:204 msgid "Private key format is not valid!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10 #, php-format msgid "Click on the name of your %s App." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12 msgid "" "Select the \"Settings\" tab and scroll down to the Authentication " "section!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23 #, php-format msgid "Add the following URL to the \"Callback URL\" field %s " msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14 msgid "Click on the \"Save Changes\" button." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17 msgid "" "Click on the \"Registering new application\" button under the " "Applications tab." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18 msgid "Enter a \"Label\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19 #, php-format msgid "" "Fill \"Website\" with the url of your homepage, probably: %s" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20 msgid "" "Complete the Human test and click the \"Register my application\" " "button." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21 #, php-format msgid "Fill the \"Domains\" field with your domain name like: %s" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22 msgid "" "Select \"Read only\" as Default Access under the Authentication " "section." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24 msgid "Click on the \"Save Changes\" button!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25 msgid "Navigate to the \"Details\" tab of your Application!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26 msgid "" "Here you can see your \"API Key\" and \"API Secret\". These " "will be needed in the plugin's settings." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/settings.php:38 msgid "API Secret" msgstr "" #: nextend-social-login-pro/providers/disqus/disqus.php:86 msgid "Continue with Disqus" msgstr "" #: nextend-social-login-pro/providers/disqus/disqus.php:87 msgid "Link account with Disqus" msgstr "" #: nextend-social-login-pro/providers/disqus/disqus.php:88 msgid "Unlink account from Disqus" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10 msgid "Click on your App and go to the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11 #, php-format msgid "Add the following URL to the \"Redirect URLs\" field: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:12 msgid "Click on \"Update\" to save the changes" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17 msgid "Locate the \"Create app\" button and click on it." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18 msgid "Enter the name of your App to the \"App name\" field." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19 #, php-format msgid "" "Find your company page in the \"Company\" field. If you don't have " "one yet, create new one at: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20 msgid "" "Enter your \"Privacy policy URL\" amd upload an \"App logo\"" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21 msgid "" "Read and agree the \"API Terms of Use\" then click the \"Create " "App\" button!" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22 msgid "" "You will end up in the App setting area. Click on the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23 #, php-format msgid "" "Find \"OAuth 2.0 settings\" section and add the following URL to the " "\"Redirect URLs\" field: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25 msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" under " "the Application credentials section, on the Auth tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/linkedin.php:37 msgid "Continue with LinkedIn" msgstr "" #: nextend-social-login-pro/providers/linkedin/linkedin.php:38 msgid "Link account with LinkedIn" msgstr "" #: nextend-social-login-pro/providers/linkedin/linkedin.php:39 msgid "Unlink account from LinkedIn" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18 msgid "There is a Sandbox/Live switch. Make sure \"Live\" is selected!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11 #, php-format msgid "Click on the name of your %s App, under the REST API apps section." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading and click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22 #, php-format msgid "" "Add the following URL to the \"Live Return URL\" field: %s " msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14 msgid "Click on \"Save\"" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15 #, php-format msgid "" "Editing Live Apps are only possible with a %s. So please make sure you own " "one!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19 msgid "Click the \"Create App\" button under the REST API apps section." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20 msgid "" "Fill the \"App Name\" field and click \"Create App\" button." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading then click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23 msgid "" "Scroll down to \"App feature options\" section and tick \"Log In " "with PayPal\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24 msgid "" "Click \"Advanced Options\" which can be found at the end of text " "after \"Connect with PayPal (formerly Log In with PayPal)\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25 msgid "Tick \"Full name\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:26 msgid "" "\"Email address\" now requires an App Review by PayPal. To get the " "email address as well, please submit your App for a review after your " "App configuration is finished. Once the App review is successful, you need " "to pick \"Email address\" here to retrieve the email of the user. Until then " "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27 msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29 msgid "" "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary " "\"Client ID\" and \"Secret\"! ( Make sure you are in " "\"Live\" mode and not \"Sandbox\". )" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:38 msgid "Secret" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:45 msgid "Email scope" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:54 msgid "Disable, when you have no rights for email address." msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:64 msgid "Continue with PayPal" msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:65 msgid "Link account with PayPal" msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:66 msgid "Unlink account from PayPal" msgstr "" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10 msgid "Click on the \"Manage\" button next to the associated App." msgstr "" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11 msgid "Go to the \"Settings\" menu" msgstr "" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12 #, php-format msgid "" "Add the following URL to the \"Authorized redirect URI\" field: " "%s" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17 msgid "Locate the blue \"Create app\" button and click on it." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18 msgid "" "Enter the Title for your App and select \"Website\" as " "platform." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19 #, php-format msgid "" "Fill \"Website address\" with the url of your homepage, probably: " "%s" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20 #, php-format msgid "" "Fill the \"Base domain\" field with your domain, probably: %s" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21 msgid "When all fields are filled, click the \"Upload app\" button." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22 msgid "" "Fill the information form of your app, upload an app icon then " "click Save." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23 msgid "Pick Settings at the left-hand menu " msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24 #, php-format msgid "" "Add the following URL to the \"Authorized redirect URI\" field %s " msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25 msgid "Save your app" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:26 msgid "" "Find the necessary \"App ID\" and \"Secure key\" at the top of " "the Settings page where you just hit the save button." msgstr "" #: nextend-social-login-pro/providers/vk/admin/settings.php:39 msgid "Secure key" msgstr "" #: nextend-social-login-pro/providers/vk/vk.php:35 msgid "Continue with VK" msgstr "Войти через VK" #: nextend-social-login-pro/providers/vk/vk.php:36 msgid "Link account with VK" msgstr "Связать аккаунты с VK" #: nextend-social-login-pro/providers/vk/vk.php:37 msgid "Unlink account from VK" msgstr "Отвязать аккаунты от VK" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12 msgid "Click \"Manage Settings\" under the Tools section!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20 #, php-format msgid "Add the following URL to the \"Redirect URLs\" field %s " msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17 msgid "Click on the \"Create New Application\" button." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18 msgid "Enter a \"Name\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19 #, php-format msgid "" "Fill \"Website URL\" with the url of your homepage, probably: %s" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21 msgid "You can leave the \"Javascript Origins\" field blank!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22 msgid "Complete the human verification test." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23 msgid "At the \"Type\" make sure \"Web\" is selected!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24 msgid "Click the \"Create\" button!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25 msgid "" "Click the name of your App either in the Breadcrumb navigation or " "next to Editing!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26 msgid "" "Here you can see your \"Client ID\" and \"Client Secret\". " "These will be needed in the plugin's settings." msgstr "" #: nextend-social-login-pro/providers/wordpress/wordpress.php:73 msgid "Continue with WordPress.com" msgstr "" #: nextend-social-login-pro/providers/wordpress/wordpress.php:74 msgid "Link account with WordPress.com" msgstr "" #: nextend-social-login-pro/providers/wordpress/wordpress.php:75 msgid "Unlink account from WordPress.com" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10 msgid "Click on the App which has its credentials associated with the plugin." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22 #, php-format msgid "" "Add the following URL to the \"Redirect URI(s)\" field: %s" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18 msgid "Click on the \"Create an App\" button on the top right corner." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19 msgid "" "Fill the \"Application Name\" and select \"Web Application\" " "at \"Application Type\"." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20 msgid "Enter a \"Description\" for your app!" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21 #, php-format msgid "" "Enter the URL of your site to the \"Home Page URL\" field: %s" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23 msgid "" "Under the \"API Permissions\" you should select \"OpenID Connect " "Permissions\" with both \"Email\" and \"Profile\" enabled." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:24 msgid "Click \"Create App\"." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:25 msgid "" "On the top of the page, you will find the necessary \"Client ID\" and " "\"Client Secret\"! These will be needed in the plugin's settings." msgstr "" #: nextend-social-login-pro/providers/yahoo/yahoo.php:64 #, fuzzy #| msgid "Continue with Facebook" msgid "Continue with Yahoo" msgstr "Войти через Facebook" #: nextend-social-login-pro/providers/yahoo/yahoo.php:65 #, fuzzy #| msgid "Link account with Facebook" msgid "Link account with Yahoo" msgstr "Связать аккаунты с Facebook" #: nextend-social-login-pro/providers/yahoo/yahoo.php:66 #, fuzzy #| msgid "Unlink account from Facebook" msgid "Unlink account from Yahoo" msgstr "Отвязать аккаунты от Facebook" #: nextend-social-login-pro/providers/yahoo/yahoo.php:186 #, php-format msgid "Required permission: %1$s" msgstr "" #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10 #: nextend-social-login-pro/template-parts/login/above-separator.php:20 #: nextend-social-login-pro/template-parts/login/below-separator.php:8 #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10 msgid "OR" msgstr "ИЛИ" #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1 #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1 msgid "Social accounts" msgstr "Социальная сеть" languages/nextend-facebook-connect-zh_ZH.mo000066600000044272152140537230014751 0ustar00% 0z1 t,KQfn  (B!V<x3 % -;[ k u% &D`~" 8M$Uz   !)#/$S x%+ 0v<]:    !/Q!q &" :8E ~     !@"`  8 " 1>>T,,% 4 A T $^ f  ! !*!@!I!a!1s!!!!! ! ! !"" ")"." A"M" ]"j"+z"$"" "I"&+#^R##0#<#k7$f$ %?%[%2&K9&(&j'(!1(!S(#u(!(#(!(")$)(B) k)x) ) )))B))***17*i*y*#** *t*jE+ +G+a,'{,,zR0 0k0C1c1j1}11 1 111 1 1112$2 72D2*Z2!2%2333 34 4454 F4R4b4i4!444445505E5[5l5 55 5055556 66656<6C6!I6k66666(66 677*#7N7 ^7k7r7y7777 77H8T8 19>9Q9b9 x99999999:':D:U:!q: :4: : :: ;;(;/; 6;@;G;c;!v;$;!;; ; ; < <<!<97<q< <<<4<<=!=9=Y=l===$=c=.>D> Z>d>u>|>>0>>>> ? ? ?(?/?B?I?P? c? p? }? ?$?-?? ?@? ?@``@ @1@9AO:A[A}A9dBUBBEBBC[aDD!DD#E;E'VE~E%EE!EE FF /F| MP'R@5!hDK 7qG;~0Z kt3J, 4SE+_a$/W)ejQ%lIcw?Y{6Bv}FOu-2(]oy9infrms"[&gbTzx*1<#dC`%1$s detected that %2$s installed on your site. You need the Pro Addon to display Social Login buttons in %2$s login form!%s Buttons%s detected that your login url changed. You must update the Oauth redirect URIs in the related social applications.%s needs json_decode function.AboveAbove with separatorAction:Activate Pro AddonActivating...AdminAlwaysApp IDApp SecretApp creationCreate %sAsk E-mail on registrationAsk Username on registrationAuthentication errorAuthentication failedAuthentication successfulAuthorize Pro AddonAutomatic, based on email addressAutomatically connect the existing account upon registrationBefore you can start letting your users register with your app it needs to be tested. This test makes sure that no users will have troubles with the login and registration process.
If you see error message in the popup check the copied ID and secret or the app itself. Otherwise your settings are fine.BelowBelow and floatingBelow with separatorButton style:ButtonsBuy Pro AddonClick here to login or registerClick on "Save"Client IDClient SecretCommentConnect button after registerConnect button before account detailsConnect button before registerContinue with AmazonContinue with DisqusContinue with FacebookContinue with GoogleContinue with LinkedInContinue with PayPalContinue with TwitterContinue with VKContinue with WordPress.comDebug modeDefaultDefault buttonDefault roles for user who registered with this providerDisableDisable login for the selected rolesDisabledDiscussionDisliked itDismissDismiss and check Pro AddonDocsERROREmailEmbedded Login form button styleEmbedded Login layoutEmbedded login formEnableEnabledErrorEvery Oauth Redirect URI seems fineFallback username prefix on registerFix ErrorFix Oauth Redirect URIsGeneralGet Pro Addon to unlock more featuresGetting StartedGlobal SettingsGot itHated itHideHide login buttonsI am done setting up my %sIconIcon buttonIf you already have a license, you can Authorize your Pro Addon. Otherwise you can purchase it using the button below.If you are happy with Nextend Social Login and can take a minute please leave us a review. It will be a tremendous help for us!If you are not sure what is your %1$s, please head over to Getting StartedImage buttonImage urlInstall %s nowInstall Pro AddonIt was okLicense keyLiked itLink account with AmazonLink account with DisqusLink account with FacebookLink account with GoogleLink account with LinkedInLink account with PayPalLink account with TwitterLink account with VKLink account with WordPress.comLink buttons after account detailsLink labelLog in with your %s credentials if you are not logged inLogin FormLogin formLogin form button styleLogin labelLogin layoutLoved itMembershipNavigate to %sNeverNever, generate automaticallyNo Connect buttonNo Connect button in billing formNo Connect button in login formNo Connect button in register formNobodyNot AvailableNot ConfiguredNot VerifiedOROauth Redirect URIOk, you deserve itOnce you have a project, you'll end up in the dashboard.Order SavedOther settingsPRO settingsPlease Leave a ReviewPlease contact your server administrator and ask for solution!Please enter a username.Please enter an email address.Please save your changes to verify settings.Please update %1$s to version %2$s or newer.Prefer new tabPrefer popupPrefer same windowPro AddonPro Addon is installed and activatedPro Addon is installed but not activated. To be able to use the Pro features, you need to activate it.Pro Addon is not activatedPro Addon is not installedProvidersRate your experience!RegisterRegister For This Site!Registration FormRegistration confirmation will be emailed to you.Registration notification sent toRequiredReset to defaultSave ChangesSaving failedSaving...SettingsSettings saved.ShortcodeShowShow login buttonsSimple linkSocial AccountsSocial LoginSocial accountsSocial login is not allowed with this role!Sorry, that username is not allowed.SupportTarget windowThe %1$s entered did not appear to be a valid. Please enter a valid %2$s.The email address isn’t correct.The features below are available in %s Pro Addon. Get it today and tweak the awesome settings.The test was successfulThis %s account is already linked to other user.This email is already registered, please choose another one.This provider is currently disabled, which means that users can’t register or login via their %s account.This provider is currently enabled, which means that users can register or login via their %s account.This provider works fine, but you can test it again. If you don’t want to let users register or login with %s anymore you can disable it.This username is already registered. Please choose another one.This username is invalid because it uses illegal characters. Please enter a valid username.Title:To access the Pro features, you need to install and activate the Pro Addon.To allow your visitors to log in with their %1$s account, first you must create a %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.To be able to use the Pro features, you need to install and activate the Nextend Social Connect Pro Addon.Unexpected response: %sUnlink account from AmazonUnlink account from DisqusUnlink account from FacebookUnlink account from GoogleUnlink account from LinkedInUnlink account from PayPalUnlink account from TwitterUnlink account from VKUnlink account from WordPress.comUnlink labelUnlink successful.Update now!Upgrade NowUsageUse custom buttonUse the %s in your custom button's code to make the label show up.UserUser and AdminUsernameUsername prefix on registerUsers must be registered and logged in to commentVerify SettingsVerify Settings AgainWhen email is not provided or emptyWordPress defaultWorks FineYou don’t have sufficient permissions to install and activate plugins. Please contact your site’s administrator!You have already linked a(n) %s account. Please unlink the current and then you can link other %s account.You have logged in successfully.You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to workYour %1$s account is successfully linked with your account. Now you can sign in with %2$s easily.Your configuration needs to be verifiedProject-Id-Version: ss3 PO-Revision-Date: 2020-03-26 11:09+0100 Last-Translator: Language-Team: Language: zh_CN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 2.2.4 X-Poedit-Basepath: ../.. Plural-Forms: nplurals=1; plural=0; X-Poedit-SourceCharset: UTF-8 X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e X-Poedit-SearchPath-0: nextend-social-login-pro X-Poedit-SearchPath-1: nextend-facebook-connect X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/compat X-Poedit-SearchPathExcluded-1: nextend-facebook-connect/providers/google/compat X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/compat %1$s 检测到 %2$s 已经安装在你的网站. 你需要安装专业版本去显示社交登录按钮 %2$s 登录表单!%s 按钮%s 检测到您的登录网址已更改。您必须更新相关社交应用程序中的Oauth redirect URIs.%s 需要 json_decode 函数。上面在上面并分割动作:启用专业版本插件正在启用.管理员一直应用程序 IDApp 密匙建立 %s注册时询问E-MAIL注册时需要用户名授权认证出错授权认证失败授权成功验证专业版插件自动,自动,基于电子邮件地址注册后自动连接现有帐户在开始让用户注册之前,需要对您的应用程序进行测试。 此测试可确保用户在登录和注册过程中不会遇到麻烦。
如果您在弹出窗口中看到错误消息,请检查复制的ID和密码。如果没有错误信息,说明你的程序运行正常。下面下面并浮动下面并分割按钮样式:按钮购买专业版点击这里登录或注册点击"保存“客户端ID客户端密码评论登录按钮在注册之后登录按钮在账户详情之前连接按钮在注册之前通过 Amazon通过 Disqus通过 Facebook通过 Google通过 LinkedIn通过 PayPal保持 Twitter通过 VK通过 WordPress.com调试模式默认默认按钮为使用此提供商的用户设置默认角色禁止禁止所选对象登录禁用讨论不喜欢解除解除并检查专业版本文档错误Email嵌入式登录表单按钮样式嵌入式登录表单布局嵌入登录表单启用允许错误所有的Oauth Redirect URI 运作正常用户名前缀注册机制修复错误修复 Oauth Redirect URIs常规购买专业版本来解锁更多的功能从这里开始全局设置搞定讨厌隐藏隐藏登录按钮我已经设置完毕我的 %s图标图标按钮如果你已经拥有一个密匙,你可以验证你的专业版本插件。否则,你需要点击下面的按钮先购买。如果你对Nextend Social Login很满意,请花上一点点的时间留下一个评论。这对我们来说将是一个巨大的帮助!如果你不确定,什么是你的 %1$s, 请转到 现在开始图片按钮图片链接地址安装 %s 现在安装专业的扩展还不错密匙喜欢关联 Amazon 账号关联 Disqus关联 Facebook 账号关联 Google关联 LinkedIn 账号关联 PayPal关联 Twitter 账号关联 VK关联 WordPress.com链接按钮在账户详情后面链接标签如果您未登录,请使用您的 %s 凭据登录登录界面登录表单登录界面按钮样式登录标签登录界面布局大爱会员导航 %s从不永远不要,自动生成没有连接按钮不要链接按钮在结算表单在登录表单里不要登录按钮不要登录按钮在注册表上没人无法使用没有配置未验证或Oauth Redirect URI好吧,你应得的一旦你有一个项目,你会在仪表盘发现它。订单已保存其他设置专业版本设置请留下一个评论请与服务器管理员联系并寻求解决方案!请输入用户名.请输入电子邮箱.请保存您的更改以验证。请更新 %1$s 到 %2$s 版本.喜欢新选项卡比较喜欢弹出窗口喜欢同窗口专业版插件专业版本已经安装并启用了专业版插件已经安装但没有启用。要使用专业版本功能,你需要先启用它。专业版本未启用没有安装专业版提供商留一个评论!注册注册此网站!注册信息表注册确认将通过电子邮件发送给您。注册通知发送到请求恢复默认设置保存设置保存失败正在保存.设置设置已保存。短码显示显示登录按钮简单链接社交账号社交登录社交账号此用户组不允许社交登录!对不起,这个用户名不允许使用。支持目标窗口输入的 %1$s 似乎不是有效的。 请输入有效的 %2$s.邮箱地址是n’t 正确.这个功能只允许 %s 专业版本. 今天就购买它,然后开启更多的强力功能。测试成功这个 %s 账号已经链接到了其他用户。这个邮箱已经注册使用过,请选择其他的。该通道目前已被禁用,用户无法通过其 %s 帐户注册或登录。该通道目前已启用,这意味着用户可以通过 %s 账户进行注册或登录。该通道工作正常,但可以再次进行测试。 如果您不想让用户通过 %s 注册或登录,可以禁用它。这个用户名已经有人注册,请选择其他的。此用户名无效,因为它使用了非法字符。 请输入有效的用户名。标题:要访问专业功能,您需要安装并激活专业版本插件。要想允许你的访问者使用 %1$s 账号登录,你首先要建立一个 %1$s 应用。下面的导航将帮助你了解 %1$s 应用建立的过程,然后你可以建立一个你自己的 %1$s App。转到"设置“,然后根据你的 %1$s 配置,给予 "%2$s" and "%3$s"。要想使用专业功能,你需要先安装然后启用 Nextend Social Connect 专业版.响应出现意外情况: %s解除关联 Amazon 账号取消关联 Disqus解除关联 Facebook 账号取消关联 Google LinkedIn 取消关联帐户取消关联 PayPalTwitter 取消关联帐户取消关联 VK取消关联 WordPress.com解除链接标签解除链接成功.现在更新!现在更新用法使用自定义按钮使用 %s 在你的自定义按钮代码显示界面.用户用户和管理员用户名用户名前缀注册必须是登录用户才能评论验证设置再次验证设置当邮箱为空时WordPress 默认运行正常您没有足够的权限来安装和激活插件。 请联系您的网站管理员!你已经链接了 a(n) %s 账号. 请解除现有的链接账号,你才可以重新链接 %s 账号。你已经成功登录。你需要打开 ' %1$s > %2$s > %3$s ' 这个功能你的 %1$s 账号已经成功链接到你的网站帐号. 你可以快速登录 %2$s .您的配置需要验证languages/nextend-facebook-connect-fr_FR.po000066600000342101152140537230014720 0ustar00msgid "" msgstr "" "Project-Id-Version: ss3\n" "POT-Creation-Date: 2020-03-26 11:07+0100\n" "PO-Revision-Date: 2020-03-26 11:08+0100\n" "Last-Translator: \n" "Language-Team: \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.2.4\n" "X-Poedit-Basepath: ../..\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n" "X-Poedit-SearchPath-0: nextend-social-login-pro\n" "X-Poedit-SearchPath-1: nextend-facebook-connect\n" "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/" "compat\n" "X-Poedit-SearchPathExcluded-1: nextend-facebook-connect/providers/google/" "compat\n" "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/" "compat\n" #: nextend-facebook-connect/NSL/GDPR.php:34 msgid "What personal data we collect and why we collect it" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:35 #, php-format msgid "" "%1$s collects data when a visitor register, login or link the account with " "with any of the enabled social provider. It collects the following data: " "email address, name, social provider identifier and access token. Also it " "can collect profile picture and more fields with the Pro Addon's sync data " "feature." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:37 msgid "Who we share your data with" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:38 #, php-format msgid "" "%1$s stores the personal data on your site and does not share it with anyone " "except the access token which used for the authenticated communication with " "the social providers." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:40 msgid "Does the plugin share personal data with third parties" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:41 #, php-format msgid "" "%1$s use the access token what the social provider gave to communicate with " "the providers to verify account and securely access personal data." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:43 msgid "How long we retain your data" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:44 #, php-format msgid "" "%1$s removes the collected personal data when the user deleted from " "WordPress." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:46 msgid "Does the plugin use personal data collected by others?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:47 #, php-format msgid "" "%1$s use the personal data collected by the social providers to create " "account on your site when the visitor authorize it." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:49 msgid "Does the plugin store things in the browser?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:50 #, php-format msgid "" "Yes, %1$s must create a cookie for visitors who use the social login " "authorization flow. This cookie required for every provider to secure the " "communication and to redirect the user back to the last location." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:52 msgid "Does the plugin collect telemetry data, directly or indirectly?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:53 #: nextend-facebook-connect/NSL/GDPR.php:56 msgid "No" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:55 msgid "" "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a " "third party?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:99 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57 msgid "User" msgstr "" #: nextend-facebook-connect/admin/admin.php:203 #, php-format msgid "%s needs json_decode function." msgstr "" #: nextend-facebook-connect/admin/admin.php:203 msgid "Please contact your server administrator and ask for solution!" msgstr "" #: nextend-facebook-connect/admin/admin.php:235 #: nextend-facebook-connect/admin/admin.php:265 msgid "Settings saved." msgstr "" #: nextend-facebook-connect/admin/admin.php:244 msgid "The activation was successful" msgstr "" #: nextend-facebook-connect/admin/admin.php:255 msgid "Deactivate completed." msgstr "" #: nextend-facebook-connect/admin/admin.php:433 #: nextend-facebook-connect/admin/templates-provider/menu.php:15 #: nextend-facebook-connect/admin/templates/providers.php:81 #: nextend-facebook-connect/admin/templates/providers.php:93 #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Settings" msgstr "" #: nextend-facebook-connect/admin/admin.php:516 #: nextend-facebook-connect/includes/oauth2.php:141 #: nextend-facebook-connect/includes/oauth2.php:286 #: nextend-facebook-connect/providers/facebook/facebook-client.php:84 #: nextend-facebook-connect/providers/twitter/twitter-client.php:165 #: nextend-social-login-pro/providers/apple/apple-client.php:87 #, php-format msgid "Unexpected response: %s" msgstr "" #: nextend-facebook-connect/admin/admin.php:577 #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21 #, php-format msgid "" "%s detected that your login url changed. You must update the Oauth redirect " "URIs in the related social applications." msgstr "" #: nextend-facebook-connect/admin/admin.php:578 msgid "Fix Error" msgstr "" #: nextend-facebook-connect/admin/admin.php:578 msgid "Oauth Redirect URI" msgstr "" #: nextend-facebook-connect/admin/admin.php:588 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You need the Pro Addon to " "display Social Login buttons in %2$s login form!" msgstr "" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss and check Pro Addon" msgstr "" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss" msgstr "" #: nextend-facebook-connect/admin/admin.php:595 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You must set \"Page for " "register flow\" and \"OAuth redirect uri proxy page\" in %1$s to " "work properly." msgstr "" #: nextend-facebook-connect/admin/admin.php:596 msgid "Fix now" msgstr "" #: nextend-facebook-connect/admin/admin.php:620 msgid "Activate your Pro Addon" msgstr "" #: nextend-facebook-connect/admin/admin.php:621 msgid "" "To be able to use the Pro features, you need to activate Nextend Social " "Connect Pro Addon. You can do this by clicking on the Activate button below " "then select the related purchase." msgstr "" #: nextend-facebook-connect/admin/admin.php:626 #: nextend-social-login-pro/nextend-social-login-pro.php:60 msgid "Activate" msgstr "" #: nextend-facebook-connect/admin/admin.php:724 msgid "License key" msgstr "" #: nextend-facebook-connect/admin/admin.php:747 msgid "OAuth proxy page" msgstr "" #: nextend-facebook-connect/admin/admin.php:750 msgid "Register flow page" msgstr "" #: nextend-facebook-connect/admin/interim.php:12 #: nextend-facebook-connect/admin/interim.php:23 msgid "You have logged in successfully." msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:79 msgid "Login label" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:84 #: nextend-facebook-connect/admin/templates-provider/buttons.php:95 #: nextend-facebook-connect/admin/templates-provider/buttons.php:106 #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #: nextend-facebook-connect/admin/templates-provider/buttons.php:165 #: nextend-facebook-connect/admin/templates/settings/privacy.php:53 msgid "Reset to default" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:89 msgid "Link label" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:101 msgid "Unlink label" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:112 msgid "Default button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:128 #: nextend-facebook-connect/admin/templates-provider/buttons.php:158 msgid "Use custom button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #, php-format msgid "Use the %s in your custom button's code to make the label show up." msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:143 msgid "Icon button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:174 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140 #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170 #: nextend-facebook-connect/admin/templates/settings/comment.php:73 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171 #: nextend-facebook-connect/admin/templates/settings/privacy.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186 #: nextend-facebook-connect/admin/templates/settings/userpro.php:167 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:254 #: nextend-facebook-connect/providers/facebook/admin/settings.php:57 #: nextend-facebook-connect/providers/google/admin/settings.php:62 #: nextend-facebook-connect/providers/twitter/admin/settings.php:48 #: nextend-social-login-pro/providers/amazon/admin/settings.php:47 #: nextend-social-login-pro/providers/disqus/admin/settings.php:47 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47 #: nextend-social-login-pro/providers/paypal/admin/settings.php:60 #: nextend-social-login-pro/providers/vk/admin/settings.php:48 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47 msgid "Save Changes" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:13 #: nextend-facebook-connect/admin/templates/providers.php:61 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17 #: nextend-facebook-connect/providers/google/admin/getting-started.php:9 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8 msgid "Getting Started" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:17 msgid "Buttons" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:21 msgid "Sync data" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:24 msgid "Usage" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11 msgid "Other settings" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16 msgid "Username prefix on register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23 msgid "Fallback username prefix on register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27 msgid "Used when username is invalid or not stored" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32 #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #: nextend-facebook-connect/admin/templates/settings/privacy.php:35 msgid "Terms and conditions" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #, php-format msgid "Override global \"%1$s\"" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12 msgid "PRO settings" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32 msgid "Ask E-mail on registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69 msgid "Never" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38 msgid "When email is not provided or empty" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72 msgid "Always" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50 msgid "Ask Username on registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53 msgid "Never, generate automatically" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56 msgid "When username is empty or invalid" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64 msgid "Ask Password on registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81 msgid "Automatically connect the existing account upon registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85 #: nextend-facebook-connect/admin/templates/providers.php:39 #: nextend-facebook-connect/admin/templates/settings/general.php:48 #: nextend-facebook-connect/admin/templates/settings/general.php:212 #: nextend-facebook-connect/admin/templates/settings/general.php:227 #: nextend-facebook-connect/admin/templates/settings/general.php:245 #: nextend-facebook-connect/includes/provider-admin.php:217 msgid "Disabled" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88 msgid "Automatic, based on email address" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93 msgid "Disable login for the selected roles" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113 msgid "Default roles for user who registered with this provider" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:99 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:118 #: nextend-facebook-connect/admin/templates/settings/comment.php:39 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105 #: nextend-facebook-connect/admin/templates/settings/userpro.php:51 #: nextend-facebook-connect/admin/templates/settings/userpro.php:102 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180 #: nextend-facebook-connect/widget.php:42 msgid "Default" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50 #: nextend-facebook-connect/includes/userData.php:188 msgid "Register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58 msgid "Login" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66 msgid "Link" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84 msgid "Store in meta key" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:9 msgid "Shortcode" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:12 msgid "Important!" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:13 msgid "The shortcodes are only rendered for users who haven't logged in yet!" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:14 msgid "See the full list of shortcode parameters." msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:31 msgid "Simple link" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:34 msgid "Click here to login or register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:39 msgid "Image button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:42 msgid "Image url" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:7 #: nextend-facebook-connect/admin/templates/header.php:20 msgid "Debug" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:41 msgid "Test network connection with providers" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:48 msgid "You don't have cURL support, please enable it in php.ini!" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:58 #, php-format msgid "Test %1$s connection" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2 msgid "Fix Oauth Redirect URIs" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13 msgid "Every Oauth Redirect URI seems fine" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32 msgid "Got it" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:28 #: nextend-facebook-connect/admin/templates/menu.php:8 msgid "Global Settings" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:31 msgid "General" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:33 msgid "Privacy" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form.php:9 #: nextend-facebook-connect/admin/templates/settings/userpro.php:18 msgid "Login Form" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:39 msgid "Comment" msgstr "" #: nextend-facebook-connect/admin/templates/header.php:14 msgid "Docs" msgstr "" #: nextend-facebook-connect/admin/templates/header.php:17 msgid "Support" msgstr "" #: nextend-facebook-connect/admin/templates/header.php:23 #: nextend-facebook-connect/admin/templates/menu.php:12 msgid "Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/menu.php:6 msgid "Providers" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:13 msgid "Error" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:14 msgid "" "You don’t have sufficient permissions to install and activate plugins. " "Please contact your site’s administrator!" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:22 #: nextend-facebook-connect/admin/templates/pro-addon.php:32 #: nextend-facebook-connect/admin/templates/pro.php:34 msgid "Activate Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:23 msgid "" "Pro Addon is installed but not activated. To be able to use the Pro " "features, you need to activate it." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:37 #: nextend-facebook-connect/admin/templates/pro-addon.php:142 msgid "Deactivate Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:48 #: nextend-facebook-connect/admin/templates/pro.php:43 msgid "Pro Addon is not installed" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:50 msgid "" "To access the Pro features, you need to install and activate the Pro Addon." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:59 #, php-format msgid "Install %s now" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:60 #: nextend-facebook-connect/admin/templates/pro.php:47 msgid "Install Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:94 msgid "Activating..." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:118 msgid "Not compatible!" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:119 #, php-format msgid "" "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or " "newer." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:123 msgid "Update Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:133 msgid "Pro Addon is installed and activated" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:135 msgid "" "You installed and activated the Pro Addon. If you don’t want to use it " "anymore, you can deactivate using the button below." msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:8 msgid "Get Pro Addon to unlock more features" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:9 #, php-format msgid "" "The features below are available in %s Pro Addon. Get it today and tweak the " "awesome settings." msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:10 msgid "" "If you already have a license, you can Authorize your Pro Addon. Otherwise " "you can purchase it using the button below." msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:14 msgid "Buy Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:16 msgid "Authorize Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:25 msgid "Pro Addon is not activated" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:26 #: nextend-facebook-connect/admin/templates/pro.php:44 msgid "" "To be able to use the Pro features, you need to install and activate the " "Nextend Social Connect Pro Addon." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:30 msgid "Not Available" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:33 msgid "Not Configured" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:36 msgid "Not Verified" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:42 #: nextend-facebook-connect/admin/templates/settings/general.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:215 #: nextend-facebook-connect/admin/templates/settings/general.php:230 #: nextend-facebook-connect/admin/templates/settings/general.php:248 #: nextend-facebook-connect/includes/provider-admin.php:220 #: nextend-facebook-connect/providers/google/admin/settings.php:53 #: nextend-social-login-pro/providers/paypal/admin/settings.php:51 msgid "Enabled" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:54 msgid "Upgrade Now" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:69 #: nextend-facebook-connect/includes/provider-admin.php:204 msgid "Verify Settings" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:77 #: nextend-facebook-connect/includes/provider-admin.php:249 msgid "Enable" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:89 #: nextend-facebook-connect/includes/provider-admin.php:257 msgid "Disable" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:114 msgid "Stay Updated" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:115 msgid "" "Receive info on the latest plugin updates and social provider related " "changes." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:116 msgid "Enter your email address" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:120 msgid "Subscribe" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:136 msgid "Saving..." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:137 msgid "Saving failed" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:138 msgid "Order Saved" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "Successfully subscribed!" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "" "We'll be bringing you all the latest news and updates about Social Login - " "right to your inbox." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:214 msgid "The entered email address is invalid!" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:14 msgid "Rate your experience!" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:15 msgid "Hated it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:16 msgid "Disliked it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:17 msgid "It was ok" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:18 msgid "Liked it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:19 msgid "Loved it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:31 msgid "Please Leave a Review" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:32 msgid "" "If you are happy with Nextend Social Login and can take a minute " "please leave us a review. It will be a tremendous help for us!" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:34 msgid "Ok, you deserve it" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96 msgid "Register form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23 msgid "No Connect button" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26 msgid "Connect button before register" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:221 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:226 msgid "Action:" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31 msgid "Connect button before account details" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36 msgid "Connect button after register" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44 msgid "Register button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:105 #: nextend-facebook-connect/admin/templates/settings/comment.php:45 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111 #: nextend-facebook-connect/admin/templates/settings/userpro.php:57 #: nextend-facebook-connect/admin/templates/settings/userpro.php:108 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30 #: nextend-facebook-connect/widget.php:47 msgid "Icon" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:64 msgid "Sidebar Login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:69 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:85 #: nextend-facebook-connect/admin/templates/settings/login-form.php:17 #: nextend-facebook-connect/admin/templates/settings/login-form.php:30 #: nextend-facebook-connect/admin/templates/settings/login-form.php:47 #: nextend-facebook-connect/admin/templates/settings/userpro.php:26 #: nextend-facebook-connect/admin/templates/settings/userpro.php:39 msgid "Hide login buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:72 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88 #: nextend-facebook-connect/admin/templates/settings/login-form.php:14 #: nextend-facebook-connect/admin/templates/settings/login-form.php:27 #: nextend-facebook-connect/admin/templates/settings/login-form.php:44 #: nextend-facebook-connect/admin/templates/settings/userpro.php:23 #: nextend-facebook-connect/admin/templates/settings/userpro.php:36 #: nextend-facebook-connect/widget.php:76 msgid "Show login buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:73 msgid "" "Some themes that use BuddyPress, display the social buttons twice in the " "same login form. This option can disable the one for: " "bp_sidebar_login_form action. " msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:80 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38 msgid "Login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:93 msgid "Login button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:48 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52 #: nextend-facebook-connect/admin/templates/settings/userpro.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58 msgid "Login layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:110 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124 #: nextend-facebook-connect/admin/templates/settings/userpro.php:70 #: nextend-facebook-connect/admin/templates/settings/userpro.php:121 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186 msgid "Below" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:130 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130 #: nextend-facebook-connect/admin/templates/settings/userpro.php:76 #: nextend-facebook-connect/admin/templates/settings/userpro.php:127 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192 msgid "Below with separator" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:136 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136 #: nextend-facebook-connect/admin/templates/settings/userpro.php:82 #: nextend-facebook-connect/admin/templates/settings/userpro.php:133 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198 msgid "Above" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:142 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142 #: nextend-facebook-connect/admin/templates/settings/userpro.php:88 #: nextend-facebook-connect/admin/templates/settings/userpro.php:139 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204 msgid "Above with separator" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:150 #: nextend-facebook-connect/admin/templates/settings/comment.php:53 #: nextend-facebook-connect/admin/templates/settings/login-form.php:53 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:151 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:166 #: nextend-facebook-connect/admin/templates/settings/userpro.php:147 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:233 msgid "Button alignment" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155 #: nextend-facebook-connect/admin/templates/settings/comment.php:58 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140 #: nextend-facebook-connect/admin/templates/settings/login-form.php:58 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:156 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171 #: nextend-facebook-connect/admin/templates/settings/userpro.php:152 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:238 #: nextend-facebook-connect/widget.php:57 msgid "Left" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:158 #: nextend-facebook-connect/admin/templates/settings/comment.php:61 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:143 #: nextend-facebook-connect/admin/templates/settings/login-form.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:159 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:174 #: nextend-facebook-connect/admin/templates/settings/userpro.php:155 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:241 #: nextend-facebook-connect/widget.php:62 msgid "Center" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162 #: nextend-facebook-connect/admin/templates/settings/comment.php:65 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147 #: nextend-facebook-connect/admin/templates/settings/login-form.php:65 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:163 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178 #: nextend-facebook-connect/admin/templates/settings/userpro.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:245 #: nextend-facebook-connect/widget.php:67 msgid "Right" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:18 msgid "Login button" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:23 #: nextend-facebook-connect/admin/templates/settings/privacy.php:42 msgid "Show" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:26 msgid "Hide" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 #, php-format msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Discussion" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Users must be registered and logged in to comment" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:33 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18 msgid "Button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29 msgid "Target window" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34 msgid "Prefer popup" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37 msgid "Prefer new tab" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40 msgid "Prefer same window" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46 msgid "Registration notification sent to" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:242 msgid "WordPress default" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54 msgid "Nobody" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60 msgid "Admin" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63 msgid "User and Admin" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69 msgid "Unlink" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75 msgid "Allow Social account unlink" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81 msgid "Disable Admin bar for roles" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:43 msgid "Debug mode" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:56 msgid "Page for register flow" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:66 #: nextend-facebook-connect/admin/templates/settings/general.php:91 msgid "None" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:74 msgid "" "This setting is used when you request additional data from the users (such " "as email address) and to display the Terms and conditions." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #, php-format msgid "" "%2$s First create a new page and insert the following shortcode: %1$s then " "select this page above" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #: nextend-facebook-connect/admin/templates/settings/general.php:101 msgid "Usage:" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 #, php-format msgid "" "%1$s You won't be able to reach the selected page unless a social login/" "registration happens." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 msgid "Important:" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:80 msgid "OAuth redirect uri proxy page" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:100 msgid "" "You can use this setting when wp-login.php page is not available to handle " "the OAuth flow." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:101 #, php-format msgid "%1$s First create a new page then select this page above." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:108 msgid "Prevent external redirect overrides" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:114 msgid "Disable external redirects" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:121 msgid "Default redirect url" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:134 #: nextend-facebook-connect/admin/templates/settings/general.php:172 msgid "for Login" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:149 #: nextend-facebook-connect/admin/templates/settings/general.php:187 msgid "for Register" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:159 msgid "Fixed redirect url" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:196 msgid "Blacklisted redirects" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:202 msgid "If you want to blacklist redirect url params. One pattern per line." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:207 msgid "Support login restrictions" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:217 #, php-format msgid "Please visit to our %1$s to check what plugins are supported!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:222 msgid "Display avatars in \"All media items\"" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:232 msgid "" "Enabling this option can speed up loading images in Media Library - Grid " "view!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:237 msgid "Membership" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:250 msgid "Allow registration with Social login." msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33 #: nextend-facebook-connect/admin/templates/settings/userpro.php:45 msgid "Login form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66 msgid "Below and floating" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:85 msgid "Embedded Login form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:104 msgid "Embedded Login layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:135 msgid "Embedded login form button alignment" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form.php:22 #: nextend-facebook-connect/includes/userData.php:137 msgid "Registration Form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form.php:36 msgid "Embedded login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69 msgid "Sign Up form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74 msgid "No Connect button in Sign Up form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167 msgid "Connect button on" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84 msgid "Sign Up form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103 msgid "Sign Up layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212 msgid "Account details" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155 msgid "No link buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158 msgid "Link buttons after account details" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:6 #: nextend-facebook-connect/nextend-social-login.php:143 msgid "" "By clicking Register, you accept our Privacy Policy" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:59 msgid "Store" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:65 msgid "First and last name" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:68 msgid "When not enabled, username will be randomly generated." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:78 #: nextend-social-login-pro/class-provider-extension.php:322 msgid "Email" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:81 msgid "When not enabled, email will be empty." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:91 #: nextend-facebook-connect/includes/avatar.php:59 msgid "Avatar" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:102 #: nextend-facebook-connect/includes/provider.php:1066 msgid "Access token" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23 msgid "No Connect button in Login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89 msgid "No Connect button in Register form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99 #: nextend-facebook-connect/admin/templates/settings/userpro.php:96 msgid "Register form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118 #: nextend-facebook-connect/admin/templates/settings/userpro.php:115 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116 msgid "Register layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/userpro.php:31 msgid "Register Form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43 msgid "No Connect button in login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101 msgid "No Connect button in register form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154 msgid "Billing form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159 msgid "No Connect button in billing form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174 msgid "Billing layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217 msgid "No Connect buttons in account details form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:220 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:225 msgid "Link buttons on" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:42 #, php-format msgid "Network connection successful: %1$s" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:49 #, php-format msgid "Network connection failed: %1$s" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:52 msgid "" "Please contact with your hosting provider to resolve the network issue " "between your server and the provider." msgstr "" #: nextend-facebook-connect/includes/avatar.php:60 msgid "Manage Avatar" msgstr "" #: nextend-facebook-connect/includes/avatar.php:61 #, php-format msgid "Avatar (%s)" msgid_plural "Avatar (%s)" msgstr[0] "" msgstr[1] "" #: nextend-facebook-connect/includes/compat-wp-login.php:49 #, php-format msgid "%1$s ‹ %2$s — WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:115 msgid "https://wordpress.org/" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:116 msgid "Powered by WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:260 #, php-format msgctxt "site" msgid "← Back to %s" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:198 msgid "Your configuration needs to be verified" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:199 msgid "" "Before you can start letting your users register with your app it needs to " "be tested. This test makes sure that no users will have troubles with the " "login and registration process.
If you see error message in the popup " "check the copied ID and secret or the app itself. Otherwise your settings " "are fine." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:205 msgid "Please save your changes to verify settings." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:213 msgid "Works Fine" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:227 #, php-format msgid "" "This provider is currently disabled, which means that users can’t register " "or login via their %s account." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:230 #, php-format msgid "" "This provider works fine, but you can test it again. If you don’t want to " "let users register or login with %s anymore you can disable it." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:233 #, php-format msgid "" "This provider is currently enabled, which means that users can register or " "login via their %s account." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:241 msgid "Verify Settings Again" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:242 msgid "Please save your changes before verifying settings." msgstr "" #: nextend-facebook-connect/includes/provider.php:350 #: nextend-facebook-connect/includes/provider.php:693 #: nextend-facebook-connect/includes/provider.php:698 msgid "Authentication successful" msgstr "" #: nextend-facebook-connect/includes/provider.php:635 #: nextend-facebook-connect/includes/user.php:127 msgid "Authentication error" msgstr "" #: nextend-facebook-connect/includes/provider.php:650 msgid "Unlink successful." msgstr "" #: nextend-facebook-connect/includes/provider.php:652 msgid "Unlink is not allowed!" msgstr "" #: nextend-facebook-connect/includes/provider.php:856 #: nextend-facebook-connect/includes/provider.php:863 msgid "The test was successful" msgstr "" #: nextend-facebook-connect/includes/provider.php:909 msgid "Authentication failed" msgstr "" #: nextend-facebook-connect/includes/provider.php:1058 msgid "Identifier" msgstr "" #: nextend-facebook-connect/includes/provider.php:1074 msgid "Profile picture" msgstr "" #: nextend-facebook-connect/includes/user.php:74 #, php-format msgid "" "Your %1$s account is successfully linked with your account. Now you can sign " "in with %2$s easily." msgstr "" #: nextend-facebook-connect/includes/user.php:77 #, php-format msgid "" "You have already linked a(n) %s account. Please unlink the current and then " "you can link other %s account." msgstr "" #: nextend-facebook-connect/includes/user.php:82 #, php-format msgid "This %s account is already linked to other user." msgstr "" #: nextend-facebook-connect/includes/user.php:122 msgid "User registration is currently not allowed." msgstr "" #: nextend-facebook-connect/includes/userData.php:137 msgid "Register For This Site!" msgstr "" #: nextend-facebook-connect/nextend-facebook-connect.php:34 #, php-format msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE." msgstr "" #: nextend-facebook-connect/nextend-facebook-connect.php:41 #, php-format msgid "" "%1$s requires WordPress version %2$s+. Because you are using an earlier " "version, the plugin is currently NOT ACTIVE." msgstr "" #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 #, php-format msgid "Please update %1$s to version %2$s or newer." msgstr "" #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 msgid "Update now!" msgstr "" #: nextend-facebook-connect/nextend-social-login.php:735 #: nextend-facebook-connect/nextend-social-login.php:1111 msgid "Social Login" msgstr "" #: nextend-facebook-connect/nextend-social-login.php:1092 msgid "Social Accounts" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8 #, php-format msgid "Navigate to %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/google/admin/getting-started.php:17 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9 #, php-format msgid "Log in with your %s credentials if you are not logged in" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10 #, php-format msgid "Click on the App with App ID: %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11 msgid "In the left sidebar, click on \"Facebook Login > Settings\"" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36 #, php-format msgid "" "Add the following URL to the \"Valid OAuth redirect URIs\" field: " "%s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13 msgid "Click on \"Save Changes\"" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11 #: nextend-facebook-connect/providers/facebook/admin/settings.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22 #, php-format msgid "" "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in " "order to allow login with %1$s." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13 #: nextend-facebook-connect/providers/facebook/admin/settings.php:15 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24 msgid "How to get SSL for my WordPress site?" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19 #: nextend-facebook-connect/providers/google/admin/getting-started.php:11 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create a %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21 #: nextend-facebook-connect/providers/google/admin/getting-started.php:13 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:32 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:13 #, php-format msgctxt "App creation" msgid "Create %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24 #: nextend-facebook-connect/providers/google/admin/getting-started.php:16 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:16 #, php-format msgid "Navigate to %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26 msgid "Click on the \"Add a New App\" button" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27 msgid "" "If you see the message \"Become a Facebook Developer\", then you need " "to click on the green \"Register Now\" button, fill the form then " "finally verify your account." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28 #, php-format msgid "" "Fill \"Display Name\" and \"Contact Email\". The specified " "\"Display Name\" will appear on your %s!" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29 msgid "" "Click the \"Create App ID\" button and complete the Security Check." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35 #, php-format msgid "" "On the left side, click on the “%1$s” menu point, then click “" "%2$s”." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31 msgid "Enter your domain name to the \"App Domains\" field." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32 #, php-format msgid "" "Enter your domain name to the \"App Domains\" field, probably: %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33 msgid "" "Fill up the \"Privacy Policy URL\" field. Provide a publicly " "available and easily accessible privacy policy that explains what data you " "are collecting and how you will use that data." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34 msgid "" "Select a “Category”, an “App Icon” and pick the “Business " "Use” option that describes your the App best, then press \"Save " "Changes\"." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37 msgid "Click on “Save Changes”" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38 msgid "" "Your application is currently private, which means that only you can log in " "with it. In the top bar click on the switch next to the \"In development\" label, then click the \"Switch Mode\" button." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39 #, php-format msgid "" "Finally on the left side, click on the \"%1$s\" menu point, then " "click \"%2$s\" again. Here you can see your \"APP ID\" and you " "can see your \"App secret\" if you click on the \"Show\" button. " "These will be needed in plugin’s settings." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43 #: nextend-facebook-connect/providers/google/admin/getting-started.php:40 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:30 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:29 #, php-format msgid "I am done setting up my %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:35 #: nextend-social-login-pro/providers/vk/admin/settings.php:27 msgid "App ID" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:36 #: nextend-facebook-connect/providers/facebook/admin/settings.php:48 #: nextend-facebook-connect/providers/google/admin/settings.php:28 #: nextend-facebook-connect/providers/google/admin/settings.php:41 #: nextend-facebook-connect/providers/twitter/admin/settings.php:28 #: nextend-social-login-pro/providers/amazon/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:39 #: nextend-social-login-pro/providers/apple/admin/settings.php:79 #: nextend-social-login-pro/providers/apple/admin/settings.php:90 #: nextend-social-login-pro/providers/apple/admin/settings.php:100 #: nextend-social-login-pro/providers/apple/admin/settings.php:108 #: nextend-social-login-pro/providers/disqus/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39 #: nextend-social-login-pro/providers/paypal/admin/settings.php:27 #: nextend-social-login-pro/providers/paypal/admin/settings.php:39 #: nextend-social-login-pro/providers/vk/admin/settings.php:28 #: nextend-social-login-pro/providers/vk/admin/settings.php:40 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39 msgid "Required" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:41 #: nextend-facebook-connect/providers/google/admin/settings.php:35 #: nextend-facebook-connect/providers/twitter/admin/settings.php:33 #: nextend-social-login-pro/providers/amazon/admin/settings.php:33 #: nextend-social-login-pro/providers/apple/admin/settings.php:34 #: nextend-social-login-pro/providers/apple/admin/settings.php:85 #: nextend-social-login-pro/providers/disqus/admin/settings.php:33 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33 #: nextend-social-login-pro/providers/paypal/admin/settings.php:33 #: nextend-social-login-pro/providers/vk/admin/settings.php:34 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33 #, php-format msgid "" "If you are not sure what is your %1$s, please head over to Getting Started" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:47 msgid "App Secret" msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:79 msgid "Continue with Facebook" msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:80 msgid "Link account with Facebook" msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:81 msgid "Unlink account from Facebook" msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:135 #: nextend-facebook-connect/providers/google/google.php:158 #: nextend-facebook-connect/providers/twitter/twitter.php:95 #: nextend-social-login-pro/providers/amazon/amazon.php:65 #: nextend-social-login-pro/providers/apple/apple.php:71 #: nextend-social-login-pro/providers/apple/apple.php:77 #: nextend-social-login-pro/providers/disqus/disqus.php:112 #: nextend-social-login-pro/providers/linkedin/linkedin.php:63 #: nextend-social-login-pro/providers/paypal/paypal.php:90 #: nextend-social-login-pro/providers/vk/vk.php:61 #: nextend-social-login-pro/providers/wordpress/wordpress.php:99 #: nextend-social-login-pro/providers/yahoo/yahoo.php:90 #, php-format msgid "" "The %1$s entered did not appear to be a valid. Please enter a valid %2$s." msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:253 #: nextend-social-login-pro/providers/paypal/paypal.php:170 #, php-format msgid "Required scope: %1$s" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:2 msgid "Button skin" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:8 msgid "Uniform" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:14 msgid "Light" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:20 msgid "Dark" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10 msgid "Click on the \"Credentials\" in the left hand menu" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11 #, php-format msgid "" "Under the \"OAuth 2.0 Client IDs\" section find your Client ID: " "%s" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/google/admin/getting-started.php:34 #, php-format msgid "" "Add the following URL to the \"Authorised redirect URIs\" field: " "%s" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14 msgid "Click on \"Save\"" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:18 msgid "" "If you don't have a project yet, you'll need to create one. You can do this " "by clicking on the blue \"Create\" button on the right side! ( If " "you already have a project, click on the name of your project in the " "dashboard instead, which will bring up a modal and click \"New Project\". )" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:19 msgid "Name your project and then click on the \"Create\" button again" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:20 msgid "Once you have a project, you'll end up in the dashboard." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:21 msgid "Click the “OAuth consent screen” button on the left hand side." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:22 msgid "" "Choose a User Type according to your needs. If you want to enable the " "social login with Google for any users with a Google account, then pick the " "External option!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:24 #, php-format msgid "" "Note: We don't use sensitive or restricted scopes either. But if you " "will use this App for other purposes too, then you may need to go through an " "%1$s!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:27 msgid "" "Enter a name for your App to the \"Application name\" field, which " "will appear as the name of the app asking for consent." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:28 #, php-format msgid "" "Fill the \"Authorized domains\" field with your domain name probably: " "%s without subdomains!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:29 msgid "Save your settings!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:30 #, php-format msgid "" "On the left side, click on the \"%1$s\" menu point, then click the " "\"%2$s\" button in the top bar." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:31 msgid "Choose the \"OAuth client ID\" option." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:32 msgid "Select the \"Web application\" under Application type." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:33 msgid "Enter \"Name\" that for your OAuth client ID." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:35 msgid "Click on the \"Create\" button" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:36 msgid "" "A modal should pop up with your credentials. If that doesn't happen, go to " "the Credentials in the left hand menu and select your app by clicking on its " "name and you'll be able to copy-paste the \"Client ID\" and " "\"Client Secret\" from there." msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:26 #: nextend-social-login-pro/providers/apple/admin/settings.php:28 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26 #: nextend-social-login-pro/providers/paypal/admin/settings.php:26 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26 msgid "Client ID" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:40 #: nextend-social-login-pro/providers/amazon/admin/settings.php:38 #: nextend-social-login-pro/providers/apple/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38 msgid "Client Secret" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:47 msgid "Select account on each login" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:56 msgid "" "Disable, when you don't want to see the account select prompt on each login." msgstr "" #: nextend-facebook-connect/providers/google/google.php:106 msgid "Continue with Google" msgstr "" #: nextend-facebook-connect/providers/google/google.php:107 msgid "Link account with Google" msgstr "" #: nextend-facebook-connect/providers/google/google.php:108 msgid "Unlink account from Google" msgstr "" #: nextend-facebook-connect/providers/google/google.php:285 #, php-format msgid "Required API: %1$s" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10 msgid "Find your App and click on the \"Details\" button" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11 msgid "" "The Edit button can be found on the App details tab. Click on it and " "select \"Edit details\"" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22 #, php-format msgid "Add the following URL to the \"Callback URLs\" field: %s" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in yet" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18 msgid "" "If you don't have a developer account yet, please apply one by filling all " "the required details! This is required for the next steps!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19 #, php-format msgid "" "Once your developer account is complete, navigate back to %s if you " "aren't already there!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20 #, php-format msgid "" "Fill the App name, Application description fields. Then enter " "your site's URL to the Website URL field: %s" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21 msgid "Tick the checkbox next to Enable Sign in with Twitter!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23 msgid "" "Fill the “Terms of Service URL\", \"Privacy policy URL\" and " "\"Tell us how this app will be used\" fields!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24 msgid "Click the Create button." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25 msgid "Read the Developer Terms and click the Create button again!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26 msgid "Select the Permissions tab and click Edit." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27 msgid "" "Tick the Request email address from users under the Additional " "permissions section and click Save." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28 msgid "" "Go to the Keys and tokens tab and find the API key and API " "secret key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:26 msgid "API Key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:38 msgid "API secret key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:57 msgid "Profile image size" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:71 msgid "Original" msgstr "" #: nextend-facebook-connect/providers/twitter/twitter.php:69 msgid "Continue with Twitter" msgstr "" #: nextend-facebook-connect/providers/twitter/twitter.php:70 msgid "Link account with Twitter" msgstr "" #: nextend-facebook-connect/providers/twitter/twitter.php:71 msgid "Unlink account from Twitter" msgstr "" #: nextend-facebook-connect/widget.php:10 #, php-format msgid "%s Buttons" msgstr "" #: nextend-facebook-connect/widget.php:30 msgid "Title:" msgstr "" #: nextend-facebook-connect/widget.php:38 msgid "Button style:" msgstr "" #: nextend-facebook-connect/widget.php:53 msgid "Button align:" msgstr "" #: nextend-facebook-connect/widget.php:85 msgid "Show link buttons" msgstr "" #: nextend-facebook-connect/widget.php:94 msgid "Show unlink buttons" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:117 msgid "Social login is not allowed with this role!" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:213 #: nextend-social-login-pro/class-provider-extension.php:216 #: nextend-social-login-pro/class-provider-extension.php:222 #: nextend-social-login-pro/class-provider-extension.php:229 #: nextend-social-login-pro/class-provider-extension.php:300 #: nextend-social-login-pro/class-provider-extension.php:303 #: nextend-social-login-pro/class-provider-extension.php:307 msgid "ERROR" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:213 msgid "Please enter a username." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:216 msgid "" "This username is invalid because it uses illegal characters. Please enter a " "valid username." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:222 msgid "This username is already registered. Please choose another one." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:229 msgid "Sorry, that username is not allowed." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:247 msgid "Username" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:300 msgid "Please enter an email address." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:303 msgid "The email address isn’t correct." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:307 msgid "This email is already registered, please choose another one." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:327 msgid "Registration confirmation will be emailed to you." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:378 msgid "ERROR: Please enter a password." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:384 msgid "ERROR: Passwords may not contain the character \"\\\"." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:390 msgid "" "ERROR: Please enter the same password in both password " "fields." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:407 msgid "Password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:417 msgid "Strength indicator" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:422 msgid "Confirm use of weak password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:428 msgid "Confirm password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:440 #, php-format msgid "" "This email is already registered, please login in to your account to link " "with %1$s." msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:54 #, php-format msgid "Please install and activate %1$s to use the %2$s" msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:68 msgid "Network Activate" msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:80 msgid "Install now!" msgstr "" #: nextend-social-login-pro/provider-extensions/facebook.php:74 #, php-format msgid "" "The Facebook Sync data needs an approved %1$s and your App must use the " "latest %2$s version!" msgstr "" #: nextend-social-login-pro/provider-extensions/google.php:176 #, php-format msgid "" "Most of these information can only be retrieved, when the field is marked as " "Public on the user's %s page!" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26 #, php-format msgid "Visit %s" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30 msgid "" "On the right side, under \"Manage\", hover over the gear icon and " "select \"Web Settings\" option." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31 msgid "Click \"Edit\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33 #, php-format msgid "" "Add the following URL to the \"Allowed Return URLs\" field %s " msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27 msgid "" "If you don't have a Security Profile yet, you'll need to create one. You can " "do this by clicking on the orange \"Create a New Security Profile\" " "button on the left side." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28 msgid "" "Fill \"Security Profile Name\", \"Security Profile Description" "\" and \"Consent Privacy Notice URL\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29 msgid "Once you filled all the required fields, click \"Save\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32 #, php-format msgid "" "Fill \"Allowed Origins\" with the url of your homepage, probably: " "%s" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28 msgid "When all fields are filled, click \"Save\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:35 msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" at the " "middle of the page, under the \"Web Settings\" tab." msgstr "" #: nextend-social-login-pro/providers/amazon/amazon.php:39 msgid "Continue with Amazon" msgstr "" #: nextend-social-login-pro/providers/amazon/amazon.php:40 msgid "Link account with Amazon" msgstr "" #: nextend-social-login-pro/providers/amazon/amazon.php:41 msgid "Unlink account from Amazon" msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21 msgid "Click on the name of your service." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22 msgid "" "Click the \"Configure\" button next to \"Sign In with Apple\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53 #, php-format msgid "Click the blue + icon next to %1$s heading." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79 #, php-format msgid "" "Fill the \"Domains and Subdomains\" field with your domain name " "probably: %s" msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:80 #, php-format msgid "Add the following URL to the \"Return URLs\" field: %s" msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:26 msgid "" "Finally press \"Next\" then \"Done\" and finally click on the " "\"Continue\" and the \"Save\" button!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\", \"%3$s\", \"%4$s\" and \"%5$s" "\" according to your %1$s App." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35 msgid "" "Make sure you have an active subscription for the Apple Developer " "Program!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36 msgid "" "Make sure your site have SSL, since Apple only allows HTTPS urls!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:41 msgid "1.) Create the associated App:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the %2$s " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:44 msgid "Enter a \"Description\"" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45 #, php-format msgid "" "At the \"Bundle ID\" field select the \"Explicit\" option and " "enter your domain name in reverse-domain name style, with the name of the " "app at its end: %s.nslapp" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46 msgid "" "Under the \"Capabilities\" section, tick the \"Sign In with Apple\" option." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47 msgid "" "Scroll up and press the \"Continue\" button and then the " "\"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50 msgid "2.) Create the Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:52 #, php-format msgid "On the left hand side, click on the \"%s\" tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:54 msgid "Enter a name in the Key Name field." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55 msgid "" "Tick the \"Sign In with Apple\" option, then click on \"Configure\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56 msgid "" "If you have multiple Apps, then at the \"Choose a Primary App ID\" " "field select the App what you just created, then click \"Save" "\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57 msgid "" "Finally press the \"Continue\" button and then the \"Register" "\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58 msgid "Don't download the key yet!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61 msgid "3.) Create the Service:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:63 #, php-format msgid "" "Go to the \"%1$s\" section, what you will find within the \"%2$s\" " "tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the \"%2$s\" " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:65 msgid "Enter a \"Description\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66 #, php-format msgid "" "At the \"Identifier\" field enter your domain name in reverse-domain " "name style, with the name of the client at its end: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69 msgid "Note: This will also be used as Service Identifier later!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72 msgid "" "Press the \"Continue\" button and then the \"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:73 #, php-format msgid "In the \"%1$s\" section, click the service you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76 msgid "" "Tick the \"Sign In with Apple\" option and click the \"Configure\" button next to it." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:78 msgid "" "If you have multiple Apps, then at the \"Primary App ID\" field select the " "App what you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:83 msgid "" "Save the configuration by clicking on the \"Save\" button and " "pressing \"Done\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:84 msgid "" "Finally press the \"Continue\" button and then the \"Save\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:87 msgid "4.) Configure Nextend Social Login with your credentials:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:89 msgid "Go to Nextend Social Login > Providers > Apple > Settings tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:90 msgid "Private Key ID:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:92 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:110 #, php-format msgid "Navigate to: %s" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:93 msgid "Click on the name of your Key." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:94 msgid "You will find your \"Private Key ID\" under \"Key ID\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:97 msgid "Private Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99 msgid "" "Click the \"Download\" button to download the key file. Once this " "file is downloaded, it will no longer be available, so make sure you keep " "this file safe! " msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:100 msgid "" "Open the downloaded file with a text editor, like Notepad, copy " "all of its contents and paste it into the \"Private Key" "\" field of Nextend Social Login." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:103 msgid "Team Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105 msgid "" "A 10 character long identifier, what you can find on the top-right " "corner, just under your name." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:108 msgid "Service Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111 #, php-format msgid "" "You will find it under the \"IDENTIFIER\" column. If you configured " "the service according to the suggestions, it will probably end to .nslclient " "e.g.: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:114 msgid "" "Once you filled up all the fields, click on the \"Generate Token\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115 msgid "Finally verify the settings and enable the provider!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:116 msgid "" "When you need to change your credentials for some reason, then you must " "delete the token, copy the new credentials and generate a new token!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:48 msgid "Delete credentials" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:78 msgid "Private Key ID" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:89 msgid "Private Key" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:99 msgid "Team Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:107 msgid "Service Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:117 msgid "Generate Token" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:53 msgid "Continue with Apple" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:54 msgid "Link account with Apple" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:55 msgid "Unlink account from Apple" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:107 #: nextend-social-login-pro/providers/apple/apple.php:204 #: nextend-social-login-pro/providers/apple/apple.php:221 #, php-format msgid "Token generation failed: %1$s" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:107 msgid "Please check your credentials!" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:204 msgid "Private key format is not valid!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10 #, php-format msgid "Click on the name of your %s App." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12 msgid "" "Select the \"Settings\" tab and scroll down to the Authentication " "section!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23 #, php-format msgid "Add the following URL to the \"Callback URL\" field %s " msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14 msgid "Click on the \"Save Changes\" button." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17 msgid "" "Click on the \"Registering new application\" button under the " "Applications tab." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18 msgid "Enter a \"Label\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19 #, php-format msgid "" "Fill \"Website\" with the url of your homepage, probably: %s" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20 msgid "" "Complete the Human test and click the \"Register my application\" " "button." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21 #, php-format msgid "Fill the \"Domains\" field with your domain name like: %s" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22 msgid "" "Select \"Read only\" as Default Access under the Authentication " "section." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24 msgid "Click on the \"Save Changes\" button!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25 msgid "Navigate to the \"Details\" tab of your Application!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26 msgid "" "Here you can see your \"API Key\" and \"API Secret\". These " "will be needed in the plugin's settings." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/settings.php:38 msgid "API Secret" msgstr "" #: nextend-social-login-pro/providers/disqus/disqus.php:86 msgid "Continue with Disqus" msgstr "" #: nextend-social-login-pro/providers/disqus/disqus.php:87 msgid "Link account with Disqus" msgstr "" #: nextend-social-login-pro/providers/disqus/disqus.php:88 msgid "Unlink account from Disqus" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10 msgid "Click on your App and go to the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11 #, php-format msgid "Add the following URL to the \"Redirect URLs\" field: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:12 msgid "Click on \"Update\" to save the changes" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17 msgid "Locate the \"Create app\" button and click on it." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18 msgid "Enter the name of your App to the \"App name\" field." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19 #, php-format msgid "" "Find your company page in the \"Company\" field. If you don't have " "one yet, create new one at: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20 msgid "" "Enter your \"Privacy policy URL\" amd upload an \"App logo\"" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21 msgid "" "Read and agree the \"API Terms of Use\" then click the \"Create " "App\" button!" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22 msgid "" "You will end up in the App setting area. Click on the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23 #, php-format msgid "" "Find \"OAuth 2.0 settings\" section and add the following URL to the " "\"Redirect URLs\" field: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25 msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" under " "the Application credentials section, on the Auth tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/linkedin.php:37 msgid "Continue with LinkedIn" msgstr "" #: nextend-social-login-pro/providers/linkedin/linkedin.php:38 msgid "Link account with LinkedIn" msgstr "" #: nextend-social-login-pro/providers/linkedin/linkedin.php:39 msgid "Unlink account from LinkedIn" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18 msgid "There is a Sandbox/Live switch. Make sure \"Live\" is selected!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11 #, php-format msgid "Click on the name of your %s App, under the REST API apps section." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading and click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22 #, php-format msgid "" "Add the following URL to the \"Live Return URL\" field: %s " msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14 msgid "Click on \"Save\"" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15 #, php-format msgid "" "Editing Live Apps are only possible with a %s. So please make sure you own " "one!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19 msgid "Click the \"Create App\" button under the REST API apps section." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20 msgid "" "Fill the \"App Name\" field and click \"Create App\" button." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading then click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23 msgid "" "Scroll down to \"App feature options\" section and tick \"Log In " "with PayPal\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24 msgid "" "Click \"Advanced Options\" which can be found at the end of text " "after \"Connect with PayPal (formerly Log In with PayPal)\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25 msgid "Tick \"Full name\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:26 msgid "" "\"Email address\" now requires an App Review by PayPal. To get the " "email address as well, please submit your App for a review after your " "App configuration is finished. Once the App review is successful, you need " "to pick \"Email address\" here to retrieve the email of the user. Until then " "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27 msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29 msgid "" "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary " "\"Client ID\" and \"Secret\"! ( Make sure you are in " "\"Live\" mode and not \"Sandbox\". )" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:38 msgid "Secret" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:45 msgid "Email scope" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:54 msgid "Disable, when you have no rights for email address." msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:64 msgid "Continue with PayPal" msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:65 msgid "Link account with PayPal" msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:66 msgid "Unlink account from PayPal" msgstr "" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10 msgid "Click on the \"Manage\" button next to the associated App." msgstr "" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11 msgid "Go to the \"Settings\" menu" msgstr "" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12 #, php-format msgid "" "Add the following URL to the \"Authorized redirect URI\" field: " "%s" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17 msgid "Locate the blue \"Create app\" button and click on it." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18 msgid "" "Enter the Title for your App and select \"Website\" as " "platform." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19 #, php-format msgid "" "Fill \"Website address\" with the url of your homepage, probably: " "%s" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20 #, php-format msgid "" "Fill the \"Base domain\" field with your domain, probably: %s" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21 msgid "When all fields are filled, click the \"Upload app\" button." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22 msgid "" "Fill the information form of your app, upload an app icon then " "click Save." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23 msgid "Pick Settings at the left-hand menu " msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24 #, php-format msgid "" "Add the following URL to the \"Authorized redirect URI\" field %s " msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25 msgid "Save your app" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:26 msgid "" "Find the necessary \"App ID\" and \"Secure key\" at the top of " "the Settings page where you just hit the save button." msgstr "" #: nextend-social-login-pro/providers/vk/admin/settings.php:39 msgid "Secure key" msgstr "" #: nextend-social-login-pro/providers/vk/vk.php:35 msgid "Continue with VK" msgstr "" #: nextend-social-login-pro/providers/vk/vk.php:36 msgid "Link account with VK" msgstr "" #: nextend-social-login-pro/providers/vk/vk.php:37 msgid "Unlink account from VK" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12 msgid "Click \"Manage Settings\" under the Tools section!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20 #, php-format msgid "Add the following URL to the \"Redirect URLs\" field %s " msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17 msgid "Click on the \"Create New Application\" button." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18 msgid "Enter a \"Name\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19 #, php-format msgid "" "Fill \"Website URL\" with the url of your homepage, probably: %s" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21 msgid "You can leave the \"Javascript Origins\" field blank!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22 msgid "Complete the human verification test." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23 msgid "At the \"Type\" make sure \"Web\" is selected!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24 msgid "Click the \"Create\" button!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25 msgid "" "Click the name of your App either in the Breadcrumb navigation or " "next to Editing!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26 msgid "" "Here you can see your \"Client ID\" and \"Client Secret\". " "These will be needed in the plugin's settings." msgstr "" #: nextend-social-login-pro/providers/wordpress/wordpress.php:73 msgid "Continue with WordPress.com" msgstr "" #: nextend-social-login-pro/providers/wordpress/wordpress.php:74 msgid "Link account with WordPress.com" msgstr "" #: nextend-social-login-pro/providers/wordpress/wordpress.php:75 msgid "Unlink account from WordPress.com" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10 msgid "Click on the App which has its credentials associated with the plugin." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22 #, php-format msgid "" "Add the following URL to the \"Redirect URI(s)\" field: %s" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18 msgid "Click on the \"Create an App\" button on the top right corner." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19 msgid "" "Fill the \"Application Name\" and select \"Web Application\" " "at \"Application Type\"." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20 msgid "Enter a \"Description\" for your app!" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21 #, php-format msgid "" "Enter the URL of your site to the \"Home Page URL\" field: %s" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23 msgid "" "Under the \"API Permissions\" you should select \"OpenID Connect " "Permissions\" with both \"Email\" and \"Profile\" enabled." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:24 msgid "Click \"Create App\"." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:25 msgid "" "On the top of the page, you will find the necessary \"Client ID\" and " "\"Client Secret\"! These will be needed in the plugin's settings." msgstr "" #: nextend-social-login-pro/providers/yahoo/yahoo.php:64 msgid "Continue with Yahoo" msgstr "" #: nextend-social-login-pro/providers/yahoo/yahoo.php:65 msgid "Link account with Yahoo" msgstr "" #: nextend-social-login-pro/providers/yahoo/yahoo.php:66 msgid "Unlink account from Yahoo" msgstr "" #: nextend-social-login-pro/providers/yahoo/yahoo.php:186 #, php-format msgid "Required permission: %1$s" msgstr "" #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10 #: nextend-social-login-pro/template-parts/login/above-separator.php:20 #: nextend-social-login-pro/template-parts/login/below-separator.php:8 #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10 msgid "OR" msgstr "OU" #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1 #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1 msgid "Social accounts" msgstr "" languages/nextend-facebook-connect-en_US.po000066600000341657152140537230014752 0ustar00msgid "" msgstr "" "Project-Id-Version: nextend-facebook-connect\n" "POT-Creation-Date: 2020-03-26 11:07+0100\n" "PO-Revision-Date: 2020-03-26 11:07+0100\n" "Last-Translator: \n" "Language-Team: nextend-facebook-connect\n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.2.4\n" "X-Poedit-Basepath: ../..\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n" "X-Poedit-Flags-xgettext: −−default-domain=nextend-facebook-connect\n" "X-Poedit-SearchPath-0: nextend-social-login-pro\n" "X-Poedit-SearchPath-1: nextend-facebook-connect\n" #: nextend-facebook-connect/NSL/GDPR.php:34 msgid "What personal data we collect and why we collect it" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:35 #, php-format msgid "" "%1$s collects data when a visitor register, login or link the account with " "with any of the enabled social provider. It collects the following data: " "email address, name, social provider identifier and access token. Also it " "can collect profile picture and more fields with the Pro Addon's sync data " "feature." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:37 msgid "Who we share your data with" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:38 #, php-format msgid "" "%1$s stores the personal data on your site and does not share it with anyone " "except the access token which used for the authenticated communication with " "the social providers." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:40 msgid "Does the plugin share personal data with third parties" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:41 #, php-format msgid "" "%1$s use the access token what the social provider gave to communicate with " "the providers to verify account and securely access personal data." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:43 msgid "How long we retain your data" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:44 #, php-format msgid "" "%1$s removes the collected personal data when the user deleted from " "WordPress." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:46 msgid "Does the plugin use personal data collected by others?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:47 #, php-format msgid "" "%1$s use the personal data collected by the social providers to create " "account on your site when the visitor authorize it." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:49 msgid "Does the plugin store things in the browser?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:50 #, php-format msgid "" "Yes, %1$s must create a cookie for visitors who use the social login " "authorization flow. This cookie required for every provider to secure the " "communication and to redirect the user back to the last location." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:52 msgid "Does the plugin collect telemetry data, directly or indirectly?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:53 #: nextend-facebook-connect/NSL/GDPR.php:56 msgid "No" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:55 msgid "" "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a " "third party?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:99 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57 msgid "User" msgstr "" #: nextend-facebook-connect/admin/admin.php:203 #, php-format msgid "%s needs json_decode function." msgstr "" #: nextend-facebook-connect/admin/admin.php:203 msgid "Please contact your server administrator and ask for solution!" msgstr "" #: nextend-facebook-connect/admin/admin.php:235 #: nextend-facebook-connect/admin/admin.php:265 msgid "Settings saved." msgstr "" #: nextend-facebook-connect/admin/admin.php:244 msgid "The activation was successful" msgstr "" #: nextend-facebook-connect/admin/admin.php:255 msgid "Deactivate completed." msgstr "" #: nextend-facebook-connect/admin/admin.php:433 #: nextend-facebook-connect/admin/templates-provider/menu.php:15 #: nextend-facebook-connect/admin/templates/providers.php:81 #: nextend-facebook-connect/admin/templates/providers.php:93 #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Settings" msgstr "" #: nextend-facebook-connect/admin/admin.php:516 #: nextend-facebook-connect/includes/oauth2.php:141 #: nextend-facebook-connect/includes/oauth2.php:286 #: nextend-facebook-connect/providers/facebook/facebook-client.php:84 #: nextend-facebook-connect/providers/twitter/twitter-client.php:165 #: nextend-social-login-pro/providers/apple/apple-client.php:87 #, php-format msgid "Unexpected response: %s" msgstr "" #: nextend-facebook-connect/admin/admin.php:577 #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21 #, php-format msgid "" "%s detected that your login url changed. You must update the Oauth redirect " "URIs in the related social applications." msgstr "" #: nextend-facebook-connect/admin/admin.php:578 msgid "Fix Error" msgstr "" #: nextend-facebook-connect/admin/admin.php:578 msgid "Oauth Redirect URI" msgstr "" #: nextend-facebook-connect/admin/admin.php:588 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You need the Pro Addon to " "display Social Login buttons in %2$s login form!" msgstr "" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss and check Pro Addon" msgstr "" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss" msgstr "" #: nextend-facebook-connect/admin/admin.php:595 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You must set \"Page for " "register flow\" and \"OAuth redirect uri proxy page\" in %1$s to " "work properly." msgstr "" #: nextend-facebook-connect/admin/admin.php:596 msgid "Fix now" msgstr "" #: nextend-facebook-connect/admin/admin.php:620 msgid "Activate your Pro Addon" msgstr "" #: nextend-facebook-connect/admin/admin.php:621 msgid "" "To be able to use the Pro features, you need to activate Nextend Social " "Connect Pro Addon. You can do this by clicking on the Activate button below " "then select the related purchase." msgstr "" #: nextend-facebook-connect/admin/admin.php:626 #: nextend-social-login-pro/nextend-social-login-pro.php:60 msgid "Activate" msgstr "" #: nextend-facebook-connect/admin/admin.php:724 msgid "License key" msgstr "" #: nextend-facebook-connect/admin/admin.php:747 msgid "OAuth proxy page" msgstr "" #: nextend-facebook-connect/admin/admin.php:750 msgid "Register flow page" msgstr "" #: nextend-facebook-connect/admin/interim.php:12 #: nextend-facebook-connect/admin/interim.php:23 msgid "You have logged in successfully." msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:79 msgid "Login label" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:84 #: nextend-facebook-connect/admin/templates-provider/buttons.php:95 #: nextend-facebook-connect/admin/templates-provider/buttons.php:106 #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #: nextend-facebook-connect/admin/templates-provider/buttons.php:165 #: nextend-facebook-connect/admin/templates/settings/privacy.php:53 msgid "Reset to default" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:89 msgid "Link label" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:101 msgid "Unlink label" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:112 msgid "Default button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:128 #: nextend-facebook-connect/admin/templates-provider/buttons.php:158 msgid "Use custom button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #, php-format msgid "Use the %s in your custom button's code to make the label show up." msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:143 msgid "Icon button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:174 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140 #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170 #: nextend-facebook-connect/admin/templates/settings/comment.php:73 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171 #: nextend-facebook-connect/admin/templates/settings/privacy.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186 #: nextend-facebook-connect/admin/templates/settings/userpro.php:167 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:254 #: nextend-facebook-connect/providers/facebook/admin/settings.php:57 #: nextend-facebook-connect/providers/google/admin/settings.php:62 #: nextend-facebook-connect/providers/twitter/admin/settings.php:48 #: nextend-social-login-pro/providers/amazon/admin/settings.php:47 #: nextend-social-login-pro/providers/disqus/admin/settings.php:47 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47 #: nextend-social-login-pro/providers/paypal/admin/settings.php:60 #: nextend-social-login-pro/providers/vk/admin/settings.php:48 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47 msgid "Save Changes" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:13 #: nextend-facebook-connect/admin/templates/providers.php:61 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17 #: nextend-facebook-connect/providers/google/admin/getting-started.php:9 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8 msgid "Getting Started" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:17 msgid "Buttons" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:21 msgid "Sync data" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:24 msgid "Usage" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11 msgid "Other settings" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16 msgid "Username prefix on register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23 msgid "Fallback username prefix on register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27 msgid "Used when username is invalid or not stored" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32 #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #: nextend-facebook-connect/admin/templates/settings/privacy.php:35 msgid "Terms and conditions" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #, php-format msgid "Override global \"%1$s\"" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12 msgid "PRO settings" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32 msgid "Ask E-mail on registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69 msgid "Never" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38 msgid "When email is not provided or empty" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72 msgid "Always" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50 msgid "Ask Username on registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53 msgid "Never, generate automatically" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56 msgid "When username is empty or invalid" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64 msgid "Ask Password on registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81 msgid "Automatically connect the existing account upon registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85 #: nextend-facebook-connect/admin/templates/providers.php:39 #: nextend-facebook-connect/admin/templates/settings/general.php:48 #: nextend-facebook-connect/admin/templates/settings/general.php:212 #: nextend-facebook-connect/admin/templates/settings/general.php:227 #: nextend-facebook-connect/admin/templates/settings/general.php:245 #: nextend-facebook-connect/includes/provider-admin.php:217 msgid "Disabled" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88 msgid "Automatic, based on email address" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93 msgid "Disable login for the selected roles" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113 msgid "Default roles for user who registered with this provider" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:99 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:118 #: nextend-facebook-connect/admin/templates/settings/comment.php:39 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105 #: nextend-facebook-connect/admin/templates/settings/userpro.php:51 #: nextend-facebook-connect/admin/templates/settings/userpro.php:102 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180 #: nextend-facebook-connect/widget.php:42 msgid "Default" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50 #: nextend-facebook-connect/includes/userData.php:188 msgid "Register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58 msgid "Login" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66 msgid "Link" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84 msgid "Store in meta key" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:9 msgid "Shortcode" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:12 msgid "Important!" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:13 msgid "The shortcodes are only rendered for users who haven't logged in yet!" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:14 msgid "See the full list of shortcode parameters." msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:31 msgid "Simple link" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:34 msgid "Click here to login or register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:39 msgid "Image button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:42 msgid "Image url" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:7 #: nextend-facebook-connect/admin/templates/header.php:20 msgid "Debug" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:41 msgid "Test network connection with providers" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:48 msgid "You don't have cURL support, please enable it in php.ini!" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:58 #, php-format msgid "Test %1$s connection" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2 msgid "Fix Oauth Redirect URIs" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13 msgid "Every Oauth Redirect URI seems fine" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32 msgid "Got it" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:28 #: nextend-facebook-connect/admin/templates/menu.php:8 msgid "Global Settings" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:31 msgid "General" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:33 msgid "Privacy" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form.php:9 #: nextend-facebook-connect/admin/templates/settings/userpro.php:18 msgid "Login Form" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:39 msgid "Comment" msgstr "" #: nextend-facebook-connect/admin/templates/header.php:14 msgid "Docs" msgstr "" #: nextend-facebook-connect/admin/templates/header.php:17 msgid "Support" msgstr "" #: nextend-facebook-connect/admin/templates/header.php:23 #: nextend-facebook-connect/admin/templates/menu.php:12 msgid "Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/menu.php:6 msgid "Providers" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:13 msgid "Error" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:14 msgid "" "You don’t have sufficient permissions to install and activate plugins. " "Please contact your site’s administrator!" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:22 #: nextend-facebook-connect/admin/templates/pro-addon.php:32 #: nextend-facebook-connect/admin/templates/pro.php:34 msgid "Activate Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:23 msgid "" "Pro Addon is installed but not activated. To be able to use the Pro " "features, you need to activate it." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:37 #: nextend-facebook-connect/admin/templates/pro-addon.php:142 msgid "Deactivate Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:48 #: nextend-facebook-connect/admin/templates/pro.php:43 msgid "Pro Addon is not installed" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:50 msgid "" "To access the Pro features, you need to install and activate the Pro Addon." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:59 #, php-format msgid "Install %s now" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:60 #: nextend-facebook-connect/admin/templates/pro.php:47 msgid "Install Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:94 msgid "Activating..." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:118 msgid "Not compatible!" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:119 #, php-format msgid "" "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or " "newer." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:123 msgid "Update Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:133 msgid "Pro Addon is installed and activated" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:135 msgid "" "You installed and activated the Pro Addon. If you don’t want to use it " "anymore, you can deactivate using the button below." msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:8 msgid "Get Pro Addon to unlock more features" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:9 #, php-format msgid "" "The features below are available in %s Pro Addon. Get it today and tweak the " "awesome settings." msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:10 msgid "" "If you already have a license, you can Authorize your Pro Addon. Otherwise " "you can purchase it using the button below." msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:14 msgid "Buy Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:16 msgid "Authorize Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:25 msgid "Pro Addon is not activated" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:26 #: nextend-facebook-connect/admin/templates/pro.php:44 msgid "" "To be able to use the Pro features, you need to install and activate the " "Nextend Social Connect Pro Addon." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:30 msgid "Not Available" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:33 msgid "Not Configured" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:36 msgid "Not Verified" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:42 #: nextend-facebook-connect/admin/templates/settings/general.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:215 #: nextend-facebook-connect/admin/templates/settings/general.php:230 #: nextend-facebook-connect/admin/templates/settings/general.php:248 #: nextend-facebook-connect/includes/provider-admin.php:220 #: nextend-facebook-connect/providers/google/admin/settings.php:53 #: nextend-social-login-pro/providers/paypal/admin/settings.php:51 msgid "Enabled" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:54 msgid "Upgrade Now" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:69 #: nextend-facebook-connect/includes/provider-admin.php:204 msgid "Verify Settings" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:77 #: nextend-facebook-connect/includes/provider-admin.php:249 msgid "Enable" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:89 #: nextend-facebook-connect/includes/provider-admin.php:257 msgid "Disable" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:114 msgid "Stay Updated" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:115 msgid "" "Receive info on the latest plugin updates and social provider related " "changes." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:116 msgid "Enter your email address" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:120 msgid "Subscribe" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:136 msgid "Saving..." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:137 msgid "Saving failed" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:138 msgid "Order Saved" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "Successfully subscribed!" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "" "We'll be bringing you all the latest news and updates about Social Login - " "right to your inbox." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:214 msgid "The entered email address is invalid!" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:14 msgid "Rate your experience!" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:15 msgid "Hated it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:16 msgid "Disliked it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:17 msgid "It was ok" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:18 msgid "Liked it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:19 msgid "Loved it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:31 msgid "Please Leave a Review" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:32 msgid "" "If you are happy with Nextend Social Login and can take a minute " "please leave us a review. It will be a tremendous help for us!" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:34 msgid "Ok, you deserve it" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96 msgid "Register form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23 msgid "No Connect button" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26 msgid "Connect button before register" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:221 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:226 msgid "Action:" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31 msgid "Connect button before account details" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36 msgid "Connect button after register" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44 msgid "Register button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:105 #: nextend-facebook-connect/admin/templates/settings/comment.php:45 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111 #: nextend-facebook-connect/admin/templates/settings/userpro.php:57 #: nextend-facebook-connect/admin/templates/settings/userpro.php:108 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30 #: nextend-facebook-connect/widget.php:47 msgid "Icon" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:64 msgid "Sidebar Login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:69 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:85 #: nextend-facebook-connect/admin/templates/settings/login-form.php:17 #: nextend-facebook-connect/admin/templates/settings/login-form.php:30 #: nextend-facebook-connect/admin/templates/settings/login-form.php:47 #: nextend-facebook-connect/admin/templates/settings/userpro.php:26 #: nextend-facebook-connect/admin/templates/settings/userpro.php:39 msgid "Hide login buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:72 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88 #: nextend-facebook-connect/admin/templates/settings/login-form.php:14 #: nextend-facebook-connect/admin/templates/settings/login-form.php:27 #: nextend-facebook-connect/admin/templates/settings/login-form.php:44 #: nextend-facebook-connect/admin/templates/settings/userpro.php:23 #: nextend-facebook-connect/admin/templates/settings/userpro.php:36 #: nextend-facebook-connect/widget.php:76 msgid "Show login buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:73 msgid "" "Some themes that use BuddyPress, display the social buttons twice in the " "same login form. This option can disable the one for: " "bp_sidebar_login_form action. " msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:80 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38 msgid "Login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:93 msgid "Login button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:48 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52 #: nextend-facebook-connect/admin/templates/settings/userpro.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58 msgid "Login layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:110 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124 #: nextend-facebook-connect/admin/templates/settings/userpro.php:70 #: nextend-facebook-connect/admin/templates/settings/userpro.php:121 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186 msgid "Below" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:130 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130 #: nextend-facebook-connect/admin/templates/settings/userpro.php:76 #: nextend-facebook-connect/admin/templates/settings/userpro.php:127 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192 msgid "Below with separator" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:136 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136 #: nextend-facebook-connect/admin/templates/settings/userpro.php:82 #: nextend-facebook-connect/admin/templates/settings/userpro.php:133 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198 msgid "Above" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:142 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142 #: nextend-facebook-connect/admin/templates/settings/userpro.php:88 #: nextend-facebook-connect/admin/templates/settings/userpro.php:139 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204 msgid "Above with separator" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:150 #: nextend-facebook-connect/admin/templates/settings/comment.php:53 #: nextend-facebook-connect/admin/templates/settings/login-form.php:53 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:151 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:166 #: nextend-facebook-connect/admin/templates/settings/userpro.php:147 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:233 msgid "Button alignment" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155 #: nextend-facebook-connect/admin/templates/settings/comment.php:58 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140 #: nextend-facebook-connect/admin/templates/settings/login-form.php:58 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:156 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171 #: nextend-facebook-connect/admin/templates/settings/userpro.php:152 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:238 #: nextend-facebook-connect/widget.php:57 msgid "Left" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:158 #: nextend-facebook-connect/admin/templates/settings/comment.php:61 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:143 #: nextend-facebook-connect/admin/templates/settings/login-form.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:159 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:174 #: nextend-facebook-connect/admin/templates/settings/userpro.php:155 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:241 #: nextend-facebook-connect/widget.php:62 msgid "Center" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162 #: nextend-facebook-connect/admin/templates/settings/comment.php:65 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147 #: nextend-facebook-connect/admin/templates/settings/login-form.php:65 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:163 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178 #: nextend-facebook-connect/admin/templates/settings/userpro.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:245 #: nextend-facebook-connect/widget.php:67 msgid "Right" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:18 msgid "Login button" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:23 #: nextend-facebook-connect/admin/templates/settings/privacy.php:42 msgid "Show" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:26 msgid "Hide" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 #, php-format msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Discussion" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Users must be registered and logged in to comment" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:33 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18 msgid "Button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29 msgid "Target window" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34 msgid "Prefer popup" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37 msgid "Prefer new tab" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40 msgid "Prefer same window" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46 msgid "Registration notification sent to" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:242 msgid "WordPress default" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54 msgid "Nobody" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60 msgid "Admin" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63 msgid "User and Admin" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69 msgid "Unlink" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75 msgid "Allow Social account unlink" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81 msgid "Disable Admin bar for roles" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:43 msgid "Debug mode" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:56 msgid "Page for register flow" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:66 #: nextend-facebook-connect/admin/templates/settings/general.php:91 msgid "None" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:74 msgid "" "This setting is used when you request additional data from the users (such " "as email address) and to display the Terms and conditions." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #, php-format msgid "" "%2$s First create a new page and insert the following shortcode: %1$s then " "select this page above" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #: nextend-facebook-connect/admin/templates/settings/general.php:101 msgid "Usage:" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 #, php-format msgid "" "%1$s You won't be able to reach the selected page unless a social login/" "registration happens." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 msgid "Important:" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:80 msgid "OAuth redirect uri proxy page" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:100 msgid "" "You can use this setting when wp-login.php page is not available to handle " "the OAuth flow." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:101 #, php-format msgid "%1$s First create a new page then select this page above." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:108 msgid "Prevent external redirect overrides" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:114 msgid "Disable external redirects" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:121 msgid "Default redirect url" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:134 #: nextend-facebook-connect/admin/templates/settings/general.php:172 msgid "for Login" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:149 #: nextend-facebook-connect/admin/templates/settings/general.php:187 msgid "for Register" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:159 msgid "Fixed redirect url" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:196 msgid "Blacklisted redirects" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:202 msgid "If you want to blacklist redirect url params. One pattern per line." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:207 msgid "Support login restrictions" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:217 #, php-format msgid "Please visit to our %1$s to check what plugins are supported!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:222 msgid "Display avatars in \"All media items\"" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:232 msgid "" "Enabling this option can speed up loading images in Media Library - Grid " "view!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:237 msgid "Membership" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:250 msgid "Allow registration with Social login." msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33 #: nextend-facebook-connect/admin/templates/settings/userpro.php:45 msgid "Login form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66 msgid "Below and floating" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:85 msgid "Embedded Login form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:104 msgid "Embedded Login layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:135 msgid "Embedded login form button alignment" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form.php:22 #: nextend-facebook-connect/includes/userData.php:137 msgid "Registration Form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form.php:36 msgid "Embedded login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69 msgid "Sign Up form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74 msgid "No Connect button in Sign Up form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167 msgid "Connect button on" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84 msgid "Sign Up form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103 msgid "Sign Up layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212 msgid "Account details" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155 msgid "No link buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158 msgid "Link buttons after account details" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:6 #: nextend-facebook-connect/nextend-social-login.php:143 msgid "" "By clicking Register, you accept our Privacy Policy" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:59 msgid "Store" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:65 msgid "First and last name" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:68 msgid "When not enabled, username will be randomly generated." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:78 #: nextend-social-login-pro/class-provider-extension.php:322 msgid "Email" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:81 msgid "When not enabled, email will be empty." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:91 #: nextend-facebook-connect/includes/avatar.php:59 msgid "Avatar" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:102 #: nextend-facebook-connect/includes/provider.php:1066 msgid "Access token" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23 msgid "No Connect button in Login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89 msgid "No Connect button in Register form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99 #: nextend-facebook-connect/admin/templates/settings/userpro.php:96 msgid "Register form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118 #: nextend-facebook-connect/admin/templates/settings/userpro.php:115 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116 msgid "Register layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/userpro.php:31 msgid "Register Form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43 msgid "No Connect button in login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101 msgid "No Connect button in register form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154 msgid "Billing form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159 msgid "No Connect button in billing form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174 msgid "Billing layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217 msgid "No Connect buttons in account details form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:220 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:225 msgid "Link buttons on" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:42 #, php-format msgid "Network connection successful: %1$s" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:49 #, php-format msgid "Network connection failed: %1$s" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:52 msgid "" "Please contact with your hosting provider to resolve the network issue " "between your server and the provider." msgstr "" #: nextend-facebook-connect/includes/avatar.php:60 msgid "Manage Avatar" msgstr "" #: nextend-facebook-connect/includes/avatar.php:61 #, php-format msgid "Avatar (%s)" msgid_plural "Avatar (%s)" msgstr[0] "" msgstr[1] "" #: nextend-facebook-connect/includes/compat-wp-login.php:49 #, php-format msgid "%1$s ‹ %2$s — WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:115 msgid "https://wordpress.org/" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:116 msgid "Powered by WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:260 #, php-format msgctxt "site" msgid "← Back to %s" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:198 msgid "Your configuration needs to be verified" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:199 msgid "" "Before you can start letting your users register with your app it needs to " "be tested. This test makes sure that no users will have troubles with the " "login and registration process.
If you see error message in the popup " "check the copied ID and secret or the app itself. Otherwise your settings " "are fine." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:205 msgid "Please save your changes to verify settings." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:213 msgid "Works Fine" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:227 #, php-format msgid "" "This provider is currently disabled, which means that users can’t register " "or login via their %s account." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:230 #, php-format msgid "" "This provider works fine, but you can test it again. If you don’t want to " "let users register or login with %s anymore you can disable it." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:233 #, php-format msgid "" "This provider is currently enabled, which means that users can register or " "login via their %s account." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:241 msgid "Verify Settings Again" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:242 msgid "Please save your changes before verifying settings." msgstr "" #: nextend-facebook-connect/includes/provider.php:350 #: nextend-facebook-connect/includes/provider.php:693 #: nextend-facebook-connect/includes/provider.php:698 msgid "Authentication successful" msgstr "" #: nextend-facebook-connect/includes/provider.php:635 #: nextend-facebook-connect/includes/user.php:127 msgid "Authentication error" msgstr "" #: nextend-facebook-connect/includes/provider.php:650 msgid "Unlink successful." msgstr "" #: nextend-facebook-connect/includes/provider.php:652 msgid "Unlink is not allowed!" msgstr "" #: nextend-facebook-connect/includes/provider.php:856 #: nextend-facebook-connect/includes/provider.php:863 msgid "The test was successful" msgstr "" #: nextend-facebook-connect/includes/provider.php:909 msgid "Authentication failed" msgstr "" #: nextend-facebook-connect/includes/provider.php:1058 msgid "Identifier" msgstr "" #: nextend-facebook-connect/includes/provider.php:1074 msgid "Profile picture" msgstr "" #: nextend-facebook-connect/includes/user.php:74 #, php-format msgid "" "Your %1$s account is successfully linked with your account. Now you can sign " "in with %2$s easily." msgstr "" #: nextend-facebook-connect/includes/user.php:77 #, php-format msgid "" "You have already linked a(n) %s account. Please unlink the current and then " "you can link other %s account." msgstr "" #: nextend-facebook-connect/includes/user.php:82 #, php-format msgid "This %s account is already linked to other user." msgstr "" #: nextend-facebook-connect/includes/user.php:122 msgid "User registration is currently not allowed." msgstr "" #: nextend-facebook-connect/includes/userData.php:137 msgid "Register For This Site!" msgstr "" #: nextend-facebook-connect/nextend-facebook-connect.php:34 #, php-format msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE." msgstr "" #: nextend-facebook-connect/nextend-facebook-connect.php:41 #, php-format msgid "" "%1$s requires WordPress version %2$s+. Because you are using an earlier " "version, the plugin is currently NOT ACTIVE." msgstr "" #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 #, php-format msgid "Please update %1$s to version %2$s or newer." msgstr "" #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 msgid "Update now!" msgstr "" #: nextend-facebook-connect/nextend-social-login.php:735 #: nextend-facebook-connect/nextend-social-login.php:1111 msgid "Social Login" msgstr "" #: nextend-facebook-connect/nextend-social-login.php:1092 msgid "Social Accounts" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8 #, php-format msgid "Navigate to %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/google/admin/getting-started.php:17 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9 #, php-format msgid "Log in with your %s credentials if you are not logged in" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10 #, php-format msgid "Click on the App with App ID: %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11 msgid "In the left sidebar, click on \"Facebook Login > Settings\"" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36 #, php-format msgid "" "Add the following URL to the \"Valid OAuth redirect URIs\" field: " "%s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13 msgid "Click on \"Save Changes\"" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11 #: nextend-facebook-connect/providers/facebook/admin/settings.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22 #, php-format msgid "" "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in " "order to allow login with %1$s." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13 #: nextend-facebook-connect/providers/facebook/admin/settings.php:15 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24 msgid "How to get SSL for my WordPress site?" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19 #: nextend-facebook-connect/providers/google/admin/getting-started.php:11 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create a %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21 #: nextend-facebook-connect/providers/google/admin/getting-started.php:13 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:32 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:13 #, php-format msgctxt "App creation" msgid "Create %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24 #: nextend-facebook-connect/providers/google/admin/getting-started.php:16 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:16 #, php-format msgid "Navigate to %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26 msgid "Click on the \"Add a New App\" button" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27 msgid "" "If you see the message \"Become a Facebook Developer\", then you need " "to click on the green \"Register Now\" button, fill the form then " "finally verify your account." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28 #, php-format msgid "" "Fill \"Display Name\" and \"Contact Email\". The specified " "\"Display Name\" will appear on your %s!" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29 msgid "" "Click the \"Create App ID\" button and complete the Security Check." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35 #, php-format msgid "" "On the left side, click on the “%1$s” menu point, then click “" "%2$s”." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31 msgid "Enter your domain name to the \"App Domains\" field." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32 #, php-format msgid "" "Enter your domain name to the \"App Domains\" field, probably: %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33 msgid "" "Fill up the \"Privacy Policy URL\" field. Provide a publicly " "available and easily accessible privacy policy that explains what data you " "are collecting and how you will use that data." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34 msgid "" "Select a “Category”, an “App Icon” and pick the “Business " "Use” option that describes your the App best, then press \"Save " "Changes\"." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37 msgid "Click on “Save Changes”" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38 msgid "" "Your application is currently private, which means that only you can log in " "with it. In the top bar click on the switch next to the \"In development\" label, then click the \"Switch Mode\" button." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39 #, php-format msgid "" "Finally on the left side, click on the \"%1$s\" menu point, then " "click \"%2$s\" again. Here you can see your \"APP ID\" and you " "can see your \"App secret\" if you click on the \"Show\" button. " "These will be needed in plugin’s settings." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43 #: nextend-facebook-connect/providers/google/admin/getting-started.php:40 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:30 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:29 #, php-format msgid "I am done setting up my %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:35 #: nextend-social-login-pro/providers/vk/admin/settings.php:27 msgid "App ID" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:36 #: nextend-facebook-connect/providers/facebook/admin/settings.php:48 #: nextend-facebook-connect/providers/google/admin/settings.php:28 #: nextend-facebook-connect/providers/google/admin/settings.php:41 #: nextend-facebook-connect/providers/twitter/admin/settings.php:28 #: nextend-social-login-pro/providers/amazon/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:39 #: nextend-social-login-pro/providers/apple/admin/settings.php:79 #: nextend-social-login-pro/providers/apple/admin/settings.php:90 #: nextend-social-login-pro/providers/apple/admin/settings.php:100 #: nextend-social-login-pro/providers/apple/admin/settings.php:108 #: nextend-social-login-pro/providers/disqus/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39 #: nextend-social-login-pro/providers/paypal/admin/settings.php:27 #: nextend-social-login-pro/providers/paypal/admin/settings.php:39 #: nextend-social-login-pro/providers/vk/admin/settings.php:28 #: nextend-social-login-pro/providers/vk/admin/settings.php:40 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39 msgid "Required" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:41 #: nextend-facebook-connect/providers/google/admin/settings.php:35 #: nextend-facebook-connect/providers/twitter/admin/settings.php:33 #: nextend-social-login-pro/providers/amazon/admin/settings.php:33 #: nextend-social-login-pro/providers/apple/admin/settings.php:34 #: nextend-social-login-pro/providers/apple/admin/settings.php:85 #: nextend-social-login-pro/providers/disqus/admin/settings.php:33 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33 #: nextend-social-login-pro/providers/paypal/admin/settings.php:33 #: nextend-social-login-pro/providers/vk/admin/settings.php:34 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33 #, php-format msgid "" "If you are not sure what is your %1$s, please head over to Getting Started" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:47 msgid "App Secret" msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:79 msgid "Continue with Facebook" msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:80 msgid "Link account with Facebook" msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:81 msgid "Unlink account from Facebook" msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:135 #: nextend-facebook-connect/providers/google/google.php:158 #: nextend-facebook-connect/providers/twitter/twitter.php:95 #: nextend-social-login-pro/providers/amazon/amazon.php:65 #: nextend-social-login-pro/providers/apple/apple.php:71 #: nextend-social-login-pro/providers/apple/apple.php:77 #: nextend-social-login-pro/providers/disqus/disqus.php:112 #: nextend-social-login-pro/providers/linkedin/linkedin.php:63 #: nextend-social-login-pro/providers/paypal/paypal.php:90 #: nextend-social-login-pro/providers/vk/vk.php:61 #: nextend-social-login-pro/providers/wordpress/wordpress.php:99 #: nextend-social-login-pro/providers/yahoo/yahoo.php:90 #, php-format msgid "" "The %1$s entered did not appear to be a valid. Please enter a valid %2$s." msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:253 #: nextend-social-login-pro/providers/paypal/paypal.php:170 #, php-format msgid "Required scope: %1$s" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:2 msgid "Button skin" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:8 msgid "Uniform" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:14 msgid "Light" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:20 msgid "Dark" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10 msgid "Click on the \"Credentials\" in the left hand menu" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11 #, php-format msgid "" "Under the \"OAuth 2.0 Client IDs\" section find your Client ID: " "%s" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/google/admin/getting-started.php:34 #, php-format msgid "" "Add the following URL to the \"Authorised redirect URIs\" field: " "%s" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14 msgid "Click on \"Save\"" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:18 msgid "" "If you don't have a project yet, you'll need to create one. You can do this " "by clicking on the blue \"Create\" button on the right side! ( If " "you already have a project, click on the name of your project in the " "dashboard instead, which will bring up a modal and click \"New Project\". )" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:19 msgid "Name your project and then click on the \"Create\" button again" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:20 msgid "Once you have a project, you'll end up in the dashboard." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:21 msgid "Click the “OAuth consent screen” button on the left hand side." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:22 msgid "" "Choose a User Type according to your needs. If you want to enable the " "social login with Google for any users with a Google account, then pick the " "External option!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:24 #, php-format msgid "" "Note: We don't use sensitive or restricted scopes either. But if you " "will use this App for other purposes too, then you may need to go through an " "%1$s!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:27 msgid "" "Enter a name for your App to the \"Application name\" field, which " "will appear as the name of the app asking for consent." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:28 #, php-format msgid "" "Fill the \"Authorized domains\" field with your domain name probably: " "%s without subdomains!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:29 msgid "Save your settings!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:30 #, php-format msgid "" "On the left side, click on the \"%1$s\" menu point, then click the " "\"%2$s\" button in the top bar." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:31 msgid "Choose the \"OAuth client ID\" option." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:32 msgid "Select the \"Web application\" under Application type." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:33 msgid "Enter \"Name\" that for your OAuth client ID." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:35 msgid "Click on the \"Create\" button" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:36 msgid "" "A modal should pop up with your credentials. If that doesn't happen, go to " "the Credentials in the left hand menu and select your app by clicking on its " "name and you'll be able to copy-paste the \"Client ID\" and " "\"Client Secret\" from there." msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:26 #: nextend-social-login-pro/providers/apple/admin/settings.php:28 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26 #: nextend-social-login-pro/providers/paypal/admin/settings.php:26 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26 msgid "Client ID" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:40 #: nextend-social-login-pro/providers/amazon/admin/settings.php:38 #: nextend-social-login-pro/providers/apple/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38 msgid "Client Secret" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:47 msgid "Select account on each login" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:56 msgid "" "Disable, when you don't want to see the account select prompt on each login." msgstr "" #: nextend-facebook-connect/providers/google/google.php:106 msgid "Continue with Google" msgstr "" #: nextend-facebook-connect/providers/google/google.php:107 msgid "Link account with Google" msgstr "" #: nextend-facebook-connect/providers/google/google.php:108 msgid "Unlink account from Google" msgstr "" #: nextend-facebook-connect/providers/google/google.php:285 #, php-format msgid "Required API: %1$s" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10 msgid "Find your App and click on the \"Details\" button" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11 msgid "" "The Edit button can be found on the App details tab. Click on it and " "select \"Edit details\"" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22 #, php-format msgid "Add the following URL to the \"Callback URLs\" field: %s" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in yet" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18 msgid "" "If you don't have a developer account yet, please apply one by filling all " "the required details! This is required for the next steps!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19 #, php-format msgid "" "Once your developer account is complete, navigate back to %s if you " "aren't already there!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20 #, php-format msgid "" "Fill the App name, Application description fields. Then enter " "your site's URL to the Website URL field: %s" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21 msgid "Tick the checkbox next to Enable Sign in with Twitter!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23 msgid "" "Fill the “Terms of Service URL\", \"Privacy policy URL\" and " "\"Tell us how this app will be used\" fields!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24 msgid "Click the Create button." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25 msgid "Read the Developer Terms and click the Create button again!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26 msgid "Select the Permissions tab and click Edit." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27 msgid "" "Tick the Request email address from users under the Additional " "permissions section and click Save." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28 msgid "" "Go to the Keys and tokens tab and find the API key and API " "secret key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:26 msgid "API Key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:38 msgid "API secret key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:57 msgid "Profile image size" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:71 msgid "Original" msgstr "" #: nextend-facebook-connect/providers/twitter/twitter.php:69 msgid "Continue with Twitter" msgstr "" #: nextend-facebook-connect/providers/twitter/twitter.php:70 msgid "Link account with Twitter" msgstr "" #: nextend-facebook-connect/providers/twitter/twitter.php:71 msgid "Unlink account from Twitter" msgstr "" #: nextend-facebook-connect/widget.php:10 #, php-format msgid "%s Buttons" msgstr "" #: nextend-facebook-connect/widget.php:30 msgid "Title:" msgstr "" #: nextend-facebook-connect/widget.php:38 msgid "Button style:" msgstr "" #: nextend-facebook-connect/widget.php:53 msgid "Button align:" msgstr "" #: nextend-facebook-connect/widget.php:85 msgid "Show link buttons" msgstr "" #: nextend-facebook-connect/widget.php:94 msgid "Show unlink buttons" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:117 msgid "Social login is not allowed with this role!" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:213 #: nextend-social-login-pro/class-provider-extension.php:216 #: nextend-social-login-pro/class-provider-extension.php:222 #: nextend-social-login-pro/class-provider-extension.php:229 #: nextend-social-login-pro/class-provider-extension.php:300 #: nextend-social-login-pro/class-provider-extension.php:303 #: nextend-social-login-pro/class-provider-extension.php:307 msgid "ERROR" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:213 msgid "Please enter a username." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:216 msgid "" "This username is invalid because it uses illegal characters. Please enter a " "valid username." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:222 msgid "This username is already registered. Please choose another one." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:229 msgid "Sorry, that username is not allowed." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:247 msgid "Username" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:300 msgid "Please enter an email address." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:303 msgid "The email address isn’t correct." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:307 msgid "This email is already registered, please choose another one." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:327 msgid "Registration confirmation will be emailed to you." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:378 msgid "ERROR: Please enter a password." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:384 msgid "ERROR: Passwords may not contain the character \"\\\"." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:390 msgid "" "ERROR: Please enter the same password in both password " "fields." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:407 msgid "Password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:417 msgid "Strength indicator" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:422 msgid "Confirm use of weak password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:428 msgid "Confirm password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:440 #, php-format msgid "" "This email is already registered, please login in to your account to link " "with %1$s." msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:54 #, php-format msgid "Please install and activate %1$s to use the %2$s" msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:68 msgid "Network Activate" msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:80 msgid "Install now!" msgstr "" #: nextend-social-login-pro/provider-extensions/facebook.php:74 #, php-format msgid "" "The Facebook Sync data needs an approved %1$s and your App must use the " "latest %2$s version!" msgstr "" #: nextend-social-login-pro/provider-extensions/google.php:176 #, php-format msgid "" "Most of these information can only be retrieved, when the field is marked as " "Public on the user's %s page!" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26 #, php-format msgid "Visit %s" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30 msgid "" "On the right side, under \"Manage\", hover over the gear icon and " "select \"Web Settings\" option." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31 msgid "Click \"Edit\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33 #, php-format msgid "" "Add the following URL to the \"Allowed Return URLs\" field %s " msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27 msgid "" "If you don't have a Security Profile yet, you'll need to create one. You can " "do this by clicking on the orange \"Create a New Security Profile\" " "button on the left side." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28 msgid "" "Fill \"Security Profile Name\", \"Security Profile Description" "\" and \"Consent Privacy Notice URL\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29 msgid "Once you filled all the required fields, click \"Save\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32 #, php-format msgid "" "Fill \"Allowed Origins\" with the url of your homepage, probably: " "%s" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28 msgid "When all fields are filled, click \"Save\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:35 msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" at the " "middle of the page, under the \"Web Settings\" tab." msgstr "" #: nextend-social-login-pro/providers/amazon/amazon.php:39 msgid "Continue with Amazon" msgstr "" #: nextend-social-login-pro/providers/amazon/amazon.php:40 msgid "Link account with Amazon" msgstr "" #: nextend-social-login-pro/providers/amazon/amazon.php:41 msgid "Unlink account from Amazon" msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21 msgid "Click on the name of your service." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22 msgid "" "Click the \"Configure\" button next to \"Sign In with Apple\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53 #, php-format msgid "Click the blue + icon next to %1$s heading." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79 #, php-format msgid "" "Fill the \"Domains and Subdomains\" field with your domain name " "probably: %s" msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:80 #, php-format msgid "Add the following URL to the \"Return URLs\" field: %s" msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:26 msgid "" "Finally press \"Next\" then \"Done\" and finally click on the " "\"Continue\" and the \"Save\" button!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\", \"%3$s\", \"%4$s\" and \"%5$s" "\" according to your %1$s App." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35 msgid "" "Make sure you have an active subscription for the Apple Developer " "Program!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36 msgid "" "Make sure your site have SSL, since Apple only allows HTTPS urls!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:41 msgid "1.) Create the associated App:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the %2$s " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:44 msgid "Enter a \"Description\"" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45 #, php-format msgid "" "At the \"Bundle ID\" field select the \"Explicit\" option and " "enter your domain name in reverse-domain name style, with the name of the " "app at its end: %s.nslapp" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46 msgid "" "Under the \"Capabilities\" section, tick the \"Sign In with Apple\" option." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47 msgid "" "Scroll up and press the \"Continue\" button and then the " "\"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50 msgid "2.) Create the Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:52 #, php-format msgid "On the left hand side, click on the \"%s\" tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:54 msgid "Enter a name in the Key Name field." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55 msgid "" "Tick the \"Sign In with Apple\" option, then click on \"Configure\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56 msgid "" "If you have multiple Apps, then at the \"Choose a Primary App ID\" " "field select the App what you just created, then click \"Save" "\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57 msgid "" "Finally press the \"Continue\" button and then the \"Register" "\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58 msgid "Don't download the key yet!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61 msgid "3.) Create the Service:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:63 #, php-format msgid "" "Go to the \"%1$s\" section, what you will find within the \"%2$s\" " "tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the \"%2$s\" " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:65 msgid "Enter a \"Description\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66 #, php-format msgid "" "At the \"Identifier\" field enter your domain name in reverse-domain " "name style, with the name of the client at its end: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69 msgid "Note: This will also be used as Service Identifier later!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72 msgid "" "Press the \"Continue\" button and then the \"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:73 #, php-format msgid "In the \"%1$s\" section, click the service you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76 msgid "" "Tick the \"Sign In with Apple\" option and click the \"Configure\" button next to it." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:78 msgid "" "If you have multiple Apps, then at the \"Primary App ID\" field select the " "App what you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:83 msgid "" "Save the configuration by clicking on the \"Save\" button and " "pressing \"Done\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:84 msgid "" "Finally press the \"Continue\" button and then the \"Save\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:87 msgid "4.) Configure Nextend Social Login with your credentials:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:89 msgid "Go to Nextend Social Login > Providers > Apple > Settings tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:90 msgid "Private Key ID:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:92 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:110 #, php-format msgid "Navigate to: %s" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:93 msgid "Click on the name of your Key." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:94 msgid "You will find your \"Private Key ID\" under \"Key ID\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:97 msgid "Private Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99 msgid "" "Click the \"Download\" button to download the key file. Once this " "file is downloaded, it will no longer be available, so make sure you keep " "this file safe! " msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:100 msgid "" "Open the downloaded file with a text editor, like Notepad, copy " "all of its contents and paste it into the \"Private Key" "\" field of Nextend Social Login." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:103 msgid "Team Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105 msgid "" "A 10 character long identifier, what you can find on the top-right " "corner, just under your name." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:108 msgid "Service Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111 #, php-format msgid "" "You will find it under the \"IDENTIFIER\" column. If you configured " "the service according to the suggestions, it will probably end to .nslclient " "e.g.: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:114 msgid "" "Once you filled up all the fields, click on the \"Generate Token\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115 msgid "Finally verify the settings and enable the provider!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:116 msgid "" "When you need to change your credentials for some reason, then you must " "delete the token, copy the new credentials and generate a new token!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:48 msgid "Delete credentials" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:78 msgid "Private Key ID" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:89 msgid "Private Key" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:99 msgid "Team Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:107 msgid "Service Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:117 msgid "Generate Token" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:53 msgid "Continue with Apple" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:54 msgid "Link account with Apple" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:55 msgid "Unlink account from Apple" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:107 #: nextend-social-login-pro/providers/apple/apple.php:204 #: nextend-social-login-pro/providers/apple/apple.php:221 #, php-format msgid "Token generation failed: %1$s" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:107 msgid "Please check your credentials!" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:204 msgid "Private key format is not valid!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10 #, php-format msgid "Click on the name of your %s App." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12 msgid "" "Select the \"Settings\" tab and scroll down to the Authentication " "section!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23 #, php-format msgid "Add the following URL to the \"Callback URL\" field %s " msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14 msgid "Click on the \"Save Changes\" button." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17 msgid "" "Click on the \"Registering new application\" button under the " "Applications tab." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18 msgid "Enter a \"Label\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19 #, php-format msgid "" "Fill \"Website\" with the url of your homepage, probably: %s" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20 msgid "" "Complete the Human test and click the \"Register my application\" " "button." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21 #, php-format msgid "Fill the \"Domains\" field with your domain name like: %s" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22 msgid "" "Select \"Read only\" as Default Access under the Authentication " "section." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24 msgid "Click on the \"Save Changes\" button!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25 msgid "Navigate to the \"Details\" tab of your Application!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26 msgid "" "Here you can see your \"API Key\" and \"API Secret\". These " "will be needed in the plugin's settings." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/settings.php:38 msgid "API Secret" msgstr "" #: nextend-social-login-pro/providers/disqus/disqus.php:86 msgid "Continue with Disqus" msgstr "" #: nextend-social-login-pro/providers/disqus/disqus.php:87 msgid "Link account with Disqus" msgstr "" #: nextend-social-login-pro/providers/disqus/disqus.php:88 msgid "Unlink account from Disqus" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10 msgid "Click on your App and go to the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11 #, php-format msgid "Add the following URL to the \"Redirect URLs\" field: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:12 msgid "Click on \"Update\" to save the changes" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17 msgid "Locate the \"Create app\" button and click on it." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18 msgid "Enter the name of your App to the \"App name\" field." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19 #, php-format msgid "" "Find your company page in the \"Company\" field. If you don't have " "one yet, create new one at: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20 msgid "" "Enter your \"Privacy policy URL\" amd upload an \"App logo\"" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21 msgid "" "Read and agree the \"API Terms of Use\" then click the \"Create " "App\" button!" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22 msgid "" "You will end up in the App setting area. Click on the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23 #, php-format msgid "" "Find \"OAuth 2.0 settings\" section and add the following URL to the " "\"Redirect URLs\" field: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25 msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" under " "the Application credentials section, on the Auth tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/linkedin.php:37 msgid "Continue with LinkedIn" msgstr "" #: nextend-social-login-pro/providers/linkedin/linkedin.php:38 msgid "Link account with LinkedIn" msgstr "" #: nextend-social-login-pro/providers/linkedin/linkedin.php:39 msgid "Unlink account from LinkedIn" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18 msgid "There is a Sandbox/Live switch. Make sure \"Live\" is selected!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11 #, php-format msgid "Click on the name of your %s App, under the REST API apps section." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading and click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22 #, php-format msgid "" "Add the following URL to the \"Live Return URL\" field: %s " msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14 msgid "Click on \"Save\"" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15 #, php-format msgid "" "Editing Live Apps are only possible with a %s. So please make sure you own " "one!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19 msgid "Click the \"Create App\" button under the REST API apps section." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20 msgid "" "Fill the \"App Name\" field and click \"Create App\" button." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading then click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23 msgid "" "Scroll down to \"App feature options\" section and tick \"Log In " "with PayPal\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24 msgid "" "Click \"Advanced Options\" which can be found at the end of text " "after \"Connect with PayPal (formerly Log In with PayPal)\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25 msgid "Tick \"Full name\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:26 msgid "" "\"Email address\" now requires an App Review by PayPal. To get the " "email address as well, please submit your App for a review after your " "App configuration is finished. Once the App review is successful, you need " "to pick \"Email address\" here to retrieve the email of the user. Until then " "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27 msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29 msgid "" "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary " "\"Client ID\" and \"Secret\"! ( Make sure you are in " "\"Live\" mode and not \"Sandbox\". )" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:38 msgid "Secret" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:45 msgid "Email scope" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:54 msgid "Disable, when you have no rights for email address." msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:64 msgid "Continue with PayPal" msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:65 msgid "Link account with PayPal" msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:66 msgid "Unlink account from PayPal" msgstr "" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10 msgid "Click on the \"Manage\" button next to the associated App." msgstr "" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11 msgid "Go to the \"Settings\" menu" msgstr "" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12 #, php-format msgid "" "Add the following URL to the \"Authorized redirect URI\" field: " "%s" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17 msgid "Locate the blue \"Create app\" button and click on it." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18 msgid "" "Enter the Title for your App and select \"Website\" as " "platform." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19 #, php-format msgid "" "Fill \"Website address\" with the url of your homepage, probably: " "%s" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20 #, php-format msgid "" "Fill the \"Base domain\" field with your domain, probably: %s" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21 msgid "When all fields are filled, click the \"Upload app\" button." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22 msgid "" "Fill the information form of your app, upload an app icon then " "click Save." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23 msgid "Pick Settings at the left-hand menu " msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24 #, php-format msgid "" "Add the following URL to the \"Authorized redirect URI\" field %s " msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25 msgid "Save your app" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:26 msgid "" "Find the necessary \"App ID\" and \"Secure key\" at the top of " "the Settings page where you just hit the save button." msgstr "" #: nextend-social-login-pro/providers/vk/admin/settings.php:39 msgid "Secure key" msgstr "" #: nextend-social-login-pro/providers/vk/vk.php:35 msgid "Continue with VK" msgstr "" #: nextend-social-login-pro/providers/vk/vk.php:36 msgid "Link account with VK" msgstr "" #: nextend-social-login-pro/providers/vk/vk.php:37 msgid "Unlink account from VK" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12 msgid "Click \"Manage Settings\" under the Tools section!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20 #, php-format msgid "Add the following URL to the \"Redirect URLs\" field %s " msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17 msgid "Click on the \"Create New Application\" button." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18 msgid "Enter a \"Name\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19 #, php-format msgid "" "Fill \"Website URL\" with the url of your homepage, probably: %s" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21 msgid "You can leave the \"Javascript Origins\" field blank!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22 msgid "Complete the human verification test." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23 msgid "At the \"Type\" make sure \"Web\" is selected!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24 msgid "Click the \"Create\" button!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25 msgid "" "Click the name of your App either in the Breadcrumb navigation or " "next to Editing!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26 msgid "" "Here you can see your \"Client ID\" and \"Client Secret\". " "These will be needed in the plugin's settings." msgstr "" #: nextend-social-login-pro/providers/wordpress/wordpress.php:73 msgid "Continue with WordPress.com" msgstr "" #: nextend-social-login-pro/providers/wordpress/wordpress.php:74 msgid "Link account with WordPress.com" msgstr "" #: nextend-social-login-pro/providers/wordpress/wordpress.php:75 msgid "Unlink account from WordPress.com" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10 msgid "Click on the App which has its credentials associated with the plugin." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22 #, php-format msgid "" "Add the following URL to the \"Redirect URI(s)\" field: %s" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18 msgid "Click on the \"Create an App\" button on the top right corner." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19 msgid "" "Fill the \"Application Name\" and select \"Web Application\" " "at \"Application Type\"." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20 msgid "Enter a \"Description\" for your app!" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21 #, php-format msgid "" "Enter the URL of your site to the \"Home Page URL\" field: %s" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23 msgid "" "Under the \"API Permissions\" you should select \"OpenID Connect " "Permissions\" with both \"Email\" and \"Profile\" enabled." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:24 msgid "Click \"Create App\"." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:25 msgid "" "On the top of the page, you will find the necessary \"Client ID\" and " "\"Client Secret\"! These will be needed in the plugin's settings." msgstr "" #: nextend-social-login-pro/providers/yahoo/yahoo.php:64 msgid "Continue with Yahoo" msgstr "" #: nextend-social-login-pro/providers/yahoo/yahoo.php:65 msgid "Link account with Yahoo" msgstr "" #: nextend-social-login-pro/providers/yahoo/yahoo.php:66 msgid "Unlink account from Yahoo" msgstr "" #: nextend-social-login-pro/providers/yahoo/yahoo.php:186 #, php-format msgid "Required permission: %1$s" msgstr "" #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10 #: nextend-social-login-pro/template-parts/login/above-separator.php:20 #: nextend-social-login-pro/template-parts/login/below-separator.php:8 #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10 msgid "OR" msgstr "" #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1 #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1 msgid "Social accounts" msgstr "" languages/nextend-facebook-connect-de_DE.mo000066600000001615152140537230014661 0ustar00,<PQ3TORProject-Id-Version: nextend-facebook-connect PO-Revision-Date: 2020-03-26 11:07+0100 Last-Translator: Language-Team: nextend-facebook-connect Language: de MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 2.2.4 X-Poedit-Basepath: ../.. Plural-Forms: nplurals=2; plural=(n != 1); X-Poedit-SourceCharset: UTF-8 X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e X-Poedit-Flags-xgettext: −−default-domain=nextend-facebook-connect X-Poedit-SearchPath-0: nextend-social-login-pro X-Poedit-SearchPath-1: nextend-facebook-connect ODERlanguages/nextend-facebook-connect-nl_NL.mo000066600000115617152140537230014733 0ustar00d  !$!!9F!]!k!NJ"1"#zm$N$@7%tx%%&z+'a' (t((D(0(O)m) u)))) )))))) ***%3*Y*`* g*r****** +#+!7+<Y++M+3+-%-8- M-Z-i- -- - - -- -e-A.H.h.Fx.!. . ..%/'/8/U/%s/////0 0<0Z0v00"000011 1*121A18V1111$131'2 02 ;2G2O2$k22?2X26.3,e36333 3 344$,4Q4X4N`43444#5$&5K5 _5i5555%55555556%/6U6p6 u6 6v67]77Cn8 8 8 8 888 9 99 9(9.979<9\9!|99!99 :!:&=:d:":: :8:<:97;q; w; ;; ;; ; ;; ; ;j<k<z<<#<<<<<="(=!K=!m=="=*== >> >'> 6>C>S>d>>>>8> >>>? ?,?C?L?lb?>?@'@0F@3w@,@,@=ACAXA gAtA#AA A$AfAIBdBBB BBNBCC 2C@CVC iCwCCC1C!CDD$D>DSDdD jD wD DD D*DDD DDDEE-E @EMEgE vEE EE+EE$F FFFF FFG G $G .G[ysPđܑ  (Fb"ђ/?W n yRG MW3n*Hܔ% > _SiF./3Jc*ٖ 1v0;ocSәLfd( AO`zVS##VNax;>Ej+O7\s]mfR'ZnQ"qFv`*G&(lSXiTb6K}!10M%?9ru/ 7i!@+JY]"2.h?<NsP|[Y$p{UIGPoX  6~p4v|L nkM-r%:2=1;DgblcKagcz Dy9tj>A xQC\5z F[)w Te3w5uyAd,'-eOf_ Rdm)8WHBo&LU=^^(C0.t, B~I@*3J_:k`48W<Z{ qE/H}h$ %1$s ‹ %2$s — WordPress%1$s First create a new page then select this page above.%1$s You won't be able to reach the selected page unless a social login/registration happens.%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in order to allow login with %1$s.%1$s and %2$s are not compatible. Please update %2$s to version %3$s or newer.%1$s collects data when a visitor register, login or link the account with with any of the enabled social provider. It collects the following data: email address, name, social provider identifier and access token. Also it can collect profile picture and more fields with the Pro Addon's sync data feature.%1$s detected that %2$s installed on your site. You must set "Page for register flow" and "OAuth redirect uri proxy page" in %1$s to work properly.%1$s detected that %2$s installed on your site. You need the Pro Addon to display Social Login buttons in %2$s login form!%1$s removes the collected personal data when the user deleted from WordPress.%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE.%1$s requires WordPress version %2$s+. Because you are using an earlier version, the plugin is currently NOT ACTIVE.%1$s stores the personal data on your site and does not share it with anyone except the access token which used for the authenticated communication with the social providers.%1$s use the access token what the social provider gave to communicate with the providers to verify account and securely access personal data.%1$s use the personal data collected by the social providers to create account on your site when the visitor authorize it.%2$s First create a new page and insert the following shortcode: %1$s then select this page above%s Buttons%s detected that your login url changed. You must update the Oauth redirect URIs in the related social applications.%s needs json_decode function.ERROR: Passwords may not contain the character "\".ERROR: Please enter a password.ERROR: Please enter the same password in both password fields.API KeyAPI SecretAPI secret keyAboveAbove with separatorAccess tokenAccount detailsAction:ActivateActivate Pro AddonActivate your Pro AddonActivating...AdminAllow Social account unlinkAllow registration with Social login.AlwaysApp IDApp SecretApp creationCreate %sAsk E-mail on registrationAsk Password on registrationAsk Username on registrationAuthentication errorAuthentication failedAuthentication successfulAuthorize Pro AddonAutomatic, based on email addressAutomatically connect the existing account upon registrationAvatarAvatar (%s)Avatar (%s)Before you can start letting your users register with your app it needs to be tested. This test makes sure that no users will have troubles with the login and registration process.
If you see error message in the popup check the copied ID and secret or the app itself. Otherwise your settings are fine.BelowBelow and floatingBelow with separatorBilling formBilling layoutBlacklisted redirectsButton align:Button alignmentButton skinButton styleButton style:ButtonsBuy Pro AddonBy clicking Register, you accept our Privacy PolicyCenterClick here to login or registerClick on "Save"Click on the App which has its credentials associated with the plugin.Click on the name of your %s App.Client IDClient SecretCommentComplete the human verification test.Confirm passwordConfirm use of weak passwordConnect button after registerConnect button before account detailsConnect button before registerConnect button onContinue with AmazonContinue with DisqusContinue with FacebookContinue with GoogleContinue with LinkedInContinue with PayPalContinue with TwitterContinue with VKContinue with WordPress.comContinue with YahooDarkDeactivate Pro AddonDeactivate completed.DebugDebug modeDefaultDefault buttonDefault redirect urlDefault roles for user who registered with this providerDisableDisable Admin bar for rolesDisable external redirectsDisable login for the selected rolesDisable, when you have no rights for email address.DisabledDiscussionDisliked itDismissDismiss and check Pro AddonDisplay avatars in "All media items"DocsDoes the plugin collect telemetry data, directly or indirectly?Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a third party?Does the plugin share personal data with third partiesDoes the plugin store things in the browser?Does the plugin use personal data collected by others?ERROREmailEmail scopeEmbedded Login form button styleEmbedded Login layoutEmbedded login formEmbedded login form button alignmentEnableEnabledEnabling this option can speed up loading images in Media Library - Grid view!Enter the name of your App to the "App name" field.Enter your email addressErrorEvery Oauth Redirect URI seems fineFallback username prefix on registerFirst and last nameFix ErrorFix Oauth Redirect URIsFix nowFixed redirect urlGeneralGet Pro Addon to unlock more featuresGetting StartedGlobal SettingsGot itHated itHideHide login buttonsHow long we retain your dataHow to get SSL for my WordPress site?I am done setting up my %sIconIcon buttonIdentifierIf you already have a license, you can Authorize your Pro Addon. Otherwise you can purchase it using the button below.If you are happy with Nextend Social Login and can take a minute please leave us a review. It will be a tremendous help for us!If you are not sure what is your %1$s, please head over to Getting StartedIf you don't have a developer account yet, please apply one by filling all the required details! This is required for the next steps!If you want to blacklist redirect url params. One pattern per line.Image buttonImage urlImportant!Important:Install %s nowInstall Pro AddonInstall now!It was okLeftLicense keyLightLiked itLinkLink account with AmazonLink account with DisqusLink account with FacebookLink account with GoogleLink account with LinkedInLink account with PayPalLink account with TwitterLink account with VKLink account with WordPress.comLink account with YahooLink buttons after account detailsLink buttons onLink labelLog in with your %s credentials if you are not logged inLog in with your %s credentials if you are not logged in yetLog in with your %s credentials if you are not logged in.LoginLogin FormLogin buttonLogin button styleLogin formLogin form button styleLogin labelLogin layoutLoved itManage AvatarMembershipMost of these information can only be retrieved, when the field is marked as Public on the user's %s page!Navigate to %sNetwork ActivateNetwork connection failed: %1$sNetwork connection successful: %1$sNeverNever, generate automaticallyNoNo Connect buttonNo Connect button in Login formNo Connect button in Register formNo Connect button in Sign Up formNo Connect button in billing formNo Connect button in login formNo Connect button in register formNo Connect buttons in account details formNo link buttonsNobodyNoneNot AvailableNot ConfiguredNot VerifiedNot compatible!OAuth proxy pageOAuth redirect uri proxy pageOROauth Redirect URIOk, you deserve itOnce you have a project, you'll end up in the dashboard.Order SavedOriginalOther settingsOverride global "%1$s"PRO settingsPage for register flowPasswordPlease Leave a ReviewPlease contact with your hosting provider to resolve the network issue between your server and the provider.Please contact your server administrator and ask for solution!Please enter a username.Please enter an email address.Please install and activate %1$s to use the %2$sPlease save your changes before verifying settings.Please save your changes to verify settings.Please update %1$s to version %2$s or newer.Please visit to our %1$s to check what plugins are supported!Powered by WordPressPrefer new tabPrefer popupPrefer same windowPrevent external redirect overridesPrivacyPro AddonPro Addon is installed and activatedPro Addon is installed but not activated. To be able to use the Pro features, you need to activate it.Pro Addon is not activatedPro Addon is not installedProfile image sizeProfile pictureProvidersRate your experience!Receive info on the latest plugin updates and social provider related changes.RegisterRegister For This Site!Register FormRegister button styleRegister flow pageRegister formRegister form button styleRegister layoutRegistration FormRegistration confirmation will be emailed to you.Registration notification sent toRequiredRequired API: %1$sRequired permission: %1$sRequired scope: %1$sReset to defaultRightSave ChangesSaving failedSaving...SecretSecure keySee the full list of shortcode parameters.SettingsSettings saved.ShortcodeShowShow link buttonsShow login buttonsShow unlink buttonsSidebar Login formSign Up formSign Up form button styleSign Up layoutSimple linkSocial AccountsSocial LoginSocial accountsSocial login is not allowed with this role!Some themes that use BuddyPress, display the social buttons twice in the same login form. This option can disable the one for: bp_sidebar_login_form action. Sorry, that username is not allowed.Stay UpdatedStoreStore in meta keyStrength indicatorSubscribeSuccessfully subscribed!SupportSupport login restrictionsSync dataTarget windowTerms and conditionsTest %1$s connectionTest network connection with providersThe %1$s entered did not appear to be a valid. Please enter a valid %2$s.The Facebook Sync data needs an approved %1$s and your App must use the latest %2$s version!The activation was successfulThe email address isn’t correct.The entered email address is invalid!The features below are available in %s Pro Addon. Get it today and tweak the awesome settings.The shortcodes are only rendered for users who haven't logged in yet!The test was successfulThis %s account is already linked to other user.This email is already registered, please choose another one.This email is already registered, please login in to your account to link with %1$s.This provider is currently disabled, which means that users can’t register or login via their %s account.This provider is currently enabled, which means that users can register or login via their %s account.This provider works fine, but you can test it again. If you don’t want to let users register or login with %s anymore you can disable it.This setting is used when you request additional data from the users (such as email address) and to display the Terms and conditions.This username is already registered. Please choose another one.This username is invalid because it uses illegal characters. Please enter a valid username.Title:To access the Pro features, you need to install and activate the Pro Addon.To allow your visitors to log in with their %1$s account, first you must create a %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.To allow your visitors to log in with their %1$s account, first you must create an %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.To be able to use the Pro features, you need to activate Nextend Social Connect Pro Addon. You can do this by clicking on the Activate button below then select the related purchase.To be able to use the Pro features, you need to install and activate the Nextend Social Connect Pro Addon.Unexpected response: %sUniformUnlinkUnlink account from AmazonUnlink account from DisqusUnlink account from FacebookUnlink account from GoogleUnlink account from LinkedInUnlink account from PayPalUnlink account from TwitterUnlink account from VKUnlink account from WordPress.comUnlink account from YahooUnlink is not allowed!Unlink labelUnlink successful.Update Pro AddonUpdate now!Upgrade NowUsageUsage:Use custom buttonUse the %s in your custom button's code to make the label show up.Used when username is invalid or not storedUserUser and AdminUser registration is currently not allowed.UsernameUsername prefix on registerUsers must be registered and logged in to commentVerify SettingsVerify Settings AgainVisit %sWe'll be bringing you all the latest news and updates about Social Login - right to your inbox.What personal data we collect and why we collect itWhen email is not provided or emptyWhen not enabled, email will be empty.When not enabled, username will be randomly generated.When username is empty or invalidWho we share your data withWordPress defaultWorks FineYes, %1$s must create a cookie for visitors who use the social login authorization flow. This cookie required for every provider to secure the communication and to redirect the user back to the last location.You can leave the "Javascript Origins" field blank!You can use this setting when wp-login.php page is not available to handle the OAuth flow.You don't have cURL support, please enable it in php.ini!You don’t have sufficient permissions to install and activate plugins. Please contact your site’s administrator!You have already linked a(n) %s account. Please unlink the current and then you can link other %s account.You have logged in successfully.You installed and activated the Pro Addon. If you don’t want to use it anymore, you can deactivate using the button below.You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to workYour %1$s account is successfully linked with your account. Now you can sign in with %2$s easily.Your configuration needs to be verifiedfor Loginfor Registerhttps://wordpress.org/site← Back to %sProject-Id-Version: nextend-facebook-connect PO-Revision-Date: 2020-03-26 11:08+0100 Last-Translator: Erik Molenaar Language-Team: nextend-facebook-connect Language: nl_NL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 2.2.4 X-Poedit-Basepath: ../.. Plural-Forms: nplurals=2; plural=(n != 1); X-Poedit-SourceCharset: UTF-8 X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e X-Poedit-Flags-xgettext: −−default-domain=nextend-facebook-connect X-Poedit-SearchPath-0: nextend-social-login-pro X-Poedit-SearchPath-1: nextend-facebook-connect %1$s ‹ %2$s — WordPress%1$s Maak eerst een nieuwe pagina aan en selecteer dan deze pagina hierboven.%1$s Je kunt de geselecteerde pagina niet bereiken tenzij er een social login/registratie plaatsvindt.%1$s staat alleen HTTPS OAuth Omleidingen toe. Je moet je site verplaatsen naar HTTPS om in te kunnen loggen met %1$s.%1$s en %2$s zijn niet compatibel. Gelieve %2$s bij te werken naar versie %3$s of nieuwer.%1$s verzamelt gegevens wanneer een bezoeker zich registreert, zich aanmeldt of het account koppelt aan een van de ingeschakelde social providers. Het verzamelt de volgende gegevens: e-mailadres, naam, social provider ID en toegangstoken. Ook kan het de profielfoto en meer velden verzamelen met de synchronisatiegegevensfunctie van de Pro-uitbreiding.%1$s gedetecteerd dat %2$s op je site heeft geïnstalleerd. Je moet "Pagina voor registreerproces" en "OAuth-omleidingspagina voor uri-proxy" instellen om %1$s correct te laten werken.%1$s gedetecteerd dat %2$s op je site heeft geïnstalleerd. Je hebt de Pro Add-on nodig om Social Login-knoppen weer te geven in het %2$s aanmeldingsformulier!%1$s verwijdert de verzamelde persoonlijke gegevens wanneer de gebruiker deze heeft verwijderd uit WordPress.%1$s vereist PHP versie %2$s+, plugin is momenteel NIET ACTIEF.%1$s vereist WordPress versie %2$s+. Omdat je een eerdere versie gebruikt, is de plugin momenteel NIET ACTIEF.%1$s slaat de persoonlijke gegevens op je site op en deelt deze met niemand behalve het toegangstoken dat werd gebruikt voor de geverifieerde communicatie met de social providers.%1$s gebruiken het toegangstoken dat de social provider heeft gegeven om met de providers te communiceren om het account te verifiëren en veilig toegang te krijgen tot persoonlijke gegevens.%1$s gebruiken de persoonlijke gegevens die door de social providers zijn verzameld om een account op je site te maken wanneer de bezoeker deze autoriseert.%2$s Maak eerst een nieuwe pagina aan en voeg de volgende shortcode toe: %1$s en selecteer dan deze pagina hierboven%s Knoppen%s detecteert dat je inlog-URL is gewijzigd. Je moet de Oauth-omleidings-URI's bijwerken in de bijbehorende social applicatie.%s heeft de functie json_decode nodig.FOUT: Wachtwoorden mogen niet het teken "\" bevatten.FOUT: Voer een wachtwoord in.FOUT: Voer hetzelfde wachtwoord in beide wachtwoordvelden in.API SleutelAPI GeheimAPI geheime sleutelBovenHierboven met separatorToegangstokenAccountgegevensActie:ActiverenActiveren Pro-uitbreidingActiveer je Pro Add-onActiveren...BeheerderSta ontkoppelen Social account toeRegistratie toestaan met Social login.AltijdApp IDApp GeheimMaak %sVraag E-mail bij inschrijvingVraag Wachtwoord bij registratieVraag Gebruikersnaam bij registratieAuthenticatiefoutAuthenticatie misluktAuthenticatie geslaagdMachtigen Pro-uitbreidingAutomatisch, op basis van e-mailadresVerbind het bestaande account automatisch bij registratieProfielfotoProfielfoto (%s)Profielfoto (%s)Voordat je kunt beginnen met het registreren van je gebruikers bij je app moet het eerst getest worden. Deze test zorgt ervoor dat geen enkele gebruiker problemen heeft met het inlog- en registratieproces.
Als je een foutmelding ziet in de popup, controleer dan de gekopieerde ID en het geheim of de app zelf. Anders zijn je instellingen in orde.OnderstaandOnder en zwevendHieronder met separatorFactureringsformulierFacturering layoutZwarte lijst van omleidingenKnop uitlijning:Knoppen uitlijningKnop skinKnop stijlKnop stijl:KnoppenKoop Pro-uitbreidingDoor op Registreren te klikken, accepteer je onze PrivacybeleidMiddenKlik hier om in te loggen of te registrerenKlik op "Opslaan"Klik op de App met de inloggegevens die aan de plugin zijn gekoppeld.Klik op de naam van je %s App.Client IDClient GeheimReactieVoltooi de menselijke verificatietest.Bevestig wachtwoordBevestig het gebruik van een zwak wachtwoordVerbindingsknop na registratieVerbindingsknop voor account detailsVerbindingsknop voor registratieVerbindingsknop opDoorgaan met AmazoniëDoorgaan met DisqusDoorgaan met FacebookDoorgaan met GoogleDoorgaan met LinkedInDoorgaan met PayPalDoorgaan met TwitterDoorgaan met VKDoorgaan met WordPress.comDoorgaan met YahooDonkerDeactiveren Pro-uitbreidingDeactiveren voltooid.DebugDebugmodusStandaardStandaard knopStandaard omleidings-URLStandaardrollen voor gebruiker die zich bij deze provider heeft geregistreerdUitschakelenAdminbalk voor rollen uitschakelenExterne omleidingen uitschakelenLogin voor de geselecteerde rollen uitschakelenUitschakelen, wanneer je geen rechten hebt voor e-mailadres.UitgeschakeldDiscussieNiet zo leukSluitenSluiten en vink Pro-uitbreiding aanWeergeven profielfoto's in "Alle media-items"DocumentatieVerzamelt de plug-in telemetriegegevens, direct of indirect?Voegt de plug-in JavaScript, trackingpixels of ingesloten iframes toe van een derde partij?Deelt de plug-in persoonlijke gegevens met derdenSlaat de plugin dingen op in de browser?Gebruikt de plugin persoonlijke gegevens die door anderen zijn verzameld?FOUTE-mailE-mail scopeGeïntegreerd Loginformulier knopstijlGeïntegreerd Login layoutGeïntegreerd inlogformulierGeïntegreerd inlogformulier knopuitlijningInschakelenIngeschakeldDoor deze optie in te schakelen kan het laden van afbeeldingen in de mediabibliotheek worden versneld - Rasterweergave!Voer de naam van je App in het veld "App name" in.Vul je e-mailadres inFoutElke Oauth Omleidings-URI lijkt in ordeTerugval gebruikersnaam prefix bij registratieVoor- en achternaamFout OplossenFix Oauth Omleidings-URI'sNu makenVaste omleidings-URLAlgemeenKoop Pro-uitbreiding om meer functies te ontgrendelenAan de SlagAlgemene InstellingenOkéHaatte hetVerbergInlogknoppen verbergenHoe lang wij je gegevens bewarenHoe krijg ik SSL voor mijn WordPress site?Ik ben klaar met het instellen van mijn %sIcoonPictogram knopIdentificatieAls je al een licentie hebt, kunt je je Pro-uitbreiding autoriseren. Anders kun je deze kopen met onderstaande knop.Als je tevreden bent met Nextend Social Login en je hebt een minuutje de tijd, laat dan een beoordeling achter. Je helpt ons daar enorm mee!Als je niet zeker weet wat je %1$s is, ga dan naar Aan de slagAls je nog geen ontwikkelaarsaccount heeft, kun je je aanmelden door alle benodigde gegevens in te vullen! Dit is vereist voor de volgende stappen!Als je omleidings-URL parameters op de zwarte lijst wilt zetten. Eén patroon per regel.Knop afbeeldingURL afbeeldingBelangrijk!Let op:Installeer %s nuInstalleer Pro-uitbreidingInstalleer nu!Het was okéLinksLicentiesleutelLichtVond het leukKoppelKoppel met AmazonKoppel met DisqusKoppel met FacebookKoppel met GoogleKoppel met LinkedInKoppel met PayPalKoppel met TwitterKoppel met VKKoppel met WordPress.comKoppel met YahooKoppelknoppen na accountgegevensKoppelknoppen opKoppel labelLog in met je %s inloggegevens als je niet ingelogd bentLog in met je %s inloggegevens als je nog niet ingelogd bentLog in met je %s inloggegevens als je niet ingelogd bent.InloggenLoginformulierLoginknopInlogknop stijlLogin formulierAanmeldingsformulier knopstijlLogin labelInlog-layoutVond het geweldigProfielfoto beherenLidmaatschapDe meeste van deze informatie kan alleen worden opgehaald, wanneer het veld als openbaar is gemarkeerd op de %s pagina van de gebruiker!Navigeer naar %sNetwerk ActiverenNetwerkverbinding mislukt: %1$sNetwerkverbinding succesvol: %1$sNooitNooit, automatisch genererenNeeGeen VerbindingsknopGeen Verbindingsknop in inlogformulierGeen Verbindingsknop in het RegistratieformulierGeen Verbindingsknop in het aanmeldingsformulierGeen Verbindingsknop in het factureringsformulierGeen Verbindingsknop in inlogformulierGeen Verbindingsknop in registratieformulierGeen Verbindingsknop in het accountgegevens formulierGeen koppelknoppenNiemandGeenNiet BeschikbaarNiet GeconfigureerdNiet GeverifieerdNiet compatibel!OAuth-proxy-paginaOAuth omleidings-uri proxy paginaOFOauth Omleidings-URIOk, je verdient hetAls je eenmaal een project hebt, kom je in het dashboard terecht.Bestelling OpgeslagenOrigineelOverige instellingenOverschrijd globale "%1$s"PRO-instellingenPagina voor registreerprocesWachtwoordLaat alsjeblieft een recensie achterNeem contact op met je hostingprovider om het netwerkprobleem tussen je server en de provider op te lossen.Neem contact op met je serverbeheerder en vraag om een oplossing!Vul gebruikersnaam in.Gelieve een emailadres op te geven.Installeer en activeer %1$s om de %2$s te gebruikenSla je wijzigingen op voordat je de instellingen controleert.Sla je wijzigingen op om de instellingen te controleren.Gelieve %1$s bij te werken naar versie %2$s of nieuwer.Bezoek onze %1$s om te controleren welke plugins worden ondersteund!Mogelijk gemaakt door WordPressBij voorkeur nieuw tabbladBij voorkeur popupBij voorkeur hetzelfde vensterVoorkom overschrijvingen bij externe omleidingenPrivacyPro-uitbreidingPro-uitbreiding is geïnstalleerd en geactiveerdPro-uitbreiding is geïnstalleerd maar niet geactiveerd. Om de Pro-functies te kunnen gebruiken, moet je deze activeren.Pro-uitbreiding is niet geactiveerdPro-uitbreiding is niet geïnstalleerdProfielafbeelding grootteProfielfotoProvidersBeoordeel je ervaring!Ontvang informatie over de laatste plugin-updates en wijzigingen bij social providers.RegistrerenRegistreer Voor Deze Site!RegistratieformulierRegistreerknop-stijlRegistreerproces-paginaRegistratieformulierRegistratieformulier knopstijlRegistratie layoutRegistratieformulierEen bevestiging van de registratie wordt naar je gemaild.Registratie notificatie verzonden naarVerplichtVereiste API: %1$sVereiste toestemming: %1$sVereiste scope: %1$sReset naar standaardRechtsWijzigingen OpslaanOpslaan misluktOpslaan…GeheimBeveiligde sleutelZie de volledige lijst met shortcode-parameters.InstellingenInstellingen opgeslagen.ShortcodeToonToon koppel-knoppenInlogknoppen tonenToon ontkoppel-knoppenSidebar Login formulierAanmeldingsformulierAanmeldingsformulier knopstijlAanmelding layoutEenvoudige linkSocial AccountsSocial LoginSocial accountsSocial login is niet toegestaan bij deze rol!Sommige thema's die gebruik maken van BuddyPress, tonen de social knoppen twee keer in hetzelfde inlogformulier. Deze optie kan die voor: bp_sidebar_login_form action uitschakelen. Sorry, deze gebruikersnaam is niet toegestaan.Blijf op de HoogteWinkelBewaren in metasleutelSterkte-indicatorInschrijvenSuccesvol ingeschreven!OndersteuningOndersteunende inlog-beperkingenGegevens synchroniserenDoelvensterAlgemene voorwaardenTest %1$s connectieTest de netwerkverbinding met providersHet ingevoerde %1$s bleek niet geldig te zijn. Vul een geldig %2$s in.De Facebook Sync data heeft een goedgekeurd %1$s nodig en je App moet de laatste %2$s versie gebruiken!De activering was succesvolHet e-mailadres is niet juist.Het ingevoerde e-mailadres is ongeldig!De onderstaande functies zijn beschikbaar in %s Pro-uitbreiding. Koop deze vandaag nog en pas deze geweldige instellingen aan.De shortcodes worden alleen weergegeven voor gebruikers die nog niet ingelogd zijn!De test was succesvolDit %s account is al gekoppeld aan een andere gebruiker.Dit e-mailadres is al geregistreerd. Kies een andere.Dit e-mailadres is al geregistreerd, log in op je account om te koppelen met %1$s.Deze provider is momenteel uitgeschakeld, wat betekent dat gebruikers zich niet kunnen registreren of inloggen via hun %s account.Deze provider is momenteel ingeschakeld, wat betekent dat gebruikers zich kunnen registreren of inloggen via hun %s account.Deze provider werkt prima, maar je kunt deze opnieuw testen. Als je gebruikers niet meer wilt laten registreren of inloggen met %s kun je deze uitschakelen.Deze instelling wordt gebruikt wanneer je gebruikers om aanvullende gegevens vraagt (zoals het e-mailadres) en om de algemene voorwaarden weer te geven.Deze gebruikersnaam is al in gebruik. Kies een andere.Deze gebruikersnaam is ongeldig omdat hij illegale tekens gebruikt. Vul een geldige gebruikersnaam in.Titel:Om toegang te krijgen tot de Pro-functies moet je de Pro-uitbreiding installeren en activeren.Om je bezoekers in te laten loggen met hun %1$s account, moet je eerst een %1$s App aanmaken. De volgende gids helpt je door het %1$s App creatieproces. Nadat je je %1$s App heeft aangemaakt, ga je naar "Instellingen" en configureer je de gegeven "%2$s" en "%3$s" volgens je %1$s App.Om je bezoekers in te laten loggen met hun %1$s account, moet je eerst een %1$s App aanmaken. De volgende gids helpt je door het %1$s App creatieproces. Nadat je je %1$s App heeft aangemaakt, ga je naar "Instellingen" en configureer je de gegevens "%2$s" en "%3$s" volgens je %1$s App.Om de Pro-functies te kunnen gebruiken, moet je Nextend Social Connect Pro-uitbreiding activeren. Je kunt dit doen door hieronder op de knop Activeren te klikken en vervolgens de bijbehorende aankoop te selecteren.Om de Pro-functies te kunnen gebruiken, moet je de Nextend Social Connect Pro-uitbreiding installeren en activeren.Onverwachte reactie: %sUniformOntkoppelenOntkoppel van AmazonOntkoppel van DisqusOntkoppel van FacebookOntkoppel van GoogleOntkoppel van LinkedInOntkoppel van PayPalOntkoppel van TwitterOntkoppel van VKOntkoppel van WordPress.comOntkoppel van YahooOntkoppelen is niet toegestaan!Ontkoppel labelOntkoppeling succesvol.Update Pro-uitbreidingUpdate nu!Nu BijwerkenGebruikGebruik:Gebruik de aangepaste knopGebruik de %s in de code van je aangepaste knop om het label te laten verschijnen.Wordt gebruikt wanneer gebruikersnaam ongeldig is of niet is opgeslagenGebruikerGebruiker en BeheerderGebruikersregistratie is momenteel niet toegestaan.GebruikersnaamVoorvoegsel gebruikersnaam bij registratieJe moet geregistreerd en ingelogd zijn om een reactie te kunnen plaatsenInstellingen ControlerenControleer Instellingen NogmaalsBezoek %sWe brengen je het laatste nieuws en updates over Social Login - direct in je inbox.Welke persoonlijke gegevens we verzamelen en waarom we deze verzamelenWanneer e-mail niet wordt verstrekt of leeg isIndien niet ingeschakeld, zal e-mail leeg zijn.Indien niet ingeschakeld, wordt de gebruikersnaam willekeurig gegenereerd.Wanneer gebruikersnaam leeg of ongeldig isMet wie we je gegevens delenWordPress standaardWerkt PrimaJa, %1$s moet een cookie maken voor bezoekers die gebruikmaken van het Social Login autorisatieproces. Deze cookie is vereist voor elke provider om de communicatie te beveiligen en de gebruiker om te leiden naar de laatste locatie.Je kunt het veld "Javascript Origins" leeg laten!Je kunt deze instelling gebruiken wanneer de wp-login.php pagina niet beschikbaar is om het OAuth-proces te verwerken.Je hebt geen cURL-ondersteuning, schakel dit in in php.ini!Je hebt niet voldoende rechten om plugins te installeren en te activeren. Neem contact op met de sitebeheerder!Je hebt al een %s account gekoppeld. Ontkoppel de huidige en dan kun je andere %s account koppelen.Je bent succesvol ingelogd.Je hebt de Pro-uitbreiding geïnstalleerd en geactiveerd. Als je deze niet meer wilt gebruiken, kun je deze uitschakelen met de onderstaande knop.Je moet de ' %1$s > %2$s > %3$s ' aanzetten om deze functie te laten werkenJe %1$s account is succesvol gekoppeld aan je account. Je kunt je nu gemakkelijk aanmelden met %2$s.Je configuratie moet worden geverifieerdvoor Inloggenvoor Registrerenhttps://nl.wordpress.org/← Terug naar %slanguages/nextend-facebook-connect-es_LA.po000066600000464422152140537230014720 0ustar00msgid "" msgstr "" "Project-Id-Version: nextend-facebook-connect\n" "POT-Creation-Date: 2020-03-26 11:07+0100\n" "PO-Revision-Date: 2020-03-26 11:07+0100\n" "Last-Translator: Gabriel Vilaró \n" "Language-Team: nextend-facebook-connect\n" "Language: es_419\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.2.4\n" "X-Poedit-Basepath: ../..\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n" "X-Poedit-Flags-xgettext: −−default-domain=nextend-facebook-connect\n" "X-Poedit-SearchPath-0: nextend-social-login-pro\n" "X-Poedit-SearchPath-1: nextend-facebook-connect\n" #: nextend-facebook-connect/NSL/GDPR.php:34 msgid "What personal data we collect and why we collect it" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:35 #, php-format msgid "" "%1$s collects data when a visitor register, login or link the account with " "with any of the enabled social provider. It collects the following data: " "email address, name, social provider identifier and access token. Also it " "can collect profile picture and more fields with the Pro Addon's sync data " "feature." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:37 msgid "Who we share your data with" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:38 #, php-format msgid "" "%1$s stores the personal data on your site and does not share it with anyone " "except the access token which used for the authenticated communication with " "the social providers." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:40 msgid "Does the plugin share personal data with third parties" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:41 #, php-format msgid "" "%1$s use the access token what the social provider gave to communicate with " "the providers to verify account and securely access personal data." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:43 msgid "How long we retain your data" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:44 #, php-format msgid "" "%1$s removes the collected personal data when the user deleted from " "WordPress." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:46 msgid "Does the plugin use personal data collected by others?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:47 #, php-format msgid "" "%1$s use the personal data collected by the social providers to create " "account on your site when the visitor authorize it." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:49 msgid "Does the plugin store things in the browser?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:50 #, php-format msgid "" "Yes, %1$s must create a cookie for visitors who use the social login " "authorization flow. This cookie required for every provider to secure the " "communication and to redirect the user back to the last location." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:52 msgid "Does the plugin collect telemetry data, directly or indirectly?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:53 #: nextend-facebook-connect/NSL/GDPR.php:56 msgid "No" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:55 msgid "" "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a " "third party?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:99 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57 msgid "User" msgstr "Usario" #: nextend-facebook-connect/admin/admin.php:203 #, php-format msgid "%s needs json_decode function." msgstr "%s necesita la función json_decode." #: nextend-facebook-connect/admin/admin.php:203 msgid "Please contact your server administrator and ask for solution!" msgstr "" "¡Por favor, ponte en contacto con el administrador de tu servidor y solicita " "una solución!" #: nextend-facebook-connect/admin/admin.php:235 #: nextend-facebook-connect/admin/admin.php:265 msgid "Settings saved." msgstr "Ajustes guardados." #: nextend-facebook-connect/admin/admin.php:244 #, fuzzy #| msgid "The authorization was successful" msgid "The activation was successful" msgstr "La autorización fue exitosa" #: nextend-facebook-connect/admin/admin.php:255 #, fuzzy #| msgid "Deauthorize completed." msgid "Deactivate completed." msgstr "Desautorizar completado." #: nextend-facebook-connect/admin/admin.php:433 #: nextend-facebook-connect/admin/templates-provider/menu.php:15 #: nextend-facebook-connect/admin/templates/providers.php:81 #: nextend-facebook-connect/admin/templates/providers.php:93 #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Settings" msgstr "Ajustes" #: nextend-facebook-connect/admin/admin.php:516 #: nextend-facebook-connect/includes/oauth2.php:141 #: nextend-facebook-connect/includes/oauth2.php:286 #: nextend-facebook-connect/providers/facebook/facebook-client.php:84 #: nextend-facebook-connect/providers/twitter/twitter-client.php:165 #: nextend-social-login-pro/providers/apple/apple-client.php:87 #, php-format msgid "Unexpected response: %s" msgstr "Respuesta inesperada: %s" #: nextend-facebook-connect/admin/admin.php:577 #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21 #, php-format msgid "" "%s detected that your login url changed. You must update the Oauth redirect " "URIs in the related social applications." msgstr "" "%s detectó que tu URL de inicio de sesión cambió. Debes actualizar los URI " "de redireccionamiento de Oauth en las aplicaciones sociales relacionadas." #: nextend-facebook-connect/admin/admin.php:578 msgid "Fix Error" msgstr "Arreglar Error" #: nextend-facebook-connect/admin/admin.php:578 msgid "Oauth Redirect URI" msgstr "URI de redireccionamiento de Oauth" #: nextend-facebook-connect/admin/admin.php:588 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You need the Pro Addon to " "display Social Login buttons in %2$s login form!" msgstr "" "%1$s detectó que %2$s está instalado en tu sitio. ¡Necesitas el Pro Addon " "para mostrar los botones de Social Login en el formulario de acceso de %2$s!" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss and check Pro Addon" msgstr "Descartar y verificar Pro Addon" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss" msgstr "Descartar" #: nextend-facebook-connect/admin/admin.php:595 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You must set \"Page for " "register flow\" and \"OAuth redirect uri proxy page\" in %1$s to " "work properly." msgstr "" #: nextend-facebook-connect/admin/admin.php:596 #, fuzzy #| msgid "Fix Error" msgid "Fix now" msgstr "Arreglar Error" #: nextend-facebook-connect/admin/admin.php:620 #, fuzzy #| msgid "Activate Pro Addon" msgid "Activate your Pro Addon" msgstr "Activar Pro Addon" #: nextend-facebook-connect/admin/admin.php:621 #, fuzzy #| msgid "" #| "To be able to use the Pro features, you need to authorize Nextend Social " #| "Connect Pro Addon. You can do this by clicking on the Authorize button " #| "below then select the related purchase." msgid "" "To be able to use the Pro features, you need to activate Nextend Social " "Connect Pro Addon. You can do this by clicking on the Activate button below " "then select the related purchase." msgstr "" "Para poder usar las funciones Pro, debes autorizar Nextend Social Connect " "Pro Addon. Puedes hacer esto haciendo clic en el botón Autorizar a " "continuación y luego seleccionar la compra relacionada." #: nextend-facebook-connect/admin/admin.php:626 #: nextend-social-login-pro/nextend-social-login-pro.php:60 msgid "Activate" msgstr "Activar" #: nextend-facebook-connect/admin/admin.php:724 msgid "License key" msgstr "Clave de licencia" #: nextend-facebook-connect/admin/admin.php:747 msgid "OAuth proxy page" msgstr "" #: nextend-facebook-connect/admin/admin.php:750 #, fuzzy #| msgid "Register layout" msgid "Register flow page" msgstr "Diseño de Registro" #: nextend-facebook-connect/admin/interim.php:12 #: nextend-facebook-connect/admin/interim.php:23 msgid "You have logged in successfully." msgstr "Has ingresado exitosamente." #: nextend-facebook-connect/admin/templates-provider/buttons.php:79 msgid "Login label" msgstr "Etiqueta de acceso" #: nextend-facebook-connect/admin/templates-provider/buttons.php:84 #: nextend-facebook-connect/admin/templates-provider/buttons.php:95 #: nextend-facebook-connect/admin/templates-provider/buttons.php:106 #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #: nextend-facebook-connect/admin/templates-provider/buttons.php:165 #: nextend-facebook-connect/admin/templates/settings/privacy.php:53 msgid "Reset to default" msgstr "Restablecer los valores predeterminados" #: nextend-facebook-connect/admin/templates-provider/buttons.php:89 msgid "Link label" msgstr "Etiqueta de enlace" #: nextend-facebook-connect/admin/templates-provider/buttons.php:101 msgid "Unlink label" msgstr "Etiqueta de desenlazar" #: nextend-facebook-connect/admin/templates-provider/buttons.php:112 msgid "Default button" msgstr "Botón predeterminado" #: nextend-facebook-connect/admin/templates-provider/buttons.php:128 #: nextend-facebook-connect/admin/templates-provider/buttons.php:158 msgid "Use custom button" msgstr "Usa botón personalizado" #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #, php-format msgid "Use the %s in your custom button's code to make the label show up." msgstr "" "Use el %s en el código de tu botón personalizado para que aparezca la " "etiqueta." #: nextend-facebook-connect/admin/templates-provider/buttons.php:143 msgid "Icon button" msgstr "Botón de icono" #: nextend-facebook-connect/admin/templates-provider/buttons.php:174 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140 #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170 #: nextend-facebook-connect/admin/templates/settings/comment.php:73 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171 #: nextend-facebook-connect/admin/templates/settings/privacy.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186 #: nextend-facebook-connect/admin/templates/settings/userpro.php:167 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:254 #: nextend-facebook-connect/providers/facebook/admin/settings.php:57 #: nextend-facebook-connect/providers/google/admin/settings.php:62 #: nextend-facebook-connect/providers/twitter/admin/settings.php:48 #: nextend-social-login-pro/providers/amazon/admin/settings.php:47 #: nextend-social-login-pro/providers/disqus/admin/settings.php:47 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47 #: nextend-social-login-pro/providers/paypal/admin/settings.php:60 #: nextend-social-login-pro/providers/vk/admin/settings.php:48 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47 msgid "Save Changes" msgstr "Guardar Cambios" #: nextend-facebook-connect/admin/templates-provider/menu.php:13 #: nextend-facebook-connect/admin/templates/providers.php:61 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17 #: nextend-facebook-connect/providers/google/admin/getting-started.php:9 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8 msgid "Getting Started" msgstr "Empezando" #: nextend-facebook-connect/admin/templates-provider/menu.php:17 msgid "Buttons" msgstr "Botones" #: nextend-facebook-connect/admin/templates-provider/menu.php:21 msgid "Sync data" msgstr "Sincronizar datos" #: nextend-facebook-connect/admin/templates-provider/menu.php:24 msgid "Usage" msgstr "Uso" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11 msgid "Other settings" msgstr "Otros ajustes" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16 msgid "Username prefix on register" msgstr "Prefijo del usuario cuando se registra" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23 msgid "Fallback username prefix on register" msgstr "Prefijo del usuario de reservo cuando se registra" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27 #, fuzzy #| msgid "Used when username is invalid" msgid "Used when username is invalid or not stored" msgstr "Usado cuando el nombre del usuario no es válido" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32 #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #: nextend-facebook-connect/admin/templates/settings/privacy.php:35 msgid "Terms and conditions" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #, php-format msgid "Override global \"%1$s\"" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12 msgid "PRO settings" msgstr "Ajustes PRO" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32 msgid "Ask E-mail on registration" msgstr "Preguntar E-mail durante el registro" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69 msgid "Never" msgstr "Nunca" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38 msgid "When email is not provided or empty" msgstr "Cuando el email no se proporciona o está vacío" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72 msgid "Always" msgstr "Siempre" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50 msgid "Ask Username on registration" msgstr "Preguntar Usuario durante el registro" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53 msgid "Never, generate automatically" msgstr "Nunca, generar automáticamente" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56 msgid "When username is empty or invalid" msgstr "Cuando el usuario está vacío o no es válido" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64 msgid "Ask Password on registration" msgstr "Preguntar Contraseña al registrarse" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81 msgid "Automatically connect the existing account upon registration" msgstr "Conectar automáticamente la cuenta existente al registrarse" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85 #: nextend-facebook-connect/admin/templates/providers.php:39 #: nextend-facebook-connect/admin/templates/settings/general.php:48 #: nextend-facebook-connect/admin/templates/settings/general.php:212 #: nextend-facebook-connect/admin/templates/settings/general.php:227 #: nextend-facebook-connect/admin/templates/settings/general.php:245 #: nextend-facebook-connect/includes/provider-admin.php:217 msgid "Disabled" msgstr "Desactivado" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88 msgid "Automatic, based on email address" msgstr "Automático, basado en la dirección de email" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93 msgid "Disable login for the selected roles" msgstr "Deshabilitar inicio de sesión para los roles seleccionados" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113 msgid "Default roles for user who registered with this provider" msgstr "" "Roles predeterminados para el usuario que se registró con este proveedor" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:99 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:118 #: nextend-facebook-connect/admin/templates/settings/comment.php:39 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105 #: nextend-facebook-connect/admin/templates/settings/userpro.php:51 #: nextend-facebook-connect/admin/templates/settings/userpro.php:102 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180 #: nextend-facebook-connect/widget.php:42 msgid "Default" msgstr "Predeterminado" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50 #: nextend-facebook-connect/includes/userData.php:188 msgid "Register" msgstr "Registrarse" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58 msgid "Login" msgstr "Iniciar Sesión" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66 msgid "Link" msgstr "Enlace" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84 msgid "Store in meta key" msgstr "Guardar en clave meta" #: nextend-facebook-connect/admin/templates-provider/usage.php:9 msgid "Shortcode" msgstr "Código corto" #: nextend-facebook-connect/admin/templates-provider/usage.php:12 #, fuzzy #| msgid "Import" msgid "Important!" msgstr "Importar" #: nextend-facebook-connect/admin/templates-provider/usage.php:13 msgid "The shortcodes are only rendered for users who haven't logged in yet!" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:14 msgid "See the full list of shortcode parameters." msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:31 msgid "Simple link" msgstr "Enlace simple" #: nextend-facebook-connect/admin/templates-provider/usage.php:34 msgid "Click here to login or register" msgstr "Haz clic aquí para iniciar sesión o registrarse" #: nextend-facebook-connect/admin/templates-provider/usage.php:39 msgid "Image button" msgstr "Botón de imagen" #: nextend-facebook-connect/admin/templates-provider/usage.php:42 msgid "Image url" msgstr "URL de imagen" #: nextend-facebook-connect/admin/templates/debug.php:7 #: nextend-facebook-connect/admin/templates/header.php:20 #, fuzzy #| msgid "Debug mode" msgid "Debug" msgstr "Modo de depuración" #: nextend-facebook-connect/admin/templates/debug.php:41 msgid "Test network connection with providers" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:48 msgid "You don't have cURL support, please enable it in php.ini!" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:58 #, php-format msgid "Test %1$s connection" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2 msgid "Fix Oauth Redirect URIs" msgstr "Arregla los URI de redireccionamiento de Oauth" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13 msgid "Every Oauth Redirect URI seems fine" msgstr "Cada URI de redireccionamiento de Oauth está bien" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32 msgid "Got it" msgstr "Entiendo" #: nextend-facebook-connect/admin/templates/global-settings.php:28 #: nextend-facebook-connect/admin/templates/menu.php:8 msgid "Global Settings" msgstr "Ajustes Globales" #: nextend-facebook-connect/admin/templates/global-settings.php:31 msgid "General" msgstr "General" #: nextend-facebook-connect/admin/templates/global-settings.php:33 msgid "Privacy" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form.php:9 #: nextend-facebook-connect/admin/templates/settings/userpro.php:18 msgid "Login Form" msgstr "Formulario de Acceso" #: nextend-facebook-connect/admin/templates/global-settings.php:39 msgid "Comment" msgstr "Comentario" #: nextend-facebook-connect/admin/templates/header.php:14 msgid "Docs" msgstr "Documentos" #: nextend-facebook-connect/admin/templates/header.php:17 msgid "Support" msgstr "Apoyo" #: nextend-facebook-connect/admin/templates/header.php:23 #: nextend-facebook-connect/admin/templates/menu.php:12 msgid "Pro Addon" msgstr "Pro Addon" #: nextend-facebook-connect/admin/templates/menu.php:6 msgid "Providers" msgstr "Proveedores" #: nextend-facebook-connect/admin/templates/pro-addon.php:13 msgid "Error" msgstr "Error" #: nextend-facebook-connect/admin/templates/pro-addon.php:14 msgid "" "You don’t have sufficient permissions to install and activate plugins. " "Please contact your site’s administrator!" msgstr "" "No tienes suficientes permisos para instalar y activar plugins. ¡Por favor, " "ponte en contacto con el administrador de tu sitio!" #: nextend-facebook-connect/admin/templates/pro-addon.php:22 #: nextend-facebook-connect/admin/templates/pro-addon.php:32 #: nextend-facebook-connect/admin/templates/pro.php:34 msgid "Activate Pro Addon" msgstr "Activar Pro Addon" #: nextend-facebook-connect/admin/templates/pro-addon.php:23 msgid "" "Pro Addon is installed but not activated. To be able to use the Pro " "features, you need to activate it." msgstr "" "Pro Addon está instalado pero no activado. Para poder usar las funciones " "Pro, debes activarlo." #: nextend-facebook-connect/admin/templates/pro-addon.php:37 #: nextend-facebook-connect/admin/templates/pro-addon.php:142 #, fuzzy #| msgid "Activate Pro Addon" msgid "Deactivate Pro Addon" msgstr "Activar Pro Addon" #: nextend-facebook-connect/admin/templates/pro-addon.php:48 #: nextend-facebook-connect/admin/templates/pro.php:43 msgid "Pro Addon is not installed" msgstr "Pro Addon no está instalado" #: nextend-facebook-connect/admin/templates/pro-addon.php:50 msgid "" "To access the Pro features, you need to install and activate the Pro Addon." msgstr "" "Para acceder a las funciones Pro, tienes que instalar y activar el Pro Addon." #: nextend-facebook-connect/admin/templates/pro-addon.php:59 #, php-format msgid "Install %s now" msgstr "Instalar %s ahora" #: nextend-facebook-connect/admin/templates/pro-addon.php:60 #: nextend-facebook-connect/admin/templates/pro.php:47 msgid "Install Pro Addon" msgstr "Instalar Pro Addon" #: nextend-facebook-connect/admin/templates/pro-addon.php:94 msgid "Activating..." msgstr "Activando..." #: nextend-facebook-connect/admin/templates/pro-addon.php:118 #, fuzzy #| msgid "Not Available" msgid "Not compatible!" msgstr "No Disponible" #: nextend-facebook-connect/admin/templates/pro-addon.php:119 #, fuzzy, php-format #| msgid "Please update %1$s to version %2$s or newer." msgid "" "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or " "newer." msgstr "Por favor, actualiza %1$s a la versión %2$s o más reciente." #: nextend-facebook-connect/admin/templates/pro-addon.php:123 #, fuzzy #| msgid "Activate Pro Addon" msgid "Update Pro Addon" msgstr "Activar Pro Addon" #: nextend-facebook-connect/admin/templates/pro-addon.php:133 msgid "Pro Addon is installed and activated" msgstr "Pro Addon está instalado y activado" #: nextend-facebook-connect/admin/templates/pro-addon.php:135 #, fuzzy #| msgid "" #| "You installed and activated the Pro Addon. If you don’t want to use it " #| "anymore, you can deauthorize using the button below." msgid "" "You installed and activated the Pro Addon. If you don’t want to use it " "anymore, you can deactivate using the button below." msgstr "" "Instalaste y activaste el Pro Addon. Si no deseas volver a utilizarlo, " "puedes eliminar la autorización utilizando el siguiente botón." #: nextend-facebook-connect/admin/templates/pro.php:8 msgid "Get Pro Addon to unlock more features" msgstr "Compra Pro Addon para desbloquear más funciones" #: nextend-facebook-connect/admin/templates/pro.php:9 #, php-format msgid "" "The features below are available in %s Pro Addon. Get it today and tweak the " "awesome settings." msgstr "" "Las siguientes funciones están disponibles en %s Pro Addon. Compralo hoy y " "modifica unas configuraciones increíbles." #: nextend-facebook-connect/admin/templates/pro.php:10 msgid "" "If you already have a license, you can Authorize your Pro Addon. Otherwise " "you can purchase it using the button below." msgstr "" "Si ya tienes una licencia, puedes Autorizar tu Pro Addon. De lo contrario, " "puedes comprarlo usando el botón de abajo." #: nextend-facebook-connect/admin/templates/pro.php:14 msgid "Buy Pro Addon" msgstr "Compra Pro Addon" #: nextend-facebook-connect/admin/templates/pro.php:16 msgid "Authorize Pro Addon" msgstr "Autoriza Pro Addon" #: nextend-facebook-connect/admin/templates/pro.php:25 msgid "Pro Addon is not activated" msgstr "Pro Addon no está activado" #: nextend-facebook-connect/admin/templates/pro.php:26 #: nextend-facebook-connect/admin/templates/pro.php:44 msgid "" "To be able to use the Pro features, you need to install and activate the " "Nextend Social Connect Pro Addon." msgstr "" "Para poder utilizar las funciones Pro, debes instalar y activar el Nextend " "Social Connect Pro Addon." #: nextend-facebook-connect/admin/templates/providers.php:30 msgid "Not Available" msgstr "No Disponible" #: nextend-facebook-connect/admin/templates/providers.php:33 msgid "Not Configured" msgstr "No Configurado" #: nextend-facebook-connect/admin/templates/providers.php:36 msgid "Not Verified" msgstr "No Verificado" #: nextend-facebook-connect/admin/templates/providers.php:42 #: nextend-facebook-connect/admin/templates/settings/general.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:215 #: nextend-facebook-connect/admin/templates/settings/general.php:230 #: nextend-facebook-connect/admin/templates/settings/general.php:248 #: nextend-facebook-connect/includes/provider-admin.php:220 #: nextend-facebook-connect/providers/google/admin/settings.php:53 #: nextend-social-login-pro/providers/paypal/admin/settings.php:51 msgid "Enabled" msgstr "Habilitado" #: nextend-facebook-connect/admin/templates/providers.php:54 msgid "Upgrade Now" msgstr "Actualizar Ahora" #: nextend-facebook-connect/admin/templates/providers.php:69 #: nextend-facebook-connect/includes/provider-admin.php:204 msgid "Verify Settings" msgstr "Verificar Configuración" #: nextend-facebook-connect/admin/templates/providers.php:77 #: nextend-facebook-connect/includes/provider-admin.php:249 msgid "Enable" msgstr "Habilitar" #: nextend-facebook-connect/admin/templates/providers.php:89 #: nextend-facebook-connect/includes/provider-admin.php:257 msgid "Disable" msgstr "Inhabilitar" #: nextend-facebook-connect/admin/templates/providers.php:114 msgid "Stay Updated" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:115 msgid "" "Receive info on the latest plugin updates and social provider related " "changes." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:116 #, fuzzy #| msgid "Please enter an email address." msgid "Enter your email address" msgstr "Por favor introduce un email." #: nextend-facebook-connect/admin/templates/providers.php:120 msgid "Subscribe" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:136 msgid "Saving..." msgstr "Guardando..." #: nextend-facebook-connect/admin/templates/providers.php:137 msgid "Saving failed" msgstr "No se pudo guardar" #: nextend-facebook-connect/admin/templates/providers.php:138 msgid "Order Saved" msgstr "Orden Guardado" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "Successfully subscribed!" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "" "We'll be bringing you all the latest news and updates about Social Login - " "right to your inbox." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:214 #, fuzzy #| msgid "Please enter an email address." msgid "The entered email address is invalid!" msgstr "Por favor introduce un email." #: nextend-facebook-connect/admin/templates/review.php:14 msgid "Rate your experience!" msgstr "¡Califica tu experiencia!" #: nextend-facebook-connect/admin/templates/review.php:15 msgid "Hated it" msgstr "Lo odié" #: nextend-facebook-connect/admin/templates/review.php:16 msgid "Disliked it" msgstr "No me gustó" #: nextend-facebook-connect/admin/templates/review.php:17 msgid "It was ok" msgstr "Estuvo bien" #: nextend-facebook-connect/admin/templates/review.php:18 msgid "Liked it" msgstr "Me gustó" #: nextend-facebook-connect/admin/templates/review.php:19 msgid "Loved it" msgstr "Me encantó" #: nextend-facebook-connect/admin/templates/review.php:31 msgid "Please Leave a Review" msgstr "Por Favor Deja una Evaluación" #: nextend-facebook-connect/admin/templates/review.php:32 msgid "" "If you are happy with Nextend Social Login and can take a minute " "please leave us a review. It will be a tremendous help for us!" msgstr "" "Si estás satisfecho con Nextend Social Login y tienes un minuto, por " "favor déjanos una evaluación. ¡Será una gran ayuda para nosotros!" #: nextend-facebook-connect/admin/templates/review.php:34 msgid "Ok, you deserve it" msgstr "Ok, lo mereces" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96 #, fuzzy #| msgid "Register Form" msgid "Register form" msgstr "Formulario de Registro" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23 msgid "No Connect button" msgstr "Botón de No Conexión" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26 msgid "Connect button before register" msgstr "Conectar botón antes de registrarse" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:221 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:226 msgid "Action:" msgstr "Acción:" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31 msgid "Connect button before account details" msgstr "Conectar botón antes de los detalles de cuenta" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36 msgid "Connect button after register" msgstr "Conectar botón después de registrarse" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44 #, fuzzy #| msgid "Register form button style" msgid "Register button style" msgstr "Estilo de botón de formulario de Registro integrado" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:105 #: nextend-facebook-connect/admin/templates/settings/comment.php:45 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111 #: nextend-facebook-connect/admin/templates/settings/userpro.php:57 #: nextend-facebook-connect/admin/templates/settings/userpro.php:108 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30 #: nextend-facebook-connect/widget.php:47 msgid "Icon" msgstr "Icono" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:64 #, fuzzy #| msgid "Login Form" msgid "Sidebar Login form" msgstr "Formulario de Acceso" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:69 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:85 #: nextend-facebook-connect/admin/templates/settings/login-form.php:17 #: nextend-facebook-connect/admin/templates/settings/login-form.php:30 #: nextend-facebook-connect/admin/templates/settings/login-form.php:47 #: nextend-facebook-connect/admin/templates/settings/userpro.php:26 #: nextend-facebook-connect/admin/templates/settings/userpro.php:39 msgid "Hide login buttons" msgstr "Esconder botones de iniciar sesión" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:72 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88 #: nextend-facebook-connect/admin/templates/settings/login-form.php:14 #: nextend-facebook-connect/admin/templates/settings/login-form.php:27 #: nextend-facebook-connect/admin/templates/settings/login-form.php:44 #: nextend-facebook-connect/admin/templates/settings/userpro.php:23 #: nextend-facebook-connect/admin/templates/settings/userpro.php:36 #: nextend-facebook-connect/widget.php:76 msgid "Show login buttons" msgstr "Mostrar botones de iniciar sesión" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:73 msgid "" "Some themes that use BuddyPress, display the social buttons twice in the " "same login form. This option can disable the one for: " "bp_sidebar_login_form action. " msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:80 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38 #, fuzzy #| msgid "Login Form" msgid "Login form" msgstr "Formulario de Acceso" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:93 #, fuzzy #| msgid "Login form button style" msgid "Login button style" msgstr "Estilo de botón para iniciar sesión" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:48 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52 #: nextend-facebook-connect/admin/templates/settings/userpro.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58 msgid "Login layout" msgstr "Diseño de Inicio de Sesión" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:110 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124 #: nextend-facebook-connect/admin/templates/settings/userpro.php:70 #: nextend-facebook-connect/admin/templates/settings/userpro.php:121 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186 msgid "Below" msgstr "Abajo" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:130 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130 #: nextend-facebook-connect/admin/templates/settings/userpro.php:76 #: nextend-facebook-connect/admin/templates/settings/userpro.php:127 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192 msgid "Below with separator" msgstr "Abajo con separación" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:136 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136 #: nextend-facebook-connect/admin/templates/settings/userpro.php:82 #: nextend-facebook-connect/admin/templates/settings/userpro.php:133 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198 msgid "Above" msgstr "Encima" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:142 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142 #: nextend-facebook-connect/admin/templates/settings/userpro.php:88 #: nextend-facebook-connect/admin/templates/settings/userpro.php:139 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204 msgid "Above with separator" msgstr "Encima con separación" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:150 #: nextend-facebook-connect/admin/templates/settings/comment.php:53 #: nextend-facebook-connect/admin/templates/settings/login-form.php:53 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:151 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:166 #: nextend-facebook-connect/admin/templates/settings/userpro.php:147 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:233 #, fuzzy #| msgid "Buttons" msgid "Button alignment" msgstr "Botones" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155 #: nextend-facebook-connect/admin/templates/settings/comment.php:58 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140 #: nextend-facebook-connect/admin/templates/settings/login-form.php:58 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:156 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171 #: nextend-facebook-connect/admin/templates/settings/userpro.php:152 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:238 #: nextend-facebook-connect/widget.php:57 msgid "Left" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:158 #: nextend-facebook-connect/admin/templates/settings/comment.php:61 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:143 #: nextend-facebook-connect/admin/templates/settings/login-form.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:159 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:174 #: nextend-facebook-connect/admin/templates/settings/userpro.php:155 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:241 #: nextend-facebook-connect/widget.php:62 msgid "Center" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162 #: nextend-facebook-connect/admin/templates/settings/comment.php:65 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147 #: nextend-facebook-connect/admin/templates/settings/login-form.php:65 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:163 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178 #: nextend-facebook-connect/admin/templates/settings/userpro.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:245 #: nextend-facebook-connect/widget.php:67 msgid "Right" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:18 #, fuzzy #| msgid "Icon button" msgid "Login button" msgstr "Botón de icono" #: nextend-facebook-connect/admin/templates/settings/comment.php:23 #: nextend-facebook-connect/admin/templates/settings/privacy.php:42 msgid "Show" msgstr "Mostrar" #: nextend-facebook-connect/admin/templates/settings/comment.php:26 msgid "Hide" msgstr "Esconder" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 #, php-format msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work" msgstr "Necesitas activar el ' %1$s > %2$s > %3$s ' para que funcione" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Discussion" msgstr "Discusión" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Users must be registered and logged in to comment" msgstr "Los usuarios deben estar registrados e iniciar sesión para comentar" #: nextend-facebook-connect/admin/templates/settings/comment.php:33 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18 #, fuzzy #| msgid "Button style:" msgid "Button style" msgstr "Estilo de Botón:" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29 msgid "Target window" msgstr "Ventana de destino" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34 msgid "Prefer popup" msgstr "Preferir emergente" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37 msgid "Prefer new tab" msgstr "Preferir nueva pestaña" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40 msgid "Prefer same window" msgstr "Preferir nueva ventana" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46 msgid "Registration notification sent to" msgstr "Notificación de registro enviado a" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:242 msgid "WordPress default" msgstr "Configuración predeterminada de Wordpress" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54 msgid "Nobody" msgstr "Nadie" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60 msgid "Admin" msgstr "Administrador" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63 msgid "User and Admin" msgstr "Usuario y Administrador" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69 #, fuzzy #| msgid "Unlink label" msgid "Unlink" msgstr "Etiqueta de desenlazar" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75 #, fuzzy #| msgid "Social accounts" msgid "Allow Social account unlink" msgstr "Cuentas sociales" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81 #, fuzzy #| msgid "Disable login for the selected roles" msgid "Disable Admin bar for roles" msgstr "Deshabilitar inicio de sesión para los roles seleccionados" #: nextend-facebook-connect/admin/templates/settings/general.php:43 msgid "Debug mode" msgstr "Modo de depuración" #: nextend-facebook-connect/admin/templates/settings/general.php:56 #, fuzzy #| msgid "for Register" msgid "Page for register flow" msgstr "para Registrarse" #: nextend-facebook-connect/admin/templates/settings/general.php:66 #: nextend-facebook-connect/admin/templates/settings/general.php:91 msgid "None" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:74 msgid "" "This setting is used when you request additional data from the users (such " "as email address) and to display the Terms and conditions." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #, php-format msgid "" "%2$s First create a new page and insert the following shortcode: %1$s then " "select this page above" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #: nextend-facebook-connect/admin/templates/settings/general.php:101 #, fuzzy #| msgid "Usage" msgid "Usage:" msgstr "Uso" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 #, php-format msgid "" "%1$s You won't be able to reach the selected page unless a social login/" "registration happens." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 #, fuzzy #| msgid "Import" msgid "Important:" msgstr "Importar" #: nextend-facebook-connect/admin/templates/settings/general.php:80 msgid "OAuth redirect uri proxy page" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:100 msgid "" "You can use this setting when wp-login.php page is not available to handle " "the OAuth flow." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:101 #, php-format msgid "%1$s First create a new page then select this page above." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:108 msgid "Prevent external redirect overrides" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:114 msgid "Disable external redirects" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:121 msgid "Default redirect url" msgstr "URL de redirección predeterminada" #: nextend-facebook-connect/admin/templates/settings/general.php:134 #: nextend-facebook-connect/admin/templates/settings/general.php:172 msgid "for Login" msgstr "para Iniciar Sesión" #: nextend-facebook-connect/admin/templates/settings/general.php:149 #: nextend-facebook-connect/admin/templates/settings/general.php:187 msgid "for Register" msgstr "para Registrarse" #: nextend-facebook-connect/admin/templates/settings/general.php:159 msgid "Fixed redirect url" msgstr "URL de redirección fija" #: nextend-facebook-connect/admin/templates/settings/general.php:196 #, fuzzy #| msgid "Fixed redirect url" msgid "Blacklisted redirects" msgstr "URL de redirección fija" #: nextend-facebook-connect/admin/templates/settings/general.php:202 msgid "If you want to blacklist redirect url params. One pattern per line." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:207 #, fuzzy #| msgid "Show login buttons" msgid "Support login restrictions" msgstr "Mostrar botones de iniciar sesión" #: nextend-facebook-connect/admin/templates/settings/general.php:217 #, php-format msgid "Please visit to our %1$s to check what plugins are supported!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:222 msgid "Display avatars in \"All media items\"" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:232 msgid "" "Enabling this option can speed up loading images in Media Library - Grid " "view!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:237 msgid "Membership" msgstr "Membresía" #: nextend-facebook-connect/admin/templates/settings/general.php:250 #, fuzzy #| msgid "Allow registration with Social login" msgid "Allow registration with Social login." msgstr "Permitir registro con Social login" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33 #: nextend-facebook-connect/admin/templates/settings/userpro.php:45 msgid "Login form button style" msgstr "Estilo de botón para iniciar sesión" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66 msgid "Below and floating" msgstr "Abajo y flotando" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:85 msgid "Embedded Login form button style" msgstr "Estilo de botón de formulario de inicio de sesión integrado" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:104 msgid "Embedded Login layout" msgstr "Diseño de Inicio de Sesión integrado" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:135 #, fuzzy #| msgid "Embedded Login form button style" msgid "Embedded login form button alignment" msgstr "Estilo de botón de formulario de inicio de sesión integrado" #: nextend-facebook-connect/admin/templates/settings/login-form.php:22 #: nextend-facebook-connect/includes/userData.php:137 msgid "Registration Form" msgstr "Formulario de Registro" #: nextend-facebook-connect/admin/templates/settings/login-form.php:36 msgid "Embedded login form" msgstr "Formulario de Inicio de Sesión integrado" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69 msgid "Sign Up form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74 #, fuzzy #| msgid "No Connect button in login form" msgid "No Connect button in Sign Up form" msgstr "Sin botón de conexión en el formulario de inicio de sesión" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167 #, fuzzy #| msgid "No Connect button" msgid "Connect button on" msgstr "Botón de No Conexión" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84 #, fuzzy #| msgid "Login form button style" msgid "Sign Up form button style" msgstr "Estilo de botón para iniciar sesión" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103 #, fuzzy #| msgid "Login layout" msgid "Sign Up layout" msgstr "Diseño de Inicio de Sesión" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212 #, fuzzy #| msgid "MemberPress account details" msgid "Account details" msgstr "Detalles de cuenta MemberPress" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155 msgid "No link buttons" msgstr "Sin botones de enlace" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158 msgid "Link buttons after account details" msgstr "Enlazar botones de enlace después de los detalles de la cuenta" #: nextend-facebook-connect/admin/templates/settings/privacy.php:6 #: nextend-facebook-connect/nextend-social-login.php:143 msgid "" "By clicking Register, you accept our Privacy Policy" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:59 msgid "Store" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:65 msgid "First and last name" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:68 msgid "When not enabled, username will be randomly generated." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:78 #: nextend-social-login-pro/class-provider-extension.php:322 msgid "Email" msgstr "Email" #: nextend-facebook-connect/admin/templates/settings/privacy.php:81 msgid "When not enabled, email will be empty." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:91 #: nextend-facebook-connect/includes/avatar.php:59 msgid "Avatar" msgstr "Avatar" #: nextend-facebook-connect/admin/templates/settings/privacy.php:102 #: nextend-facebook-connect/includes/provider.php:1066 msgid "Access token" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23 #, fuzzy #| msgid "No Connect button in login form" msgid "No Connect button in Login form" msgstr "Sin botón de conexión en el formulario de inicio de sesión" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89 #, fuzzy #| msgid "No Connect button in register form" msgid "No Connect button in Register form" msgstr "Sin botón de conexión en el formulario de registro" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99 #: nextend-facebook-connect/admin/templates/settings/userpro.php:96 msgid "Register form button style" msgstr "Estilo de botón de formulario de Registro integrado" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118 #: nextend-facebook-connect/admin/templates/settings/userpro.php:115 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116 msgid "Register layout" msgstr "Diseño de Registro" #: nextend-facebook-connect/admin/templates/settings/userpro.php:31 msgid "Register Form" msgstr "Formulario de Registro" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43 msgid "No Connect button in login form" msgstr "Sin botón de conexión en el formulario de inicio de sesión" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101 msgid "No Connect button in register form" msgstr "Sin botón de conexión en el formulario de registro" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154 #, fuzzy #| msgid "WooCommerce billing form" msgid "Billing form" msgstr "Formulario de facturación de WooCommerce" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159 msgid "No Connect button in billing form" msgstr "Sin botón de conexión en el formulario de facturación" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174 #, fuzzy #| msgid "Login layout" msgid "Billing layout" msgstr "Diseño de Inicio de Sesión" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217 #, fuzzy #| msgid "Connect button before account details" msgid "No Connect buttons in account details form" msgstr "Conectar botón antes de los detalles de cuenta" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:220 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:225 #, fuzzy #| msgid "No link buttons" msgid "Link buttons on" msgstr "Sin botones de enlace" #: nextend-facebook-connect/admin/templates/test-connection.php:42 #, fuzzy, php-format #| msgid "Authentication successful" msgid "Network connection successful: %1$s" msgstr "Autenticación exitosa" #: nextend-facebook-connect/admin/templates/test-connection.php:49 #, php-format msgid "Network connection failed: %1$s" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:52 msgid "" "Please contact with your hosting provider to resolve the network issue " "between your server and the provider." msgstr "" #: nextend-facebook-connect/includes/avatar.php:60 msgid "Manage Avatar" msgstr "Administrar Avatar" #: nextend-facebook-connect/includes/avatar.php:61 #, php-format msgid "Avatar (%s)" msgid_plural "Avatar (%s)" msgstr[0] "Avatar (%s)" msgstr[1] "Avatar (%s)" #: nextend-facebook-connect/includes/compat-wp-login.php:49 #, php-format msgid "%1$s ‹ %2$s — WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:115 msgid "https://wordpress.org/" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:116 msgid "Powered by WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:260 #, php-format msgctxt "site" msgid "← Back to %s" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:198 msgid "Your configuration needs to be verified" msgstr "Tu configuración debe ser verificada" #: nextend-facebook-connect/includes/provider-admin.php:199 msgid "" "Before you can start letting your users register with your app it needs to " "be tested. This test makes sure that no users will have troubles with the " "login and registration process.
If you see error message in the popup " "check the copied ID and secret or the app itself. Otherwise your settings " "are fine." msgstr "" "Antes de que puedas comenzar a permitir que tus usuarios se registren con tu " "aplicación, debe ser probada. Esta prueba asegura que ningún usuario tenga " "problemas con el proceso de inicio de sesión y registro.
Si ves un " "mensaje de error en el menú emergente, verifica la ID copiada y el secreto o " "la aplicación. De lo contrario, tu configuración está bien." #: nextend-facebook-connect/includes/provider-admin.php:205 msgid "Please save your changes to verify settings." msgstr "Guarda los cambios para verificar la configuración." #: nextend-facebook-connect/includes/provider-admin.php:213 msgid "Works Fine" msgstr "Funciona Bien" #: nextend-facebook-connect/includes/provider-admin.php:227 #, php-format msgid "" "This provider is currently disabled, which means that users can’t register " "or login via their %s account." msgstr "" "Este proveedor está desactivado, así que los usuarios no pueden registrarse " "ni iniciar sesión a través de su cuenta de %s." #: nextend-facebook-connect/includes/provider-admin.php:230 #, php-format msgid "" "This provider works fine, but you can test it again. If you don’t want to " "let users register or login with %s anymore you can disable it." msgstr "" "Este proveedor funciona bien pero puedes volver a probarlo. Si ya no deseas " "permitir que los usuarios se registren o inicien sesión con %s, puedes " "deshabilitarlo." #: nextend-facebook-connect/includes/provider-admin.php:233 #, php-format msgid "" "This provider is currently enabled, which means that users can register or " "login via their %s account." msgstr "" "Este proveedor está habilitado, así que los usuarios pueden registrarse o " "iniciar sesión a través de su cuenta %s." #: nextend-facebook-connect/includes/provider-admin.php:241 msgid "Verify Settings Again" msgstr "Verificar la configuración de nuevo" #: nextend-facebook-connect/includes/provider-admin.php:242 msgid "Please save your changes before verifying settings." msgstr "Guarda tus cambios antes de verificar la configuración, por favor." #: nextend-facebook-connect/includes/provider.php:350 #: nextend-facebook-connect/includes/provider.php:693 #: nextend-facebook-connect/includes/provider.php:698 msgid "Authentication successful" msgstr "Autenticación exitosa" #: nextend-facebook-connect/includes/provider.php:635 #: nextend-facebook-connect/includes/user.php:127 msgid "Authentication error" msgstr "Error de autenticación" #: nextend-facebook-connect/includes/provider.php:650 msgid "Unlink successful." msgstr "Desenlace exitoso." #: nextend-facebook-connect/includes/provider.php:652 msgid "Unlink is not allowed!" msgstr "" #: nextend-facebook-connect/includes/provider.php:856 #: nextend-facebook-connect/includes/provider.php:863 msgid "The test was successful" msgstr "La prueba fue exitosa" #: nextend-facebook-connect/includes/provider.php:909 msgid "Authentication failed" msgstr "Error de autenticación" #: nextend-facebook-connect/includes/provider.php:1058 msgid "Identifier" msgstr "" #: nextend-facebook-connect/includes/provider.php:1074 msgid "Profile picture" msgstr "" #: nextend-facebook-connect/includes/user.php:74 #, php-format msgid "" "Your %1$s account is successfully linked with your account. Now you can sign " "in with %2$s easily." msgstr "" "Tu cuenta %1$s está vinculada con éxito a tu cuenta. Ahora puedes iniciar " "sesión con %2$s fácilmente." #: nextend-facebook-connect/includes/user.php:77 #, php-format msgid "" "You have already linked a(n) %s account. Please unlink the current and then " "you can link other %s account." msgstr "" "Ya has vinculado una %s cuenta. Desvincula la cuenta actual y después " "podrías vincular otra cuenta de %s." #: nextend-facebook-connect/includes/user.php:82 #, php-format msgid "This %s account is already linked to other user." msgstr "Esta cuenta %s ya está vinculada a otro usuario." #: nextend-facebook-connect/includes/user.php:122 msgid "User registration is currently not allowed." msgstr "" #: nextend-facebook-connect/includes/userData.php:137 msgid "Register For This Site!" msgstr "¡Registrarse Para Este Sitio!" #: nextend-facebook-connect/nextend-facebook-connect.php:34 #, php-format msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE." msgstr "%1$s requiere la versión PHP %2$s+, el plugin NO ESTÁ ACTIVO." #: nextend-facebook-connect/nextend-facebook-connect.php:41 #, php-format msgid "" "%1$s requires WordPress version %2$s+. Because you are using an earlier " "version, the plugin is currently NOT ACTIVE." msgstr "" "%1$s requiere la versión de WordPress %2$s+. Desde estás utilizando una " "versión anterior, el plugin NO ESTÁ ACTIVO." #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 #, php-format msgid "Please update %1$s to version %2$s or newer." msgstr "Por favor, actualiza %1$s a la versión %2$s o más reciente." #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 msgid "Update now!" msgstr "¡Actualizar ahora!" #: nextend-facebook-connect/nextend-social-login.php:735 #: nextend-facebook-connect/nextend-social-login.php:1111 msgid "Social Login" msgstr "Social Login" #: nextend-facebook-connect/nextend-social-login.php:1092 msgid "Social Accounts" msgstr "Cuentas Sociales" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8 #, fuzzy, php-format #| msgid "Navigate to %s" msgid "Navigate to %s" msgstr "Navegar a %s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/google/admin/getting-started.php:17 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9 #, php-format msgid "Log in with your %s credentials if you are not logged in" msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10 #, fuzzy, php-format #| msgid "Click on the App with App ID: %s" msgid "Click on the App with App ID: %s" msgstr "Haz clic en la App con la App ID: %s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11 #, fuzzy #| msgid "In the left sidebar, click on \"Facebook Login/Settings\"" msgid "In the left sidebar, click on \"Facebook Login > Settings\"" msgstr "En la barra lateral izquierda, haz clic en \"Facebook Login/Ajustes\"" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: %s" msgid "" "Add the following URL to the \"Valid OAuth redirect URIs\" field: " "%s" msgstr "" "Agrega la siguiente URL al campo \"Valid OAuth redirect URIs\": %s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on \"Save Changes\"" msgstr "Haz clic en \"Guardar Cambios\"" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11 #: nextend-facebook-connect/providers/facebook/admin/settings.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22 #, php-format msgid "" "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in " "order to allow login with %1$s." msgstr "" "%1$s solo permite redireccionamientos HTTPS OAuth. Debes mover tu sitio a " "HTTPS para permitir el inicio de sesión con %1$s." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13 #: nextend-facebook-connect/providers/facebook/admin/settings.php:15 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24 msgid "How to get SSL for my WordPress site?" msgstr "¿Cómo puedo obtener SSL para mi sitio de WordPress?" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19 #: nextend-facebook-connect/providers/google/admin/getting-started.php:11 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create a %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" "Para permitir que tus visitantes inicien sesión con su cuenta %1$s, primero " "debes crear una aplicación %1$s. La siguiente guía te ayudará a través del " "proceso de creación de la aplicación %1$s. Después de haber creado tu " "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" " "dados según tu aplicación %1$s." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21 #: nextend-facebook-connect/providers/google/admin/getting-started.php:13 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:32 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:13 #, php-format msgctxt "App creation" msgid "Create %s" msgstr "Crear %s" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24 #: nextend-facebook-connect/providers/google/admin/getting-started.php:16 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:16 #, php-format msgid "Navigate to %s" msgstr "Navegar a %s" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26 #, fuzzy #| msgid "Click on the \"Add a New App\" button" msgid "Click on the \"Add a New App\" button" msgstr "Haz clic en el botón \"Add a New App\" por favor" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27 msgid "" "If you see the message \"Become a Facebook Developer\", then you need " "to click on the green \"Register Now\" button, fill the form then " "finally verify your account." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28 #, php-format msgid "" "Fill \"Display Name\" and \"Contact Email\". The specified " "\"Display Name\" will appear on your %s!" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "" "Click the \"Create App ID\" button and complete the Security Check." msgstr "Haz clic en el botón de \"Create New App\" por favor" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35 #, php-format msgid "" "On the left side, click on the “%1$s” menu point, then click “" "%2$s”." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31 #, fuzzy #| msgid "Enter your domain name to the App Domains" msgid "Enter your domain name to the \"App Domains\" field." msgstr "Ingresa tu nombre de dominio a los App Domains" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32 #, fuzzy, php-format #| msgid "Enter your domain name to the App Domains" msgid "" "Enter your domain name to the \"App Domains\" field, probably: %s" msgstr "Ingresa tu nombre de dominio a los App Domains" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33 #, fuzzy #| msgid "" #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and " #| "easily accessible privacy policy that explains what data you are " #| "collecting and how you will use that data." msgid "" "Fill up the \"Privacy Policy URL\" field. Provide a publicly " "available and easily accessible privacy policy that explains what data you " "are collecting and how you will use that data." msgstr "" "Llena la \"Privacy Policy URL\". Proporciona una política de privacidad " "accesible al público y de fácil acceso que explique cuales datos estás " "recopilando y cómo utilizarás esos datos." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34 msgid "" "Select a “Category”, an “App Icon” and pick the “Business " "Use” option that describes your the App best, then press \"Save " "Changes\"." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on “Save Changes”" msgstr "Haz clic en \"Guardar Cambios\"" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38 #, fuzzy #| msgid "" #| "Your application is currently private, which means that only you can log " #| "in with it. In the left sidebar choose \"App Review\" and make your App " #| "public" msgid "" "Your application is currently private, which means that only you can log in " "with it. In the top bar click on the switch next to the \"In development\" label, then click the \"Switch Mode\" button." msgstr "" "Tu aplicación está privada, así que solo tú puedes iniciar sesión con ella. " "En la barra lateral izquierda, elige \"App Review\" y haz que tu aplicación " "sea pública" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39 #, fuzzy, php-format #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "Finally on the left side, click on the \"%1$s\" menu point, then " "click \"%2$s\" again. Here you can see your \"APP ID\" and you " "can see your \"App secret\" if you click on the \"Show\" button. " "These will be needed in plugin’s settings." msgstr "" "Aquí puedes ver tu \"APP ID\" y puedes ver tu \"App secret\" si haces clic " "en el botón \"Mostrar\". Estos serán necesarios en la configuración del " "plugin." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43 #: nextend-facebook-connect/providers/google/admin/getting-started.php:40 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:30 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:29 #, php-format msgid "I am done setting up my %s" msgstr "He terminado de configurar mi %s" #: nextend-facebook-connect/providers/facebook/admin/settings.php:35 #: nextend-social-login-pro/providers/vk/admin/settings.php:27 msgid "App ID" msgstr "App ID" #: nextend-facebook-connect/providers/facebook/admin/settings.php:36 #: nextend-facebook-connect/providers/facebook/admin/settings.php:48 #: nextend-facebook-connect/providers/google/admin/settings.php:28 #: nextend-facebook-connect/providers/google/admin/settings.php:41 #: nextend-facebook-connect/providers/twitter/admin/settings.php:28 #: nextend-social-login-pro/providers/amazon/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:39 #: nextend-social-login-pro/providers/apple/admin/settings.php:79 #: nextend-social-login-pro/providers/apple/admin/settings.php:90 #: nextend-social-login-pro/providers/apple/admin/settings.php:100 #: nextend-social-login-pro/providers/apple/admin/settings.php:108 #: nextend-social-login-pro/providers/disqus/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39 #: nextend-social-login-pro/providers/paypal/admin/settings.php:27 #: nextend-social-login-pro/providers/paypal/admin/settings.php:39 #: nextend-social-login-pro/providers/vk/admin/settings.php:28 #: nextend-social-login-pro/providers/vk/admin/settings.php:40 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39 msgid "Required" msgstr "Obligatorio" #: nextend-facebook-connect/providers/facebook/admin/settings.php:41 #: nextend-facebook-connect/providers/google/admin/settings.php:35 #: nextend-facebook-connect/providers/twitter/admin/settings.php:33 #: nextend-social-login-pro/providers/amazon/admin/settings.php:33 #: nextend-social-login-pro/providers/apple/admin/settings.php:34 #: nextend-social-login-pro/providers/apple/admin/settings.php:85 #: nextend-social-login-pro/providers/disqus/admin/settings.php:33 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33 #: nextend-social-login-pro/providers/paypal/admin/settings.php:33 #: nextend-social-login-pro/providers/vk/admin/settings.php:34 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33 #, php-format msgid "" "If you are not sure what is your %1$s, please head over to Getting Started" msgstr "" "Si no estás seguro de cuál es tu %1$s, dirígete a Getting " "Started" #: nextend-facebook-connect/providers/facebook/admin/settings.php:47 msgid "App Secret" msgstr "App Secret" #: nextend-facebook-connect/providers/facebook/facebook.php:79 msgid "Continue with Facebook" msgstr "Sigue con Facebook" #: nextend-facebook-connect/providers/facebook/facebook.php:80 msgid "Link account with Facebook" msgstr "Enlazar cuenta con Facebook" #: nextend-facebook-connect/providers/facebook/facebook.php:81 msgid "Unlink account from Facebook" msgstr "Desenlazar cuenta de Facebook" #: nextend-facebook-connect/providers/facebook/facebook.php:135 #: nextend-facebook-connect/providers/google/google.php:158 #: nextend-facebook-connect/providers/twitter/twitter.php:95 #: nextend-social-login-pro/providers/amazon/amazon.php:65 #: nextend-social-login-pro/providers/apple/apple.php:71 #: nextend-social-login-pro/providers/apple/apple.php:77 #: nextend-social-login-pro/providers/disqus/disqus.php:112 #: nextend-social-login-pro/providers/linkedin/linkedin.php:63 #: nextend-social-login-pro/providers/paypal/paypal.php:90 #: nextend-social-login-pro/providers/vk/vk.php:61 #: nextend-social-login-pro/providers/wordpress/wordpress.php:99 #: nextend-social-login-pro/providers/yahoo/yahoo.php:90 #, php-format msgid "" "The %1$s entered did not appear to be a valid. Please enter a valid %2$s." msgstr "" "El %1$s ingresado no parece ser válido. Por favor ingresa un %2$s válido." #: nextend-facebook-connect/providers/facebook/facebook.php:253 #: nextend-social-login-pro/providers/paypal/paypal.php:170 #, php-format msgid "Required scope: %1$s" msgstr "Alcance requerido: %1$s" #: nextend-facebook-connect/providers/google/admin/buttons.php:2 #, fuzzy #| msgid "Buttons" msgid "Button skin" msgstr "Botones" #: nextend-facebook-connect/providers/google/admin/buttons.php:8 msgid "Uniform" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:14 msgid "Light" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:20 msgid "Dark" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Click on the \"Credentials\" in the left hand menu" msgid "Click on the \"Credentials\" in the left hand menu" msgstr "Haz clic en \"Credentials\" en el menú de la izquierda" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11 #, php-format msgid "" "Under the \"OAuth 2.0 Client IDs\" section find your Client ID: " "%s" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/google/admin/getting-started.php:34 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorised redirect URIs\" field: %s" msgid "" "Add the following URL to the \"Authorised redirect URIs\" field: " "%s" msgstr "" "Agrega la siguiente URL al campo \"Authorised redirect URIs\": %s" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14 #, fuzzy #| msgid "Click on \"Save\"" msgid "Click on \"Save\"" msgstr "Haz clic en \"Guardar Cambios\"" #: nextend-facebook-connect/providers/google/admin/getting-started.php:18 #, fuzzy #| msgid "" #| "If you don't have a project yet, you'll need to create one. You can do " #| "this by clicking on the blue \"Create project\" button on the right side" msgid "" "If you don't have a project yet, you'll need to create one. You can do this " "by clicking on the blue \"Create\" button on the right side! ( If " "you already have a project, click on the name of your project in the " "dashboard instead, which will bring up a modal and click \"New Project\". )" msgstr "" "Si aún no tienes un proyecto, deberás crear uno. Puedes hacer esto haciendo " "clic en el botón azul \"Create project\" en el lado derecho" #: nextend-facebook-connect/providers/google/admin/getting-started.php:19 #, fuzzy #| msgid "Name your project and then click on the Create button" msgid "Name your project and then click on the \"Create\" button again" msgstr "Denomina tu proyecto y luego haz clic en el botón Create" #: nextend-facebook-connect/providers/google/admin/getting-started.php:20 msgid "Once you have a project, you'll end up in the dashboard." msgstr "Una vez que tengas un proyecto, llegarás al escritorio." #: nextend-facebook-connect/providers/google/admin/getting-started.php:21 msgid "Click the “OAuth consent screen” button on the left hand side." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:22 msgid "" "Choose a User Type according to your needs. If you want to enable the " "social login with Google for any users with a Google account, then pick the " "External option!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:24 #, php-format msgid "" "Note: We don't use sensitive or restricted scopes either. But if you " "will use this App for other purposes too, then you may need to go through an " "%1$s!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:27 msgid "" "Enter a name for your App to the \"Application name\" field, which " "will appear as the name of the app asking for consent." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:28 #, fuzzy, php-format #| msgid "Fill the \"Base domain\" field with your domain, probably: %s" msgid "" "Fill the \"Authorized domains\" field with your domain name probably: " "%s without subdomains!" msgstr "" "Llena el campo \"Base domain\" con tu dominio, probablemente: %s" #: nextend-facebook-connect/providers/google/admin/getting-started.php:29 #, fuzzy #| msgid "Save your changes." msgid "Save your settings!" msgstr "Guarda tus cambios." #: nextend-facebook-connect/providers/google/admin/getting-started.php:30 #, php-format msgid "" "On the left side, click on the \"%1$s\" menu point, then click the " "\"%2$s\" button in the top bar." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:31 msgid "Choose the \"OAuth client ID\" option." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:32 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "Select the \"Web application\" under Application type." msgstr "Haz clic en el botón de \"Create New App\" por favor" #: nextend-facebook-connect/providers/google/admin/getting-started.php:33 msgid "Enter \"Name\" that for your OAuth client ID." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:35 #, fuzzy #| msgid "Click on the Create button" msgid "Click on the \"Create\" button" msgstr "Haz clic en el botón Create" #: nextend-facebook-connect/providers/google/admin/getting-started.php:36 #, fuzzy #| msgid "" #| "A modal should pop up with your credentials. If that doesn't happen, go " #| "to the Credentials in the left hand menu and select your app by clicking " #| "on its name and you'll be able to copy-paste the Client ID and Client " #| "Secret from there." msgid "" "A modal should pop up with your credentials. If that doesn't happen, go to " "the Credentials in the left hand menu and select your app by clicking on its " "name and you'll be able to copy-paste the \"Client ID\" and " "\"Client Secret\" from there." msgstr "" "Un modal debería aparecer con tus credenciales. Si eso no sucede, ve a " "Credentials en el menú de la izquierda y selecciona tu aplicación haciendo " "clic en su nombre y podrías copiar y pegar desde ahí la Client ID y el " "Client Secret." #: nextend-facebook-connect/providers/google/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:26 #: nextend-social-login-pro/providers/apple/admin/settings.php:28 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26 #: nextend-social-login-pro/providers/paypal/admin/settings.php:26 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26 msgid "Client ID" msgstr "Client ID" #: nextend-facebook-connect/providers/google/admin/settings.php:40 #: nextend-social-login-pro/providers/amazon/admin/settings.php:38 #: nextend-social-login-pro/providers/apple/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38 msgid "Client Secret" msgstr "Client Secret" #: nextend-facebook-connect/providers/google/admin/settings.php:47 msgid "Select account on each login" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:56 msgid "" "Disable, when you don't want to see the account select prompt on each login." msgstr "" #: nextend-facebook-connect/providers/google/google.php:106 msgid "Continue with Google" msgstr "Sigue con Google" #: nextend-facebook-connect/providers/google/google.php:107 msgid "Link account with Google" msgstr "Enlazar cuenta con Google" #: nextend-facebook-connect/providers/google/google.php:108 msgid "Unlink account from Google" msgstr "Desenlazar cuenta de Google" #: nextend-facebook-connect/providers/google/google.php:285 #, fuzzy, php-format #| msgid "Required scope: %1$s" msgid "Required API: %1$s" msgstr "Alcance requerido: %1$s" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Name your project and then click on the Create button" msgid "Find your App and click on the \"Details\" button" msgstr "Denomina tu proyecto y luego haz clic en el botón Create" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11 msgid "" "The Edit button can be found on the App details tab. Click on it and " "select \"Edit details\"" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "Add the following URL to the \"Callback URL\" field: %s" msgid "Add the following URL to the \"Callback URLs\" field: %s" msgstr "Agrega la siguiente URL al campo de \"Callback URL\": %s" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17 #, fuzzy, php-format #| msgid "Log in with your %s credentials if you are not logged in" msgid "Log in with your %s credentials if you are not logged in yet" msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18 msgid "" "If you don't have a developer account yet, please apply one by filling all " "the required details! This is required for the next steps!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19 #, php-format msgid "" "Once your developer account is complete, navigate back to %s if you " "aren't already there!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "" #| "Fill the name and description fields. Then enter your site's URL to the " #| "Website field: %s" msgid "" "Fill the App name, Application description fields. Then enter " "your site's URL to the Website URL field: %s" msgstr "" "Llena los campos de nombre y descripción. Luego ingresa la URL de tu sitio " "en el campo Website: %s" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21 msgid "Tick the checkbox next to Enable Sign in with Twitter!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23 msgid "" "Fill the “Terms of Service URL\", \"Privacy policy URL\" and " "\"Tell us how this app will be used\" fields!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24 #, fuzzy #| msgid "Click on the Create button" msgid "Click the Create button." msgstr "Haz clic en el botón Create" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25 #, fuzzy #| msgid "Name your project and then click on the Create button" msgid "Read the Developer Terms and click the Create button again!" msgstr "Denomina tu proyecto y luego haz clic en el botón Create" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26 msgid "Select the Permissions tab and click Edit." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27 msgid "" "Tick the Request email address from users under the Additional " "permissions section and click Save." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28 #, fuzzy #| msgid "" #| "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret" msgid "" "Go to the Keys and tokens tab and find the API key and API " "secret key" msgstr "" "Ve a la pestaña Keys and Access Tokens y busca la Consumer Key y Secret" #: nextend-facebook-connect/providers/twitter/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:26 msgid "API Key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:38 #, fuzzy #| msgid "Secure key" msgid "API secret key" msgstr "Secure key" #: nextend-facebook-connect/providers/twitter/admin/settings.php:57 msgid "Profile image size" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:71 msgid "Original" msgstr "" #: nextend-facebook-connect/providers/twitter/twitter.php:69 msgid "Continue with Twitter" msgstr "Sigue con Twitter" #: nextend-facebook-connect/providers/twitter/twitter.php:70 msgid "Link account with Twitter" msgstr "Enlazar cuenta con Twitter" #: nextend-facebook-connect/providers/twitter/twitter.php:71 msgid "Unlink account from Twitter" msgstr "Desenlazar cuenta de Twitter" #: nextend-facebook-connect/widget.php:10 #, php-format msgid "%s Buttons" msgstr "%s Botones" #: nextend-facebook-connect/widget.php:30 msgid "Title:" msgstr "Titulo:" #: nextend-facebook-connect/widget.php:38 msgid "Button style:" msgstr "Estilo de Botón:" #: nextend-facebook-connect/widget.php:53 #, fuzzy #| msgid "Buttons" msgid "Button align:" msgstr "Botones" #: nextend-facebook-connect/widget.php:85 msgid "Show link buttons" msgstr "Mostrar botones de enlazar" #: nextend-facebook-connect/widget.php:94 msgid "Show unlink buttons" msgstr "Mostrar botones de desenlazar" #: nextend-social-login-pro/class-provider-extension.php:117 msgid "Social login is not allowed with this role!" msgstr "¡Social login no esta permitido con este rol!" #: nextend-social-login-pro/class-provider-extension.php:213 #: nextend-social-login-pro/class-provider-extension.php:216 #: nextend-social-login-pro/class-provider-extension.php:222 #: nextend-social-login-pro/class-provider-extension.php:229 #: nextend-social-login-pro/class-provider-extension.php:300 #: nextend-social-login-pro/class-provider-extension.php:303 #: nextend-social-login-pro/class-provider-extension.php:307 msgid "ERROR" msgstr "ERROR" #: nextend-social-login-pro/class-provider-extension.php:213 msgid "Please enter a username." msgstr "Por favor introduce un usuario." #: nextend-social-login-pro/class-provider-extension.php:216 msgid "" "This username is invalid because it uses illegal characters. Please enter a " "valid username." msgstr "" "Este usuario no es válido porque usa caracteres ilegales. Por favor ingresa " "un usuario válido." #: nextend-social-login-pro/class-provider-extension.php:222 msgid "This username is already registered. Please choose another one." msgstr "Este nombre de usuario ya está registrado. Por favor escoge otro." #: nextend-social-login-pro/class-provider-extension.php:229 msgid "Sorry, that username is not allowed." msgstr "Lo sentimos, ese usuario no está permitido." #: nextend-social-login-pro/class-provider-extension.php:247 msgid "Username" msgstr "Usuario" #: nextend-social-login-pro/class-provider-extension.php:300 msgid "Please enter an email address." msgstr "Por favor introduce un email." #: nextend-social-login-pro/class-provider-extension.php:303 msgid "The email address isn’t correct." msgstr "El email no es correcto." #: nextend-social-login-pro/class-provider-extension.php:307 msgid "This email is already registered, please choose another one." msgstr "Este email ya esta registrado, por favor escoge otro." #: nextend-social-login-pro/class-provider-extension.php:327 msgid "Registration confirmation will be emailed to you." msgstr "La confirmación de registro será enviada por email." #: nextend-social-login-pro/class-provider-extension.php:378 msgid "ERROR: Please enter a password." msgstr "ERROR: Por favor introduce una contraseña." #: nextend-social-login-pro/class-provider-extension.php:384 msgid "ERROR: Passwords may not contain the character \"\\\"." msgstr "" "ERROR: Contraseñas no pueden contener el caracter \"\\\"." #: nextend-social-login-pro/class-provider-extension.php:390 msgid "" "ERROR: Please enter the same password in both password " "fields." msgstr "" "ERROR: Por favor introduce la misma contraseña en los dos " "campos de contraseña." #: nextend-social-login-pro/class-provider-extension.php:407 msgid "Password" msgstr "Contraseña" #: nextend-social-login-pro/class-provider-extension.php:417 msgid "Strength indicator" msgstr "Indicador de dificultad" #: nextend-social-login-pro/class-provider-extension.php:422 msgid "Confirm use of weak password" msgstr "Confirmar el uso de contraseña débil" #: nextend-social-login-pro/class-provider-extension.php:428 msgid "Confirm password" msgstr "Confirmar contraseña" #: nextend-social-login-pro/class-provider-extension.php:440 #, php-format msgid "" "This email is already registered, please login in to your account to link " "with %1$s." msgstr "" "Este email ya está registrado, por favor inicia sesión en tu cuenta para " "vincularlo con %1$s." #: nextend-social-login-pro/nextend-social-login-pro.php:54 #, php-format msgid "Please install and activate %1$s to use the %2$s" msgstr "Por favor instala y activa %1$s para usar el %2$s" #: nextend-social-login-pro/nextend-social-login-pro.php:68 msgid "Network Activate" msgstr "Activar Red" #: nextend-social-login-pro/nextend-social-login-pro.php:80 msgid "Install now!" msgstr "¡Instalar ahora!" #: nextend-social-login-pro/provider-extensions/facebook.php:74 #, php-format msgid "" "The Facebook Sync data needs an approved %1$s and your App must use the " "latest %2$s version!" msgstr "" #: nextend-social-login-pro/provider-extensions/google.php:176 #, php-format msgid "" "Most of these information can only be retrieved, when the field is marked as " "Public on the user's %s page!" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26 #, php-format msgid "Visit %s" msgstr "Visita %s" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30 #, fuzzy #| msgid "" #| "On the right side, under \"Manage\", hover over the gear icon and select " #| "\"Web Settings\" option." msgid "" "On the right side, under \"Manage\", hover over the gear icon and " "select \"Web Settings\" option." msgstr "" "En el lado derecho, en \"Manage\", desplaza el cursor sobre el ícono de " "ajustes y selecciona la opción \"Web Settings\"." #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31 #, fuzzy #| msgid "Click \"Edit\"." msgid "Click \"Edit\"." msgstr "Haz clic en \"Edit\"." #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Allowed Return URLs\" field %s " msgid "" "Add the following URL to the \"Allowed Return URLs\" field %s " msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" %s " #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" "Para permitir que tus visitantes inicien sesión con su cuenta %1$s, primero " "debes crear una aplicación %1$s. La siguiente guía te ayudará a través del " "proceso de creación de la aplicación %1$s. Después de haber creado tu " "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" " "dados según tu aplicación %1$s." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in." msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27 #, fuzzy #| msgid "" #| "If you don't have a Security Profile yet, you'll need to create one. You " #| "can do this by clicking on the orange \"Create a New Security Profile\" " #| "button on the left side." msgid "" "If you don't have a Security Profile yet, you'll need to create one. You can " "do this by clicking on the orange \"Create a New Security Profile\" " "button on the left side." msgstr "" "Si aún no tienes un Security Profile, deberás crear uno. Puedes hacer esto " "haciendo clic en el botón naranja \"Create a New Security Profile\" en el " "lado izquierdo." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28 #, fuzzy #| msgid "" #| "Fill \"Security Profile Name\", \"Security Profile Description\" and " #| "\"Consent Privacy Notice URL\"." msgid "" "Fill \"Security Profile Name\", \"Security Profile Description" "\" and \"Consent Privacy Notice URL\"." msgstr "" "Llena \"Security Profile Name\", \"Security Profile Description\" y " "\"Consent Privacy Notice URL\"." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29 #, fuzzy #| msgid "Once you filled all the required fields, click \"Save\"." msgid "Once you filled all the required fields, click \"Save\"." msgstr "" "Una vez que hayas completado todos los campos requeridos, haz clic en " "\"Guardar\"." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32 #, fuzzy, php-format #| msgid "" #| "Fill \"Allowed Origins\" with the url of your homepage, probably: %s" msgid "" "Fill \"Allowed Origins\" with the url of your homepage, probably: " "%s" msgstr "" "Llena \"Allowed Origins\" con la url de tu página principal, probablemente: " "%s" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28 #, fuzzy #| msgid "When all fields are filled, click \"Save\"." msgid "When all fields are filled, click \"Save\"." msgstr "" "Una vez que hayas completado todos los campos, haz clic en \"Guardar\"." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:35 #, fuzzy #| msgid "" #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of " #| "the page." msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" at the " "middle of the page, under the \"Web Settings\" tab." msgstr "Busca la \"Client ID\" y \"Client Secret\" en el medio de la página." #: nextend-social-login-pro/providers/amazon/amazon.php:39 msgid "Continue with Amazon" msgstr "Sigue con Amazon" #: nextend-social-login-pro/providers/amazon/amazon.php:40 msgid "Link account with Amazon" msgstr "Enlazar cuenta con Amazon" #: nextend-social-login-pro/providers/amazon/amazon.php:41 msgid "Unlink account from Amazon" msgstr "Desenlazar cuenta de Amazon" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21 #, fuzzy #| msgid "Click on the Manage button at the App" msgid "Click on the name of your service." msgstr "Haz clic en el botón Manage en la App" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22 msgid "" "Click the \"Configure\" button next to \"Sign In with Apple\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53 #, php-format msgid "Click the blue + icon next to %1$s heading." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79 #, fuzzy, php-format #| msgid "Fill the \"Base domain\" field with your domain, probably: %s" msgid "" "Fill the \"Domains and Subdomains\" field with your domain name " "probably: %s" msgstr "" "Llena el campo \"Base domain\" con tu dominio, probablemente: %s" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:80 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Allowed Return URLs\" field %s " msgid "Add the following URL to the \"Return URLs\" field: %s" msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" %s " #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:26 msgid "" "Finally press \"Next\" then \"Done\" and finally click on the " "\"Continue\" and the \"Save\" button!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30 #, fuzzy, php-format #| msgid "" #| "To allow your visitors to log in with their %1$s account, first you must " #| "create an %1$s App. The following guide will help you through the %1$s " #| "App creation process. After you have created your %1$s App, head over to " #| "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to " #| "your %1$s App." msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\", \"%3$s\", \"%4$s\" and \"%5$s" "\" according to your %1$s App." msgstr "" "Para permitir que tus visitantes inicien sesión con su cuenta %1$s, primero " "debes crear una aplicación %1$s. La siguiente guía te ayudará a través del " "proceso de creación de la aplicación %1$s. Después de haber creado tu " "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" " "dados según tu aplicación %1$s." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35 msgid "" "Make sure you have an active subscription for the Apple Developer " "Program!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36 msgid "" "Make sure your site have SSL, since Apple only allows HTTPS urls!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:41 msgid "1.) Create the associated App:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the %2$s " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:44 msgid "Enter a \"Description\"" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45 #, php-format msgid "" "At the \"Bundle ID\" field select the \"Explicit\" option and " "enter your domain name in reverse-domain name style, with the name of the " "app at its end: %s.nslapp" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46 msgid "" "Under the \"Capabilities\" section, tick the \"Sign In with Apple\" option." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47 msgid "" "Scroll up and press the \"Continue\" button and then the " "\"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50 msgid "2.) Create the Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:52 #, php-format msgid "On the left hand side, click on the \"%s\" tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:54 #, fuzzy #| msgid "Enter the title of your app and select \"Websie\"." msgid "Enter a name in the Key Name field." msgstr "Ingresa el título de tu app y selecciona \"Websie\"." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55 msgid "" "Tick the \"Sign In with Apple\" option, then click on \"Configure\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56 msgid "" "If you have multiple Apps, then at the \"Choose a Primary App ID\" " "field select the App what you just created, then click \"Save" "\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57 msgid "" "Finally press the \"Continue\" button and then the \"Register" "\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58 msgid "Don't download the key yet!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61 msgid "3.) Create the Service:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:63 #, php-format msgid "" "Go to the \"%1$s\" section, what you will find within the \"%2$s\" " "tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the \"%2$s\" " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:65 msgid "Enter a \"Description\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66 #, php-format msgid "" "At the \"Identifier\" field enter your domain name in reverse-domain " "name style, with the name of the client at its end: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69 msgid "Note: This will also be used as Service Identifier later!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72 msgid "" "Press the \"Continue\" button and then the \"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:73 #, php-format msgid "In the \"%1$s\" section, click the service you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76 msgid "" "Tick the \"Sign In with Apple\" option and click the \"Configure\" button next to it." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:78 msgid "" "If you have multiple Apps, then at the \"Primary App ID\" field select the " "App what you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:83 msgid "" "Save the configuration by clicking on the \"Save\" button and " "pressing \"Done\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:84 msgid "" "Finally press the \"Continue\" button and then the \"Save\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:87 msgid "4.) Configure Nextend Social Login with your credentials:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:89 msgid "Go to Nextend Social Login > Providers > Apple > Settings tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:90 msgid "Private Key ID:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:92 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:110 #, fuzzy, php-format #| msgid "Navigate to %s" msgid "Navigate to: %s" msgstr "Navegar a %s" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:93 #, fuzzy #| msgid "Click on the Manage button at the App" msgid "Click on the name of your Key." msgstr "Haz clic en el botón Manage en la App" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:94 msgid "You will find your \"Private Key ID\" under \"Key ID\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:97 msgid "Private Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99 msgid "" "Click the \"Download\" button to download the key file. Once this " "file is downloaded, it will no longer be available, so make sure you keep " "this file safe! " msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:100 msgid "" "Open the downloaded file with a text editor, like Notepad, copy " "all of its contents and paste it into the \"Private Key" "\" field of Nextend Social Login." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:103 msgid "Team Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105 msgid "" "A 10 character long identifier, what you can find on the top-right " "corner, just under your name." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:108 msgid "Service Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111 #, php-format msgid "" "You will find it under the \"IDENTIFIER\" column. If you configured " "the service according to the suggestions, it will probably end to .nslclient " "e.g.: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:114 #, fuzzy #| msgid "Once you filled all the required fields, click \"Save\"." msgid "" "Once you filled up all the fields, click on the \"Generate Token\" " "button." msgstr "" "Una vez que hayas completado todos los campos requeridos, haz clic en " "\"Guardar\"." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115 msgid "Finally verify the settings and enable the provider!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:116 msgid "" "When you need to change your credentials for some reason, then you must " "delete the token, copy the new credentials and generate a new token!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:48 msgid "Delete credentials" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:78 msgid "Private Key ID" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:89 msgid "Private Key" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:99 msgid "Team Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:107 msgid "Service Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:117 msgid "Generate Token" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:53 #, fuzzy #| msgid "Continue with Google" msgid "Continue with Apple" msgstr "Sigue con Google" #: nextend-social-login-pro/providers/apple/apple.php:54 #, fuzzy #| msgid "Link account with Google" msgid "Link account with Apple" msgstr "Enlazar cuenta con Google" #: nextend-social-login-pro/providers/apple/apple.php:55 #, fuzzy #| msgid "Unlink account from Google" msgid "Unlink account from Apple" msgstr "Desenlazar cuenta de Google" #: nextend-social-login-pro/providers/apple/apple.php:107 #: nextend-social-login-pro/providers/apple/apple.php:204 #: nextend-social-login-pro/providers/apple/apple.php:221 #, php-format msgid "Token generation failed: %1$s" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:107 msgid "Please check your credentials!" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:204 msgid "Private key format is not valid!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10 #, fuzzy, php-format #| msgid "Click on the Manage button at the App" msgid "Click on the name of your %s App." msgstr "Haz clic en el botón Manage en la App" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "Find the necessary Authentication Keys under the Authentication menu" msgid "" "Select the \"Settings\" tab and scroll down to the Authentication " "section!" msgstr "Busca las Authentication Keys abajo del menú Authentication" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23 #, fuzzy, php-format #| msgid "Add the following URL to the \"Callback URL\" field: %s" msgid "Add the following URL to the \"Callback URL\" field %s " msgstr "Agrega la siguiente URL al campo de \"Callback URL\": %s" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on the \"Save Changes\" button." msgstr "Haz clic en \"Guardar Cambios\"" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "" "Click on the \"Registering new application\" button under the " "Applications tab." msgstr "Haz clic en el botón de \"Create New App\" por favor" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18 msgid "Enter a \"Label\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Fill \"Website URL\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website\" with the url of your homepage, probably: %s" msgstr "" "Llena \"Website URL\" con la URL de tu página principal, probablemente: " "%s" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "" "Complete the Human test and click the \"Register my application\" " "button." msgstr "Haz clic en el botón de \"Create New App\" por favor" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21 #, fuzzy, php-format #| msgid "Fill the \"Base domain\" field with your domain, probably: %s" msgid "Fill the \"Domains\" field with your domain name like: %s" msgstr "" "Llena el campo \"Base domain\" con tu dominio, probablemente: %s" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22 #, fuzzy #| msgid "Find the necessary Authentication Keys under the Authentication menu" msgid "" "Select \"Read only\" as Default Access under the Authentication " "section." msgstr "Busca las Authentication Keys abajo del menú Authentication" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on the \"Save Changes\" button!" msgstr "Haz clic en \"Guardar Cambios\"" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25 msgid "Navigate to the \"Details\" tab of your Application!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "Here you can see your \"API Key\" and \"API Secret\". These " "will be needed in the plugin's settings." msgstr "" "Aquí puedes ver tu \"APP ID\" y puedes ver tu \"App secret\" si haces clic " "en el botón \"Mostrar\". Estos serán necesarios en la configuración del " "plugin." #: nextend-social-login-pro/providers/disqus/admin/settings.php:38 #, fuzzy #| msgid "App Secret" msgid "API Secret" msgstr "App Secret" #: nextend-social-login-pro/providers/disqus/disqus.php:86 msgid "Continue with Disqus" msgstr "Sigue con Disqus" #: nextend-social-login-pro/providers/disqus/disqus.php:87 msgid "Link account with Disqus" msgstr "Enlazar cuenta con Disqus" #: nextend-social-login-pro/providers/disqus/disqus.php:88 msgid "Unlink account from Disqus" msgstr "Desenlazar cuenta de Disqus" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10 msgid "Click on your App and go to the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" msgid "Add the following URL to the \"Redirect URLs\" field: %s" msgstr "" "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": %s" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "Hit update to save the changes" msgid "Click on \"Update\" to save the changes" msgstr "Haz clic en update para guardar los cambios" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17 #, fuzzy #| msgid "Locate the blue \"Create application\" button and click on it." msgid "Locate the \"Create app\" button and click on it." msgstr "Busca el botón azul \"Create application\" y haz click en el." #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18 #, fuzzy #| msgid "Enter the title of your app and select \"Websie\"." msgid "Enter the name of your App to the \"App name\" field." msgstr "Ingresa el título de tu app y selecciona \"Websie\"." #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19 #, php-format msgid "" "Find your company page in the \"Company\" field. If you don't have " "one yet, create new one at: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20 msgid "" "Enter your \"Privacy policy URL\" amd upload an \"App logo\"" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21 #, fuzzy #| msgid "Name your project and then click on the Create button" msgid "" "Read and agree the \"API Terms of Use\" then click the \"Create " "App\" button!" msgstr "Denomina tu proyecto y luego haz clic en el botón Create" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22 msgid "" "You will end up in the App setting area. Click on the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" msgid "" "Find \"OAuth 2.0 settings\" section and add the following URL to the " "\"Redirect URLs\" field: %s" msgstr "" "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": %s" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25 #, fuzzy #| msgid "" #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of " #| "the page." msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" under " "the Application credentials section, on the Auth tab." msgstr "Busca la \"Client ID\" y \"Client Secret\" en el medio de la página." #: nextend-social-login-pro/providers/linkedin/linkedin.php:37 msgid "Continue with LinkedIn" msgstr "Sigue con LinkedIn" #: nextend-social-login-pro/providers/linkedin/linkedin.php:38 msgid "Link account with LinkedIn" msgstr "Enlazar cuenta con LinkedIn" #: nextend-social-login-pro/providers/linkedin/linkedin.php:39 msgid "Unlink account from LinkedIn" msgstr "Desenlazar cuenta de LinkedIn" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18 msgid "There is a Sandbox/Live switch. Make sure \"Live\" is selected!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11 #, fuzzy, php-format #| msgid "Click on the Manage button at the App" msgid "Click on the name of your %s App, under the REST API apps section." msgstr "Haz clic en el botón Manage en la App" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading and click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Allowed Return URLs\" field %s " msgid "" "Add the following URL to the \"Live Return URL\" field: %s " msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" %s " #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14 msgid "Click on \"Save\"" msgstr "Haz clic en \"Guardar Cambios\"" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15 #, php-format msgid "" "Editing Live Apps are only possible with a %s. So please make sure you own " "one!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "Click the \"Create App\" button under the REST API apps section." msgstr "Haz clic en el botón de \"Create New App\" por favor" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20 msgid "" "Fill the \"App Name\" field and click \"Create App\" button." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading then click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23 msgid "" "Scroll down to \"App feature options\" section and tick \"Log In " "with PayPal\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24 msgid "" "Click \"Advanced Options\" which can be found at the end of text " "after \"Connect with PayPal (formerly Log In with PayPal)\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25 #, fuzzy #| msgid "Please enter an email address." msgid "Tick \"Full name\"." msgstr "Por favor introduce un email." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:26 msgid "" "\"Email address\" now requires an App Review by PayPal. To get the " "email address as well, please submit your App for a review after your " "App configuration is finished. Once the App review is successful, you need " "to pick \"Email address\" here to retrieve the email of the user. Until then " "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27 msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29 msgid "" "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary " "\"Client ID\" and \"Secret\"! ( Make sure you are in " "\"Live\" mode and not \"Sandbox\". )" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:38 #, fuzzy #| msgid "App Secret" msgid "Secret" msgstr "App Secret" #: nextend-social-login-pro/providers/paypal/admin/settings.php:45 #, fuzzy #| msgid "Email" msgid "Email scope" msgstr "Email" #: nextend-social-login-pro/providers/paypal/admin/settings.php:54 msgid "Disable, when you have no rights for email address." msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:64 msgid "Continue with PayPal" msgstr "Sigue con PayPal" #: nextend-social-login-pro/providers/paypal/paypal.php:65 msgid "Link account with PayPal" msgstr "Enlazar cuenta con PayPal" #: nextend-social-login-pro/providers/paypal/paypal.php:66 msgid "Unlink account from PayPal" msgstr "Desenlazar cuenta de PayPal" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Click on the Manage button at the App" msgid "Click on the \"Manage\" button next to the associated App." msgstr "Haz clic en el botón Manage en la App" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11 #, fuzzy #| msgid "Go to the Settings menu" msgid "Go to the \"Settings\" menu" msgstr "Ve al menú de Ajustes" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized redirect URI:\" field: %s" msgid "" "Add the following URL to the \"Authorized redirect URI\" field: " "%s" msgstr "" "Agrega la siguiente URL al campo \"Authorized redirect URI\": %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17 #, fuzzy #| msgid "Locate the blue \"Create application\" button and click on it." msgid "Locate the blue \"Create app\" button and click on it." msgstr "Busca el botón azul \"Create application\" y haz click en el." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18 #, fuzzy #| msgid "Enter the title of your app and select \"Websie\"." msgid "" "Enter the Title for your App and select \"Website\" as " "platform." msgstr "Ingresa el título de tu app y selecciona \"Websie\"." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Fill \"Site address\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website address\" with the url of your homepage, probably: " "%s" msgstr "" "Llena \"Site address\" con la url de tu página principal, probablemente: " "%s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "Fill the \"Base domain\" field with your domain, probably: %s" msgid "" "Fill the \"Base domain\" field with your domain, probably: %s" msgstr "" "Llena el campo \"Base domain\" con tu dominio, probablemente: %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21 #, fuzzy #| msgid "When all fields are filled, click \"Save\"." msgid "When all fields are filled, click the \"Upload app\" button." msgstr "" "Una vez que hayas completado todos los campos, haz clic en \"Guardar\"." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22 #, fuzzy #| msgid "Fill the form for your app and upload an app icon then hit Save." msgid "" "Fill the information form of your app, upload an app icon then " "click Save." msgstr "" "Llena el formulario de tu app y carga un ícono de la app, luego haz clic en " "Guardar." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23 #, fuzzy #| msgid "Pick Settings at the left-hand menu " msgid "Pick Settings at the left-hand menu " msgstr "Escoge Ajustes en el menú de la izquierda" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized redirect URI\" field %s " msgid "" "Add the following URL to the \"Authorized redirect URI\" field %s " msgstr "" "Agrega la siguiente URL al campo \"Authorized redirect URI\": %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25 #, fuzzy #| msgid "Save your app" msgid "Save your app" msgstr "Guarda tu app" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Find the necessary Application ID and Secure key at the top of the " #| "Settings page where you just hit the save button." msgid "" "Find the necessary \"App ID\" and \"Secure key\" at the top of " "the Settings page where you just hit the save button." msgstr "" "Busca la Application ID y Secure key en la parte superior de la página " "Ajustes dónde acabas de hacer clic en el botón de guardar." #: nextend-social-login-pro/providers/vk/admin/settings.php:39 msgid "Secure key" msgstr "Secure key" #: nextend-social-login-pro/providers/vk/vk.php:35 msgid "Continue with VK" msgstr "Sigue con VK" #: nextend-social-login-pro/providers/vk/vk.php:36 msgid "Link account with VK" msgstr "Enlazar cuenta con VK" #: nextend-social-login-pro/providers/vk/vk.php:37 msgid "Unlink account from VK" msgstr "Desenlazar cuenta de VK" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12 msgid "Click \"Manage Settings\" under the Tools section!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" msgid "Add the following URL to the \"Redirect URLs\" field %s " msgstr "" "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": %s" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "Click on the \"Create New Application\" button." msgstr "Haz clic en el botón de \"Create New App\" por favor" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18 msgid "Enter a \"Name\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Fill \"Website URL\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website URL\" with the url of your homepage, probably: %s" msgstr "" "Llena \"Website URL\" con la URL de tu página principal, probablemente: " "%s" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21 msgid "You can leave the \"Javascript Origins\" field blank!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22 msgid "Complete the human verification test." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23 msgid "At the \"Type\" make sure \"Web\" is selected!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "Click the \"Create\" button!" msgstr "Haz clic en el botón de \"Create New App\" por favor" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25 msgid "" "Click the name of your App either in the Breadcrumb navigation or " "next to Editing!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "Here you can see your \"Client ID\" and \"Client Secret\". " "These will be needed in the plugin's settings." msgstr "" "Aquí puedes ver tu \"APP ID\" y puedes ver tu \"App secret\" si haces clic " "en el botón \"Mostrar\". Estos serán necesarios en la configuración del " "plugin." #: nextend-social-login-pro/providers/wordpress/wordpress.php:73 msgid "Continue with WordPress.com" msgstr "Sigue con WordPress.com" #: nextend-social-login-pro/providers/wordpress/wordpress.php:74 msgid "Link account with WordPress.com" msgstr "Enlazar cuenta con WordPress.com" #: nextend-social-login-pro/providers/wordpress/wordpress.php:75 msgid "Unlink account from WordPress.com" msgstr "Desenlazar cuenta de WordPress.com" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10 msgid "Click on the App which has its credentials associated with the plugin." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" msgid "" "Add the following URL to the \"Redirect URI(s)\" field: %s" msgstr "" "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": %s" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "Click on the \"Create an App\" button on the top right corner." msgstr "Haz clic en el botón de \"Create New App\" por favor" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19 msgid "" "Fill the \"Application Name\" and select \"Web Application\" " "at \"Application Type\"." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20 msgid "Enter a \"Description\" for your app!" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Allowed Return URLs\" field %s " msgid "" "Enter the URL of your site to the \"Home Page URL\" field: %s" msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" %s " #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23 msgid "" "Under the \"API Permissions\" you should select \"OpenID Connect " "Permissions\" with both \"Email\" and \"Profile\" enabled." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:24 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "Click \"Create App\"." msgstr "Haz clic en el botón de \"Create New App\" por favor" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:25 #, fuzzy #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "On the top of the page, you will find the necessary \"Client ID\" and " "\"Client Secret\"! These will be needed in the plugin's settings." msgstr "" "Aquí puedes ver tu \"APP ID\" y puedes ver tu \"App secret\" si haces clic " "en el botón \"Mostrar\". Estos serán necesarios en la configuración del " "plugin." #: nextend-social-login-pro/providers/yahoo/yahoo.php:64 #, fuzzy #| msgid "Continue with Facebook" msgid "Continue with Yahoo" msgstr "Sigue con Facebook" #: nextend-social-login-pro/providers/yahoo/yahoo.php:65 #, fuzzy #| msgid "Link account with Facebook" msgid "Link account with Yahoo" msgstr "Enlazar cuenta con Facebook" #: nextend-social-login-pro/providers/yahoo/yahoo.php:66 #, fuzzy #| msgid "Unlink account from Facebook" msgid "Unlink account from Yahoo" msgstr "Desenlazar cuenta de Facebook" #: nextend-social-login-pro/providers/yahoo/yahoo.php:186 #, fuzzy, php-format #| msgid "Required scope: %1$s" msgid "Required permission: %1$s" msgstr "Alcance requerido: %1$s" #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10 #: nextend-social-login-pro/template-parts/login/above-separator.php:20 #: nextend-social-login-pro/template-parts/login/below-separator.php:8 #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10 msgid "OR" msgstr "O" #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1 #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1 msgid "Social accounts" msgstr "Cuentas sociales" #~ msgid "Click on blue \"Create App ID\" button" #~ msgstr "Haz clic en el botón azul \"Create App ID\" por favor" #, fuzzy #~| msgid "In the left sidebar, click on \"Facebook Login/Settings\"" #~ msgid "" #~ "In the left sidebar under the Products section, click on \"Facebook Login" #~ "\" and select Settings" #~ msgstr "" #~ "En la barra lateral izquierda, haz clic en \"Facebook Login/Ajustes\"" #, fuzzy #~| msgid "In the top of the left sidebar, click on \"Settings\"" #~ msgid "" #~ "In the top of the left sidebar, click on \"Settings\" and select \"Basic\"" #~ msgstr "" #~ "En la parte superior de la barra lateral izquierda, haz clic en \"Ajustes" #~ "\"" #, php-format #~ msgid "Click on OAuth 2.0 client ID: %s" #~ msgstr "Haz clic en la ID del cliente de OAuth 2.0: %s" #~ msgid "" #~ "Click on the \"Credentials\" in the left hand menu to create new API " #~ "credentials" #~ msgstr "" #~ "Haz clic en \"Credentials\" en el menú de la izquierda para crear nuevas " #~ "credenciales de API" #, fuzzy #~| msgid "" #~| "Go back to the Credentials tab and locate the small box at the middle. " #~| "Click on the blue \"Create credentials\" button. Chose the \"OAuth " #~| "client ID\" from the dropdown list." #~ msgid "" #~ "Click the Create credentials button and select \"OAuth client ID\" from " #~ "the dropdown." #~ msgstr "" #~ "Regresa a la pestaña de Credentials y ubica la pequeña caja en el medio. " #~ "Haz clic en el botón azul \"Create credentials\". Elija la \"OAuth client " #~ "ID\" de la lista desplegable." #~ msgid "Your application type should be \"Web application\"" #~ msgstr "Tu tipo de aplicación debe ser \"Web application\"" #~ msgid "Name your application" #~ msgstr "Nombra tu aplicación" #, fuzzy #~| msgid "Click on the \"Create New App\" button" #~ msgid "Click the \"Save Changes\" button!" #~ msgstr "Haz clic en el botón de \"Create New App\" por favor" #~ msgid "Click on the App" #~ msgstr "Haz clic en la App" #, php-format #~ msgid "" #~ "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" #~ msgstr "" #~ "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": %s" #, fuzzy #~| msgid "Click on the \"Create New App\" button" #~ msgid "Click the \"Create App\" button." #~ msgstr "Haz clic en el botón de \"Create New App\" por favor" #~ msgid "Locate the blue \"Create application\" button and click on it." #~ msgstr "Busca el botón azul \"Create application\" y haz click en el." #~ msgid "When all fields are filled, create you app." #~ msgstr "Cuando todos campos estén llenos, crea tu app." #~ msgid "" #~ "You'll be sent a confirmation code via SMS which you need to type to be " #~ "able to create the app." #~ msgstr "" #~ "Se te enviará un código de confirmación a través de SMS que deberás " #~ "utilizar para poder crear la app." #~ msgid "Application ID" #~ msgstr "Application ID" #, fuzzy #~| msgid "Click on \"Save\"" #~ msgid "Click on \"Update\"" #~ msgstr "Haz clic en \"Guardar Cambios\"" #, fuzzy, php-format #~| msgid "" #~| "Fill the \"Base domain\" field with your domain, probably: %s" #~ msgid "" #~ "Check if the saved \"Callback Domain\" matches with your domain: %s" #~ msgstr "" #~ "Llena el campo \"Base domain\" con tu dominio, probablemente: %s" #, fuzzy #~| msgid "" #~| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #~| "you click on the \"Show\" button. These will be needed in plugin's " #~| "settings." #~ msgid "" #~ "Replace your old \"Client ID\" and \"Client Secret\" with the one of the " #~ "new app!" #~ msgstr "" #~ "Aquí puedes ver tu \"APP ID\" y puedes ver tu \"App secret\" si haces " #~ "clic en el botón \"Mostrar\". Estos serán necesarios en la configuración " #~ "del plugin." #~ msgid "Fill \"Display Name\" and \"Contact Email\"" #~ msgstr "Llena \"Nombre para Mostrar\" y \"Email de Contacto\"" #~ msgid "Locate the yellow \"Create application\" button and click on it." #~ msgstr "Busca el botón amarillo \"Create application\" y haz click en el." #~ msgid "Fill the fields marked with *" #~ msgstr "Llena los campos marcados con *" #~ msgid "Accept the Terms of use and hit Submit" #~ msgstr "Acepta los Términos de Uso y da clic en Submit" #~ msgid "Find the necessary Authentication Keys under the Authentication menu" #~ msgstr "Busca las Authentication Keys abajo del menú Authentication" #~ msgid "" #~ "You probably want to enable the \"r_emailaddress\" under the Default " #~ "Application Permissions" #~ msgstr "" #~ "A lo mejor quieres habilitar el \"r_emailaddress\" abajo de los Default " #~ "Application Permissions" #, fuzzy #~| msgid "Log in with your %s credentials if you are not logged in" #~ msgid "Log in with your credentials if you are not logged in" #~ msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión" #~ msgid "" #~ "Move your mouse over Facebook Login and click on the appearing \"Set Up\" " #~ "button" #~ msgstr "" #~ "Mueve tu mouse sobre Facebook Login y haz clic en el botón \"Configurar\" " #~ "que aparece" #~ msgid "Choose Web" #~ msgstr "Escoge Web" #~ msgid "Fill \"Site URL\" with the url of your homepage, probably: %s" #~ msgstr "" #~ "Llena \"Site URL\" con la URL de tu página principal, probablemente: " #~ "%s" #~ msgid "In the left sidebar, click on \"Facebook Login\"" #~ msgstr "En la barra lateral izquierda, haz clic en \"Facebook Login\"" #~ msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab." #~ msgstr "" #~ "Escoge la pestaña \"General\" que está al lado de la pestaña \"Web " #~ "Settings\"." #~ msgid "Legacy" #~ msgstr "Legacy" #~ msgid "" #~ "%s took the place of Nextend Google Connect. You can delete Nextend " #~ "Google Connect as it is not needed anymore." #~ msgstr "" #~ "%s ha reemplazado Nextend Google Connect. Puedes eliminar Nextend Google " #~ "Connect porque ya no es necesario." #~ msgid "" #~ "%s took the place of Nextend Twitter Connect. You can delete Nextend " #~ "Twitter Connect as it is not needed anymore." #~ msgstr "" #~ "%s ha reemplazado Nextend Twitter Connect. Puedes eliminar Nextend " #~ "Twitter Connect porque ya no es necesario." #~ msgid "Import Facebook configuration" #~ msgstr "Importar configuración de Facebook" #~ msgid "Be sure to read the following notices before you proceed." #~ msgstr "Asegúrate de leer los siguientes avisos antes de continuar." #~ msgid "Important steps before the import" #~ msgstr "Pasos importantes antes de la importación" #~ msgid "" #~ "Make sure that the redirect URI for your app is correct before proceeding." #~ msgstr "" #~ "Asegúrate de que el URI de redirección para tu aplicación sea correcto " #~ "antes de continuar." #~ msgid "Visit %s." #~ msgstr "Visita %s." #~ msgid "Select your app." #~ msgstr "Selecciona tu aplicación." #~ msgid "" #~ "Go to the Settings menu which you can find below the Facebook Login in " #~ "the left menu." #~ msgstr "" #~ "Ve al menú de Ajustes que se encuentra debajo del Facebook Login en el " #~ "menú de la izquierda." #~ msgid "Make sure that the \"%1$s\" field contains %2$s" #~ msgstr "Asegúrate que el campo \"%1$s\" tiene %2$s" #~ msgid "The following settings will be imported:" #~ msgstr "Se importarán las siguientes configuraciones:" #~ msgid "Your old API configurations" #~ msgstr "Tus configuraciones anteriores de API" #~ msgid "The user prefix you set" #~ msgstr "El prefijo del usuario que estableciste" #~ msgid "Create a backup of the old settings" #~ msgstr "Crear una copia de seguridad de los ajustes anteriores" #~ msgid "Other changes" #~ msgstr "Otros cambios" #~ msgid "" #~ "The custom redirect URI is now handled globally for all providers, so it " #~ "won't be imported from the previous version. Visit \"Nextend Social Login " #~ "> Global settings\" to set the new redirect URIs." #~ msgstr "" #~ "El URI de redireccionamiento personalizado ahora se maneja de forma " #~ "global para todos los proveedores, por lo que no se importará de la " #~ "versión anterior. Visita \"Nextend Social Login > Ajustes Globales\" para " #~ "establecer los nuevos URI de redirección." #~ msgid "" #~ "The login button's layout will be changed to a new, more modern look. If " #~ "you used any custom buttons that won't be imported." #~ msgstr "" #~ "El diseño del botón de inicio de sesión cambiará a un aspecto nuevo y más " #~ "moderno. Si usaste cualquier botón personalizado, no se importará." #~ msgid "" #~ "The old version's PHP functions are not available anymore. This means if " #~ "you used any custom codes where you used these old functions, you need to " #~ "remove them." #~ msgstr "" #~ "Las funciones PHP de la versión anterior ya no están disponibles. Esto " #~ "significa que si usaste algunos códigos personalizados con estas " #~ "funciones anteriores, debes eliminarlas." #~ msgid "" #~ "After the importing process finishes, you will need to test your " #~ "app and enable the provider. You can do both in the next screen." #~ msgstr "" #~ "Una vez que finalice el proceso de importación, deberás probar tu " #~ "aplicación y habilitar el proveedor. Puedes hacer ambas cosas en " #~ "la pantalla siguiente." #~ msgid "Import Configuration" #~ msgstr "Importar Configuración" #~ msgid "Import Google configuration" #~ msgstr "Importar configuración de Google" #~ msgid "If you have more projects, select the one where your app is." #~ msgstr "Si tienes más proyectos, selecciona el que es tu aplicación." #~ msgid "Click on Credentials at the left-hand menu then select your app." #~ msgstr "" #~ "Haz clic en Credentials en el menú de la izquierda y luego selecciona tu " #~ "aplicación." #~ msgid "Import Twitter configuration" #~ msgstr "Importar configuración de Twitter" #~ msgid "Go to the Settings tab." #~ msgstr "Ve a la pestaña de Ajustes." #, fuzzy #~| msgid "" #~| "Go to the OAuth consent screen tab and enter a product name and provide " #~| "the Privacy Policy URL, then click on the save button." #~ msgid "" #~ "If you're prompted to set a product name, do so. Provide the Privacy " #~ "Policy URL as well then click on the save button" #~ msgstr "" #~ "Ve a la pestaña de la pantalla de consentimiento de OAuth e ingresa el " #~ "nombre de un producto y proporciona la URL de la Privacy Policy, luego " #~ "haz clic en el botón guardar." #~ msgid "Authorize your Pro Addon" #~ msgstr "Autoriza tu Pro Addon" #~ msgid "Authorize" #~ msgstr "Autorizar" #~ msgid "Deauthorize Pro Addon" #~ msgstr "Desautorizar Pro Addon" #~ msgid "Click on the \"Settings\" tab" #~ msgstr "Haz clic en la pestaña de Ajustes" #~ msgid "Click on \"Update Settings\"" #~ msgstr "Haz clic en \"Actualizar Ajustes\"" #~ msgid "Accept the Twitter Developer Agreement" #~ msgstr "Aceptar el Twitter Developer Agreement" #~ msgid "" #~ "Create your application by clicking on the Create your Twitter " #~ "application button" #~ msgstr "" #~ "Crea tu aplicación haciendo clic en el botón Create your Twitter " #~ "application" #~ msgid "Consumer Key" #~ msgstr "Consumer Key" #~ msgid "Consumer Secret" #~ msgstr "Consumer Secret" #~ msgid "BuddyPress register form" #~ msgstr "Formulario de registro para BuddyPress" #~ msgid "BuddyPress register button style" #~ msgstr "Estilo del botón de registro BuddyPress" #~ msgid "Comment login button" #~ msgstr "Botón para iniciar sesión para comentar" #~ msgid "Comment button style" #~ msgstr "Estilo de botón para comentar" #~ msgid "Store Avatar" #~ msgstr "Avatar de Tienda" #~ msgid "WooCommerce login form" #~ msgstr "Formulario de iniciar sesión WooCommerce" #~ msgid "Connect button before login form" #~ msgstr "Conectar botón antes del formulario inicio de sesión" #~ msgid "Connect button after login form" #~ msgstr "Conectar botón después del formulario inicio de sesión" #~ msgid "WooCommerce register form" #~ msgstr "Formulario de registro WooCommerce" #~ msgid "Connect button before register form" #~ msgstr "Conectar botón antes del formulario registro" #~ msgid "Connect button after register form" #~ msgstr "Conectar botón después del formulario registro" #~ msgid "Connect button before billing form" #~ msgstr "Conectar botón antes del formulario de facturación" #~ msgid "Connect button after billing form" #~ msgstr "Conectar botón después del formulario de facturación" #~ msgid "WooCommerce account details" #~ msgstr "Detalles de cuenta WooCommerce" #~ msgid "Link buttons before account details" #~ msgstr "Enlazar botones antes de detalles de la cuenta" #~ msgid "WooCommerce button style" #~ msgstr "Estilo de botón WooCommerce" languages/nextend-facebook-connect-hu_HU.po000066600000455237152140537230014751 0ustar00msgid "" msgstr "" "Project-Id-Version: nextend-facebook-connect\n" "POT-Creation-Date: 2020-03-26 11:08+0100\n" "PO-Revision-Date: 2020-03-26 11:08+0100\n" "Last-Translator: \n" "Language-Team: nextend\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.2.4\n" "X-Poedit-Basepath: ../..\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n" "X-Poedit-SearchPath-0: nextend-social-login-pro\n" "X-Poedit-SearchPath-1: nextend-facebook-connect\n" "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/" "compat\n" "X-Poedit-SearchPathExcluded-1: nextend-facebook-connect/providers/google/" "compat\n" "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/" "compat\n" #: nextend-facebook-connect/NSL/GDPR.php:34 msgid "What personal data we collect and why we collect it" msgstr "Milyen személyes adatokat gyüjtünk, és miért gyüjtjük" #: nextend-facebook-connect/NSL/GDPR.php:35 #, php-format msgid "" "%1$s collects data when a visitor register, login or link the account with " "with any of the enabled social provider. It collects the following data: " "email address, name, social provider identifier and access token. Also it " "can collect profile picture and more fields with the Pro Addon's sync data " "feature." msgstr "" "%1$s adatot gyüjt amikor a látogató regisztrál, bejelentkezik vagy linkeli a " "fiókját bármely engedélyezett social providerhez. A következő adatok lesznek " "begyüjtve: email address, name, social provider identifier and access token. " "Ezenkívül még begyüjthető a profil kép és más mezők amelyek a Pro Addon sync " "data funkciójából származik." #: nextend-facebook-connect/NSL/GDPR.php:37 msgid "Who we share your data with" msgstr "Kivel osztjuk meg az adataid" #: nextend-facebook-connect/NSL/GDPR.php:38 #, php-format msgid "" "%1$s stores the personal data on your site and does not share it with anyone " "except the access token which used for the authenticated communication with " "the social providers." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:40 msgid "Does the plugin share personal data with third parties" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:41 #, php-format msgid "" "%1$s use the access token what the social provider gave to communicate with " "the providers to verify account and securely access personal data." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:43 msgid "How long we retain your data" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:44 #, php-format msgid "" "%1$s removes the collected personal data when the user deleted from " "WordPress." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:46 msgid "Does the plugin use personal data collected by others?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:47 #, php-format msgid "" "%1$s use the personal data collected by the social providers to create " "account on your site when the visitor authorize it." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:49 msgid "Does the plugin store things in the browser?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:50 #, php-format msgid "" "Yes, %1$s must create a cookie for visitors who use the social login " "authorization flow. This cookie required for every provider to secure the " "communication and to redirect the user back to the last location." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:52 msgid "Does the plugin collect telemetry data, directly or indirectly?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:53 #: nextend-facebook-connect/NSL/GDPR.php:56 msgid "No" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:55 msgid "" "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a " "third party?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:99 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57 msgid "User" msgstr "Felhasználó" #: nextend-facebook-connect/admin/admin.php:203 #, php-format msgid "%s needs json_decode function." msgstr "A %s-nak szüksége van a json_decode függvényre." #: nextend-facebook-connect/admin/admin.php:203 msgid "Please contact your server administrator and ask for solution!" msgstr "" "Kérlek lépj kapcsolatba a szerveradminisztrátorral és kérj tőle segítséget!" #: nextend-facebook-connect/admin/admin.php:235 #: nextend-facebook-connect/admin/admin.php:265 msgid "Settings saved." msgstr "Beállítások elmentve." #: nextend-facebook-connect/admin/admin.php:244 msgid "The activation was successful" msgstr "Az aktiváció sikeres volt" #: nextend-facebook-connect/admin/admin.php:255 msgid "Deactivate completed." msgstr "A deaktiválás befejeződött." #: nextend-facebook-connect/admin/admin.php:433 #: nextend-facebook-connect/admin/templates-provider/menu.php:15 #: nextend-facebook-connect/admin/templates/providers.php:81 #: nextend-facebook-connect/admin/templates/providers.php:93 #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Settings" msgstr "Beállítások" #: nextend-facebook-connect/admin/admin.php:516 #: nextend-facebook-connect/includes/oauth2.php:141 #: nextend-facebook-connect/includes/oauth2.php:286 #: nextend-facebook-connect/providers/facebook/facebook-client.php:84 #: nextend-facebook-connect/providers/twitter/twitter-client.php:165 #: nextend-social-login-pro/providers/apple/apple-client.php:87 #, php-format msgid "Unexpected response: %s" msgstr "Nem várt válasz: %s" #: nextend-facebook-connect/admin/admin.php:577 #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21 #, php-format msgid "" "%s detected that your login url changed. You must update the Oauth redirect " "URIs in the related social applications." msgstr "" "%s érzékelte hogy a bejelentkezési url megváltozott. Frissitened kell az " "\"Oauth redirect URIs\" értékeket a konfigurált alkalmazásaidban." #: nextend-facebook-connect/admin/admin.php:578 msgid "Fix Error" msgstr "Hiba javítása" #: nextend-facebook-connect/admin/admin.php:578 msgid "Oauth Redirect URI" msgstr "Oauth Redirect URI" #: nextend-facebook-connect/admin/admin.php:588 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You need the Pro Addon to " "display Social Login buttons in %2$s login form!" msgstr "" "%1$s érzékelte hogy a(z) %2$s telepítve van az oldaladon. Ahoz, hogy a " "social login gombok megjelenjenek a(z) %2$s login formokban, a Pro Addon-ra " "van szükséged!" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss and check Pro Addon" msgstr "Eltüntent és Pro Addon ellenörzése." #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss" msgstr "Eltüntet" #: nextend-facebook-connect/admin/admin.php:595 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You must set \"Page for " "register flow\" and \"OAuth redirect uri proxy page\" in %1$s to " "work properly." msgstr "" #: nextend-facebook-connect/admin/admin.php:596 msgid "Fix now" msgstr "Javítás most" #: nextend-facebook-connect/admin/admin.php:620 msgid "Activate your Pro Addon" msgstr "Pro Addon aktiválása" #: nextend-facebook-connect/admin/admin.php:621 msgid "" "To be able to use the Pro features, you need to activate Nextend Social " "Connect Pro Addon. You can do this by clicking on the Activate button below " "then select the related purchase." msgstr "" "A Pro funkciók használatához aktiválnod kell a Nextend Social Login Pro " "Addon-t. Ezt megteheted az Activate gombra való kattintással és a társított " "vásárlás kiválasztásával." #: nextend-facebook-connect/admin/admin.php:626 #: nextend-social-login-pro/nextend-social-login-pro.php:60 msgid "Activate" msgstr "Aktiválás" #: nextend-facebook-connect/admin/admin.php:724 msgid "License key" msgstr "Licensz kulcs" #: nextend-facebook-connect/admin/admin.php:747 msgid "OAuth proxy page" msgstr "OAuth proxy page" #: nextend-facebook-connect/admin/admin.php:750 msgid "Register flow page" msgstr "Register flow page" #: nextend-facebook-connect/admin/interim.php:12 #: nextend-facebook-connect/admin/interim.php:23 msgid "You have logged in successfully." msgstr "Sikeresen bejelentkeztél" #: nextend-facebook-connect/admin/templates-provider/buttons.php:79 msgid "Login label" msgstr "Bejelentkezés felirat" #: nextend-facebook-connect/admin/templates-provider/buttons.php:84 #: nextend-facebook-connect/admin/templates-provider/buttons.php:95 #: nextend-facebook-connect/admin/templates-provider/buttons.php:106 #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #: nextend-facebook-connect/admin/templates-provider/buttons.php:165 #: nextend-facebook-connect/admin/templates/settings/privacy.php:53 msgid "Reset to default" msgstr "Alapbeállítás visszaállítása" #: nextend-facebook-connect/admin/templates-provider/buttons.php:89 msgid "Link label" msgstr "Profil összekapcsolás felirat" #: nextend-facebook-connect/admin/templates-provider/buttons.php:101 msgid "Unlink label" msgstr "Profile szétkapcsolás felirat" #: nextend-facebook-connect/admin/templates-provider/buttons.php:112 msgid "Default button" msgstr "Alap gomb" #: nextend-facebook-connect/admin/templates-provider/buttons.php:128 #: nextend-facebook-connect/admin/templates-provider/buttons.php:158 msgid "Use custom button" msgstr "Egyedi gomb használata" #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #, php-format msgid "Use the %s in your custom button's code to make the label show up." msgstr "Használd a %s azonosítót, hogy megfelenjen a gomb felirat." #: nextend-facebook-connect/admin/templates-provider/buttons.php:143 msgid "Icon button" msgstr "Ikon gomb" #: nextend-facebook-connect/admin/templates-provider/buttons.php:174 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140 #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170 #: nextend-facebook-connect/admin/templates/settings/comment.php:73 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171 #: nextend-facebook-connect/admin/templates/settings/privacy.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186 #: nextend-facebook-connect/admin/templates/settings/userpro.php:167 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:254 #: nextend-facebook-connect/providers/facebook/admin/settings.php:57 #: nextend-facebook-connect/providers/google/admin/settings.php:62 #: nextend-facebook-connect/providers/twitter/admin/settings.php:48 #: nextend-social-login-pro/providers/amazon/admin/settings.php:47 #: nextend-social-login-pro/providers/disqus/admin/settings.php:47 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47 #: nextend-social-login-pro/providers/paypal/admin/settings.php:60 #: nextend-social-login-pro/providers/vk/admin/settings.php:48 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47 msgid "Save Changes" msgstr "Változtatások Mentése" #: nextend-facebook-connect/admin/templates-provider/menu.php:13 #: nextend-facebook-connect/admin/templates/providers.php:61 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17 #: nextend-facebook-connect/providers/google/admin/getting-started.php:9 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8 msgid "Getting Started" msgstr "Első Lépések" #: nextend-facebook-connect/admin/templates-provider/menu.php:17 msgid "Buttons" msgstr "Gombok" #: nextend-facebook-connect/admin/templates-provider/menu.php:21 msgid "Sync data" msgstr "Sync data" #: nextend-facebook-connect/admin/templates-provider/menu.php:24 msgid "Usage" msgstr "Használat" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11 msgid "Other settings" msgstr "Egyéb beállítások" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16 msgid "Username prefix on register" msgstr "Felhasználónév előtag regisztrációkor" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23 msgid "Fallback username prefix on register" msgstr "Fallback felhasználónév előtag regisztrácókor" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27 msgid "Used when username is invalid or not stored" msgstr "Akkor van használva ha a felhasználónév helytelen vagy nincs tárolva." #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32 #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #: nextend-facebook-connect/admin/templates/settings/privacy.php:35 msgid "Terms and conditions" msgstr "Felhasználási feltételek" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #, php-format msgid "Override global \"%1$s\"" msgstr "Globális \"%1$s\" felülírása." #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12 msgid "PRO settings" msgstr "PRO beállítások" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32 msgid "Ask E-mail on registration" msgstr "E-mail kérésére regisztrációkor" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69 msgid "Never" msgstr "Soha" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38 msgid "When email is not provided or empty" msgstr "Amikor a e-mail cím nincs biztosítva vagy nem üres" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72 msgid "Always" msgstr "Mindig" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50 msgid "Ask Username on registration" msgstr "Felhasználónév kérése regisztrációkor" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53 msgid "Never, generate automatically" msgstr "Soha, automata generálás" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56 msgid "When username is empty or invalid" msgstr "Amikor a felhasználónév nincs biztosítva vagy nem üres" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64 msgid "Ask Password on registration" msgstr "Jelszó kérése regisztrációkor" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81 msgid "Automatically connect the existing account upon registration" msgstr "Fiók csatlakoztatása, ha regisztráció esetén már létezik a fiók" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85 #: nextend-facebook-connect/admin/templates/providers.php:39 #: nextend-facebook-connect/admin/templates/settings/general.php:48 #: nextend-facebook-connect/admin/templates/settings/general.php:212 #: nextend-facebook-connect/admin/templates/settings/general.php:227 #: nextend-facebook-connect/admin/templates/settings/general.php:245 #: nextend-facebook-connect/includes/provider-admin.php:217 msgid "Disabled" msgstr "Kikapcsolva" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88 msgid "Automatic, based on email address" msgstr "Automatán, e-mail cím egyezés esetén" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93 msgid "Disable login for the selected roles" msgstr "Bejelntkezés kikapcsolása a kijelölt szerepköröknek" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113 msgid "Default roles for user who registered with this provider" msgstr "Alap szerepkör, aki ezzel a szolgáltatóval registrál" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:99 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:118 #: nextend-facebook-connect/admin/templates/settings/comment.php:39 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105 #: nextend-facebook-connect/admin/templates/settings/userpro.php:51 #: nextend-facebook-connect/admin/templates/settings/userpro.php:102 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180 #: nextend-facebook-connect/widget.php:42 msgid "Default" msgstr "Alapbeállítás" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50 #: nextend-facebook-connect/includes/userData.php:188 msgid "Register" msgstr "Regisztráció" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58 msgid "Login" msgstr "Bejelentkezés" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66 msgid "Link" msgstr "Összekapcsolás" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84 msgid "Store in meta key" msgstr "Tárolás a meta kulcsban" #: nextend-facebook-connect/admin/templates-provider/usage.php:9 msgid "Shortcode" msgstr "Shortcode" #: nextend-facebook-connect/admin/templates-provider/usage.php:12 #, fuzzy #| msgid "Important:" msgid "Important!" msgstr "Fontos:" #: nextend-facebook-connect/admin/templates-provider/usage.php:13 msgid "The shortcodes are only rendered for users who haven't logged in yet!" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:14 msgid "See the full list of shortcode parameters." msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:31 msgid "Simple link" msgstr "Egyszerű link" #: nextend-facebook-connect/admin/templates-provider/usage.php:34 msgid "Click here to login or register" msgstr "Kattints ide a belépéshez vagy a regisztrációhoz" #: nextend-facebook-connect/admin/templates-provider/usage.php:39 msgid "Image button" msgstr "Gomb képpel" #: nextend-facebook-connect/admin/templates-provider/usage.php:42 msgid "Image url" msgstr "Kép URL" #: nextend-facebook-connect/admin/templates/debug.php:7 #: nextend-facebook-connect/admin/templates/header.php:20 msgid "Debug" msgstr "Debug mód" #: nextend-facebook-connect/admin/templates/debug.php:41 msgid "Test network connection with providers" msgstr "Hálózati kapcsolat tesztelése szolgáltatókkal" #: nextend-facebook-connect/admin/templates/debug.php:48 msgid "You don't have cURL support, please enable it in php.ini!" msgstr "Nincs cURL támogatásod, kérlek engedélyezd a php.ini fájlban." #: nextend-facebook-connect/admin/templates/debug.php:58 #, php-format msgid "Test %1$s connection" msgstr "%1$s kapcsolat tesztelése" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2 msgid "Fix Oauth Redirect URIs" msgstr "Oauth Redirect URIs javítása" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13 msgid "Every Oauth Redirect URI seems fine" msgstr "Minden Every Oauth Redirect URI jónak tűnik" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32 msgid "Got it" msgstr "Értettem" #: nextend-facebook-connect/admin/templates/global-settings.php:28 #: nextend-facebook-connect/admin/templates/menu.php:8 msgid "Global Settings" msgstr "Általános beállítások" #: nextend-facebook-connect/admin/templates/global-settings.php:31 msgid "General" msgstr "Általános" #: nextend-facebook-connect/admin/templates/global-settings.php:33 msgid "Privacy" msgstr "Privacy" #: nextend-facebook-connect/admin/templates/global-settings.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form.php:9 #: nextend-facebook-connect/admin/templates/settings/userpro.php:18 msgid "Login Form" msgstr "Bejelentkezési form" #: nextend-facebook-connect/admin/templates/global-settings.php:39 msgid "Comment" msgstr "Komment" #: nextend-facebook-connect/admin/templates/header.php:14 msgid "Docs" msgstr "Dokumentáció" #: nextend-facebook-connect/admin/templates/header.php:17 msgid "Support" msgstr "Támogatás" #: nextend-facebook-connect/admin/templates/header.php:23 #: nextend-facebook-connect/admin/templates/menu.php:12 msgid "Pro Addon" msgstr "Pro Kiegészítő" #: nextend-facebook-connect/admin/templates/menu.php:6 msgid "Providers" msgstr "Providerek" #: nextend-facebook-connect/admin/templates/pro-addon.php:13 msgid "Error" msgstr "Hiba" #: nextend-facebook-connect/admin/templates/pro-addon.php:14 msgid "" "You don’t have sufficient permissions to install and activate plugins. " "Please contact your site’s administrator!" msgstr "" "Nincs megfelelő jogosultságod ahhoz, hogy telepíts és bekapcsolj pluginokat. " "Lépj kapcsolatba az oldalad adminisztrátorával a további teendőkkel " "kapcsolatban!" #: nextend-facebook-connect/admin/templates/pro-addon.php:22 #: nextend-facebook-connect/admin/templates/pro-addon.php:32 #: nextend-facebook-connect/admin/templates/pro.php:34 msgid "Activate Pro Addon" msgstr "Pro Addon aktiválása" #: nextend-facebook-connect/admin/templates/pro-addon.php:23 msgid "" "Pro Addon is installed but not activated. To be able to use the Pro " "features, you need to activate it." msgstr "" "A Pro Kiegészítő telepítve van, de nincs aktiválva. Ahhoz, hogy használjasd " "a Pro funkciókat aktiválnod kell a Pro Kiegészítőt." #: nextend-facebook-connect/admin/templates/pro-addon.php:37 #: nextend-facebook-connect/admin/templates/pro-addon.php:142 msgid "Deactivate Pro Addon" msgstr "Pro Addon deaktiválása" #: nextend-facebook-connect/admin/templates/pro-addon.php:48 #: nextend-facebook-connect/admin/templates/pro.php:43 msgid "Pro Addon is not installed" msgstr "A Pro Kiegészítő nincs telepítve" #: nextend-facebook-connect/admin/templates/pro-addon.php:50 msgid "" "To access the Pro features, you need to install and activate the Pro Addon." msgstr "" "Ahhoz, hogy hozzáférj a Pro funkciókhoz fel kell telepítened és aktiválnod " "kell a Pro Kiegészítőt." #: nextend-facebook-connect/admin/templates/pro-addon.php:59 #, php-format msgid "Install %s now" msgstr "%s telepítése most" #: nextend-facebook-connect/admin/templates/pro-addon.php:60 #: nextend-facebook-connect/admin/templates/pro.php:47 msgid "Install Pro Addon" msgstr "Pro Kiegészítő telepítése" #: nextend-facebook-connect/admin/templates/pro-addon.php:94 msgid "Activating..." msgstr "Aktiválás..." #: nextend-facebook-connect/admin/templates/pro-addon.php:118 #, fuzzy #| msgid "Not Available" msgid "Not compatible!" msgstr "Nem elérhető" #: nextend-facebook-connect/admin/templates/pro-addon.php:119 #, php-format msgid "" "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or " "newer." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:123 #, fuzzy #| msgid "Activate Pro Addon" msgid "Update Pro Addon" msgstr "Pro Addon aktiválása" #: nextend-facebook-connect/admin/templates/pro-addon.php:133 msgid "Pro Addon is installed and activated" msgstr "A Pro Kiegészítő telepítve és aktiválva" #: nextend-facebook-connect/admin/templates/pro-addon.php:135 msgid "" "You installed and activated the Pro Addon. If you don’t want to use it " "anymore, you can deactivate using the button below." msgstr "" "A Pro Kiegészítő fel van telepítve és aktiválva van. Ha nem akarod tovább " "használni, visszavonhatod az aktiválást a lenti gombra kattintva." #: nextend-facebook-connect/admin/templates/pro.php:8 msgid "Get Pro Addon to unlock more features" msgstr "Vásárold meg a Pro Kiegészítőt, hogy még több funkcióhoz juss" #: nextend-facebook-connect/admin/templates/pro.php:9 #, php-format msgid "" "The features below are available in %s Pro Addon. Get it today and tweak the " "awesome settings." msgstr "" "Az alábbi funkciók a %s Pro Kiegészítőben érhetőek el. Vásárold meg még ma, " "hogy hozzáférj a fantasztikus új beállításokhoz." #: nextend-facebook-connect/admin/templates/pro.php:10 msgid "" "If you already have a license, you can Authorize your Pro Addon. Otherwise " "you can purchase it using the button below." msgstr "" "Ha már van licenszed engedélyezheted a Pro Kiegészítődet. Ha nincs licenszed " "vásárolhatsz a lenti gombra kattintva. " #: nextend-facebook-connect/admin/templates/pro.php:14 msgid "Buy Pro Addon" msgstr "Vedd meg a Pro Kiegészítőt" #: nextend-facebook-connect/admin/templates/pro.php:16 msgid "Authorize Pro Addon" msgstr "Pro Kiegészítő aktiválása" #: nextend-facebook-connect/admin/templates/pro.php:25 msgid "Pro Addon is not activated" msgstr "A Pro Kiegészítő nincs aktiválva" #: nextend-facebook-connect/admin/templates/pro.php:26 #: nextend-facebook-connect/admin/templates/pro.php:44 msgid "" "To be able to use the Pro features, you need to install and activate the " "Nextend Social Connect Pro Addon." msgstr "" "A Pro funkciók használatához aktiválnod kell a Nextend Social Login Pro " "Addon-t. Ezt megteheted az Activate gombra való kattintással és a társított " "vásárlás kiválasztásával." #: nextend-facebook-connect/admin/templates/providers.php:30 msgid "Not Available" msgstr "Nem elérhető" #: nextend-facebook-connect/admin/templates/providers.php:33 msgid "Not Configured" msgstr "Nincs beállítva" #: nextend-facebook-connect/admin/templates/providers.php:36 msgid "Not Verified" msgstr "Nincs hitelesítve" #: nextend-facebook-connect/admin/templates/providers.php:42 #: nextend-facebook-connect/admin/templates/settings/general.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:215 #: nextend-facebook-connect/admin/templates/settings/general.php:230 #: nextend-facebook-connect/admin/templates/settings/general.php:248 #: nextend-facebook-connect/includes/provider-admin.php:220 #: nextend-facebook-connect/providers/google/admin/settings.php:53 #: nextend-social-login-pro/providers/paypal/admin/settings.php:51 msgid "Enabled" msgstr "Bekapcsolva" #: nextend-facebook-connect/admin/templates/providers.php:54 msgid "Upgrade Now" msgstr "Upgradelés most" #: nextend-facebook-connect/admin/templates/providers.php:69 #: nextend-facebook-connect/includes/provider-admin.php:204 msgid "Verify Settings" msgstr "Beállítások hitelesítése" #: nextend-facebook-connect/admin/templates/providers.php:77 #: nextend-facebook-connect/includes/provider-admin.php:249 msgid "Enable" msgstr "Bekapcsolás" #: nextend-facebook-connect/admin/templates/providers.php:89 #: nextend-facebook-connect/includes/provider-admin.php:257 msgid "Disable" msgstr "Kikapcsolás" #: nextend-facebook-connect/admin/templates/providers.php:114 msgid "Stay Updated" msgstr "Légy naprakész" #: nextend-facebook-connect/admin/templates/providers.php:115 msgid "" "Receive info on the latest plugin updates and social provider related " "changes." msgstr "" "Értesítést kérek a legutóbbi frissítésekről és a szolgáltatók változásáról." #: nextend-facebook-connect/admin/templates/providers.php:116 msgid "Enter your email address" msgstr "Add meg az email címed" #: nextend-facebook-connect/admin/templates/providers.php:120 msgid "Subscribe" msgstr "Feliratkozás" #: nextend-facebook-connect/admin/templates/providers.php:136 msgid "Saving..." msgstr "Mentés..." #: nextend-facebook-connect/admin/templates/providers.php:137 msgid "Saving failed" msgstr "A mentés nem sikerült" #: nextend-facebook-connect/admin/templates/providers.php:138 msgid "Order Saved" msgstr "Sorrend elmentve" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "Successfully subscribed!" msgstr "Sikeresen feliratkozva." #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "" "We'll be bringing you all the latest news and updates about Social Login - " "right to your inbox." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:214 msgid "The entered email address is invalid!" msgstr "A beírt email cím helytelen!" #: nextend-facebook-connect/admin/templates/review.php:14 msgid "Rate your experience!" msgstr "Értékelj!" #: nextend-facebook-connect/admin/templates/review.php:15 msgid "Hated it" msgstr "Gyülölöm" #: nextend-facebook-connect/admin/templates/review.php:16 msgid "Disliked it" msgstr "Nem tetszik" #: nextend-facebook-connect/admin/templates/review.php:17 msgid "It was ok" msgstr "Ok" #: nextend-facebook-connect/admin/templates/review.php:18 msgid "Liked it" msgstr "Szeretem" #: nextend-facebook-connect/admin/templates/review.php:19 msgid "Loved it" msgstr "Imádom" #: nextend-facebook-connect/admin/templates/review.php:31 msgid "Please Leave a Review" msgstr "Kérem hagyjon értékelést!" #: nextend-facebook-connect/admin/templates/review.php:32 msgid "" "If you are happy with Nextend Social Login and can take a minute " "please leave us a review. It will be a tremendous help for us!" msgstr "" "Ha tetszett a Nextend Social Login plugin és van egy pár szabad " "perce, kérem értékeljen minket. Nekünk ez hatalmas segítséget jelent!" #: nextend-facebook-connect/admin/templates/review.php:34 msgid "Ok, you deserve it" msgstr "Rendben, megérdemlitek." #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96 msgid "Register form" msgstr "Regisztrációs form" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23 msgid "No Connect button" msgstr "Ne legyen connect gomb" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26 msgid "Connect button before register" msgstr "Connect gomb a regisztráció előtt." #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:221 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:226 msgid "Action:" msgstr "Action:" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31 msgid "Connect button before account details" msgstr "Connect gomb a fiók adatai részleg előtt" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36 msgid "Connect button after register" msgstr "Connect gomb a regisztrációs form után" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44 msgid "Register button style" msgstr "Regisztrációs gomb stílusa" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:105 #: nextend-facebook-connect/admin/templates/settings/comment.php:45 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111 #: nextend-facebook-connect/admin/templates/settings/userpro.php:57 #: nextend-facebook-connect/admin/templates/settings/userpro.php:108 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30 #: nextend-facebook-connect/widget.php:47 msgid "Icon" msgstr "Ikon" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:64 #, fuzzy #| msgid "Login layout" msgid "Sidebar Login form" msgstr "Login elrendezése" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:69 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:85 #: nextend-facebook-connect/admin/templates/settings/login-form.php:17 #: nextend-facebook-connect/admin/templates/settings/login-form.php:30 #: nextend-facebook-connect/admin/templates/settings/login-form.php:47 #: nextend-facebook-connect/admin/templates/settings/userpro.php:26 #: nextend-facebook-connect/admin/templates/settings/userpro.php:39 msgid "Hide login buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:72 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88 #: nextend-facebook-connect/admin/templates/settings/login-form.php:14 #: nextend-facebook-connect/admin/templates/settings/login-form.php:27 #: nextend-facebook-connect/admin/templates/settings/login-form.php:44 #: nextend-facebook-connect/admin/templates/settings/userpro.php:23 #: nextend-facebook-connect/admin/templates/settings/userpro.php:36 #: nextend-facebook-connect/widget.php:76 msgid "Show login buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:73 msgid "" "Some themes that use BuddyPress, display the social buttons twice in the " "same login form. This option can disable the one for: " "bp_sidebar_login_form action. " msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:80 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38 #, fuzzy #| msgid "Login layout" msgid "Login form" msgstr "Login elrendezése" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:93 #, fuzzy #| msgid "Login form button style" msgid "Login button style" msgstr "Login gomb stílusa" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:48 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52 #: nextend-facebook-connect/admin/templates/settings/userpro.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58 msgid "Login layout" msgstr "Login elrendezése" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:110 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124 #: nextend-facebook-connect/admin/templates/settings/userpro.php:70 #: nextend-facebook-connect/admin/templates/settings/userpro.php:121 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186 msgid "Below" msgstr "Alul" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:130 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130 #: nextend-facebook-connect/admin/templates/settings/userpro.php:76 #: nextend-facebook-connect/admin/templates/settings/userpro.php:127 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192 msgid "Below with separator" msgstr "Alul, elválasztóval" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:136 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136 #: nextend-facebook-connect/admin/templates/settings/userpro.php:82 #: nextend-facebook-connect/admin/templates/settings/userpro.php:133 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198 msgid "Above" msgstr "Felül" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:142 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142 #: nextend-facebook-connect/admin/templates/settings/userpro.php:88 #: nextend-facebook-connect/admin/templates/settings/userpro.php:139 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204 msgid "Above with separator" msgstr "Felül, elválasztóval" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:150 #: nextend-facebook-connect/admin/templates/settings/comment.php:53 #: nextend-facebook-connect/admin/templates/settings/login-form.php:53 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:151 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:166 #: nextend-facebook-connect/admin/templates/settings/userpro.php:147 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:233 msgid "Button alignment" msgstr "Gombok igazítása" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155 #: nextend-facebook-connect/admin/templates/settings/comment.php:58 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140 #: nextend-facebook-connect/admin/templates/settings/login-form.php:58 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:156 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171 #: nextend-facebook-connect/admin/templates/settings/userpro.php:152 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:238 #: nextend-facebook-connect/widget.php:57 msgid "Left" msgstr "Bal" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:158 #: nextend-facebook-connect/admin/templates/settings/comment.php:61 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:143 #: nextend-facebook-connect/admin/templates/settings/login-form.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:159 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:174 #: nextend-facebook-connect/admin/templates/settings/userpro.php:155 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:241 #: nextend-facebook-connect/widget.php:62 msgid "Center" msgstr "Közép" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162 #: nextend-facebook-connect/admin/templates/settings/comment.php:65 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147 #: nextend-facebook-connect/admin/templates/settings/login-form.php:65 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:163 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178 #: nextend-facebook-connect/admin/templates/settings/userpro.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:245 #: nextend-facebook-connect/widget.php:67 msgid "Right" msgstr "Jobb" #: nextend-facebook-connect/admin/templates/settings/comment.php:18 msgid "Login button" msgstr "Login gomb" #: nextend-facebook-connect/admin/templates/settings/comment.php:23 #: nextend-facebook-connect/admin/templates/settings/privacy.php:42 msgid "Show" msgstr "Megjelenít" #: nextend-facebook-connect/admin/templates/settings/comment.php:26 msgid "Hide" msgstr "Elrejt" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 #, php-format msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work" msgstr "" "Ahhoz, hogy ez a funkció működjön, be kell kapcsolnod a ' %1$s > %2$s > %3$s " "'-t." #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Discussion" msgstr "Értekezés" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Users must be registered and logged in to comment" msgstr "A felhasználóknak be kell jelentkezve lenniük a kommenteléshez." #: nextend-facebook-connect/admin/templates/settings/comment.php:33 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18 msgid "Button style" msgstr "Gomb stílus:" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29 msgid "Target window" msgstr "Célablak" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34 msgid "Prefer popup" msgstr "Felugró ablak" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37 msgid "Prefer new tab" msgstr "Új tab" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40 msgid "Prefer same window" msgstr "Ugyanazon ablak" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46 msgid "Registration notification sent to" msgstr "Regisztrációról értesítést kap" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:242 msgid "WordPress default" msgstr "WordPress alapértelmezett" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54 msgid "Nobody" msgstr "Senki" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60 msgid "Admin" msgstr "Admin" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63 msgid "User and Admin" msgstr "Felhasználó és Admin" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69 msgid "Unlink" msgstr "Szétkapcsolás " #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75 msgid "Allow Social account unlink" msgstr "Szétkapcsolás engedélyezése" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81 #, fuzzy #| msgid "Disable login for the selected roles" msgid "Disable Admin bar for roles" msgstr "Bejelntkezés kikapcsolása a kijelölt szerepköröknek" #: nextend-facebook-connect/admin/templates/settings/general.php:43 msgid "Debug mode" msgstr "Debug mód" #: nextend-facebook-connect/admin/templates/settings/general.php:56 msgid "Page for register flow" msgstr "Page for register flow" #: nextend-facebook-connect/admin/templates/settings/general.php:66 #: nextend-facebook-connect/admin/templates/settings/general.php:91 msgid "None" msgstr "Semmi" #: nextend-facebook-connect/admin/templates/settings/general.php:74 msgid "" "This setting is used when you request additional data from the users (such " "as email address) and to display the Terms and conditions." msgstr "" "Ez a beállítás akkor használatos, ha további adatokat kérsz a felhasználótól " "( mint például email címet ) illetve a Felhasználói feltételek " "megjelenítéséhez." #: nextend-facebook-connect/admin/templates/settings/general.php:75 #, php-format msgid "" "%2$s First create a new page and insert the following shortcode: %1$s then " "select this page above" msgstr "" "%2$s Előszőr hozz létre egy új oldalt, majd másold be a következő shortcode-" "ot: %1$s majd válaszd ki azt az oldal itt." #: nextend-facebook-connect/admin/templates/settings/general.php:75 #: nextend-facebook-connect/admin/templates/settings/general.php:101 msgid "Usage:" msgstr "Használat" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 #, php-format msgid "" "%1$s You won't be able to reach the selected page unless a social login/" "registration happens." msgstr "" "%1$s A kiválasztott csak a login és regisztráció folyamat számára less " "elérhető." #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 msgid "Important:" msgstr "Fontos:" #: nextend-facebook-connect/admin/templates/settings/general.php:80 msgid "OAuth redirect uri proxy page" msgstr "OAuth redirect uri proxy page" #: nextend-facebook-connect/admin/templates/settings/general.php:100 msgid "" "You can use this setting when wp-login.php page is not available to handle " "the OAuth flow." msgstr "" "Ez a beállítás akkor használatos ha a wp-login.php oldal nem elérhető, hogy " "kezelje az OAauth folyamatot." #: nextend-facebook-connect/admin/templates/settings/general.php:101 #, php-format msgid "%1$s First create a new page then select this page above." msgstr "%1$s Előszőr hozz létre egy új oldal majd válaszd ki azt az oldal itt." #: nextend-facebook-connect/admin/templates/settings/general.php:108 msgid "Prevent external redirect overrides" msgstr "Külső átirányítások felülírása" #: nextend-facebook-connect/admin/templates/settings/general.php:114 msgid "Disable external redirects" msgstr "Külső átirányítások letiltása" #: nextend-facebook-connect/admin/templates/settings/general.php:121 msgid "Default redirect url" msgstr "Alapértelmezett átirányítási url" #: nextend-facebook-connect/admin/templates/settings/general.php:134 #: nextend-facebook-connect/admin/templates/settings/general.php:172 msgid "for Login" msgstr "Loginkor" #: nextend-facebook-connect/admin/templates/settings/general.php:149 #: nextend-facebook-connect/admin/templates/settings/general.php:187 msgid "for Register" msgstr "Regisztrációkor" #: nextend-facebook-connect/admin/templates/settings/general.php:159 msgid "Fixed redirect url" msgstr "Fix átirányítási link" #: nextend-facebook-connect/admin/templates/settings/general.php:196 msgid "Blacklisted redirects" msgstr "Tiltott átirányítások" #: nextend-facebook-connect/admin/templates/settings/general.php:202 msgid "If you want to blacklist redirect url params. One pattern per line." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:207 msgid "Support login restrictions" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:217 #, php-format msgid "Please visit to our %1$s to check what plugins are supported!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:222 msgid "Display avatars in \"All media items\"" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:232 msgid "" "Enabling this option can speed up loading images in Media Library - Grid " "view!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:237 msgid "Membership" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:250 msgid "Allow registration with Social login." msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33 #: nextend-facebook-connect/admin/templates/settings/userpro.php:45 msgid "Login form button style" msgstr "Login gomb stílusa" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66 msgid "Below and floating" msgstr "Alul lebegve" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:85 msgid "Embedded Login form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:104 msgid "Embedded Login layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:135 #, fuzzy #| msgid "Login form button style" msgid "Embedded login form button alignment" msgstr "Login gomb stílusa" #: nextend-facebook-connect/admin/templates/settings/login-form.php:22 #: nextend-facebook-connect/includes/userData.php:137 msgid "Registration Form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form.php:36 msgid "Embedded login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69 msgid "Sign Up form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74 #, fuzzy #| msgid "No Connect button in login form" msgid "No Connect button in Sign Up form" msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167 #, fuzzy #| msgid "No Connect button in login form" msgid "Connect button on" msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84 #, fuzzy #| msgid "Login form button style" msgid "Sign Up form button style" msgstr "Login gomb stílusa" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103 #, fuzzy #| msgid "Login layout" msgid "Sign Up layout" msgstr "Login elrendezése" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212 #, fuzzy #| msgid "WooCommerce account details" msgid "Account details" msgstr "WooCommerce fiók részletes beállítások" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155 msgid "No link buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158 msgid "Link buttons after account details" msgstr "Összekapcsoló gombok a profil részletes beállításai után" #: nextend-facebook-connect/admin/templates/settings/privacy.php:6 #: nextend-facebook-connect/nextend-social-login.php:143 msgid "" "By clicking Register, you accept our Privacy Policy" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:59 msgid "Store" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:65 msgid "First and last name" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:68 msgid "When not enabled, username will be randomly generated." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:78 #: nextend-social-login-pro/class-provider-extension.php:322 msgid "Email" msgstr "Email" #: nextend-facebook-connect/admin/templates/settings/privacy.php:81 msgid "When not enabled, email will be empty." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:91 #: nextend-facebook-connect/includes/avatar.php:59 msgid "Avatar" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:102 #: nextend-facebook-connect/includes/provider.php:1066 msgid "Access token" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23 #, fuzzy #| msgid "No Connect button in login form" msgid "No Connect button in Login form" msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89 #, fuzzy #| msgid "No Connect button in login form" msgid "No Connect button in Register form" msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99 #: nextend-facebook-connect/admin/templates/settings/userpro.php:96 #, fuzzy #| msgid "Login form button style" msgid "Register form button style" msgstr "Login gomb stílusa" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118 #: nextend-facebook-connect/admin/templates/settings/userpro.php:115 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116 #, fuzzy #| msgid "Login layout" msgid "Register layout" msgstr "Login elrendezése" #: nextend-facebook-connect/admin/templates/settings/userpro.php:31 msgid "Register Form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43 msgid "No Connect button in login form" msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101 msgid "No Connect button in register form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154 #, fuzzy #| msgid "WooCommerce billing form" msgid "Billing form" msgstr "WooCommerce számlázási űrlap" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159 msgid "No Connect button in billing form" msgstr "Ne legyen összekapcsoló gomb a számlázási űrlapnál" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174 #, fuzzy #| msgid "Login layout" msgid "Billing layout" msgstr "Login elrendezése" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217 #, fuzzy #| msgid "No Connect button in login form" msgid "No Connect buttons in account details form" msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:220 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:225 #, fuzzy #| msgid "Icon button" msgid "Link buttons on" msgstr "Ikon gomb" #: nextend-facebook-connect/admin/templates/test-connection.php:42 #, fuzzy, php-format #| msgid "Authentication successful" msgid "Network connection successful: %1$s" msgstr "Hitelesítés sikeres" #: nextend-facebook-connect/admin/templates/test-connection.php:49 #, php-format msgid "Network connection failed: %1$s" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:52 msgid "" "Please contact with your hosting provider to resolve the network issue " "between your server and the provider." msgstr "" #: nextend-facebook-connect/includes/avatar.php:60 msgid "Manage Avatar" msgstr "" #: nextend-facebook-connect/includes/avatar.php:61 #, php-format msgid "Avatar (%s)" msgid_plural "Avatar (%s)" msgstr[0] "" msgstr[1] "" #: nextend-facebook-connect/includes/compat-wp-login.php:49 #, php-format msgid "%1$s ‹ %2$s — WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:115 msgid "https://wordpress.org/" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:116 msgid "Powered by WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:260 #, php-format msgctxt "site" msgid "← Back to %s" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:198 msgid "Your configuration needs to be verified" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:199 msgid "" "Before you can start letting your users register with your app it needs to " "be tested. This test makes sure that no users will have troubles with the " "login and registration process.
If you see error message in the popup " "check the copied ID and secret or the app itself. Otherwise your settings " "are fine." msgstr "" "Mielőtt a felhasználók beléphetnének az oldaladra az appodat le kell " "tesztelni. Ez a teszt segít abban, hogy a felhasználók gond nélkül tudjanak " "belépni és regisztrálni az oldaladra.
Ha valamilyen hibaüzenetet látsz a " "felugró ablakban, nézd meg az appodat vagy a kimásolt hitelesítő adatokat. " "Ha nincs hibaüzenet, az azt jelenti, hogy minden rendben van." #: nextend-facebook-connect/includes/provider-admin.php:205 msgid "Please save your changes to verify settings." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:213 msgid "Works Fine" msgstr "Megfelelően Működik" #: nextend-facebook-connect/includes/provider-admin.php:227 #, php-format msgid "" "This provider is currently disabled, which means that users can’t register " "or login via their %s account." msgstr "" "Ez a provider jelenleg nincs bekapcsolva, ami azt jelenti, hogy a " "felhasználók nem tudnak regisztrálni vagy belépni a %s fiókjukkal." #: nextend-facebook-connect/includes/provider-admin.php:230 #, php-format msgid "" "This provider works fine, but you can test it again. If you don’t want to " "let users register or login with %s anymore you can disable it." msgstr "" "A provider megfelelően működik, de újra letesztelheted. Ha nem a " "továbbiakban nem akarod, hogy regisztráljanak vagy belépjenek a %s " "fiókjukkal kikapcsolhatod a providertt." #: nextend-facebook-connect/includes/provider-admin.php:233 #, php-format msgid "" "This provider is currently enabled, which means that users can register or " "login via their %s account." msgstr "" "Ez a provider jelenleg be vankapcsolva, ami azt jelenti, hogy a felhasználók " "regisztrálhatnak és beléphetnek a %s fiókjukkal." #: nextend-facebook-connect/includes/provider-admin.php:241 msgid "Verify Settings Again" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:242 msgid "Please save your changes before verifying settings." msgstr "" #: nextend-facebook-connect/includes/provider.php:350 #: nextend-facebook-connect/includes/provider.php:693 #: nextend-facebook-connect/includes/provider.php:698 msgid "Authentication successful" msgstr "Hitelesítés sikeres" #: nextend-facebook-connect/includes/provider.php:635 #: nextend-facebook-connect/includes/user.php:127 msgid "Authentication error" msgstr "Hitelesítési hiba" #: nextend-facebook-connect/includes/provider.php:650 msgid "Unlink successful." msgstr "Szétkapcsolás sikeres" #: nextend-facebook-connect/includes/provider.php:652 msgid "Unlink is not allowed!" msgstr "" #: nextend-facebook-connect/includes/provider.php:856 #: nextend-facebook-connect/includes/provider.php:863 msgid "The test was successful" msgstr "A teszt sikeres volt" #: nextend-facebook-connect/includes/provider.php:909 msgid "Authentication failed" msgstr "Hitelesítés sikertelen" #: nextend-facebook-connect/includes/provider.php:1058 msgid "Identifier" msgstr "" #: nextend-facebook-connect/includes/provider.php:1074 msgid "Profile picture" msgstr "" #: nextend-facebook-connect/includes/user.php:74 #, php-format msgid "" "Your %1$s account is successfully linked with your account. Now you can sign " "in with %2$s easily." msgstr "" "A(z) %1$s fiók sikeresen össze lett kapcsolva a fiókoddal. Már könnyedén be " "tudsz lépni a %2$s fiókoddal is." #: nextend-facebook-connect/includes/user.php:77 #, php-format msgid "" "You have already linked a(n) %s account. Please unlink the current and then " "you can link other %s account." msgstr "" #: nextend-facebook-connect/includes/user.php:82 #, php-format msgid "This %s account is already linked to other user." msgstr "" #: nextend-facebook-connect/includes/user.php:122 msgid "User registration is currently not allowed." msgstr "" #: nextend-facebook-connect/includes/userData.php:137 msgid "Register For This Site!" msgstr "" #: nextend-facebook-connect/nextend-facebook-connect.php:34 #, php-format msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE." msgstr "" #: nextend-facebook-connect/nextend-facebook-connect.php:41 #, php-format msgid "" "%1$s requires WordPress version %2$s+. Because you are using an earlier " "version, the plugin is currently NOT ACTIVE." msgstr "" #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 #, php-format msgid "Please update %1$s to version %2$s or newer." msgstr "" #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 msgid "Update now!" msgstr "" #: nextend-facebook-connect/nextend-social-login.php:735 #: nextend-facebook-connect/nextend-social-login.php:1111 msgid "Social Login" msgstr "Közösségi belépés" #: nextend-facebook-connect/nextend-social-login.php:1092 msgid "Social Accounts" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8 #, fuzzy, php-format #| msgid "Navigate to %s" msgid "Navigate to %s" msgstr "Látogasd meg ezt az oldalt: %s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/google/admin/getting-started.php:17 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9 #, php-format msgid "Log in with your %s credentials if you are not logged in" msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve." #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10 #, php-format msgid "Click on the App with App ID: %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11 #, fuzzy #| msgid "In the left sidebar, click on \"Facebook Login\"" msgid "In the left sidebar, click on \"Facebook Login > Settings\"" msgstr "A bal oldali menüben kattints a \"Facebook Login\" feliratra" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: %s" msgid "" "Add the following URL to the \"Valid OAuth redirect URIs\" field: " "%s" msgstr "" "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: %s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on \"Save Changes\"" msgstr "Kattints a \"Save Changes\"-re" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11 #: nextend-facebook-connect/providers/facebook/admin/settings.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22 #, php-format msgid "" "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in " "order to allow login with %1$s." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13 #: nextend-facebook-connect/providers/facebook/admin/settings.php:15 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24 msgid "How to get SSL for my WordPress site?" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19 #: nextend-facebook-connect/providers/google/admin/getting-started.php:11 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create a %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" "Ahhoz. hogy a felhasználók beléphessenek a %1$s fiókjukkal, először létre " "kell hoznod egy %1$s Appot. Az alábbi útmutató végig vezet a %1$s App " "létrehozás folyamatán. Miután a(z) %1$s fiókod elkészült, menj a " "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod " "alapján." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21 #: nextend-facebook-connect/providers/google/admin/getting-started.php:13 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:32 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:13 #, php-format msgctxt "App creation" msgid "Create %s" msgstr "%s létrehozása" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24 #: nextend-facebook-connect/providers/google/admin/getting-started.php:16 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:16 #, php-format msgid "Navigate to %s" msgstr "Látogasd meg ezt az oldalt: %s" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26 #, fuzzy #| msgid "Click on the \"Add a New App\" button" msgid "Click on the \"Add a New App\" button" msgstr "Kattints az \"Add a New App\" gombra" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27 msgid "" "If you see the message \"Become a Facebook Developer\", then you need " "to click on the green \"Register Now\" button, fill the form then " "finally verify your account." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28 #, php-format msgid "" "Fill \"Display Name\" and \"Contact Email\". The specified " "\"Display Name\" will appear on your %s!" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29 #, fuzzy #| msgid "Click the \"Create App\" button." msgid "" "Click the \"Create App ID\" button and complete the Security Check." msgstr "Kattints a \"Create App\" gombra" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35 #, php-format msgid "" "On the left side, click on the “%1$s” menu point, then click “" "%2$s”." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31 #, fuzzy #| msgid "Enter your domain name to the App Domains" msgid "Enter your domain name to the \"App Domains\" field." msgstr "Írd be a domain neved az \"App Domains\" mezőbe" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32 #, fuzzy, php-format #| msgid "Enter your domain name to the App Domains" msgid "" "Enter your domain name to the \"App Domains\" field, probably: %s" msgstr "Írd be a domain neved az \"App Domains\" mezőbe" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33 #, fuzzy #| msgid "" #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and " #| "easily accessible privacy policy that explains what data you are " #| "collecting and how you will use that data." msgid "" "Fill up the \"Privacy Policy URL\" field. Provide a publicly " "available and easily accessible privacy policy that explains what data you " "are collecting and how you will use that data." msgstr "" "Töltsd ki a \"Privacy Policy URL\" mezőt. A megadott link legyen publikus és " "tartalmazza az adatvédelmi irányelveket, amik elmagyarázzák, milyen " "információkat gyűjtesz és mihez kezdesz velük." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34 msgid "" "Select a “Category”, an “App Icon” and pick the “Business " "Use” option that describes your the App best, then press \"Save " "Changes\"." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on “Save Changes”" msgstr "Kattints a \"Save Changes\"-re" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38 #, fuzzy #| msgid "" #| "Your application is currently private ( Status: In Development ), which " #| "means that only you can log in with it. In the top bar click on the \"OFF" #| "\" switcher and select a category for your App." msgid "" "Your application is currently private, which means that only you can log in " "with it. In the top bar click on the switch next to the \"In development\" label, then click the \"Switch Mode\" button." msgstr "" "Az applikációd jelenleg privát, ami azt jelenti, hogy csak te tudsz belépni " "vele. A felső menüben kattintsz az \"OFF\" választó gombra és válassz egy " "kategóriát az Appodnak." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39 #, fuzzy, php-format #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "Finally on the left side, click on the \"%1$s\" menu point, then " "click \"%2$s\" again. Here you can see your \"APP ID\" and you " "can see your \"App secret\" if you click on the \"Show\" button. " "These will be needed in plugin’s settings." msgstr "" "Itt találod az \"App ID\"-t és az \"App Secret\"-et, ha a \"Show\" gombra " "kattintasz. Ezekre lesz szükséged a plugin beállításainál." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43 #: nextend-facebook-connect/providers/google/admin/getting-started.php:40 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:30 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:29 #, php-format msgid "I am done setting up my %s" msgstr "Befejeztem a %s appom elkészítését" #: nextend-facebook-connect/providers/facebook/admin/settings.php:35 #: nextend-social-login-pro/providers/vk/admin/settings.php:27 msgid "App ID" msgstr "App ID" #: nextend-facebook-connect/providers/facebook/admin/settings.php:36 #: nextend-facebook-connect/providers/facebook/admin/settings.php:48 #: nextend-facebook-connect/providers/google/admin/settings.php:28 #: nextend-facebook-connect/providers/google/admin/settings.php:41 #: nextend-facebook-connect/providers/twitter/admin/settings.php:28 #: nextend-social-login-pro/providers/amazon/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:39 #: nextend-social-login-pro/providers/apple/admin/settings.php:79 #: nextend-social-login-pro/providers/apple/admin/settings.php:90 #: nextend-social-login-pro/providers/apple/admin/settings.php:100 #: nextend-social-login-pro/providers/apple/admin/settings.php:108 #: nextend-social-login-pro/providers/disqus/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39 #: nextend-social-login-pro/providers/paypal/admin/settings.php:27 #: nextend-social-login-pro/providers/paypal/admin/settings.php:39 #: nextend-social-login-pro/providers/vk/admin/settings.php:28 #: nextend-social-login-pro/providers/vk/admin/settings.php:40 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39 msgid "Required" msgstr "Kötelező" #: nextend-facebook-connect/providers/facebook/admin/settings.php:41 #: nextend-facebook-connect/providers/google/admin/settings.php:35 #: nextend-facebook-connect/providers/twitter/admin/settings.php:33 #: nextend-social-login-pro/providers/amazon/admin/settings.php:33 #: nextend-social-login-pro/providers/apple/admin/settings.php:34 #: nextend-social-login-pro/providers/apple/admin/settings.php:85 #: nextend-social-login-pro/providers/disqus/admin/settings.php:33 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33 #: nextend-social-login-pro/providers/paypal/admin/settings.php:33 #: nextend-social-login-pro/providers/vk/admin/settings.php:34 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33 #, php-format msgid "" "If you are not sure what is your %1$s, please head over to Getting Started" msgstr "" "Ha nem vagy benne biztos, hogy mit kell írnod a(z) %1$s mezőbe, menj vissza " "az Első lépések fülre." #: nextend-facebook-connect/providers/facebook/admin/settings.php:47 msgid "App Secret" msgstr "App Secret" #: nextend-facebook-connect/providers/facebook/facebook.php:79 msgid "Continue with Facebook" msgstr "Folytatás a Facebookkal" #: nextend-facebook-connect/providers/facebook/facebook.php:80 msgid "Link account with Facebook" msgstr "Fiók összekapcsolása a Facebook-kal" #: nextend-facebook-connect/providers/facebook/facebook.php:81 msgid "Unlink account from Facebook" msgstr "Szétkapcsolás Facebook-kal" #: nextend-facebook-connect/providers/facebook/facebook.php:135 #: nextend-facebook-connect/providers/google/google.php:158 #: nextend-facebook-connect/providers/twitter/twitter.php:95 #: nextend-social-login-pro/providers/amazon/amazon.php:65 #: nextend-social-login-pro/providers/apple/apple.php:71 #: nextend-social-login-pro/providers/apple/apple.php:77 #: nextend-social-login-pro/providers/disqus/disqus.php:112 #: nextend-social-login-pro/providers/linkedin/linkedin.php:63 #: nextend-social-login-pro/providers/paypal/paypal.php:90 #: nextend-social-login-pro/providers/vk/vk.php:61 #: nextend-social-login-pro/providers/wordpress/wordpress.php:99 #: nextend-social-login-pro/providers/yahoo/yahoo.php:90 #, php-format msgid "" "The %1$s entered did not appear to be a valid. Please enter a valid %2$s." msgstr "" "A megadott %1$s nem tűnik helyesnek. Győződj meg róla, hogy a beírt %2$s " "helyes." #: nextend-facebook-connect/providers/facebook/facebook.php:253 #: nextend-social-login-pro/providers/paypal/paypal.php:170 #, php-format msgid "Required scope: %1$s" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:2 msgid "Button skin" msgstr "Gomb skin" #: nextend-facebook-connect/providers/google/admin/buttons.php:8 msgid "Uniform" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:14 msgid "Light" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:20 msgid "Dark" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "" #| "Click on the \"Credentials\" in the left hand menu to create new API " #| "credentials" msgid "Click on the \"Credentials\" in the left hand menu" msgstr "" "Kattints a \"Credentials\" feliratra a bal oldali menüben hogy új API " "adatokat készíts" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11 #, php-format msgid "" "Under the \"OAuth 2.0 Client IDs\" section find your Client ID: " "%s" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/google/admin/getting-started.php:34 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorised redirect URIs\" field: %s" msgid "" "Add the following URL to the \"Authorised redirect URIs\" field: " "%s" msgstr "" "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: %s" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14 #, fuzzy #| msgid "Click on \"Save\"" msgid "Click on \"Save\"" msgstr "Kattints a \"Save\" gombra" #: nextend-facebook-connect/providers/google/admin/getting-started.php:18 #, fuzzy #| msgid "" #| "If you don't have a project yet, you'll need to create one. You can do " #| "this by clicking on the blue \"Create project\" button on the right " #| "side! ( If you already have a project, click on the name of your project " #| "in the dashboard instead, which will bring up a modal and click New " #| "Project. )" msgid "" "If you don't have a project yet, you'll need to create one. You can do this " "by clicking on the blue \"Create\" button on the right side! ( If " "you already have a project, click on the name of your project in the " "dashboard instead, which will bring up a modal and click \"New Project\". )" msgstr "" "Ha még nincs projected, készítened kell egyet. Ezt a job oldalon levő " "\"Create project\" gombra kattintva teheted meg! ( Ha már van projected, " "kattints a projected nevére a dashboardon, ami előfog hozni egy ablakot ahol " "a \"New Project\"-re kell kattintanod.)" #: nextend-facebook-connect/providers/google/admin/getting-started.php:19 #, fuzzy #| msgid "Name your project and then click on the Create button again" msgid "Name your project and then click on the \"Create\" button again" msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra újra." #: nextend-facebook-connect/providers/google/admin/getting-started.php:20 msgid "Once you have a project, you'll end up in the dashboard." msgstr "Ha van már projekted át leszel irányítva az irányítópultra" #: nextend-facebook-connect/providers/google/admin/getting-started.php:21 msgid "Click the “OAuth consent screen” button on the left hand side." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:22 msgid "" "Choose a User Type according to your needs. If you want to enable the " "social login with Google for any users with a Google account, then pick the " "External option!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:24 #, php-format msgid "" "Note: We don't use sensitive or restricted scopes either. But if you " "will use this App for other purposes too, then you may need to go through an " "%1$s!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:27 msgid "" "Enter a name for your App to the \"Application name\" field, which " "will appear as the name of the app asking for consent." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:28 #, fuzzy, php-format #| msgid "" #| "Fill the \"Authorized domains\" field with your domain name probably: " #| "%s without subdomains!" msgid "" "Fill the \"Authorized domains\" field with your domain name probably: " "%s without subdomains!" msgstr "" "Írd be a weboldalad főoldalának címét a \"Authorized domains\" mezőbe. " "Valószínűleg ez lesz az: %s" #: nextend-facebook-connect/providers/google/admin/getting-started.php:29 #, fuzzy #| msgid "Save your changes." msgid "Save your settings!" msgstr "Mentsd el a módosításaidat." #: nextend-facebook-connect/providers/google/admin/getting-started.php:30 #, php-format msgid "" "On the left side, click on the \"%1$s\" menu point, then click the " "\"%2$s\" button in the top bar." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:31 msgid "Choose the \"OAuth client ID\" option." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:32 #, fuzzy #| msgid "" #| "Click on the link \"registering an application\" under the Applications " #| "tab." msgid "Select the \"Web application\" under Application type." msgstr "" "Kattints a \"registering an application\" linker az Aplications tab alatt." #: nextend-facebook-connect/providers/google/admin/getting-started.php:33 msgid "Enter \"Name\" that for your OAuth client ID." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:35 #, fuzzy #| msgid "Click on the Create button" msgid "Click on the \"Create\" button" msgstr "Kattints a \"Create\" gombra" #: nextend-facebook-connect/providers/google/admin/getting-started.php:36 #, fuzzy #| msgid "" #| "A modal should pop up with your credentials. If that doesn't happen, go " #| "to the Credentials in the left hand menu and select your app by clicking " #| "on its name and you'll be able to copy-paste the Client ID and Client " #| "Secret from there." msgid "" "A modal should pop up with your credentials. If that doesn't happen, go to " "the Credentials in the left hand menu and select your app by clicking on its " "name and you'll be able to copy-paste the \"Client ID\" and " "\"Client Secret\" from there." msgstr "" "Fel fog ugrani egy ablak a hitelesítő adataiddal. Ha ez nem történik meg, " "menj a \"Credentials\" fülre a bal oldali menüben és választ ki az appodat a " "nevére kattintva. Innen ki tudod másolni a Client ID-t és Client Secretet." #: nextend-facebook-connect/providers/google/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:26 #: nextend-social-login-pro/providers/apple/admin/settings.php:28 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26 #: nextend-social-login-pro/providers/paypal/admin/settings.php:26 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26 msgid "Client ID" msgstr "Client ID" #: nextend-facebook-connect/providers/google/admin/settings.php:40 #: nextend-social-login-pro/providers/amazon/admin/settings.php:38 #: nextend-social-login-pro/providers/apple/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38 msgid "Client Secret" msgstr "Client Secret" #: nextend-facebook-connect/providers/google/admin/settings.php:47 msgid "Select account on each login" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:56 msgid "" "Disable, when you don't want to see the account select prompt on each login." msgstr "" #: nextend-facebook-connect/providers/google/google.php:106 msgid "Continue with Google" msgstr "Folytatás a Google-el" #: nextend-facebook-connect/providers/google/google.php:107 msgid "Link account with Google" msgstr "Fiók összekapcsolása a Google-lel" #: nextend-facebook-connect/providers/google/google.php:108 msgid "Unlink account from Google" msgstr "Szétkapcsolás Google-lel" #: nextend-facebook-connect/providers/google/google.php:285 #, php-format msgid "Required API: %1$s" msgstr "Szükséges API: %1$s" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Find your App and click on the Details button" msgid "Find your App and click on the \"Details\" button" msgstr "Keresd meg az Appod és kattints a Details gombra." #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11 msgid "" "The Edit button can be found on the App details tab. Click on it and " "select \"Edit details\"" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "Add the following URL to the \"Callback URLs\" field: %s" msgid "Add the following URL to the \"Callback URLs\" field: %s" msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: %s" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in yet" msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve." #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18 msgid "" "If you don't have a developer account yet, please apply one by filling all " "the required details! This is required for the next steps!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19 #, php-format msgid "" "Once your developer account is complete, navigate back to %s if you " "aren't already there!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "" #| "Fill the App name, Application description fields. Then enter your site's " #| "URL to the Website URL field: %s" msgid "" "Fill the App name, Application description fields. Then enter " "your site's URL to the Website URL field: %s" msgstr "" "Töltsd ki az App name és Application description mezőjet. Aztán írd be az " "oldalad címét a Website URL mezőbe: %s" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21 msgid "Tick the checkbox next to Enable Sign in with Twitter!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23 msgid "" "Fill the “Terms of Service URL\", \"Privacy policy URL\" and " "\"Tell us how this app will be used\" fields!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24 #, fuzzy #| msgid "Click the Create button." msgid "Click the Create button." msgstr "Kattints a \"Create\" gombra" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25 #, fuzzy #| msgid "Read the Developer Terms and click the Create button again!" msgid "Read the Developer Terms and click the Create button again!" msgstr "Olvasd el a Fejlesztői feltételeket és kattints a Create gombra újra." #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26 msgid "Select the Permissions tab and click Edit." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27 msgid "" "Tick the Request email address from users under the Additional " "permissions section and click Save." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28 #, fuzzy #| msgid "" #| "Go to the Keys and tokens tab and find the API key and API secret key" msgid "" "Go to the Keys and tokens tab and find the API key and API " "secret key" msgstr "" "Menj a \"Keys and tokens\" fülre ahol megtalálod az \"API key\"-t és \"API " "Secret\"-et" #: nextend-facebook-connect/providers/twitter/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:26 msgid "API Key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:38 msgid "API secret key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:57 msgid "Profile image size" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:71 msgid "Original" msgstr "" #: nextend-facebook-connect/providers/twitter/twitter.php:69 msgid "Continue with Twitter" msgstr "Folytatás a Twitterrel" #: nextend-facebook-connect/providers/twitter/twitter.php:70 msgid "Link account with Twitter" msgstr "Fiók összekapcsolása a Twitter-rel" #: nextend-facebook-connect/providers/twitter/twitter.php:71 msgid "Unlink account from Twitter" msgstr "Szétkapcsolás Twitter-rel" #: nextend-facebook-connect/widget.php:10 #, php-format msgid "%s Buttons" msgstr "%s Gombok" #: nextend-facebook-connect/widget.php:30 msgid "Title:" msgstr "" #: nextend-facebook-connect/widget.php:38 msgid "Button style:" msgstr "Gomb stílus:" #: nextend-facebook-connect/widget.php:53 msgid "Button align:" msgstr "Gombok igazítása" #: nextend-facebook-connect/widget.php:85 msgid "Show link buttons" msgstr "" #: nextend-facebook-connect/widget.php:94 msgid "Show unlink buttons" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:117 msgid "Social login is not allowed with this role!" msgstr "" "A közösségi fiókkal való belépés nem engedélyezett erre a felhasználói " "szintre." #: nextend-social-login-pro/class-provider-extension.php:213 #: nextend-social-login-pro/class-provider-extension.php:216 #: nextend-social-login-pro/class-provider-extension.php:222 #: nextend-social-login-pro/class-provider-extension.php:229 #: nextend-social-login-pro/class-provider-extension.php:300 #: nextend-social-login-pro/class-provider-extension.php:303 #: nextend-social-login-pro/class-provider-extension.php:307 msgid "ERROR" msgstr "HIBA" #: nextend-social-login-pro/class-provider-extension.php:213 msgid "Please enter a username." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:216 msgid "" "This username is invalid because it uses illegal characters. Please enter a " "valid username." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:222 msgid "This username is already registered. Please choose another one." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:229 msgid "Sorry, that username is not allowed." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:247 msgid "Username" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:300 msgid "Please enter an email address." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:303 msgid "The email address isn’t correct." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:307 msgid "This email is already registered, please choose another one." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:327 msgid "Registration confirmation will be emailed to you." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:378 msgid "ERROR: Please enter a password." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:384 msgid "ERROR: Passwords may not contain the character \"\\\"." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:390 msgid "" "ERROR: Please enter the same password in both password " "fields." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:407 msgid "Password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:417 msgid "Strength indicator" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:422 msgid "Confirm use of weak password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:428 msgid "Confirm password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:440 #, php-format msgid "" "This email is already registered, please login in to your account to link " "with %1$s." msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:54 #, php-format msgid "Please install and activate %1$s to use the %2$s" msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:68 msgid "Network Activate" msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:80 msgid "Install now!" msgstr "" #: nextend-social-login-pro/provider-extensions/facebook.php:74 #, php-format msgid "" "The Facebook Sync data needs an approved %1$s and your App must use the " "latest %2$s version!" msgstr "" #: nextend-social-login-pro/provider-extensions/google.php:176 #, php-format msgid "" "Most of these information can only be retrieved, when the field is marked as " "Public on the user's %s page!" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26 #, php-format msgid "Visit %s" msgstr "Látogass el ide: %s." #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30 msgid "" "On the right side, under \"Manage\", hover over the gear icon and " "select \"Web Settings\" option." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31 msgid "Click \"Edit\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Allowed Return URLs\" field %s " msgid "" "Add the following URL to the \"Allowed Return URLs\" field %s " msgstr "Tedd a következő linket az \"Allowed Return URLs\" mezőbe: %s" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" "Ahhoz. hogy a felhasználók beléphessenek a %1$s fiókjukkal, először létre " "kell hoznod egy %1$s Appot. Az alábbi útmutató végig vezet a %1$s App " "létrehozás folyamatán. Miután a(z) %1$s fiókod elkészült, menj a " "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod " "alapján." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in." msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27 #, fuzzy #| msgid "" #| "If you don't have a Security Profile yet, you'll need to create one. You " #| "can do this by clicking on the orange \"Create a New Security Profile\" " #| "button on the left side." msgid "" "If you don't have a Security Profile yet, you'll need to create one. You can " "do this by clicking on the orange \"Create a New Security Profile\" " "button on the left side." msgstr "" "Ha még nincs Security Profilod, újat kell készítened. Ezt megteheted a " "narancssárga \"Create a New Security Profile\" gombra kattintva a bal " "oldalon." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28 msgid "" "Fill \"Security Profile Name\", \"Security Profile Description" "\" and \"Consent Privacy Notice URL\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29 msgid "Once you filled all the required fields, click \"Save\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32 #, fuzzy, php-format #| msgid "" #| "Fill \"Allowed Origins\" with the url of your homepage, probably: %s" msgid "" "Fill \"Allowed Origins\" with the url of your homepage, probably: " "%s" msgstr "" "Írd be a weboldalad főoldalának címét a \"Allowed Origins\" mezőbe. " "Valószínűleg ez lesz az: %s" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28 msgid "When all fields are filled, click \"Save\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:35 #, fuzzy #| msgid "" #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of " #| "the page, under the \"Web Settings\" tab." msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" at the " "middle of the page, under the \"Web Settings\" tab." msgstr "" "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a " "Web Settings tab alatt." #: nextend-social-login-pro/providers/amazon/amazon.php:39 msgid "Continue with Amazon" msgstr "Folytatás az Amazon-nal" #: nextend-social-login-pro/providers/amazon/amazon.php:40 msgid "Link account with Amazon" msgstr "Fiók összekapcsolása az Amazon-nal" #: nextend-social-login-pro/providers/amazon/amazon.php:41 msgid "Unlink account from Amazon" msgstr "Szétkapcsolás Amazon-tól" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21 #, fuzzy #| msgid "Click on the name of your %s App." msgid "Click on the name of your service." msgstr "Kattints az %s Appod nevére." #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22 msgid "" "Click the \"Configure\" button next to \"Sign In with Apple\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53 #, php-format msgid "Click the blue + icon next to %1$s heading." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79 #, fuzzy, php-format #| msgid "Fill the \"Base domain\" field with your domain, probably: %s" msgid "" "Fill the \"Domains and Subdomains\" field with your domain name " "probably: %s" msgstr "" "Írd be a weboldalad főoldalának címét a \"Base domain\" mezőbe. Valószínűleg " "ez lesz az: %s" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:80 #, fuzzy, php-format #| msgid "Add the following URL to the \"Live Return URL\" field %s " msgid "Add the following URL to the \"Return URLs\" field: %s" msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: %s" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:26 msgid "" "Finally press \"Next\" then \"Done\" and finally click on the " "\"Continue\" and the \"Save\" button!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30 #, fuzzy, php-format #| msgid "" #| "To allow your visitors to log in with their %1$s account, first you must " #| "create an %1$s App. The following guide will help you through the %1$s " #| "App creation process. After you have created your %1$s App, head over to " #| "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to " #| "your %1$s App." msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\", \"%3$s\", \"%4$s\" and \"%5$s" "\" according to your %1$s App." msgstr "" "Ahhoz. hogy a felhasználók beléphessenek a %1$s fiókjukkal, először létre " "kell hoznod egy %1$s Appot. Az alábbi útmutató végig vezet a %1$s App " "létrehozás folyamatán. Miután a(z) %1$s fiókod elkészült, menj a " "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod " "alapján." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35 msgid "" "Make sure you have an active subscription for the Apple Developer " "Program!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36 msgid "" "Make sure your site have SSL, since Apple only allows HTTPS urls!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:41 msgid "1.) Create the associated App:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the %2$s " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:44 msgid "Enter a \"Description\"" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45 #, php-format msgid "" "At the \"Bundle ID\" field select the \"Explicit\" option and " "enter your domain name in reverse-domain name style, with the name of the " "app at its end: %s.nslapp" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46 msgid "" "Under the \"Capabilities\" section, tick the \"Sign In with Apple\" option." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47 msgid "" "Scroll up and press the \"Continue\" button and then the " "\"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50 msgid "2.) Create the Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:52 #, php-format msgid "On the left hand side, click on the \"%s\" tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:54 msgid "Enter a name in the Key Name field." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55 msgid "" "Tick the \"Sign In with Apple\" option, then click on \"Configure\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56 msgid "" "If you have multiple Apps, then at the \"Choose a Primary App ID\" " "field select the App what you just created, then click \"Save" "\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57 msgid "" "Finally press the \"Continue\" button and then the \"Register" "\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58 msgid "Don't download the key yet!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61 msgid "3.) Create the Service:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:63 #, php-format msgid "" "Go to the \"%1$s\" section, what you will find within the \"%2$s\" " "tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the \"%2$s\" " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:65 msgid "Enter a \"Description\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66 #, php-format msgid "" "At the \"Identifier\" field enter your domain name in reverse-domain " "name style, with the name of the client at its end: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69 msgid "Note: This will also be used as Service Identifier later!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72 msgid "" "Press the \"Continue\" button and then the \"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:73 #, php-format msgid "In the \"%1$s\" section, click the service you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76 msgid "" "Tick the \"Sign In with Apple\" option and click the \"Configure\" button next to it." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:78 msgid "" "If you have multiple Apps, then at the \"Primary App ID\" field select the " "App what you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:83 msgid "" "Save the configuration by clicking on the \"Save\" button and " "pressing \"Done\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:84 msgid "" "Finally press the \"Continue\" button and then the \"Save\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:87 msgid "4.) Configure Nextend Social Login with your credentials:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:89 msgid "Go to Nextend Social Login > Providers > Apple > Settings tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:90 msgid "Private Key ID:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:92 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:110 #, fuzzy, php-format #| msgid "Navigate to %s" msgid "Navigate to: %s" msgstr "Látogasd meg ezt az oldalt: %s" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:93 #, fuzzy #| msgid "Click on the name of your %s App." msgid "Click on the name of your Key." msgstr "Kattints az %s Appod nevére." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:94 msgid "You will find your \"Private Key ID\" under \"Key ID\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:97 msgid "Private Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99 msgid "" "Click the \"Download\" button to download the key file. Once this " "file is downloaded, it will no longer be available, so make sure you keep " "this file safe! " msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:100 msgid "" "Open the downloaded file with a text editor, like Notepad, copy " "all of its contents and paste it into the \"Private Key" "\" field of Nextend Social Login." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:103 msgid "Team Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105 msgid "" "A 10 character long identifier, what you can find on the top-right " "corner, just under your name." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:108 msgid "Service Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111 #, php-format msgid "" "You will find it under the \"IDENTIFIER\" column. If you configured " "the service according to the suggestions, it will probably end to .nslclient " "e.g.: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:114 msgid "" "Once you filled up all the fields, click on the \"Generate Token\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115 msgid "Finally verify the settings and enable the provider!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:116 msgid "" "When you need to change your credentials for some reason, then you must " "delete the token, copy the new credentials and generate a new token!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:48 msgid "Delete credentials" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:78 msgid "Private Key ID" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:89 #, fuzzy #| msgid "Privacy" msgid "Private Key" msgstr "Privacy" #: nextend-social-login-pro/providers/apple/admin/settings.php:99 msgid "Team Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:107 msgid "Service Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:117 msgid "Generate Token" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:53 #, fuzzy #| msgid "Continue with Google" msgid "Continue with Apple" msgstr "Folytatás a Google-el" #: nextend-social-login-pro/providers/apple/apple.php:54 #, fuzzy #| msgid "Link account with Google" msgid "Link account with Apple" msgstr "Fiók összekapcsolása a Google-lel" #: nextend-social-login-pro/providers/apple/apple.php:55 #, fuzzy #| msgid "Unlink account from Google" msgid "Unlink account from Apple" msgstr "Szétkapcsolás Google-lel" #: nextend-social-login-pro/providers/apple/apple.php:107 #: nextend-social-login-pro/providers/apple/apple.php:204 #: nextend-social-login-pro/providers/apple/apple.php:221 #, php-format msgid "Token generation failed: %1$s" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:107 msgid "Please check your credentials!" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:204 msgid "Private key format is not valid!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10 #, php-format msgid "Click on the name of your %s App." msgstr "Kattints az %s Appod nevére." #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "" #| "Select \"Read only\" at Default Access under the Authentication section." msgid "" "Select the \"Settings\" tab and scroll down to the Authentication " "section!" msgstr "" "Válaszd ki a \"Read only\"-t a Default Access-nél az Authentication " "szekcióban." #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23 #, fuzzy, php-format #| msgid "Add the following URL to the \"Callback URL\" field %s " msgid "Add the following URL to the \"Callback URL\" field %s " msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: %s" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14 #, fuzzy #| msgid "Click on the \"Save Changes\" button." msgid "Click on the \"Save Changes\" button." msgstr "Kattints a \"Save Changes\" gombra." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17 #, fuzzy #| msgid "" #| "Click on the link \"registering an application\" under the Applications " #| "tab." msgid "" "Click on the \"Registering new application\" button under the " "Applications tab." msgstr "" "Kattints a \"registering an application\" linker az Aplications tab alatt." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18 msgid "Enter a \"Label\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "Fill \"Website\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website\" with the url of your homepage, probably: %s" msgstr "" "Írd be a weboldalad főoldalának címét a \"Website\" mezőbe. Valószínűleg ez " "lesz az: %s" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20 #, fuzzy #| msgid "" #| "Complete the Human test and click the \"Register my application\" button." msgid "" "Complete the Human test and click the \"Register my application\" " "button." msgstr "" "Végezze el az Ember tesztet és kattintson a \"Register my application\" " "gombra." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21 #, fuzzy, php-format #| msgid "Fill the \"Domains\" field with your domain name like: %s" msgid "Fill the \"Domains\" field with your domain name like: %s" msgstr "" "Írd be a weboldalad főoldalának címét a \"Domains\" mezőbe. Valószínűleg ez " "lesz az: %s" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22 #, fuzzy #| msgid "" #| "Select \"Read only\" at Default Access under the Authentication section." msgid "" "Select \"Read only\" as Default Access under the Authentication " "section." msgstr "" "Válaszd ki a \"Read only\"-t a Default Access-nél az Authentication " "szekcióban." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24 #, fuzzy #| msgid "Click on the \"Save Changes\" button." msgid "Click on the \"Save Changes\" button!" msgstr "Kattints a \"Save Changes\" gombra." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25 #, fuzzy #| msgid "Navigate to the \"Details\" tab of your Application!" msgid "Navigate to the \"Details\" tab of your Application!" msgstr "Navigálj az alkalmazásod \"Details\" tabjára." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Here you can see your \"API Key\" and \"API Secret:\". These will be " #| "needed in the plugin's settings." msgid "" "Here you can see your \"API Key\" and \"API Secret\". These " "will be needed in the plugin's settings." msgstr "" "Itt találod az \"API Key\"-t és az \"API Secret\"-et. Ezekre lesz szükséged " "a plugin beállításainál." #: nextend-social-login-pro/providers/disqus/admin/settings.php:38 msgid "API Secret" msgstr "API Secret" #: nextend-social-login-pro/providers/disqus/disqus.php:86 msgid "Continue with Disqus" msgstr "Folytatás a Disqus-szal" #: nextend-social-login-pro/providers/disqus/disqus.php:87 msgid "Link account with Disqus" msgstr "Fiók összekapcsolása a Disqus-szal" #: nextend-social-login-pro/providers/disqus/disqus.php:88 msgid "Unlink account from Disqus" msgstr "Szétkapcsolás Disqus-tól" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10 msgid "Click on your App and go to the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11 #, fuzzy, php-format #| msgid "Add the following URL to the \"Redirect URLs\" field %s " msgid "Add the following URL to the \"Redirect URLs\" field: %s" msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: %s" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "Hit update to save the changes" msgid "Click on \"Update\" to save the changes" msgstr "Kattints az \"update\" gombra és mentsd el a beállításaidat." #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17 #, fuzzy #| msgid "Locate the blue \"Create application\" button and click on it." msgid "Locate the \"Create app\" button and click on it." msgstr "Keresd meg a kék \"Create application\" gombot és kattints rá." #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18 msgid "Enter the name of your App to the \"App name\" field." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19 #, php-format msgid "" "Find your company page in the \"Company\" field. If you don't have " "one yet, create new one at: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20 msgid "" "Enter your \"Privacy policy URL\" amd upload an \"App logo\"" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21 #, fuzzy #| msgid "Read the Developer Terms and click the Create button again!" msgid "" "Read and agree the \"API Terms of Use\" then click the \"Create " "App\" button!" msgstr "Olvasd el a Fejlesztői feltételeket és kattints a Create gombra újra." #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22 msgid "" "You will end up in the App setting area. Click on the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23 #, fuzzy, php-format #| msgid "Add the following URL to the \"Redirect URLs\" field %s " msgid "" "Find \"OAuth 2.0 settings\" section and add the following URL to the " "\"Redirect URLs\" field: %s" msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: %s" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25 #, fuzzy #| msgid "" #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of " #| "the page, under the \"Web Settings\" tab." msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" under " "the Application credentials section, on the Auth tab." msgstr "" "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a " "Web Settings tab alatt." #: nextend-social-login-pro/providers/linkedin/linkedin.php:37 msgid "Continue with LinkedIn" msgstr "Folytatás a LinkedInnel" #: nextend-social-login-pro/providers/linkedin/linkedin.php:38 msgid "Link account with LinkedIn" msgstr "Fiók összekapcsolása a LinkedIn-nel" #: nextend-social-login-pro/providers/linkedin/linkedin.php:39 msgid "Unlink account from LinkedIn" msgstr "Szétkapcsolás LinkedIn-nel" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18 msgid "There is a Sandbox/Live switch. Make sure \"Live\" is selected!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11 #, fuzzy, php-format #| msgid "Click on the name of your %s App." msgid "Click on the name of your %s App, under the REST API apps section." msgstr "Kattints az %s Appod nevére." #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading and click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "Add the following URL to the \"Live Return URL\" field %s " msgid "" "Add the following URL to the \"Live Return URL\" field: %s " msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: %s" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14 msgid "Click on \"Save\"" msgstr "Kattints a \"Save\" gombra" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15 #, php-format msgid "" "Editing Live Apps are only possible with a %s. So please make sure you own " "one!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19 #, fuzzy #| msgid "Click the \"Create App\" button." msgid "Click the \"Create App\" button under the REST API apps section." msgstr "Kattints a \"Create App\" gombra" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20 msgid "" "Fill the \"App Name\" field and click \"Create App\" button." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading then click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23 msgid "" "Scroll down to \"App feature options\" section and tick \"Log In " "with PayPal\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24 msgid "" "Click \"Advanced Options\" which can be found at the end of text " "after \"Connect with PayPal (formerly Log In with PayPal)\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25 msgid "Tick \"Full name\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:26 msgid "" "\"Email address\" now requires an App Review by PayPal. To get the " "email address as well, please submit your App for a review after your " "App configuration is finished. Once the App review is successful, you need " "to pick \"Email address\" here to retrieve the email of the user. Until then " "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27 msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29 msgid "" "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary " "\"Client ID\" and \"Secret\"! ( Make sure you are in " "\"Live\" mode and not \"Sandbox\". )" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:38 msgid "Secret" msgstr "Secret" #: nextend-social-login-pro/providers/paypal/admin/settings.php:45 msgid "Email scope" msgstr "Email scope" #: nextend-social-login-pro/providers/paypal/admin/settings.php:54 msgid "Disable, when you have no rights for email address." msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:64 msgid "Continue with PayPal" msgstr "Folytatás a PayPal-al" #: nextend-social-login-pro/providers/paypal/paypal.php:65 msgid "Link account with PayPal" msgstr "Fiók összekapcsolása a PayPal-al" #: nextend-social-login-pro/providers/paypal/paypal.php:66 msgid "Unlink account from PayPal" msgstr "Szétkapcsolás PayPal-tól" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Click on the Manage button at the App" msgid "Click on the \"Manage\" button next to the associated App." msgstr "Kattints a \"Manage \" gombra az Appban." #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11 #, fuzzy #| msgid "Go to the Settings menu" msgid "Go to the \"Settings\" menu" msgstr "Menj a \"Settings\" menübe." #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized redirect URI:\" field: %s" msgid "" "Add the following URL to the \"Authorized redirect URI\" field: " "%s" msgstr "" "Tedd a következő linket az \"Authorized redirect URI:\" mezőbe: %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17 #, fuzzy #| msgid "Locate the blue \"Create application\" button and click on it." msgid "Locate the blue \"Create app\" button and click on it." msgstr "Keresd meg a kék \"Create application\" gombot és kattints rá." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18 msgid "" "Enter the Title for your App and select \"Website\" as " "platform." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Fill \"Site address\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website address\" with the url of your homepage, probably: " "%s" msgstr "" "Írd be a weboldalad főoldalának címét a \"Site address\" mezőbe. " "Valószínűleg ez lesz az: %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "Fill the \"Base domain\" field with your domain, probably: %s" msgid "" "Fill the \"Base domain\" field with your domain, probably: %s" msgstr "" "Írd be a weboldalad főoldalának címét a \"Base domain\" mezőbe. Valószínűleg " "ez lesz az: %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21 msgid "When all fields are filled, click the \"Upload app\" button." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22 msgid "" "Fill the information form of your app, upload an app icon then " "click Save." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23 #, fuzzy #| msgid "Pick Settings at the left-hand menu " msgid "Pick Settings at the left-hand menu " msgstr "Válaszd ki a \"Settings\"-t a bal oldali menüből." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized redirect URI\" field %s " msgid "" "Add the following URL to the \"Authorized redirect URI\" field %s " msgstr "" "Tedd a következő linket az \"Authorized redirect URI\" mezőbe: %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25 #, fuzzy #| msgid "Save your app" msgid "Save your app" msgstr "Ments el az appot." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of " #| "the page, under the \"Web Settings\" tab." msgid "" "Find the necessary \"App ID\" and \"Secure key\" at the top of " "the Settings page where you just hit the save button." msgstr "" "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a " "Web Settings tab alatt." #: nextend-social-login-pro/providers/vk/admin/settings.php:39 msgid "Secure key" msgstr "" #: nextend-social-login-pro/providers/vk/vk.php:35 msgid "Continue with VK" msgstr "Folytatás a VK-val" #: nextend-social-login-pro/providers/vk/vk.php:36 msgid "Link account with VK" msgstr "Fiók összekapcsolása a VK-val" #: nextend-social-login-pro/providers/vk/vk.php:37 msgid "Unlink account from VK" msgstr "Szétkapcsolás VK-tól" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12 msgid "Click \"Manage Settings\" under the Tools section!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "Add the following URL to the \"Redirect URLs\" field %s " msgid "Add the following URL to the \"Redirect URLs\" field %s " msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: %s" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17 #, fuzzy #| msgid "Click on the \"Create New Application\" button." msgid "Click on the \"Create New Application\" button." msgstr "Kattints a \"Create New Application\" gombra." #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18 msgid "Enter a \"Name\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Fill \"Website URL\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website URL\" with the url of your homepage, probably: %s" msgstr "" "Írd be a weboldalad főoldalának címét a \"Website URL\" mezőbe. " "Valószínűleg ez lesz az: %s" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21 msgid "You can leave the \"Javascript Origins\" field blank!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22 msgid "Complete the human verification test." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23 #, fuzzy #| msgid "At the \"Type\" make sure \"Web\" is selected!" msgid "At the \"Type\" make sure \"Web\" is selected!" msgstr "Győződjön meg hogy a \"Típusnál\" a \"Web\" van kiválasztva!" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24 #, fuzzy #| msgid "Click the \"Create\" button!" msgid "Click the \"Create\" button!" msgstr "Kattints a \"Create\" gombra" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25 msgid "" "Click the name of your App either in the Breadcrumb navigation or " "next to Editing!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be " #| "needed in the plugin's settings." msgid "" "Here you can see your \"Client ID\" and \"Client Secret\". " "These will be needed in the plugin's settings." msgstr "" "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz " "szükséged a plugin beállításainál." #: nextend-social-login-pro/providers/wordpress/wordpress.php:73 msgid "Continue with WordPress.com" msgstr "Folytatás a WordPress.com-al" #: nextend-social-login-pro/providers/wordpress/wordpress.php:74 msgid "Link account with WordPress.com" msgstr "Fiók összekapcsolása a WordPress.com-al" #: nextend-social-login-pro/providers/wordpress/wordpress.php:75 msgid "Unlink account from WordPress.com" msgstr "Szétkapcsolás WordPress.com-tól" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10 msgid "Click on the App which has its credentials associated with the plugin." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "Add the following URL to the \"Redirect URLs\" field %s " msgid "" "Add the following URL to the \"Redirect URI(s)\" field: %s" msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: %s" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18 #, fuzzy #| msgid "Click the \"Create App\" button." msgid "Click on the \"Create an App\" button on the top right corner." msgstr "Kattints a \"Create App\" gombra" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19 msgid "" "Fill the \"Application Name\" and select \"Web Application\" " "at \"Application Type\"." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20 msgid "Enter a \"Description\" for your app!" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21 #, fuzzy, php-format #| msgid "Add the following URL to the \"Live Return URL\" field %s " msgid "" "Enter the URL of your site to the \"Home Page URL\" field: %s" msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: %s" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23 msgid "" "Under the \"API Permissions\" you should select \"OpenID Connect " "Permissions\" with both \"Email\" and \"Profile\" enabled." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:24 #, fuzzy #| msgid "Click the \"Create App\" button." msgid "Click \"Create App\"." msgstr "Kattints a \"Create App\" gombra" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:25 #, fuzzy #| msgid "" #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be " #| "needed in the plugin's settings." msgid "" "On the top of the page, you will find the necessary \"Client ID\" and " "\"Client Secret\"! These will be needed in the plugin's settings." msgstr "" "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz " "szükséged a plugin beállításainál." #: nextend-social-login-pro/providers/yahoo/yahoo.php:64 #, fuzzy #| msgid "Continue with Facebook" msgid "Continue with Yahoo" msgstr "Folytatás a Facebookkal" #: nextend-social-login-pro/providers/yahoo/yahoo.php:65 #, fuzzy #| msgid "Link account with Facebook" msgid "Link account with Yahoo" msgstr "Fiók összekapcsolása a Facebook-kal" #: nextend-social-login-pro/providers/yahoo/yahoo.php:66 #, fuzzy #| msgid "Unlink account from Facebook" msgid "Unlink account from Yahoo" msgstr "Szétkapcsolás Facebook-kal" #: nextend-social-login-pro/providers/yahoo/yahoo.php:186 #, fuzzy, php-format #| msgid "Required API: %1$s" msgid "Required permission: %1$s" msgstr "Szükséges API: %1$s" #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10 #: nextend-social-login-pro/template-parts/login/above-separator.php:20 #: nextend-social-login-pro/template-parts/login/below-separator.php:8 #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10 msgid "OR" msgstr "VAGY" #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1 #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1 msgid "Social accounts" msgstr "Közösségi fiókok" #~ msgid "Click on blue \"Create App ID\" button" #~ msgstr "Kattints a kék \"Create App ID\" gombra" #, fuzzy #~| msgid "In the top of the left sidebar, click on \"Settings\"" #~ msgid "" #~ "In the top of the left sidebar, click on \"Settings\" and select \"Basic\"" #~ msgstr "A bal oldali menü tetején kattints a \"Settings\"-re" #~ msgid "" #~ "Click the Create credentials button and select \"OAuth client ID\" from " #~ "the dropdown." #~ msgstr "" #~ "Kattints a \"Create credentials\" gombra és válaszd ki az \"OAuth client " #~ "ID\"-t a lenyíló listából." #~ msgid "Your application type should be \"Web application\"" #~ msgstr "Az applikációd típusa legyen \"Web application\"" #~ msgid "Name your application" #~ msgstr "Adj nevet az alkalmazásodnak" #~ msgid "Click the \"Save Changes\" button!" #~ msgstr "Kattints a \"Save Changes\" gombra" #, php-format #~ msgid "" #~ "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" #~ msgstr "" #~ "Tedd a következő linket az \"Authorized Redirect URLs:\" mezőbe: %s" #~ msgid "Click the \"Create App\" button." #~ msgstr "Kattints a \"Create App\" gombra" #~ msgid "Locate the blue \"Create application\" button and click on it." #~ msgstr "Keresd meg a kék \"Create application\" gombot és kattints rá." #~ msgid "Click on \"Update\"" #~ msgstr "Kattints az \"Update\" -ra" #, fuzzy, php-format #~| msgid "Fill the \"Domains\" field with your domain name like: %s" #~ msgid "" #~ "Check if the saved \"Callback Domain\" matches with your domain: %s" #~ msgstr "" #~ "Írd be a weboldalad főoldalának címét a \"Domains\" mezőbe. Valószínűleg " #~ "ez lesz az: %s" #, fuzzy #~| msgid "" #~| "Here you can see your \"Client ID\" and \"Client Secret\". These will be " #~| "needed in the plugin's settings." #~ msgid "" #~ "Replace your old \"Client ID\" and \"Client Secret\" with the one of the " #~ "new app!" #~ msgstr "" #~ "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz " #~ "szükséged a plugin beállításainál." #~ msgid "Fill \"Display Name\" and \"Contact Email\"" #~ msgstr "" #~ "Töltsd ki a \"Display name\" mezőt az app nevével. A \"Contact Email\" " #~ "mezőbe írd be az email címet, amin keresztül elérhetnek." #~ msgid "Locate the yellow \"Create application\" button and click on it." #~ msgstr "Keresd meg a sárga \"Create application\" gombot és kattints rá." #~ msgid "Fill the fields marked with *" #~ msgstr "Töltsd ki a csillaggal jelölt mezőket" #~ msgid "Accept the Terms of use and hit Submit" #~ msgstr "" #~ "Fogadd el a Felhasználási Feltétleket és kattints a Beküldés (Submit) " #~ "gombra" #~ msgid "Find the necessary Authentication Keys under the Authentication menu" #~ msgstr "" #~ "A szükséges \"Authentication Keys\"-t az Authentication menüben találod" #~ msgid "" #~ "You probably want to enable the \"r_emailaddress\" under the Default " #~ "Application Permissions" #~ msgstr "" #~ "Valószínűleg be kell kapcsolnod a \"r_emailaddress\"-t a \"Default " #~ "Application Permissions\" alatt" #, fuzzy #~| msgid "Log in with your %s credentials if you are not logged in" #~ msgid "Log in with your credentials if you are not logged in" #~ msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve." #~ msgid "" #~ "Move your mouse over Facebook Login and click on the appearing \"Set Up\" " #~ "button" #~ msgstr "" #~ "Vidd a kurzort a \"Facebook Login\" doboz fölé és kattints a megjelenő " #~ "\"Set Up\" gombra." #~ msgid "Choose Web" #~ msgstr "Válaszd a \"Web\"-et" #~ msgid "Fill \"Site URL\" with the url of your homepage, probably: %s" #~ msgstr "" #~ "Írd be a weboldalad főoldalának címét a \"Site URL\" mezőbe. Valószínűleg " #~ "ez lesz az: %s" #~ msgid "Legacy" #~ msgstr "Örökölt" #~ msgid "" #~ "%s took the place of Nextend Google Connect. You can delete Nextend " #~ "Google Connect as it is not needed anymore." #~ msgstr "" #~ "%s átvette a Nextend Google Connect helyét. Letörölheted a Nextend Google " #~ "Connect plguint, mivel már nincs rá szükség." #~ msgid "" #~ "%s took the place of Nextend Twitter Connect. You can delete Nextend " #~ "Twitter Connect as it is not needed anymore." #~ msgstr "" #~ "%s átvette a Nextend Twitter Connect helyét. Letörölheted a Nextend " #~ "Twitter Connect plguint, mivel már nincs rá szükség." #~ msgid "Import Facebook configuration" #~ msgstr "Facebook konfiguráció importálása" #~ msgid "Be sure to read the following notices before you proceed." #~ msgstr "Mielőtt tovább lépnél, olvasd el az alábbi figyelmeztetéseket." #~ msgid "Important steps before the import" #~ msgstr "Fontos lépések az importálás megkezdése előtt" #~ msgid "" #~ "Make sure that the redirect URI for your app is correct before proceeding." #~ msgstr "" #~ "A továbblépés előtt győződj meg róla, hogy a \"Redirect URI\" az appodnál " #~ "helyesen van beállítva." #~ msgid "Visit %s." #~ msgstr "Látogass el ide: %s." #~ msgid "Select your app." #~ msgstr "Válaszd ki az appodat." #~ msgid "" #~ "Go to the Settings menu which you can find below the Facebook Login in " #~ "the left menu." #~ msgstr "" #~ "Menj a \"Settings\" menübe a \"Facebook Login\" alatt a bal oldali " #~ "menüben." #~ msgid "Make sure that the \"%1$s\" field contains %2$s" #~ msgstr "Győződj meg róla, hogy a \"%1$s\" mező tartalmazza: %2$s" #~ msgid "The following settings will be imported:" #~ msgstr "Az alábbi beállítások kerülnek importálásra:" #~ msgid "Your old API configurations" #~ msgstr "A régi API beállításaid" #~ msgid "The user prefix you set" #~ msgstr "A beállított felhasználónév előtag" #~ msgid "Create a backup of the old settings" #~ msgstr "Készíts biztonsági mentést a régi beállításokról" #~ msgid "Other changes" #~ msgstr "Egyéb változások" #~ msgid "" #~ "The custom redirect URI is now handled globally for all providers, so it " #~ "won't be imported from the previous version. Visit \"Nextend Social Login " #~ "> Global settings\" to set the new redirect URIs." #~ msgstr "" #~ "Az átirányítási link már mindegyik providerre egyszerre érvényes, ezért " #~ "ez a beállítás nem lesz importálva a régi verzióból. Látogass el a " #~ "\"Nextend Social Login > Általános beállítások\" fülre az új átirányítási " #~ "link beállításához." #~ msgid "" #~ "The login button's layout will be changed to a new, more modern look. If " #~ "you used any custom buttons that won't be imported." #~ msgstr "" #~ "A belépés gomb kinézete változni fog egy újabb, modernebb változatra. Ha " #~ "valamilyen egyedi gombot használtál azok a beállítások nem kerülnek " #~ "importálásra." #~ msgid "" #~ "The old version's PHP functions are not available anymore. This means if " #~ "you used any custom codes where you used these old functions, you need to " #~ "remove them." #~ msgstr "" #~ "Az előző verzió PHP függvényei nem érhetőek el a továbbiakban. Ez azt " #~ "jelenti, hogy ha bármilyen egyedi kódban használtad őket el kell " #~ "távolítanod a kódot." #~ msgid "" #~ "After the importing process finishes, you will need to test your " #~ "app and enable the provider. You can do both in the next screen." #~ msgstr "" #~ "Miután az importálási folyamat befejeződött, le kell tesztelned az " #~ "appodat majd engedélyezni a providert. Mindkettőt meg tudod tenni " #~ "a következő oldalon." #~ msgid "Import Configuration" #~ msgstr "Konfiguráció Importálása" #~ msgid "Import Google configuration" #~ msgstr "Google konfiguráció importálása" #~ msgid "If you have more projects, select the one where your app is." #~ msgstr "Ha több projekted van, válaszd ki azt, amelyikben az appod van." #~ msgid "Click on Credentials at the left-hand menu then select your app." #~ msgstr "" #~ "Kattints a \"Credentials\" feliratra a bal oldali menüben majd válaszd ki " #~ "az appodat." #~ msgid "Import Twitter configuration" #~ msgstr "Twitter konfiguráció importálása" #~ msgid "Go to the Settings tab." #~ msgstr "Menj a \"Settings\" fülre." #, fuzzy #~| msgid "" #~| "Go to the OAuth consent screen tab and enter a product name and provide " #~| "the Privacy Policy URL, then click on the save button." #~ msgid "" #~ "If you're prompted to set a product name, do so. Provide the Privacy " #~ "Policy URL as well then click on the save button" #~ msgstr "" #~ "Menj az \"OAuth consent screen\" fülre. Írd be a termék nevét és írd be a " #~ "linket az Adatvédelmi Irányelvek oldalad linkjét. Kattints a Save gombra." #~ msgid "Authorize your Pro Addon" #~ msgstr "Aktiváld a Pro Kiegészítődet" #~ msgid "Authorize" #~ msgstr "Aktiválás" #~ msgid "Deauthorize Pro Addon" #~ msgstr "Pro kiegészítő deaktiválása" #~ msgid "Accept the Twitter Developer Agreement" #~ msgstr "Fogadd el a Twitter Fejlesztői Megállapodást" #~ msgid "" #~ "Create your application by clicking on the Create your Twitter " #~ "application button" #~ msgstr "" #~ "Hozd létre az alkalmazásodat a \"Create your Twitter application\" gombra " #~ "kattintva" #~ msgid "Consumer Key" #~ msgstr "Consumer Key" #~ msgid "Consumer Secret" #~ msgstr "Consumer Secret" #~ msgid "Comment login button" #~ msgstr "Belépés gomb a kommenteknél" #~ msgid "Comment button style" #~ msgstr "Gomb stílusa a kommenteknél" #~ msgid "WooCommerce login form" #~ msgstr "WooCommerce belépési űrlap" #~ msgid "Connect button before login form" #~ msgstr "Belépés gomb a belépési űrlap előtt" #~ msgid "Connect button after login form" #~ msgstr "Belépés gomb a belépési űrlap után" #~ msgid "Connect button before billing form" #~ msgstr "Belépés gomb a számlázási űrlap előtt" #~ msgid "Connect button after billing form" #~ msgstr "Belépés gomb a számlázási űrlapon" #~ msgid "Link buttons before account details" #~ msgstr "Összekapcsoló gombok a profil részletes beállításai előtt" #~ msgid "WooCommerce button style" #~ msgstr "WooCommerce gomb stílusa" #~ msgid "Use custom" #~ msgstr "Egyedi gomb használata" #~ msgid "Fixed redirect url for register" #~ msgstr "Fix átirányítási link regisztrációnál" #~ msgid "" #~ "%5$s plugin (version: %1$s, required: %2$s or newer) is not compatible " #~ "with the PRO addon (version: %3$s, required: %4$s or newer). Please " #~ "upgrade to the latest version! PRO addon disabled." #~ msgstr "" #~ "%5$s plugin (jelenlegi verzió %1$s, szükséges verzió: %2$s vagy újabb) " #~ "nem kompatibilis a Pro Kiegészítővel (jelenlegi verzió: %3$s , szükséges " #~ "verzió: %4$s vagy újabb). Kérlek frissítd a legújabb verzióra! A Pro " #~ "Kiegészítő kikapcsolva." #~ msgid "%s needs the CURL PHP extension." #~ msgstr "A %s-nak szüksége van a CURL PHP kiegészítőre." #~ msgid "Https protocol is not supported or disabled in CURL." #~ msgstr "A HTTPS protokol nincs támogat a CURL-ben vagy ki van kapcsolva." #~ msgid "Not Tested" #~ msgstr "Nincs Tesztelve" #~ msgid "Test to Enable" #~ msgstr "Tesztelés az Engedélyezéshez" #~ msgid "" #~ "This %s account is already linked with other account. Linking process " #~ "failed!" #~ msgstr "" #~ "Az %s fiók már haszálva van egy másik közösségi fiókkal. Az " #~ "összekapcsolási folyamat sikertelen!" #~ msgid "Your configuration needs testing" #~ msgstr "A konfigurációt le kell tesztelni" #~ msgid "Test the Configuration" #~ msgstr "Teszteld le a Konfigurációt" #~ msgid "Test Again" #~ msgstr "Teszteld Újra" #~ msgctxt "App creation" #~ msgid "Create %" #~ msgstr "%s" languages/nextend-facebook-connect-pt_BR.mo000066600000102274152140537230014732 0ustar00V |$k12dzN@t 5!z! ?"tJ""D"0##OT##### ####$ $%$+$2$ 9$D$[$v$$$$$$! %<+%h%Mo%3%&& ' ',';' Q' ]' j'x' 'e''(!$( F( P(^(%f((((%(()/)K)g))))))"*3*8* >*I*Q*`*8u***$** * +++:+??+X+6+,,6<,s,y, ,,,,,,,#,$-A- U-_-w---%-------.%%.K.f. k. w.v..]//Cd0 0 000 0 0 01 11171!W1y1!11 11&2"?2b2 r28}2922 2 3 33 13 =3J3 S3 a3l3{33#33333 4")4!L4!n44"4444 44 55*5H5K5^58q5 5555 55 66l(6>6660 73=7,q7,777 77#838 ;8$E8fj88899 *949NJ999 999 99:*:1<:!n::::: : : :: : ;; ";,;1;C;V; j;w;; ;; ;;+;$< *<7<=<O< b<l<< < <<<&<I<&@=%g=^==0><5>Tr>k>f3???&@[f@@K@(A)>BjhCCC!C!D#7D![D#}D!D"DD(E -E:E ME YEeEkEB}E+EEEF F1%FWFgF}F_F3F#G&>G6eG!GGG GG3H9Ht6IjI JG7JaJ'J K K K7KNK$OzBOXOQQTkRIR{ SS1TT MUXU#U?V'EVEmV VVVVVVWWW .W:W@W GWQWfWoWW&WWWWX.)X=XXXMXQX=ZDZWZlZZ ZZZZZZu [#[[$[ [[ [)\0\A\_\*\"\\\\]6]R]p]]]"]] ]] ^^"^AB^ ^$^-^ ^ ^ ^ _ _-_=2_Op_2_&_9`T`Y`2```` ````5a29ala a'a aaa0a b&b>bFbLbUb#nb)bbbb bcc_dtdVehe yeeeeeeeee e f"*f Mf"nf f!ff'f'gAgTg:hgDggghh()hRhchshzhhh hh#hhhii.2i.ai4i3i.i.(jWjljuj|jjjj.jj jkKk gktk}kkkkkkulKzl&l)l%m>=mF|m;mmn )n7n2Kn ~nn#npn/oLokoo oowo 2pR EFs> 4L'wM)1H%U;Q)QC-%1$s ‹ %2$s — WordPress%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in order to allow login with %1$s.%1$s collects data when a visitor register, login or link the account with with any of the enabled social provider. It collects the following data: email address, name, social provider identifier and access token. Also it can collect profile picture and more fields with the Pro Addon's sync data feature.%1$s detected that %2$s installed on your site. You must set "Page for register flow" and "OAuth redirect uri proxy page" in %1$s to work properly.%1$s detected that %2$s installed on your site. You need the Pro Addon to display Social Login buttons in %2$s login form!%1$s removes the collected personal data when the user deleted from WordPress.%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE.%1$s requires WordPress version %2$s+. Because you are using an earlier version, the plugin is currently NOT ACTIVE.%1$s stores the personal data on your site and does not share it with anyone except the access token which used for the authenticated communication with the social providers.%1$s use the access token what the social provider gave to communicate with the providers to verify account and securely access personal data.%1$s use the personal data collected by the social providers to create account on your site when the visitor authorize it.%s Buttons%s detected that your login url changed. You must update the Oauth redirect URIs in the related social applications.%s needs json_decode function.ERROR: Passwords may not contain the character "\".ERROR: Please enter a password.ERROR: Please enter the same password in both password fields.API KeyAPI secret keyAboveAbove with separatorAccess tokenAccount detailsAction:ActivateActivate Pro AddonActivating...AdminAlwaysApp IDApp SecretApp creationCreate %sAsk E-mail on registrationAsk Password on registrationAsk Username on registrationAuthentication errorAuthentication failedAuthentication successfulAuthorize Pro AddonAutomatic, based on email addressAutomatically connect the existing account upon registrationAvatarAvatar (%s)Avatar (%s)Before you can start letting your users register with your app it needs to be tested. This test makes sure that no users will have troubles with the login and registration process.
If you see error message in the popup check the copied ID and secret or the app itself. Otherwise your settings are fine.BelowBelow and floatingBelow with separatorBilling formBilling layoutBlacklisted redirectsButton skinButton styleButton style:ButtonsBuy Pro AddonBy clicking Register, you accept our Privacy PolicyClick here to login or registerClick on "Save"Click on the name of your %s App.Client IDClient SecretCommentComplete the human verification test.Confirm passwordConfirm use of weak passwordConnect button after registerConnect button before account detailsConnect button before registerConnect button onContinue with AmazonContinue with DisqusContinue with FacebookContinue with GoogleContinue with LinkedInContinue with PayPalContinue with TwitterContinue with VKContinue with WordPress.comDarkDebugDebug modeDefaultDefault buttonDefault redirect urlDefault roles for user who registered with this providerDisableDisable external redirectsDisable login for the selected rolesDisabledDiscussionDisliked itDismissDismiss and check Pro AddonDocsDoes the plugin collect telemetry data, directly or indirectly?Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a third party?Does the plugin share personal data with third partiesDoes the plugin store things in the browser?Does the plugin use personal data collected by others?ERROREmailEmbedded Login form button styleEmbedded Login layoutEmbedded login formEnableEnabledEnter your email addressErrorEvery Oauth Redirect URI seems fineFallback username prefix on registerFirst and last nameFix ErrorFix Oauth Redirect URIsFix nowFixed redirect urlGeneralGet Pro Addon to unlock more featuresGetting StartedGlobal SettingsGot itHated itHideHide login buttonsHow long we retain your dataHow to get SSL for my WordPress site?I am done setting up my %sIconIcon buttonIdentifierIf you already have a license, you can Authorize your Pro Addon. Otherwise you can purchase it using the button below.If you are happy with Nextend Social Login and can take a minute please leave us a review. It will be a tremendous help for us!If you are not sure what is your %1$s, please head over to Getting StartedIf you don't have a developer account yet, please apply one by filling all the required details! This is required for the next steps!If you want to blacklist redirect url params. One pattern per line.Image buttonImage urlInstall %s nowInstall Pro AddonInstall now!It was okLicense keyLightLiked itLinkLink account with AmazonLink account with DisqusLink account with FacebookLink account with GoogleLink account with LinkedInLink account with PayPalLink account with TwitterLink account with VKLink account with WordPress.comLink buttons after account detailsLink buttons onLink labelLog in with your %s credentials if you are not logged inLog in with your %s credentials if you are not logged in.LoginLogin FormLogin buttonLogin formLogin form button styleLogin labelLogin layoutLoved itManage AvatarMembershipNavigate to %sNetwork ActivateNetwork connection failed: %1$sNetwork connection successful: %1$sNeverNever, generate automaticallyNoNo Connect buttonNo Connect button in Login formNo Connect button in Register formNo Connect button in Sign Up formNo Connect button in billing formNo Connect button in login formNo Connect button in register formNo link buttonsNobodyNoneNot AvailableNot ConfiguredNot VerifiedOAuth proxy pageOAuth redirect uri proxy pageOROauth Redirect URIOk, you deserve itOnce you have a project, you'll end up in the dashboard.Order SavedOriginalOther settingsOverride global "%1$s"PRO settingsPage for register flowPasswordPlease Leave a ReviewPlease contact with your hosting provider to resolve the network issue between your server and the provider.Please contact your server administrator and ask for solution!Please enter a username.Please enter an email address.Please install and activate %1$s to use the %2$sPlease save your changes before verifying settings.Please save your changes to verify settings.Please update %1$s to version %2$s or newer.Powered by WordPressPrefer new tabPrefer popupPrefer same windowPrevent external redirect overridesPrivacyPro AddonPro Addon is installed and activatedPro Addon is installed but not activated. To be able to use the Pro features, you need to activate it.Pro Addon is not activatedPro Addon is not installedProfile image sizeProfile pictureProvidersRate your experience!Receive info on the latest plugin updates and social provider related changes.RegisterRegister For This Site!Register FormRegister button styleRegister flow pageRegister formRegister form button styleRegister layoutRegistration FormRegistration confirmation will be emailed to you.Registration notification sent toRequiredRequired API: %1$sRequired scope: %1$sReset to defaultSave ChangesSaving failedSaving...SecretSecure keySettingsSettings saved.ShortcodeShowShow link buttonsShow login buttonsShow unlink buttonsSign Up formSign Up form button styleSign Up layoutSimple linkSocial AccountsSocial LoginSocial accountsSocial login is not allowed with this role!Sorry, that username is not allowed.Stay UpdatedStoreStore in meta keyStrength indicatorSubscribeSuccessfully subscribed!SupportSync dataTarget windowTerms and conditionsTest %1$s connectionTest network connection with providersThe %1$s entered did not appear to be a valid. Please enter a valid %2$s.The email address isn’t correct.The entered email address is invalid!The features below are available in %s Pro Addon. Get it today and tweak the awesome settings.The test was successfulThis %s account is already linked to other user.This email is already registered, please choose another one.This email is already registered, please login in to your account to link with %1$s.This provider is currently disabled, which means that users can’t register or login via their %s account.This provider is currently enabled, which means that users can register or login via their %s account.This provider works fine, but you can test it again. If you don’t want to let users register or login with %s anymore you can disable it.This username is already registered. Please choose another one.This username is invalid because it uses illegal characters. Please enter a valid username.Title:To access the Pro features, you need to install and activate the Pro Addon.To allow your visitors to log in with their %1$s account, first you must create a %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.To allow your visitors to log in with their %1$s account, first you must create an %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.To be able to use the Pro features, you need to install and activate the Nextend Social Connect Pro Addon.Unexpected response: %sUniformUnlink account from AmazonUnlink account from DisqusUnlink account from FacebookUnlink account from GoogleUnlink account from LinkedInUnlink account from PayPalUnlink account from TwitterUnlink account from VKUnlink account from WordPress.comUnlink labelUnlink successful.Update now!Upgrade NowUsageUse custom buttonUse the %s in your custom button's code to make the label show up.Used when username is invalid or not storedUserUser and AdminUsernameUsername prefix on registerUsers must be registered and logged in to commentVerify SettingsVerify Settings AgainVisit %sWe'll be bringing you all the latest news and updates about Social Login - right to your inbox.What personal data we collect and why we collect itWhen email is not provided or emptyWhen not enabled, email will be empty.When not enabled, username will be randomly generated.When username is empty or invalidWho we share your data withWordPress defaultWorks FineYes, %1$s must create a cookie for visitors who use the social login authorization flow. This cookie required for every provider to secure the communication and to redirect the user back to the last location.You can leave the "Javascript Origins" field blank!You don't have cURL support, please enable it in php.ini!You don’t have sufficient permissions to install and activate plugins. Please contact your site’s administrator!You have already linked a(n) %s account. Please unlink the current and then you can link other %s account.You have logged in successfully.You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to workYour %1$s account is successfully linked with your account. Now you can sign in with %2$s easily.Your configuration needs to be verifiedfor Loginfor Registerhttps://wordpress.org/site← Back to %sProject-Id-Version: ss3 PO-Revision-Date: 2020-03-26 11:08+0100 Last-Translator: Language-Team: renato@modernstuff.com.br Language: pt_BR MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 2.2.4 X-Poedit-Basepath: ../.. Plural-Forms: nplurals=2; plural=(n != 1); X-Poedit-SourceCharset: UTF-8 X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e X-Poedit-SearchPath-0: nextend-social-login-pro X-Poedit-SearchPath-1: nextend-facebook-connect X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/compat X-Poedit-SearchPathExcluded-1: nextend-facebook-connect/providers/google/compat X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/compat %1$s ‹ %2$s — WordPress%1$s permite apenas redirecionamentos OAuth de HTTPS. Você deve mover seu site para HTTPS para permitir o login com %1$s.%1$s coleta dados quando um visitante registra, faz login ou vincula a conta com qualquer um dos provedores sociais ativados. Coleta os seguintes dados: endereço de e-mail, nome, identificador de provedor social e token de acesso. Também pode coletar fotos de perfil e mais campos com o recurso de dados de sincronização do complemento pro.%1$s detectou que %2$s instalado em seu site. Você deve definir "uma página para fluxo de registro" e "página do proxy uri do redirecionamento OAuth" em %1$s para funcionar corretamente.%1$s detectado que %2$s instalou em seu site. Você precisa Addon Pro para mostrar botões de Login Social no formulário de login %2$s!%1$s Remove os dados pessoais coletados quando o usuário é excluído do WordPress.%1$s requer a versão do PHP %2$s+, O plugin atualmente não está ativo.%1$s requer versão do WordPress %2$s+. Como você está usando uma versão anterior, o plugin não está ativo no momento.%1$s Armazena os dados pessoais em seu site e não os compartilha com ninguém, exceto o token de acesso usado para a comunicação autenticada com os provedores sociais.%1$s Usa o token de acesso que o provedor social deu para se comunicar com os provedores para verificar a conta e acessar com segurança os dados pessoais.%1$s Usa os dados pessoais coletados pelos provedores sociais para criar uma conta em seu site quando o visitante autorizá-lo.Botões %s%s detectou que sua url de login mudou. Você deve atualizar as URIs de redirecionamento do Oauth nas aplicações sociais relacionados.%s precisa da função json_decode.ERRO: Senhas não podem conter o caractere"\".ERRO:digite uma senha.ERRO: Digite a mesma senha nos dois campos de senha.Chave APIChave secreta da APIAcimaAcima com separadorToken de acessoDetalhes da ContaAção:AtivarAtivar Addon ProAtivando...AdminSempreID do AppChave Secreta do AppCriar %sSolicitar E-mail no registroPedir senha no registroSolicitar Nome de Usuário no registroErro de autenticaçãoFalha na autenticaçãoAutenticação bem sucedidaAutorize Addon ProAutomaticamente, baseado no endereço de emailConectar automaticamente a conta existente durante o registroAvatarAvatar (%s)Avatar (%s)Antes que você possa começar a deixar seus usuários registrarem com seu app ele precisa ser testado. Este teste garante que nenhum usuário terá problemas com o processo de login e registro.
Se você ver mensagem de erro no popup verifique os ID e segredo ou mesmo o app. Caso contrário suas configurações estão funcionando.AbaixoAbaixo e flutuanteAbaixo com separadorFormulário de faturamentoLayout de cobrançaRedirecionamentos de BlacklistedSkin de botãoEstilo do botão:Estilo do botão:BotõesComprar Addon ProAo clicar em registrar, você aceita nossa política de privacidadeClique aqui para logar ou registrarClique em "Salvar"Clique no nome do seu %s aplicativo.ID do ClienteChave do ClienteComentárioComplete o teste de verificação humano.Confirme a senhaConfirme o uso de senha fracaBotão Conectar após registrarBotão Conectar antes de detalhes da contaBotão Conectar antes de registrarConectar botão emContinuar com AmazonContinuar com DisqusContinuar com FacebookContinuar com GoogleContinuar com LinkedInContinuar com PayPalContinuar com TwitterContinuar com VKContinuar com WordPress.comEscuroDepuraçãoModo de depuraçãoPadrãoBotão padrãoURL de redirecionamento padrãoFunções padrão para usuário que registrou com este fornecedorDesativarDesativar redirecionamentos externosDesabilitar login para funções selecionadasDesativadoDiscussãoNão gostouDispensarDispensar e verificar Addon ProDocsO plugin coleta dados de telemetria, direta ou indiretamente?O plugin carrega JavaScript, rastreia pixels ou incorpora iframes de terceiros?O plugin compartilha dados pessoais com terceiros?O plugin armazena coisas no navegador?O plugin usa dados pessoais coletados por outras pessoas?ERROE-mailEstilos do botão de formulário Login incorporadoLayout do Login incorporadoFormulário Login incorporadoHabilitarAtivadoDigite seu endereço de e-mailErroTodos URIs de Redirecionamento Oauth parecem corretosPrefixo do nome de usuário de retorno no registroPrimeiro e último nomeCorrigir erroCorrigir URIs de Redirecionamento OauthCorrigir erroURL de redirecionamento fixoGeralObter o Addon Pro para desbloquear mais recursosIniciandoConfigurações globaisEntendiOdiouEsconderOcultar botões de loginPor quanto tempo retemos seus dadosComo obter SSL para o meu site WordPress?Terminei de configurar meu %sÍconeÍcone do botãoIdentificadorSe você já possui uma licença, você pode autorizar seu Addon Pro. Caso contrário, você pode comprá-lo usando o botão abaixo.Se você está feliz com o Nextend Social Login e pode nos dar um minuto, deixe-nos um comentário. Será uma tremenda ajuda para nós!Se não tiver certeza de qual é o seu %1$s, por favor dirija-se a IniciandoSe você ainda não possui uma conta de desenvolvedor, aplique uma preenchendo todos os detalhes necessários! Isso é necessário para as próximas etapas!Se você deseja redirecionar os parâmetros de url da blacklist. Um padrão por linha.Botão de imagemURL da ImagemInstalar %s agoraInstale o Addon ProInstalar agora!Foi okChave de licençaClaroGostouLinkVincular conta com AmazonVincular conta com DisqusVincular conta com FacebookVincular conta com GoogleVincular conta com LinkedInVincular conta com PayPalVincular conta com TwitterVincular conta com VKVincular conta com WordPress.comBotão Vincular após detalhes da contaLink de botões emRótulo de VincularLogue com suas credenciais %s se você não estiver logadoFaça o login com o seu %s credenciais se você não estiver logado.Log inFormulário de loginBotão de loginFormulário de loginEstilo do botão do formulário de loginRótulo de LoginLayout de loginAdorouGerenciar avatarMembrosNavegar para %sAtivar redeFalha na conexão de rede: %1$sConexão de rede bem sucedida: %1$sNuncaNunca, gerar automaticamenteNãoNenhum botão ConectarNenhum botão conectar no formulário de LoginNenhum botão Conectar no formulário de loginNenhum botão conectar no formulário de inscriçãoNenhum botão Connectar no formulário de cobrançaNenhum botão Conectar no formulário de loginNenhum botão Conectar no formulário de loginSem link nos botõesNinguémNenhumNão DisponívelNão ConfiguradoNão VerificadoPágina do proxy OAuthPágina do proxy uri do redirecionamento OAuthOUURI de Redirecionamento do OAuthOkUma vez que você tenha um projeto, você vai acabar no painel de controle.Pedido SalvoOriginalOutras configuraçõesSubstituir global "%1$s"Configurações PROPágina para fluxo de registroSenhaPor favor, deixe uma revisãoEntre em contato com o seu provedor de hospedagem para resolver o problema de rede entre o seu servidor e o provedor.Entre em contato com o seu administrador do servidor e peça uma solução!Por favor coloque um nome de usuário.Por favor, digite um endereço de e-mail.Instale e ative %1$s para usar o %2$sSalve suas alterações antes de verificar as configurações.Por favor salve suas alterações para verificar suas configurações.Por favor, atualize %1$s para versão %2$s ou mais recente.Alimentado por WordPressPrefir nova guiaPrefir pop-upPrefir mesma janelaEvitar substituições de redirecionamento externoPrivacidadeComplemento proAddon Pro está instalado e ativadoAddon Pro está instalado mas não activado. Para ser capaz de usar os recursos do Pro, você precisa ativá-lo.Addon Pro não está ativadoAddon pro não está instaladoTamanho da imagem do perfilFoto do perfilProvedoresAvalie sua experiência!Receba informações sobre as atualizações mais recentes do plugin e as alterações relacionadas ao provedor social.CadastrarRegistrar Para Este Site!Formulário de registoEstilo do botão do formulário de loginRegistrar página de fluxoFormulário de registoEstilo do botão do formulário de loginCadastrar layoutFormulário de RegistoUma confirmação do registro será enviado por email para você.Notificação de registro enviada paraObrigatórioAPI obrigatória: %1$sEscopo requerido: %1$sRedefinir para o padrãoSalvar AlteraçõesO salvamento falhouSalvando...SecretoChave seguraConfiguraçõesConfigurações salvas.ShortcodeMostrarMostrar link de botõesMostrar botões de loginMostrar link de botões desvinculadoFormulário de inscriçãoEstilo do botão do formulário de loginInscreva-se layoutLink simplesRedes SociaisLogin SocialContas redes sociaisO login Social não é permitido com esta função!Desculpe, esse nome de utilizador não é permitido.Ficar atualizadoArmazenarArmazenar na chave metaIndicador de forçaAssinanteInscrito com sucesso!SuporteSincronizar dadosJanela de destinoTermos e CondiçõesTeste %1$s conexãoTeste a conexão da rede com provedoresO %1$s inserido não parece ser válido. Por favor insira um %2$s válido.O endereço de email não está correto.O endereço de e-mail inserido é inválido!Os recursos abaixo estão disponíveis em %s Addon Pro. Obtenha hoje e ajuste as configurações incríveis.O teste foi bem sucedidoA conta %s já está vinculada a outro usuário.Este e-mail já está registrado, por favor, escolha outro.Este e-mail já está registrado, faça o login na sua conta para fazer um link com %1$s.Este provedor está desativado no momento, o que significa que os usuários não podem registar-se ou iniciar sessão através de sua conta do %s.Este provedor está ativado no momento, o que significa que os usuários podem registar-se ou iniciar sessão através de sua conta do %s.Este fornecedor está funcionando bem, mas você pode testar de novo. Se você não quer deixar mais usuários se registrarem e se logarem com %s você pode desativá-lo.Este nome de usuário já está registrado. Por favor escolha outro.Esse usuário é inválido porque usa caracteres inválidos. Por favor, insira um usuário válido.Título:Para acessar os recursos Pro, você precisa instalar e ativar o Addon Pro.Para permitir que seus visitantes se loguem com sua conta %1$s, primeiro você deve criar um App do %1$s. O guia a seguir irá ajudá-lo através do processo de criação do App do %1$s. Após você ter criado seu App do %1$s, dirija-se a “Configurações” e configure o “%2$s” e “%3$s” dados de acordo com seu App do %1$s.Para permitir que seus visitantes façam login com a conta %1$s, primeiro você deve criar um aplicativo %1$s. O guia a seguir o ajudará no processo de criação do aplicativo %1$s. Depois de criar seu aplicativo %1$s, vá até "Configurações" e configure os "%2$s" e "%3$s" de acordo com seu aplicativo %1$s.Para poder usar os recursos Pro, você precisa instalar e ativar o Addon Pro do Nextend Social Connect.Resposta inesperada: %sUniformeDesvincular conta do AmazonDesvincular conta do DisqusDesvincular conta do FacebookDesvincular conta do GoogleDesvincular conta do LinkedInDesvincular conta do PayPalDesvincular conta do TwitterDesvincular conta do VKDesvincular conta do WordPress.comRótulo de DesvincularDesvinculação bem sucedida.Atualizar agora!Atualizar agoraUtilizaçãoUsar botão personalizadoUsar o %s em seu código de botão personalizado para fazer o rótulo aparecer.Usado quando o nome de usuário é inválido ou não é armazenadoUsuárioUsuário e AdminNome de usuárioPrefixo do nome de usuário no registroOs utilizadores devem estar registrados e logados para comentarVerificar ConfiguraçõesVerificar Configurações De NovoVisita %sApresentaremos todas as últimas novidades e atualizações sobre o Login Social, diretamente na sua caixa de entrada.Quais dados pessoais coletamos e por que os coletamosQuando o email não é informado ou vazioQuando não estiver ativado, o e-mail estará vazio.Quando não ativado, o nome de usuário será gerado aleatoriamente.Quando o nome de usuário estiver vazio ou é inválidoCom quem compartilhamos seus dadosPor omissão do WordPressFuncionando bemSim, %1$s deve criar um cookie para visitantes que usam o fluxo de autorização de login social. Esse cookie exigia que cada provedor protegesse a comunicação e redirecionasse o usuário de volta ao último local.Você pode deixar o campo "Javascript Origins" em branco!Você não tem suporte a cURL, habilite-o em php.ini!Você não tem permissões suficientes para instalar e ativar plugins. Por favor contacte seu administrador do site!Você já vinculou uma conta %s. Por favor desvincule a atual e então você poderá vincular outra conta %s.Você entrou com sucesso.Você precisa ativar o ' %1$s > %2$s > %3$s ' para este recurso funcionarSua conta %1$s foi vinculada com sucesso com sua conta. Agora você pode logar com o %2$s facilmente.Sua configuração precisa ser verificadaLogin SocialCadastrarhttps://wordpress.org/← voltar para %slanguages/nextend-facebook-connect-en_US.mo000066600000001555152140537230014735 0ustar00$,839Project-Id-Version: nextend-facebook-connect PO-Revision-Date: 2020-03-26 11:07+0100 Last-Translator: Language-Team: nextend-facebook-connect Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 2.2.4 X-Poedit-Basepath: ../.. Plural-Forms: nplurals=2; plural=(n != 1); X-Poedit-SourceCharset: UTF-8 X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e X-Poedit-Flags-xgettext: −−default-domain=nextend-facebook-connect X-Poedit-SearchPath-0: nextend-social-login-pro X-Poedit-SearchPath-1: nextend-facebook-connect languages/nextend-facebook-connect-ru_RU.mo000066600000004160152140537230014753 0ustar00 hi! ;WZ#j!"3%%$K$p201,Kx645 0?   Continue with FacebookContinue with GoogleContinue with TwitterContinue with VKLink account with FacebookLink account with GoogleLink account with TwitterLink account with VKORSocial accountsUnlink account from FacebookUnlink account from GoogleUnlink account from TwitterUnlink account from VKProject-Id-Version: nextend-facebook-connect PO-Revision-Date: 2020-03-26 11:08+0100 Last-Translator: Language-Team: nextend-facebook-connect Language: ru MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 2.2.4 X-Poedit-Basepath: ../.. Plural-Forms: nplurals=2; plural=(n != 1); X-Poedit-SourceCharset: UTF-8 X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e X-Poedit-Flags-xgettext: −−default-domain=nextend-facebook-connect X-Poedit-SearchPath-0: nextend-social-login-pro X-Poedit-SearchPath-1: nextend-facebook-connect Войти через FacebookВойти через GoogleВойти через TwitterВойти через VKСвязать аккаунты с FacebookСвязать аккаунты с GoogleСвязать аккаунты с TwitterСвязать аккаунты с VKИЛИСоциальная сетьОтвязать аккаунты от FacebookОтвязать аккаунты от GoogleОтвязать аккаунты от TwitterОтвязать аккаунты от VKlanguages/nextend-facebook-connect-zh_ZH.po000066600000447027152140537230014761 0ustar00msgid "" msgstr "" "Project-Id-Version: ss3\n" "POT-Creation-Date: 2020-03-26 11:09+0100\n" "PO-Revision-Date: 2020-03-26 11:09+0100\n" "Last-Translator: \n" "Language-Team: \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.2.4\n" "X-Poedit-Basepath: ../..\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n" "X-Poedit-SearchPath-0: nextend-social-login-pro\n" "X-Poedit-SearchPath-1: nextend-facebook-connect\n" "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/" "compat\n" "X-Poedit-SearchPathExcluded-1: nextend-facebook-connect/providers/google/" "compat\n" "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/" "compat\n" #: nextend-facebook-connect/NSL/GDPR.php:34 msgid "What personal data we collect and why we collect it" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:35 #, php-format msgid "" "%1$s collects data when a visitor register, login or link the account with " "with any of the enabled social provider. It collects the following data: " "email address, name, social provider identifier and access token. Also it " "can collect profile picture and more fields with the Pro Addon's sync data " "feature." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:37 msgid "Who we share your data with" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:38 #, php-format msgid "" "%1$s stores the personal data on your site and does not share it with anyone " "except the access token which used for the authenticated communication with " "the social providers." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:40 msgid "Does the plugin share personal data with third parties" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:41 #, php-format msgid "" "%1$s use the access token what the social provider gave to communicate with " "the providers to verify account and securely access personal data." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:43 msgid "How long we retain your data" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:44 #, php-format msgid "" "%1$s removes the collected personal data when the user deleted from " "WordPress." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:46 msgid "Does the plugin use personal data collected by others?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:47 #, php-format msgid "" "%1$s use the personal data collected by the social providers to create " "account on your site when the visitor authorize it." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:49 msgid "Does the plugin store things in the browser?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:50 #, php-format msgid "" "Yes, %1$s must create a cookie for visitors who use the social login " "authorization flow. This cookie required for every provider to secure the " "communication and to redirect the user back to the last location." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:52 msgid "Does the plugin collect telemetry data, directly or indirectly?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:53 #: nextend-facebook-connect/NSL/GDPR.php:56 msgid "No" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:55 msgid "" "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a " "third party?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:99 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57 msgid "User" msgstr "用户" #: nextend-facebook-connect/admin/admin.php:203 #, php-format msgid "%s needs json_decode function." msgstr "%s 需要 json_decode 函数。" #: nextend-facebook-connect/admin/admin.php:203 msgid "Please contact your server administrator and ask for solution!" msgstr "请与服务器管理员联系并寻求解决方案!" #: nextend-facebook-connect/admin/admin.php:235 #: nextend-facebook-connect/admin/admin.php:265 msgid "Settings saved." msgstr "设置已保存。" #: nextend-facebook-connect/admin/admin.php:244 #, fuzzy #| msgid "The authorization was successful" msgid "The activation was successful" msgstr "授权成功" #: nextend-facebook-connect/admin/admin.php:255 #, fuzzy #| msgid "Deauthorize completed." msgid "Deactivate completed." msgstr "取消授权." #: nextend-facebook-connect/admin/admin.php:433 #: nextend-facebook-connect/admin/templates-provider/menu.php:15 #: nextend-facebook-connect/admin/templates/providers.php:81 #: nextend-facebook-connect/admin/templates/providers.php:93 #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Settings" msgstr "设置" #: nextend-facebook-connect/admin/admin.php:516 #: nextend-facebook-connect/includes/oauth2.php:141 #: nextend-facebook-connect/includes/oauth2.php:286 #: nextend-facebook-connect/providers/facebook/facebook-client.php:84 #: nextend-facebook-connect/providers/twitter/twitter-client.php:165 #: nextend-social-login-pro/providers/apple/apple-client.php:87 #, php-format msgid "Unexpected response: %s" msgstr "响应出现意外情况: %s" #: nextend-facebook-connect/admin/admin.php:577 #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21 #, php-format msgid "" "%s detected that your login url changed. You must update the Oauth redirect " "URIs in the related social applications." msgstr "" "%s 检测到您的登录网址已更改。您必须更新相关社交应用程序中的Oauth redirect " "URIs." #: nextend-facebook-connect/admin/admin.php:578 msgid "Fix Error" msgstr "修复错误" #: nextend-facebook-connect/admin/admin.php:578 msgid "Oauth Redirect URI" msgstr "Oauth Redirect URI" #: nextend-facebook-connect/admin/admin.php:588 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You need the Pro Addon to " "display Social Login buttons in %2$s login form!" msgstr "" "%1$s 检测到 %2$s 已经安装在你的网站. 你需要安装专业版本去显示社交登录按钮 " "%2$s 登录表单!" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss and check Pro Addon" msgstr "解除并检查专业版本" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss" msgstr "解除" #: nextend-facebook-connect/admin/admin.php:595 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You must set \"Page for " "register flow\" and \"OAuth redirect uri proxy page\" in %1$s to " "work properly." msgstr "" #: nextend-facebook-connect/admin/admin.php:596 #, fuzzy #| msgid "Fix Error" msgid "Fix now" msgstr "修复错误" #: nextend-facebook-connect/admin/admin.php:620 #, fuzzy #| msgid "Activate Pro Addon" msgid "Activate your Pro Addon" msgstr "启用专业版本插件" #: nextend-facebook-connect/admin/admin.php:621 #, fuzzy #| msgid "" #| "To be able to use the Pro features, you need to authorize Nextend Social " #| "Connect Pro Addon. You can do this by clicking on the Authorize button " #| "below then select the related purchase." msgid "" "To be able to use the Pro features, you need to activate Nextend Social " "Connect Pro Addon. You can do this by clicking on the Activate button below " "then select the related purchase." msgstr "" "要想使用专业版本功能,你需要 Nextend Social Connect 专业版本的授权。你可以点" "击下面的授权按钮,然后选择购买。" #: nextend-facebook-connect/admin/admin.php:626 #: nextend-social-login-pro/nextend-social-login-pro.php:60 msgid "Activate" msgstr "" #: nextend-facebook-connect/admin/admin.php:724 msgid "License key" msgstr "密匙" #: nextend-facebook-connect/admin/admin.php:747 msgid "OAuth proxy page" msgstr "" #: nextend-facebook-connect/admin/admin.php:750 #, fuzzy #| msgid "Register" msgid "Register flow page" msgstr "注册" #: nextend-facebook-connect/admin/interim.php:12 #: nextend-facebook-connect/admin/interim.php:23 msgid "You have logged in successfully." msgstr "你已经成功登录。" #: nextend-facebook-connect/admin/templates-provider/buttons.php:79 msgid "Login label" msgstr "登录标签" #: nextend-facebook-connect/admin/templates-provider/buttons.php:84 #: nextend-facebook-connect/admin/templates-provider/buttons.php:95 #: nextend-facebook-connect/admin/templates-provider/buttons.php:106 #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #: nextend-facebook-connect/admin/templates-provider/buttons.php:165 #: nextend-facebook-connect/admin/templates/settings/privacy.php:53 msgid "Reset to default" msgstr "恢复默认设置" #: nextend-facebook-connect/admin/templates-provider/buttons.php:89 msgid "Link label" msgstr "链接标签" #: nextend-facebook-connect/admin/templates-provider/buttons.php:101 msgid "Unlink label" msgstr "解除链接标签" #: nextend-facebook-connect/admin/templates-provider/buttons.php:112 msgid "Default button" msgstr "默认按钮" #: nextend-facebook-connect/admin/templates-provider/buttons.php:128 #: nextend-facebook-connect/admin/templates-provider/buttons.php:158 msgid "Use custom button" msgstr "使用自定义按钮" #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #, php-format msgid "Use the %s in your custom button's code to make the label show up." msgstr "使用 %s 在你的自定义按钮代码显示界面." #: nextend-facebook-connect/admin/templates-provider/buttons.php:143 msgid "Icon button" msgstr "图标按钮" #: nextend-facebook-connect/admin/templates-provider/buttons.php:174 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140 #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170 #: nextend-facebook-connect/admin/templates/settings/comment.php:73 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171 #: nextend-facebook-connect/admin/templates/settings/privacy.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186 #: nextend-facebook-connect/admin/templates/settings/userpro.php:167 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:254 #: nextend-facebook-connect/providers/facebook/admin/settings.php:57 #: nextend-facebook-connect/providers/google/admin/settings.php:62 #: nextend-facebook-connect/providers/twitter/admin/settings.php:48 #: nextend-social-login-pro/providers/amazon/admin/settings.php:47 #: nextend-social-login-pro/providers/disqus/admin/settings.php:47 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47 #: nextend-social-login-pro/providers/paypal/admin/settings.php:60 #: nextend-social-login-pro/providers/vk/admin/settings.php:48 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47 msgid "Save Changes" msgstr "保存设置" #: nextend-facebook-connect/admin/templates-provider/menu.php:13 #: nextend-facebook-connect/admin/templates/providers.php:61 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17 #: nextend-facebook-connect/providers/google/admin/getting-started.php:9 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8 msgid "Getting Started" msgstr "从这里开始" #: nextend-facebook-connect/admin/templates-provider/menu.php:17 msgid "Buttons" msgstr "按钮" #: nextend-facebook-connect/admin/templates-provider/menu.php:21 msgid "Sync data" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:24 msgid "Usage" msgstr "用法" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11 msgid "Other settings" msgstr "其他设置" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16 msgid "Username prefix on register" msgstr "用户名前缀注册" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23 msgid "Fallback username prefix on register" msgstr "用户名前缀注册机制" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27 #, fuzzy #| msgid "Used when username is invalid" msgid "Used when username is invalid or not stored" msgstr "当用户名无效时使用" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32 #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #: nextend-facebook-connect/admin/templates/settings/privacy.php:35 msgid "Terms and conditions" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #, php-format msgid "Override global \"%1$s\"" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12 msgid "PRO settings" msgstr "专业版本设置" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32 msgid "Ask E-mail on registration" msgstr "注册时询问E-MAIL" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69 msgid "Never" msgstr "从不" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38 msgid "When email is not provided or empty" msgstr "当邮箱为空时" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72 msgid "Always" msgstr "一直" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50 msgid "Ask Username on registration" msgstr "注册时需要用户名" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53 msgid "Never, generate automatically" msgstr "永远不要,自动生成" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56 msgid "When username is empty or invalid" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64 #, fuzzy #| msgid "Ask Username on registration" msgid "Ask Password on registration" msgstr "注册时需要用户名" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81 msgid "Automatically connect the existing account upon registration" msgstr "注册后自动连接现有帐户" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85 #: nextend-facebook-connect/admin/templates/providers.php:39 #: nextend-facebook-connect/admin/templates/settings/general.php:48 #: nextend-facebook-connect/admin/templates/settings/general.php:212 #: nextend-facebook-connect/admin/templates/settings/general.php:227 #: nextend-facebook-connect/admin/templates/settings/general.php:245 #: nextend-facebook-connect/includes/provider-admin.php:217 msgid "Disabled" msgstr "禁用" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88 msgid "Automatic, based on email address" msgstr "自动,自动,基于电子邮件地址" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93 msgid "Disable login for the selected roles" msgstr "禁止所选对象登录" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113 msgid "Default roles for user who registered with this provider" msgstr "为使用此提供商的用户设置默认角色" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:99 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:118 #: nextend-facebook-connect/admin/templates/settings/comment.php:39 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105 #: nextend-facebook-connect/admin/templates/settings/userpro.php:51 #: nextend-facebook-connect/admin/templates/settings/userpro.php:102 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180 #: nextend-facebook-connect/widget.php:42 msgid "Default" msgstr "默认" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50 #: nextend-facebook-connect/includes/userData.php:188 msgid "Register" msgstr "注册" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58 msgid "Login" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66 msgid "Link" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84 msgid "Store in meta key" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:9 msgid "Shortcode" msgstr "短码" #: nextend-facebook-connect/admin/templates-provider/usage.php:12 #, fuzzy #| msgid "Import" msgid "Important!" msgstr "导入" #: nextend-facebook-connect/admin/templates-provider/usage.php:13 msgid "The shortcodes are only rendered for users who haven't logged in yet!" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:14 msgid "See the full list of shortcode parameters." msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:31 msgid "Simple link" msgstr "简单链接" #: nextend-facebook-connect/admin/templates-provider/usage.php:34 msgid "Click here to login or register" msgstr "点击这里登录或注册" #: nextend-facebook-connect/admin/templates-provider/usage.php:39 msgid "Image button" msgstr "图片按钮" #: nextend-facebook-connect/admin/templates-provider/usage.php:42 msgid "Image url" msgstr "图片链接地址" #: nextend-facebook-connect/admin/templates/debug.php:7 #: nextend-facebook-connect/admin/templates/header.php:20 #, fuzzy #| msgid "Debug mode" msgid "Debug" msgstr "调试模式" #: nextend-facebook-connect/admin/templates/debug.php:41 msgid "Test network connection with providers" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:48 msgid "You don't have cURL support, please enable it in php.ini!" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:58 #, php-format msgid "Test %1$s connection" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2 msgid "Fix Oauth Redirect URIs" msgstr "修复 Oauth Redirect URIs" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13 msgid "Every Oauth Redirect URI seems fine" msgstr "所有的Oauth Redirect URI 运作正常" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32 msgid "Got it" msgstr "搞定" #: nextend-facebook-connect/admin/templates/global-settings.php:28 #: nextend-facebook-connect/admin/templates/menu.php:8 msgid "Global Settings" msgstr "全局设置" #: nextend-facebook-connect/admin/templates/global-settings.php:31 msgid "General" msgstr "常规" #: nextend-facebook-connect/admin/templates/global-settings.php:33 msgid "Privacy" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form.php:9 #: nextend-facebook-connect/admin/templates/settings/userpro.php:18 msgid "Login Form" msgstr "登录界面" #: nextend-facebook-connect/admin/templates/global-settings.php:39 msgid "Comment" msgstr "评论" #: nextend-facebook-connect/admin/templates/header.php:14 msgid "Docs" msgstr "文档" #: nextend-facebook-connect/admin/templates/header.php:17 msgid "Support" msgstr "支持" #: nextend-facebook-connect/admin/templates/header.php:23 #: nextend-facebook-connect/admin/templates/menu.php:12 msgid "Pro Addon" msgstr "专业版插件" #: nextend-facebook-connect/admin/templates/menu.php:6 msgid "Providers" msgstr "提供商" #: nextend-facebook-connect/admin/templates/pro-addon.php:13 msgid "Error" msgstr "错误" #: nextend-facebook-connect/admin/templates/pro-addon.php:14 msgid "" "You don’t have sufficient permissions to install and activate plugins. " "Please contact your site’s administrator!" msgstr "您没有足够的权限来安装和激活插件。 请联系您的网站管理员!" #: nextend-facebook-connect/admin/templates/pro-addon.php:22 #: nextend-facebook-connect/admin/templates/pro-addon.php:32 #: nextend-facebook-connect/admin/templates/pro.php:34 msgid "Activate Pro Addon" msgstr "启用专业版本插件" #: nextend-facebook-connect/admin/templates/pro-addon.php:23 msgid "" "Pro Addon is installed but not activated. To be able to use the Pro " "features, you need to activate it." msgstr "专业版插件已经安装但没有启用。要使用专业版本功能,你需要先启用它。" #: nextend-facebook-connect/admin/templates/pro-addon.php:37 #: nextend-facebook-connect/admin/templates/pro-addon.php:142 #, fuzzy #| msgid "Activate Pro Addon" msgid "Deactivate Pro Addon" msgstr "启用专业版本插件" #: nextend-facebook-connect/admin/templates/pro-addon.php:48 #: nextend-facebook-connect/admin/templates/pro.php:43 msgid "Pro Addon is not installed" msgstr "没有安装专业版" #: nextend-facebook-connect/admin/templates/pro-addon.php:50 msgid "" "To access the Pro features, you need to install and activate the Pro Addon." msgstr "要访问专业功能,您需要安装并激活专业版本插件。" #: nextend-facebook-connect/admin/templates/pro-addon.php:59 #, php-format msgid "Install %s now" msgstr "安装 %s 现在" #: nextend-facebook-connect/admin/templates/pro-addon.php:60 #: nextend-facebook-connect/admin/templates/pro.php:47 msgid "Install Pro Addon" msgstr "安装专业的扩展" #: nextend-facebook-connect/admin/templates/pro-addon.php:94 msgid "Activating..." msgstr "正在启用." #: nextend-facebook-connect/admin/templates/pro-addon.php:118 #, fuzzy #| msgid "Not Available" msgid "Not compatible!" msgstr "无法使用" #: nextend-facebook-connect/admin/templates/pro-addon.php:119 #, fuzzy, php-format #| msgid "Please update %1$s to version %2$s or newer." msgid "" "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or " "newer." msgstr "请更新 %1$s 到 %2$s 版本." #: nextend-facebook-connect/admin/templates/pro-addon.php:123 #, fuzzy #| msgid "Activate Pro Addon" msgid "Update Pro Addon" msgstr "启用专业版本插件" #: nextend-facebook-connect/admin/templates/pro-addon.php:133 msgid "Pro Addon is installed and activated" msgstr "专业版本已经安装并启用了" #: nextend-facebook-connect/admin/templates/pro-addon.php:135 #, fuzzy #| msgid "" #| "You installed and activated the Pro Addon. If you don’t want to use it " #| "anymore, you can deauthorize using the button below." msgid "" "You installed and activated the Pro Addon. If you don’t want to use it " "anymore, you can deactivate using the button below." msgstr "" "你已经安装并启用了专业版本,如果你不想使用它,你可以点击下面的按钮取消授权。" #: nextend-facebook-connect/admin/templates/pro.php:8 msgid "Get Pro Addon to unlock more features" msgstr "购买专业版本来解锁更多的功能" #: nextend-facebook-connect/admin/templates/pro.php:9 #, php-format msgid "" "The features below are available in %s Pro Addon. Get it today and tweak the " "awesome settings." msgstr "这个功能只允许 %s 专业版本. 今天就购买它,然后开启更多的强力功能。" #: nextend-facebook-connect/admin/templates/pro.php:10 msgid "" "If you already have a license, you can Authorize your Pro Addon. Otherwise " "you can purchase it using the button below." msgstr "" "如果你已经拥有一个密匙,你可以验证你的专业版本插件。否则,你需要点击下面的按" "钮先购买。" #: nextend-facebook-connect/admin/templates/pro.php:14 msgid "Buy Pro Addon" msgstr "购买专业版" #: nextend-facebook-connect/admin/templates/pro.php:16 msgid "Authorize Pro Addon" msgstr "验证专业版插件" #: nextend-facebook-connect/admin/templates/pro.php:25 msgid "Pro Addon is not activated" msgstr "专业版本未启用" #: nextend-facebook-connect/admin/templates/pro.php:26 #: nextend-facebook-connect/admin/templates/pro.php:44 msgid "" "To be able to use the Pro features, you need to install and activate the " "Nextend Social Connect Pro Addon." msgstr "要想使用专业功能,你需要先安装然后启用 Nextend Social Connect 专业版." #: nextend-facebook-connect/admin/templates/providers.php:30 msgid "Not Available" msgstr "无法使用" #: nextend-facebook-connect/admin/templates/providers.php:33 msgid "Not Configured" msgstr "没有配置" #: nextend-facebook-connect/admin/templates/providers.php:36 msgid "Not Verified" msgstr "未验证" #: nextend-facebook-connect/admin/templates/providers.php:42 #: nextend-facebook-connect/admin/templates/settings/general.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:215 #: nextend-facebook-connect/admin/templates/settings/general.php:230 #: nextend-facebook-connect/admin/templates/settings/general.php:248 #: nextend-facebook-connect/includes/provider-admin.php:220 #: nextend-facebook-connect/providers/google/admin/settings.php:53 #: nextend-social-login-pro/providers/paypal/admin/settings.php:51 msgid "Enabled" msgstr "允许" #: nextend-facebook-connect/admin/templates/providers.php:54 msgid "Upgrade Now" msgstr "现在更新" #: nextend-facebook-connect/admin/templates/providers.php:69 #: nextend-facebook-connect/includes/provider-admin.php:204 msgid "Verify Settings" msgstr "验证设置" #: nextend-facebook-connect/admin/templates/providers.php:77 #: nextend-facebook-connect/includes/provider-admin.php:249 msgid "Enable" msgstr "启用" #: nextend-facebook-connect/admin/templates/providers.php:89 #: nextend-facebook-connect/includes/provider-admin.php:257 msgid "Disable" msgstr "禁止" #: nextend-facebook-connect/admin/templates/providers.php:114 msgid "Stay Updated" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:115 msgid "" "Receive info on the latest plugin updates and social provider related " "changes." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:116 #, fuzzy #| msgid "Please enter an email address." msgid "Enter your email address" msgstr "请输入电子邮箱." #: nextend-facebook-connect/admin/templates/providers.php:120 msgid "Subscribe" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:136 msgid "Saving..." msgstr "正在保存." #: nextend-facebook-connect/admin/templates/providers.php:137 msgid "Saving failed" msgstr "保存失败" #: nextend-facebook-connect/admin/templates/providers.php:138 msgid "Order Saved" msgstr "订单已保存" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "Successfully subscribed!" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "" "We'll be bringing you all the latest news and updates about Social Login - " "right to your inbox." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:214 #, fuzzy #| msgid "Please enter an email address." msgid "The entered email address is invalid!" msgstr "请输入电子邮箱." #: nextend-facebook-connect/admin/templates/review.php:14 msgid "Rate your experience!" msgstr "留一个评论!" #: nextend-facebook-connect/admin/templates/review.php:15 msgid "Hated it" msgstr "讨厌" #: nextend-facebook-connect/admin/templates/review.php:16 msgid "Disliked it" msgstr "不喜欢" #: nextend-facebook-connect/admin/templates/review.php:17 msgid "It was ok" msgstr "还不错" #: nextend-facebook-connect/admin/templates/review.php:18 msgid "Liked it" msgstr "喜欢" #: nextend-facebook-connect/admin/templates/review.php:19 msgid "Loved it" msgstr "大爱" #: nextend-facebook-connect/admin/templates/review.php:31 msgid "Please Leave a Review" msgstr "请留下一个评论" #: nextend-facebook-connect/admin/templates/review.php:32 msgid "" "If you are happy with Nextend Social Login and can take a minute " "please leave us a review. It will be a tremendous help for us!" msgstr "" "如果你对Nextend Social Login很满意,请花上一点点的时间留下一个评论。这" "对我们来说将是一个巨大的帮助!" #: nextend-facebook-connect/admin/templates/review.php:34 msgid "Ok, you deserve it" msgstr "好吧,你应得的" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96 #, fuzzy #| msgid "Registration Form" msgid "Register form" msgstr "注册信息表" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23 msgid "No Connect button" msgstr "没有连接按钮" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26 msgid "Connect button before register" msgstr "连接按钮在注册之前" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:221 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:226 msgid "Action:" msgstr "动作:" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31 msgid "Connect button before account details" msgstr "登录按钮在账户详情之前" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36 msgid "Connect button after register" msgstr "登录按钮在注册之后" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44 #, fuzzy #| msgid "Login form button style" msgid "Register button style" msgstr "登录界面按钮样式" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:105 #: nextend-facebook-connect/admin/templates/settings/comment.php:45 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111 #: nextend-facebook-connect/admin/templates/settings/userpro.php:57 #: nextend-facebook-connect/admin/templates/settings/userpro.php:108 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30 #: nextend-facebook-connect/widget.php:47 msgid "Icon" msgstr "图标" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:64 #, fuzzy #| msgid "Login form" msgid "Sidebar Login form" msgstr "登录表单" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:69 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:85 #: nextend-facebook-connect/admin/templates/settings/login-form.php:17 #: nextend-facebook-connect/admin/templates/settings/login-form.php:30 #: nextend-facebook-connect/admin/templates/settings/login-form.php:47 #: nextend-facebook-connect/admin/templates/settings/userpro.php:26 #: nextend-facebook-connect/admin/templates/settings/userpro.php:39 msgid "Hide login buttons" msgstr "隐藏登录按钮" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:72 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88 #: nextend-facebook-connect/admin/templates/settings/login-form.php:14 #: nextend-facebook-connect/admin/templates/settings/login-form.php:27 #: nextend-facebook-connect/admin/templates/settings/login-form.php:44 #: nextend-facebook-connect/admin/templates/settings/userpro.php:23 #: nextend-facebook-connect/admin/templates/settings/userpro.php:36 #: nextend-facebook-connect/widget.php:76 msgid "Show login buttons" msgstr "显示登录按钮" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:73 msgid "" "Some themes that use BuddyPress, display the social buttons twice in the " "same login form. This option can disable the one for: " "bp_sidebar_login_form action. " msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:80 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38 msgid "Login form" msgstr "登录表单" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:93 #, fuzzy #| msgid "Login form button style" msgid "Login button style" msgstr "登录界面按钮样式" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:48 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52 #: nextend-facebook-connect/admin/templates/settings/userpro.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58 msgid "Login layout" msgstr "登录界面布局" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:110 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124 #: nextend-facebook-connect/admin/templates/settings/userpro.php:70 #: nextend-facebook-connect/admin/templates/settings/userpro.php:121 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186 msgid "Below" msgstr "下面" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:130 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130 #: nextend-facebook-connect/admin/templates/settings/userpro.php:76 #: nextend-facebook-connect/admin/templates/settings/userpro.php:127 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192 msgid "Below with separator" msgstr "下面并分割" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:136 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136 #: nextend-facebook-connect/admin/templates/settings/userpro.php:82 #: nextend-facebook-connect/admin/templates/settings/userpro.php:133 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198 msgid "Above" msgstr "上面" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:142 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142 #: nextend-facebook-connect/admin/templates/settings/userpro.php:88 #: nextend-facebook-connect/admin/templates/settings/userpro.php:139 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204 msgid "Above with separator" msgstr "在上面并分割" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:150 #: nextend-facebook-connect/admin/templates/settings/comment.php:53 #: nextend-facebook-connect/admin/templates/settings/login-form.php:53 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:151 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:166 #: nextend-facebook-connect/admin/templates/settings/userpro.php:147 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:233 #, fuzzy #| msgid "Buttons" msgid "Button alignment" msgstr "按钮" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155 #: nextend-facebook-connect/admin/templates/settings/comment.php:58 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140 #: nextend-facebook-connect/admin/templates/settings/login-form.php:58 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:156 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171 #: nextend-facebook-connect/admin/templates/settings/userpro.php:152 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:238 #: nextend-facebook-connect/widget.php:57 msgid "Left" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:158 #: nextend-facebook-connect/admin/templates/settings/comment.php:61 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:143 #: nextend-facebook-connect/admin/templates/settings/login-form.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:159 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:174 #: nextend-facebook-connect/admin/templates/settings/userpro.php:155 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:241 #: nextend-facebook-connect/widget.php:62 msgid "Center" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162 #: nextend-facebook-connect/admin/templates/settings/comment.php:65 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147 #: nextend-facebook-connect/admin/templates/settings/login-form.php:65 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:163 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178 #: nextend-facebook-connect/admin/templates/settings/userpro.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:245 #: nextend-facebook-connect/widget.php:67 msgid "Right" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:18 #, fuzzy #| msgid "Icon button" msgid "Login button" msgstr "图标按钮" #: nextend-facebook-connect/admin/templates/settings/comment.php:23 #: nextend-facebook-connect/admin/templates/settings/privacy.php:42 msgid "Show" msgstr "显示" #: nextend-facebook-connect/admin/templates/settings/comment.php:26 msgid "Hide" msgstr "隐藏" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 #, php-format msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work" msgstr "你需要打开 ' %1$s > %2$s > %3$s ' 这个功能" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Discussion" msgstr "讨论" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Users must be registered and logged in to comment" msgstr "必须是登录用户才能评论" #: nextend-facebook-connect/admin/templates/settings/comment.php:33 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18 #, fuzzy #| msgid "Button style:" msgid "Button style" msgstr "按钮样式:" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29 msgid "Target window" msgstr "目标窗口" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34 msgid "Prefer popup" msgstr "比较喜欢弹出窗口" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37 msgid "Prefer new tab" msgstr "喜欢新选项卡" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40 msgid "Prefer same window" msgstr "喜欢同窗口" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46 msgid "Registration notification sent to" msgstr "注册通知发送到" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:242 msgid "WordPress default" msgstr "WordPress 默认" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54 msgid "Nobody" msgstr "没人" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60 msgid "Admin" msgstr "管理员" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63 msgid "User and Admin" msgstr "用户和管理员" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69 #, fuzzy #| msgid "Unlink label" msgid "Unlink" msgstr "解除链接标签" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75 #, fuzzy #| msgid "Social accounts" msgid "Allow Social account unlink" msgstr "社交账号" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81 #, fuzzy #| msgid "Disable login for the selected roles" msgid "Disable Admin bar for roles" msgstr "禁止所选对象登录" #: nextend-facebook-connect/admin/templates/settings/general.php:43 msgid "Debug mode" msgstr "调试模式" #: nextend-facebook-connect/admin/templates/settings/general.php:56 #, fuzzy #| msgid "Register" msgid "Page for register flow" msgstr "注册" #: nextend-facebook-connect/admin/templates/settings/general.php:66 #: nextend-facebook-connect/admin/templates/settings/general.php:91 msgid "None" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:74 msgid "" "This setting is used when you request additional data from the users (such " "as email address) and to display the Terms and conditions." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #, php-format msgid "" "%2$s First create a new page and insert the following shortcode: %1$s then " "select this page above" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #: nextend-facebook-connect/admin/templates/settings/general.php:101 #, fuzzy #| msgid "Usage" msgid "Usage:" msgstr "用法" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 #, php-format msgid "" "%1$s You won't be able to reach the selected page unless a social login/" "registration happens." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 #, fuzzy #| msgid "Import" msgid "Important:" msgstr "导入" #: nextend-facebook-connect/admin/templates/settings/general.php:80 msgid "OAuth redirect uri proxy page" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:100 msgid "" "You can use this setting when wp-login.php page is not available to handle " "the OAuth flow." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:101 #, php-format msgid "%1$s First create a new page then select this page above." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:108 msgid "Prevent external redirect overrides" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:114 msgid "Disable external redirects" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:121 #, fuzzy #| msgid "Oauth Redirect URI" msgid "Default redirect url" msgstr "Oauth Redirect URI" #: nextend-facebook-connect/admin/templates/settings/general.php:134 #: nextend-facebook-connect/admin/templates/settings/general.php:172 #, fuzzy #| msgid "Social Login" msgid "for Login" msgstr "社交登录" #: nextend-facebook-connect/admin/templates/settings/general.php:149 #: nextend-facebook-connect/admin/templates/settings/general.php:187 #, fuzzy #| msgid "Register" msgid "for Register" msgstr "注册" #: nextend-facebook-connect/admin/templates/settings/general.php:159 #, fuzzy #| msgid "Fixed redirect url for login" msgid "Fixed redirect url" msgstr "修改登录后重定向URL" #: nextend-facebook-connect/admin/templates/settings/general.php:196 #, fuzzy #| msgid "Fixed redirect url for login" msgid "Blacklisted redirects" msgstr "修改登录后重定向URL" #: nextend-facebook-connect/admin/templates/settings/general.php:202 msgid "If you want to blacklist redirect url params. One pattern per line." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:207 #, fuzzy #| msgid "Show login buttons" msgid "Support login restrictions" msgstr "显示登录按钮" #: nextend-facebook-connect/admin/templates/settings/general.php:217 #, php-format msgid "Please visit to our %1$s to check what plugins are supported!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:222 msgid "Display avatars in \"All media items\"" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:232 msgid "" "Enabling this option can speed up loading images in Media Library - Grid " "view!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:237 msgid "Membership" msgstr "会员" #: nextend-facebook-connect/admin/templates/settings/general.php:250 #, fuzzy #| msgid "Allow registration with Social login" msgid "Allow registration with Social login." msgstr "允许通过社交登录注册" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33 #: nextend-facebook-connect/admin/templates/settings/userpro.php:45 msgid "Login form button style" msgstr "登录界面按钮样式" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66 msgid "Below and floating" msgstr "下面并浮动" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:85 msgid "Embedded Login form button style" msgstr "嵌入式登录表单按钮样式" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:104 msgid "Embedded Login layout" msgstr "嵌入式登录表单布局" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:135 #, fuzzy #| msgid "Embedded Login form button style" msgid "Embedded login form button alignment" msgstr "嵌入式登录表单按钮样式" #: nextend-facebook-connect/admin/templates/settings/login-form.php:22 #: nextend-facebook-connect/includes/userData.php:137 msgid "Registration Form" msgstr "注册信息表" #: nextend-facebook-connect/admin/templates/settings/login-form.php:36 msgid "Embedded login form" msgstr "嵌入登录表单" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69 #, fuzzy #| msgid "Login form" msgid "Sign Up form" msgstr "登录表单" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74 #, fuzzy #| msgid "No Connect button in login form" msgid "No Connect button in Sign Up form" msgstr "在登录表单里不要登录按钮" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167 #, fuzzy #| msgid "No Connect button" msgid "Connect button on" msgstr "没有连接按钮" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84 #, fuzzy #| msgid "Login form button style" msgid "Sign Up form button style" msgstr "登录界面按钮样式" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103 #, fuzzy #| msgid "Login layout" msgid "Sign Up layout" msgstr "登录界面布局" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212 #, fuzzy #| msgid "WooCommerce account details" msgid "Account details" msgstr "WooCommerce 账户详情" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155 msgid "No link buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158 msgid "Link buttons after account details" msgstr "链接按钮在账户详情后面" #: nextend-facebook-connect/admin/templates/settings/privacy.php:6 #: nextend-facebook-connect/nextend-social-login.php:143 msgid "" "By clicking Register, you accept our Privacy Policy" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:59 msgid "Store" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:65 msgid "First and last name" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:68 msgid "When not enabled, username will be randomly generated." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:78 #: nextend-social-login-pro/class-provider-extension.php:322 msgid "Email" msgstr "Email" #: nextend-facebook-connect/admin/templates/settings/privacy.php:81 msgid "When not enabled, email will be empty." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:91 #: nextend-facebook-connect/includes/avatar.php:59 msgid "Avatar" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:102 #: nextend-facebook-connect/includes/provider.php:1066 msgid "Access token" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23 #, fuzzy #| msgid "No Connect button in login form" msgid "No Connect button in Login form" msgstr "在登录表单里不要登录按钮" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89 #, fuzzy #| msgid "No Connect button in register form" msgid "No Connect button in Register form" msgstr "不要登录按钮在注册表上" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99 #: nextend-facebook-connect/admin/templates/settings/userpro.php:96 #, fuzzy #| msgid "Login form button style" msgid "Register form button style" msgstr "登录界面按钮样式" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118 #: nextend-facebook-connect/admin/templates/settings/userpro.php:115 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116 #, fuzzy #| msgid "Register" msgid "Register layout" msgstr "注册" #: nextend-facebook-connect/admin/templates/settings/userpro.php:31 #, fuzzy #| msgid "Registration Form" msgid "Register Form" msgstr "注册信息表" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43 msgid "No Connect button in login form" msgstr "在登录表单里不要登录按钮" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101 msgid "No Connect button in register form" msgstr "不要登录按钮在注册表上" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154 #, fuzzy #| msgid "Login form" msgid "Billing form" msgstr "登录表单" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159 msgid "No Connect button in billing form" msgstr "不要链接按钮在结算表单" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174 #, fuzzy #| msgid "Login layout" msgid "Billing layout" msgstr "登录界面布局" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217 #, fuzzy #| msgid "Connect button before account details" msgid "No Connect buttons in account details form" msgstr "登录按钮在账户详情之前" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:220 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:225 #, fuzzy #| msgid "Icon button" msgid "Link buttons on" msgstr "图标按钮" #: nextend-facebook-connect/admin/templates/test-connection.php:42 #, fuzzy, php-format #| msgid "Authentication successful" msgid "Network connection successful: %1$s" msgstr "授权成功" #: nextend-facebook-connect/admin/templates/test-connection.php:49 #, php-format msgid "Network connection failed: %1$s" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:52 msgid "" "Please contact with your hosting provider to resolve the network issue " "between your server and the provider." msgstr "" #: nextend-facebook-connect/includes/avatar.php:60 msgid "Manage Avatar" msgstr "" #: nextend-facebook-connect/includes/avatar.php:61 #, php-format msgid "Avatar (%s)" msgid_plural "Avatar (%s)" msgstr[0] "" #: nextend-facebook-connect/includes/compat-wp-login.php:49 #, php-format msgid "%1$s ‹ %2$s — WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:115 msgid "https://wordpress.org/" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:116 msgid "Powered by WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:260 #, php-format msgctxt "site" msgid "← Back to %s" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:198 msgid "Your configuration needs to be verified" msgstr "您的配置需要验证" #: nextend-facebook-connect/includes/provider-admin.php:199 msgid "" "Before you can start letting your users register with your app it needs to " "be tested. This test makes sure that no users will have troubles with the " "login and registration process.
If you see error message in the popup " "check the copied ID and secret or the app itself. Otherwise your settings " "are fine." msgstr "" "在开始让用户注册之前,需要对您的应用程序进行测试。 此测试可确保用户在登录和注" "册过程中不会遇到麻烦。
如果您在弹出窗口中看到错误消息,请检查复制的ID和密" "码。如果没有错误信息,说明你的程序运行正常。" #: nextend-facebook-connect/includes/provider-admin.php:205 msgid "Please save your changes to verify settings." msgstr "请保存您的更改以验证。" #: nextend-facebook-connect/includes/provider-admin.php:213 msgid "Works Fine" msgstr "运行正常" #: nextend-facebook-connect/includes/provider-admin.php:227 #, php-format msgid "" "This provider is currently disabled, which means that users can’t register " "or login via their %s account." msgstr "该通道目前已被禁用,用户无法通过其 %s 帐户注册或登录。" #: nextend-facebook-connect/includes/provider-admin.php:230 #, php-format msgid "" "This provider works fine, but you can test it again. If you don’t want to " "let users register or login with %s anymore you can disable it." msgstr "" "该通道工作正常,但可以再次进行测试。 如果您不想让用户通过 %s 注册或登录,可以" "禁用它。" #: nextend-facebook-connect/includes/provider-admin.php:233 #, php-format msgid "" "This provider is currently enabled, which means that users can register or " "login via their %s account." msgstr "该通道目前已启用,这意味着用户可以通过 %s 账户进行注册或登录。" #: nextend-facebook-connect/includes/provider-admin.php:241 msgid "Verify Settings Again" msgstr "再次验证设置" #: nextend-facebook-connect/includes/provider-admin.php:242 msgid "Please save your changes before verifying settings." msgstr "" #: nextend-facebook-connect/includes/provider.php:350 #: nextend-facebook-connect/includes/provider.php:693 #: nextend-facebook-connect/includes/provider.php:698 msgid "Authentication successful" msgstr "授权成功" #: nextend-facebook-connect/includes/provider.php:635 #: nextend-facebook-connect/includes/user.php:127 msgid "Authentication error" msgstr "授权认证出错" #: nextend-facebook-connect/includes/provider.php:650 msgid "Unlink successful." msgstr "解除链接成功." #: nextend-facebook-connect/includes/provider.php:652 msgid "Unlink is not allowed!" msgstr "" #: nextend-facebook-connect/includes/provider.php:856 #: nextend-facebook-connect/includes/provider.php:863 msgid "The test was successful" msgstr "测试成功" #: nextend-facebook-connect/includes/provider.php:909 msgid "Authentication failed" msgstr "授权认证失败" #: nextend-facebook-connect/includes/provider.php:1058 msgid "Identifier" msgstr "" #: nextend-facebook-connect/includes/provider.php:1074 msgid "Profile picture" msgstr "" #: nextend-facebook-connect/includes/user.php:74 #, php-format msgid "" "Your %1$s account is successfully linked with your account. Now you can sign " "in with %2$s easily." msgstr "你的 %1$s 账号已经成功链接到你的网站帐号. 你可以快速登录 %2$s ." #: nextend-facebook-connect/includes/user.php:77 #, php-format msgid "" "You have already linked a(n) %s account. Please unlink the current and then " "you can link other %s account." msgstr "" "你已经链接了 a(n) %s 账号. 请解除现有的链接账号,你才可以重新链接 %s 账号。" #: nextend-facebook-connect/includes/user.php:82 #, php-format msgid "This %s account is already linked to other user." msgstr "这个 %s 账号已经链接到了其他用户。" #: nextend-facebook-connect/includes/user.php:122 msgid "User registration is currently not allowed." msgstr "" #: nextend-facebook-connect/includes/userData.php:137 msgid "Register For This Site!" msgstr "注册此网站!" #: nextend-facebook-connect/nextend-facebook-connect.php:34 #, php-format msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE." msgstr "" #: nextend-facebook-connect/nextend-facebook-connect.php:41 #, php-format msgid "" "%1$s requires WordPress version %2$s+. Because you are using an earlier " "version, the plugin is currently NOT ACTIVE." msgstr "" #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 #, php-format msgid "Please update %1$s to version %2$s or newer." msgstr "请更新 %1$s 到 %2$s 版本." #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 msgid "Update now!" msgstr "现在更新!" #: nextend-facebook-connect/nextend-social-login.php:735 #: nextend-facebook-connect/nextend-social-login.php:1111 msgid "Social Login" msgstr "社交登录" #: nextend-facebook-connect/nextend-social-login.php:1092 msgid "Social Accounts" msgstr "社交账号" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8 #, fuzzy, php-format #| msgid "Navigate to %s" msgid "Navigate to %s" msgstr "导航 %s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/google/admin/getting-started.php:17 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9 #, php-format msgid "Log in with your %s credentials if you are not logged in" msgstr "如果您未登录,请使用您的 %s 凭据登录" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10 #, fuzzy, php-format #| msgid "Click on the App with App ID: %s" msgid "Click on the App with App ID: %s" msgstr "点击应用程序ID为:%s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11 #, fuzzy #| msgid "In the left sidebar, click on \"Facebook Login/Settings\"" msgid "In the left sidebar, click on \"Facebook Login > Settings\"" msgstr "在左侧,点击\"Facebook 登录/设置\"" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: %s" msgid "" "Add the following URL to the \"Valid OAuth redirect URIs\" field: " "%s" msgstr "请将下面的URL填入\"Valid OAuth redirect URIs\" : %s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on \"Save Changes\"" msgstr "点击\"保存设置\"" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11 #: nextend-facebook-connect/providers/facebook/admin/settings.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22 #, php-format msgid "" "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in " "order to allow login with %1$s." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13 #: nextend-facebook-connect/providers/facebook/admin/settings.php:15 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24 msgid "How to get SSL for my WordPress site?" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19 #: nextend-facebook-connect/providers/google/admin/getting-started.php:11 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create a %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" "要想允许你的访问者使用 %1$s 账号登录,你首先要建立一个 %1$s 应用。下面的导航" "将帮助你了解 %1$s 应用建立的过程,然后你可以建立一个你自己的 %1$s App。转到" "\"设置“,然后根据你的 %1$s 配置,给予 \"%2$s\" and \"%3$s\"。" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21 #: nextend-facebook-connect/providers/google/admin/getting-started.php:13 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:32 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:13 #, php-format msgctxt "App creation" msgid "Create %s" msgstr "建立 %s" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24 #: nextend-facebook-connect/providers/google/admin/getting-started.php:16 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:16 #, php-format msgid "Navigate to %s" msgstr "导航 %s" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26 #, fuzzy #| msgid "Click on the \"Add a New App\" button" msgid "Click on the \"Add a New App\" button" msgstr "点击\"添加新的应用\"按钮" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27 msgid "" "If you see the message \"Become a Facebook Developer\", then you need " "to click on the green \"Register Now\" button, fill the form then " "finally verify your account." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28 #, php-format msgid "" "Fill \"Display Name\" and \"Contact Email\". The specified " "\"Display Name\" will appear on your %s!" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "" "Click the \"Create App ID\" button and complete the Security Check." msgstr "点击\"创建新应用\"按钮" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35 #, php-format msgid "" "On the left side, click on the “%1$s” menu point, then click “" "%2$s”." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31 #, fuzzy #| msgid "Enter your domain name to the App Domains" msgid "Enter your domain name to the \"App Domains\" field." msgstr "填写你的域名到 应用域名" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32 #, fuzzy, php-format #| msgid "Enter your domain name to the App Domains" msgid "" "Enter your domain name to the \"App Domains\" field, probably: %s" msgstr "填写你的域名到 应用域名" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33 #, fuzzy #| msgid "" #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and " #| "easily accessible privacy policy that explains what data you are " #| "collecting and how you will use that data." msgid "" "Fill up the \"Privacy Policy URL\" field. Provide a publicly " "available and easily accessible privacy policy that explains what data you " "are collecting and how you will use that data." msgstr "" "填写“隐私政策URL”。 提供公开可用且易于访问的隐私政策页面,解释您收集的数据以" "及您将如何使用该数据。" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34 msgid "" "Select a “Category”, an “App Icon” and pick the “Business " "Use” option that describes your the App best, then press \"Save " "Changes\"." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on “Save Changes”" msgstr "点击\"保存设置\"" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38 #, fuzzy #| msgid "" #| "Your application is currently private, which means that only you can log " #| "in with it. In the left sidebar choose \"App Review\" and make your App " #| "public" msgid "" "Your application is currently private, which means that only you can log in " "with it. In the top bar click on the switch next to the \"In development\" label, then click the \"Switch Mode\" button." msgstr "" "您的应用程序目前是私人的,这意味着只有您可以使用它登录。 在左侧栏中选择“应用" "程序审查”,并发布您的应用程序" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39 #, fuzzy, php-format #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "Finally on the left side, click on the \"%1$s\" menu point, then " "click \"%2$s\" again. Here you can see your \"APP ID\" and you " "can see your \"App secret\" if you click on the \"Show\" button. " "These will be needed in plugin’s settings." msgstr "" "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按" "钮,这些都需要填写到插件的设置里。" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43 #: nextend-facebook-connect/providers/google/admin/getting-started.php:40 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:30 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:29 #, php-format msgid "I am done setting up my %s" msgstr "我已经设置完毕我的 %s" #: nextend-facebook-connect/providers/facebook/admin/settings.php:35 #: nextend-social-login-pro/providers/vk/admin/settings.php:27 msgid "App ID" msgstr "应用程序 ID" #: nextend-facebook-connect/providers/facebook/admin/settings.php:36 #: nextend-facebook-connect/providers/facebook/admin/settings.php:48 #: nextend-facebook-connect/providers/google/admin/settings.php:28 #: nextend-facebook-connect/providers/google/admin/settings.php:41 #: nextend-facebook-connect/providers/twitter/admin/settings.php:28 #: nextend-social-login-pro/providers/amazon/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:39 #: nextend-social-login-pro/providers/apple/admin/settings.php:79 #: nextend-social-login-pro/providers/apple/admin/settings.php:90 #: nextend-social-login-pro/providers/apple/admin/settings.php:100 #: nextend-social-login-pro/providers/apple/admin/settings.php:108 #: nextend-social-login-pro/providers/disqus/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39 #: nextend-social-login-pro/providers/paypal/admin/settings.php:27 #: nextend-social-login-pro/providers/paypal/admin/settings.php:39 #: nextend-social-login-pro/providers/vk/admin/settings.php:28 #: nextend-social-login-pro/providers/vk/admin/settings.php:40 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39 msgid "Required" msgstr "请求" #: nextend-facebook-connect/providers/facebook/admin/settings.php:41 #: nextend-facebook-connect/providers/google/admin/settings.php:35 #: nextend-facebook-connect/providers/twitter/admin/settings.php:33 #: nextend-social-login-pro/providers/amazon/admin/settings.php:33 #: nextend-social-login-pro/providers/apple/admin/settings.php:34 #: nextend-social-login-pro/providers/apple/admin/settings.php:85 #: nextend-social-login-pro/providers/disqus/admin/settings.php:33 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33 #: nextend-social-login-pro/providers/paypal/admin/settings.php:33 #: nextend-social-login-pro/providers/vk/admin/settings.php:34 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33 #, php-format msgid "" "If you are not sure what is your %1$s, please head over to Getting Started" msgstr "如果你不确定,什么是你的 %1$s, 请转到 现在开始" #: nextend-facebook-connect/providers/facebook/admin/settings.php:47 msgid "App Secret" msgstr "App 密匙" #: nextend-facebook-connect/providers/facebook/facebook.php:79 msgid "Continue with Facebook" msgstr "通过 Facebook" #: nextend-facebook-connect/providers/facebook/facebook.php:80 msgid "Link account with Facebook" msgstr "关联 Facebook 账号" #: nextend-facebook-connect/providers/facebook/facebook.php:81 msgid "Unlink account from Facebook" msgstr "解除关联 Facebook 账号" #: nextend-facebook-connect/providers/facebook/facebook.php:135 #: nextend-facebook-connect/providers/google/google.php:158 #: nextend-facebook-connect/providers/twitter/twitter.php:95 #: nextend-social-login-pro/providers/amazon/amazon.php:65 #: nextend-social-login-pro/providers/apple/apple.php:71 #: nextend-social-login-pro/providers/apple/apple.php:77 #: nextend-social-login-pro/providers/disqus/disqus.php:112 #: nextend-social-login-pro/providers/linkedin/linkedin.php:63 #: nextend-social-login-pro/providers/paypal/paypal.php:90 #: nextend-social-login-pro/providers/vk/vk.php:61 #: nextend-social-login-pro/providers/wordpress/wordpress.php:99 #: nextend-social-login-pro/providers/yahoo/yahoo.php:90 #, php-format msgid "" "The %1$s entered did not appear to be a valid. Please enter a valid %2$s." msgstr "输入的 %1$s 似乎不是有效的。 请输入有效的 %2$s." #: nextend-facebook-connect/providers/facebook/facebook.php:253 #: nextend-social-login-pro/providers/paypal/paypal.php:170 #, php-format msgid "Required scope: %1$s" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:2 #, fuzzy #| msgid "Buttons" msgid "Button skin" msgstr "按钮" #: nextend-facebook-connect/providers/google/admin/buttons.php:8 msgid "Uniform" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:14 msgid "Light" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:20 msgid "Dark" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Click on the \"Credentials\" in the left hand menu" msgid "Click on the \"Credentials\" in the left hand menu" msgstr "点击左侧菜单的\"凭据\"" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11 #, php-format msgid "" "Under the \"OAuth 2.0 Client IDs\" section find your Client ID: " "%s" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/google/admin/getting-started.php:34 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorised redirect URIs\" field: %s" msgid "" "Add the following URL to the \"Authorised redirect URIs\" field: " "%s" msgstr "将旁边的URL 填入\"Authorised redirect URIs\" 应该是 %s" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14 #, fuzzy #| msgid "Click on \"Save\"" msgid "Click on \"Save\"" msgstr "点击\"保存“" #: nextend-facebook-connect/providers/google/admin/getting-started.php:18 #, fuzzy #| msgid "" #| "If you don't have a project yet, you'll need to create one. You can do " #| "this by clicking on the blue \"Create project\" button on the right side" msgid "" "If you don't have a project yet, you'll need to create one. You can do this " "by clicking on the blue \"Create\" button on the right side! ( If " "you already have a project, click on the name of your project in the " "dashboard instead, which will bring up a modal and click \"New Project\". )" msgstr "" "如果你还没有项目,你需要创建一个。 您可以点击右侧蓝色的“创建项目”按钮来完成此" "操作" #: nextend-facebook-connect/providers/google/admin/getting-started.php:19 #, fuzzy #| msgid "Name your project and then click on the Create button" msgid "Name your project and then click on the \"Create\" button again" msgstr "命名您的项目,然后点击创建按钮" #: nextend-facebook-connect/providers/google/admin/getting-started.php:20 msgid "Once you have a project, you'll end up in the dashboard." msgstr "一旦你有一个项目,你会在仪表盘发现它。" #: nextend-facebook-connect/providers/google/admin/getting-started.php:21 msgid "Click the “OAuth consent screen” button on the left hand side." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:22 msgid "" "Choose a User Type according to your needs. If you want to enable the " "social login with Google for any users with a Google account, then pick the " "External option!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:24 #, php-format msgid "" "Note: We don't use sensitive or restricted scopes either. But if you " "will use this App for other purposes too, then you may need to go through an " "%1$s!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:27 msgid "" "Enter a name for your App to the \"Application name\" field, which " "will appear as the name of the app asking for consent." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:28 #, fuzzy, php-format #| msgid "Fill \"Site URL\" with the url of your homepage, probably: %s" msgid "" "Fill the \"Authorized domains\" field with your domain name probably: " "%s without subdomains!" msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 %s" #: nextend-facebook-connect/providers/google/admin/getting-started.php:29 #, fuzzy #| msgid "Save your changes." msgid "Save your settings!" msgstr "保存你的更改." #: nextend-facebook-connect/providers/google/admin/getting-started.php:30 #, php-format msgid "" "On the left side, click on the \"%1$s\" menu point, then click the " "\"%2$s\" button in the top bar." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:31 msgid "Choose the \"OAuth client ID\" option." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:32 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "Select the \"Web application\" under Application type." msgstr "点击\"创建新应用\"按钮" #: nextend-facebook-connect/providers/google/admin/getting-started.php:33 msgid "Enter \"Name\" that for your OAuth client ID." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:35 #, fuzzy #| msgid "Click on the Create button" msgid "Click on the \"Create\" button" msgstr "点击创建按钮" #: nextend-facebook-connect/providers/google/admin/getting-started.php:36 #, fuzzy #| msgid "" #| "A modal should pop up with your credentials. If that doesn't happen, go " #| "to the Credentials in the left hand menu and select your app by clicking " #| "on its name and you'll be able to copy-paste the Client ID and Client " #| "Secret from there." msgid "" "A modal should pop up with your credentials. If that doesn't happen, go to " "the Credentials in the left hand menu and select your app by clicking on its " "name and you'll be able to copy-paste the \"Client ID\" and " "\"Client Secret\" from there." msgstr "" "您的凭据会以弹出的形式出现。 如果这种情况没有发生,请转到左侧菜单中的凭证,并" "通过单击其名称选择您的应用程序,然后您可以从那里复制粘贴客户端ID和客户端密" "钥。" #: nextend-facebook-connect/providers/google/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:26 #: nextend-social-login-pro/providers/apple/admin/settings.php:28 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26 #: nextend-social-login-pro/providers/paypal/admin/settings.php:26 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26 msgid "Client ID" msgstr "客户端ID" #: nextend-facebook-connect/providers/google/admin/settings.php:40 #: nextend-social-login-pro/providers/amazon/admin/settings.php:38 #: nextend-social-login-pro/providers/apple/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38 msgid "Client Secret" msgstr "客户端密码" #: nextend-facebook-connect/providers/google/admin/settings.php:47 msgid "Select account on each login" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:56 msgid "" "Disable, when you don't want to see the account select prompt on each login." msgstr "" #: nextend-facebook-connect/providers/google/google.php:106 msgid "Continue with Google" msgstr "通过 Google" #: nextend-facebook-connect/providers/google/google.php:107 msgid "Link account with Google" msgstr "关联 Google" #: nextend-facebook-connect/providers/google/google.php:108 msgid "Unlink account from Google" msgstr "取消关联 Google" #: nextend-facebook-connect/providers/google/google.php:285 #, fuzzy, php-format #| msgid "Required" msgid "Required API: %1$s" msgstr "请求" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Name your project and then click on the Create button" msgid "Find your App and click on the \"Details\" button" msgstr "命名您的项目,然后点击创建按钮" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11 msgid "" "The Edit button can be found on the App details tab. Click on it and " "select \"Edit details\"" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "Add the following URL to the \"Callback URL\" field: %s" msgid "Add the following URL to the \"Callback URLs\" field: %s" msgstr "将以下网址添加到\"Callback URL\"中:%s" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17 #, fuzzy, php-format #| msgid "Log in with your %s credentials if you are not logged in" msgid "Log in with your %s credentials if you are not logged in yet" msgstr "如果您未登录,请使用您的 %s 凭据登录" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18 msgid "" "If you don't have a developer account yet, please apply one by filling all " "the required details! This is required for the next steps!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19 #, php-format msgid "" "Once your developer account is complete, navigate back to %s if you " "aren't already there!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "" #| "Fill the name and description fields. Then enter your site's URL to the " #| "Website field: %s" msgid "" "Fill the App name, Application description fields. Then enter " "your site's URL to the Website URL field: %s" msgstr "填写名称和说明。 然后在网址字段输入您网站的:%s" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21 msgid "Tick the checkbox next to Enable Sign in with Twitter!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23 msgid "" "Fill the “Terms of Service URL\", \"Privacy policy URL\" and " "\"Tell us how this app will be used\" fields!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24 #, fuzzy #| msgid "Click on the Create button" msgid "Click the Create button." msgstr "点击创建按钮" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25 #, fuzzy #| msgid "Name your project and then click on the Create button" msgid "Read the Developer Terms and click the Create button again!" msgstr "命名您的项目,然后点击创建按钮" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26 msgid "Select the Permissions tab and click Edit." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27 msgid "" "Tick the Request email address from users under the Additional " "permissions section and click Save." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28 #, fuzzy #| msgid "" #| "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret" msgid "" "Go to the Keys and tokens tab and find the API key and API " "secret key" msgstr "转到密钥和访问密令选项卡,找到使用者密匙和密码" #: nextend-facebook-connect/providers/twitter/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:26 msgid "API Key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:38 msgid "API secret key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:57 msgid "Profile image size" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:71 msgid "Original" msgstr "" #: nextend-facebook-connect/providers/twitter/twitter.php:69 msgid "Continue with Twitter" msgstr "保持 Twitter" #: nextend-facebook-connect/providers/twitter/twitter.php:70 msgid "Link account with Twitter" msgstr "关联 Twitter 账号" #: nextend-facebook-connect/providers/twitter/twitter.php:71 msgid "Unlink account from Twitter" msgstr "从 Twitter 取消关联帐户" #: nextend-facebook-connect/widget.php:10 #, php-format msgid "%s Buttons" msgstr "%s 按钮" #: nextend-facebook-connect/widget.php:30 msgid "Title:" msgstr "标题:" #: nextend-facebook-connect/widget.php:38 msgid "Button style:" msgstr "按钮样式:" #: nextend-facebook-connect/widget.php:53 #, fuzzy #| msgid "Buttons" msgid "Button align:" msgstr "按钮" #: nextend-facebook-connect/widget.php:85 msgid "Show link buttons" msgstr "" #: nextend-facebook-connect/widget.php:94 msgid "Show unlink buttons" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:117 msgid "Social login is not allowed with this role!" msgstr "此用户组不允许社交登录!" #: nextend-social-login-pro/class-provider-extension.php:213 #: nextend-social-login-pro/class-provider-extension.php:216 #: nextend-social-login-pro/class-provider-extension.php:222 #: nextend-social-login-pro/class-provider-extension.php:229 #: nextend-social-login-pro/class-provider-extension.php:300 #: nextend-social-login-pro/class-provider-extension.php:303 #: nextend-social-login-pro/class-provider-extension.php:307 msgid "ERROR" msgstr "错误" #: nextend-social-login-pro/class-provider-extension.php:213 msgid "Please enter a username." msgstr "请输入用户名." #: nextend-social-login-pro/class-provider-extension.php:216 msgid "" "This username is invalid because it uses illegal characters. Please enter a " "valid username." msgstr "此用户名无效,因为它使用了非法字符。 请输入有效的用户名。" #: nextend-social-login-pro/class-provider-extension.php:222 msgid "This username is already registered. Please choose another one." msgstr "这个用户名已经有人注册,请选择其他的。" #: nextend-social-login-pro/class-provider-extension.php:229 msgid "Sorry, that username is not allowed." msgstr "对不起,这个用户名不允许使用。" #: nextend-social-login-pro/class-provider-extension.php:247 msgid "Username" msgstr "用户名" #: nextend-social-login-pro/class-provider-extension.php:300 msgid "Please enter an email address." msgstr "请输入电子邮箱." #: nextend-social-login-pro/class-provider-extension.php:303 msgid "The email address isn’t correct." msgstr "邮箱地址是n’t 正确." #: nextend-social-login-pro/class-provider-extension.php:307 msgid "This email is already registered, please choose another one." msgstr "这个邮箱已经注册使用过,请选择其他的。" #: nextend-social-login-pro/class-provider-extension.php:327 msgid "Registration confirmation will be emailed to you." msgstr "注册确认将通过电子邮件发送给您。" #: nextend-social-login-pro/class-provider-extension.php:378 msgid "ERROR: Please enter a password." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:384 msgid "ERROR: Passwords may not contain the character \"\\\"." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:390 msgid "" "ERROR: Please enter the same password in both password " "fields." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:407 msgid "Password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:417 msgid "Strength indicator" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:422 msgid "Confirm use of weak password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:428 msgid "Confirm password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:440 #, fuzzy, php-format #| msgid "" #| "This email is already registered, please login in to your account to link " #| "with Facebook." msgid "" "This email is already registered, please login in to your account to link " "with %1$s." msgstr "这个电子邮件已经注册过,请登录到您的帐户以链接到Facebook。" #: nextend-social-login-pro/nextend-social-login-pro.php:54 #, php-format msgid "Please install and activate %1$s to use the %2$s" msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:68 msgid "Network Activate" msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:80 msgid "Install now!" msgstr "" #: nextend-social-login-pro/provider-extensions/facebook.php:74 #, php-format msgid "" "The Facebook Sync data needs an approved %1$s and your App must use the " "latest %2$s version!" msgstr "" #: nextend-social-login-pro/provider-extensions/google.php:176 #, php-format msgid "" "Most of these information can only be retrieved, when the field is marked as " "Public on the user's %s page!" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26 #, fuzzy, php-format #| msgid "Visit %s." msgid "Visit %s" msgstr "访问 %s." #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30 msgid "" "On the right side, under \"Manage\", hover over the gear icon and " "select \"Web Settings\" option." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31 msgid "Click \"Edit\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" msgid "" "Add the following URL to the \"Allowed Return URLs\" field %s " msgstr "将以下网址添加到“授权重定向网址”字段中:%s" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10 #, fuzzy, php-format #| msgid "" #| "To allow your visitors to log in with their %1$s account, first you must " #| "create a %1$s App. The following guide will help you through the %1$s App " #| "creation process. After you have created your %1$s App, head over to " #| "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to " #| "your %1$s App." msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" "要想允许你的访问者使用 %1$s 账号登录,你首先要建立一个 %1$s 应用。下面的导航" "将帮助你了解 %1$s 应用建立的过程,然后你可以建立一个你自己的 %1$s App。转到" "\"设置“,然后根据你的 %1$s 配置,给予 \"%2$s\" and \"%3$s\"。" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17 #, fuzzy, php-format #| msgid "Log in with your %s credentials if you are not logged in" msgid "Log in with your %s credentials if you are not logged in." msgstr "如果您未登录,请使用您的 %s 凭据登录" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27 #, fuzzy #| msgid "" #| "If you don't have a project yet, you'll need to create one. You can do " #| "this by clicking on the blue \"Create project\" button on the right side" msgid "" "If you don't have a Security Profile yet, you'll need to create one. You can " "do this by clicking on the orange \"Create a New Security Profile\" " "button on the left side." msgstr "" "如果你还没有项目,你需要创建一个。 您可以点击右侧蓝色的“创建项目”按钮来完成此" "操作" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28 msgid "" "Fill \"Security Profile Name\", \"Security Profile Description" "\" and \"Consent Privacy Notice URL\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29 msgid "Once you filled all the required fields, click \"Save\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32 #, fuzzy, php-format #| msgid "Fill \"Site URL\" with the url of your homepage, probably: %s" msgid "" "Fill \"Allowed Origins\" with the url of your homepage, probably: " "%s" msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 %s" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28 msgid "When all fields are filled, click \"Save\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:35 #, fuzzy #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" at the " "middle of the page, under the \"Web Settings\" tab." msgstr "" "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按" "钮,这些都需要填写到插件的设置里。" #: nextend-social-login-pro/providers/amazon/amazon.php:39 msgid "Continue with Amazon" msgstr "通过 Amazon" #: nextend-social-login-pro/providers/amazon/amazon.php:40 msgid "Link account with Amazon" msgstr "关联 Amazon 账号" #: nextend-social-login-pro/providers/amazon/amazon.php:41 msgid "Unlink account from Amazon" msgstr "解除关联 Amazon 账号" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21 #, fuzzy #| msgid "Click on the Create button" msgid "Click on the name of your service." msgstr "点击创建按钮" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22 msgid "" "Click the \"Configure\" button next to \"Sign In with Apple\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53 #, php-format msgid "Click the blue + icon next to %1$s heading." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79 #, fuzzy, php-format #| msgid "Fill \"Site URL\" with the url of your homepage, probably: %s" msgid "" "Fill the \"Domains and Subdomains\" field with your domain name " "probably: %s" msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 %s" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:80 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" msgid "Add the following URL to the \"Return URLs\" field: %s" msgstr "将以下网址添加到“授权重定向网址”字段中:%s" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:26 msgid "" "Finally press \"Next\" then \"Done\" and finally click on the " "\"Continue\" and the \"Save\" button!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30 #, fuzzy, php-format #| msgid "" #| "To allow your visitors to log in with their %1$s account, first you must " #| "create a %1$s App. The following guide will help you through the %1$s App " #| "creation process. After you have created your %1$s App, head over to " #| "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to " #| "your %1$s App." msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\", \"%3$s\", \"%4$s\" and \"%5$s" "\" according to your %1$s App." msgstr "" "要想允许你的访问者使用 %1$s 账号登录,你首先要建立一个 %1$s 应用。下面的导航" "将帮助你了解 %1$s 应用建立的过程,然后你可以建立一个你自己的 %1$s App。转到" "\"设置“,然后根据你的 %1$s 配置,给予 \"%2$s\" and \"%3$s\"。" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35 msgid "" "Make sure you have an active subscription for the Apple Developer " "Program!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36 msgid "" "Make sure your site have SSL, since Apple only allows HTTPS urls!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:41 msgid "1.) Create the associated App:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the %2$s " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:44 msgid "Enter a \"Description\"" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45 #, php-format msgid "" "At the \"Bundle ID\" field select the \"Explicit\" option and " "enter your domain name in reverse-domain name style, with the name of the " "app at its end: %s.nslapp" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46 msgid "" "Under the \"Capabilities\" section, tick the \"Sign In with Apple\" option." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47 msgid "" "Scroll up and press the \"Continue\" button and then the " "\"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50 msgid "2.) Create the Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:52 #, php-format msgid "On the left hand side, click on the \"%s\" tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:54 msgid "Enter a name in the Key Name field." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55 msgid "" "Tick the \"Sign In with Apple\" option, then click on \"Configure\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56 msgid "" "If you have multiple Apps, then at the \"Choose a Primary App ID\" " "field select the App what you just created, then click \"Save" "\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57 msgid "" "Finally press the \"Continue\" button and then the \"Register" "\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58 msgid "Don't download the key yet!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61 msgid "3.) Create the Service:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:63 #, php-format msgid "" "Go to the \"%1$s\" section, what you will find within the \"%2$s\" " "tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the \"%2$s\" " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:65 msgid "Enter a \"Description\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66 #, php-format msgid "" "At the \"Identifier\" field enter your domain name in reverse-domain " "name style, with the name of the client at its end: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69 msgid "Note: This will also be used as Service Identifier later!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72 msgid "" "Press the \"Continue\" button and then the \"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:73 #, php-format msgid "In the \"%1$s\" section, click the service you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76 msgid "" "Tick the \"Sign In with Apple\" option and click the \"Configure\" button next to it." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:78 msgid "" "If you have multiple Apps, then at the \"Primary App ID\" field select the " "App what you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:83 msgid "" "Save the configuration by clicking on the \"Save\" button and " "pressing \"Done\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:84 msgid "" "Finally press the \"Continue\" button and then the \"Save\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:87 msgid "4.) Configure Nextend Social Login with your credentials:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:89 msgid "Go to Nextend Social Login > Providers > Apple > Settings tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:90 msgid "Private Key ID:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:92 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:110 #, fuzzy, php-format #| msgid "Navigate to %s" msgid "Navigate to: %s" msgstr "导航 %s" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:93 #, fuzzy #| msgid "Click on the Create button" msgid "Click on the name of your Key." msgstr "点击创建按钮" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:94 msgid "You will find your \"Private Key ID\" under \"Key ID\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:97 msgid "Private Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99 msgid "" "Click the \"Download\" button to download the key file. Once this " "file is downloaded, it will no longer be available, so make sure you keep " "this file safe! " msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:100 msgid "" "Open the downloaded file with a text editor, like Notepad, copy " "all of its contents and paste it into the \"Private Key" "\" field of Nextend Social Login." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:103 msgid "Team Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105 msgid "" "A 10 character long identifier, what you can find on the top-right " "corner, just under your name." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:108 msgid "Service Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111 #, php-format msgid "" "You will find it under the \"IDENTIFIER\" column. If you configured " "the service according to the suggestions, it will probably end to .nslclient " "e.g.: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:114 msgid "" "Once you filled up all the fields, click on the \"Generate Token\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115 msgid "Finally verify the settings and enable the provider!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:116 msgid "" "When you need to change your credentials for some reason, then you must " "delete the token, copy the new credentials and generate a new token!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:48 msgid "Delete credentials" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:78 msgid "Private Key ID" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:89 msgid "Private Key" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:99 msgid "Team Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:107 msgid "Service Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:117 msgid "Generate Token" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:53 #, fuzzy #| msgid "Continue with Google" msgid "Continue with Apple" msgstr "通过 Google" #: nextend-social-login-pro/providers/apple/apple.php:54 #, fuzzy #| msgid "Link account with Google" msgid "Link account with Apple" msgstr "关联 Google" #: nextend-social-login-pro/providers/apple/apple.php:55 #, fuzzy #| msgid "Unlink account from Google" msgid "Unlink account from Apple" msgstr "取消关联 Google" #: nextend-social-login-pro/providers/apple/apple.php:107 #: nextend-social-login-pro/providers/apple/apple.php:204 #: nextend-social-login-pro/providers/apple/apple.php:221 #, php-format msgid "Token generation failed: %1$s" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:107 msgid "Please check your credentials!" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:204 msgid "Private key format is not valid!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10 #, fuzzy, php-format #| msgid "Click on the Create button" msgid "Click on the name of your %s App." msgstr "点击创建按钮" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "Find the necessary Authentication Keys under the Authentication menu" msgid "" "Select the \"Settings\" tab and scroll down to the Authentication " "section!" msgstr "在认证菜单下找到认证密钥" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23 #, fuzzy, php-format #| msgid "Add the following URL to the \"Callback URL\" field: %s" msgid "Add the following URL to the \"Callback URL\" field %s " msgstr "将以下网址添加到\"Callback URL\"中:%s" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on the \"Save Changes\" button." msgstr "点击\"保存设置\"" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "" "Click on the \"Registering new application\" button under the " "Applications tab." msgstr "点击\"创建新应用\"按钮" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18 msgid "Enter a \"Label\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Fill \"Website URL\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website\" with the url of your homepage, probably: %s" msgstr "用你的主页的网址填写“网址”,可能是:%s" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "" "Complete the Human test and click the \"Register my application\" " "button." msgstr "点击\"创建新应用\"按钮" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21 #, fuzzy, php-format #| msgid "Fill \"Site URL\" with the url of your homepage, probably: %s" msgid "Fill the \"Domains\" field with your domain name like: %s" msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 %s" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22 #, fuzzy #| msgid "Find the necessary Authentication Keys under the Authentication menu" msgid "" "Select \"Read only\" as Default Access under the Authentication " "section." msgstr "在认证菜单下找到认证密钥" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on the \"Save Changes\" button!" msgstr "点击\"保存设置\"" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25 msgid "Navigate to the \"Details\" tab of your Application!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "Here you can see your \"API Key\" and \"API Secret\". These " "will be needed in the plugin's settings." msgstr "" "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按" "钮,这些都需要填写到插件的设置里。" #: nextend-social-login-pro/providers/disqus/admin/settings.php:38 #, fuzzy #| msgid "App Secret" msgid "API Secret" msgstr "App 密匙" #: nextend-social-login-pro/providers/disqus/disqus.php:86 msgid "Continue with Disqus" msgstr "通过 Disqus" #: nextend-social-login-pro/providers/disqus/disqus.php:87 msgid "Link account with Disqus" msgstr "关联 Disqus" #: nextend-social-login-pro/providers/disqus/disqus.php:88 msgid "Unlink account from Disqus" msgstr "取消关联 Disqus" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10 msgid "Click on your App and go to the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" msgid "Add the following URL to the \"Redirect URLs\" field: %s" msgstr "将以下网址添加到“授权重定向网址”字段中:%s" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "Hit update to save the changes" msgid "Click on \"Update\" to save the changes" msgstr "点击更新以保存更改" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17 #, fuzzy #| msgid "Locate the yellow \"Create application\" button and click on it." msgid "Locate the \"Create app\" button and click on it." msgstr "找到黄色的“创建应用程序”按钮并点击它。" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18 msgid "Enter the name of your App to the \"App name\" field." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19 #, php-format msgid "" "Find your company page in the \"Company\" field. If you don't have " "one yet, create new one at: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20 msgid "" "Enter your \"Privacy policy URL\" amd upload an \"App logo\"" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21 #, fuzzy #| msgid "Name your project and then click on the Create button" msgid "" "Read and agree the \"API Terms of Use\" then click the \"Create " "App\" button!" msgstr "命名您的项目,然后点击创建按钮" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22 msgid "" "You will end up in the App setting area. Click on the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" msgid "" "Find \"OAuth 2.0 settings\" section and add the following URL to the " "\"Redirect URLs\" field: %s" msgstr "将以下网址添加到“授权重定向网址”字段中:%s" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25 #, fuzzy #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" under " "the Application credentials section, on the Auth tab." msgstr "" "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按" "钮,这些都需要填写到插件的设置里。" #: nextend-social-login-pro/providers/linkedin/linkedin.php:37 msgid "Continue with LinkedIn" msgstr "通过 LinkedIn" #: nextend-social-login-pro/providers/linkedin/linkedin.php:38 msgid "Link account with LinkedIn" msgstr "关联 LinkedIn 账号" #: nextend-social-login-pro/providers/linkedin/linkedin.php:39 msgid "Unlink account from LinkedIn" msgstr "从 LinkedIn 取消关联帐户" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18 msgid "There is a Sandbox/Live switch. Make sure \"Live\" is selected!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11 #, fuzzy, php-format #| msgid "Click on the Create button" msgid "Click on the name of your %s App, under the REST API apps section." msgstr "点击创建按钮" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading and click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" msgid "" "Add the following URL to the \"Live Return URL\" field: %s " msgstr "将以下网址添加到“授权重定向网址”字段中:%s" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14 msgid "Click on \"Save\"" msgstr "点击\"保存“" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15 #, php-format msgid "" "Editing Live Apps are only possible with a %s. So please make sure you own " "one!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "Click the \"Create App\" button under the REST API apps section." msgstr "点击\"创建新应用\"按钮" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20 msgid "" "Fill the \"App Name\" field and click \"Create App\" button." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading then click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23 msgid "" "Scroll down to \"App feature options\" section and tick \"Log In " "with PayPal\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24 msgid "" "Click \"Advanced Options\" which can be found at the end of text " "after \"Connect with PayPal (formerly Log In with PayPal)\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25 #, fuzzy #| msgid "Please enter an email address." msgid "Tick \"Full name\"." msgstr "请输入电子邮箱." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:26 msgid "" "\"Email address\" now requires an App Review by PayPal. To get the " "email address as well, please submit your App for a review after your " "App configuration is finished. Once the App review is successful, you need " "to pick \"Email address\" here to retrieve the email of the user. Until then " "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27 msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29 msgid "" "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary " "\"Client ID\" and \"Secret\"! ( Make sure you are in " "\"Live\" mode and not \"Sandbox\". )" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:38 #, fuzzy #| msgid "App Secret" msgid "Secret" msgstr "App 密匙" #: nextend-social-login-pro/providers/paypal/admin/settings.php:45 #, fuzzy #| msgid "Email" msgid "Email scope" msgstr "Email" #: nextend-social-login-pro/providers/paypal/admin/settings.php:54 msgid "Disable, when you have no rights for email address." msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:64 msgid "Continue with PayPal" msgstr "通过 PayPal" #: nextend-social-login-pro/providers/paypal/paypal.php:65 msgid "Link account with PayPal" msgstr "关联 PayPal" #: nextend-social-login-pro/providers/paypal/paypal.php:66 msgid "Unlink account from PayPal" msgstr "取消关联 PayPal" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Click on the Create button" msgid "Click on the \"Manage\" button next to the associated App." msgstr "点击创建按钮" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11 #, fuzzy #| msgid "Go to the Settings tab." msgid "Go to the \"Settings\" menu" msgstr "去设置页." #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorised redirect URIs\" field: %s" msgid "" "Add the following URL to the \"Authorized redirect URI\" field: " "%s" msgstr "将旁边的URL 填入\"Authorised redirect URIs\" 应该是 %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17 #, fuzzy #| msgid "Locate the yellow \"Create application\" button and click on it." msgid "Locate the blue \"Create app\" button and click on it." msgstr "找到黄色的“创建应用程序”按钮并点击它。" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18 msgid "" "Enter the Title for your App and select \"Website\" as " "platform." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "Fill \"Site URL\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website address\" with the url of your homepage, probably: " "%s" msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "Fill \"Site URL\" with the url of your homepage, probably: %s" msgid "" "Fill the \"Base domain\" field with your domain, probably: %s" msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21 msgid "When all fields are filled, click the \"Upload app\" button." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22 msgid "" "Fill the information form of your app, upload an app icon then " "click Save." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23 #, fuzzy #| msgid "Click on the \"Credentials\" in the left hand menu" msgid "Pick Settings at the left-hand menu " msgstr "点击左侧菜单的\"凭据\"" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorised redirect URIs\" field: %s" msgid "" "Add the following URL to the \"Authorized redirect URI\" field %s " msgstr "将旁边的URL 填入\"Authorised redirect URIs\" 应该是 %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25 #, fuzzy #| msgid "Select your app." msgid "Save your app" msgstr "选择你的应用程序." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "Find the necessary \"App ID\" and \"Secure key\" at the top of " "the Settings page where you just hit the save button." msgstr "" "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按" "钮,这些都需要填写到插件的设置里。" #: nextend-social-login-pro/providers/vk/admin/settings.php:39 msgid "Secure key" msgstr "" #: nextend-social-login-pro/providers/vk/vk.php:35 msgid "Continue with VK" msgstr "通过 VK" #: nextend-social-login-pro/providers/vk/vk.php:36 msgid "Link account with VK" msgstr "关联 VK" #: nextend-social-login-pro/providers/vk/vk.php:37 msgid "Unlink account from VK" msgstr "取消关联 VK" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12 msgid "Click \"Manage Settings\" under the Tools section!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" msgid "Add the following URL to the \"Redirect URLs\" field %s " msgstr "将以下网址添加到“授权重定向网址”字段中:%s" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "Click on the \"Create New Application\" button." msgstr "点击\"创建新应用\"按钮" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18 msgid "Enter a \"Name\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Fill \"Website URL\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website URL\" with the url of your homepage, probably: %s" msgstr "用你的主页的网址填写“网址”,可能是:%s" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21 msgid "You can leave the \"Javascript Origins\" field blank!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22 msgid "Complete the human verification test." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23 msgid "At the \"Type\" make sure \"Web\" is selected!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "Click the \"Create\" button!" msgstr "点击\"创建新应用\"按钮" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25 msgid "" "Click the name of your App either in the Breadcrumb navigation or " "next to Editing!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "Here you can see your \"Client ID\" and \"Client Secret\". " "These will be needed in the plugin's settings." msgstr "" "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按" "钮,这些都需要填写到插件的设置里。" #: nextend-social-login-pro/providers/wordpress/wordpress.php:73 msgid "Continue with WordPress.com" msgstr "通过 WordPress.com" #: nextend-social-login-pro/providers/wordpress/wordpress.php:74 msgid "Link account with WordPress.com" msgstr "关联 WordPress.com" #: nextend-social-login-pro/providers/wordpress/wordpress.php:75 msgid "Unlink account from WordPress.com" msgstr "取消关联 WordPress.com" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10 msgid "Click on the App which has its credentials associated with the plugin." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" msgid "" "Add the following URL to the \"Redirect URI(s)\" field: %s" msgstr "将以下网址添加到“授权重定向网址”字段中:%s" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "Click on the \"Create an App\" button on the top right corner." msgstr "点击\"创建新应用\"按钮" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19 msgid "" "Fill the \"Application Name\" and select \"Web Application\" " "at \"Application Type\"." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20 msgid "Enter a \"Description\" for your app!" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" msgid "" "Enter the URL of your site to the \"Home Page URL\" field: %s" msgstr "将以下网址添加到“授权重定向网址”字段中:%s" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23 msgid "" "Under the \"API Permissions\" you should select \"OpenID Connect " "Permissions\" with both \"Email\" and \"Profile\" enabled." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:24 #, fuzzy #| msgid "Click on the \"Create New App\" button" msgid "Click \"Create App\"." msgstr "点击\"创建新应用\"按钮" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:25 #, fuzzy #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "On the top of the page, you will find the necessary \"Client ID\" and " "\"Client Secret\"! These will be needed in the plugin's settings." msgstr "" "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按" "钮,这些都需要填写到插件的设置里。" #: nextend-social-login-pro/providers/yahoo/yahoo.php:64 #, fuzzy #| msgid "Continue with Facebook" msgid "Continue with Yahoo" msgstr "通过 Facebook" #: nextend-social-login-pro/providers/yahoo/yahoo.php:65 #, fuzzy #| msgid "Link account with Facebook" msgid "Link account with Yahoo" msgstr "关联 Facebook 账号" #: nextend-social-login-pro/providers/yahoo/yahoo.php:66 #, fuzzy #| msgid "Unlink account from Facebook" msgid "Unlink account from Yahoo" msgstr "解除关联 Facebook 账号" #: nextend-social-login-pro/providers/yahoo/yahoo.php:186 #, fuzzy, php-format #| msgid "Required" msgid "Required permission: %1$s" msgstr "请求" #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10 #: nextend-social-login-pro/template-parts/login/above-separator.php:20 #: nextend-social-login-pro/template-parts/login/below-separator.php:8 #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10 msgid "OR" msgstr "或" #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1 #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1 msgid "Social accounts" msgstr "社交账号" #~ msgid "Click on blue \"Create App ID\" button" #~ msgstr "点击蓝色的\"创建应用\"按钮" #, fuzzy #~| msgid "In the left sidebar, click on \"Facebook Login/Settings\"" #~ msgid "" #~ "In the left sidebar under the Products section, click on \"Facebook Login" #~ "\" and select Settings" #~ msgstr "在左侧,点击\"Facebook 登录/设置\"" #, fuzzy #~| msgid "In the top of the left sidebar, click on \"Settings\"" #~ msgid "" #~ "In the top of the left sidebar, click on \"Settings\" and select \"Basic\"" #~ msgstr "顶部左侧,点击\"设置”" #, php-format #~ msgid "Click on OAuth 2.0 client ID: %s" #~ msgstr "点击 OAuth 2.0 client ID: %s" #~ msgid "" #~ "Click on the \"Credentials\" in the left hand menu to create new API " #~ "credentials" #~ msgstr "点击左侧菜单中的“凭据”以创建新的API凭证" #, fuzzy #~| msgid "" #~| "Go back to the Credentials tab and locate the small box at the middle. " #~| "Click on the blue \"Create credentials\" button. Chose the \"OAuth " #~| "client ID\" from the dropdown list." #~ msgid "" #~ "Click the Create credentials button and select \"OAuth client ID\" from " #~ "the dropdown." #~ msgstr "" #~ "回到凭据选项卡,找到中间的小方块。 点击蓝色的“创建凭证”按钮。 从下拉列表中" #~ "选择“OAuth客户端ID”。" #~ msgid "Your application type should be \"Web application\"" #~ msgstr "您的应用程序类型应该是“网页应用程序”" #~ msgid "Name your application" #~ msgstr "命名你的应用程序" #, fuzzy #~| msgid "Click on the \"Create New App\" button" #~ msgid "Click the \"Save Changes\" button!" #~ msgstr "点击\"创建新应用\"按钮" #~ msgid "Click on the App" #~ msgstr "点击应用" #, php-format #~ msgid "" #~ "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" #~ msgstr "将以下网址添加到“授权重定向网址”字段中:%s" #, fuzzy #~| msgid "Click on the \"Create New App\" button" #~ msgid "Click the \"Create App\" button." #~ msgstr "点击\"创建新应用\"按钮" #, fuzzy #~| msgid "Locate the yellow \"Create application\" button and click on it." #~ msgid "Locate the blue \"Create application\" button and click on it." #~ msgstr "找到黄色的“创建应用程序”按钮并点击它。" #, fuzzy #~| msgid "Click on \"Save\"" #~ msgid "Click on \"Update\"" #~ msgstr "点击\"保存“" #, fuzzy, php-format #~| msgid "" #~| "Fill \"Site URL\" with the url of your homepage, probably: %s" #~ msgid "" #~ "Check if the saved \"Callback Domain\" matches with your domain: %s" #~ msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 %s" #, fuzzy #~| msgid "" #~| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #~| "you click on the \"Show\" button. These will be needed in plugin's " #~| "settings." #~ msgid "" #~ "Replace your old \"Client ID\" and \"Client Secret\" with the one of the " #~ "new app!" #~ msgstr "" #~ "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示" #~ "\"按钮,这些都需要填写到插件的设置里。" #~ msgid "Fill \"Display Name\" and \"Contact Email\"" #~ msgstr "填写\"显示名称\" 和 \"联系邮箱\"" #~ msgid "Locate the yellow \"Create application\" button and click on it." #~ msgstr "找到黄色的“创建应用程序”按钮并点击它。" #~ msgid "Fill the fields marked with *" #~ msgstr "填写标有*的字段" #~ msgid "Accept the Terms of use and hit Submit" #~ msgstr "接受使用条款并点击提交" #~ msgid "Find the necessary Authentication Keys under the Authentication menu" #~ msgstr "在认证菜单下找到认证密钥" #~ msgid "" #~ "You probably want to enable the \"r_emailaddress\" under the Default " #~ "Application Permissions" #~ msgstr "您可能想要在默认应用程序权限下启用 \"r_emailaddress\"" #, fuzzy #~| msgid "Log in with your %s credentials if you are not logged in" #~ msgid "Log in with your credentials if you are not logged in" #~ msgstr "如果您未登录,请使用您的 %s 凭据登录" #~ msgid "" #~ "Move your mouse over Facebook Login and click on the appearing \"Set Up\" " #~ "button" #~ msgstr "移动你的鼠标到 Facebook 登录 然后点击出现的\"设置\"按钮" #~ msgid "Choose Web" #~ msgstr "选择网站" #~ msgid "Fill \"Site URL\" with the url of your homepage, probably: %s" #~ msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 %s" #~ msgid "In the left sidebar, click on \"Facebook Login\"" #~ msgstr "点击左边的\"Facebook 登录\"" #~ msgid "Legacy" #~ msgstr "旧版" #~ msgid "" #~ "%s took the place of Nextend Google Connect. You can delete Nextend " #~ "Google Connect as it is not needed anymore." #~ msgstr "" #~ "%s 取代了Nextend Google Connect。 您可以删除Nextend Google Connect。" #~ msgid "" #~ "%s took the place of Nextend Twitter Connect. You can delete Nextend " #~ "Twitter Connect as it is not needed anymore." #~ msgstr "" #~ "%s取代了Nextend Twitter Connect.你可以删除 Nextend Twitter Connect 。" #~ msgid "Import Facebook configuration" #~ msgstr "导入Facebook配置" #~ msgid "Be sure to read the following notices before you proceed." #~ msgstr "继续之前,请务必阅读以下注意事项。" #~ msgid "Important steps before the import" #~ msgstr "导入前的重要步骤" #~ msgid "" #~ "Make sure that the redirect URI for your app is correct before proceeding." #~ msgstr "在继续之前,请确保您的应用的重定向URI是正确的。" #~ msgid "Visit %s." #~ msgstr "访问 %s." #~ msgid "Select your app." #~ msgstr "选择你的应用程序." #~ msgid "" #~ "Go to the Settings menu which you can find below the Facebook Login in " #~ "the left menu." #~ msgstr "转到设置菜单,您可以在左侧菜单中的Facebook登录下找到它。" #~ msgid "Make sure that the \"%1$s\" field contains %2$s" #~ msgstr "确保 \"%1$s\" 包含 %2$s" #~ msgid "The following settings will be imported:" #~ msgstr "以下设置将被导入:" #~ msgid "Your old API configurations" #~ msgstr "您的旧API配置" #~ msgid "The user prefix you set" #~ msgstr "您设置的用户前缀" #~ msgid "Create a backup of the old settings" #~ msgstr "创建旧设置的备份" #~ msgid "Other changes" #~ msgstr "其他更改" #~ msgid "" #~ "The custom redirect URI is now handled globally for all providers, so it " #~ "won't be imported from the previous version. Visit \"Nextend Social Login " #~ "> Global settings\" to set the new redirect URIs." #~ msgstr "" #~ "自定义重定向URI现在全部为所有提供商处理,因此不会从先前版本导入。 访" #~ "问“Nextend Social login>全局设置”来设置新的重定向URI。" #~ msgid "" #~ "The login button's layout will be changed to a new, more modern look. If " #~ "you used any custom buttons that won't be imported." #~ msgstr "" #~ "如果您使用了任何不会导入的自定义按钮。登录按钮布局将更改为新的更现代的外" #~ "观。" #~ msgid "" #~ "The old version's PHP functions are not available anymore. This means if " #~ "you used any custom codes where you used these old functions, you need to " #~ "remove them." #~ msgstr "" #~ "旧版本的PHP函数不再可用。 这意味着如果您在使用这些旧功能的地方使用了任何自" #~ "定义代码,则需要将其删除。" #~ msgid "" #~ "After the importing process finishes, you will need to test your " #~ "app and enable the provider. You can do both in the next screen." #~ msgstr "" #~ "导入过程完成后,您需要测试您的应用和启用提供商。 您可以在下" #~ "一个页面中执行这两个操作。" #~ msgid "Import Configuration" #~ msgstr "导入配置" #~ msgid "Import Google configuration" #~ msgstr "导入Google配置" #~ msgid "If you have more projects, select the one where your app is." #~ msgstr "如果您有更多项目,请选择您的应用程序所在的项目。" #~ msgid "Click on Credentials at the left-hand menu then select your app." #~ msgstr "在左侧菜单中点击凭据,然后选择您的应用程序。" #~ msgid "Import Twitter configuration" #~ msgstr "导入Twitter配置" #~ msgid "Go to the Settings tab." #~ msgstr "去设置页." #~ msgid "Authorize your Pro Addon" #~ msgstr "授权你的专业版插件" #~ msgid "Authorize" #~ msgstr "授权" #~ msgid "Deauthorize Pro Addon" #~ msgstr "专业版未授权" #, fuzzy #~| msgid "" #~| "Go to the OAuth consent screen tab and enter a product name and provide " #~| "the Privacy Policy URL, then click on the save button." #~ msgid "" #~ "If you're prompted to set a product name, do so. Provide the Privacy " #~ "Policy URL as well then click on the save button" #~ msgstr "转到OAuth 选项卡输入产品名称并提供隐私策略URL,然后单击保存按钮。" #~ msgid "Click on the \"Settings\" tab" #~ msgstr "点击\"设置\"选项" #~ msgid "Click on \"Update Settings\"" #~ msgstr "点击\"更新设置\"" #~ msgid "Accept the Twitter Developer Agreement" #~ msgstr "接受Twitter开发者协议" #~ msgid "" #~ "Create your application by clicking on the Create your Twitter " #~ "application button" #~ msgstr "点击创建Twitter应用程序按钮来创建你的应用程序" #~ msgid "Consumer Key" #~ msgstr "用户密匙" #~ msgid "Consumer Secret" #~ msgstr "用户密码" #~ msgid "BuddyPress register form" #~ msgstr "BuddyPress 注册表" #~ msgid "BuddyPress register button style" #~ msgstr "BuddyPress 注册按钮样式" #~ msgid "Comment login button" #~ msgstr "评论登录按钮" #~ msgid "Comment button style" #~ msgstr "评论按钮样式" #~ msgid "WooCommerce login form" #~ msgstr "WooCommerce 登录表单" #~ msgid "Connect button before login form" #~ msgstr "登录按钮在登录表单上面" #~ msgid "Connect button after login form" #~ msgstr "登录按钮在登录表单后" #~ msgid "WooCommerce register form" #~ msgstr "WooCommerce 注册表单" #~ msgid "Connect button before register form" #~ msgstr "登录按钮在注册表单前" #~ msgid "Connect button after register form" #~ msgstr "登录按钮在注册表单后" #~ msgid "WooCommerce billing form" #~ msgstr "WooCommerce 结算表单" #~ msgid "Connect button before billing form" #~ msgstr "登录按钮在结算表单前" #~ msgid "Connect button after billing form" #~ msgstr "登录按钮在结算表单后" #~ msgid "Link buttons before account details" #~ msgstr "链接按钮在账户详情前面" #~ msgid "WooCommerce button style" #~ msgstr "WooCommerce 按钮样式" #~ msgid "Use custom" #~ msgstr "使用自定义" #~ msgid "Fixed redirect url for register" #~ msgstr "修改注册后重定向URL" #~ msgid "Registration form" #~ msgstr "注册表单" #~ msgid "Please save your changes before testing." #~ msgstr "测试前请保存您的更改。" languages/nextend-facebook-connect-fr_FR.mo000066600000002012152140537230014707 0ustar00,<PQTORProject-Id-Version: ss3 PO-Revision-Date: 2020-03-26 11:08+0100 Last-Translator: Language-Team: Language: fr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 2.2.4 X-Poedit-Basepath: ../.. Plural-Forms: nplurals=2; plural=(n != 1); X-Poedit-SourceCharset: UTF-8 X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e X-Poedit-SearchPath-0: nextend-social-login-pro X-Poedit-SearchPath-1: nextend-facebook-connect X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/compat X-Poedit-SearchPathExcluded-1: nextend-facebook-connect/providers/google/compat X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/compat OUlanguages/nextend-facebook-connect-de_DE.po000066600000341663152140537230014676 0ustar00msgid "" msgstr "" "Project-Id-Version: nextend-facebook-connect\n" "POT-Creation-Date: 2020-03-26 11:07+0100\n" "PO-Revision-Date: 2020-03-26 11:07+0100\n" "Last-Translator: \n" "Language-Team: nextend-facebook-connect\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.2.4\n" "X-Poedit-Basepath: ../..\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n" "X-Poedit-Flags-xgettext: −−default-domain=nextend-facebook-connect\n" "X-Poedit-SearchPath-0: nextend-social-login-pro\n" "X-Poedit-SearchPath-1: nextend-facebook-connect\n" #: nextend-facebook-connect/NSL/GDPR.php:34 msgid "What personal data we collect and why we collect it" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:35 #, php-format msgid "" "%1$s collects data when a visitor register, login or link the account with " "with any of the enabled social provider. It collects the following data: " "email address, name, social provider identifier and access token. Also it " "can collect profile picture and more fields with the Pro Addon's sync data " "feature." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:37 msgid "Who we share your data with" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:38 #, php-format msgid "" "%1$s stores the personal data on your site and does not share it with anyone " "except the access token which used for the authenticated communication with " "the social providers." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:40 msgid "Does the plugin share personal data with third parties" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:41 #, php-format msgid "" "%1$s use the access token what the social provider gave to communicate with " "the providers to verify account and securely access personal data." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:43 msgid "How long we retain your data" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:44 #, php-format msgid "" "%1$s removes the collected personal data when the user deleted from " "WordPress." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:46 msgid "Does the plugin use personal data collected by others?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:47 #, php-format msgid "" "%1$s use the personal data collected by the social providers to create " "account on your site when the visitor authorize it." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:49 msgid "Does the plugin store things in the browser?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:50 #, php-format msgid "" "Yes, %1$s must create a cookie for visitors who use the social login " "authorization flow. This cookie required for every provider to secure the " "communication and to redirect the user back to the last location." msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:52 msgid "Does the plugin collect telemetry data, directly or indirectly?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:53 #: nextend-facebook-connect/NSL/GDPR.php:56 msgid "No" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:55 msgid "" "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a " "third party?" msgstr "" #: nextend-facebook-connect/NSL/GDPR.php:99 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57 msgid "User" msgstr "" #: nextend-facebook-connect/admin/admin.php:203 #, php-format msgid "%s needs json_decode function." msgstr "" #: nextend-facebook-connect/admin/admin.php:203 msgid "Please contact your server administrator and ask for solution!" msgstr "" #: nextend-facebook-connect/admin/admin.php:235 #: nextend-facebook-connect/admin/admin.php:265 msgid "Settings saved." msgstr "" #: nextend-facebook-connect/admin/admin.php:244 msgid "The activation was successful" msgstr "" #: nextend-facebook-connect/admin/admin.php:255 msgid "Deactivate completed." msgstr "" #: nextend-facebook-connect/admin/admin.php:433 #: nextend-facebook-connect/admin/templates-provider/menu.php:15 #: nextend-facebook-connect/admin/templates/providers.php:81 #: nextend-facebook-connect/admin/templates/providers.php:93 #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Settings" msgstr "" #: nextend-facebook-connect/admin/admin.php:516 #: nextend-facebook-connect/includes/oauth2.php:141 #: nextend-facebook-connect/includes/oauth2.php:286 #: nextend-facebook-connect/providers/facebook/facebook-client.php:84 #: nextend-facebook-connect/providers/twitter/twitter-client.php:165 #: nextend-social-login-pro/providers/apple/apple-client.php:87 #, php-format msgid "Unexpected response: %s" msgstr "" #: nextend-facebook-connect/admin/admin.php:577 #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21 #, php-format msgid "" "%s detected that your login url changed. You must update the Oauth redirect " "URIs in the related social applications." msgstr "" #: nextend-facebook-connect/admin/admin.php:578 msgid "Fix Error" msgstr "" #: nextend-facebook-connect/admin/admin.php:578 msgid "Oauth Redirect URI" msgstr "" #: nextend-facebook-connect/admin/admin.php:588 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You need the Pro Addon to " "display Social Login buttons in %2$s login form!" msgstr "" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss and check Pro Addon" msgstr "" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss" msgstr "" #: nextend-facebook-connect/admin/admin.php:595 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You must set \"Page for " "register flow\" and \"OAuth redirect uri proxy page\" in %1$s to " "work properly." msgstr "" #: nextend-facebook-connect/admin/admin.php:596 msgid "Fix now" msgstr "" #: nextend-facebook-connect/admin/admin.php:620 msgid "Activate your Pro Addon" msgstr "" #: nextend-facebook-connect/admin/admin.php:621 msgid "" "To be able to use the Pro features, you need to activate Nextend Social " "Connect Pro Addon. You can do this by clicking on the Activate button below " "then select the related purchase." msgstr "" #: nextend-facebook-connect/admin/admin.php:626 #: nextend-social-login-pro/nextend-social-login-pro.php:60 msgid "Activate" msgstr "" #: nextend-facebook-connect/admin/admin.php:724 msgid "License key" msgstr "" #: nextend-facebook-connect/admin/admin.php:747 msgid "OAuth proxy page" msgstr "" #: nextend-facebook-connect/admin/admin.php:750 msgid "Register flow page" msgstr "" #: nextend-facebook-connect/admin/interim.php:12 #: nextend-facebook-connect/admin/interim.php:23 msgid "You have logged in successfully." msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:79 msgid "Login label" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:84 #: nextend-facebook-connect/admin/templates-provider/buttons.php:95 #: nextend-facebook-connect/admin/templates-provider/buttons.php:106 #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #: nextend-facebook-connect/admin/templates-provider/buttons.php:165 #: nextend-facebook-connect/admin/templates/settings/privacy.php:53 msgid "Reset to default" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:89 msgid "Link label" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:101 msgid "Unlink label" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:112 msgid "Default button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:128 #: nextend-facebook-connect/admin/templates-provider/buttons.php:158 msgid "Use custom button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #, php-format msgid "Use the %s in your custom button's code to make the label show up." msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:143 msgid "Icon button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/buttons.php:174 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140 #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170 #: nextend-facebook-connect/admin/templates/settings/comment.php:73 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171 #: nextend-facebook-connect/admin/templates/settings/privacy.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186 #: nextend-facebook-connect/admin/templates/settings/userpro.php:167 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:254 #: nextend-facebook-connect/providers/facebook/admin/settings.php:57 #: nextend-facebook-connect/providers/google/admin/settings.php:62 #: nextend-facebook-connect/providers/twitter/admin/settings.php:48 #: nextend-social-login-pro/providers/amazon/admin/settings.php:47 #: nextend-social-login-pro/providers/disqus/admin/settings.php:47 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47 #: nextend-social-login-pro/providers/paypal/admin/settings.php:60 #: nextend-social-login-pro/providers/vk/admin/settings.php:48 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47 msgid "Save Changes" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:13 #: nextend-facebook-connect/admin/templates/providers.php:61 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17 #: nextend-facebook-connect/providers/google/admin/getting-started.php:9 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8 msgid "Getting Started" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:17 msgid "Buttons" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:21 msgid "Sync data" msgstr "" #: nextend-facebook-connect/admin/templates-provider/menu.php:24 msgid "Usage" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11 msgid "Other settings" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16 msgid "Username prefix on register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23 msgid "Fallback username prefix on register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27 msgid "Used when username is invalid or not stored" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32 #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #: nextend-facebook-connect/admin/templates/settings/privacy.php:35 msgid "Terms and conditions" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #, php-format msgid "Override global \"%1$s\"" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12 msgid "PRO settings" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32 msgid "Ask E-mail on registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69 msgid "Never" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38 msgid "When email is not provided or empty" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72 msgid "Always" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50 msgid "Ask Username on registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53 msgid "Never, generate automatically" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56 msgid "When username is empty or invalid" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64 msgid "Ask Password on registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81 msgid "Automatically connect the existing account upon registration" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85 #: nextend-facebook-connect/admin/templates/providers.php:39 #: nextend-facebook-connect/admin/templates/settings/general.php:48 #: nextend-facebook-connect/admin/templates/settings/general.php:212 #: nextend-facebook-connect/admin/templates/settings/general.php:227 #: nextend-facebook-connect/admin/templates/settings/general.php:245 #: nextend-facebook-connect/includes/provider-admin.php:217 msgid "Disabled" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88 msgid "Automatic, based on email address" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93 msgid "Disable login for the selected roles" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113 msgid "Default roles for user who registered with this provider" msgstr "" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:99 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:118 #: nextend-facebook-connect/admin/templates/settings/comment.php:39 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105 #: nextend-facebook-connect/admin/templates/settings/userpro.php:51 #: nextend-facebook-connect/admin/templates/settings/userpro.php:102 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180 #: nextend-facebook-connect/widget.php:42 msgid "Default" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50 #: nextend-facebook-connect/includes/userData.php:188 msgid "Register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58 msgid "Login" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66 msgid "Link" msgstr "" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84 msgid "Store in meta key" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:9 msgid "Shortcode" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:12 msgid "Important!" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:13 msgid "The shortcodes are only rendered for users who haven't logged in yet!" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:14 msgid "See the full list of shortcode parameters." msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:31 msgid "Simple link" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:34 msgid "Click here to login or register" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:39 msgid "Image button" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:42 msgid "Image url" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:7 #: nextend-facebook-connect/admin/templates/header.php:20 msgid "Debug" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:41 msgid "Test network connection with providers" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:48 msgid "You don't have cURL support, please enable it in php.ini!" msgstr "" #: nextend-facebook-connect/admin/templates/debug.php:58 #, php-format msgid "Test %1$s connection" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2 msgid "Fix Oauth Redirect URIs" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13 msgid "Every Oauth Redirect URI seems fine" msgstr "" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32 msgid "Got it" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:28 #: nextend-facebook-connect/admin/templates/menu.php:8 msgid "Global Settings" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:31 msgid "General" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:33 msgid "Privacy" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form.php:9 #: nextend-facebook-connect/admin/templates/settings/userpro.php:18 msgid "Login Form" msgstr "" #: nextend-facebook-connect/admin/templates/global-settings.php:39 msgid "Comment" msgstr "" #: nextend-facebook-connect/admin/templates/header.php:14 msgid "Docs" msgstr "" #: nextend-facebook-connect/admin/templates/header.php:17 msgid "Support" msgstr "" #: nextend-facebook-connect/admin/templates/header.php:23 #: nextend-facebook-connect/admin/templates/menu.php:12 msgid "Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/menu.php:6 msgid "Providers" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:13 msgid "Error" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:14 msgid "" "You don’t have sufficient permissions to install and activate plugins. " "Please contact your site’s administrator!" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:22 #: nextend-facebook-connect/admin/templates/pro-addon.php:32 #: nextend-facebook-connect/admin/templates/pro.php:34 msgid "Activate Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:23 msgid "" "Pro Addon is installed but not activated. To be able to use the Pro " "features, you need to activate it." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:37 #: nextend-facebook-connect/admin/templates/pro-addon.php:142 msgid "Deactivate Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:48 #: nextend-facebook-connect/admin/templates/pro.php:43 msgid "Pro Addon is not installed" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:50 msgid "" "To access the Pro features, you need to install and activate the Pro Addon." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:59 #, php-format msgid "Install %s now" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:60 #: nextend-facebook-connect/admin/templates/pro.php:47 msgid "Install Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:94 msgid "Activating..." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:118 msgid "Not compatible!" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:119 #, php-format msgid "" "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or " "newer." msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:123 msgid "Update Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:133 msgid "Pro Addon is installed and activated" msgstr "" #: nextend-facebook-connect/admin/templates/pro-addon.php:135 msgid "" "You installed and activated the Pro Addon. If you don’t want to use it " "anymore, you can deactivate using the button below." msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:8 msgid "Get Pro Addon to unlock more features" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:9 #, php-format msgid "" "The features below are available in %s Pro Addon. Get it today and tweak the " "awesome settings." msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:10 msgid "" "If you already have a license, you can Authorize your Pro Addon. Otherwise " "you can purchase it using the button below." msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:14 msgid "Buy Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:16 msgid "Authorize Pro Addon" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:25 msgid "Pro Addon is not activated" msgstr "" #: nextend-facebook-connect/admin/templates/pro.php:26 #: nextend-facebook-connect/admin/templates/pro.php:44 msgid "" "To be able to use the Pro features, you need to install and activate the " "Nextend Social Connect Pro Addon." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:30 msgid "Not Available" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:33 msgid "Not Configured" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:36 msgid "Not Verified" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:42 #: nextend-facebook-connect/admin/templates/settings/general.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:215 #: nextend-facebook-connect/admin/templates/settings/general.php:230 #: nextend-facebook-connect/admin/templates/settings/general.php:248 #: nextend-facebook-connect/includes/provider-admin.php:220 #: nextend-facebook-connect/providers/google/admin/settings.php:53 #: nextend-social-login-pro/providers/paypal/admin/settings.php:51 msgid "Enabled" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:54 msgid "Upgrade Now" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:69 #: nextend-facebook-connect/includes/provider-admin.php:204 msgid "Verify Settings" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:77 #: nextend-facebook-connect/includes/provider-admin.php:249 msgid "Enable" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:89 #: nextend-facebook-connect/includes/provider-admin.php:257 msgid "Disable" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:114 msgid "Stay Updated" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:115 msgid "" "Receive info on the latest plugin updates and social provider related " "changes." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:116 msgid "Enter your email address" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:120 msgid "Subscribe" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:136 msgid "Saving..." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:137 msgid "Saving failed" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:138 msgid "Order Saved" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "Successfully subscribed!" msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "" "We'll be bringing you all the latest news and updates about Social Login - " "right to your inbox." msgstr "" #: nextend-facebook-connect/admin/templates/providers.php:214 msgid "The entered email address is invalid!" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:14 msgid "Rate your experience!" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:15 msgid "Hated it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:16 msgid "Disliked it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:17 msgid "It was ok" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:18 msgid "Liked it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:19 msgid "Loved it" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:31 msgid "Please Leave a Review" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:32 msgid "" "If you are happy with Nextend Social Login and can take a minute " "please leave us a review. It will be a tremendous help for us!" msgstr "" #: nextend-facebook-connect/admin/templates/review.php:34 msgid "Ok, you deserve it" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96 msgid "Register form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23 msgid "No Connect button" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26 msgid "Connect button before register" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:221 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:226 msgid "Action:" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31 msgid "Connect button before account details" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36 msgid "Connect button after register" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44 msgid "Register button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:105 #: nextend-facebook-connect/admin/templates/settings/comment.php:45 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111 #: nextend-facebook-connect/admin/templates/settings/userpro.php:57 #: nextend-facebook-connect/admin/templates/settings/userpro.php:108 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30 #: nextend-facebook-connect/widget.php:47 msgid "Icon" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:64 msgid "Sidebar Login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:69 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:85 #: nextend-facebook-connect/admin/templates/settings/login-form.php:17 #: nextend-facebook-connect/admin/templates/settings/login-form.php:30 #: nextend-facebook-connect/admin/templates/settings/login-form.php:47 #: nextend-facebook-connect/admin/templates/settings/userpro.php:26 #: nextend-facebook-connect/admin/templates/settings/userpro.php:39 msgid "Hide login buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:72 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88 #: nextend-facebook-connect/admin/templates/settings/login-form.php:14 #: nextend-facebook-connect/admin/templates/settings/login-form.php:27 #: nextend-facebook-connect/admin/templates/settings/login-form.php:44 #: nextend-facebook-connect/admin/templates/settings/userpro.php:23 #: nextend-facebook-connect/admin/templates/settings/userpro.php:36 #: nextend-facebook-connect/widget.php:76 msgid "Show login buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:73 msgid "" "Some themes that use BuddyPress, display the social buttons twice in the " "same login form. This option can disable the one for: " "bp_sidebar_login_form action. " msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:80 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38 msgid "Login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:93 msgid "Login button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:48 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52 #: nextend-facebook-connect/admin/templates/settings/userpro.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58 msgid "Login layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:110 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124 #: nextend-facebook-connect/admin/templates/settings/userpro.php:70 #: nextend-facebook-connect/admin/templates/settings/userpro.php:121 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186 msgid "Below" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:130 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130 #: nextend-facebook-connect/admin/templates/settings/userpro.php:76 #: nextend-facebook-connect/admin/templates/settings/userpro.php:127 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192 msgid "Below with separator" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:136 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136 #: nextend-facebook-connect/admin/templates/settings/userpro.php:82 #: nextend-facebook-connect/admin/templates/settings/userpro.php:133 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198 msgid "Above" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:142 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142 #: nextend-facebook-connect/admin/templates/settings/userpro.php:88 #: nextend-facebook-connect/admin/templates/settings/userpro.php:139 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204 msgid "Above with separator" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:150 #: nextend-facebook-connect/admin/templates/settings/comment.php:53 #: nextend-facebook-connect/admin/templates/settings/login-form.php:53 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:151 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:166 #: nextend-facebook-connect/admin/templates/settings/userpro.php:147 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:233 msgid "Button alignment" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155 #: nextend-facebook-connect/admin/templates/settings/comment.php:58 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140 #: nextend-facebook-connect/admin/templates/settings/login-form.php:58 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:156 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171 #: nextend-facebook-connect/admin/templates/settings/userpro.php:152 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:238 #: nextend-facebook-connect/widget.php:57 msgid "Left" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:158 #: nextend-facebook-connect/admin/templates/settings/comment.php:61 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:143 #: nextend-facebook-connect/admin/templates/settings/login-form.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:159 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:174 #: nextend-facebook-connect/admin/templates/settings/userpro.php:155 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:241 #: nextend-facebook-connect/widget.php:62 msgid "Center" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162 #: nextend-facebook-connect/admin/templates/settings/comment.php:65 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147 #: nextend-facebook-connect/admin/templates/settings/login-form.php:65 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:163 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178 #: nextend-facebook-connect/admin/templates/settings/userpro.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:245 #: nextend-facebook-connect/widget.php:67 msgid "Right" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:18 msgid "Login button" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:23 #: nextend-facebook-connect/admin/templates/settings/privacy.php:42 msgid "Show" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:26 msgid "Hide" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 #, php-format msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Discussion" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Users must be registered and logged in to comment" msgstr "" #: nextend-facebook-connect/admin/templates/settings/comment.php:33 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18 msgid "Button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29 msgid "Target window" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34 msgid "Prefer popup" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37 msgid "Prefer new tab" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40 msgid "Prefer same window" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46 msgid "Registration notification sent to" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:242 msgid "WordPress default" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54 msgid "Nobody" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60 msgid "Admin" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63 msgid "User and Admin" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69 msgid "Unlink" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75 msgid "Allow Social account unlink" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81 msgid "Disable Admin bar for roles" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:43 msgid "Debug mode" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:56 msgid "Page for register flow" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:66 #: nextend-facebook-connect/admin/templates/settings/general.php:91 msgid "None" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:74 msgid "" "This setting is used when you request additional data from the users (such " "as email address) and to display the Terms and conditions." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #, php-format msgid "" "%2$s First create a new page and insert the following shortcode: %1$s then " "select this page above" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #: nextend-facebook-connect/admin/templates/settings/general.php:101 msgid "Usage:" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 #, php-format msgid "" "%1$s You won't be able to reach the selected page unless a social login/" "registration happens." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 msgid "Important:" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:80 msgid "OAuth redirect uri proxy page" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:100 msgid "" "You can use this setting when wp-login.php page is not available to handle " "the OAuth flow." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:101 #, php-format msgid "%1$s First create a new page then select this page above." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:108 msgid "Prevent external redirect overrides" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:114 msgid "Disable external redirects" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:121 msgid "Default redirect url" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:134 #: nextend-facebook-connect/admin/templates/settings/general.php:172 msgid "for Login" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:149 #: nextend-facebook-connect/admin/templates/settings/general.php:187 msgid "for Register" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:159 msgid "Fixed redirect url" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:196 msgid "Blacklisted redirects" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:202 msgid "If you want to blacklist redirect url params. One pattern per line." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:207 msgid "Support login restrictions" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:217 #, php-format msgid "Please visit to our %1$s to check what plugins are supported!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:222 msgid "Display avatars in \"All media items\"" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:232 msgid "" "Enabling this option can speed up loading images in Media Library - Grid " "view!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:237 msgid "Membership" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:250 msgid "Allow registration with Social login." msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33 #: nextend-facebook-connect/admin/templates/settings/userpro.php:45 msgid "Login form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66 msgid "Below and floating" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:85 msgid "Embedded Login form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:104 msgid "Embedded Login layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:135 msgid "Embedded login form button alignment" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form.php:22 #: nextend-facebook-connect/includes/userData.php:137 msgid "Registration Form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/login-form.php:36 msgid "Embedded login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69 msgid "Sign Up form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74 msgid "No Connect button in Sign Up form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167 msgid "Connect button on" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84 msgid "Sign Up form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103 msgid "Sign Up layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212 msgid "Account details" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155 msgid "No link buttons" msgstr "" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158 msgid "Link buttons after account details" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:6 #: nextend-facebook-connect/nextend-social-login.php:143 msgid "" "By clicking Register, you accept our Privacy Policy" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:59 msgid "Store" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:65 msgid "First and last name" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:68 msgid "When not enabled, username will be randomly generated." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:78 #: nextend-social-login-pro/class-provider-extension.php:322 msgid "Email" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:81 msgid "When not enabled, email will be empty." msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:91 #: nextend-facebook-connect/includes/avatar.php:59 msgid "Avatar" msgstr "" #: nextend-facebook-connect/admin/templates/settings/privacy.php:102 #: nextend-facebook-connect/includes/provider.php:1066 msgid "Access token" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23 msgid "No Connect button in Login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89 msgid "No Connect button in Register form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99 #: nextend-facebook-connect/admin/templates/settings/userpro.php:96 msgid "Register form button style" msgstr "" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118 #: nextend-facebook-connect/admin/templates/settings/userpro.php:115 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116 msgid "Register layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/userpro.php:31 msgid "Register Form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43 msgid "No Connect button in login form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101 msgid "No Connect button in register form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154 msgid "Billing form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159 msgid "No Connect button in billing form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174 msgid "Billing layout" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217 msgid "No Connect buttons in account details form" msgstr "" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:220 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:225 msgid "Link buttons on" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:42 #, php-format msgid "Network connection successful: %1$s" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:49 #, php-format msgid "Network connection failed: %1$s" msgstr "" #: nextend-facebook-connect/admin/templates/test-connection.php:52 msgid "" "Please contact with your hosting provider to resolve the network issue " "between your server and the provider." msgstr "" #: nextend-facebook-connect/includes/avatar.php:60 msgid "Manage Avatar" msgstr "" #: nextend-facebook-connect/includes/avatar.php:61 #, php-format msgid "Avatar (%s)" msgid_plural "Avatar (%s)" msgstr[0] "" msgstr[1] "" #: nextend-facebook-connect/includes/compat-wp-login.php:49 #, php-format msgid "%1$s ‹ %2$s — WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:115 msgid "https://wordpress.org/" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:116 msgid "Powered by WordPress" msgstr "" #: nextend-facebook-connect/includes/compat-wp-login.php:260 #, php-format msgctxt "site" msgid "← Back to %s" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:198 msgid "Your configuration needs to be verified" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:199 msgid "" "Before you can start letting your users register with your app it needs to " "be tested. This test makes sure that no users will have troubles with the " "login and registration process.
If you see error message in the popup " "check the copied ID and secret or the app itself. Otherwise your settings " "are fine." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:205 msgid "Please save your changes to verify settings." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:213 msgid "Works Fine" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:227 #, php-format msgid "" "This provider is currently disabled, which means that users can’t register " "or login via their %s account." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:230 #, php-format msgid "" "This provider works fine, but you can test it again. If you don’t want to " "let users register or login with %s anymore you can disable it." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:233 #, php-format msgid "" "This provider is currently enabled, which means that users can register or " "login via their %s account." msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:241 msgid "Verify Settings Again" msgstr "" #: nextend-facebook-connect/includes/provider-admin.php:242 msgid "Please save your changes before verifying settings." msgstr "" #: nextend-facebook-connect/includes/provider.php:350 #: nextend-facebook-connect/includes/provider.php:693 #: nextend-facebook-connect/includes/provider.php:698 msgid "Authentication successful" msgstr "" #: nextend-facebook-connect/includes/provider.php:635 #: nextend-facebook-connect/includes/user.php:127 msgid "Authentication error" msgstr "" #: nextend-facebook-connect/includes/provider.php:650 msgid "Unlink successful." msgstr "" #: nextend-facebook-connect/includes/provider.php:652 msgid "Unlink is not allowed!" msgstr "" #: nextend-facebook-connect/includes/provider.php:856 #: nextend-facebook-connect/includes/provider.php:863 msgid "The test was successful" msgstr "" #: nextend-facebook-connect/includes/provider.php:909 msgid "Authentication failed" msgstr "" #: nextend-facebook-connect/includes/provider.php:1058 msgid "Identifier" msgstr "" #: nextend-facebook-connect/includes/provider.php:1074 msgid "Profile picture" msgstr "" #: nextend-facebook-connect/includes/user.php:74 #, php-format msgid "" "Your %1$s account is successfully linked with your account. Now you can sign " "in with %2$s easily." msgstr "" #: nextend-facebook-connect/includes/user.php:77 #, php-format msgid "" "You have already linked a(n) %s account. Please unlink the current and then " "you can link other %s account." msgstr "" #: nextend-facebook-connect/includes/user.php:82 #, php-format msgid "This %s account is already linked to other user." msgstr "" #: nextend-facebook-connect/includes/user.php:122 msgid "User registration is currently not allowed." msgstr "" #: nextend-facebook-connect/includes/userData.php:137 msgid "Register For This Site!" msgstr "" #: nextend-facebook-connect/nextend-facebook-connect.php:34 #, php-format msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE." msgstr "" #: nextend-facebook-connect/nextend-facebook-connect.php:41 #, php-format msgid "" "%1$s requires WordPress version %2$s+. Because you are using an earlier " "version, the plugin is currently NOT ACTIVE." msgstr "" #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 #, php-format msgid "Please update %1$s to version %2$s or newer." msgstr "" #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 msgid "Update now!" msgstr "" #: nextend-facebook-connect/nextend-social-login.php:735 #: nextend-facebook-connect/nextend-social-login.php:1111 msgid "Social Login" msgstr "" #: nextend-facebook-connect/nextend-social-login.php:1092 msgid "Social Accounts" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8 #, php-format msgid "Navigate to %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/google/admin/getting-started.php:17 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9 #, php-format msgid "Log in with your %s credentials if you are not logged in" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10 #, php-format msgid "Click on the App with App ID: %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11 msgid "In the left sidebar, click on \"Facebook Login > Settings\"" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36 #, php-format msgid "" "Add the following URL to the \"Valid OAuth redirect URIs\" field: " "%s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13 msgid "Click on \"Save Changes\"" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11 #: nextend-facebook-connect/providers/facebook/admin/settings.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22 #, php-format msgid "" "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in " "order to allow login with %1$s." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13 #: nextend-facebook-connect/providers/facebook/admin/settings.php:15 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24 msgid "How to get SSL for my WordPress site?" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19 #: nextend-facebook-connect/providers/google/admin/getting-started.php:11 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create a %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21 #: nextend-facebook-connect/providers/google/admin/getting-started.php:13 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:32 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:13 #, php-format msgctxt "App creation" msgid "Create %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24 #: nextend-facebook-connect/providers/google/admin/getting-started.php:16 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:16 #, php-format msgid "Navigate to %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26 msgid "Click on the \"Add a New App\" button" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27 msgid "" "If you see the message \"Become a Facebook Developer\", then you need " "to click on the green \"Register Now\" button, fill the form then " "finally verify your account." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28 #, php-format msgid "" "Fill \"Display Name\" and \"Contact Email\". The specified " "\"Display Name\" will appear on your %s!" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29 msgid "" "Click the \"Create App ID\" button and complete the Security Check." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35 #, php-format msgid "" "On the left side, click on the “%1$s” menu point, then click “" "%2$s”." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31 msgid "Enter your domain name to the \"App Domains\" field." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32 #, php-format msgid "" "Enter your domain name to the \"App Domains\" field, probably: %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33 msgid "" "Fill up the \"Privacy Policy URL\" field. Provide a publicly " "available and easily accessible privacy policy that explains what data you " "are collecting and how you will use that data." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34 msgid "" "Select a “Category”, an “App Icon” and pick the “Business " "Use” option that describes your the App best, then press \"Save " "Changes\"." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37 msgid "Click on “Save Changes”" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38 msgid "" "Your application is currently private, which means that only you can log in " "with it. In the top bar click on the switch next to the \"In development\" label, then click the \"Switch Mode\" button." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39 #, php-format msgid "" "Finally on the left side, click on the \"%1$s\" menu point, then " "click \"%2$s\" again. Here you can see your \"APP ID\" and you " "can see your \"App secret\" if you click on the \"Show\" button. " "These will be needed in plugin’s settings." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43 #: nextend-facebook-connect/providers/google/admin/getting-started.php:40 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:30 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:29 #, php-format msgid "I am done setting up my %s" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:35 #: nextend-social-login-pro/providers/vk/admin/settings.php:27 msgid "App ID" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:36 #: nextend-facebook-connect/providers/facebook/admin/settings.php:48 #: nextend-facebook-connect/providers/google/admin/settings.php:28 #: nextend-facebook-connect/providers/google/admin/settings.php:41 #: nextend-facebook-connect/providers/twitter/admin/settings.php:28 #: nextend-social-login-pro/providers/amazon/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:39 #: nextend-social-login-pro/providers/apple/admin/settings.php:79 #: nextend-social-login-pro/providers/apple/admin/settings.php:90 #: nextend-social-login-pro/providers/apple/admin/settings.php:100 #: nextend-social-login-pro/providers/apple/admin/settings.php:108 #: nextend-social-login-pro/providers/disqus/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39 #: nextend-social-login-pro/providers/paypal/admin/settings.php:27 #: nextend-social-login-pro/providers/paypal/admin/settings.php:39 #: nextend-social-login-pro/providers/vk/admin/settings.php:28 #: nextend-social-login-pro/providers/vk/admin/settings.php:40 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39 msgid "Required" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:41 #: nextend-facebook-connect/providers/google/admin/settings.php:35 #: nextend-facebook-connect/providers/twitter/admin/settings.php:33 #: nextend-social-login-pro/providers/amazon/admin/settings.php:33 #: nextend-social-login-pro/providers/apple/admin/settings.php:34 #: nextend-social-login-pro/providers/apple/admin/settings.php:85 #: nextend-social-login-pro/providers/disqus/admin/settings.php:33 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33 #: nextend-social-login-pro/providers/paypal/admin/settings.php:33 #: nextend-social-login-pro/providers/vk/admin/settings.php:34 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33 #, php-format msgid "" "If you are not sure what is your %1$s, please head over to Getting Started" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/settings.php:47 msgid "App Secret" msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:79 msgid "Continue with Facebook" msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:80 msgid "Link account with Facebook" msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:81 msgid "Unlink account from Facebook" msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:135 #: nextend-facebook-connect/providers/google/google.php:158 #: nextend-facebook-connect/providers/twitter/twitter.php:95 #: nextend-social-login-pro/providers/amazon/amazon.php:65 #: nextend-social-login-pro/providers/apple/apple.php:71 #: nextend-social-login-pro/providers/apple/apple.php:77 #: nextend-social-login-pro/providers/disqus/disqus.php:112 #: nextend-social-login-pro/providers/linkedin/linkedin.php:63 #: nextend-social-login-pro/providers/paypal/paypal.php:90 #: nextend-social-login-pro/providers/vk/vk.php:61 #: nextend-social-login-pro/providers/wordpress/wordpress.php:99 #: nextend-social-login-pro/providers/yahoo/yahoo.php:90 #, php-format msgid "" "The %1$s entered did not appear to be a valid. Please enter a valid %2$s." msgstr "" #: nextend-facebook-connect/providers/facebook/facebook.php:253 #: nextend-social-login-pro/providers/paypal/paypal.php:170 #, php-format msgid "Required scope: %1$s" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:2 msgid "Button skin" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:8 msgid "Uniform" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:14 msgid "Light" msgstr "" #: nextend-facebook-connect/providers/google/admin/buttons.php:20 msgid "Dark" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10 msgid "Click on the \"Credentials\" in the left hand menu" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11 #, php-format msgid "" "Under the \"OAuth 2.0 Client IDs\" section find your Client ID: " "%s" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/google/admin/getting-started.php:34 #, php-format msgid "" "Add the following URL to the \"Authorised redirect URIs\" field: " "%s" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14 msgid "Click on \"Save\"" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:18 msgid "" "If you don't have a project yet, you'll need to create one. You can do this " "by clicking on the blue \"Create\" button on the right side! ( If " "you already have a project, click on the name of your project in the " "dashboard instead, which will bring up a modal and click \"New Project\". )" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:19 msgid "Name your project and then click on the \"Create\" button again" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:20 msgid "Once you have a project, you'll end up in the dashboard." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:21 msgid "Click the “OAuth consent screen” button on the left hand side." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:22 msgid "" "Choose a User Type according to your needs. If you want to enable the " "social login with Google for any users with a Google account, then pick the " "External option!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:24 #, php-format msgid "" "Note: We don't use sensitive or restricted scopes either. But if you " "will use this App for other purposes too, then you may need to go through an " "%1$s!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:27 msgid "" "Enter a name for your App to the \"Application name\" field, which " "will appear as the name of the app asking for consent." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:28 #, php-format msgid "" "Fill the \"Authorized domains\" field with your domain name probably: " "%s without subdomains!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:29 msgid "Save your settings!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:30 #, php-format msgid "" "On the left side, click on the \"%1$s\" menu point, then click the " "\"%2$s\" button in the top bar." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:31 msgid "Choose the \"OAuth client ID\" option." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:32 msgid "Select the \"Web application\" under Application type." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:33 msgid "Enter \"Name\" that for your OAuth client ID." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:35 msgid "Click on the \"Create\" button" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:36 msgid "" "A modal should pop up with your credentials. If that doesn't happen, go to " "the Credentials in the left hand menu and select your app by clicking on its " "name and you'll be able to copy-paste the \"Client ID\" and " "\"Client Secret\" from there." msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:26 #: nextend-social-login-pro/providers/apple/admin/settings.php:28 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26 #: nextend-social-login-pro/providers/paypal/admin/settings.php:26 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26 msgid "Client ID" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:40 #: nextend-social-login-pro/providers/amazon/admin/settings.php:38 #: nextend-social-login-pro/providers/apple/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38 msgid "Client Secret" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:47 msgid "Select account on each login" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:56 msgid "" "Disable, when you don't want to see the account select prompt on each login." msgstr "" #: nextend-facebook-connect/providers/google/google.php:106 msgid "Continue with Google" msgstr "" #: nextend-facebook-connect/providers/google/google.php:107 msgid "Link account with Google" msgstr "" #: nextend-facebook-connect/providers/google/google.php:108 msgid "Unlink account from Google" msgstr "" #: nextend-facebook-connect/providers/google/google.php:285 #, php-format msgid "Required API: %1$s" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10 msgid "Find your App and click on the \"Details\" button" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11 msgid "" "The Edit button can be found on the App details tab. Click on it and " "select \"Edit details\"" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22 #, php-format msgid "Add the following URL to the \"Callback URLs\" field: %s" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in yet" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18 msgid "" "If you don't have a developer account yet, please apply one by filling all " "the required details! This is required for the next steps!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19 #, php-format msgid "" "Once your developer account is complete, navigate back to %s if you " "aren't already there!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20 #, php-format msgid "" "Fill the App name, Application description fields. Then enter " "your site's URL to the Website URL field: %s" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21 msgid "Tick the checkbox next to Enable Sign in with Twitter!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23 msgid "" "Fill the “Terms of Service URL\", \"Privacy policy URL\" and " "\"Tell us how this app will be used\" fields!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24 msgid "Click the Create button." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25 msgid "Read the Developer Terms and click the Create button again!" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26 msgid "Select the Permissions tab and click Edit." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27 msgid "" "Tick the Request email address from users under the Additional " "permissions section and click Save." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28 msgid "" "Go to the Keys and tokens tab and find the API key and API " "secret key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:26 msgid "API Key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:38 msgid "API secret key" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:57 msgid "Profile image size" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/settings.php:71 msgid "Original" msgstr "" #: nextend-facebook-connect/providers/twitter/twitter.php:69 msgid "Continue with Twitter" msgstr "" #: nextend-facebook-connect/providers/twitter/twitter.php:70 msgid "Link account with Twitter" msgstr "" #: nextend-facebook-connect/providers/twitter/twitter.php:71 msgid "Unlink account from Twitter" msgstr "" #: nextend-facebook-connect/widget.php:10 #, php-format msgid "%s Buttons" msgstr "" #: nextend-facebook-connect/widget.php:30 msgid "Title:" msgstr "" #: nextend-facebook-connect/widget.php:38 msgid "Button style:" msgstr "" #: nextend-facebook-connect/widget.php:53 msgid "Button align:" msgstr "" #: nextend-facebook-connect/widget.php:85 msgid "Show link buttons" msgstr "" #: nextend-facebook-connect/widget.php:94 msgid "Show unlink buttons" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:117 msgid "Social login is not allowed with this role!" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:213 #: nextend-social-login-pro/class-provider-extension.php:216 #: nextend-social-login-pro/class-provider-extension.php:222 #: nextend-social-login-pro/class-provider-extension.php:229 #: nextend-social-login-pro/class-provider-extension.php:300 #: nextend-social-login-pro/class-provider-extension.php:303 #: nextend-social-login-pro/class-provider-extension.php:307 msgid "ERROR" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:213 msgid "Please enter a username." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:216 msgid "" "This username is invalid because it uses illegal characters. Please enter a " "valid username." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:222 msgid "This username is already registered. Please choose another one." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:229 msgid "Sorry, that username is not allowed." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:247 msgid "Username" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:300 msgid "Please enter an email address." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:303 msgid "The email address isn’t correct." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:307 msgid "This email is already registered, please choose another one." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:327 msgid "Registration confirmation will be emailed to you." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:378 msgid "ERROR: Please enter a password." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:384 msgid "ERROR: Passwords may not contain the character \"\\\"." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:390 msgid "" "ERROR: Please enter the same password in both password " "fields." msgstr "" #: nextend-social-login-pro/class-provider-extension.php:407 msgid "Password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:417 msgid "Strength indicator" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:422 msgid "Confirm use of weak password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:428 msgid "Confirm password" msgstr "" #: nextend-social-login-pro/class-provider-extension.php:440 #, php-format msgid "" "This email is already registered, please login in to your account to link " "with %1$s." msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:54 #, php-format msgid "Please install and activate %1$s to use the %2$s" msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:68 msgid "Network Activate" msgstr "" #: nextend-social-login-pro/nextend-social-login-pro.php:80 msgid "Install now!" msgstr "" #: nextend-social-login-pro/provider-extensions/facebook.php:74 #, php-format msgid "" "The Facebook Sync data needs an approved %1$s and your App must use the " "latest %2$s version!" msgstr "" #: nextend-social-login-pro/provider-extensions/google.php:176 #, php-format msgid "" "Most of these information can only be retrieved, when the field is marked as " "Public on the user's %s page!" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26 #, php-format msgid "Visit %s" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30 msgid "" "On the right side, under \"Manage\", hover over the gear icon and " "select \"Web Settings\" option." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31 msgid "Click \"Edit\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33 #, php-format msgid "" "Add the following URL to the \"Allowed Return URLs\" field %s " msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27 msgid "" "If you don't have a Security Profile yet, you'll need to create one. You can " "do this by clicking on the orange \"Create a New Security Profile\" " "button on the left side." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28 msgid "" "Fill \"Security Profile Name\", \"Security Profile Description" "\" and \"Consent Privacy Notice URL\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29 msgid "Once you filled all the required fields, click \"Save\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32 #, php-format msgid "" "Fill \"Allowed Origins\" with the url of your homepage, probably: " "%s" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28 msgid "When all fields are filled, click \"Save\"." msgstr "" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:35 msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" at the " "middle of the page, under the \"Web Settings\" tab." msgstr "" #: nextend-social-login-pro/providers/amazon/amazon.php:39 msgid "Continue with Amazon" msgstr "" #: nextend-social-login-pro/providers/amazon/amazon.php:40 msgid "Link account with Amazon" msgstr "" #: nextend-social-login-pro/providers/amazon/amazon.php:41 msgid "Unlink account from Amazon" msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21 msgid "Click on the name of your service." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22 msgid "" "Click the \"Configure\" button next to \"Sign In with Apple\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53 #, php-format msgid "Click the blue + icon next to %1$s heading." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79 #, php-format msgid "" "Fill the \"Domains and Subdomains\" field with your domain name " "probably: %s" msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:80 #, php-format msgid "Add the following URL to the \"Return URLs\" field: %s" msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:26 msgid "" "Finally press \"Next\" then \"Done\" and finally click on the " "\"Continue\" and the \"Save\" button!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\", \"%3$s\", \"%4$s\" and \"%5$s" "\" according to your %1$s App." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35 msgid "" "Make sure you have an active subscription for the Apple Developer " "Program!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36 msgid "" "Make sure your site have SSL, since Apple only allows HTTPS urls!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:41 msgid "1.) Create the associated App:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the %2$s " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:44 msgid "Enter a \"Description\"" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45 #, php-format msgid "" "At the \"Bundle ID\" field select the \"Explicit\" option and " "enter your domain name in reverse-domain name style, with the name of the " "app at its end: %s.nslapp" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46 msgid "" "Under the \"Capabilities\" section, tick the \"Sign In with Apple\" option." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47 msgid "" "Scroll up and press the \"Continue\" button and then the " "\"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50 msgid "2.) Create the Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:52 #, php-format msgid "On the left hand side, click on the \"%s\" tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:54 msgid "Enter a name in the Key Name field." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55 msgid "" "Tick the \"Sign In with Apple\" option, then click on \"Configure\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56 msgid "" "If you have multiple Apps, then at the \"Choose a Primary App ID\" " "field select the App what you just created, then click \"Save" "\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57 msgid "" "Finally press the \"Continue\" button and then the \"Register" "\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58 msgid "Don't download the key yet!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61 msgid "3.) Create the Service:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:63 #, php-format msgid "" "Go to the \"%1$s\" section, what you will find within the \"%2$s\" " "tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the \"%2$s\" " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:65 msgid "Enter a \"Description\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66 #, php-format msgid "" "At the \"Identifier\" field enter your domain name in reverse-domain " "name style, with the name of the client at its end: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69 msgid "Note: This will also be used as Service Identifier later!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72 msgid "" "Press the \"Continue\" button and then the \"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:73 #, php-format msgid "In the \"%1$s\" section, click the service you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76 msgid "" "Tick the \"Sign In with Apple\" option and click the \"Configure\" button next to it." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:78 msgid "" "If you have multiple Apps, then at the \"Primary App ID\" field select the " "App what you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:83 msgid "" "Save the configuration by clicking on the \"Save\" button and " "pressing \"Done\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:84 msgid "" "Finally press the \"Continue\" button and then the \"Save\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:87 msgid "4.) Configure Nextend Social Login with your credentials:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:89 msgid "Go to Nextend Social Login > Providers > Apple > Settings tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:90 msgid "Private Key ID:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:92 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:110 #, php-format msgid "Navigate to: %s" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:93 msgid "Click on the name of your Key." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:94 msgid "You will find your \"Private Key ID\" under \"Key ID\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:97 msgid "Private Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99 msgid "" "Click the \"Download\" button to download the key file. Once this " "file is downloaded, it will no longer be available, so make sure you keep " "this file safe! " msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:100 msgid "" "Open the downloaded file with a text editor, like Notepad, copy " "all of its contents and paste it into the \"Private Key" "\" field of Nextend Social Login." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:103 msgid "Team Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105 msgid "" "A 10 character long identifier, what you can find on the top-right " "corner, just under your name." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:108 msgid "Service Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111 #, php-format msgid "" "You will find it under the \"IDENTIFIER\" column. If you configured " "the service according to the suggestions, it will probably end to .nslclient " "e.g.: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:114 msgid "" "Once you filled up all the fields, click on the \"Generate Token\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115 msgid "Finally verify the settings and enable the provider!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:116 msgid "" "When you need to change your credentials for some reason, then you must " "delete the token, copy the new credentials and generate a new token!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:48 msgid "Delete credentials" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:78 msgid "Private Key ID" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:89 msgid "Private Key" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:99 msgid "Team Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:107 msgid "Service Identifier" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:117 msgid "Generate Token" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:53 msgid "Continue with Apple" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:54 msgid "Link account with Apple" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:55 msgid "Unlink account from Apple" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:107 #: nextend-social-login-pro/providers/apple/apple.php:204 #: nextend-social-login-pro/providers/apple/apple.php:221 #, php-format msgid "Token generation failed: %1$s" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:107 msgid "Please check your credentials!" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:204 msgid "Private key format is not valid!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10 #, php-format msgid "Click on the name of your %s App." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12 msgid "" "Select the \"Settings\" tab and scroll down to the Authentication " "section!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23 #, php-format msgid "Add the following URL to the \"Callback URL\" field %s " msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14 msgid "Click on the \"Save Changes\" button." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17 msgid "" "Click on the \"Registering new application\" button under the " "Applications tab." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18 msgid "Enter a \"Label\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19 #, php-format msgid "" "Fill \"Website\" with the url of your homepage, probably: %s" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20 msgid "" "Complete the Human test and click the \"Register my application\" " "button." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21 #, php-format msgid "Fill the \"Domains\" field with your domain name like: %s" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22 msgid "" "Select \"Read only\" as Default Access under the Authentication " "section." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24 msgid "Click on the \"Save Changes\" button!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25 msgid "Navigate to the \"Details\" tab of your Application!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26 msgid "" "Here you can see your \"API Key\" and \"API Secret\". These " "will be needed in the plugin's settings." msgstr "" #: nextend-social-login-pro/providers/disqus/admin/settings.php:38 msgid "API Secret" msgstr "" #: nextend-social-login-pro/providers/disqus/disqus.php:86 msgid "Continue with Disqus" msgstr "" #: nextend-social-login-pro/providers/disqus/disqus.php:87 msgid "Link account with Disqus" msgstr "" #: nextend-social-login-pro/providers/disqus/disqus.php:88 msgid "Unlink account from Disqus" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10 msgid "Click on your App and go to the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11 #, php-format msgid "Add the following URL to the \"Redirect URLs\" field: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:12 msgid "Click on \"Update\" to save the changes" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17 msgid "Locate the \"Create app\" button and click on it." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18 msgid "Enter the name of your App to the \"App name\" field." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19 #, php-format msgid "" "Find your company page in the \"Company\" field. If you don't have " "one yet, create new one at: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20 msgid "" "Enter your \"Privacy policy URL\" amd upload an \"App logo\"" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21 msgid "" "Read and agree the \"API Terms of Use\" then click the \"Create " "App\" button!" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22 msgid "" "You will end up in the App setting area. Click on the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23 #, php-format msgid "" "Find \"OAuth 2.0 settings\" section and add the following URL to the " "\"Redirect URLs\" field: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25 msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" under " "the Application credentials section, on the Auth tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/linkedin.php:37 msgid "Continue with LinkedIn" msgstr "" #: nextend-social-login-pro/providers/linkedin/linkedin.php:38 msgid "Link account with LinkedIn" msgstr "" #: nextend-social-login-pro/providers/linkedin/linkedin.php:39 msgid "Unlink account from LinkedIn" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18 msgid "There is a Sandbox/Live switch. Make sure \"Live\" is selected!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11 #, php-format msgid "Click on the name of your %s App, under the REST API apps section." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading and click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22 #, php-format msgid "" "Add the following URL to the \"Live Return URL\" field: %s " msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14 msgid "Click on \"Save\"" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15 #, php-format msgid "" "Editing Live Apps are only possible with a %s. So please make sure you own " "one!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19 msgid "Click the \"Create App\" button under the REST API apps section." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20 msgid "" "Fill the \"App Name\" field and click \"Create App\" button." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21 msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading then click \"Show\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23 msgid "" "Scroll down to \"App feature options\" section and tick \"Log In " "with PayPal\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24 msgid "" "Click \"Advanced Options\" which can be found at the end of text " "after \"Connect with PayPal (formerly Log In with PayPal)\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25 msgid "Tick \"Full name\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:26 msgid "" "\"Email address\" now requires an App Review by PayPal. To get the " "email address as well, please submit your App for a review after your " "App configuration is finished. Once the App review is successful, you need " "to pick \"Email address\" here to retrieve the email of the user. Until then " "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27 msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29 msgid "" "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary " "\"Client ID\" and \"Secret\"! ( Make sure you are in " "\"Live\" mode and not \"Sandbox\". )" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:38 msgid "Secret" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:45 msgid "Email scope" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/settings.php:54 msgid "Disable, when you have no rights for email address." msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:64 msgid "Continue with PayPal" msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:65 msgid "Link account with PayPal" msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:66 msgid "Unlink account from PayPal" msgstr "" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10 msgid "Click on the \"Manage\" button next to the associated App." msgstr "" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11 msgid "Go to the \"Settings\" menu" msgstr "" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12 #, php-format msgid "" "Add the following URL to the \"Authorized redirect URI\" field: " "%s" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17 msgid "Locate the blue \"Create app\" button and click on it." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18 msgid "" "Enter the Title for your App and select \"Website\" as " "platform." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19 #, php-format msgid "" "Fill \"Website address\" with the url of your homepage, probably: " "%s" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20 #, php-format msgid "" "Fill the \"Base domain\" field with your domain, probably: %s" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21 msgid "When all fields are filled, click the \"Upload app\" button." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22 msgid "" "Fill the information form of your app, upload an app icon then " "click Save." msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23 msgid "Pick Settings at the left-hand menu " msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24 #, php-format msgid "" "Add the following URL to the \"Authorized redirect URI\" field %s " msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25 msgid "Save your app" msgstr "" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:26 msgid "" "Find the necessary \"App ID\" and \"Secure key\" at the top of " "the Settings page where you just hit the save button." msgstr "" #: nextend-social-login-pro/providers/vk/admin/settings.php:39 msgid "Secure key" msgstr "" #: nextend-social-login-pro/providers/vk/vk.php:35 msgid "Continue with VK" msgstr "" #: nextend-social-login-pro/providers/vk/vk.php:36 msgid "Link account with VK" msgstr "" #: nextend-social-login-pro/providers/vk/vk.php:37 msgid "Unlink account from VK" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12 msgid "Click \"Manage Settings\" under the Tools section!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20 #, php-format msgid "Add the following URL to the \"Redirect URLs\" field %s " msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17 msgid "Click on the \"Create New Application\" button." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18 msgid "Enter a \"Name\" and \"Description\" for your App." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19 #, php-format msgid "" "Fill \"Website URL\" with the url of your homepage, probably: %s" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21 msgid "You can leave the \"Javascript Origins\" field blank!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22 msgid "Complete the human verification test." msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23 msgid "At the \"Type\" make sure \"Web\" is selected!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24 msgid "Click the \"Create\" button!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25 msgid "" "Click the name of your App either in the Breadcrumb navigation or " "next to Editing!" msgstr "" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26 msgid "" "Here you can see your \"Client ID\" and \"Client Secret\". " "These will be needed in the plugin's settings." msgstr "" #: nextend-social-login-pro/providers/wordpress/wordpress.php:73 msgid "Continue with WordPress.com" msgstr "" #: nextend-social-login-pro/providers/wordpress/wordpress.php:74 msgid "Link account with WordPress.com" msgstr "" #: nextend-social-login-pro/providers/wordpress/wordpress.php:75 msgid "Unlink account from WordPress.com" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10 msgid "Click on the App which has its credentials associated with the plugin." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22 #, php-format msgid "" "Add the following URL to the \"Redirect URI(s)\" field: %s" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18 msgid "Click on the \"Create an App\" button on the top right corner." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19 msgid "" "Fill the \"Application Name\" and select \"Web Application\" " "at \"Application Type\"." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20 msgid "Enter a \"Description\" for your app!" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21 #, php-format msgid "" "Enter the URL of your site to the \"Home Page URL\" field: %s" msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23 msgid "" "Under the \"API Permissions\" you should select \"OpenID Connect " "Permissions\" with both \"Email\" and \"Profile\" enabled." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:24 msgid "Click \"Create App\"." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:25 msgid "" "On the top of the page, you will find the necessary \"Client ID\" and " "\"Client Secret\"! These will be needed in the plugin's settings." msgstr "" #: nextend-social-login-pro/providers/yahoo/yahoo.php:64 msgid "Continue with Yahoo" msgstr "" #: nextend-social-login-pro/providers/yahoo/yahoo.php:65 msgid "Link account with Yahoo" msgstr "" #: nextend-social-login-pro/providers/yahoo/yahoo.php:66 msgid "Unlink account from Yahoo" msgstr "" #: nextend-social-login-pro/providers/yahoo/yahoo.php:186 #, php-format msgid "Required permission: %1$s" msgstr "" #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10 #: nextend-social-login-pro/template-parts/login/above-separator.php:20 #: nextend-social-login-pro/template-parts/login/below-separator.php:8 #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10 msgid "OR" msgstr "ODER" #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1 #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1 msgid "Social accounts" msgstr "" languages/nextend-facebook-connect-nl_NL.po000066600000470777152140537230014751 0ustar00msgid "" msgstr "" "Project-Id-Version: nextend-facebook-connect\n" "POT-Creation-Date: 2020-03-26 11:08+0100\n" "PO-Revision-Date: 2020-03-26 11:08+0100\n" "Last-Translator: Erik Molenaar \n" "Language-Team: nextend-facebook-connect\n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.2.4\n" "X-Poedit-Basepath: ../..\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n" "X-Poedit-Flags-xgettext: −−default-domain=nextend-facebook-connect\n" "X-Poedit-SearchPath-0: nextend-social-login-pro\n" "X-Poedit-SearchPath-1: nextend-facebook-connect\n" #: nextend-facebook-connect/NSL/GDPR.php:34 msgid "What personal data we collect and why we collect it" msgstr "Welke persoonlijke gegevens we verzamelen en waarom we deze verzamelen" #: nextend-facebook-connect/NSL/GDPR.php:35 #, php-format msgid "" "%1$s collects data when a visitor register, login or link the account with " "with any of the enabled social provider. It collects the following data: " "email address, name, social provider identifier and access token. Also it " "can collect profile picture and more fields with the Pro Addon's sync data " "feature." msgstr "" "%1$s verzamelt gegevens wanneer een bezoeker zich registreert, zich aanmeldt " "of het account koppelt aan een van de ingeschakelde social providers. Het " "verzamelt de volgende gegevens: e-mailadres, naam, social provider ID en " "toegangstoken. Ook kan het de profielfoto en meer velden verzamelen met de " "synchronisatiegegevensfunctie van de Pro-uitbreiding." #: nextend-facebook-connect/NSL/GDPR.php:37 msgid "Who we share your data with" msgstr "Met wie we je gegevens delen" #: nextend-facebook-connect/NSL/GDPR.php:38 #, php-format msgid "" "%1$s stores the personal data on your site and does not share it with anyone " "except the access token which used for the authenticated communication with " "the social providers." msgstr "" "%1$s slaat de persoonlijke gegevens op je site op en deelt deze met niemand " "behalve het toegangstoken dat werd gebruikt voor de geverifieerde " "communicatie met de social providers." #: nextend-facebook-connect/NSL/GDPR.php:40 msgid "Does the plugin share personal data with third parties" msgstr "Deelt de plug-in persoonlijke gegevens met derden" #: nextend-facebook-connect/NSL/GDPR.php:41 #, php-format msgid "" "%1$s use the access token what the social provider gave to communicate with " "the providers to verify account and securely access personal data." msgstr "" "%1$s gebruiken het toegangstoken dat de social provider heeft gegeven om met " "de providers te communiceren om het account te verifiëren en veilig toegang " "te krijgen tot persoonlijke gegevens." #: nextend-facebook-connect/NSL/GDPR.php:43 msgid "How long we retain your data" msgstr "Hoe lang wij je gegevens bewaren" #: nextend-facebook-connect/NSL/GDPR.php:44 #, php-format msgid "" "%1$s removes the collected personal data when the user deleted from " "WordPress." msgstr "" "%1$s verwijdert de verzamelde persoonlijke gegevens wanneer de gebruiker " "deze heeft verwijderd uit WordPress." #: nextend-facebook-connect/NSL/GDPR.php:46 msgid "Does the plugin use personal data collected by others?" msgstr "" "Gebruikt de plugin persoonlijke gegevens die door anderen zijn verzameld?" #: nextend-facebook-connect/NSL/GDPR.php:47 #, php-format msgid "" "%1$s use the personal data collected by the social providers to create " "account on your site when the visitor authorize it." msgstr "" "%1$s gebruiken de persoonlijke gegevens die door de social providers zijn " "verzameld om een account op je site te maken wanneer de bezoeker deze " "autoriseert." #: nextend-facebook-connect/NSL/GDPR.php:49 msgid "Does the plugin store things in the browser?" msgstr "Slaat de plugin dingen op in de browser?" #: nextend-facebook-connect/NSL/GDPR.php:50 #, php-format msgid "" "Yes, %1$s must create a cookie for visitors who use the social login " "authorization flow. This cookie required for every provider to secure the " "communication and to redirect the user back to the last location." msgstr "" "Ja, %1$s moet een cookie maken voor bezoekers die gebruikmaken van het " "Social Login autorisatieproces. Deze cookie is vereist voor elke provider om " "de communicatie te beveiligen en de gebruiker om te leiden naar de laatste " "locatie." #: nextend-facebook-connect/NSL/GDPR.php:52 msgid "Does the plugin collect telemetry data, directly or indirectly?" msgstr "Verzamelt de plug-in telemetriegegevens, direct of indirect?" #: nextend-facebook-connect/NSL/GDPR.php:53 #: nextend-facebook-connect/NSL/GDPR.php:56 msgid "No" msgstr "Nee" #: nextend-facebook-connect/NSL/GDPR.php:55 msgid "" "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a " "third party?" msgstr "" "Voegt de plug-in JavaScript, trackingpixels of ingesloten iframes toe van " "een derde partij?" #: nextend-facebook-connect/NSL/GDPR.php:99 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57 msgid "User" msgstr "Gebruiker" #: nextend-facebook-connect/admin/admin.php:203 #, php-format msgid "%s needs json_decode function." msgstr "%s heeft de functie json_decode nodig." #: nextend-facebook-connect/admin/admin.php:203 msgid "Please contact your server administrator and ask for solution!" msgstr "Neem contact op met je serverbeheerder en vraag om een oplossing!" #: nextend-facebook-connect/admin/admin.php:235 #: nextend-facebook-connect/admin/admin.php:265 msgid "Settings saved." msgstr "Instellingen opgeslagen." #: nextend-facebook-connect/admin/admin.php:244 msgid "The activation was successful" msgstr "De activering was succesvol" #: nextend-facebook-connect/admin/admin.php:255 msgid "Deactivate completed." msgstr "Deactiveren voltooid." #: nextend-facebook-connect/admin/admin.php:433 #: nextend-facebook-connect/admin/templates-provider/menu.php:15 #: nextend-facebook-connect/admin/templates/providers.php:81 #: nextend-facebook-connect/admin/templates/providers.php:93 #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Settings" msgstr "Instellingen" #: nextend-facebook-connect/admin/admin.php:516 #: nextend-facebook-connect/includes/oauth2.php:141 #: nextend-facebook-connect/includes/oauth2.php:286 #: nextend-facebook-connect/providers/facebook/facebook-client.php:84 #: nextend-facebook-connect/providers/twitter/twitter-client.php:165 #: nextend-social-login-pro/providers/apple/apple-client.php:87 #, php-format msgid "Unexpected response: %s" msgstr "Onverwachte reactie: %s" #: nextend-facebook-connect/admin/admin.php:577 #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21 #, php-format msgid "" "%s detected that your login url changed. You must update the Oauth redirect " "URIs in the related social applications." msgstr "" "%s detecteert dat je inlog-URL is gewijzigd. Je moet de Oauth-omleidings-" "URI's bijwerken in de bijbehorende social applicatie." #: nextend-facebook-connect/admin/admin.php:578 msgid "Fix Error" msgstr "Fout Oplossen" #: nextend-facebook-connect/admin/admin.php:578 msgid "Oauth Redirect URI" msgstr "Oauth Omleidings-URI" #: nextend-facebook-connect/admin/admin.php:588 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You need the Pro Addon to " "display Social Login buttons in %2$s login form!" msgstr "" "%1$s gedetecteerd dat %2$s op je site heeft geïnstalleerd. Je hebt de Pro " "Add-on nodig om Social Login-knoppen weer te geven in het %2$s " "aanmeldingsformulier!" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss and check Pro Addon" msgstr "Sluiten en vink Pro-uitbreiding aan" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss" msgstr "Sluiten" #: nextend-facebook-connect/admin/admin.php:595 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You must set \"Page for " "register flow\" and \"OAuth redirect uri proxy page\" in %1$s to " "work properly." msgstr "" "%1$s gedetecteerd dat %2$s op je site heeft geïnstalleerd. Je moet " "\"Pagina voor registreerproces\" en \"OAuth-omleidingspagina voor " "uri-proxy\" instellen om %1$s correct te laten werken." #: nextend-facebook-connect/admin/admin.php:596 msgid "Fix now" msgstr "Nu maken" #: nextend-facebook-connect/admin/admin.php:620 msgid "Activate your Pro Addon" msgstr "Activeer je Pro Add-on" #: nextend-facebook-connect/admin/admin.php:621 msgid "" "To be able to use the Pro features, you need to activate Nextend Social " "Connect Pro Addon. You can do this by clicking on the Activate button below " "then select the related purchase." msgstr "" "Om de Pro-functies te kunnen gebruiken, moet je Nextend Social Connect Pro-" "uitbreiding activeren. Je kunt dit doen door hieronder op de knop Activeren " "te klikken en vervolgens de bijbehorende aankoop te selecteren." #: nextend-facebook-connect/admin/admin.php:626 #: nextend-social-login-pro/nextend-social-login-pro.php:60 msgid "Activate" msgstr "Activeren" #: nextend-facebook-connect/admin/admin.php:724 msgid "License key" msgstr "Licentiesleutel" #: nextend-facebook-connect/admin/admin.php:747 msgid "OAuth proxy page" msgstr "OAuth-proxy-pagina" #: nextend-facebook-connect/admin/admin.php:750 msgid "Register flow page" msgstr "Registreerproces-pagina" #: nextend-facebook-connect/admin/interim.php:12 #: nextend-facebook-connect/admin/interim.php:23 msgid "You have logged in successfully." msgstr "Je bent succesvol ingelogd." #: nextend-facebook-connect/admin/templates-provider/buttons.php:79 msgid "Login label" msgstr "Login label" #: nextend-facebook-connect/admin/templates-provider/buttons.php:84 #: nextend-facebook-connect/admin/templates-provider/buttons.php:95 #: nextend-facebook-connect/admin/templates-provider/buttons.php:106 #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #: nextend-facebook-connect/admin/templates-provider/buttons.php:165 #: nextend-facebook-connect/admin/templates/settings/privacy.php:53 msgid "Reset to default" msgstr "Reset naar standaard" #: nextend-facebook-connect/admin/templates-provider/buttons.php:89 msgid "Link label" msgstr "Koppel label" #: nextend-facebook-connect/admin/templates-provider/buttons.php:101 msgid "Unlink label" msgstr "Ontkoppel label" #: nextend-facebook-connect/admin/templates-provider/buttons.php:112 msgid "Default button" msgstr "Standaard knop" #: nextend-facebook-connect/admin/templates-provider/buttons.php:128 #: nextend-facebook-connect/admin/templates-provider/buttons.php:158 msgid "Use custom button" msgstr "Gebruik de aangepaste knop" #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #, php-format msgid "Use the %s in your custom button's code to make the label show up." msgstr "" "Gebruik de %s in de code van je aangepaste knop om het label te laten " "verschijnen." #: nextend-facebook-connect/admin/templates-provider/buttons.php:143 msgid "Icon button" msgstr "Pictogram knop" #: nextend-facebook-connect/admin/templates-provider/buttons.php:174 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140 #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170 #: nextend-facebook-connect/admin/templates/settings/comment.php:73 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171 #: nextend-facebook-connect/admin/templates/settings/privacy.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186 #: nextend-facebook-connect/admin/templates/settings/userpro.php:167 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:254 #: nextend-facebook-connect/providers/facebook/admin/settings.php:57 #: nextend-facebook-connect/providers/google/admin/settings.php:62 #: nextend-facebook-connect/providers/twitter/admin/settings.php:48 #: nextend-social-login-pro/providers/amazon/admin/settings.php:47 #: nextend-social-login-pro/providers/disqus/admin/settings.php:47 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47 #: nextend-social-login-pro/providers/paypal/admin/settings.php:60 #: nextend-social-login-pro/providers/vk/admin/settings.php:48 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47 msgid "Save Changes" msgstr "Wijzigingen Opslaan" #: nextend-facebook-connect/admin/templates-provider/menu.php:13 #: nextend-facebook-connect/admin/templates/providers.php:61 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17 #: nextend-facebook-connect/providers/google/admin/getting-started.php:9 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8 msgid "Getting Started" msgstr "Aan de Slag" #: nextend-facebook-connect/admin/templates-provider/menu.php:17 msgid "Buttons" msgstr "Knoppen" #: nextend-facebook-connect/admin/templates-provider/menu.php:21 msgid "Sync data" msgstr "Gegevens synchroniseren" #: nextend-facebook-connect/admin/templates-provider/menu.php:24 msgid "Usage" msgstr "Gebruik" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11 msgid "Other settings" msgstr "Overige instellingen" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16 msgid "Username prefix on register" msgstr "Voorvoegsel gebruikersnaam bij registratie" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23 msgid "Fallback username prefix on register" msgstr "Terugval gebruikersnaam prefix bij registratie" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27 msgid "Used when username is invalid or not stored" msgstr "" "Wordt gebruikt wanneer gebruikersnaam ongeldig is of niet is opgeslagen" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32 #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #: nextend-facebook-connect/admin/templates/settings/privacy.php:35 msgid "Terms and conditions" msgstr "Algemene voorwaarden" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #, php-format msgid "Override global \"%1$s\"" msgstr "Overschrijd globale \"%1$s\"" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12 msgid "PRO settings" msgstr "PRO-instellingen" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32 msgid "Ask E-mail on registration" msgstr "Vraag E-mail bij inschrijving" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69 msgid "Never" msgstr "Nooit" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38 msgid "When email is not provided or empty" msgstr "Wanneer e-mail niet wordt verstrekt of leeg is" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72 msgid "Always" msgstr "Altijd" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50 msgid "Ask Username on registration" msgstr "Vraag Gebruikersnaam bij registratie" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53 msgid "Never, generate automatically" msgstr "Nooit, automatisch genereren" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56 msgid "When username is empty or invalid" msgstr "Wanneer gebruikersnaam leeg of ongeldig is" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64 msgid "Ask Password on registration" msgstr "Vraag Wachtwoord bij registratie" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81 msgid "Automatically connect the existing account upon registration" msgstr "Verbind het bestaande account automatisch bij registratie" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85 #: nextend-facebook-connect/admin/templates/providers.php:39 #: nextend-facebook-connect/admin/templates/settings/general.php:48 #: nextend-facebook-connect/admin/templates/settings/general.php:212 #: nextend-facebook-connect/admin/templates/settings/general.php:227 #: nextend-facebook-connect/admin/templates/settings/general.php:245 #: nextend-facebook-connect/includes/provider-admin.php:217 msgid "Disabled" msgstr "Uitgeschakeld" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88 msgid "Automatic, based on email address" msgstr "Automatisch, op basis van e-mailadres" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93 msgid "Disable login for the selected roles" msgstr "Login voor de geselecteerde rollen uitschakelen" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113 msgid "Default roles for user who registered with this provider" msgstr "" "Standaardrollen voor gebruiker die zich bij deze provider heeft geregistreerd" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:99 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:118 #: nextend-facebook-connect/admin/templates/settings/comment.php:39 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105 #: nextend-facebook-connect/admin/templates/settings/userpro.php:51 #: nextend-facebook-connect/admin/templates/settings/userpro.php:102 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180 #: nextend-facebook-connect/widget.php:42 msgid "Default" msgstr "Standaard" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50 #: nextend-facebook-connect/includes/userData.php:188 msgid "Register" msgstr "Registreren" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58 msgid "Login" msgstr "Inloggen" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66 msgid "Link" msgstr "Koppel" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84 msgid "Store in meta key" msgstr "Bewaren in metasleutel" #: nextend-facebook-connect/admin/templates-provider/usage.php:9 msgid "Shortcode" msgstr "Shortcode" #: nextend-facebook-connect/admin/templates-provider/usage.php:12 msgid "Important!" msgstr "Belangrijk!" #: nextend-facebook-connect/admin/templates-provider/usage.php:13 msgid "The shortcodes are only rendered for users who haven't logged in yet!" msgstr "" "De shortcodes worden alleen weergegeven voor gebruikers die nog niet " "ingelogd zijn!" #: nextend-facebook-connect/admin/templates-provider/usage.php:14 msgid "See the full list of shortcode parameters." msgstr "Zie de volledige lijst met shortcode-parameters." #: nextend-facebook-connect/admin/templates-provider/usage.php:31 msgid "Simple link" msgstr "Eenvoudige link" #: nextend-facebook-connect/admin/templates-provider/usage.php:34 msgid "Click here to login or register" msgstr "Klik hier om in te loggen of te registreren" #: nextend-facebook-connect/admin/templates-provider/usage.php:39 msgid "Image button" msgstr "Knop afbeelding" #: nextend-facebook-connect/admin/templates-provider/usage.php:42 msgid "Image url" msgstr "URL afbeelding" #: nextend-facebook-connect/admin/templates/debug.php:7 #: nextend-facebook-connect/admin/templates/header.php:20 msgid "Debug" msgstr "Debug" #: nextend-facebook-connect/admin/templates/debug.php:41 msgid "Test network connection with providers" msgstr "Test de netwerkverbinding met providers" #: nextend-facebook-connect/admin/templates/debug.php:48 msgid "You don't have cURL support, please enable it in php.ini!" msgstr "Je hebt geen cURL-ondersteuning, schakel dit in in php.ini!" #: nextend-facebook-connect/admin/templates/debug.php:58 #, php-format msgid "Test %1$s connection" msgstr "Test %1$s connectie" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2 msgid "Fix Oauth Redirect URIs" msgstr "Fix Oauth Omleidings-URI's" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13 msgid "Every Oauth Redirect URI seems fine" msgstr "Elke Oauth Omleidings-URI lijkt in orde" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32 msgid "Got it" msgstr "Oké" #: nextend-facebook-connect/admin/templates/global-settings.php:28 #: nextend-facebook-connect/admin/templates/menu.php:8 msgid "Global Settings" msgstr "Algemene Instellingen" #: nextend-facebook-connect/admin/templates/global-settings.php:31 msgid "General" msgstr "Algemeen" #: nextend-facebook-connect/admin/templates/global-settings.php:33 msgid "Privacy" msgstr "Privacy" #: nextend-facebook-connect/admin/templates/global-settings.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form.php:9 #: nextend-facebook-connect/admin/templates/settings/userpro.php:18 msgid "Login Form" msgstr "Loginformulier" #: nextend-facebook-connect/admin/templates/global-settings.php:39 msgid "Comment" msgstr "Reactie" #: nextend-facebook-connect/admin/templates/header.php:14 msgid "Docs" msgstr "Documentatie" #: nextend-facebook-connect/admin/templates/header.php:17 msgid "Support" msgstr "Ondersteuning" #: nextend-facebook-connect/admin/templates/header.php:23 #: nextend-facebook-connect/admin/templates/menu.php:12 msgid "Pro Addon" msgstr "Pro-uitbreiding" #: nextend-facebook-connect/admin/templates/menu.php:6 msgid "Providers" msgstr "Providers" #: nextend-facebook-connect/admin/templates/pro-addon.php:13 msgid "Error" msgstr "Fout" #: nextend-facebook-connect/admin/templates/pro-addon.php:14 msgid "" "You don’t have sufficient permissions to install and activate plugins. " "Please contact your site’s administrator!" msgstr "" "Je hebt niet voldoende rechten om plugins te installeren en te activeren. " "Neem contact op met de sitebeheerder!" #: nextend-facebook-connect/admin/templates/pro-addon.php:22 #: nextend-facebook-connect/admin/templates/pro-addon.php:32 #: nextend-facebook-connect/admin/templates/pro.php:34 msgid "Activate Pro Addon" msgstr "Activeren Pro-uitbreiding" #: nextend-facebook-connect/admin/templates/pro-addon.php:23 msgid "" "Pro Addon is installed but not activated. To be able to use the Pro " "features, you need to activate it." msgstr "" "Pro-uitbreiding is geïnstalleerd maar niet geactiveerd. Om de Pro-functies " "te kunnen gebruiken, moet je deze activeren." #: nextend-facebook-connect/admin/templates/pro-addon.php:37 #: nextend-facebook-connect/admin/templates/pro-addon.php:142 msgid "Deactivate Pro Addon" msgstr "Deactiveren Pro-uitbreiding" #: nextend-facebook-connect/admin/templates/pro-addon.php:48 #: nextend-facebook-connect/admin/templates/pro.php:43 msgid "Pro Addon is not installed" msgstr "Pro-uitbreiding is niet geïnstalleerd" #: nextend-facebook-connect/admin/templates/pro-addon.php:50 msgid "" "To access the Pro features, you need to install and activate the Pro Addon." msgstr "" "Om toegang te krijgen tot de Pro-functies moet je de Pro-uitbreiding " "installeren en activeren." #: nextend-facebook-connect/admin/templates/pro-addon.php:59 #, php-format msgid "Install %s now" msgstr "Installeer %s nu" #: nextend-facebook-connect/admin/templates/pro-addon.php:60 #: nextend-facebook-connect/admin/templates/pro.php:47 msgid "Install Pro Addon" msgstr "Installeer Pro-uitbreiding" #: nextend-facebook-connect/admin/templates/pro-addon.php:94 msgid "Activating..." msgstr "Activeren..." #: nextend-facebook-connect/admin/templates/pro-addon.php:118 msgid "Not compatible!" msgstr "Niet compatibel!" #: nextend-facebook-connect/admin/templates/pro-addon.php:119 #, php-format msgid "" "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or " "newer." msgstr "" "%1$s en %2$s zijn niet compatibel. Gelieve %2$s bij te werken naar versie " "%3$s of nieuwer." #: nextend-facebook-connect/admin/templates/pro-addon.php:123 msgid "Update Pro Addon" msgstr "Update Pro-uitbreiding" #: nextend-facebook-connect/admin/templates/pro-addon.php:133 msgid "Pro Addon is installed and activated" msgstr "Pro-uitbreiding is geïnstalleerd en geactiveerd" #: nextend-facebook-connect/admin/templates/pro-addon.php:135 msgid "" "You installed and activated the Pro Addon. If you don’t want to use it " "anymore, you can deactivate using the button below." msgstr "" "Je hebt de Pro-uitbreiding geïnstalleerd en geactiveerd. Als je deze niet " "meer wilt gebruiken, kun je deze uitschakelen met de onderstaande knop." #: nextend-facebook-connect/admin/templates/pro.php:8 msgid "Get Pro Addon to unlock more features" msgstr "Koop Pro-uitbreiding om meer functies te ontgrendelen" #: nextend-facebook-connect/admin/templates/pro.php:9 #, php-format msgid "" "The features below are available in %s Pro Addon. Get it today and tweak the " "awesome settings." msgstr "" "De onderstaande functies zijn beschikbaar in %s Pro-uitbreiding. Koop deze " "vandaag nog en pas deze geweldige instellingen aan." #: nextend-facebook-connect/admin/templates/pro.php:10 msgid "" "If you already have a license, you can Authorize your Pro Addon. Otherwise " "you can purchase it using the button below." msgstr "" "Als je al een licentie hebt, kunt je je Pro-uitbreiding autoriseren. Anders " "kun je deze kopen met onderstaande knop." #: nextend-facebook-connect/admin/templates/pro.php:14 msgid "Buy Pro Addon" msgstr "Koop Pro-uitbreiding" #: nextend-facebook-connect/admin/templates/pro.php:16 msgid "Authorize Pro Addon" msgstr "Machtigen Pro-uitbreiding" #: nextend-facebook-connect/admin/templates/pro.php:25 msgid "Pro Addon is not activated" msgstr "Pro-uitbreiding is niet geactiveerd" #: nextend-facebook-connect/admin/templates/pro.php:26 #: nextend-facebook-connect/admin/templates/pro.php:44 msgid "" "To be able to use the Pro features, you need to install and activate the " "Nextend Social Connect Pro Addon." msgstr "" "Om de Pro-functies te kunnen gebruiken, moet je de Nextend Social Connect " "Pro-uitbreiding installeren en activeren." #: nextend-facebook-connect/admin/templates/providers.php:30 msgid "Not Available" msgstr "Niet Beschikbaar" #: nextend-facebook-connect/admin/templates/providers.php:33 msgid "Not Configured" msgstr "Niet Geconfigureerd" #: nextend-facebook-connect/admin/templates/providers.php:36 msgid "Not Verified" msgstr "Niet Geverifieerd" #: nextend-facebook-connect/admin/templates/providers.php:42 #: nextend-facebook-connect/admin/templates/settings/general.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:215 #: nextend-facebook-connect/admin/templates/settings/general.php:230 #: nextend-facebook-connect/admin/templates/settings/general.php:248 #: nextend-facebook-connect/includes/provider-admin.php:220 #: nextend-facebook-connect/providers/google/admin/settings.php:53 #: nextend-social-login-pro/providers/paypal/admin/settings.php:51 msgid "Enabled" msgstr "Ingeschakeld" #: nextend-facebook-connect/admin/templates/providers.php:54 msgid "Upgrade Now" msgstr "Nu Bijwerken" #: nextend-facebook-connect/admin/templates/providers.php:69 #: nextend-facebook-connect/includes/provider-admin.php:204 msgid "Verify Settings" msgstr "Instellingen Controleren" #: nextend-facebook-connect/admin/templates/providers.php:77 #: nextend-facebook-connect/includes/provider-admin.php:249 msgid "Enable" msgstr "Inschakelen" #: nextend-facebook-connect/admin/templates/providers.php:89 #: nextend-facebook-connect/includes/provider-admin.php:257 msgid "Disable" msgstr "Uitschakelen" #: nextend-facebook-connect/admin/templates/providers.php:114 msgid "Stay Updated" msgstr "Blijf op de Hoogte" #: nextend-facebook-connect/admin/templates/providers.php:115 msgid "" "Receive info on the latest plugin updates and social provider related " "changes." msgstr "" "Ontvang informatie over de laatste plugin-updates en wijzigingen bij social " "providers." #: nextend-facebook-connect/admin/templates/providers.php:116 msgid "Enter your email address" msgstr "Vul je e-mailadres in" #: nextend-facebook-connect/admin/templates/providers.php:120 msgid "Subscribe" msgstr "Inschrijven" #: nextend-facebook-connect/admin/templates/providers.php:136 msgid "Saving..." msgstr "Opslaan…" #: nextend-facebook-connect/admin/templates/providers.php:137 msgid "Saving failed" msgstr "Opslaan mislukt" #: nextend-facebook-connect/admin/templates/providers.php:138 msgid "Order Saved" msgstr "Bestelling Opgeslagen" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "Successfully subscribed!" msgstr "Succesvol ingeschreven!" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "" "We'll be bringing you all the latest news and updates about Social Login - " "right to your inbox." msgstr "" "We brengen je het laatste nieuws en updates over Social Login - direct in je " "inbox." #: nextend-facebook-connect/admin/templates/providers.php:214 msgid "The entered email address is invalid!" msgstr "Het ingevoerde e-mailadres is ongeldig!" #: nextend-facebook-connect/admin/templates/review.php:14 msgid "Rate your experience!" msgstr "Beoordeel je ervaring!" #: nextend-facebook-connect/admin/templates/review.php:15 msgid "Hated it" msgstr "Haatte het" #: nextend-facebook-connect/admin/templates/review.php:16 msgid "Disliked it" msgstr "Niet zo leuk" #: nextend-facebook-connect/admin/templates/review.php:17 msgid "It was ok" msgstr "Het was oké" #: nextend-facebook-connect/admin/templates/review.php:18 msgid "Liked it" msgstr "Vond het leuk" #: nextend-facebook-connect/admin/templates/review.php:19 msgid "Loved it" msgstr "Vond het geweldig" #: nextend-facebook-connect/admin/templates/review.php:31 msgid "Please Leave a Review" msgstr "Laat alsjeblieft een recensie achter" #: nextend-facebook-connect/admin/templates/review.php:32 msgid "" "If you are happy with Nextend Social Login and can take a minute " "please leave us a review. It will be a tremendous help for us!" msgstr "" "Als je tevreden bent met Nextend Social Login en je hebt een minuutje " "de tijd, laat dan een beoordeling achter. Je helpt ons daar enorm mee!" #: nextend-facebook-connect/admin/templates/review.php:34 msgid "Ok, you deserve it" msgstr "Ok, je verdient het" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96 msgid "Register form" msgstr "Registratieformulier" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23 msgid "No Connect button" msgstr "Geen Verbindingsknop" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26 msgid "Connect button before register" msgstr "Verbindingsknop voor registratie" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:221 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:226 msgid "Action:" msgstr "Actie:" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31 msgid "Connect button before account details" msgstr "Verbindingsknop voor account details" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36 msgid "Connect button after register" msgstr "Verbindingsknop na registratie" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44 msgid "Register button style" msgstr "Registreerknop-stijl" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:105 #: nextend-facebook-connect/admin/templates/settings/comment.php:45 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111 #: nextend-facebook-connect/admin/templates/settings/userpro.php:57 #: nextend-facebook-connect/admin/templates/settings/userpro.php:108 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30 #: nextend-facebook-connect/widget.php:47 msgid "Icon" msgstr "Icoon" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:64 msgid "Sidebar Login form" msgstr "Sidebar Login formulier" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:69 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:85 #: nextend-facebook-connect/admin/templates/settings/login-form.php:17 #: nextend-facebook-connect/admin/templates/settings/login-form.php:30 #: nextend-facebook-connect/admin/templates/settings/login-form.php:47 #: nextend-facebook-connect/admin/templates/settings/userpro.php:26 #: nextend-facebook-connect/admin/templates/settings/userpro.php:39 msgid "Hide login buttons" msgstr "Inlogknoppen verbergen" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:72 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88 #: nextend-facebook-connect/admin/templates/settings/login-form.php:14 #: nextend-facebook-connect/admin/templates/settings/login-form.php:27 #: nextend-facebook-connect/admin/templates/settings/login-form.php:44 #: nextend-facebook-connect/admin/templates/settings/userpro.php:23 #: nextend-facebook-connect/admin/templates/settings/userpro.php:36 #: nextend-facebook-connect/widget.php:76 msgid "Show login buttons" msgstr "Inlogknoppen tonen" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:73 msgid "" "Some themes that use BuddyPress, display the social buttons twice in the " "same login form. This option can disable the one for: " "bp_sidebar_login_form action. " msgstr "" "Sommige thema's die gebruik maken van BuddyPress, tonen de social knoppen " "twee keer in hetzelfde inlogformulier. Deze optie kan die voor: " "bp_sidebar_login_form action uitschakelen. " #: nextend-facebook-connect/admin/templates/settings/buddypress.php:80 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38 msgid "Login form" msgstr "Login formulier" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:93 msgid "Login button style" msgstr "Inlogknop stijl" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:48 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52 #: nextend-facebook-connect/admin/templates/settings/userpro.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58 msgid "Login layout" msgstr "Inlog-layout" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:110 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124 #: nextend-facebook-connect/admin/templates/settings/userpro.php:70 #: nextend-facebook-connect/admin/templates/settings/userpro.php:121 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186 msgid "Below" msgstr "Onderstaand" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:130 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130 #: nextend-facebook-connect/admin/templates/settings/userpro.php:76 #: nextend-facebook-connect/admin/templates/settings/userpro.php:127 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192 msgid "Below with separator" msgstr "Hieronder met separator" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:136 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136 #: nextend-facebook-connect/admin/templates/settings/userpro.php:82 #: nextend-facebook-connect/admin/templates/settings/userpro.php:133 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198 msgid "Above" msgstr "Boven" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:142 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142 #: nextend-facebook-connect/admin/templates/settings/userpro.php:88 #: nextend-facebook-connect/admin/templates/settings/userpro.php:139 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204 msgid "Above with separator" msgstr "Hierboven met separator" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:150 #: nextend-facebook-connect/admin/templates/settings/comment.php:53 #: nextend-facebook-connect/admin/templates/settings/login-form.php:53 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:151 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:166 #: nextend-facebook-connect/admin/templates/settings/userpro.php:147 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:233 msgid "Button alignment" msgstr "Knoppen uitlijning" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155 #: nextend-facebook-connect/admin/templates/settings/comment.php:58 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140 #: nextend-facebook-connect/admin/templates/settings/login-form.php:58 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:156 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171 #: nextend-facebook-connect/admin/templates/settings/userpro.php:152 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:238 #: nextend-facebook-connect/widget.php:57 msgid "Left" msgstr "Links" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:158 #: nextend-facebook-connect/admin/templates/settings/comment.php:61 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:143 #: nextend-facebook-connect/admin/templates/settings/login-form.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:159 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:174 #: nextend-facebook-connect/admin/templates/settings/userpro.php:155 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:241 #: nextend-facebook-connect/widget.php:62 msgid "Center" msgstr "Midden" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162 #: nextend-facebook-connect/admin/templates/settings/comment.php:65 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147 #: nextend-facebook-connect/admin/templates/settings/login-form.php:65 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:163 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178 #: nextend-facebook-connect/admin/templates/settings/userpro.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:245 #: nextend-facebook-connect/widget.php:67 msgid "Right" msgstr "Rechts" #: nextend-facebook-connect/admin/templates/settings/comment.php:18 msgid "Login button" msgstr "Loginknop" #: nextend-facebook-connect/admin/templates/settings/comment.php:23 #: nextend-facebook-connect/admin/templates/settings/privacy.php:42 msgid "Show" msgstr "Toon" #: nextend-facebook-connect/admin/templates/settings/comment.php:26 msgid "Hide" msgstr "Verberg" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 #, php-format msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work" msgstr "" "Je moet de ' %1$s > %2$s > %3$s ' aanzetten om deze functie te laten werken" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Discussion" msgstr "Discussie" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Users must be registered and logged in to comment" msgstr "" "Je moet geregistreerd en ingelogd zijn om een reactie te kunnen plaatsen" #: nextend-facebook-connect/admin/templates/settings/comment.php:33 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18 msgid "Button style" msgstr "Knop stijl" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29 msgid "Target window" msgstr "Doelvenster" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34 msgid "Prefer popup" msgstr "Bij voorkeur popup" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37 msgid "Prefer new tab" msgstr "Bij voorkeur nieuw tabblad" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40 msgid "Prefer same window" msgstr "Bij voorkeur hetzelfde venster" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46 msgid "Registration notification sent to" msgstr "Registratie notificatie verzonden naar" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:242 msgid "WordPress default" msgstr "WordPress standaard" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54 msgid "Nobody" msgstr "Niemand" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60 msgid "Admin" msgstr "Beheerder" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63 msgid "User and Admin" msgstr "Gebruiker en Beheerder" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69 msgid "Unlink" msgstr "Ontkoppelen" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75 msgid "Allow Social account unlink" msgstr "Sta ontkoppelen Social account toe" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81 msgid "Disable Admin bar for roles" msgstr "Adminbalk voor rollen uitschakelen" #: nextend-facebook-connect/admin/templates/settings/general.php:43 msgid "Debug mode" msgstr "Debugmodus" #: nextend-facebook-connect/admin/templates/settings/general.php:56 msgid "Page for register flow" msgstr "Pagina voor registreerproces" #: nextend-facebook-connect/admin/templates/settings/general.php:66 #: nextend-facebook-connect/admin/templates/settings/general.php:91 msgid "None" msgstr "Geen" #: nextend-facebook-connect/admin/templates/settings/general.php:74 msgid "" "This setting is used when you request additional data from the users (such " "as email address) and to display the Terms and conditions." msgstr "" "Deze instelling wordt gebruikt wanneer je gebruikers om aanvullende gegevens " "vraagt (zoals het e-mailadres) en om de algemene voorwaarden weer te geven." #: nextend-facebook-connect/admin/templates/settings/general.php:75 #, php-format msgid "" "%2$s First create a new page and insert the following shortcode: %1$s then " "select this page above" msgstr "" "%2$s Maak eerst een nieuwe pagina aan en voeg de volgende shortcode toe: " "%1$s en selecteer dan deze pagina hierboven" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #: nextend-facebook-connect/admin/templates/settings/general.php:101 msgid "Usage:" msgstr "Gebruik:" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 #, php-format msgid "" "%1$s You won't be able to reach the selected page unless a social login/" "registration happens." msgstr "" "%1$s Je kunt de geselecteerde pagina niet bereiken tenzij er een social " "login/registratie plaatsvindt." #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 msgid "Important:" msgstr "Let op:" #: nextend-facebook-connect/admin/templates/settings/general.php:80 msgid "OAuth redirect uri proxy page" msgstr "OAuth omleidings-uri proxy pagina" #: nextend-facebook-connect/admin/templates/settings/general.php:100 msgid "" "You can use this setting when wp-login.php page is not available to handle " "the OAuth flow." msgstr "" "Je kunt deze instelling gebruiken wanneer de wp-login.php pagina niet " "beschikbaar is om het OAuth-proces te verwerken." #: nextend-facebook-connect/admin/templates/settings/general.php:101 #, php-format msgid "%1$s First create a new page then select this page above." msgstr "" "%1$s Maak eerst een nieuwe pagina aan en selecteer dan deze pagina hierboven." #: nextend-facebook-connect/admin/templates/settings/general.php:108 msgid "Prevent external redirect overrides" msgstr "Voorkom overschrijvingen bij externe omleidingen" #: nextend-facebook-connect/admin/templates/settings/general.php:114 msgid "Disable external redirects" msgstr "Externe omleidingen uitschakelen" #: nextend-facebook-connect/admin/templates/settings/general.php:121 msgid "Default redirect url" msgstr "Standaard omleidings-URL" #: nextend-facebook-connect/admin/templates/settings/general.php:134 #: nextend-facebook-connect/admin/templates/settings/general.php:172 msgid "for Login" msgstr "voor Inloggen" #: nextend-facebook-connect/admin/templates/settings/general.php:149 #: nextend-facebook-connect/admin/templates/settings/general.php:187 msgid "for Register" msgstr "voor Registreren" #: nextend-facebook-connect/admin/templates/settings/general.php:159 msgid "Fixed redirect url" msgstr "Vaste omleidings-URL" #: nextend-facebook-connect/admin/templates/settings/general.php:196 msgid "Blacklisted redirects" msgstr "Zwarte lijst van omleidingen" #: nextend-facebook-connect/admin/templates/settings/general.php:202 msgid "If you want to blacklist redirect url params. One pattern per line." msgstr "" "Als je omleidings-URL parameters op de zwarte lijst wilt zetten. Eén patroon " "per regel." #: nextend-facebook-connect/admin/templates/settings/general.php:207 msgid "Support login restrictions" msgstr "Ondersteunende inlog-beperkingen" #: nextend-facebook-connect/admin/templates/settings/general.php:217 #, php-format msgid "Please visit to our %1$s to check what plugins are supported!" msgstr "Bezoek onze %1$s om te controleren welke plugins worden ondersteund!" #: nextend-facebook-connect/admin/templates/settings/general.php:222 msgid "Display avatars in \"All media items\"" msgstr "Weergeven profielfoto's in \"Alle media-items\"" #: nextend-facebook-connect/admin/templates/settings/general.php:232 msgid "" "Enabling this option can speed up loading images in Media Library - Grid " "view!" msgstr "" "Door deze optie in te schakelen kan het laden van afbeeldingen in de " "mediabibliotheek worden versneld - Rasterweergave!" #: nextend-facebook-connect/admin/templates/settings/general.php:237 msgid "Membership" msgstr "Lidmaatschap" #: nextend-facebook-connect/admin/templates/settings/general.php:250 msgid "Allow registration with Social login." msgstr "Registratie toestaan met Social login." #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33 #: nextend-facebook-connect/admin/templates/settings/userpro.php:45 msgid "Login form button style" msgstr "Aanmeldingsformulier knopstijl" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66 msgid "Below and floating" msgstr "Onder en zwevend" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:85 msgid "Embedded Login form button style" msgstr "Geïntegreerd Loginformulier knopstijl" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:104 msgid "Embedded Login layout" msgstr "Geïntegreerd Login layout" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:135 msgid "Embedded login form button alignment" msgstr "Geïntegreerd inlogformulier knopuitlijning" #: nextend-facebook-connect/admin/templates/settings/login-form.php:22 #: nextend-facebook-connect/includes/userData.php:137 msgid "Registration Form" msgstr "Registratieformulier" #: nextend-facebook-connect/admin/templates/settings/login-form.php:36 msgid "Embedded login form" msgstr "Geïntegreerd inlogformulier" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69 msgid "Sign Up form" msgstr "Aanmeldingsformulier" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74 msgid "No Connect button in Sign Up form" msgstr "Geen Verbindingsknop in het aanmeldingsformulier" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167 msgid "Connect button on" msgstr "Verbindingsknop op" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84 msgid "Sign Up form button style" msgstr "Aanmeldingsformulier knopstijl" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103 msgid "Sign Up layout" msgstr "Aanmelding layout" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212 msgid "Account details" msgstr "Accountgegevens" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155 msgid "No link buttons" msgstr "Geen koppelknoppen" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158 msgid "Link buttons after account details" msgstr "Koppelknoppen na accountgegevens" #: nextend-facebook-connect/admin/templates/settings/privacy.php:6 #: nextend-facebook-connect/nextend-social-login.php:143 msgid "" "By clicking Register, you accept our Privacy Policy" msgstr "" "Door op Registreren te klikken, accepteer je onze Privacybeleid" #: nextend-facebook-connect/admin/templates/settings/privacy.php:59 msgid "Store" msgstr "Winkel" #: nextend-facebook-connect/admin/templates/settings/privacy.php:65 msgid "First and last name" msgstr "Voor- en achternaam" #: nextend-facebook-connect/admin/templates/settings/privacy.php:68 msgid "When not enabled, username will be randomly generated." msgstr "" "Indien niet ingeschakeld, wordt de gebruikersnaam willekeurig gegenereerd." #: nextend-facebook-connect/admin/templates/settings/privacy.php:78 #: nextend-social-login-pro/class-provider-extension.php:322 msgid "Email" msgstr "E-mail" #: nextend-facebook-connect/admin/templates/settings/privacy.php:81 msgid "When not enabled, email will be empty." msgstr "Indien niet ingeschakeld, zal e-mail leeg zijn." #: nextend-facebook-connect/admin/templates/settings/privacy.php:91 #: nextend-facebook-connect/includes/avatar.php:59 msgid "Avatar" msgstr "Profielfoto" #: nextend-facebook-connect/admin/templates/settings/privacy.php:102 #: nextend-facebook-connect/includes/provider.php:1066 msgid "Access token" msgstr "Toegangstoken" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23 msgid "No Connect button in Login form" msgstr "Geen Verbindingsknop in inlogformulier" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89 msgid "No Connect button in Register form" msgstr "Geen Verbindingsknop in het Registratieformulier" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99 #: nextend-facebook-connect/admin/templates/settings/userpro.php:96 msgid "Register form button style" msgstr "Registratieformulier knopstijl" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118 #: nextend-facebook-connect/admin/templates/settings/userpro.php:115 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116 msgid "Register layout" msgstr "Registratie layout" #: nextend-facebook-connect/admin/templates/settings/userpro.php:31 msgid "Register Form" msgstr "Registratieformulier" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43 msgid "No Connect button in login form" msgstr "Geen Verbindingsknop in inlogformulier" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101 msgid "No Connect button in register form" msgstr "Geen Verbindingsknop in registratieformulier" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154 msgid "Billing form" msgstr "Factureringsformulier" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159 msgid "No Connect button in billing form" msgstr "Geen Verbindingsknop in het factureringsformulier" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174 msgid "Billing layout" msgstr "Facturering layout" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217 msgid "No Connect buttons in account details form" msgstr "Geen Verbindingsknop in het accountgegevens formulier" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:220 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:225 msgid "Link buttons on" msgstr "Koppelknoppen op" #: nextend-facebook-connect/admin/templates/test-connection.php:42 #, php-format msgid "Network connection successful: %1$s" msgstr "Netwerkverbinding succesvol: %1$s" #: nextend-facebook-connect/admin/templates/test-connection.php:49 #, php-format msgid "Network connection failed: %1$s" msgstr "Netwerkverbinding mislukt: %1$s" #: nextend-facebook-connect/admin/templates/test-connection.php:52 msgid "" "Please contact with your hosting provider to resolve the network issue " "between your server and the provider." msgstr "" "Neem contact op met je hostingprovider om het netwerkprobleem tussen je " "server en de provider op te lossen." #: nextend-facebook-connect/includes/avatar.php:60 msgid "Manage Avatar" msgstr "Profielfoto beheren" #: nextend-facebook-connect/includes/avatar.php:61 #, php-format msgid "Avatar (%s)" msgid_plural "Avatar (%s)" msgstr[0] "Profielfoto (%s)" msgstr[1] "Profielfoto (%s)" #: nextend-facebook-connect/includes/compat-wp-login.php:49 #, php-format msgid "%1$s ‹ %2$s — WordPress" msgstr "%1$s ‹ %2$s — WordPress" #: nextend-facebook-connect/includes/compat-wp-login.php:115 msgid "https://wordpress.org/" msgstr "https://nl.wordpress.org/" #: nextend-facebook-connect/includes/compat-wp-login.php:116 msgid "Powered by WordPress" msgstr "Mogelijk gemaakt door WordPress" #: nextend-facebook-connect/includes/compat-wp-login.php:260 #, php-format msgctxt "site" msgid "← Back to %s" msgstr "← Terug naar %s" #: nextend-facebook-connect/includes/provider-admin.php:198 msgid "Your configuration needs to be verified" msgstr "Je configuratie moet worden geverifieerd" #: nextend-facebook-connect/includes/provider-admin.php:199 msgid "" "Before you can start letting your users register with your app it needs to " "be tested. This test makes sure that no users will have troubles with the " "login and registration process.
If you see error message in the popup " "check the copied ID and secret or the app itself. Otherwise your settings " "are fine." msgstr "" "Voordat je kunt beginnen met het registreren van je gebruikers bij je app " "moet het eerst getest worden. Deze test zorgt ervoor dat geen enkele " "gebruiker problemen heeft met het inlog- en registratieproces.
Als je " "een foutmelding ziet in de popup, controleer dan de gekopieerde ID en het " "geheim of de app zelf. Anders zijn je instellingen in orde." #: nextend-facebook-connect/includes/provider-admin.php:205 msgid "Please save your changes to verify settings." msgstr "Sla je wijzigingen op om de instellingen te controleren." #: nextend-facebook-connect/includes/provider-admin.php:213 msgid "Works Fine" msgstr "Werkt Prima" #: nextend-facebook-connect/includes/provider-admin.php:227 #, php-format msgid "" "This provider is currently disabled, which means that users can’t register " "or login via their %s account." msgstr "" "Deze provider is momenteel uitgeschakeld, wat betekent dat gebruikers zich " "niet kunnen registreren of inloggen via hun %s account." #: nextend-facebook-connect/includes/provider-admin.php:230 #, php-format msgid "" "This provider works fine, but you can test it again. If you don’t want to " "let users register or login with %s anymore you can disable it." msgstr "" "Deze provider werkt prima, maar je kunt deze opnieuw testen. Als je " "gebruikers niet meer wilt laten registreren of inloggen met %s kun je deze " "uitschakelen." #: nextend-facebook-connect/includes/provider-admin.php:233 #, php-format msgid "" "This provider is currently enabled, which means that users can register or " "login via their %s account." msgstr "" "Deze provider is momenteel ingeschakeld, wat betekent dat gebruikers zich " "kunnen registreren of inloggen via hun %s account." #: nextend-facebook-connect/includes/provider-admin.php:241 msgid "Verify Settings Again" msgstr "Controleer Instellingen Nogmaals" #: nextend-facebook-connect/includes/provider-admin.php:242 msgid "Please save your changes before verifying settings." msgstr "Sla je wijzigingen op voordat je de instellingen controleert." #: nextend-facebook-connect/includes/provider.php:350 #: nextend-facebook-connect/includes/provider.php:693 #: nextend-facebook-connect/includes/provider.php:698 msgid "Authentication successful" msgstr "Authenticatie geslaagd" #: nextend-facebook-connect/includes/provider.php:635 #: nextend-facebook-connect/includes/user.php:127 msgid "Authentication error" msgstr "Authenticatiefout" #: nextend-facebook-connect/includes/provider.php:650 msgid "Unlink successful." msgstr "Ontkoppeling succesvol." #: nextend-facebook-connect/includes/provider.php:652 msgid "Unlink is not allowed!" msgstr "Ontkoppelen is niet toegestaan!" #: nextend-facebook-connect/includes/provider.php:856 #: nextend-facebook-connect/includes/provider.php:863 msgid "The test was successful" msgstr "De test was succesvol" #: nextend-facebook-connect/includes/provider.php:909 msgid "Authentication failed" msgstr "Authenticatie mislukt" #: nextend-facebook-connect/includes/provider.php:1058 msgid "Identifier" msgstr "Identificatie" #: nextend-facebook-connect/includes/provider.php:1074 msgid "Profile picture" msgstr "Profielfoto" #: nextend-facebook-connect/includes/user.php:74 #, php-format msgid "" "Your %1$s account is successfully linked with your account. Now you can sign " "in with %2$s easily." msgstr "" "Je %1$s account is succesvol gekoppeld aan je account. Je kunt je nu " "gemakkelijk aanmelden met %2$s." #: nextend-facebook-connect/includes/user.php:77 #, php-format msgid "" "You have already linked a(n) %s account. Please unlink the current and then " "you can link other %s account." msgstr "" "Je hebt al een %s account gekoppeld. Ontkoppel de huidige en dan kun je " "andere %s account koppelen." #: nextend-facebook-connect/includes/user.php:82 #, php-format msgid "This %s account is already linked to other user." msgstr "Dit %s account is al gekoppeld aan een andere gebruiker." #: nextend-facebook-connect/includes/user.php:122 msgid "User registration is currently not allowed." msgstr "Gebruikersregistratie is momenteel niet toegestaan." #: nextend-facebook-connect/includes/userData.php:137 msgid "Register For This Site!" msgstr "Registreer Voor Deze Site!" #: nextend-facebook-connect/nextend-facebook-connect.php:34 #, php-format msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE." msgstr "%1$s vereist PHP versie %2$s+, plugin is momenteel NIET ACTIEF." #: nextend-facebook-connect/nextend-facebook-connect.php:41 #, php-format msgid "" "%1$s requires WordPress version %2$s+. Because you are using an earlier " "version, the plugin is currently NOT ACTIVE." msgstr "" "%1$s vereist WordPress versie %2$s+. Omdat je een eerdere versie gebruikt, " "is de plugin momenteel NIET ACTIEF." #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 #, php-format msgid "Please update %1$s to version %2$s or newer." msgstr "Gelieve %1$s bij te werken naar versie %2$s of nieuwer." #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 msgid "Update now!" msgstr "Update nu!" #: nextend-facebook-connect/nextend-social-login.php:735 #: nextend-facebook-connect/nextend-social-login.php:1111 msgid "Social Login" msgstr "Social Login" #: nextend-facebook-connect/nextend-social-login.php:1092 msgid "Social Accounts" msgstr "Social Accounts" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8 #, fuzzy, php-format #| msgid "Navigate to %s" msgid "Navigate to %s" msgstr "Navigeer naar %s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/google/admin/getting-started.php:17 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9 #, php-format msgid "Log in with your %s credentials if you are not logged in" msgstr "Log in met je %s inloggegevens als je niet ingelogd bent" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10 #, fuzzy, php-format #| msgid "Click on the App with App ID: %s" msgid "Click on the App with App ID: %s" msgstr "Klik op de App met App ID: %s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11 #, fuzzy #| msgid "In the left sidebar, click on \"Facebook Login/Settings\"" msgid "In the left sidebar, click on \"Facebook Login > Settings\"" msgstr "Klik in de linkerbalk op \"Facebook Login/Instellingen\"" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: %s" msgid "" "Add the following URL to the \"Valid OAuth redirect URIs\" field: " "%s" msgstr "" "Voeg de volgende URL toe aan het veld \"Geldige OAuth omleidings-URI's\": " "%s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on \"Save Changes\"" msgstr "Klik op \"Wijzigingen Opslaan\"" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11 #: nextend-facebook-connect/providers/facebook/admin/settings.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22 #, php-format msgid "" "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in " "order to allow login with %1$s." msgstr "" "%1$s staat alleen HTTPS OAuth Omleidingen toe. Je moet je site verplaatsen " "naar HTTPS om in te kunnen loggen met %1$s." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13 #: nextend-facebook-connect/providers/facebook/admin/settings.php:15 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24 msgid "How to get SSL for my WordPress site?" msgstr "Hoe krijg ik SSL voor mijn WordPress site?" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19 #: nextend-facebook-connect/providers/google/admin/getting-started.php:11 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create a %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" "Om je bezoekers in te laten loggen met hun %1$s account, moet je eerst een " "%1$s App aanmaken. De volgende gids helpt je door het %1$s App " "creatieproces. Nadat je je %1$s App heeft aangemaakt, ga je naar " "\"Instellingen\" en configureer je de gegeven \"%2$s\" en \"%3$s\" volgens " "je %1$s App." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21 #: nextend-facebook-connect/providers/google/admin/getting-started.php:13 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:32 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:13 #, php-format msgctxt "App creation" msgid "Create %s" msgstr "Maak %s" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24 #: nextend-facebook-connect/providers/google/admin/getting-started.php:16 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:16 #, php-format msgid "Navigate to %s" msgstr "Navigeer naar %s" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26 #, fuzzy #| msgid "Click on the \"Add a New App\" button" msgid "Click on the \"Add a New App\" button" msgstr "Klik op de knop \"Een nieuwe app toevoegen\"" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27 msgid "" "If you see the message \"Become a Facebook Developer\", then you need " "to click on the green \"Register Now\" button, fill the form then " "finally verify your account." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28 #, fuzzy, php-format #| msgid "" #| "Fill \"Display Name\" and \"Contact Email\". The specified \"Display Name" #| "\" will appear on your %s!" msgid "" "Fill \"Display Name\" and \"Contact Email\". The specified " "\"Display Name\" will appear on your %s!" msgstr "" "Vul \"Schermnaam\" en \"E-mail\" in. De opgegeven \"Schermnaam\" zal " "verschijnen op je %s!" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29 #, fuzzy #| msgid "Click on the \"Create an App\" button on the top right corner." msgid "" "Click the \"Create App ID\" button and complete the Security Check." msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35 #, php-format msgid "" "On the left side, click on the “%1$s” menu point, then click “" "%2$s”." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31 #, fuzzy #| msgid "Enter your domain name to the App Domains" msgid "Enter your domain name to the \"App Domains\" field." msgstr "Voer je domeinnaam in bij de App Domeinen" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32 #, fuzzy, php-format #| msgid "Enter your domain name to the App Domains" msgid "" "Enter your domain name to the \"App Domains\" field, probably: %s" msgstr "Voer je domeinnaam in bij de App Domeinen" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33 #, fuzzy #| msgid "" #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and " #| "easily accessible privacy policy that explains what data you are " #| "collecting and how you will use that data." msgid "" "Fill up the \"Privacy Policy URL\" field. Provide a publicly " "available and easily accessible privacy policy that explains what data you " "are collecting and how you will use that data." msgstr "" "Vul de \"Privacy Policy URL\" in. Zorg voor een openbaar beschikbaar en " "gemakkelijk toegankelijk privacybeleid waarin wordt uitgelegd welke gegevens " "je verzamelt en hoe je deze gegevens zult gebruiken." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34 msgid "" "Select a “Category”, an “App Icon” and pick the “Business " "Use” option that describes your the App best, then press \"Save " "Changes\"." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on “Save Changes”" msgstr "Klik op \"Wijzigingen Opslaan\"" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38 #, fuzzy #| msgid "" #| "Your application is currently private ( Status: In Development ), which " #| "means that only you can log in with it. In the top bar click on the \"OFF" #| "\" switcher and select a category for your App." msgid "" "Your application is currently private, which means that only you can log in " "with it. In the top bar click on the switch next to the \"In development\" label, then click the \"Switch Mode\" button." msgstr "" "Je applicatie is momenteel privé (Status: In Ontwikkeling), wat betekent dat " "alleen jij ermee kunt inloggen. Klik in de bovenste balk op de \"OFF\" " "schakelaar en selecteer een categorie voor je App." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39 #, fuzzy, php-format #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "Finally on the left side, click on the \"%1$s\" menu point, then " "click \"%2$s\" again. Here you can see your \"APP ID\" and you " "can see your \"App secret\" if you click on the \"Show\" button. " "These will be needed in plugin’s settings." msgstr "" "Hier kun je je \"APP ID\" zien en je \"App geheim\" als je op de knop " "\"Weergeven\" klikt. Deze zullen nodig zijn in de instellingen van de plugin." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43 #: nextend-facebook-connect/providers/google/admin/getting-started.php:40 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:30 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:29 #, php-format msgid "I am done setting up my %s" msgstr "Ik ben klaar met het instellen van mijn %s" #: nextend-facebook-connect/providers/facebook/admin/settings.php:35 #: nextend-social-login-pro/providers/vk/admin/settings.php:27 msgid "App ID" msgstr "App ID" #: nextend-facebook-connect/providers/facebook/admin/settings.php:36 #: nextend-facebook-connect/providers/facebook/admin/settings.php:48 #: nextend-facebook-connect/providers/google/admin/settings.php:28 #: nextend-facebook-connect/providers/google/admin/settings.php:41 #: nextend-facebook-connect/providers/twitter/admin/settings.php:28 #: nextend-social-login-pro/providers/amazon/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:39 #: nextend-social-login-pro/providers/apple/admin/settings.php:79 #: nextend-social-login-pro/providers/apple/admin/settings.php:90 #: nextend-social-login-pro/providers/apple/admin/settings.php:100 #: nextend-social-login-pro/providers/apple/admin/settings.php:108 #: nextend-social-login-pro/providers/disqus/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39 #: nextend-social-login-pro/providers/paypal/admin/settings.php:27 #: nextend-social-login-pro/providers/paypal/admin/settings.php:39 #: nextend-social-login-pro/providers/vk/admin/settings.php:28 #: nextend-social-login-pro/providers/vk/admin/settings.php:40 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39 msgid "Required" msgstr "Verplicht" #: nextend-facebook-connect/providers/facebook/admin/settings.php:41 #: nextend-facebook-connect/providers/google/admin/settings.php:35 #: nextend-facebook-connect/providers/twitter/admin/settings.php:33 #: nextend-social-login-pro/providers/amazon/admin/settings.php:33 #: nextend-social-login-pro/providers/apple/admin/settings.php:34 #: nextend-social-login-pro/providers/apple/admin/settings.php:85 #: nextend-social-login-pro/providers/disqus/admin/settings.php:33 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33 #: nextend-social-login-pro/providers/paypal/admin/settings.php:33 #: nextend-social-login-pro/providers/vk/admin/settings.php:34 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33 #, php-format msgid "" "If you are not sure what is your %1$s, please head over to Getting Started" msgstr "" "Als je niet zeker weet wat je %1$s is, ga dan naar Aan de " "slag" #: nextend-facebook-connect/providers/facebook/admin/settings.php:47 msgid "App Secret" msgstr "App Geheim" #: nextend-facebook-connect/providers/facebook/facebook.php:79 msgid "Continue with Facebook" msgstr "Doorgaan met Facebook" #: nextend-facebook-connect/providers/facebook/facebook.php:80 msgid "Link account with Facebook" msgstr "Koppel met Facebook" #: nextend-facebook-connect/providers/facebook/facebook.php:81 msgid "Unlink account from Facebook" msgstr "Ontkoppel van Facebook" #: nextend-facebook-connect/providers/facebook/facebook.php:135 #: nextend-facebook-connect/providers/google/google.php:158 #: nextend-facebook-connect/providers/twitter/twitter.php:95 #: nextend-social-login-pro/providers/amazon/amazon.php:65 #: nextend-social-login-pro/providers/apple/apple.php:71 #: nextend-social-login-pro/providers/apple/apple.php:77 #: nextend-social-login-pro/providers/disqus/disqus.php:112 #: nextend-social-login-pro/providers/linkedin/linkedin.php:63 #: nextend-social-login-pro/providers/paypal/paypal.php:90 #: nextend-social-login-pro/providers/vk/vk.php:61 #: nextend-social-login-pro/providers/wordpress/wordpress.php:99 #: nextend-social-login-pro/providers/yahoo/yahoo.php:90 #, php-format msgid "" "The %1$s entered did not appear to be a valid. Please enter a valid %2$s." msgstr "Het ingevoerde %1$s bleek niet geldig te zijn. Vul een geldig %2$s in." #: nextend-facebook-connect/providers/facebook/facebook.php:253 #: nextend-social-login-pro/providers/paypal/paypal.php:170 #, php-format msgid "Required scope: %1$s" msgstr "Vereiste scope: %1$s" #: nextend-facebook-connect/providers/google/admin/buttons.php:2 msgid "Button skin" msgstr "Knop skin" #: nextend-facebook-connect/providers/google/admin/buttons.php:8 msgid "Uniform" msgstr "Uniform" #: nextend-facebook-connect/providers/google/admin/buttons.php:14 msgid "Light" msgstr "Licht" #: nextend-facebook-connect/providers/google/admin/buttons.php:20 msgid "Dark" msgstr "Donker" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Click on the \"Credentials\" in the left hand menu" msgid "Click on the \"Credentials\" in the left hand menu" msgstr "Klik op de \"Inloggegevens\" in het linker menu" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11 #, php-format msgid "" "Under the \"OAuth 2.0 Client IDs\" section find your Client ID: " "%s" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/google/admin/getting-started.php:34 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorised redirect URIs\" field: %s" msgid "" "Add the following URL to the \"Authorised redirect URIs\" field: " "%s" msgstr "" "Voeg de volgende URL toe aan het veld \"Geautoriseerde omleidings-URIs\": " "%s" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14 #, fuzzy #| msgid "Click on \"Save\"" msgid "Click on \"Save\"" msgstr "Klik op \"Opslaan\"" #: nextend-facebook-connect/providers/google/admin/getting-started.php:18 #, fuzzy #| msgid "" #| "If you don't have a project yet, you'll need to create one. You can do " #| "this by clicking on the blue \"Create project\" button on the right " #| "side! ( If you already have a project, click on the name of your project " #| "in the dashboard instead, which will bring up a modal and click New " #| "Project. )" msgid "" "If you don't have a project yet, you'll need to create one. You can do this " "by clicking on the blue \"Create\" button on the right side! ( If " "you already have a project, click on the name of your project in the " "dashboard instead, which will bring up a modal and click \"New Project\". )" msgstr "" "Als je nog geen project hebt, moet je er een maken. Je kunt dit doen door op " "de blauwe knop \"Maak project\" aan de rechterkant te klikken! (Als je al " "een project hebt, klik dan op de naam van je project in plaats daarvan in " "het dashboard, die een modal zal weergeven en klik op Nieuw Project. )" #: nextend-facebook-connect/providers/google/admin/getting-started.php:19 #, fuzzy #| msgid "Name your project and then click on the Create button again" msgid "Name your project and then click on the \"Create\" button again" msgstr "Geef je project een naam en klik dan opnieuw op de knop Aanmaken" #: nextend-facebook-connect/providers/google/admin/getting-started.php:20 msgid "Once you have a project, you'll end up in the dashboard." msgstr "Als je eenmaal een project hebt, kom je in het dashboard terecht." #: nextend-facebook-connect/providers/google/admin/getting-started.php:21 msgid "Click the “OAuth consent screen” button on the left hand side." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:22 msgid "" "Choose a User Type according to your needs. If you want to enable the " "social login with Google for any users with a Google account, then pick the " "External option!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:24 #, php-format msgid "" "Note: We don't use sensitive or restricted scopes either. But if you " "will use this App for other purposes too, then you may need to go through an " "%1$s!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:27 #, fuzzy #| msgid "" #| "Enter a name for your App under the \"Application name\" field, which " #| "will appear as the name of the app asking for consent." msgid "" "Enter a name for your App to the \"Application name\" field, which " "will appear as the name of the app asking for consent." msgstr "" "Voer een naam in voor je App in het veld \"Toepassingsnaam\", die zal " "verschijnen als de naam van de app die om toestemming vraagt." #: nextend-facebook-connect/providers/google/admin/getting-started.php:28 #, fuzzy, php-format #| msgid "" #| "Fill the \"Authorized domains\" field with your domain name probably: " #| "%s without subdomains!" msgid "" "Fill the \"Authorized domains\" field with your domain name probably: " "%s without subdomains!" msgstr "" "Vul het veld \"Geautoriseerde domeinen\" in met je domeinnaam " "waarschijnlijk: %s zonder subdomeinen!" #: nextend-facebook-connect/providers/google/admin/getting-started.php:29 #, fuzzy #| msgid "Other settings" msgid "Save your settings!" msgstr "Overige instellingen" #: nextend-facebook-connect/providers/google/admin/getting-started.php:30 #, php-format msgid "" "On the left side, click on the \"%1$s\" menu point, then click the " "\"%2$s\" button in the top bar." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:31 msgid "Choose the \"OAuth client ID\" option." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:32 #, fuzzy #| msgid "" #| "Click on the link \"registering an application\" under the Applications " #| "tab." msgid "Select the \"Web application\" under Application type." msgstr "" "Klik op de link \"aanvraag registreren\" onder het tabblad \"Applicaties\"." #: nextend-facebook-connect/providers/google/admin/getting-started.php:33 msgid "Enter \"Name\" that for your OAuth client ID." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:35 #, fuzzy #| msgid "Click on the Create button" msgid "Click on the \"Create\" button" msgstr "Klik op de knop Aanmaken" #: nextend-facebook-connect/providers/google/admin/getting-started.php:36 #, fuzzy #| msgid "" #| "A modal should pop up with your credentials. If that doesn't happen, go " #| "to the Credentials in the left hand menu and select your app by clicking " #| "on its name and you'll be able to copy-paste the Client ID and Client " #| "Secret from there." msgid "" "A modal should pop up with your credentials. If that doesn't happen, go to " "the Credentials in the left hand menu and select your app by clicking on its " "name and you'll be able to copy-paste the \"Client ID\" and " "\"Client Secret\" from there." msgstr "" "Een modal moet opduiken met je inloggegevens. Als dat niet gebeurt, ga dan " "naar de Inloggegevens in het linkermenu en selecteer je app door op de naam " "te klikken en je kunt van daaruit de Client ID en Client Geheim kopiëren en " "plakken." #: nextend-facebook-connect/providers/google/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:26 #: nextend-social-login-pro/providers/apple/admin/settings.php:28 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26 #: nextend-social-login-pro/providers/paypal/admin/settings.php:26 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26 msgid "Client ID" msgstr "Client ID" #: nextend-facebook-connect/providers/google/admin/settings.php:40 #: nextend-social-login-pro/providers/amazon/admin/settings.php:38 #: nextend-social-login-pro/providers/apple/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38 msgid "Client Secret" msgstr "Client Geheim" #: nextend-facebook-connect/providers/google/admin/settings.php:47 msgid "Select account on each login" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:56 msgid "" "Disable, when you don't want to see the account select prompt on each login." msgstr "" #: nextend-facebook-connect/providers/google/google.php:106 msgid "Continue with Google" msgstr "Doorgaan met Google" #: nextend-facebook-connect/providers/google/google.php:107 msgid "Link account with Google" msgstr "Koppel met Google" #: nextend-facebook-connect/providers/google/google.php:108 msgid "Unlink account from Google" msgstr "Ontkoppel van Google" #: nextend-facebook-connect/providers/google/google.php:285 #, php-format msgid "Required API: %1$s" msgstr "Vereiste API: %1$s" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Find your App and click on the Details button" msgid "Find your App and click on the \"Details\" button" msgstr "Vind jew app en klik op de knop Details" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11 #, fuzzy #| msgid "" #| "The Edit button can be found on the App details tab. Click on it and " #| "select Edit details" msgid "" "The Edit button can be found on the App details tab. Click on it and " "select \"Edit details\"" msgstr "" "De knop Bewerken is te vinden op het tabblad App details. Klik erop en " "selecteer Bewerken details" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "Add the following URL to the \"Callback URLs\" field: %s" msgid "Add the following URL to the \"Callback URLs\" field: %s" msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": %s" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in yet" msgstr "Log in met je %s inloggegevens als je nog niet ingelogd bent" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18 msgid "" "If you don't have a developer account yet, please apply one by filling all " "the required details! This is required for the next steps!" msgstr "" "Als je nog geen ontwikkelaarsaccount heeft, kun je je aanmelden door alle " "benodigde gegevens in te vullen! Dit is vereist voor de volgende stappen!" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Once your developer account is complete, navigate back to %s if you " #| "aren't already there!" msgid "" "Once your developer account is complete, navigate back to %s if you " "aren't already there!" msgstr "" "Zodra je ontwikkelaarsaccount is voltooid, navigeer terug naar %s als je er " "nog niet bent!" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "" #| "Fill the App name, Application description fields. Then enter your site's " #| "URL to the Website URL field: %s" msgid "" "Fill the App name, Application description fields. Then enter " "your site's URL to the Website URL field: %s" msgstr "" "Vul de App-naam, Applicatiebeschrijving velden in. Voer vervolgens de URL " "van je site in bij het Website URL veld: %s" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21 #, fuzzy #| msgid "Tick the checkbox next to Enable Sign in with Twitter!" msgid "Tick the checkbox next to Enable Sign in with Twitter!" msgstr "Vink het selectievakje aan naast Inschakelen Inloggen met Twitter!" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23 #, fuzzy #| msgid "" #| "Fill the “Terms of Service URL\", \"Privacy policy URL\" and \"Tell us " #| "how this app will be used” fields!" msgid "" "Fill the “Terms of Service URL\", \"Privacy policy URL\" and " "\"Tell us how this app will be used\" fields!" msgstr "" "Vul de velden \"Servicevoorwaarden-URL\", \"Privacy policy URL\" en \"Vertel " "ons hoe deze app zal worden gebruikt\" in!" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24 #, fuzzy #| msgid "Click the Create button." msgid "Click the Create button." msgstr "Klik op de knop Maken." #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25 #, fuzzy #| msgid "Read the Developer Terms and click the Create button again!" msgid "Read the Developer Terms and click the Create button again!" msgstr "Lees de Developer Terms en klik opnieuw op de knop Maken!" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26 #, fuzzy #| msgid "Select the Permissions tab and click Edit." msgid "Select the Permissions tab and click Edit." msgstr "Selecteer het tabblad Machtigingen en klik op Bewerken." #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27 #, fuzzy #| msgid "" #| "Tick the Request email address from users under the Additional " #| "permissions section and click Save." msgid "" "Tick the Request email address from users under the Additional " "permissions section and click Save." msgstr "" "Vink het e-mailadres voor het aanvragen van gebruikers aan in het de sectie " "Extra rechten en klik op Opslaan." #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28 #, fuzzy #| msgid "" #| "Go to the Keys and tokens tab and find the API key and API secret key" msgid "" "Go to the Keys and tokens tab and find the API key and API " "secret key" msgstr "" "Ga naar het tabblad Sleutels en tokens en zoek de API-sleutel en geheime API-" "sleutel" #: nextend-facebook-connect/providers/twitter/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:26 msgid "API Key" msgstr "API Sleutel" #: nextend-facebook-connect/providers/twitter/admin/settings.php:38 msgid "API secret key" msgstr "API geheime sleutel" #: nextend-facebook-connect/providers/twitter/admin/settings.php:57 msgid "Profile image size" msgstr "Profielafbeelding grootte" #: nextend-facebook-connect/providers/twitter/admin/settings.php:71 msgid "Original" msgstr "Origineel" #: nextend-facebook-connect/providers/twitter/twitter.php:69 msgid "Continue with Twitter" msgstr "Doorgaan met Twitter" #: nextend-facebook-connect/providers/twitter/twitter.php:70 msgid "Link account with Twitter" msgstr "Koppel met Twitter" #: nextend-facebook-connect/providers/twitter/twitter.php:71 msgid "Unlink account from Twitter" msgstr "Ontkoppel van Twitter" #: nextend-facebook-connect/widget.php:10 #, php-format msgid "%s Buttons" msgstr "%s Knoppen" #: nextend-facebook-connect/widget.php:30 msgid "Title:" msgstr "Titel:" #: nextend-facebook-connect/widget.php:38 msgid "Button style:" msgstr "Knop stijl:" #: nextend-facebook-connect/widget.php:53 msgid "Button align:" msgstr "Knop uitlijning:" #: nextend-facebook-connect/widget.php:85 msgid "Show link buttons" msgstr "Toon koppel-knoppen" #: nextend-facebook-connect/widget.php:94 msgid "Show unlink buttons" msgstr "Toon ontkoppel-knoppen" #: nextend-social-login-pro/class-provider-extension.php:117 msgid "Social login is not allowed with this role!" msgstr "Social login is niet toegestaan bij deze rol!" #: nextend-social-login-pro/class-provider-extension.php:213 #: nextend-social-login-pro/class-provider-extension.php:216 #: nextend-social-login-pro/class-provider-extension.php:222 #: nextend-social-login-pro/class-provider-extension.php:229 #: nextend-social-login-pro/class-provider-extension.php:300 #: nextend-social-login-pro/class-provider-extension.php:303 #: nextend-social-login-pro/class-provider-extension.php:307 msgid "ERROR" msgstr "FOUT" #: nextend-social-login-pro/class-provider-extension.php:213 msgid "Please enter a username." msgstr "Vul gebruikersnaam in." #: nextend-social-login-pro/class-provider-extension.php:216 msgid "" "This username is invalid because it uses illegal characters. Please enter a " "valid username." msgstr "" "Deze gebruikersnaam is ongeldig omdat hij illegale tekens gebruikt. Vul een " "geldige gebruikersnaam in." #: nextend-social-login-pro/class-provider-extension.php:222 msgid "This username is already registered. Please choose another one." msgstr "Deze gebruikersnaam is al in gebruik. Kies een andere." #: nextend-social-login-pro/class-provider-extension.php:229 msgid "Sorry, that username is not allowed." msgstr "Sorry, deze gebruikersnaam is niet toegestaan." #: nextend-social-login-pro/class-provider-extension.php:247 msgid "Username" msgstr "Gebruikersnaam" #: nextend-social-login-pro/class-provider-extension.php:300 msgid "Please enter an email address." msgstr "Gelieve een emailadres op te geven." #: nextend-social-login-pro/class-provider-extension.php:303 msgid "The email address isn’t correct." msgstr "Het e-mailadres is niet juist." #: nextend-social-login-pro/class-provider-extension.php:307 msgid "This email is already registered, please choose another one." msgstr "Dit e-mailadres is al geregistreerd. Kies een andere." #: nextend-social-login-pro/class-provider-extension.php:327 msgid "Registration confirmation will be emailed to you." msgstr "Een bevestiging van de registratie wordt naar je gemaild." #: nextend-social-login-pro/class-provider-extension.php:378 msgid "ERROR: Please enter a password." msgstr "FOUT: Voer een wachtwoord in." #: nextend-social-login-pro/class-provider-extension.php:384 msgid "ERROR: Passwords may not contain the character \"\\\"." msgstr "" "FOUT: Wachtwoorden mogen niet het teken \"\\\" bevatten." #: nextend-social-login-pro/class-provider-extension.php:390 msgid "" "ERROR: Please enter the same password in both password " "fields." msgstr "" "FOUT: Voer hetzelfde wachtwoord in beide wachtwoordvelden " "in." #: nextend-social-login-pro/class-provider-extension.php:407 msgid "Password" msgstr "Wachtwoord" #: nextend-social-login-pro/class-provider-extension.php:417 msgid "Strength indicator" msgstr "Sterkte-indicator" #: nextend-social-login-pro/class-provider-extension.php:422 msgid "Confirm use of weak password" msgstr "Bevestig het gebruik van een zwak wachtwoord" #: nextend-social-login-pro/class-provider-extension.php:428 msgid "Confirm password" msgstr "Bevestig wachtwoord" #: nextend-social-login-pro/class-provider-extension.php:440 #, php-format msgid "" "This email is already registered, please login in to your account to link " "with %1$s." msgstr "" "Dit e-mailadres is al geregistreerd, log in op je account om te koppelen met " "%1$s." #: nextend-social-login-pro/nextend-social-login-pro.php:54 #, php-format msgid "Please install and activate %1$s to use the %2$s" msgstr "Installeer en activeer %1$s om de %2$s te gebruiken" #: nextend-social-login-pro/nextend-social-login-pro.php:68 msgid "Network Activate" msgstr "Netwerk Activeren" #: nextend-social-login-pro/nextend-social-login-pro.php:80 msgid "Install now!" msgstr "Installeer nu!" #: nextend-social-login-pro/provider-extensions/facebook.php:74 #, php-format msgid "" "The Facebook Sync data needs an approved %1$s and your App must use the " "latest %2$s version!" msgstr "" "De Facebook Sync data heeft een goedgekeurd %1$s nodig en je App moet de " "laatste %2$s versie gebruiken!" #: nextend-social-login-pro/provider-extensions/google.php:176 #, php-format msgid "" "Most of these information can only be retrieved, when the field is marked as " "Public on the user's %s page!" msgstr "" "De meeste van deze informatie kan alleen worden opgehaald, wanneer het veld " "als openbaar is gemarkeerd op de %s pagina van de gebruiker!" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26 #, php-format msgid "Visit %s" msgstr "Bezoek %s" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30 #, fuzzy #| msgid "" #| "On the right side, under \"Manage\", hover over the gear icon and select " #| "\"Web Settings\" option." msgid "" "On the right side, under \"Manage\", hover over the gear icon and " "select \"Web Settings\" option." msgstr "" "Aan de rechterkant, onder \"Beheer\", ga met de muis over het " "tandwielpictogram en selecteer de optie \"Webinstellingen\"." #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31 #, fuzzy #| msgid "Click \"Edit\"." msgid "Click \"Edit\"." msgstr "Klik op \"Bewerken\"." #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Allowed Return URLs\" field %s " msgid "" "Add the following URL to the \"Allowed Return URLs\" field %s " msgstr "" "Voeg de volgende URL toe aan het veld \"Toegestane Return URLs\" %s " #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" "Om je bezoekers in te laten loggen met hun %1$s account, moet je eerst een " "%1$s App aanmaken. De volgende gids helpt je door het %1$s App " "creatieproces. Nadat je je %1$s App heeft aangemaakt, ga je naar " "\"Instellingen\" en configureer je de gegevens \"%2$s\" en \"%3$s\" volgens " "je %1$s App." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in." msgstr "Log in met je %s inloggegevens als je niet ingelogd bent." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27 #, fuzzy #| msgid "" #| "If you don't have a Security Profile yet, you'll need to create one. You " #| "can do this by clicking on the orange \"Create a New Security Profile\" " #| "button on the left side." msgid "" "If you don't have a Security Profile yet, you'll need to create one. You can " "do this by clicking on the orange \"Create a New Security Profile\" " "button on the left side." msgstr "" "Als je nog geen Beveiligingsprofiel hebt, moet je er een aanmaken. Je kunt " "dit doen door op de oranje knop \"Maak een Nieuw Veiligheidsprofiel\" aan de " "linkerkant te klikken." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28 #, fuzzy #| msgid "" #| "Fill \"Security Profile Name\", \"Security Profile Description\" and " #| "\"Consent Privacy Notice URL\"." msgid "" "Fill \"Security Profile Name\", \"Security Profile Description" "\" and \"Consent Privacy Notice URL\"." msgstr "" "Vul \"Naam Beveiligingsprofiel\", \"Beschrijving Beveiligingsprofiel\" en " "\"Toestemming privacyverklaring URL\" in." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29 #, fuzzy #| msgid "Once you filled all the required fields, click \"Save\"." msgid "Once you filled all the required fields, click \"Save\"." msgstr "Zodra je alle verplichte velden hebt ingevuld, klik je op \"Opslaan\"." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32 #, fuzzy, php-format #| msgid "" #| "Fill \"Allowed Origins\" with the url of your homepage, probably: %s" msgid "" "Fill \"Allowed Origins\" with the url of your homepage, probably: " "%s" msgstr "" "Vul \"Toegestane Oorsprong\" in met de url van je homepage, waarschijnlijk: " "%s" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28 #, fuzzy #| msgid "When all fields are filled, click \"Save\"." msgid "When all fields are filled, click \"Save\"." msgstr "Wanneer alle velden zijn ingevuld, klik je op \"Opslaan\"." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:35 #, fuzzy #| msgid "" #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of " #| "the page, under the \"Web Settings\" tab." msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" at the " "middle of the page, under the \"Web Settings\" tab." msgstr "" "Vind de benodigde \"Client ID\" en \"Client Geheim\" in het midden van de " "pagina, onder het tabblad \"Web Instelling\"." #: nextend-social-login-pro/providers/amazon/amazon.php:39 msgid "Continue with Amazon" msgstr "Doorgaan met Amazonië" #: nextend-social-login-pro/providers/amazon/amazon.php:40 msgid "Link account with Amazon" msgstr "Koppel met Amazon" #: nextend-social-login-pro/providers/amazon/amazon.php:41 msgid "Unlink account from Amazon" msgstr "Ontkoppel van Amazon" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21 #, fuzzy #| msgid "Click on the name of your %s App." msgid "Click on the name of your service." msgstr "Klik op de naam van je %s App." #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22 msgid "" "Click the \"Configure\" button next to \"Sign In with Apple\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53 #, php-format msgid "Click the blue + icon next to %1$s heading." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79 #, fuzzy, php-format #| msgid "" #| "Fill the \"Callback Domain\" field with your domain name probably: %s " msgid "" "Fill the \"Domains and Subdomains\" field with your domain name " "probably: %s" msgstr "" "Vul het \"Callback Domein\" veld in met je domeinnaam waarschijnlijk: %s " #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:80 #, fuzzy, php-format #| msgid "Add the following URL to the \"Live Return URL\" field %s " msgid "Add the following URL to the \"Return URLs\" field: %s" msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld %s " #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:26 msgid "" "Finally press \"Next\" then \"Done\" and finally click on the " "\"Continue\" and the \"Save\" button!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30 #, fuzzy, php-format #| msgid "" #| "To allow your visitors to log in with their %1$s account, first you must " #| "create an %1$s App. The following guide will help you through the %1$s " #| "App creation process. After you have created your %1$s App, head over to " #| "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to " #| "your %1$s App." msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\", \"%3$s\", \"%4$s\" and \"%5$s" "\" according to your %1$s App." msgstr "" "Om je bezoekers in te laten loggen met hun %1$s account, moet je eerst een " "%1$s App aanmaken. De volgende gids helpt je door het %1$s App " "creatieproces. Nadat je je %1$s App heeft aangemaakt, ga je naar " "\"Instellingen\" en configureer je de gegevens \"%2$s\" en \"%3$s\" volgens " "je %1$s App." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35 msgid "" "Make sure you have an active subscription for the Apple Developer " "Program!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36 msgid "" "Make sure your site have SSL, since Apple only allows HTTPS urls!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:41 msgid "1.) Create the associated App:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the %2$s " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:44 #, fuzzy #| msgid "Enter a \"Description\" for your app!" msgid "Enter a \"Description\"" msgstr "Vul een \"Beschrijving\" in voor je app!" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45 #, php-format msgid "" "At the \"Bundle ID\" field select the \"Explicit\" option and " "enter your domain name in reverse-domain name style, with the name of the " "app at its end: %s.nslapp" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46 msgid "" "Under the \"Capabilities\" section, tick the \"Sign In with Apple\" option." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47 msgid "" "Scroll up and press the \"Continue\" button and then the " "\"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50 msgid "2.) Create the Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:52 #, php-format msgid "On the left hand side, click on the \"%s\" tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:54 #, fuzzy #| msgid "Enter the name of your App to the \"App name\" field." msgid "Enter a name in the Key Name field." msgstr "Voer de naam van je App in het veld \"App name\" in." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55 msgid "" "Tick the \"Sign In with Apple\" option, then click on \"Configure\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56 msgid "" "If you have multiple Apps, then at the \"Choose a Primary App ID\" " "field select the App what you just created, then click \"Save" "\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57 msgid "" "Finally press the \"Continue\" button and then the \"Register" "\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58 msgid "Don't download the key yet!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61 msgid "3.) Create the Service:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:63 #, php-format msgid "" "Go to the \"%1$s\" section, what you will find within the \"%2$s\" " "tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the \"%2$s\" " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:65 #, fuzzy #| msgid "Enter a \"Description\" for your app!" msgid "Enter a \"Description\"." msgstr "Vul een \"Beschrijving\" in voor je app!" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66 #, php-format msgid "" "At the \"Identifier\" field enter your domain name in reverse-domain " "name style, with the name of the client at its end: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69 msgid "Note: This will also be used as Service Identifier later!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72 msgid "" "Press the \"Continue\" button and then the \"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:73 #, php-format msgid "In the \"%1$s\" section, click the service you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76 msgid "" "Tick the \"Sign In with Apple\" option and click the \"Configure\" button next to it." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:78 msgid "" "If you have multiple Apps, then at the \"Primary App ID\" field select the " "App what you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:83 msgid "" "Save the configuration by clicking on the \"Save\" button and " "pressing \"Done\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:84 msgid "" "Finally press the \"Continue\" button and then the \"Save\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:87 msgid "4.) Configure Nextend Social Login with your credentials:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:89 msgid "Go to Nextend Social Login > Providers > Apple > Settings tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:90 msgid "Private Key ID:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:92 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:110 #, fuzzy, php-format #| msgid "Navigate to %s" msgid "Navigate to: %s" msgstr "Navigeer naar %s" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:93 #, fuzzy #| msgid "Click on the name of your %s App." msgid "Click on the name of your Key." msgstr "Klik op de naam van je %s App." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:94 msgid "You will find your \"Private Key ID\" under \"Key ID\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:97 msgid "Private Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99 msgid "" "Click the \"Download\" button to download the key file. Once this " "file is downloaded, it will no longer be available, so make sure you keep " "this file safe! " msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:100 msgid "" "Open the downloaded file with a text editor, like Notepad, copy " "all of its contents and paste it into the \"Private Key" "\" field of Nextend Social Login." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:103 msgid "Team Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105 msgid "" "A 10 character long identifier, what you can find on the top-right " "corner, just under your name." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:108 msgid "Service Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111 #, php-format msgid "" "You will find it under the \"IDENTIFIER\" column. If you configured " "the service according to the suggestions, it will probably end to .nslclient " "e.g.: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:114 #, fuzzy #| msgid "Once you filled all the required fields, click \"Save\"." msgid "" "Once you filled up all the fields, click on the \"Generate Token\" " "button." msgstr "Zodra je alle verplichte velden hebt ingevuld, klik je op \"Opslaan\"." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115 msgid "Finally verify the settings and enable the provider!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:116 msgid "" "When you need to change your credentials for some reason, then you must " "delete the token, copy the new credentials and generate a new token!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:48 msgid "Delete credentials" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:78 msgid "Private Key ID" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:89 #, fuzzy #| msgid "Privacy" msgid "Private Key" msgstr "Privacy" #: nextend-social-login-pro/providers/apple/admin/settings.php:99 #, fuzzy #| msgid "Identifier" msgid "Team Identifier" msgstr "Identificatie" #: nextend-social-login-pro/providers/apple/admin/settings.php:107 #, fuzzy #| msgid "Identifier" msgid "Service Identifier" msgstr "Identificatie" #: nextend-social-login-pro/providers/apple/admin/settings.php:117 msgid "Generate Token" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:53 #, fuzzy #| msgid "Continue with Google" msgid "Continue with Apple" msgstr "Doorgaan met Google" #: nextend-social-login-pro/providers/apple/apple.php:54 #, fuzzy #| msgid "Link account with Google" msgid "Link account with Apple" msgstr "Koppel met Google" #: nextend-social-login-pro/providers/apple/apple.php:55 #, fuzzy #| msgid "Unlink account from Google" msgid "Unlink account from Apple" msgstr "Ontkoppel van Google" #: nextend-social-login-pro/providers/apple/apple.php:107 #: nextend-social-login-pro/providers/apple/apple.php:204 #: nextend-social-login-pro/providers/apple/apple.php:221 #, fuzzy, php-format #| msgid "Network connection failed: %1$s" msgid "Token generation failed: %1$s" msgstr "Netwerkverbinding mislukt: %1$s" #: nextend-social-login-pro/providers/apple/apple.php:107 msgid "Please check your credentials!" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:204 msgid "Private key format is not valid!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10 #, php-format msgid "Click on the name of your %s App." msgstr "Klik op de naam van je %s App." #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "" #| "Select the \"Settings\" tab and scroll down to the Authentication section!" msgid "" "Select the \"Settings\" tab and scroll down to the Authentication " "section!" msgstr "" "Selecteer het tabblad \"Instellingen\" en scroll naar beneden naar de sectie " "Authenticatie!" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23 #, fuzzy, php-format #| msgid "Add the following URL to the \"Callback URL\" field %s " msgid "Add the following URL to the \"Callback URL\" field %s " msgstr "Voeg de volgende URL toe aan het \"Callback URL\" veld %s " #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14 #, fuzzy #| msgid "Click on the \"Save Changes\" button." msgid "Click on the \"Save Changes\" button." msgstr "Klik op de knop \"Wijzigingen Opslaan\"." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17 #, fuzzy #| msgid "" #| "Click on the link \"registering an application\" under the Applications " #| "tab." msgid "" "Click on the \"Registering new application\" button under the " "Applications tab." msgstr "" "Klik op de link \"aanvraag registreren\" onder het tabblad \"Applicaties\"." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18 #, fuzzy #| msgid "Enter a \"Label\" and \"Description\" for your App." msgid "Enter a \"Label\" and \"Description\" for your App." msgstr "Voer een \"Label\" en \"Beschrijving\" in voor je App." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "Fill \"Website\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website\" with the url of your homepage, probably: %s" msgstr "" "Vul \"Website\" in met de url van je homepage, waarschijnlijk: %s" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20 #, fuzzy #| msgid "" #| "Complete the Human test and click the \"Register my application\" button." msgid "" "Complete the Human test and click the \"Register my application\" " "button." msgstr "" "Voltooi de Menselijke test en klik op de knop \"Registreer mijn aanvraag\"." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21 #, fuzzy, php-format #| msgid "Fill the \"Domains\" field with your domain name like: %s" msgid "Fill the \"Domains\" field with your domain name like: %s" msgstr "Vul het veld \"Domeinen\" in met je domeinnaam zoals: %s" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22 #, fuzzy #| msgid "" #| "Select \"Read only\" at Default Access under the Authentication section." msgid "" "Select \"Read only\" as Default Access under the Authentication " "section." msgstr "" "Selecteer \"Alleen lezen\" bij Standaard toegang onder de sectie " "Authenticatie." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24 #, fuzzy #| msgid "Click on the \"Save Changes\" button." msgid "Click on the \"Save Changes\" button!" msgstr "Klik op de knop \"Wijzigingen Opslaan\"." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25 #, fuzzy #| msgid "Navigate to the \"Details\" tab of your Application!" msgid "Navigate to the \"Details\" tab of your Application!" msgstr "Navigeer naar het tabblad \"Details\" van je Applicatie!" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Here you can see your \"API Key\" and \"API Secret:\". These will be " #| "needed in the plugin's settings." msgid "" "Here you can see your \"API Key\" and \"API Secret\". These " "will be needed in the plugin's settings." msgstr "" "Hier kun je je \"API Sleutel\" en \"API Geheim:\" zien. Deze zijn nodig in " "de instellingen van de plugin." #: nextend-social-login-pro/providers/disqus/admin/settings.php:38 msgid "API Secret" msgstr "API Geheim" #: nextend-social-login-pro/providers/disqus/disqus.php:86 msgid "Continue with Disqus" msgstr "Doorgaan met Disqus" #: nextend-social-login-pro/providers/disqus/disqus.php:87 msgid "Link account with Disqus" msgstr "Koppel met Disqus" #: nextend-social-login-pro/providers/disqus/disqus.php:88 msgid "Unlink account from Disqus" msgstr "Ontkoppel van Disqus" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10 msgid "Click on your App and go to the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11 #, fuzzy, php-format #| msgid "Add the following URL to the \"Redirect URLs\" field %s " msgid "Add the following URL to the \"Redirect URLs\" field: %s" msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" %s " #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "Hit update to save the changes" msgid "Click on \"Update\" to save the changes" msgstr "Klik op update om de wijzigingen op te slaan" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17 #, fuzzy #| msgid "Locate the \"Create app\" button and click on it." msgid "Locate the \"Create app\" button and click on it." msgstr "Zoek de knop \"App maken\" op en klik erop." #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18 msgid "Enter the name of your App to the \"App name\" field." msgstr "Voer de naam van je App in het veld \"App name\" in." #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19 #, php-format msgid "" "Find your company page in the \"Company\" field. If you don't have " "one yet, create new one at: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20 msgid "" "Enter your \"Privacy policy URL\" amd upload an \"App logo\"" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21 #, fuzzy #| msgid "" #| "Read and agree the \"API Terms of Use\" then click the \"Create App\" " #| "button!" msgid "" "Read and agree the \"API Terms of Use\" then click the \"Create " "App\" button!" msgstr "" "Lees en accordeer de \"API Gebruiksvoorwaarden\" en klik dan op de knop " "\"Maak App\"!" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22 #, fuzzy #| msgid "You will end up in the App setting area. Click on the Auth tab." msgid "" "You will end up in the App setting area. Click on the \"Auth\" tab." msgstr "" "Je komt dan in de sectie App instellingen terecht. Klik op het tabblad Auth." #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23 #, fuzzy, php-format #| msgid "" #| "Find \"OAuth 2.0 settings\" section and add the following URL to the " #| "\"Redirect URLs:\" field: %s" msgid "" "Find \"OAuth 2.0 settings\" section and add the following URL to the " "\"Redirect URLs\" field: %s" msgstr "" "Zoek de sectie \"OAuth 2.0-instellingen\" en voeg de volgende URL toe aan " "het veld \"Omleidings-URLs:\": %s" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25 #, fuzzy #| msgid "" #| "Find the necessary \"Client ID\" and \"Client Secret\" under the " #| "Application credentials section, on the Auth tab." msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" under " "the Application credentials section, on the Auth tab." msgstr "" "Zoek de benodigde \"Client ID\" en \"Client Geheim\" onder de sectie " "Applicatie inloggegevens, op het tabblad Auth." #: nextend-social-login-pro/providers/linkedin/linkedin.php:37 msgid "Continue with LinkedIn" msgstr "Doorgaan met LinkedIn" #: nextend-social-login-pro/providers/linkedin/linkedin.php:38 msgid "Link account with LinkedIn" msgstr "Koppel met LinkedIn" #: nextend-social-login-pro/providers/linkedin/linkedin.php:39 msgid "Unlink account from LinkedIn" msgstr "Ontkoppel van LinkedIn" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18 msgid "There is a Sandbox/Live switch. Make sure \"Live\" is selected!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11 #, fuzzy, php-format #| msgid "Click on the name of your %s App." msgid "Click on the name of your %s App, under the REST API apps section." msgstr "Klik op de naam van je %s App." #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "" #| "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" " #| "heading and click \"Show\"." msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading and click \"Show\"." msgstr "" "Scroll naar beneden naar \"LIVE APP INSTELLINGEN\", zoek in de rubriek " "\"Live Return URL\" en klik op \"Weergeven\"." #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "Add the following URL to the \"Live Return URL\" field %s " msgid "" "Add the following URL to the \"Live Return URL\" field: %s " msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld %s " #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14 msgid "Click on \"Save\"" msgstr "Klik op \"Opslaan\"" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15 #, php-format msgid "" "Editing Live Apps are only possible with a %s. So please make sure you own " "one!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19 #, fuzzy #| msgid "Click on the \"Create an App\" button on the top right corner." msgid "Click the \"Create App\" button under the REST API apps section." msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20 #, fuzzy #| msgid "Fill the \"App Name\" field and click \"Create App\" button." msgid "" "Fill the \"App Name\" field and click \"Create App\" button." msgstr "Vul het veld \"App Naam\" in en klik op de knop \"Maak App\"." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21 #, fuzzy #| msgid "" #| "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" " #| "heading and click \"Show\"." msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading then click \"Show\"." msgstr "" "Scroll naar beneden naar \"LIVE APP INSTELLINGEN\", zoek in de rubriek " "\"Live Return URL\" en klik op \"Weergeven\"." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23 #, fuzzy #| msgid "" #| "Scroll down to \"App feature options\" section and tick \"Log In with " #| "PayPal\"." msgid "" "Scroll down to \"App feature options\" section and tick \"Log In " "with PayPal\"." msgstr "" "Scroll naar beneden naar de sectie \"App functieopties\" en vink \"Aanmelden " "met PayPal\" aan." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24 #, fuzzy #| msgid "" #| "Click \"Advanced Options\" which can be found at the end of text after " #| "\"Connect with PayPal (formerly Log In with PayPal)\"." msgid "" "Click \"Advanced Options\" which can be found at the end of text " "after \"Connect with PayPal (formerly Log In with PayPal)\"." msgstr "" "Klik op \"Geavanceerde Opties\" die je kunt vinden aan het einde van de " "tekst na \"Verbinding maken met PayPal (voorheen ingelogd met PayPal)\"." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25 #, fuzzy #| msgid "Tick \"Full name\"." msgid "Tick \"Full name\"." msgstr "Vink \"Volledige naam\" aan." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "\"Email address\" now requires an App Review by PayPal. To get the email " #| "address as well, please submit your App for a review after your App " #| "configuration is finished. Once the App review is succesfull, you need to " #| "pick \"Email address\" here to retrieve the email of the user. Until then " #| "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab." msgid "" "\"Email address\" now requires an App Review by PayPal. To get the " "email address as well, please submit your App for a review after your " "App configuration is finished. Once the App review is successful, you need " "to pick \"Email address\" here to retrieve the email of the user. Until then " "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab." msgstr "" "\"E-mailadres\" vereist nu een App Review door PayPal. Om ook het e-" "mailadres te verkrijgen, dient je je App in voor een beoordeling nadat de " "configuratie van je App is voltooid. Zodra de App review succesvol is, moet " "je hier \"E-mailadres\" kiezen om de e-mail van de gebruiker op te halen. " "Zorg er tot dan voor dat de e-mailscope niet is \"Ingeschakeld\" in ons " "PayPal-instellingen-tabblad." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27 #, fuzzy #| msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"." msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"." msgstr "Vul \"Privacy policy URL\" en \"User agreement URL\" in." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29 #, fuzzy #| msgid "" #| "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary " #| "\"Client ID\" and \"Secret\"! ( Make sure you are in \"Live\" mode and " #| "not \"Sandbox\". )" msgid "" "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary " "\"Client ID\" and \"Secret\"! ( Make sure you are in " "\"Live\" mode and not \"Sandbox\". )" msgstr "" "Scroll naar de sectie \"LIVE API CREDENTIALS\" en zoek de nodige \"Client ID" "\" en \"Geheim\"! ( Zorg ervoor dat je in \"Live\" modus bent en niet in " "\"Sandbox\". )" #: nextend-social-login-pro/providers/paypal/admin/settings.php:38 msgid "Secret" msgstr "Geheim" #: nextend-social-login-pro/providers/paypal/admin/settings.php:45 msgid "Email scope" msgstr "E-mail scope" #: nextend-social-login-pro/providers/paypal/admin/settings.php:54 msgid "Disable, when you have no rights for email address." msgstr "Uitschakelen, wanneer je geen rechten hebt voor e-mailadres." #: nextend-social-login-pro/providers/paypal/paypal.php:64 msgid "Continue with PayPal" msgstr "Doorgaan met PayPal" #: nextend-social-login-pro/providers/paypal/paypal.php:65 msgid "Link account with PayPal" msgstr "Koppel met PayPal" #: nextend-social-login-pro/providers/paypal/paypal.php:66 msgid "Unlink account from PayPal" msgstr "Ontkoppel van PayPal" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Click on the Manage button at the App" msgid "Click on the \"Manage\" button next to the associated App." msgstr "Klik op de knop Beheer bij de App" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11 #, fuzzy #| msgid "Go to the Settings menu" msgid "Go to the \"Settings\" menu" msgstr "Ga naar het menu Instellingen" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized redirect URI:\" field: %s" msgid "" "Add the following URL to the \"Authorized redirect URI\" field: " "%s" msgstr "" "Voeg de volgende URL toe aan het veld \"Geautoriseerde omleidings-URI:\": " "%s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17 #, fuzzy #| msgid "Locate the \"Create app\" button and click on it." msgid "Locate the blue \"Create app\" button and click on it." msgstr "Zoek de knop \"App maken\" op en klik erop." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18 #, fuzzy #| msgid "Enter the title of your app and select \"Website\"." msgid "" "Enter the Title for your App and select \"Website\" as " "platform." msgstr "Voer de titel van je app in en selecteer \"Website\"." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Fill \"Site address\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website address\" with the url of your homepage, probably: " "%s" msgstr "" "Vul \"Siteadres\" in met de url van je homepage, waarschijnlijk: %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "Fill the \"Base domain\" field with your domain, probably: %s" msgid "" "Fill the \"Base domain\" field with your domain, probably: %s" msgstr "" "Vul het veld \"Basisdomein\" in met je domein, waarschijnlijk: %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21 #, fuzzy #| msgid "When all fields are filled, click \"Save\"." msgid "When all fields are filled, click the \"Upload app\" button." msgstr "Wanneer alle velden zijn ingevuld, klik je op \"Opslaan\"." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22 #, fuzzy #| msgid "Fill the form for your app and upload an app icon then hit Save." msgid "" "Fill the information form of your app, upload an app icon then " "click Save." msgstr "" "Vul het formulier in voor je app en upload een app-icoontje en klik " "vervolgens op Opslaan." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23 #, fuzzy #| msgid "Pick Settings at the left-hand menu " msgid "Pick Settings at the left-hand menu " msgstr "Kies Instellingen in het linker menu " #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized redirect URI\" field %s " msgid "" "Add the following URL to the \"Authorized redirect URI\" field %s " msgstr "" "Voeg de volgende URL toe aan het veld \"Geautoriseerde omleidings-URI\" " "%s\" " #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25 #, fuzzy #| msgid "Save your app" msgid "Save your app" msgstr "Bewaar je app" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Find the necessary Application ID and Secure key at the top of the " #| "Settings page where you just hit the save button." msgid "" "Find the necessary \"App ID\" and \"Secure key\" at the top of " "the Settings page where you just hit the save button." msgstr "" "Vind de benodigde Applicatie-ID en Secure sleutel bovenaan de Instellingen-" "pagina waar je zojuist op de Opslaan knop hebt gedrukt." #: nextend-social-login-pro/providers/vk/admin/settings.php:39 msgid "Secure key" msgstr "Beveiligde sleutel" #: nextend-social-login-pro/providers/vk/vk.php:35 msgid "Continue with VK" msgstr "Doorgaan met VK" #: nextend-social-login-pro/providers/vk/vk.php:36 msgid "Link account with VK" msgstr "Koppel met VK" #: nextend-social-login-pro/providers/vk/vk.php:37 msgid "Unlink account from VK" msgstr "Ontkoppel van VK" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "Click \"Manage Settings\" under the Tools section!" msgid "Click \"Manage Settings\" under the Tools section!" msgstr "Klik op \"Instellingen Beheren\" onder de sectie \"Gereedschappen\"!" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "Add the following URL to the \"Redirect URLs\" field %s " msgid "Add the following URL to the \"Redirect URLs\" field %s " msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" %s " #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17 #, fuzzy #| msgid "Click on the \"Create New Application\" button." msgid "Click on the \"Create New Application\" button." msgstr "Klik op de knop \"Nieuwe Applicatie Maken\"." #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18 #, fuzzy #| msgid "Enter a \"Name\" and \"Description\" for your App." msgid "Enter a \"Name\" and \"Description\" for your App." msgstr "Voer een \"Naam\" en \"Beschrijving\" in voor je app." #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Fill \"Website URL\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website URL\" with the url of your homepage, probably: %s" msgstr "" "Vul \"Website URL\" in met de url van je homepage, waarschijnlijk: %s" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21 msgid "You can leave the \"Javascript Origins\" field blank!" msgstr "Je kunt het veld \"Javascript Origins\" leeg laten!" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22 msgid "Complete the human verification test." msgstr "Voltooi de menselijke verificatietest." #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23 #, fuzzy #| msgid "At the \"Type\" make sure \"Web\" is selected!" msgid "At the \"Type\" make sure \"Web\" is selected!" msgstr "Zorg er bij \"Type\" \"Web\" is geselecteerd!" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24 #, fuzzy #| msgid "Click the \"Create\" button!" msgid "Click the \"Create\" button!" msgstr "Klik op de \"Maak\"-knop!" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25 #, fuzzy #| msgid "" #| "Click the name of your App either in the Breadcrumb navigation or next to " #| "Editing!" msgid "" "Click the name of your App either in the Breadcrumb navigation or " "next to Editing!" msgstr "" "Klik op de naam van je App in de broodkruimel-navigatie of naast Bewerken!" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be " #| "needed in the plugin's settings." msgid "" "Here you can see your \"Client ID\" and \"Client Secret\". " "These will be needed in the plugin's settings." msgstr "" "Hier kun je je \"Client ID\" en \"Client Geheim\" zien. Deze zijn nodig in " "de instellingen van de plugin." #: nextend-social-login-pro/providers/wordpress/wordpress.php:73 msgid "Continue with WordPress.com" msgstr "Doorgaan met WordPress.com" #: nextend-social-login-pro/providers/wordpress/wordpress.php:74 msgid "Link account with WordPress.com" msgstr "Koppel met WordPress.com" #: nextend-social-login-pro/providers/wordpress/wordpress.php:75 msgid "Unlink account from WordPress.com" msgstr "Ontkoppel van WordPress.com" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10 msgid "Click on the App which has its credentials associated with the plugin." msgstr "Klik op de App met de inloggegevens die aan de plugin zijn gekoppeld." #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "Add the following URL to the \"Redirect URLs\" field %s " msgid "" "Add the following URL to the \"Redirect URI(s)\" field: %s" msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" %s " #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18 #, fuzzy #| msgid "Click on the \"Create an App\" button on the top right corner." msgid "Click on the \"Create an App\" button on the top right corner." msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek." #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19 #, fuzzy #| msgid "" #| "Fill the \"Application Name\" and select \"Web Application\" at " #| "\"Application Type\"." msgid "" "Fill the \"Application Name\" and select \"Web Application\" " "at \"Application Type\"." msgstr "" "Vul de \"Applicatie Naam\" in en selecteer \"Web Applicatie\" bij " "\"Applicatie Type\"." #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20 #, fuzzy #| msgid "Enter a \"Description\" for your app!" msgid "Enter a \"Description\" for your app!" msgstr "Vul een \"Beschrijving\" in voor je app!" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21 #, fuzzy, php-format #| msgid "Enter the URL of your site to the \"Home Page URL\" field: %s" msgid "" "Enter the URL of your site to the \"Home Page URL\" field: %s" msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: %s" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23 msgid "" "Under the \"API Permissions\" you should select \"OpenID Connect " "Permissions\" with both \"Email\" and \"Profile\" enabled." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:24 #, fuzzy #| msgid "Click \"Create App\"." msgid "Click \"Create App\"." msgstr "Klik op \"Maak App\"." #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:25 #, fuzzy #| msgid "" #| "On the top of the page, you will find the necessary \"Client ID\" and " #| "\"Client Secret\"! These will be needed in the plugin's settings." msgid "" "On the top of the page, you will find the necessary \"Client ID\" and " "\"Client Secret\"! These will be needed in the plugin's settings." msgstr "" "Bovenaan de pagina vind je de nodige \"Client ID\" en \"Client Geheim\"! " "Deze zijn nodig in de instellingen van de plugin." #: nextend-social-login-pro/providers/yahoo/yahoo.php:64 msgid "Continue with Yahoo" msgstr "Doorgaan met Yahoo" #: nextend-social-login-pro/providers/yahoo/yahoo.php:65 msgid "Link account with Yahoo" msgstr "Koppel met Yahoo" #: nextend-social-login-pro/providers/yahoo/yahoo.php:66 msgid "Unlink account from Yahoo" msgstr "Ontkoppel van Yahoo" #: nextend-social-login-pro/providers/yahoo/yahoo.php:186 #, php-format msgid "Required permission: %1$s" msgstr "Vereiste toestemming: %1$s" #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10 #: nextend-social-login-pro/template-parts/login/above-separator.php:20 #: nextend-social-login-pro/template-parts/login/below-separator.php:8 #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10 msgid "OR" msgstr "OF" #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1 #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1 msgid "Social accounts" msgstr "Social accounts" #~ msgid "Click on blue \"Create App ID\" button" #~ msgstr "Klik op de blauwe knop \"Maak App ID aan\"" #~ msgid "" #~ "Select \"Integrate Facebook Login\" at the Select a Scenario page, then " #~ "click Confirm." #~ msgstr "" #~ "Selecteer \"Integreer Facebook Login\" op de Selecteer een Scenario " #~ "pagina en klik vervolgens op Bevestigen." #~ msgid "" #~ "In the left sidebar under the Products section, click on \"Facebook Login" #~ "\" and select Settings" #~ msgstr "" #~ "Klik in de linkerzijbalk onder de Producten-sectie op \"Facebook Login\" " #~ "en selecteer Instellingen" #~ msgid "" #~ "In the top of the left sidebar, click on \"Settings\" and select \"Basic\"" #~ msgstr "" #~ "Klik bovenaan de linker zijbalk op \"Instellingen\" en selecteer \"Basis\"" #~ msgid "By clicking \"Confirm\", the Status of your App will go Live." #~ msgstr "Door op \"Bevestigen\" te klikken, wordt de Status van je app Live." #, php-format #~ msgid "Click on OAuth 2.0 client ID: %s" #~ msgstr "Klik op OAuth 2.0 client ID: %s" #~ msgid "" #~ "Click on the \"Credentials\" in the left hand menu to create new API " #~ "credentials" #~ msgstr "" #~ "Klik op de \"Inloggegevens\" in het linker menu om nieuwe API-" #~ "inloggegevens aan te maken" #~ msgid "Select the OAuth consent screen!" #~ msgstr "Selecteer het OAuth toestemmingsscherm!" #~ msgid "" #~ "Press \"Save\" and you will be redirected back to Credentials screen." #~ msgstr "" #~ "Druk op \"Opslaan\" en je wordt terug omgeleid naar het inlogscherm." #~ msgid "" #~ "Click the Create credentials button and select \"OAuth client ID\" from " #~ "the dropdown." #~ msgstr "" #~ "Klik op de knop Creëer inloggegevens en selecteer \"OAuth client ID\" in " #~ "de dropdown." #~ msgid "Your application type should be \"Web application\"" #~ msgstr "Je applicatie-type moet \"Web-applicatie\" zijn" #~ msgid "Name your application" #~ msgstr "Geef je applicatie een naam" #~ msgid "Click the \"Save Changes\" button!" #~ msgstr "Klik op de knop \"Wijzigingen Opslaan\"!" #~ msgid "Click on the App" #~ msgstr "Klik op de App" #, php-format #~ msgid "" #~ "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" #~ msgstr "" #~ "Voeg de volgende URL toe aan het veld \"Geautoriseerde omleidings-URLs:" #~ "\": %s" #~ msgid "Fill all the \"App information\" related fields!" #~ msgstr "Vul alle \"App informatie\" gerelateerde velden in!" #~ msgid "Scroll down to \"REST API apps\"." #~ msgstr "Scroll naar beneden naar \"REST API apps\"." #~ msgid "Select the \"Live\" option on the top-right side. " #~ msgstr "Selecteer de optie \"Live\" rechterboven. " #~ msgid "Click the \"Create App\" button." #~ msgstr "Klik op de knop \"Maak App\"." #~ msgid "Locate the blue \"Create application\" button and click on it." #~ msgstr "Zoek de blauwe knop \"Maak applicatie\" en klik erop." #~ msgid "When all fields are filled, create you app." #~ msgstr "Wanneer alle velden zijn ingevuld, maak je je app aan." #~ msgid "" #~ "You'll be sent a confirmation code via SMS which you need to type to be " #~ "able to create the app." #~ msgstr "" #~ "Je ontvangt een bevestigingscode via SMS die je moet invoeren om de app " #~ "te kunnen maken." #~ msgid "Application ID" #~ msgstr "Applicatie-ID" #~ msgid "Click on \"Update\"" #~ msgstr "Klik op \"Bijwerken\"" #, php-format #~ msgid "" #~ "Check if the saved \"Callback Domain\" matches with your domain: %s" #~ msgstr "" #~ "Controleer of het opgeslagen \"Callback Domein\" overeenkomt met je " #~ "domein: %s" #, php-format #~ msgid "" #~ "If the Callback Domain matches with your domain, then your don't have " #~ "anything else to do with this %s app." #~ msgstr "" #~ "Als het Callback Domein overeenkomt met je domein, dan heb je niets " #~ "anders te maken met deze %s app." #, php-format #~ msgid "" #~ "The Callback Domain of %1$s apps can not be modified. So if the Callback " #~ "Domain differs from your domain, you need to create a new app as you see " #~ "in the Getting Started section of the %1$s provider." #~ msgstr "" #~ "Het Callback Domein van %1$s apps kunnen niet worden gewijzigd. Dus als " #~ "het Callback Domein verschilt van je domein, moet je een nieuwe app maken " #~ "zoals je ziet in het Aan de slag gedeelte van de %1$s provider." #~ msgid "" #~ "Replace your old \"Client ID\" and \"Client Secret\" with the one of the " #~ "new app!" #~ msgstr "" #~ "Vervang je oude \"Client ID\" en \"Client Geheim\" door die van de nieuwe " #~ "app!" #~ msgid "" #~ "The value of the \"Callback Domain\" field can not be modified. If it " #~ "would be necessary, you must create a new App!" #~ msgstr "" #~ "De waarde van het veld \"Callback Domein\" kan niet worden gewijzigd. " #~ "Als het nodig is, moet je een nieuwe App maken!" #~ msgid "" #~ "Under the \"API Permissions you should select \"Profiles (Social " #~ "Directory)\" with either \"Read Public\" or \"Read/Write Public and " #~ "Private\"." #~ msgstr "" #~ "Onder de \"API Machtigingen\" moet je \"Profielen (Social Directory)\" " #~ "selecteren met ofwel \"Lees Openbaar \" of \"Lees/Schrijf Openbaar en " #~ "Privé\"." #~ msgid "" #~ "Read Public: retrieves only the basic fields, email address is not " #~ "included!" #~ msgstr "" #~ "Lees Openbaar: haalt alleen de basisvelden op, e-mailadres is niet " #~ "inbegrepen!" #~ msgid "" #~ "Read/Write Public and Private: retrieves some extra fields, email " #~ "address included!" #~ msgstr "" #~ "Lezen/Schrijven Openbaar en Privé: haalt enkele extra velden op, " #~ "inclusief e-mailadres!" #~ msgid "" #~ "To modify these values in the future, you must create a new App! Also " #~ "you will need to select the \"API Permission\" on our Setting tab " #~ "according to the selected value!" #~ msgstr "" #~ "Om deze waarden in de toekomst aan te passen, moet je een nieuwe App " #~ "maken! Ook moet je de \"API Permissies\" selecteren op ons tabblad " #~ "\"Instellingen\" op basis van de geselecteerde waarde!" #~ msgid "API Permission" #~ msgstr "API-toestemming" #~ msgid "Read Public" #~ msgstr "Lees Openbaar" #~ msgid "Read/Write Public and Private" #~ msgstr "Lezen/schrijven Openbaar en Privé" #~ msgid "" #~ "Email address is private, so you need \"Read/Write Public and Private\" " #~ "permission if you want to access it.
Important note: During the " #~ "APP configuration, you will also need to select the API Permissions for " #~ "Profiles (Social Directory) according to the chosen value." #~ msgstr "" #~ "E-mailadres is privé, dus je hebt \"Lees/Schijf Openbaar en Privé\" " #~ "toestemming nodig als je er toegang toe wilt krijgen.
Belangrijke " #~ "opmerking: Gedurende de APP-configuratie moet je ook de API-" #~ "machtigingen voor profielen (Social Directory) selecteren op basis van de " #~ "gekozen waarde." languages/nextend-facebook-connect-es_LA.mo000066600000057716152140537230014721 0ustar00[kz@pt &t1D0 O;  )Fcx!<M"3p   & 0>FWt%-Ig" 8K$Sx   '#-$Q v%   %! G b g vs ]q! ! !!! " " "*"3"8"X"!x""!"" "#&9#"`# #8#9#$ $$ *$ 6$C$ L$ Z$e$t$$$$!$$"$ %0% 7%E% T%a%d%w%8% %% %%%> &I&b&0&3&,&,'@' O'\' o'$y'f'( ( ;(E([(d( |((((1(!()$)9) J) W) e) o)z)) ))))) )) )*+*$@*e*w** * *I*&*^+z+0+<+T,kU,f,(-?-[-P.KW.(.)/j0a1!y1!1#1!1#2!'2"I2l2(2 22 2 222B3F3K3Z3c313333#3!4&4 84tC4j4 #5GD5a5'5 6 6W-6|9:?:w: T;_;$;H<<e<b<= =#=,=4= F= S=a=i= p={=$=$=%== >$>;>-N><|>>M>o?~@@@@@@1@A &A 0A >AIA&_A'A/A$ABB3BMBeBBBBBBBC"CI?C C;C C C C CC D*D0D=6D&tD)D D DD2D1EEE.TEEE0E EEEEF# F5/F eFFFvFGWGG HH/HBH TH`H rH|H H H"H H" I ,I!MIoI'I?IIAJBIJJJ%JJJ KK &K 1K >KJKPKpK8K=K4K3LIL OL]L lLzL"|LL8LL L M MM\;MMM1MCN4LN=NNNN O$ O_0OOO OO OOP42PgP{P5P#P PP'Q8QHQ [Q hQsQ{Q QQQ"QQ RR R,R.=R,lRRRRRRKR>SvWSS1S5T_LT~Tv+UUBFV`VVMVN@WNXdYCZ"\Z"Z$Z"Z$Z"[#2[V[)u[[[[[[[Q \]\d\|\&\D\\$ ] .]08].i]*] ]]kR^^=^i_%___J.p] aet*qF{&nwSN![ZQ"<OCx5>/@byrLjD;:#V=Ui)(IHcGTs l 3R0 vu6hg%-M8|E}1XY'~z`$27+KPBd9^fk\A 4_mW?o,%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in order to allow login with %1$s.%1$s detected that %2$s installed on your site. You need the Pro Addon to display Social Login buttons in %2$s login form!%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE.%1$s requires WordPress version %2$s+. Because you are using an earlier version, the plugin is currently NOT ACTIVE.%s Buttons%s detected that your login url changed. You must update the Oauth redirect URIs in the related social applications.%s needs json_decode function.ERROR: Passwords may not contain the character "\".ERROR: Please enter a password.ERROR: Please enter the same password in both password fields.AboveAbove with separatorAction:ActivateActivate Pro AddonActivating...AdminAlwaysApp IDApp SecretApp creationCreate %sAsk E-mail on registrationAsk Password on registrationAsk Username on registrationAuthentication errorAuthentication failedAuthentication successfulAuthorize Pro AddonAutomatic, based on email addressAutomatically connect the existing account upon registrationAvatarAvatar (%s)Avatar (%s)Before you can start letting your users register with your app it needs to be tested. This test makes sure that no users will have troubles with the login and registration process.
If you see error message in the popup check the copied ID and secret or the app itself. Otherwise your settings are fine.BelowBelow and floatingBelow with separatorButton style:ButtonsBuy Pro AddonClick here to login or registerClick on "Save"Client IDClient SecretCommentConfirm passwordConfirm use of weak passwordConnect button after registerConnect button before account detailsConnect button before registerContinue with AmazonContinue with DisqusContinue with FacebookContinue with GoogleContinue with LinkedInContinue with PayPalContinue with TwitterContinue with VKContinue with WordPress.comDebug modeDefaultDefault buttonDefault redirect urlDefault roles for user who registered with this providerDisableDisable login for the selected rolesDisabledDiscussionDisliked itDismissDismiss and check Pro AddonDocsERROREmailEmbedded Login form button styleEmbedded Login layoutEmbedded login formEnableEnabledErrorEvery Oauth Redirect URI seems fineFallback username prefix on registerFix ErrorFix Oauth Redirect URIsFixed redirect urlGeneralGet Pro Addon to unlock more featuresGetting StartedGlobal SettingsGot itHated itHideHide login buttonsHow to get SSL for my WordPress site?I am done setting up my %sIconIcon buttonIf you already have a license, you can Authorize your Pro Addon. Otherwise you can purchase it using the button below.If you are happy with Nextend Social Login and can take a minute please leave us a review. It will be a tremendous help for us!If you are not sure what is your %1$s, please head over to Getting StartedImage buttonImage urlInstall %s nowInstall Pro AddonInstall now!It was okLicense keyLiked itLinkLink account with AmazonLink account with DisqusLink account with FacebookLink account with GoogleLink account with LinkedInLink account with PayPalLink account with TwitterLink account with VKLink account with WordPress.comLink buttons after account detailsLink labelLog in with your %s credentials if you are not logged inLog in with your %s credentials if you are not logged in.LoginLogin FormLogin form button styleLogin labelLogin layoutLoved itManage AvatarMembershipNavigate to %sNetwork ActivateNeverNever, generate automaticallyNo Connect buttonNo Connect button in billing formNo Connect button in login formNo Connect button in register formNo link buttonsNobodyNot AvailableNot ConfiguredNot VerifiedOROauth Redirect URIOk, you deserve itOnce you have a project, you'll end up in the dashboard.Order SavedOther settingsPRO settingsPasswordPlease Leave a ReviewPlease contact your server administrator and ask for solution!Please enter a username.Please enter an email address.Please install and activate %1$s to use the %2$sPlease save your changes before verifying settings.Please save your changes to verify settings.Please update %1$s to version %2$s or newer.Prefer new tabPrefer popupPrefer same windowPro AddonPro Addon is installed and activatedPro Addon is installed but not activated. To be able to use the Pro features, you need to activate it.Pro Addon is not activatedPro Addon is not installedProvidersRate your experience!RegisterRegister For This Site!Register FormRegister form button styleRegister layoutRegistration FormRegistration confirmation will be emailed to you.Registration notification sent toRequiredRequired scope: %1$sReset to defaultSave ChangesSaving failedSaving...Secure keySettingsSettings saved.ShortcodeShowShow link buttonsShow login buttonsShow unlink buttonsSimple linkSocial AccountsSocial LoginSocial accountsSocial login is not allowed with this role!Sorry, that username is not allowed.Store in meta keyStrength indicatorSupportSync dataTarget windowThe %1$s entered did not appear to be a valid. Please enter a valid %2$s.The email address isn’t correct.The features below are available in %s Pro Addon. Get it today and tweak the awesome settings.The test was successfulThis %s account is already linked to other user.This email is already registered, please choose another one.This email is already registered, please login in to your account to link with %1$s.This provider is currently disabled, which means that users can’t register or login via their %s account.This provider is currently enabled, which means that users can register or login via their %s account.This provider works fine, but you can test it again. If you don’t want to let users register or login with %s anymore you can disable it.This username is already registered. Please choose another one.This username is invalid because it uses illegal characters. Please enter a valid username.Title:To access the Pro features, you need to install and activate the Pro Addon.To allow your visitors to log in with their %1$s account, first you must create a %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.To allow your visitors to log in with their %1$s account, first you must create an %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.To be able to use the Pro features, you need to install and activate the Nextend Social Connect Pro Addon.Unexpected response: %sUnlink account from AmazonUnlink account from DisqusUnlink account from FacebookUnlink account from GoogleUnlink account from LinkedInUnlink account from PayPalUnlink account from TwitterUnlink account from VKUnlink account from WordPress.comUnlink labelUnlink successful.Update now!Upgrade NowUsageUse custom buttonUse the %s in your custom button's code to make the label show up.UserUser and AdminUsernameUsername prefix on registerUsers must be registered and logged in to commentVerify SettingsVerify Settings AgainVisit %sWhen email is not provided or emptyWhen username is empty or invalidWordPress defaultWorks FineYou don’t have sufficient permissions to install and activate plugins. Please contact your site’s administrator!You have already linked a(n) %s account. Please unlink the current and then you can link other %s account.You have logged in successfully.You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to workYour %1$s account is successfully linked with your account. Now you can sign in with %2$s easily.Your configuration needs to be verifiedfor Loginfor RegisterProject-Id-Version: nextend-facebook-connect PO-Revision-Date: 2020-03-26 11:07+0100 Last-Translator: Gabriel Vilaró Language-Team: nextend-facebook-connect Language: es_419 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 2.2.4 X-Poedit-Basepath: ../.. Plural-Forms: nplurals=2; plural=(n != 1); X-Poedit-SourceCharset: UTF-8 X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e X-Poedit-Flags-xgettext: −−default-domain=nextend-facebook-connect X-Poedit-SearchPath-0: nextend-social-login-pro X-Poedit-SearchPath-1: nextend-facebook-connect %1$s solo permite redireccionamientos HTTPS OAuth. Debes mover tu sitio a HTTPS para permitir el inicio de sesión con %1$s.%1$s detectó que %2$s está instalado en tu sitio. ¡Necesitas el Pro Addon para mostrar los botones de Social Login en el formulario de acceso de %2$s!%1$s requiere la versión PHP %2$s+, el plugin NO ESTÁ ACTIVO.%1$s requiere la versión de WordPress %2$s+. Desde estás utilizando una versión anterior, el plugin NO ESTÁ ACTIVO.%s Botones%s detectó que tu URL de inicio de sesión cambió. Debes actualizar los URI de redireccionamiento de Oauth en las aplicaciones sociales relacionadas.%s necesita la función json_decode.ERROR: Contraseñas no pueden contener el caracter "\".ERROR: Por favor introduce una contraseña.ERROR: Por favor introduce la misma contraseña en los dos campos de contraseña.EncimaEncima con separaciónAcción:ActivarActivar Pro AddonActivando...AdministradorSiempreApp IDApp SecretCrear %sPreguntar E-mail durante el registroPreguntar Contraseña al registrarsePreguntar Usuario durante el registroError de autenticaciónError de autenticaciónAutenticación exitosaAutoriza Pro AddonAutomático, basado en la dirección de emailConectar automáticamente la cuenta existente al registrarseAvatarAvatar (%s)Avatar (%s)Antes de que puedas comenzar a permitir que tus usuarios se registren con tu aplicación, debe ser probada. Esta prueba asegura que ningún usuario tenga problemas con el proceso de inicio de sesión y registro.
Si ves un mensaje de error en el menú emergente, verifica la ID copiada y el secreto o la aplicación. De lo contrario, tu configuración está bien.AbajoAbajo y flotandoAbajo con separaciónEstilo de Botón:BotonesCompra Pro AddonHaz clic aquí para iniciar sesión o registrarseHaz clic en "Guardar Cambios"Client IDClient SecretComentarioConfirmar contraseñaConfirmar el uso de contraseña débilConectar botón después de registrarseConectar botón antes de los detalles de cuentaConectar botón antes de registrarseSigue con AmazonSigue con DisqusSigue con FacebookSigue con GoogleSigue con LinkedInSigue con PayPalSigue con TwitterSigue con VKSigue con WordPress.comModo de depuraciónPredeterminadoBotón predeterminadoURL de redirección predeterminadaRoles predeterminados para el usuario que se registró con este proveedorInhabilitarDeshabilitar inicio de sesión para los roles seleccionadosDesactivadoDiscusiónNo me gustóDescartarDescartar y verificar Pro AddonDocumentosERROREmailEstilo de botón de formulario de inicio de sesión integradoDiseño de Inicio de Sesión integradoFormulario de Inicio de Sesión integradoHabilitarHabilitadoErrorCada URI de redireccionamiento de Oauth está bienPrefijo del usuario de reservo cuando se registraArreglar ErrorArregla los URI de redireccionamiento de OauthURL de redirección fijaGeneralCompra Pro Addon para desbloquear más funcionesEmpezandoAjustes GlobalesEntiendoLo odiéEsconderEsconder botones de iniciar sesión¿Cómo puedo obtener SSL para mi sitio de WordPress?He terminado de configurar mi %sIconoBotón de iconoSi ya tienes una licencia, puedes Autorizar tu Pro Addon. De lo contrario, puedes comprarlo usando el botón de abajo.Si estás satisfecho con Nextend Social Login y tienes un minuto, por favor déjanos una evaluación. ¡Será una gran ayuda para nosotros!Si no estás seguro de cuál es tu %1$s, dirígete a Getting StartedBotón de imagenURL de imagenInstalar %s ahoraInstalar Pro Addon¡Instalar ahora!Estuvo bienClave de licenciaMe gustóEnlaceEnlazar cuenta con AmazonEnlazar cuenta con DisqusEnlazar cuenta con FacebookEnlazar cuenta con GoogleEnlazar cuenta con LinkedInEnlazar cuenta con PayPalEnlazar cuenta con TwitterEnlazar cuenta con VKEnlazar cuenta con WordPress.comEnlazar botones de enlace después de los detalles de la cuentaEtiqueta de enlaceInicia sesión con tus %s credenciales si no has iniciado sesiónInicia sesión con tus %s credenciales si no has iniciado sesión.Iniciar SesiónFormulario de AccesoEstilo de botón para iniciar sesiónEtiqueta de accesoDiseño de Inicio de SesiónMe encantóAdministrar AvatarMembresíaNavegar a %sActivar RedNuncaNunca, generar automáticamenteBotón de No ConexiónSin botón de conexión en el formulario de facturaciónSin botón de conexión en el formulario de inicio de sesiónSin botón de conexión en el formulario de registroSin botones de enlaceNadieNo DisponibleNo ConfiguradoNo VerificadoOURI de redireccionamiento de OauthOk, lo merecesUna vez que tengas un proyecto, llegarás al escritorio.Orden GuardadoOtros ajustesAjustes PROContraseñaPor Favor Deja una Evaluación¡Por favor, ponte en contacto con el administrador de tu servidor y solicita una solución!Por favor introduce un usuario.Por favor introduce un email.Por favor instala y activa %1$s para usar el %2$sGuarda tus cambios antes de verificar la configuración, por favor.Guarda los cambios para verificar la configuración.Por favor, actualiza %1$s a la versión %2$s o más reciente.Preferir nueva pestañaPreferir emergentePreferir nueva ventanaPro AddonPro Addon está instalado y activadoPro Addon está instalado pero no activado. Para poder usar las funciones Pro, debes activarlo.Pro Addon no está activadoPro Addon no está instaladoProveedores¡Califica tu experiencia!Registrarse¡Registrarse Para Este Sitio!Formulario de RegistroEstilo de botón de formulario de Registro integradoDiseño de RegistroFormulario de RegistroLa confirmación de registro será enviada por email.Notificación de registro enviado aObligatorioAlcance requerido: %1$sRestablecer los valores predeterminadosGuardar CambiosNo se pudo guardarGuardando...Secure keyAjustesAjustes guardados.Código cortoMostrarMostrar botones de enlazarMostrar botones de iniciar sesiónMostrar botones de desenlazarEnlace simpleCuentas SocialesSocial LoginCuentas sociales¡Social login no esta permitido con este rol!Lo sentimos, ese usuario no está permitido.Guardar en clave metaIndicador de dificultadApoyoSincronizar datosVentana de destinoEl %1$s ingresado no parece ser válido. Por favor ingresa un %2$s válido.El email no es correcto.Las siguientes funciones están disponibles en %s Pro Addon. Compralo hoy y modifica unas configuraciones increíbles.La prueba fue exitosaEsta cuenta %s ya está vinculada a otro usuario.Este email ya esta registrado, por favor escoge otro.Este email ya está registrado, por favor inicia sesión en tu cuenta para vincularlo con %1$s.Este proveedor está desactivado, así que los usuarios no pueden registrarse ni iniciar sesión a través de su cuenta de %s.Este proveedor está habilitado, así que los usuarios pueden registrarse o iniciar sesión a través de su cuenta %s.Este proveedor funciona bien pero puedes volver a probarlo. Si ya no deseas permitir que los usuarios se registren o inicien sesión con %s, puedes deshabilitarlo.Este nombre de usuario ya está registrado. Por favor escoge otro.Este usuario no es válido porque usa caracteres ilegales. Por favor ingresa un usuario válido.Titulo:Para acceder a las funciones Pro, tienes que instalar y activar el Pro Addon.Para permitir que tus visitantes inicien sesión con su cuenta %1$s, primero debes crear una aplicación %1$s. La siguiente guía te ayudará a través del proceso de creación de la aplicación %1$s. Después de haber creado tu aplicación %1$s, dirígete a "Ajustes" y configura los "%2$s" y "%3$s" dados según tu aplicación %1$s.Para permitir que tus visitantes inicien sesión con su cuenta %1$s, primero debes crear una aplicación %1$s. La siguiente guía te ayudará a través del proceso de creación de la aplicación %1$s. Después de haber creado tu aplicación %1$s, dirígete a "Ajustes" y configura los "%2$s" y "%3$s" dados según tu aplicación %1$s.Para poder utilizar las funciones Pro, debes instalar y activar el Nextend Social Connect Pro Addon.Respuesta inesperada: %sDesenlazar cuenta de AmazonDesenlazar cuenta de DisqusDesenlazar cuenta de FacebookDesenlazar cuenta de GoogleDesenlazar cuenta de LinkedInDesenlazar cuenta de PayPalDesenlazar cuenta de TwitterDesenlazar cuenta de VKDesenlazar cuenta de WordPress.comEtiqueta de desenlazarDesenlace exitoso.¡Actualizar ahora!Actualizar AhoraUsoUsa botón personalizadoUse el %s en el código de tu botón personalizado para que aparezca la etiqueta.UsarioUsuario y AdministradorUsuarioPrefijo del usuario cuando se registraLos usuarios deben estar registrados e iniciar sesión para comentarVerificar ConfiguraciónVerificar la configuración de nuevoVisita %sCuando el email no se proporciona o está vacíoCuando el usuario está vacío o no es válidoConfiguración predeterminada de WordpressFunciona BienNo tienes suficientes permisos para instalar y activar plugins. ¡Por favor, ponte en contacto con el administrador de tu sitio!Ya has vinculado una %s cuenta. Desvincula la cuenta actual y después podrías vincular otra cuenta de %s.Has ingresado exitosamente.Necesitas activar el ' %1$s > %2$s > %3$s ' para que funcioneTu cuenta %1$s está vinculada con éxito a tu cuenta. Ahora puedes iniciar sesión con %2$s fácilmente.Tu configuración debe ser verificadapara Iniciar Sesiónpara Registrarselanguages/nextend-facebook-connect-hu_HU.mo000066600000062021152140537230014727 0ustar004[L9]1Qza `tk  %-6I aou +A[!o<30 FT e q ~ !  %9_~*G"_ 8#+$Fk t  #$ C M e m  %        !v!!] " k" x" """ "" """""!#9#!Y#{# ##&#"# "$8-$<f$9$$ $ $$ % %,%5%D%J%h%!z%%%% %% %%&!&$&7&8J& &&& &&&>&.' ='J'#]'' '$'f'(:( U(_(Nu(((( (!)&)/)B)S) Y) f) t)~))) )) ) ))+) ** !*+*D* L* V*d*y*&*I**%+^C++k+f&,,-K-(-)/>0j0_1w1!~1!1#1!1#2!,2"N2q2(2 22 2222B3+F3r3w33133333#!4!E4g44 4Z494t55 5|5GH6a6 6 6 7K:X$;h};<~= >>3> >>>? ??1?H?W?]?}?? ??$?"?,?@0@I@_@(~@G@{@kB pB}BBBB B B BBCC4&C[CtC C CC)C+C%D.DNDnDDDDD E$$EIEbE E EE E%E8E F$F8DF }F F F F'FFFF F F GG*G-/G3]GGGGG GEG;HKH fH pH|H&HH H{H5I{I FJSJ\JdJzJJJ JJJ,J,J-"K+PK-|K*K,K'L1*L?\LL3L3L3$MXMgM |MMMMMMMM N9$N4^NNNNNNNNOOOA3OuOOOOOOSPXP`PoP'PPP-PP$zQ$Q Q QZQ6RERcRvR$R RR"RRRS *S5S"^D].,QPiO[zT9s 4 m|:on<q$3Yb _M05`a+fB#I 2(6;1 WJ@j=AlrdH tFv&%1$s First create a new page then select this page above.%1$s You won't be able to reach the selected page unless a social login/registration happens.%1$s collects data when a visitor register, login or link the account with with any of the enabled social provider. It collects the following data: email address, name, social provider identifier and access token. Also it can collect profile picture and more fields with the Pro Addon's sync data feature.%1$s detected that %2$s installed on your site. You need the Pro Addon to display Social Login buttons in %2$s login form!%2$s First create a new page and insert the following shortcode: %1$s then select this page above%s Buttons%s detected that your login url changed. You must update the Oauth redirect URIs in the related social applications.%s needs json_decode function.API SecretAboveAbove with separatorAction:ActivateActivate Pro AddonActivate your Pro AddonActivating...AdminAllow Social account unlinkAlwaysApp IDApp SecretApp creationCreate %sAsk E-mail on registrationAsk Password on registrationAsk Username on registrationAuthentication errorAuthentication failedAuthentication successfulAuthorize Pro AddonAutomatic, based on email addressAutomatically connect the existing account upon registrationBefore you can start letting your users register with your app it needs to be tested. This test makes sure that no users will have troubles with the login and registration process.
If you see error message in the popup check the copied ID and secret or the app itself. Otherwise your settings are fine.BelowBelow and floatingBelow with separatorBlacklisted redirectsButton align:Button alignmentButton skinButton styleButton style:ButtonsBuy Pro AddonCenterClick here to login or registerClick on "Save"Click on the name of your %s App.Client IDClient SecretCommentConnect button after registerConnect button before account detailsConnect button before registerContinue with AmazonContinue with DisqusContinue with FacebookContinue with GoogleContinue with LinkedInContinue with PayPalContinue with TwitterContinue with VKContinue with WordPress.comDeactivate Pro AddonDeactivate completed.DebugDebug modeDefaultDefault buttonDefault redirect urlDefault roles for user who registered with this providerDisableDisable external redirectsDisable login for the selected rolesDisabledDiscussionDisliked itDismissDismiss and check Pro AddonDocsERROREmailEmail scopeEnableEnabledEnter your email addressErrorEvery Oauth Redirect URI seems fineFallback username prefix on registerFix ErrorFix Oauth Redirect URIsFix nowFixed redirect urlGeneralGet Pro Addon to unlock more featuresGetting StartedGlobal SettingsGot itHated itHideI am done setting up my %sIconIcon buttonIf you already have a license, you can Authorize your Pro Addon. Otherwise you can purchase it using the button below.If you are happy with Nextend Social Login and can take a minute please leave us a review. It will be a tremendous help for us!If you are not sure what is your %1$s, please head over to Getting StartedImage buttonImage urlImportant:Install %s nowInstall Pro AddonIt was okLeftLicense keyLiked itLinkLink account with AmazonLink account with DisqusLink account with FacebookLink account with GoogleLink account with LinkedInLink account with PayPalLink account with TwitterLink account with VKLink account with WordPress.comLink buttons after account detailsLink labelLog in with your %s credentials if you are not logged inLog in with your %s credentials if you are not logged in yetLog in with your %s credentials if you are not logged in.LoginLogin FormLogin buttonLogin form button styleLogin labelLogin layoutLoved itNavigate to %sNeverNever, generate automaticallyNo Connect buttonNo Connect button in billing formNo Connect button in login formNobodyNoneNot AvailableNot ConfiguredNot VerifiedOAuth proxy pageOAuth redirect uri proxy pageOROauth Redirect URIOk, you deserve itOnce you have a project, you'll end up in the dashboard.Order SavedOther settingsOverride global "%1$s"PRO settingsPage for register flowPlease Leave a ReviewPlease contact your server administrator and ask for solution!Prefer new tabPrefer popupPrefer same windowPrevent external redirect overridesPrivacyPro AddonPro Addon is installed and activatedPro Addon is installed but not activated. To be able to use the Pro features, you need to activate it.Pro Addon is not activatedPro Addon is not installedProvidersRate your experience!Receive info on the latest plugin updates and social provider related changes.RegisterRegister button styleRegister flow pageRegister formRegistration notification sent toRequiredRequired API: %1$sReset to defaultRightSave ChangesSaving failedSaving...SecretSettingsSettings saved.ShortcodeShowSimple linkSocial LoginSocial accountsSocial login is not allowed with this role!Stay UpdatedStore in meta keySubscribeSuccessfully subscribed!SupportSync dataTarget windowTerms and conditionsTest %1$s connectionTest network connection with providersThe %1$s entered did not appear to be a valid. Please enter a valid %2$s.The activation was successfulThe entered email address is invalid!The features below are available in %s Pro Addon. Get it today and tweak the awesome settings.The test was successfulThis provider is currently disabled, which means that users can’t register or login via their %s account.This provider is currently enabled, which means that users can register or login via their %s account.This provider works fine, but you can test it again. If you don’t want to let users register or login with %s anymore you can disable it.This setting is used when you request additional data from the users (such as email address) and to display the Terms and conditions.To access the Pro features, you need to install and activate the Pro Addon.To allow your visitors to log in with their %1$s account, first you must create a %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.To allow your visitors to log in with their %1$s account, first you must create an %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.To be able to use the Pro features, you need to activate Nextend Social Connect Pro Addon. You can do this by clicking on the Activate button below then select the related purchase.To be able to use the Pro features, you need to install and activate the Nextend Social Connect Pro Addon.Unexpected response: %sUnlinkUnlink account from AmazonUnlink account from DisqusUnlink account from FacebookUnlink account from GoogleUnlink account from LinkedInUnlink account from PayPalUnlink account from TwitterUnlink account from VKUnlink account from WordPress.comUnlink labelUnlink successful.Upgrade NowUsageUsage:Use custom buttonUse the %s in your custom button's code to make the label show up.Used when username is invalid or not storedUserUser and AdminUsername prefix on registerUsers must be registered and logged in to commentVerify SettingsVisit %sWhat personal data we collect and why we collect itWhen email is not provided or emptyWhen username is empty or invalidWho we share your data withWordPress defaultWorks FineYou can use this setting when wp-login.php page is not available to handle the OAuth flow.You don't have cURL support, please enable it in php.ini!You don’t have sufficient permissions to install and activate plugins. Please contact your site’s administrator!You have logged in successfully.You installed and activated the Pro Addon. If you don’t want to use it anymore, you can deactivate using the button below.You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to workYour %1$s account is successfully linked with your account. Now you can sign in with %2$s easily.for Loginfor RegisterProject-Id-Version: nextend-facebook-connect PO-Revision-Date: 2020-03-26 11:08+0100 Last-Translator: Language-Team: nextend Language: hu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 2.2.4 X-Poedit-Basepath: ../.. Plural-Forms: nplurals=2; plural=(n != 1); X-Poedit-SourceCharset: UTF-8 X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e X-Poedit-SearchPath-0: nextend-social-login-pro X-Poedit-SearchPath-1: nextend-facebook-connect X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/compat X-Poedit-SearchPathExcluded-1: nextend-facebook-connect/providers/google/compat X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/compat %1$s Előszőr hozz létre egy új oldal majd válaszd ki azt az oldal itt.%1$s A kiválasztott csak a login és regisztráció folyamat számára less elérhető.%1$s adatot gyüjt amikor a látogató regisztrál, bejelentkezik vagy linkeli a fiókját bármely engedélyezett social providerhez. A következő adatok lesznek begyüjtve: email address, name, social provider identifier and access token. Ezenkívül még begyüjthető a profil kép és más mezők amelyek a Pro Addon sync data funkciójából származik.%1$s érzékelte hogy a(z) %2$s telepítve van az oldaladon. Ahoz, hogy a social login gombok megjelenjenek a(z) %2$s login formokban, a Pro Addon-ra van szükséged!%2$s Előszőr hozz létre egy új oldalt, majd másold be a következő shortcode-ot: %1$s majd válaszd ki azt az oldal itt.%s Gombok%s érzékelte hogy a bejelentkezési url megváltozott. Frissitened kell az "Oauth redirect URIs" értékeket a konfigurált alkalmazásaidban.A %s-nak szüksége van a json_decode függvényre.API SecretFelülFelül, elválasztóvalAction:AktiválásPro Addon aktiválásaPro Addon aktiválásaAktiválás...AdminSzétkapcsolás engedélyezéseMindigApp IDApp Secret%s létrehozásaE-mail kérésére regisztrációkorJelszó kérése regisztrációkorFelhasználónév kérése regisztrációkorHitelesítési hibaHitelesítés sikertelenHitelesítés sikeresPro Kiegészítő aktiválásaAutomatán, e-mail cím egyezés eseténFiók csatlakoztatása, ha regisztráció esetén már létezik a fiókMielőtt a felhasználók beléphetnének az oldaladra az appodat le kell tesztelni. Ez a teszt segít abban, hogy a felhasználók gond nélkül tudjanak belépni és regisztrálni az oldaladra.
Ha valamilyen hibaüzenetet látsz a felugró ablakban, nézd meg az appodat vagy a kimásolt hitelesítő adatokat. Ha nincs hibaüzenet, az azt jelenti, hogy minden rendben van.AlulAlul lebegveAlul, elválasztóvalTiltott átirányításokGombok igazításaGombok igazításaGomb skinGomb stílus:Gomb stílus:GombokVedd meg a Pro KiegészítőtKözépKattints ide a belépéshez vagy a regisztrációhozKattints a "Save" gombraKattints az %s Appod nevére.Client IDClient SecretKommentConnect gomb a regisztrációs form utánConnect gomb a fiók adatai részleg előttConnect gomb a regisztráció előtt.Folytatás az Amazon-nalFolytatás a Disqus-szalFolytatás a FacebookkalFolytatás a Google-elFolytatás a LinkedInnelFolytatás a PayPal-alFolytatás a TwitterrelFolytatás a VK-valFolytatás a WordPress.com-alPro Addon deaktiválásaA deaktiválás befejeződött.Debug módDebug módAlapbeállításAlap gombAlapértelmezett átirányítási urlAlap szerepkör, aki ezzel a szolgáltatóval registrálKikapcsolásKülső átirányítások letiltásaBejelntkezés kikapcsolása a kijelölt szerepköröknekKikapcsolvaÉrtekezésNem tetszikEltüntetEltüntent és Pro Addon ellenörzése.DokumentációHIBAEmailEmail scopeBekapcsolásBekapcsolvaAdd meg az email címedHibaMinden Every Oauth Redirect URI jónak tűnikFallback felhasználónév előtag regisztrácókorHiba javításaOauth Redirect URIs javításaJavítás mostFix átirányítási linkÁltalánosVásárold meg a Pro Kiegészítőt, hogy még több funkcióhoz jussElső LépésekÁltalános beállításokÉrtettemGyülölömElrejtBefejeztem a %s appom elkészítésétIkonIkon gombHa már van licenszed engedélyezheted a Pro Kiegészítődet. Ha nincs licenszed vásárolhatsz a lenti gombra kattintva. Ha tetszett a Nextend Social Login plugin és van egy pár szabad perce, kérem értékeljen minket. Nekünk ez hatalmas segítséget jelent!Ha nem vagy benne biztos, hogy mit kell írnod a(z) %1$s mezőbe, menj vissza az Első lépések fülre.Gomb képpelKép URLFontos:%s telepítése mostPro Kiegészítő telepítéseOkBalLicensz kulcsSzeretemÖsszekapcsolásFiók összekapcsolása az Amazon-nalFiók összekapcsolása a Disqus-szalFiók összekapcsolása a Facebook-kalFiók összekapcsolása a Google-lelFiók összekapcsolása a LinkedIn-nelFiók összekapcsolása a PayPal-alFiók összekapcsolása a Twitter-relFiók összekapcsolása a VK-valFiók összekapcsolása a WordPress.com-alÖsszekapcsoló gombok a profil részletes beállításai utánProfil összekapcsolás feliratLépj be a %s fiókoddal ha még nem vagy belépve.Lépj be a %s fiókoddal ha még nem vagy belépve.Lépj be a %s fiókoddal ha még nem vagy belépve.BejelentkezésBejelentkezési formLogin gombLogin gomb stílusaBejelentkezés feliratLogin elrendezéseImádomLátogasd meg ezt az oldalt: %sSohaSoha, automata generálásNe legyen connect gombNe legyen összekapcsoló gomb a számlázási űrlapnálNe legyen összekapcsoló gomb a belépő űrlapnálSenkiSemmiNem elérhetőNincs beállítvaNincs hitelesítveOAuth proxy pageOAuth redirect uri proxy pageVAGYOauth Redirect URIRendben, megérdemlitek.Ha van már projekted át leszel irányítva az irányítópultraSorrend elmentveEgyéb beállításokGlobális "%1$s" felülírása.PRO beállításokPage for register flowKérem hagyjon értékelést!Kérlek lépj kapcsolatba a szerveradminisztrátorral és kérj tőle segítséget!Új tabFelugró ablakUgyanazon ablakKülső átirányítások felülírásaPrivacyPro KiegészítőA Pro Kiegészítő telepítve és aktiválvaA Pro Kiegészítő telepítve van, de nincs aktiválva. Ahhoz, hogy használjasd a Pro funkciókat aktiválnod kell a Pro Kiegészítőt.A Pro Kiegészítő nincs aktiválvaA Pro Kiegészítő nincs telepítveProviderekÉrtékelj!Értesítést kérek a legutóbbi frissítésekről és a szolgáltatók változásáról.RegisztrációRegisztrációs gomb stílusaRegister flow pageRegisztrációs formRegisztrációról értesítést kapKötelezőSzükséges API: %1$sAlapbeállítás visszaállításaJobbVáltoztatások MentéseA mentés nem sikerültMentés...SecretBeállításokBeállítások elmentve.ShortcodeMegjelenítEgyszerű linkKözösségi belépésKözösségi fiókokA közösségi fiókkal való belépés nem engedélyezett erre a felhasználói szintre.Légy naprakészTárolás a meta kulcsbanFeliratkozásSikeresen feliratkozva.TámogatásSync dataCélablakFelhasználási feltételek%1$s kapcsolat teszteléseHálózati kapcsolat tesztelése szolgáltatókkalA megadott %1$s nem tűnik helyesnek. Győződj meg róla, hogy a beírt %2$s helyes.Az aktiváció sikeres voltA beírt email cím helytelen!Az alábbi funkciók a %s Pro Kiegészítőben érhetőek el. Vásárold meg még ma, hogy hozzáférj a fantasztikus új beállításokhoz.A teszt sikeres voltEz a provider jelenleg nincs bekapcsolva, ami azt jelenti, hogy a felhasználók nem tudnak regisztrálni vagy belépni a %s fiókjukkal.Ez a provider jelenleg be vankapcsolva, ami azt jelenti, hogy a felhasználók regisztrálhatnak és beléphetnek a %s fiókjukkal.A provider megfelelően működik, de újra letesztelheted. Ha nem a továbbiakban nem akarod, hogy regisztráljanak vagy belépjenek a %s fiókjukkal kikapcsolhatod a providertt.Ez a beállítás akkor használatos, ha további adatokat kérsz a felhasználótól ( mint például email címet ) illetve a Felhasználói feltételek megjelenítéséhez.Ahhoz, hogy hozzáférj a Pro funkciókhoz fel kell telepítened és aktiválnod kell a Pro Kiegészítőt.Ahhoz. hogy a felhasználók beléphessenek a %1$s fiókjukkal, először létre kell hoznod egy %1$s Appot. Az alábbi útmutató végig vezet a %1$s App létrehozás folyamatán. Miután a(z) %1$s fiókod elkészült, menj a "Beállítások" fülre és állítsd be a "%2$s"-t és "%3$s"-t a %1$s Appod alapján.Ahhoz. hogy a felhasználók beléphessenek a %1$s fiókjukkal, először létre kell hoznod egy %1$s Appot. Az alábbi útmutató végig vezet a %1$s App létrehozás folyamatán. Miután a(z) %1$s fiókod elkészült, menj a "Beállítások" fülre és állítsd be a "%2$s"-t és "%3$s"-t a %1$s Appod alapján.A Pro funkciók használatához aktiválnod kell a Nextend Social Login Pro Addon-t. Ezt megteheted az Activate gombra való kattintással és a társított vásárlás kiválasztásával.A Pro funkciók használatához aktiválnod kell a Nextend Social Login Pro Addon-t. Ezt megteheted az Activate gombra való kattintással és a társított vásárlás kiválasztásával.Nem várt válasz: %sSzétkapcsolás Szétkapcsolás Amazon-tólSzétkapcsolás Disqus-tólSzétkapcsolás Facebook-kalSzétkapcsolás Google-lelSzétkapcsolás LinkedIn-nelSzétkapcsolás PayPal-tólSzétkapcsolás Twitter-relSzétkapcsolás VK-tólSzétkapcsolás WordPress.com-tólProfile szétkapcsolás feliratSzétkapcsolás sikeresUpgradelés mostHasználatHasználatEgyedi gomb használataHasználd a %s azonosítót, hogy megfelenjen a gomb felirat.Akkor van használva ha a felhasználónév helytelen vagy nincs tárolva.FelhasználóFelhasználó és AdminFelhasználónév előtag regisztrációkorA felhasználóknak be kell jelentkezve lenniük a kommenteléshez.Beállítások hitelesítéseLátogass el ide: %s.Milyen személyes adatokat gyüjtünk, és miért gyüjtjükAmikor a e-mail cím nincs biztosítva vagy nem üresAmikor a felhasználónév nincs biztosítva vagy nem üresKivel osztjuk meg az adataidWordPress alapértelmezettMegfelelően MűködikEz a beállítás akkor használatos ha a wp-login.php oldal nem elérhető, hogy kezelje az OAauth folyamatot.Nincs cURL támogatásod, kérlek engedélyezd a php.ini fájlban.Nincs megfelelő jogosultságod ahhoz, hogy telepíts és bekapcsolj pluginokat. Lépj kapcsolatba az oldalad adminisztrátorával a további teendőkkel kapcsolatban!Sikeresen bejelentkeztélA Pro Kiegészítő fel van telepítve és aktiválva van. Ha nem akarod tovább használni, visszavonhatod az aktiválást a lenti gombra kattintva.Ahhoz, hogy ez a funkció működjön, be kell kapcsolnod a ' %1$s > %2$s > %3$s '-t.A(z) %1$s fiók sikeresen össze lett kapcsolva a fiókoddal. Már könnyedén be tudsz lépni a %2$s fiókoddal is.LoginkorRegisztrációkorlanguages/nextend-facebook-connect-pt_BR.po000066600000503144152140537230014736 0ustar00msgid "" msgstr "" "Project-Id-Version: ss3\n" "POT-Creation-Date: 2020-03-26 11:08+0100\n" "PO-Revision-Date: 2020-03-26 11:08+0100\n" "Last-Translator: \n" "Language-Team: renato@modernstuff.com.br\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.2.4\n" "X-Poedit-Basepath: ../..\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n" "X-Poedit-SearchPath-0: nextend-social-login-pro\n" "X-Poedit-SearchPath-1: nextend-facebook-connect\n" "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/" "compat\n" "X-Poedit-SearchPathExcluded-1: nextend-facebook-connect/providers/google/" "compat\n" "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/" "compat\n" #: nextend-facebook-connect/NSL/GDPR.php:34 msgid "What personal data we collect and why we collect it" msgstr "Quais dados pessoais coletamos e por que os coletamos" #: nextend-facebook-connect/NSL/GDPR.php:35 #, php-format msgid "" "%1$s collects data when a visitor register, login or link the account with " "with any of the enabled social provider. It collects the following data: " "email address, name, social provider identifier and access token. Also it " "can collect profile picture and more fields with the Pro Addon's sync data " "feature." msgstr "" "%1$s coleta dados quando um visitante registra, faz login ou vincula a conta " "com qualquer um dos provedores sociais ativados. Coleta os seguintes dados: " "endereço de e-mail, nome, identificador de provedor social e token de " "acesso. Também pode coletar fotos de perfil e mais campos com o recurso de " "dados de sincronização do complemento pro." #: nextend-facebook-connect/NSL/GDPR.php:37 msgid "Who we share your data with" msgstr "Com quem compartilhamos seus dados" #: nextend-facebook-connect/NSL/GDPR.php:38 #, php-format msgid "" "%1$s stores the personal data on your site and does not share it with anyone " "except the access token which used for the authenticated communication with " "the social providers." msgstr "" "%1$s Armazena os dados pessoais em seu site e não os compartilha com " "ninguém, exceto o token de acesso usado para a comunicação autenticada com " "os provedores sociais." #: nextend-facebook-connect/NSL/GDPR.php:40 msgid "Does the plugin share personal data with third parties" msgstr "O plugin compartilha dados pessoais com terceiros?" #: nextend-facebook-connect/NSL/GDPR.php:41 #, php-format msgid "" "%1$s use the access token what the social provider gave to communicate with " "the providers to verify account and securely access personal data." msgstr "" "%1$s Usa o token de acesso que o provedor social deu para se comunicar com " "os provedores para verificar a conta e acessar com segurança os dados " "pessoais." #: nextend-facebook-connect/NSL/GDPR.php:43 msgid "How long we retain your data" msgstr "Por quanto tempo retemos seus dados" #: nextend-facebook-connect/NSL/GDPR.php:44 #, php-format msgid "" "%1$s removes the collected personal data when the user deleted from " "WordPress." msgstr "" "%1$s Remove os dados pessoais coletados quando o usuário é excluído do " "WordPress." #: nextend-facebook-connect/NSL/GDPR.php:46 msgid "Does the plugin use personal data collected by others?" msgstr "O plugin usa dados pessoais coletados por outras pessoas?" #: nextend-facebook-connect/NSL/GDPR.php:47 #, php-format msgid "" "%1$s use the personal data collected by the social providers to create " "account on your site when the visitor authorize it." msgstr "" "%1$s Usa os dados pessoais coletados pelos provedores sociais para criar uma " "conta em seu site quando o visitante autorizá-lo." #: nextend-facebook-connect/NSL/GDPR.php:49 msgid "Does the plugin store things in the browser?" msgstr "O plugin armazena coisas no navegador?" #: nextend-facebook-connect/NSL/GDPR.php:50 #, php-format msgid "" "Yes, %1$s must create a cookie for visitors who use the social login " "authorization flow. This cookie required for every provider to secure the " "communication and to redirect the user back to the last location." msgstr "" "Sim, %1$s deve criar um cookie para visitantes que usam o fluxo de " "autorização de login social. Esse cookie exigia que cada provedor protegesse " "a comunicação e redirecionasse o usuário de volta ao último local." #: nextend-facebook-connect/NSL/GDPR.php:52 msgid "Does the plugin collect telemetry data, directly or indirectly?" msgstr "O plugin coleta dados de telemetria, direta ou indiretamente?" #: nextend-facebook-connect/NSL/GDPR.php:53 #: nextend-facebook-connect/NSL/GDPR.php:56 msgid "No" msgstr "Não" #: nextend-facebook-connect/NSL/GDPR.php:55 msgid "" "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a " "third party?" msgstr "" "O plugin carrega JavaScript, rastreia pixels ou incorpora iframes de " "terceiros?" #: nextend-facebook-connect/NSL/GDPR.php:99 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57 msgid "User" msgstr "Usuário" #: nextend-facebook-connect/admin/admin.php:203 #, php-format msgid "%s needs json_decode function." msgstr "%s precisa da função json_decode." #: nextend-facebook-connect/admin/admin.php:203 msgid "Please contact your server administrator and ask for solution!" msgstr "" "Entre em contato com o seu administrador do servidor e peça uma solução!" #: nextend-facebook-connect/admin/admin.php:235 #: nextend-facebook-connect/admin/admin.php:265 msgid "Settings saved." msgstr "Configurações salvas." #: nextend-facebook-connect/admin/admin.php:244 #, fuzzy #| msgid "The authorization was successful" msgid "The activation was successful" msgstr "A autorização foi bem sucedida" #: nextend-facebook-connect/admin/admin.php:255 #, fuzzy #| msgid "Deauthorize completed." msgid "Deactivate completed." msgstr "Desautorização concluída." #: nextend-facebook-connect/admin/admin.php:433 #: nextend-facebook-connect/admin/templates-provider/menu.php:15 #: nextend-facebook-connect/admin/templates/providers.php:81 #: nextend-facebook-connect/admin/templates/providers.php:93 #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Settings" msgstr "Configurações" #: nextend-facebook-connect/admin/admin.php:516 #: nextend-facebook-connect/includes/oauth2.php:141 #: nextend-facebook-connect/includes/oauth2.php:286 #: nextend-facebook-connect/providers/facebook/facebook-client.php:84 #: nextend-facebook-connect/providers/twitter/twitter-client.php:165 #: nextend-social-login-pro/providers/apple/apple-client.php:87 #, php-format msgid "Unexpected response: %s" msgstr "Resposta inesperada: %s" #: nextend-facebook-connect/admin/admin.php:577 #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21 #, php-format msgid "" "%s detected that your login url changed. You must update the Oauth redirect " "URIs in the related social applications." msgstr "" "%s detectou que sua url de login mudou. Você deve atualizar as URIs de " "redirecionamento do Oauth nas aplicações sociais relacionados." #: nextend-facebook-connect/admin/admin.php:578 msgid "Fix Error" msgstr "Corrigir erro" #: nextend-facebook-connect/admin/admin.php:578 msgid "Oauth Redirect URI" msgstr "URI de Redirecionamento do OAuth" #: nextend-facebook-connect/admin/admin.php:588 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You need the Pro Addon to " "display Social Login buttons in %2$s login form!" msgstr "" "%1$s detectado que %2$s instalou em seu site. Você precisa Addon Pro para " "mostrar botões de Login Social no formulário de login %2$s!" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss and check Pro Addon" msgstr "Dispensar e verificar Addon Pro" #: nextend-facebook-connect/admin/admin.php:589 msgid "Dismiss" msgstr "Dispensar" #: nextend-facebook-connect/admin/admin.php:595 #, php-format msgid "" "%1$s detected that %2$s installed on your site. You must set \"Page for " "register flow\" and \"OAuth redirect uri proxy page\" in %1$s to " "work properly." msgstr "" "%1$s detectou que %2$s instalado em seu site. Você deve definir \"uma " "página para fluxo de registro\" e \"página do proxy uri do " "redirecionamento OAuth\" em %1$s para funcionar corretamente." #: nextend-facebook-connect/admin/admin.php:596 msgid "Fix now" msgstr "Corrigir erro" #: nextend-facebook-connect/admin/admin.php:620 #, fuzzy #| msgid "Activate Pro Addon" msgid "Activate your Pro Addon" msgstr "Ativar Addon Pro" #: nextend-facebook-connect/admin/admin.php:621 #, fuzzy #| msgid "" #| "To be able to use the Pro features, you need to authorize Nextend Social " #| "Connect Pro Addon. You can do this by clicking on the Authorize button " #| "below then select the related purchase." msgid "" "To be able to use the Pro features, you need to activate Nextend Social " "Connect Pro Addon. You can do this by clicking on the Activate button below " "then select the related purchase." msgstr "" "Para ser capaz de usar os recursos do Pro, você precisa autorizar o Addon " "Pro do Nextend Social Connect. Você pode fazer isso clicando no botão " "autorizar abaixo e então selecione a compra relacionada." #: nextend-facebook-connect/admin/admin.php:626 #: nextend-social-login-pro/nextend-social-login-pro.php:60 msgid "Activate" msgstr "Ativar" #: nextend-facebook-connect/admin/admin.php:724 msgid "License key" msgstr "Chave de licença" #: nextend-facebook-connect/admin/admin.php:747 msgid "OAuth proxy page" msgstr "Página do proxy OAuth" #: nextend-facebook-connect/admin/admin.php:750 msgid "Register flow page" msgstr "Registrar página de fluxo" #: nextend-facebook-connect/admin/interim.php:12 #: nextend-facebook-connect/admin/interim.php:23 msgid "You have logged in successfully." msgstr "Você entrou com sucesso." #: nextend-facebook-connect/admin/templates-provider/buttons.php:79 msgid "Login label" msgstr "Rótulo de Login" #: nextend-facebook-connect/admin/templates-provider/buttons.php:84 #: nextend-facebook-connect/admin/templates-provider/buttons.php:95 #: nextend-facebook-connect/admin/templates-provider/buttons.php:106 #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #: nextend-facebook-connect/admin/templates-provider/buttons.php:165 #: nextend-facebook-connect/admin/templates/settings/privacy.php:53 msgid "Reset to default" msgstr "Redefinir para o padrão" #: nextend-facebook-connect/admin/templates-provider/buttons.php:89 msgid "Link label" msgstr "Rótulo de Vincular" #: nextend-facebook-connect/admin/templates-provider/buttons.php:101 msgid "Unlink label" msgstr "Rótulo de Desvincular" #: nextend-facebook-connect/admin/templates-provider/buttons.php:112 msgid "Default button" msgstr "Botão padrão" #: nextend-facebook-connect/admin/templates-provider/buttons.php:128 #: nextend-facebook-connect/admin/templates-provider/buttons.php:158 msgid "Use custom button" msgstr "Usar botão personalizado" #: nextend-facebook-connect/admin/templates-provider/buttons.php:135 #, php-format msgid "Use the %s in your custom button's code to make the label show up." msgstr "" "Usar o %s em seu código de botão personalizado para fazer o rótulo aparecer." #: nextend-facebook-connect/admin/templates-provider/buttons.php:143 msgid "Icon button" msgstr "Ícone do botão" #: nextend-facebook-connect/admin/templates-provider/buttons.php:174 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140 #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170 #: nextend-facebook-connect/admin/templates/settings/comment.php:73 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171 #: nextend-facebook-connect/admin/templates/settings/privacy.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186 #: nextend-facebook-connect/admin/templates/settings/userpro.php:167 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:254 #: nextend-facebook-connect/providers/facebook/admin/settings.php:57 #: nextend-facebook-connect/providers/google/admin/settings.php:62 #: nextend-facebook-connect/providers/twitter/admin/settings.php:48 #: nextend-social-login-pro/providers/amazon/admin/settings.php:47 #: nextend-social-login-pro/providers/disqus/admin/settings.php:47 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47 #: nextend-social-login-pro/providers/paypal/admin/settings.php:60 #: nextend-social-login-pro/providers/vk/admin/settings.php:48 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47 msgid "Save Changes" msgstr "Salvar Alterações" #: nextend-facebook-connect/admin/templates-provider/menu.php:13 #: nextend-facebook-connect/admin/templates/providers.php:61 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17 #: nextend-facebook-connect/providers/google/admin/getting-started.php:9 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8 msgid "Getting Started" msgstr "Iniciando" #: nextend-facebook-connect/admin/templates-provider/menu.php:17 msgid "Buttons" msgstr "Botões" #: nextend-facebook-connect/admin/templates-provider/menu.php:21 msgid "Sync data" msgstr "Sincronizar dados" #: nextend-facebook-connect/admin/templates-provider/menu.php:24 msgid "Usage" msgstr "Utilização" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11 msgid "Other settings" msgstr "Outras configurações" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16 msgid "Username prefix on register" msgstr "Prefixo do nome de usuário no registro" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23 msgid "Fallback username prefix on register" msgstr "Prefixo do nome de usuário de retorno no registro" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27 msgid "Used when username is invalid or not stored" msgstr "Usado quando o nome de usuário é inválido ou não é armazenado" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32 #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #: nextend-facebook-connect/admin/templates/settings/privacy.php:35 msgid "Terms and conditions" msgstr "Termos e Condições" #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43 #, php-format msgid "Override global \"%1$s\"" msgstr "Substituir global \"%1$s\"" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18 #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12 msgid "PRO settings" msgstr "Configurações PRO" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32 msgid "Ask E-mail on registration" msgstr "Solicitar E-mail no registro" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69 msgid "Never" msgstr "Nunca" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38 msgid "When email is not provided or empty" msgstr "Quando o email não é informado ou vazio" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72 msgid "Always" msgstr "Sempre" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50 msgid "Ask Username on registration" msgstr "Solicitar Nome de Usuário no registro" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53 msgid "Never, generate automatically" msgstr "Nunca, gerar automaticamente" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56 msgid "When username is empty or invalid" msgstr "Quando o nome de usuário estiver vazio ou é inválido" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64 msgid "Ask Password on registration" msgstr "Pedir senha no registro" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77 #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81 msgid "Automatically connect the existing account upon registration" msgstr "Conectar automaticamente a conta existente durante o registro" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85 #: nextend-facebook-connect/admin/templates/providers.php:39 #: nextend-facebook-connect/admin/templates/settings/general.php:48 #: nextend-facebook-connect/admin/templates/settings/general.php:212 #: nextend-facebook-connect/admin/templates/settings/general.php:227 #: nextend-facebook-connect/admin/templates/settings/general.php:245 #: nextend-facebook-connect/includes/provider-admin.php:217 msgid "Disabled" msgstr "Desativado" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88 msgid "Automatic, based on email address" msgstr "Automaticamente, baseado no endereço de email" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93 msgid "Disable login for the selected roles" msgstr "Desabilitar login para funções selecionadas" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113 msgid "Default roles for user who registered with this provider" msgstr "Funções padrão para usuário que registrou com este fornecedor" #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:99 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:118 #: nextend-facebook-connect/admin/templates/settings/comment.php:39 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105 #: nextend-facebook-connect/admin/templates/settings/userpro.php:51 #: nextend-facebook-connect/admin/templates/settings/userpro.php:102 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180 #: nextend-facebook-connect/widget.php:42 msgid "Default" msgstr "Padrão" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50 #: nextend-facebook-connect/includes/userData.php:188 msgid "Register" msgstr "Cadastrar" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58 msgid "Login" msgstr "Log in" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66 msgid "Link" msgstr "Link" #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84 msgid "Store in meta key" msgstr "Armazenar na chave meta" #: nextend-facebook-connect/admin/templates-provider/usage.php:9 msgid "Shortcode" msgstr "Shortcode" #: nextend-facebook-connect/admin/templates-provider/usage.php:12 #, fuzzy #| msgid "Import" msgid "Important!" msgstr "Importar" #: nextend-facebook-connect/admin/templates-provider/usage.php:13 msgid "The shortcodes are only rendered for users who haven't logged in yet!" msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:14 msgid "See the full list of shortcode parameters." msgstr "" #: nextend-facebook-connect/admin/templates-provider/usage.php:31 msgid "Simple link" msgstr "Link simples" #: nextend-facebook-connect/admin/templates-provider/usage.php:34 msgid "Click here to login or register" msgstr "Clique aqui para logar ou registrar" #: nextend-facebook-connect/admin/templates-provider/usage.php:39 msgid "Image button" msgstr "Botão de imagem" #: nextend-facebook-connect/admin/templates-provider/usage.php:42 msgid "Image url" msgstr "URL da Imagem" #: nextend-facebook-connect/admin/templates/debug.php:7 #: nextend-facebook-connect/admin/templates/header.php:20 msgid "Debug" msgstr "Depuração" #: nextend-facebook-connect/admin/templates/debug.php:41 msgid "Test network connection with providers" msgstr "Teste a conexão da rede com provedores" #: nextend-facebook-connect/admin/templates/debug.php:48 msgid "You don't have cURL support, please enable it in php.ini!" msgstr "Você não tem suporte a cURL, habilite-o em php.ini!" #: nextend-facebook-connect/admin/templates/debug.php:58 #, php-format msgid "Test %1$s connection" msgstr "Teste %1$s conexão" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2 msgid "Fix Oauth Redirect URIs" msgstr "Corrigir URIs de Redirecionamento Oauth" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13 msgid "Every Oauth Redirect URI seems fine" msgstr "Todos URIs de Redirecionamento Oauth parecem corretos" #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32 msgid "Got it" msgstr "Entendi" #: nextend-facebook-connect/admin/templates/global-settings.php:28 #: nextend-facebook-connect/admin/templates/menu.php:8 msgid "Global Settings" msgstr "Configurações globais" #: nextend-facebook-connect/admin/templates/global-settings.php:31 msgid "General" msgstr "Geral" #: nextend-facebook-connect/admin/templates/global-settings.php:33 msgid "Privacy" msgstr "Privacidade" #: nextend-facebook-connect/admin/templates/global-settings.php:35 #: nextend-facebook-connect/admin/templates/settings/login-form.php:9 #: nextend-facebook-connect/admin/templates/settings/userpro.php:18 msgid "Login Form" msgstr "Formulário de login" #: nextend-facebook-connect/admin/templates/global-settings.php:39 msgid "Comment" msgstr "Comentário" #: nextend-facebook-connect/admin/templates/header.php:14 msgid "Docs" msgstr "Docs" #: nextend-facebook-connect/admin/templates/header.php:17 msgid "Support" msgstr "Suporte" #: nextend-facebook-connect/admin/templates/header.php:23 #: nextend-facebook-connect/admin/templates/menu.php:12 msgid "Pro Addon" msgstr "Complemento pro" #: nextend-facebook-connect/admin/templates/menu.php:6 msgid "Providers" msgstr "Provedores" #: nextend-facebook-connect/admin/templates/pro-addon.php:13 msgid "Error" msgstr "Erro" #: nextend-facebook-connect/admin/templates/pro-addon.php:14 msgid "" "You don’t have sufficient permissions to install and activate plugins. " "Please contact your site’s administrator!" msgstr "" "Você não tem permissões suficientes para instalar e ativar plugins. Por " "favor contacte seu administrador do site!" #: nextend-facebook-connect/admin/templates/pro-addon.php:22 #: nextend-facebook-connect/admin/templates/pro-addon.php:32 #: nextend-facebook-connect/admin/templates/pro.php:34 msgid "Activate Pro Addon" msgstr "Ativar Addon Pro" #: nextend-facebook-connect/admin/templates/pro-addon.php:23 msgid "" "Pro Addon is installed but not activated. To be able to use the Pro " "features, you need to activate it." msgstr "" "Addon Pro está instalado mas não activado. Para ser capaz de usar os " "recursos do Pro, você precisa ativá-lo." #: nextend-facebook-connect/admin/templates/pro-addon.php:37 #: nextend-facebook-connect/admin/templates/pro-addon.php:142 #, fuzzy #| msgid "Activate Pro Addon" msgid "Deactivate Pro Addon" msgstr "Ativar Addon Pro" #: nextend-facebook-connect/admin/templates/pro-addon.php:48 #: nextend-facebook-connect/admin/templates/pro.php:43 msgid "Pro Addon is not installed" msgstr "Addon pro não está instalado" #: nextend-facebook-connect/admin/templates/pro-addon.php:50 msgid "" "To access the Pro features, you need to install and activate the Pro Addon." msgstr "" "Para acessar os recursos Pro, você precisa instalar e ativar o Addon Pro." #: nextend-facebook-connect/admin/templates/pro-addon.php:59 #, php-format msgid "Install %s now" msgstr "Instalar %s agora" #: nextend-facebook-connect/admin/templates/pro-addon.php:60 #: nextend-facebook-connect/admin/templates/pro.php:47 msgid "Install Pro Addon" msgstr "Instale o Addon Pro" #: nextend-facebook-connect/admin/templates/pro-addon.php:94 msgid "Activating..." msgstr "Ativando..." #: nextend-facebook-connect/admin/templates/pro-addon.php:118 #, fuzzy #| msgid "Not Available" msgid "Not compatible!" msgstr "Não Disponível" #: nextend-facebook-connect/admin/templates/pro-addon.php:119 #, fuzzy, php-format #| msgid "Please update %1$s to version %2$s or newer." msgid "" "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or " "newer." msgstr "Por favor, atualize %1$s para versão %2$s ou mais recente." #: nextend-facebook-connect/admin/templates/pro-addon.php:123 #, fuzzy #| msgid "Activate Pro Addon" msgid "Update Pro Addon" msgstr "Ativar Addon Pro" #: nextend-facebook-connect/admin/templates/pro-addon.php:133 msgid "Pro Addon is installed and activated" msgstr "Addon Pro está instalado e ativado" #: nextend-facebook-connect/admin/templates/pro-addon.php:135 #, fuzzy #| msgid "" #| "You installed and activated the Pro Addon. If you don’t want to use it " #| "anymore, you can deauthorize using the button below." msgid "" "You installed and activated the Pro Addon. If you don’t want to use it " "anymore, you can deactivate using the button below." msgstr "" "Você instalou e ativou o Addon Pro. Se você não desejar usá-lo mais, você " "pode desautorizar usando o botão baixo." #: nextend-facebook-connect/admin/templates/pro.php:8 msgid "Get Pro Addon to unlock more features" msgstr "Obter o Addon Pro para desbloquear mais recursos" #: nextend-facebook-connect/admin/templates/pro.php:9 #, php-format msgid "" "The features below are available in %s Pro Addon. Get it today and tweak the " "awesome settings." msgstr "" "Os recursos abaixo estão disponíveis em %s Addon Pro. Obtenha hoje e ajuste " "as configurações incríveis." #: nextend-facebook-connect/admin/templates/pro.php:10 msgid "" "If you already have a license, you can Authorize your Pro Addon. Otherwise " "you can purchase it using the button below." msgstr "" "Se você já possui uma licença, você pode autorizar seu Addon Pro. Caso " "contrário, você pode comprá-lo usando o botão abaixo." #: nextend-facebook-connect/admin/templates/pro.php:14 msgid "Buy Pro Addon" msgstr "Comprar Addon Pro" #: nextend-facebook-connect/admin/templates/pro.php:16 msgid "Authorize Pro Addon" msgstr "Autorize Addon Pro" #: nextend-facebook-connect/admin/templates/pro.php:25 msgid "Pro Addon is not activated" msgstr "Addon Pro não está ativado" #: nextend-facebook-connect/admin/templates/pro.php:26 #: nextend-facebook-connect/admin/templates/pro.php:44 msgid "" "To be able to use the Pro features, you need to install and activate the " "Nextend Social Connect Pro Addon." msgstr "" "Para poder usar os recursos Pro, você precisa instalar e ativar o Addon Pro " "do Nextend Social Connect." #: nextend-facebook-connect/admin/templates/providers.php:30 msgid "Not Available" msgstr "Não Disponível" #: nextend-facebook-connect/admin/templates/providers.php:33 msgid "Not Configured" msgstr "Não Configurado" #: nextend-facebook-connect/admin/templates/providers.php:36 msgid "Not Verified" msgstr "Não Verificado" #: nextend-facebook-connect/admin/templates/providers.php:42 #: nextend-facebook-connect/admin/templates/settings/general.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:215 #: nextend-facebook-connect/admin/templates/settings/general.php:230 #: nextend-facebook-connect/admin/templates/settings/general.php:248 #: nextend-facebook-connect/includes/provider-admin.php:220 #: nextend-facebook-connect/providers/google/admin/settings.php:53 #: nextend-social-login-pro/providers/paypal/admin/settings.php:51 msgid "Enabled" msgstr "Ativado" #: nextend-facebook-connect/admin/templates/providers.php:54 msgid "Upgrade Now" msgstr "Atualizar agora" #: nextend-facebook-connect/admin/templates/providers.php:69 #: nextend-facebook-connect/includes/provider-admin.php:204 msgid "Verify Settings" msgstr "Verificar Configurações" #: nextend-facebook-connect/admin/templates/providers.php:77 #: nextend-facebook-connect/includes/provider-admin.php:249 msgid "Enable" msgstr "Habilitar" #: nextend-facebook-connect/admin/templates/providers.php:89 #: nextend-facebook-connect/includes/provider-admin.php:257 msgid "Disable" msgstr "Desativar" #: nextend-facebook-connect/admin/templates/providers.php:114 msgid "Stay Updated" msgstr "Ficar atualizado" #: nextend-facebook-connect/admin/templates/providers.php:115 msgid "" "Receive info on the latest plugin updates and social provider related " "changes." msgstr "" "Receba informações sobre as atualizações mais recentes do plugin e as " "alterações relacionadas ao provedor social." #: nextend-facebook-connect/admin/templates/providers.php:116 msgid "Enter your email address" msgstr "Digite seu endereço de e-mail" #: nextend-facebook-connect/admin/templates/providers.php:120 msgid "Subscribe" msgstr "Assinante" #: nextend-facebook-connect/admin/templates/providers.php:136 msgid "Saving..." msgstr "Salvando..." #: nextend-facebook-connect/admin/templates/providers.php:137 msgid "Saving failed" msgstr "O salvamento falhou" #: nextend-facebook-connect/admin/templates/providers.php:138 msgid "Order Saved" msgstr "Pedido Salvo" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "Successfully subscribed!" msgstr "Inscrito com sucesso!" #: nextend-facebook-connect/admin/templates/providers.php:207 msgid "" "We'll be bringing you all the latest news and updates about Social Login - " "right to your inbox." msgstr "" "Apresentaremos todas as últimas novidades e atualizações sobre o Login " "Social, diretamente na sua caixa de entrada." #: nextend-facebook-connect/admin/templates/providers.php:214 msgid "The entered email address is invalid!" msgstr "O endereço de e-mail inserido é inválido!" #: nextend-facebook-connect/admin/templates/review.php:14 msgid "Rate your experience!" msgstr "Avalie sua experiência!" #: nextend-facebook-connect/admin/templates/review.php:15 msgid "Hated it" msgstr "Odiou" #: nextend-facebook-connect/admin/templates/review.php:16 msgid "Disliked it" msgstr "Não gostou" #: nextend-facebook-connect/admin/templates/review.php:17 msgid "It was ok" msgstr "Foi ok" #: nextend-facebook-connect/admin/templates/review.php:18 msgid "Liked it" msgstr "Gostou" #: nextend-facebook-connect/admin/templates/review.php:19 msgid "Loved it" msgstr "Adorou" #: nextend-facebook-connect/admin/templates/review.php:31 msgid "Please Leave a Review" msgstr "Por favor, deixe uma revisão" #: nextend-facebook-connect/admin/templates/review.php:32 msgid "" "If you are happy with Nextend Social Login and can take a minute " "please leave us a review. It will be a tremendous help for us!" msgstr "" "Se você está feliz com o Nextend Social Login e pode nos dar um " "minuto, deixe-nos um comentário. Será uma tremenda ajuda para nós!" #: nextend-facebook-connect/admin/templates/review.php:34 msgid "Ok, you deserve it" msgstr "Ok" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96 msgid "Register form" msgstr "Formulário de registo" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23 msgid "No Connect button" msgstr "Nenhum botão Conectar" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26 msgid "Connect button before register" msgstr "Botão Conectar antes de registrar" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:221 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:226 msgid "Action:" msgstr "Ação:" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31 msgid "Connect button before account details" msgstr "Botão Conectar antes de detalhes da conta" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36 msgid "Connect button after register" msgstr "Botão Conectar após registrar" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44 msgid "Register button style" msgstr "Estilo do botão do formulário de login" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:105 #: nextend-facebook-connect/admin/templates/settings/comment.php:45 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111 #: nextend-facebook-connect/admin/templates/settings/userpro.php:57 #: nextend-facebook-connect/admin/templates/settings/userpro.php:108 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30 #: nextend-facebook-connect/widget.php:47 msgid "Icon" msgstr "Ícone" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:64 #, fuzzy #| msgid "Login form" msgid "Sidebar Login form" msgstr "Formulário de login" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:69 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:85 #: nextend-facebook-connect/admin/templates/settings/login-form.php:17 #: nextend-facebook-connect/admin/templates/settings/login-form.php:30 #: nextend-facebook-connect/admin/templates/settings/login-form.php:47 #: nextend-facebook-connect/admin/templates/settings/userpro.php:26 #: nextend-facebook-connect/admin/templates/settings/userpro.php:39 msgid "Hide login buttons" msgstr "Ocultar botões de login" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:72 #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88 #: nextend-facebook-connect/admin/templates/settings/login-form.php:14 #: nextend-facebook-connect/admin/templates/settings/login-form.php:27 #: nextend-facebook-connect/admin/templates/settings/login-form.php:44 #: nextend-facebook-connect/admin/templates/settings/userpro.php:23 #: nextend-facebook-connect/admin/templates/settings/userpro.php:36 #: nextend-facebook-connect/widget.php:76 msgid "Show login buttons" msgstr "Mostrar botões de login" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:73 msgid "" "Some themes that use BuddyPress, display the social buttons twice in the " "same login form. This option can disable the one for: " "bp_sidebar_login_form action. " msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:80 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38 msgid "Login form" msgstr "Formulário de login" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:93 #, fuzzy #| msgid "Login form button style" msgid "Login button style" msgstr "Estilo do botão do formulário de login" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:112 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:48 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52 #: nextend-facebook-connect/admin/templates/settings/userpro.php:64 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58 msgid "Login layout" msgstr "Layout de login" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:110 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124 #: nextend-facebook-connect/admin/templates/settings/userpro.php:70 #: nextend-facebook-connect/admin/templates/settings/userpro.php:121 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186 msgid "Below" msgstr "Abaixo" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:130 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130 #: nextend-facebook-connect/admin/templates/settings/userpro.php:76 #: nextend-facebook-connect/admin/templates/settings/userpro.php:127 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192 msgid "Below with separator" msgstr "Abaixo com separador" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:136 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136 #: nextend-facebook-connect/admin/templates/settings/userpro.php:82 #: nextend-facebook-connect/admin/templates/settings/userpro.php:133 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198 msgid "Above" msgstr "Acima" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:142 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142 #: nextend-facebook-connect/admin/templates/settings/userpro.php:88 #: nextend-facebook-connect/admin/templates/settings/userpro.php:139 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204 msgid "Above with separator" msgstr "Acima com separador" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:150 #: nextend-facebook-connect/admin/templates/settings/comment.php:53 #: nextend-facebook-connect/admin/templates/settings/login-form.php:53 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:151 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:166 #: nextend-facebook-connect/admin/templates/settings/userpro.php:147 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:233 #, fuzzy #| msgid "Button skin" msgid "Button alignment" msgstr "Skin de botão" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155 #: nextend-facebook-connect/admin/templates/settings/comment.php:58 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140 #: nextend-facebook-connect/admin/templates/settings/login-form.php:58 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:156 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171 #: nextend-facebook-connect/admin/templates/settings/userpro.php:152 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:238 #: nextend-facebook-connect/widget.php:57 msgid "Left" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:158 #: nextend-facebook-connect/admin/templates/settings/comment.php:61 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:143 #: nextend-facebook-connect/admin/templates/settings/login-form.php:61 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:159 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:174 #: nextend-facebook-connect/admin/templates/settings/userpro.php:155 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:241 #: nextend-facebook-connect/widget.php:62 msgid "Center" msgstr "" #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162 #: nextend-facebook-connect/admin/templates/settings/comment.php:65 #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147 #: nextend-facebook-connect/admin/templates/settings/login-form.php:65 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:163 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178 #: nextend-facebook-connect/admin/templates/settings/userpro.php:159 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:245 #: nextend-facebook-connect/widget.php:67 #, fuzzy #| msgid "Light" msgid "Right" msgstr "Claro" #: nextend-facebook-connect/admin/templates/settings/comment.php:18 msgid "Login button" msgstr "Botão de login" #: nextend-facebook-connect/admin/templates/settings/comment.php:23 #: nextend-facebook-connect/admin/templates/settings/privacy.php:42 msgid "Show" msgstr "Mostrar" #: nextend-facebook-connect/admin/templates/settings/comment.php:26 msgid "Hide" msgstr "Esconder" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 #, php-format msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work" msgstr "" "Você precisa ativar o ' %1$s > %2$s > %3$s ' para este recurso funcionar" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Discussion" msgstr "Discussão" #: nextend-facebook-connect/admin/templates/settings/comment.php:28 msgid "Users must be registered and logged in to comment" msgstr "Os utilizadores devem estar registrados e logados para comentar" #: nextend-facebook-connect/admin/templates/settings/comment.php:33 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18 msgid "Button style" msgstr "Estilo do botão:" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29 msgid "Target window" msgstr "Janela de destino" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34 msgid "Prefer popup" msgstr "Prefir pop-up" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37 msgid "Prefer new tab" msgstr "Prefir nova guia" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40 msgid "Prefer same window" msgstr "Prefir mesma janela" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46 msgid "Registration notification sent to" msgstr "Notificação de registro enviada para" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51 #: nextend-facebook-connect/admin/templates/settings/general.php:242 msgid "WordPress default" msgstr "Por omissão do WordPress" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54 msgid "Nobody" msgstr "Ninguém" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60 msgid "Admin" msgstr "Admin" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63 msgid "User and Admin" msgstr "Usuário e Admin" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69 #, fuzzy #| msgid "Unlink label" msgid "Unlink" msgstr "Rótulo de Desvincular" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75 #, fuzzy #| msgid "Social accounts" msgid "Allow Social account unlink" msgstr "Contas redes sociais" #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81 #, fuzzy #| msgid "Disable login for the selected roles" msgid "Disable Admin bar for roles" msgstr "Desabilitar login para funções selecionadas" #: nextend-facebook-connect/admin/templates/settings/general.php:43 msgid "Debug mode" msgstr "Modo de depuração" #: nextend-facebook-connect/admin/templates/settings/general.php:56 msgid "Page for register flow" msgstr "Página para fluxo de registro" #: nextend-facebook-connect/admin/templates/settings/general.php:66 #: nextend-facebook-connect/admin/templates/settings/general.php:91 msgid "None" msgstr "Nenhum" #: nextend-facebook-connect/admin/templates/settings/general.php:74 msgid "" "This setting is used when you request additional data from the users (such " "as email address) and to display the Terms and conditions." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #, fuzzy, php-format #| msgid "" #| "First create a new page for register flow and insert the following " #| "shortcode: %1$s then select this page above" msgid "" "%2$s First create a new page and insert the following shortcode: %1$s then " "select this page above" msgstr "" "Primeiro crie uma nova página para o fluxo de registro e insira o seguinte " "shortcode: %1$s em seguida, selecione esta página acima" #: nextend-facebook-connect/admin/templates/settings/general.php:75 #: nextend-facebook-connect/admin/templates/settings/general.php:101 #, fuzzy #| msgid "Usage" msgid "Usage:" msgstr "Utilização" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 #, php-format msgid "" "%1$s You won't be able to reach the selected page unless a social login/" "registration happens." msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:76 #: nextend-facebook-connect/admin/templates/settings/general.php:102 #, fuzzy #| msgid "Import" msgid "Important:" msgstr "Importar" #: nextend-facebook-connect/admin/templates/settings/general.php:80 msgid "OAuth redirect uri proxy page" msgstr "Página do proxy uri do redirecionamento OAuth" #: nextend-facebook-connect/admin/templates/settings/general.php:100 #, fuzzy #| msgid "" #| "Pick a custom page when wp-login.php not available to handle the OAuth " #| "flow." msgid "" "You can use this setting when wp-login.php page is not available to handle " "the OAuth flow." msgstr "" "Escolha uma página personalizada quando o wp-login.php não estiver " "disponível para manipular o fluxo do OAuth." #: nextend-facebook-connect/admin/templates/settings/general.php:101 #, fuzzy, php-format #| msgid "" #| "First create a new page for register flow and insert the following " #| "shortcode: %1$s then select this page above" msgid "%1$s First create a new page then select this page above." msgstr "" "Primeiro crie uma nova página para o fluxo de registro e insira o seguinte " "shortcode: %1$s em seguida, selecione esta página acima" #: nextend-facebook-connect/admin/templates/settings/general.php:108 msgid "Prevent external redirect overrides" msgstr "Evitar substituições de redirecionamento externo" #: nextend-facebook-connect/admin/templates/settings/general.php:114 msgid "Disable external redirects" msgstr "Desativar redirecionamentos externos" #: nextend-facebook-connect/admin/templates/settings/general.php:121 msgid "Default redirect url" msgstr "URL de redirecionamento padrão" #: nextend-facebook-connect/admin/templates/settings/general.php:134 #: nextend-facebook-connect/admin/templates/settings/general.php:172 msgid "for Login" msgstr "Login Social" #: nextend-facebook-connect/admin/templates/settings/general.php:149 #: nextend-facebook-connect/admin/templates/settings/general.php:187 msgid "for Register" msgstr "Cadastrar" #: nextend-facebook-connect/admin/templates/settings/general.php:159 msgid "Fixed redirect url" msgstr "URL de redirecionamento fixo" #: nextend-facebook-connect/admin/templates/settings/general.php:196 msgid "Blacklisted redirects" msgstr "Redirecionamentos de Blacklisted" #: nextend-facebook-connect/admin/templates/settings/general.php:202 msgid "If you want to blacklist redirect url params. One pattern per line." msgstr "" "Se você deseja redirecionar os parâmetros de url da blacklist. Um padrão por " "linha." #: nextend-facebook-connect/admin/templates/settings/general.php:207 #, fuzzy #| msgid "Show login buttons" msgid "Support login restrictions" msgstr "Mostrar botões de login" #: nextend-facebook-connect/admin/templates/settings/general.php:217 #, php-format msgid "Please visit to our %1$s to check what plugins are supported!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:222 msgid "Display avatars in \"All media items\"" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:232 msgid "" "Enabling this option can speed up loading images in Media Library - Grid " "view!" msgstr "" #: nextend-facebook-connect/admin/templates/settings/general.php:237 msgid "Membership" msgstr "Membros" #: nextend-facebook-connect/admin/templates/settings/general.php:250 #, fuzzy #| msgid "Allow registration with Social login" msgid "Allow registration with Social login." msgstr "Permitir registro com Social login" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29 #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33 #: nextend-facebook-connect/admin/templates/settings/userpro.php:45 msgid "Login form button style" msgstr "Estilo do botão do formulário de login" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66 msgid "Below and floating" msgstr "Abaixo e flutuante" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:85 msgid "Embedded Login form button style" msgstr "Estilos do botão de formulário Login incorporado" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:104 msgid "Embedded Login layout" msgstr "Layout do Login incorporado" #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:135 #, fuzzy #| msgid "Embedded Login form button style" msgid "Embedded login form button alignment" msgstr "Estilos do botão de formulário Login incorporado" #: nextend-facebook-connect/admin/templates/settings/login-form.php:22 #: nextend-facebook-connect/includes/userData.php:137 msgid "Registration Form" msgstr "Formulário de Registo" #: nextend-facebook-connect/admin/templates/settings/login-form.php:36 msgid "Embedded login form" msgstr "Formulário Login incorporado" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69 msgid "Sign Up form" msgstr "Formulário de inscrição" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74 msgid "No Connect button in Sign Up form" msgstr "Nenhum botão conectar no formulário de inscrição" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167 msgid "Connect button on" msgstr "Conectar botão em" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84 msgid "Sign Up form button style" msgstr "Estilo do botão do formulário de login" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103 msgid "Sign Up layout" msgstr "Inscreva-se layout" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212 msgid "Account details" msgstr "Detalhes da Conta" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155 msgid "No link buttons" msgstr "Sem link nos botões" #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143 #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158 msgid "Link buttons after account details" msgstr "Botão Vincular após detalhes da conta" #: nextend-facebook-connect/admin/templates/settings/privacy.php:6 #: nextend-facebook-connect/nextend-social-login.php:143 msgid "" "By clicking Register, you accept our Privacy Policy" msgstr "" "Ao clicar em registrar, você aceita nossa política de privacidade" #: nextend-facebook-connect/admin/templates/settings/privacy.php:59 msgid "Store" msgstr "Armazenar" #: nextend-facebook-connect/admin/templates/settings/privacy.php:65 msgid "First and last name" msgstr "Primeiro e último nome" #: nextend-facebook-connect/admin/templates/settings/privacy.php:68 msgid "When not enabled, username will be randomly generated." msgstr "Quando não ativado, o nome de usuário será gerado aleatoriamente." #: nextend-facebook-connect/admin/templates/settings/privacy.php:78 #: nextend-social-login-pro/class-provider-extension.php:322 msgid "Email" msgstr "E-mail" #: nextend-facebook-connect/admin/templates/settings/privacy.php:81 msgid "When not enabled, email will be empty." msgstr "Quando não estiver ativado, o e-mail estará vazio." #: nextend-facebook-connect/admin/templates/settings/privacy.php:91 #: nextend-facebook-connect/includes/avatar.php:59 msgid "Avatar" msgstr "Avatar" #: nextend-facebook-connect/admin/templates/settings/privacy.php:102 #: nextend-facebook-connect/includes/provider.php:1066 msgid "Access token" msgstr "Token de acesso" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23 msgid "No Connect button in Login form" msgstr "Nenhum botão conectar no formulário de Login" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89 msgid "No Connect button in Register form" msgstr "Nenhum botão Conectar no formulário de login" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99 #: nextend-facebook-connect/admin/templates/settings/userpro.php:96 msgid "Register form button style" msgstr "Estilo do botão do formulário de login" #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118 #: nextend-facebook-connect/admin/templates/settings/userpro.php:115 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116 msgid "Register layout" msgstr "Cadastrar layout" #: nextend-facebook-connect/admin/templates/settings/userpro.php:31 msgid "Register Form" msgstr "Formulário de registo" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43 msgid "No Connect button in login form" msgstr "Nenhum botão Conectar no formulário de login" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101 msgid "No Connect button in register form" msgstr "Nenhum botão Conectar no formulário de login" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154 msgid "Billing form" msgstr "Formulário de faturamento" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159 msgid "No Connect button in billing form" msgstr "Nenhum botão Connectar no formulário de cobrança" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174 msgid "Billing layout" msgstr "Layout de cobrança" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217 #, fuzzy #| msgid "Connect button before account details" msgid "No Connect buttons in account details form" msgstr "Botão Conectar antes de detalhes da conta" #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:220 #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:225 msgid "Link buttons on" msgstr "Link de botões em" #: nextend-facebook-connect/admin/templates/test-connection.php:42 #, php-format msgid "Network connection successful: %1$s" msgstr "Conexão de rede bem sucedida: %1$s" #: nextend-facebook-connect/admin/templates/test-connection.php:49 #, php-format msgid "Network connection failed: %1$s" msgstr "Falha na conexão de rede: %1$s" #: nextend-facebook-connect/admin/templates/test-connection.php:52 msgid "" "Please contact with your hosting provider to resolve the network issue " "between your server and the provider." msgstr "" "Entre em contato com o seu provedor de hospedagem para resolver o problema " "de rede entre o seu servidor e o provedor." #: nextend-facebook-connect/includes/avatar.php:60 msgid "Manage Avatar" msgstr "Gerenciar avatar" #: nextend-facebook-connect/includes/avatar.php:61 #, php-format msgid "Avatar (%s)" msgid_plural "Avatar (%s)" msgstr[0] "Avatar (%s)" msgstr[1] "Avatar (%s)" #: nextend-facebook-connect/includes/compat-wp-login.php:49 #, php-format msgid "%1$s ‹ %2$s — WordPress" msgstr "%1$s ‹ %2$s — WordPress" #: nextend-facebook-connect/includes/compat-wp-login.php:115 msgid "https://wordpress.org/" msgstr "https://wordpress.org/" #: nextend-facebook-connect/includes/compat-wp-login.php:116 msgid "Powered by WordPress" msgstr "Alimentado por WordPress" #: nextend-facebook-connect/includes/compat-wp-login.php:260 #, php-format msgctxt "site" msgid "← Back to %s" msgstr "← voltar para %s" #: nextend-facebook-connect/includes/provider-admin.php:198 msgid "Your configuration needs to be verified" msgstr "Sua configuração precisa ser verificada" #: nextend-facebook-connect/includes/provider-admin.php:199 msgid "" "Before you can start letting your users register with your app it needs to " "be tested. This test makes sure that no users will have troubles with the " "login and registration process.
If you see error message in the popup " "check the copied ID and secret or the app itself. Otherwise your settings " "are fine." msgstr "" "Antes que você possa começar a deixar seus usuários registrarem com seu app " "ele precisa ser testado. Este teste garante que nenhum usuário terá " "problemas com o processo de login e registro.
Se você ver mensagem de " "erro no popup verifique os ID e segredo ou mesmo o app. Caso contrário suas " "configurações estão funcionando." #: nextend-facebook-connect/includes/provider-admin.php:205 msgid "Please save your changes to verify settings." msgstr "Por favor salve suas alterações para verificar suas configurações." #: nextend-facebook-connect/includes/provider-admin.php:213 msgid "Works Fine" msgstr "Funcionando bem" #: nextend-facebook-connect/includes/provider-admin.php:227 #, php-format msgid "" "This provider is currently disabled, which means that users can’t register " "or login via their %s account." msgstr "" "Este provedor está desativado no momento, o que significa que os usuários " "não podem registar-se ou iniciar sessão através de sua conta do %s." #: nextend-facebook-connect/includes/provider-admin.php:230 #, php-format msgid "" "This provider works fine, but you can test it again. If you don’t want to " "let users register or login with %s anymore you can disable it." msgstr "" "Este fornecedor está funcionando bem, mas você pode testar de novo. Se você " "não quer deixar mais usuários se registrarem e se logarem com %s você pode " "desativá-lo." #: nextend-facebook-connect/includes/provider-admin.php:233 #, php-format msgid "" "This provider is currently enabled, which means that users can register or " "login via their %s account." msgstr "" "Este provedor está ativado no momento, o que significa que os usuários podem " "registar-se ou iniciar sessão através de sua conta do %s." #: nextend-facebook-connect/includes/provider-admin.php:241 msgid "Verify Settings Again" msgstr "Verificar Configurações De Novo" #: nextend-facebook-connect/includes/provider-admin.php:242 msgid "Please save your changes before verifying settings." msgstr "Salve suas alterações antes de verificar as configurações." #: nextend-facebook-connect/includes/provider.php:350 #: nextend-facebook-connect/includes/provider.php:693 #: nextend-facebook-connect/includes/provider.php:698 msgid "Authentication successful" msgstr "Autenticação bem sucedida" #: nextend-facebook-connect/includes/provider.php:635 #: nextend-facebook-connect/includes/user.php:127 msgid "Authentication error" msgstr "Erro de autenticação" #: nextend-facebook-connect/includes/provider.php:650 msgid "Unlink successful." msgstr "Desvinculação bem sucedida." #: nextend-facebook-connect/includes/provider.php:652 msgid "Unlink is not allowed!" msgstr "" #: nextend-facebook-connect/includes/provider.php:856 #: nextend-facebook-connect/includes/provider.php:863 msgid "The test was successful" msgstr "O teste foi bem sucedido" #: nextend-facebook-connect/includes/provider.php:909 msgid "Authentication failed" msgstr "Falha na autenticação" #: nextend-facebook-connect/includes/provider.php:1058 msgid "Identifier" msgstr "Identificador" #: nextend-facebook-connect/includes/provider.php:1074 msgid "Profile picture" msgstr "Foto do perfil" #: nextend-facebook-connect/includes/user.php:74 #, php-format msgid "" "Your %1$s account is successfully linked with your account. Now you can sign " "in with %2$s easily." msgstr "" "Sua conta %1$s foi vinculada com sucesso com sua conta. Agora você pode " "logar com o %2$s facilmente." #: nextend-facebook-connect/includes/user.php:77 #, php-format msgid "" "You have already linked a(n) %s account. Please unlink the current and then " "you can link other %s account." msgstr "" "Você já vinculou uma conta %s. Por favor desvincule a atual e então você " "poderá vincular outra conta %s." #: nextend-facebook-connect/includes/user.php:82 #, php-format msgid "This %s account is already linked to other user." msgstr "A conta %s já está vinculada a outro usuário." #: nextend-facebook-connect/includes/user.php:122 msgid "User registration is currently not allowed." msgstr "" #: nextend-facebook-connect/includes/userData.php:137 msgid "Register For This Site!" msgstr "Registrar Para Este Site!" #: nextend-facebook-connect/nextend-facebook-connect.php:34 #, php-format msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE." msgstr "%1$s requer a versão do PHP %2$s+, O plugin atualmente não está ativo." #: nextend-facebook-connect/nextend-facebook-connect.php:41 #, php-format msgid "" "%1$s requires WordPress version %2$s+. Because you are using an earlier " "version, the plugin is currently NOT ACTIVE." msgstr "" "%1$s requer versão do WordPress %2$s+. Como você está usando uma versão " "anterior, o plugin não está ativo no momento." #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 #, php-format msgid "Please update %1$s to version %2$s or newer." msgstr "Por favor, atualize %1$s para versão %2$s ou mais recente." #: nextend-facebook-connect/nextend-social-login.php:56 #: nextend-facebook-connect/nextend-social-login.php:63 msgid "Update now!" msgstr "Atualizar agora!" #: nextend-facebook-connect/nextend-social-login.php:735 #: nextend-facebook-connect/nextend-social-login.php:1111 msgid "Social Login" msgstr "Login Social" #: nextend-facebook-connect/nextend-social-login.php:1092 msgid "Social Accounts" msgstr "Redes Sociais" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8 #, fuzzy, php-format #| msgid "Navigate to %s" msgid "Navigate to %s" msgstr "Navegar para %s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25 #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9 #: nextend-facebook-connect/providers/google/admin/getting-started.php:17 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9 #, php-format msgid "Log in with your %s credentials if you are not logged in" msgstr "Logue com suas credenciais %s se você não estiver logado" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10 #, fuzzy, php-format #| msgid "Click on the App with App ID: %s" msgid "Click on the App with App ID: %s" msgstr "Clique no App com ID do App:%s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11 #, fuzzy #| msgid "In the left sidebar, click on \"Facebook Login/Settings\"" msgid "In the left sidebar, click on \"Facebook Login > Settings\"" msgstr "Na barra lateral esquerda, clique em \"Facebook Login/Settings\"" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: %s" msgid "" "Add the following URL to the \"Valid OAuth redirect URIs\" field: " "%s" msgstr "" "Adicionar o seguinte URL no campo \"URIs de redirecionamento OAuth Válidos" "\": %s" #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on \"Save Changes\"" msgstr "Clique em \"Salvar Alterações\"" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11 #: nextend-facebook-connect/providers/facebook/admin/settings.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22 #, php-format msgid "" "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in " "order to allow login with %1$s." msgstr "" "%1$s permite apenas redirecionamentos OAuth de HTTPS. Você deve mover seu " "site para HTTPS para permitir o login com %1$s." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13 #: nextend-facebook-connect/providers/facebook/admin/settings.php:15 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24 msgid "How to get SSL for my WordPress site?" msgstr "Como obter SSL para o meu site WordPress?" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19 #: nextend-facebook-connect/providers/google/admin/getting-started.php:11 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create a %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" "Para permitir que seus visitantes se loguem com sua conta %1$s, primeiro " "você deve criar um App do %1$s. O guia a seguir irá ajudá-lo através do " "processo de criação do App do %1$s. Após você ter criado seu App do %1$s, " "dirija-se a “Configurações” e configure o “%2$s” e “%3$s” dados de acordo " "com seu App do %1$s." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21 #: nextend-facebook-connect/providers/google/admin/getting-started.php:13 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:32 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:13 #, php-format msgctxt "App creation" msgid "Create %s" msgstr "Criar %s" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24 #: nextend-facebook-connect/providers/google/admin/getting-started.php:16 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24 #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15 #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:16 #, php-format msgid "Navigate to %s" msgstr "Navegar para %s" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26 #, fuzzy #| msgid "Click on the \"Add a New App\" button" msgid "Click on the \"Add a New App\" button" msgstr "Clique no botão \"Adicionar um Novo App\"" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27 msgid "" "If you see the message \"Become a Facebook Developer\", then you need " "to click on the green \"Register Now\" button, fill the form then " "finally verify your account." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28 #, php-format msgid "" "Fill \"Display Name\" and \"Contact Email\". The specified " "\"Display Name\" will appear on your %s!" msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29 #, fuzzy #| msgid "Click the \"Create App\" button." msgid "" "Click the \"Create App ID\" button and complete the Security Check." msgstr "Clique no botão \"Criar Novo App\"." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30 #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35 #, php-format msgid "" "On the left side, click on the “%1$s” menu point, then click “" "%2$s”." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31 #, fuzzy #| msgid "Enter your domain name to the App Domains" msgid "Enter your domain name to the \"App Domains\" field." msgstr "Digite seu nome de domínio para os Domínios do App" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32 #, fuzzy, php-format #| msgid "Enter your domain name to the App Domains" msgid "" "Enter your domain name to the \"App Domains\" field, probably: %s" msgstr "Digite seu nome de domínio para os Domínios do App" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33 #, fuzzy #| msgid "" #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and " #| "easily accessible privacy policy that explains what data you are " #| "collecting and how you will use that data." msgid "" "Fill up the \"Privacy Policy URL\" field. Provide a publicly " "available and easily accessible privacy policy that explains what data you " "are collecting and how you will use that data." msgstr "" "Preencha a \"URL de Política de Privacidade\". Fornecer uma política de " "privacidade publicamente disponível e facilmente acessível que explique " "quais dados você está coletando e como você utilizará estes dados." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34 msgid "" "Select a “Category”, an “App Icon” and pick the “Business " "Use” option that describes your the App best, then press \"Save " "Changes\"." msgstr "" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on “Save Changes”" msgstr "Clique em \"Salvar Alterações\"" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38 #, fuzzy #| msgid "" #| "Your application is currently private, which means that only you can log " #| "in with it. In the left sidebar choose \"App Review\" and make your App " #| "public" msgid "" "Your application is currently private, which means that only you can log in " "with it. In the top bar click on the switch next to the \"In development\" label, then click the \"Switch Mode\" button." msgstr "" "Sua aplicação está atualmente privada, o que significa que só você pode se " "logar com ela. No menu lateral esquerdo escolha “Revisar App” e torne seu " "App público" #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39 #, fuzzy, php-format #| msgid "" #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if " #| "you click on the \"Show\" button. These will be needed in plugin's " #| "settings." msgid "" "Finally on the left side, click on the \"%1$s\" menu point, then " "click \"%2$s\" again. Here you can see your \"APP ID\" and you " "can see your \"App secret\" if you click on the \"Show\" button. " "These will be needed in plugin’s settings." msgstr "" "Aqui voc6e pode ver seu “ID do APP” e seu “Segredo do App” se você clicar no " "botão “Mostrar”. Isto será necessário nas configurações do plugin." #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43 #: nextend-facebook-connect/providers/google/admin/getting-started.php:40 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:30 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:29 #, php-format msgid "I am done setting up my %s" msgstr "Terminei de configurar meu %s" #: nextend-facebook-connect/providers/facebook/admin/settings.php:35 #: nextend-social-login-pro/providers/vk/admin/settings.php:27 msgid "App ID" msgstr "ID do App" #: nextend-facebook-connect/providers/facebook/admin/settings.php:36 #: nextend-facebook-connect/providers/facebook/admin/settings.php:48 #: nextend-facebook-connect/providers/google/admin/settings.php:28 #: nextend-facebook-connect/providers/google/admin/settings.php:41 #: nextend-facebook-connect/providers/twitter/admin/settings.php:28 #: nextend-social-login-pro/providers/amazon/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:39 #: nextend-social-login-pro/providers/apple/admin/settings.php:79 #: nextend-social-login-pro/providers/apple/admin/settings.php:90 #: nextend-social-login-pro/providers/apple/admin/settings.php:100 #: nextend-social-login-pro/providers/apple/admin/settings.php:108 #: nextend-social-login-pro/providers/disqus/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39 #: nextend-social-login-pro/providers/paypal/admin/settings.php:27 #: nextend-social-login-pro/providers/paypal/admin/settings.php:39 #: nextend-social-login-pro/providers/vk/admin/settings.php:28 #: nextend-social-login-pro/providers/vk/admin/settings.php:40 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39 msgid "Required" msgstr "Obrigatório" #: nextend-facebook-connect/providers/facebook/admin/settings.php:41 #: nextend-facebook-connect/providers/google/admin/settings.php:35 #: nextend-facebook-connect/providers/twitter/admin/settings.php:33 #: nextend-social-login-pro/providers/amazon/admin/settings.php:33 #: nextend-social-login-pro/providers/apple/admin/settings.php:34 #: nextend-social-login-pro/providers/apple/admin/settings.php:85 #: nextend-social-login-pro/providers/disqus/admin/settings.php:33 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33 #: nextend-social-login-pro/providers/paypal/admin/settings.php:33 #: nextend-social-login-pro/providers/vk/admin/settings.php:34 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33 #, php-format msgid "" "If you are not sure what is your %1$s, please head over to Getting Started" msgstr "" "Se não tiver certeza de qual é o seu %1$s, por favor dirija-se a Iniciando" #: nextend-facebook-connect/providers/facebook/admin/settings.php:47 msgid "App Secret" msgstr "Chave Secreta do App" #: nextend-facebook-connect/providers/facebook/facebook.php:79 msgid "Continue with Facebook" msgstr "Continuar com Facebook" #: nextend-facebook-connect/providers/facebook/facebook.php:80 msgid "Link account with Facebook" msgstr "Vincular conta com Facebook" #: nextend-facebook-connect/providers/facebook/facebook.php:81 msgid "Unlink account from Facebook" msgstr "Desvincular conta do Facebook" #: nextend-facebook-connect/providers/facebook/facebook.php:135 #: nextend-facebook-connect/providers/google/google.php:158 #: nextend-facebook-connect/providers/twitter/twitter.php:95 #: nextend-social-login-pro/providers/amazon/amazon.php:65 #: nextend-social-login-pro/providers/apple/apple.php:71 #: nextend-social-login-pro/providers/apple/apple.php:77 #: nextend-social-login-pro/providers/disqus/disqus.php:112 #: nextend-social-login-pro/providers/linkedin/linkedin.php:63 #: nextend-social-login-pro/providers/paypal/paypal.php:90 #: nextend-social-login-pro/providers/vk/vk.php:61 #: nextend-social-login-pro/providers/wordpress/wordpress.php:99 #: nextend-social-login-pro/providers/yahoo/yahoo.php:90 #, php-format msgid "" "The %1$s entered did not appear to be a valid. Please enter a valid %2$s." msgstr "" "O %1$s inserido não parece ser válido. Por favor insira um %2$s válido." #: nextend-facebook-connect/providers/facebook/facebook.php:253 #: nextend-social-login-pro/providers/paypal/paypal.php:170 #, php-format msgid "Required scope: %1$s" msgstr "Escopo requerido: %1$s" #: nextend-facebook-connect/providers/google/admin/buttons.php:2 msgid "Button skin" msgstr "Skin de botão" #: nextend-facebook-connect/providers/google/admin/buttons.php:8 msgid "Uniform" msgstr "Uniforme" #: nextend-facebook-connect/providers/google/admin/buttons.php:14 msgid "Light" msgstr "Claro" #: nextend-facebook-connect/providers/google/admin/buttons.php:20 msgid "Dark" msgstr "Escuro" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Click on the \"Credentials\" in the left hand menu" msgid "Click on the \"Credentials\" in the left hand menu" msgstr "Clique em \"Credenciais\"no menu à esquerda" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11 #, php-format msgid "" "Under the \"OAuth 2.0 Client IDs\" section find your Client ID: " "%s" msgstr "" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/google/admin/getting-started.php:34 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorised redirect URIs\" field: %s" msgid "" "Add the following URL to the \"Authorised redirect URIs\" field: " "%s" msgstr "" "Adicionar o seguinte URL no campo \"URIs de redirecionamento Autorizados\": " "%s" #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13 #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14 #, fuzzy #| msgid "Click on \"Save\"" msgid "Click on \"Save\"" msgstr "Clique em \"Salvar\"" #: nextend-facebook-connect/providers/google/admin/getting-started.php:18 #, fuzzy #| msgid "" #| "If you don't have a project yet, you'll need to create one. You can do " #| "this by clicking on the blue \"Create project\" button on the right " #| "side! ( If you already have a project, click on the name of your project " #| "in the dashboard instead, which will bring up a modal and click New " #| "Project. )" msgid "" "If you don't have a project yet, you'll need to create one. You can do this " "by clicking on the blue \"Create\" button on the right side! ( If " "you already have a project, click on the name of your project in the " "dashboard instead, which will bring up a modal and click \"New Project\". )" msgstr "" "Se você não tem um projeto ainda, você precisará criar um. Você pode fazer " "isso clicando no botão azul “Criar Projeto” no lado direito" #: nextend-facebook-connect/providers/google/admin/getting-started.php:19 #, fuzzy #| msgid "Name your project and then click on the Create button again" msgid "Name your project and then click on the \"Create\" button again" msgstr "Nomeie o projeto e, em seguida, clique no botão Criar" #: nextend-facebook-connect/providers/google/admin/getting-started.php:20 msgid "Once you have a project, you'll end up in the dashboard." msgstr "" "Uma vez que você tenha um projeto, você vai acabar no painel de controle." #: nextend-facebook-connect/providers/google/admin/getting-started.php:21 msgid "Click the “OAuth consent screen” button on the left hand side." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:22 msgid "" "Choose a User Type according to your needs. If you want to enable the " "social login with Google for any users with a Google account, then pick the " "External option!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:24 #, php-format msgid "" "Note: We don't use sensitive or restricted scopes either. But if you " "will use this App for other purposes too, then you may need to go through an " "%1$s!" msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:27 msgid "" "Enter a name for your App to the \"Application name\" field, which " "will appear as the name of the app asking for consent." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:28 #, fuzzy, php-format #| msgid "Fill the \"Base domain\" field with your domain, probably: %s" msgid "" "Fill the \"Authorized domains\" field with your domain name probably: " "%s without subdomains!" msgstr "" "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: %s" #: nextend-facebook-connect/providers/google/admin/getting-started.php:29 #, fuzzy #| msgid "Save your changes." msgid "Save your settings!" msgstr "Salve suas alterações." #: nextend-facebook-connect/providers/google/admin/getting-started.php:30 #, php-format msgid "" "On the left side, click on the \"%1$s\" menu point, then click the " "\"%2$s\" button in the top bar." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:31 msgid "Choose the \"OAuth client ID\" option." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:32 #, fuzzy #| msgid "Click on the \"Create New Application\" button." msgid "Select the \"Web application\" under Application type." msgstr "Clique no botão \"Criar novo aplicativo\"." #: nextend-facebook-connect/providers/google/admin/getting-started.php:33 msgid "Enter \"Name\" that for your OAuth client ID." msgstr "" #: nextend-facebook-connect/providers/google/admin/getting-started.php:35 #, fuzzy #| msgid "Click on the Create button" msgid "Click on the \"Create\" button" msgstr "Clique no botão Criar" #: nextend-facebook-connect/providers/google/admin/getting-started.php:36 #, fuzzy #| msgid "" #| "A modal should pop up with your credentials. If that doesn't happen, go " #| "to the Credentials in the left hand menu and select your app by clicking " #| "on its name and you'll be able to copy-paste the Client ID and Client " #| "Secret from there." msgid "" "A modal should pop up with your credentials. If that doesn't happen, go to " "the Credentials in the left hand menu and select your app by clicking on its " "name and you'll be able to copy-paste the \"Client ID\" and " "\"Client Secret\" from there." msgstr "" "Uma modal deverá aparecer com suas credenciais. Se isto não acontecer, vá " "para Credenciais no menu esquerdo e selecione seu app clicando no seu nome e " "você será capaz de copiar-colar o ID do Cliente e o Segredo do Cliente de lá." #: nextend-facebook-connect/providers/google/admin/settings.php:27 #: nextend-social-login-pro/providers/amazon/admin/settings.php:26 #: nextend-social-login-pro/providers/apple/admin/settings.php:28 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26 #: nextend-social-login-pro/providers/paypal/admin/settings.php:26 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26 msgid "Client ID" msgstr "ID do Cliente" #: nextend-facebook-connect/providers/google/admin/settings.php:40 #: nextend-social-login-pro/providers/amazon/admin/settings.php:38 #: nextend-social-login-pro/providers/apple/admin/settings.php:39 #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38 #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38 #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38 msgid "Client Secret" msgstr "Chave do Cliente" #: nextend-facebook-connect/providers/google/admin/settings.php:47 msgid "Select account on each login" msgstr "" #: nextend-facebook-connect/providers/google/admin/settings.php:56 msgid "" "Disable, when you don't want to see the account select prompt on each login." msgstr "" #: nextend-facebook-connect/providers/google/google.php:106 msgid "Continue with Google" msgstr "Continuar com Google" #: nextend-facebook-connect/providers/google/google.php:107 msgid "Link account with Google" msgstr "Vincular conta com Google" #: nextend-facebook-connect/providers/google/google.php:108 msgid "Unlink account from Google" msgstr "Desvincular conta do Google" #: nextend-facebook-connect/providers/google/google.php:285 #, php-format msgid "Required API: %1$s" msgstr "API obrigatória: %1$s" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Name your project and then click on the Create button again" msgid "Find your App and click on the \"Details\" button" msgstr "Nomeie o projeto e, em seguida, clique no botão Criar" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11 msgid "" "The Edit button can be found on the App details tab. Click on it and " "select \"Edit details\"" msgstr "" #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12 #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "Add the following URL to the \"Callback URL\" field: %s" msgid "Add the following URL to the \"Callback URLs\" field: %s" msgstr "Adicione a URL seguinte no campo “URL de Retorno”: %s" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17 #, fuzzy, php-format #| msgid "Log in with your %s credentials if you are not logged in" msgid "Log in with your %s credentials if you are not logged in yet" msgstr "Logue com suas credenciais %s se você não estiver logado" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18 msgid "" "If you don't have a developer account yet, please apply one by filling all " "the required details! This is required for the next steps!" msgstr "" "Se você ainda não possui uma conta de desenvolvedor, aplique uma preenchendo " "todos os detalhes necessários! Isso é necessário para as próximas etapas!" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Once your developer account is complete. Navigate back to %s if you " #| "aren't already there!" msgid "" "Once your developer account is complete, navigate back to %s if you " "aren't already there!" msgstr "" "Quando sua conta de desenvolvedor estiver completa. Navegue de volta para %s " "se você ainda não estiver lá!" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "" #| "Fill the App name, Application description fields. Then enter your site's " #| "URL to the Website field: %s" msgid "" "Fill the App name, Application description fields. Then enter " "your site's URL to the Website URL field: %s" msgstr "" "Preencha os campos de nome e descrição. Então entre com a URL de seu site no " "campo Website: %s" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21 #, fuzzy #| msgid "Tick the checkbox next to Enable Sign in with Twitter!" msgid "Tick the checkbox next to Enable Sign in with Twitter!" msgstr "Marque a caixa de seleção ao lado para ativar Entrada com o Twitter!" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23 #, fuzzy #| msgid "Full the \"Tell us how this app will be used\" field! " msgid "" "Fill the “Terms of Service URL\", \"Privacy policy URL\" and " "\"Tell us how this app will be used\" fields!" msgstr "Preencha o campo \"Diga-nos como este aplicativo será usado\"!\"." #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24 #, fuzzy #| msgid "Click the Create button." msgid "Click the Create button." msgstr "Clique no botão Criar." #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25 #, fuzzy #| msgid "Read the Developer Terms and click the Create button again!" msgid "Read the Developer Terms and click the Create button again!" msgstr "Leia os termos do desenvolvedor e clique no botão criar novamente!" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26 msgid "Select the Permissions tab and click Edit." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27 msgid "" "Tick the Request email address from users under the Additional " "permissions section and click Save." msgstr "" #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28 #, fuzzy #| msgid "" #| "Go to the Keys and tokens tab and find the API key and API secret key" msgid "" "Go to the Keys and tokens tab and find the API key and API " "secret key" msgstr "" "Vá para a aba chaves e tokens e encontre a chave da API e a chave secreta da " "API" #: nextend-facebook-connect/providers/twitter/admin/settings.php:27 #: nextend-social-login-pro/providers/disqus/admin/settings.php:26 msgid "API Key" msgstr "Chave API" #: nextend-facebook-connect/providers/twitter/admin/settings.php:38 msgid "API secret key" msgstr "Chave secreta da API" #: nextend-facebook-connect/providers/twitter/admin/settings.php:57 msgid "Profile image size" msgstr "Tamanho da imagem do perfil" #: nextend-facebook-connect/providers/twitter/admin/settings.php:71 msgid "Original" msgstr "Original" #: nextend-facebook-connect/providers/twitter/twitter.php:69 msgid "Continue with Twitter" msgstr "Continuar com Twitter" #: nextend-facebook-connect/providers/twitter/twitter.php:70 msgid "Link account with Twitter" msgstr "Vincular conta com Twitter" #: nextend-facebook-connect/providers/twitter/twitter.php:71 msgid "Unlink account from Twitter" msgstr "Desvincular conta do Twitter" #: nextend-facebook-connect/widget.php:10 #, php-format msgid "%s Buttons" msgstr "Botões %s" #: nextend-facebook-connect/widget.php:30 msgid "Title:" msgstr "Título:" #: nextend-facebook-connect/widget.php:38 msgid "Button style:" msgstr "Estilo do botão:" #: nextend-facebook-connect/widget.php:53 #, fuzzy #| msgid "Button skin" msgid "Button align:" msgstr "Skin de botão" #: nextend-facebook-connect/widget.php:85 msgid "Show link buttons" msgstr "Mostrar link de botões" #: nextend-facebook-connect/widget.php:94 msgid "Show unlink buttons" msgstr "Mostrar link de botões desvinculado" #: nextend-social-login-pro/class-provider-extension.php:117 msgid "Social login is not allowed with this role!" msgstr "O login Social não é permitido com esta função!" #: nextend-social-login-pro/class-provider-extension.php:213 #: nextend-social-login-pro/class-provider-extension.php:216 #: nextend-social-login-pro/class-provider-extension.php:222 #: nextend-social-login-pro/class-provider-extension.php:229 #: nextend-social-login-pro/class-provider-extension.php:300 #: nextend-social-login-pro/class-provider-extension.php:303 #: nextend-social-login-pro/class-provider-extension.php:307 msgid "ERROR" msgstr "ERRO" #: nextend-social-login-pro/class-provider-extension.php:213 msgid "Please enter a username." msgstr "Por favor coloque um nome de usuário." #: nextend-social-login-pro/class-provider-extension.php:216 msgid "" "This username is invalid because it uses illegal characters. Please enter a " "valid username." msgstr "" "Esse usuário é inválido porque usa caracteres inválidos. Por favor, insira " "um usuário válido." #: nextend-social-login-pro/class-provider-extension.php:222 msgid "This username is already registered. Please choose another one." msgstr "Este nome de usuário já está registrado. Por favor escolha outro." #: nextend-social-login-pro/class-provider-extension.php:229 msgid "Sorry, that username is not allowed." msgstr "Desculpe, esse nome de utilizador não é permitido." #: nextend-social-login-pro/class-provider-extension.php:247 msgid "Username" msgstr "Nome de usuário" #: nextend-social-login-pro/class-provider-extension.php:300 msgid "Please enter an email address." msgstr "Por favor, digite um endereço de e-mail." #: nextend-social-login-pro/class-provider-extension.php:303 msgid "The email address isn’t correct." msgstr "O endereço de email não está correto." #: nextend-social-login-pro/class-provider-extension.php:307 msgid "This email is already registered, please choose another one." msgstr "Este e-mail já está registrado, por favor, escolha outro." #: nextend-social-login-pro/class-provider-extension.php:327 msgid "Registration confirmation will be emailed to you." msgstr "Uma confirmação do registro será enviado por email para você." #: nextend-social-login-pro/class-provider-extension.php:378 msgid "ERROR: Please enter a password." msgstr "ERRO:digite uma senha." #: nextend-social-login-pro/class-provider-extension.php:384 msgid "ERROR: Passwords may not contain the character \"\\\"." msgstr "ERRO: Senhas não podem conter o caractere\"\\\"." #: nextend-social-login-pro/class-provider-extension.php:390 msgid "" "ERROR: Please enter the same password in both password " "fields." msgstr "ERRO: Digite a mesma senha nos dois campos de senha." #: nextend-social-login-pro/class-provider-extension.php:407 msgid "Password" msgstr "Senha" #: nextend-social-login-pro/class-provider-extension.php:417 msgid "Strength indicator" msgstr "Indicador de força" #: nextend-social-login-pro/class-provider-extension.php:422 msgid "Confirm use of weak password" msgstr "Confirme o uso de senha fraca" #: nextend-social-login-pro/class-provider-extension.php:428 msgid "Confirm password" msgstr "Confirme a senha" #: nextend-social-login-pro/class-provider-extension.php:440 #, php-format msgid "" "This email is already registered, please login in to your account to link " "with %1$s." msgstr "" "Este e-mail já está registrado, faça o login na sua conta para fazer um link " "com %1$s." #: nextend-social-login-pro/nextend-social-login-pro.php:54 #, php-format msgid "Please install and activate %1$s to use the %2$s" msgstr "Instale e ative %1$s para usar o %2$s" #: nextend-social-login-pro/nextend-social-login-pro.php:68 msgid "Network Activate" msgstr "Ativar rede" #: nextend-social-login-pro/nextend-social-login-pro.php:80 msgid "Install now!" msgstr "Instalar agora!" #: nextend-social-login-pro/provider-extensions/facebook.php:74 #, php-format msgid "" "The Facebook Sync data needs an approved %1$s and your App must use the " "latest %2$s version!" msgstr "" #: nextend-social-login-pro/provider-extensions/google.php:176 #, php-format msgid "" "Most of these information can only be retrieved, when the field is marked as " "Public on the user's %s page!" msgstr "" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26 #, php-format msgid "Visit %s" msgstr "Visita %s" #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30 #, fuzzy #| msgid "" #| "On the right side, under \"Manage\", hover over the gear icon and select " #| "\"Web Settings\" option." msgid "" "On the right side, under \"Manage\", hover over the gear icon and " "select \"Web Settings\" option." msgstr "" "No lado direito, em \"Gerenciar\", passe o mouse sobre o ícone de engrenagem " "e selecione a opção \"Configurações da Web\"." #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31 #, fuzzy #| msgid "Click \"Edit\"." msgid "Click \"Edit\"." msgstr "Clique \"editar\"." #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Allowed Return URLs\" field %s " msgid "" "Add the following URL to the \"Allowed Return URLs\" field %s " msgstr "" "Adicione o seguinte URL ao campo \"URLs de retorno permitidos\" %s." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10 #, php-format msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your " "%1$s App." msgstr "" "Para permitir que seus visitantes façam login com a conta %1$s, primeiro " "você deve criar um aplicativo %1$s. O guia a seguir o ajudará no processo de " "criação do aplicativo %1$s. Depois de criar seu aplicativo %1$s, vá até " "\"Configurações\" e configure os \"%2$s\" e \"%3$s\" de acordo com seu " "aplicativo %1$s." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38 #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16 #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17 #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17 #, php-format msgid "Log in with your %s credentials if you are not logged in." msgstr "Faça o login com o seu %s credenciais se você não estiver logado." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27 #, fuzzy #| msgid "" #| "If you don't have a Security Profile yet, you'll need to create one. You " #| "can do this by clicking on the orange \"Create a New Security Profile\" " #| "button on the left side." msgid "" "If you don't have a Security Profile yet, you'll need to create one. You can " "do this by clicking on the orange \"Create a New Security Profile\" " "button on the left side." msgstr "" "Se você ainda não tem um perfil de segurança, será necessário criar um. Você " "pode fazer isso clicando no botão laranja \"Criar um novo perfil de segurança" "\" no lado esquerdo." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28 #, fuzzy #| msgid "" #| "Fill \"Security Profile Name\", \"Security Profile Description\" and " #| "\"Consent Privacy Notice URL\"." msgid "" "Fill \"Security Profile Name\", \"Security Profile Description" "\" and \"Consent Privacy Notice URL\"." msgstr "" "Preencha \"nome do perfil de segurança\", \"descrição do perfil de segurança" "\" e \"URL de aviso de privacidade de consentimento\"." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29 #, fuzzy #| msgid "Once you filled all the required fields, click \"Save\"." msgid "Once you filled all the required fields, click \"Save\"." msgstr "" "Depois de preencher todos os campos obrigatórios, clique em \"Salvar\"." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32 #, fuzzy, php-format #| msgid "" #| "Fill \"Allowed Origins\" with the url of your homepage, probably: %s" msgid "" "Fill \"Allowed Origins\" with the url of your homepage, probably: " "%s" msgstr "" "Preencha “URL do Site” com a url de sua página, provavelmente: %s" #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28 #, fuzzy #| msgid "When all fields are filled, click \"Save\"." msgid "When all fields are filled, click \"Save\"." msgstr "Quando todos os campos estiverem preenchidos, clique em \"Salvar\"." #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:35 #, fuzzy #| msgid "" #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of " #| "the page." msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" at the " "middle of the page, under the \"Web Settings\" tab." msgstr "" "Encontre o \"Client ID\" e \"Client Secret\" necessários no meio da página." #: nextend-social-login-pro/providers/amazon/amazon.php:39 msgid "Continue with Amazon" msgstr "Continuar com Amazon" #: nextend-social-login-pro/providers/amazon/amazon.php:40 msgid "Link account with Amazon" msgstr "Vincular conta com Amazon" #: nextend-social-login-pro/providers/amazon/amazon.php:41 msgid "Unlink account from Amazon" msgstr "Desvincular conta do Amazon" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21 #, fuzzy #| msgid "Click on the name of your %s App." msgid "Click on the name of your service." msgstr "Clique no nome do seu %s aplicativo." #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22 msgid "" "Click the \"Configure\" button next to \"Sign In with Apple\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53 #, php-format msgid "Click the blue + icon next to %1$s heading." msgstr "" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79 #, fuzzy, php-format #| msgid "Fill the \"Base domain\" field with your domain, probably: %s" msgid "" "Fill the \"Domains and Subdomains\" field with your domain name " "probably: %s" msgstr "" "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: %s" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:25 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:80 #, fuzzy, php-format #| msgid "Add the following URL to the \"Live Return URL\" field %s " msgid "Add the following URL to the \"Return URLs\" field: %s" msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" %s" #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:26 msgid "" "Finally press \"Next\" then \"Done\" and finally click on the " "\"Continue\" and the \"Save\" button!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30 #, fuzzy, php-format #| msgid "" #| "To allow your visitors to log in with their %1$s account, first you must " #| "create an %1$s App. The following guide will help you through the %1$s " #| "App creation process. After you have created your %1$s App, head over to " #| "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to " #| "your %1$s App." msgid "" "To allow your visitors to log in with their %1$s account, first you must " "create an %1$s App. The following guide will help you through the %1$s App " "creation process. After you have created your %1$s App, head over to " "\"Settings\" and configure the given \"%2$s\", \"%3$s\", \"%4$s\" and \"%5$s" "\" according to your %1$s App." msgstr "" "Para permitir que seus visitantes façam login com a conta %1$s, primeiro " "você deve criar um aplicativo %1$s. O guia a seguir o ajudará no processo de " "criação do aplicativo %1$s. Depois de criar seu aplicativo %1$s, vá até " "\"Configurações\" e configure os \"%2$s\" e \"%3$s\" de acordo com seu " "aplicativo %1$s." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35 msgid "" "Make sure you have an active subscription for the Apple Developer " "Program!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36 msgid "" "Make sure your site have SSL, since Apple only allows HTTPS urls!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:41 msgid "1.) Create the associated App:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the %2$s " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:44 #, fuzzy #| msgid "Enter a \"Name\" and \"Description\" for your App." msgid "Enter a \"Description\"" msgstr "Digite um \"Nome\" e \"Descrição\" para seu aplicativo." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45 #, php-format msgid "" "At the \"Bundle ID\" field select the \"Explicit\" option and " "enter your domain name in reverse-domain name style, with the name of the " "app at its end: %s.nslapp" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46 msgid "" "Under the \"Capabilities\" section, tick the \"Sign In with Apple\" option." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47 msgid "" "Scroll up and press the \"Continue\" button and then the " "\"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50 msgid "2.) Create the Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:52 #, php-format msgid "On the left hand side, click on the \"%s\" tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:54 #, fuzzy #| msgid "Enter the title of your app and select \"Websie\"." msgid "Enter a name in the Key Name field." msgstr "Digite o título do seu aplicativo e selecione \"Website\"." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55 msgid "" "Tick the \"Sign In with Apple\" option, then click on \"Configure\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56 msgid "" "If you have multiple Apps, then at the \"Choose a Primary App ID\" " "field select the App what you just created, then click \"Save" "\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57 msgid "" "Finally press the \"Continue\" button and then the \"Register" "\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58 msgid "Don't download the key yet!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61 msgid "3.) Create the Service:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:63 #, php-format msgid "" "Go to the \"%1$s\" section, what you will find within the \"%2$s\" " "tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64 #, php-format msgid "" "Click the blue + icon next to %1$s, then select the \"%2$s\" " "option and click the \"Continue\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:65 #, fuzzy #| msgid "Enter a \"Name\" and \"Description\" for your App." msgid "Enter a \"Description\"." msgstr "Digite um \"Nome\" e \"Descrição\" para seu aplicativo." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66 #, php-format msgid "" "At the \"Identifier\" field enter your domain name in reverse-domain " "name style, with the name of the client at its end: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69 msgid "Note: This will also be used as Service Identifier later!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72 msgid "" "Press the \"Continue\" button and then the \"Register\" button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:73 #, php-format msgid "In the \"%1$s\" section, click the service you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76 msgid "" "Tick the \"Sign In with Apple\" option and click the \"Configure\" button next to it." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:78 msgid "" "If you have multiple Apps, then at the \"Primary App ID\" field select the " "App what you just created." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:83 msgid "" "Save the configuration by clicking on the \"Save\" button and " "pressing \"Done\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:84 msgid "" "Finally press the \"Continue\" button and then the \"Save\" " "button." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:87 msgid "4.) Configure Nextend Social Login with your credentials:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:89 msgid "Go to Nextend Social Login > Providers > Apple > Settings tab." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:90 msgid "Private Key ID:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:92 #: nextend-social-login-pro/providers/apple/admin/getting-started.php:110 #, fuzzy, php-format #| msgid "Navigate to %s" msgid "Navigate to: %s" msgstr "Navegar para %s" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:93 #, fuzzy #| msgid "Click on the name of your %s App." msgid "Click on the name of your Key." msgstr "Clique no nome do seu %s aplicativo." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:94 msgid "You will find your \"Private Key ID\" under \"Key ID\"." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:97 msgid "Private Key:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99 msgid "" "Click the \"Download\" button to download the key file. Once this " "file is downloaded, it will no longer be available, so make sure you keep " "this file safe! " msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:100 msgid "" "Open the downloaded file with a text editor, like Notepad, copy " "all of its contents and paste it into the \"Private Key" "\" field of Nextend Social Login." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:103 msgid "Team Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105 msgid "" "A 10 character long identifier, what you can find on the top-right " "corner, just under your name." msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:108 msgid "Service Identifier:" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111 #, php-format msgid "" "You will find it under the \"IDENTIFIER\" column. If you configured " "the service according to the suggestions, it will probably end to .nslclient " "e.g.: %s.nslclient" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:114 #, fuzzy #| msgid "Once you filled all the required fields, click \"Save\"." msgid "" "Once you filled up all the fields, click on the \"Generate Token\" " "button." msgstr "" "Depois de preencher todos os campos obrigatórios, clique em \"Salvar\"." #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115 msgid "Finally verify the settings and enable the provider!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/getting-started.php:116 msgid "" "When you need to change your credentials for some reason, then you must " "delete the token, copy the new credentials and generate a new token!" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:48 msgid "Delete credentials" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:78 msgid "Private Key ID" msgstr "" #: nextend-social-login-pro/providers/apple/admin/settings.php:89 #, fuzzy #| msgid "Privacy" msgid "Private Key" msgstr "Privacidade" #: nextend-social-login-pro/providers/apple/admin/settings.php:99 #, fuzzy #| msgid "Identifier" msgid "Team Identifier" msgstr "Identificador" #: nextend-social-login-pro/providers/apple/admin/settings.php:107 #, fuzzy #| msgid "Identifier" msgid "Service Identifier" msgstr "Identificador" #: nextend-social-login-pro/providers/apple/admin/settings.php:117 msgid "Generate Token" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:53 #, fuzzy #| msgid "Continue with Google" msgid "Continue with Apple" msgstr "Continuar com Google" #: nextend-social-login-pro/providers/apple/apple.php:54 #, fuzzy #| msgid "Link account with Google" msgid "Link account with Apple" msgstr "Vincular conta com Google" #: nextend-social-login-pro/providers/apple/apple.php:55 #, fuzzy #| msgid "Unlink account from Google" msgid "Unlink account from Apple" msgstr "Desvincular conta do Google" #: nextend-social-login-pro/providers/apple/apple.php:107 #: nextend-social-login-pro/providers/apple/apple.php:204 #: nextend-social-login-pro/providers/apple/apple.php:221 #, fuzzy, php-format #| msgid "Network connection failed: %1$s" msgid "Token generation failed: %1$s" msgstr "Falha na conexão de rede: %1$s" #: nextend-social-login-pro/providers/apple/apple.php:107 msgid "Please check your credentials!" msgstr "" #: nextend-social-login-pro/providers/apple/apple.php:204 msgid "Private key format is not valid!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10 #, php-format msgid "Click on the name of your %s App." msgstr "Clique no nome do seu %s aplicativo." #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "Find the necessary Authentication Keys under the Authentication menu" msgid "" "Select the \"Settings\" tab and scroll down to the Authentication " "section!" msgstr "" "Encontre a Chave de Autenticação necessária abaixo do menu Autenticação" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23 #, fuzzy, php-format #| msgid "Add the following URL to the \"Callback URL\" field: %s" msgid "Add the following URL to the \"Callback URL\" field %s " msgstr "Adicione a URL seguinte no campo “URL de Retorno”: %s" #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on the \"Save Changes\" button." msgstr "Clique em \"Salvar Alterações\"" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17 #, fuzzy #| msgid "Click on the \"Create New Application\" button." msgid "" "Click on the \"Registering new application\" button under the " "Applications tab." msgstr "Clique no botão \"Criar novo aplicativo\"." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18 #, fuzzy #| msgid "Enter a \"Name\" and \"Description\" for your App." msgid "Enter a \"Label\" and \"Description\" for your App." msgstr "Digite um \"Nome\" e \"Descrição\" para seu aplicativo." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Fill \"Website URL\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website\" with the url of your homepage, probably: %s" msgstr "" "Preencha “URL Website” com a url de sua página, provavelmente: %s" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20 #, fuzzy #| msgid "Click on the \"Create New Application\" button." msgid "" "Complete the Human test and click the \"Register my application\" " "button." msgstr "Clique no botão \"Criar novo aplicativo\"." #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21 #, fuzzy, php-format #| msgid "Fill the \"Base domain\" field with your domain, probably: %s" msgid "Fill the \"Domains\" field with your domain name like: %s" msgstr "" "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: %s" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22 #, fuzzy #| msgid "Find the necessary Authentication Keys under the Authentication menu" msgid "" "Select \"Read only\" as Default Access under the Authentication " "section." msgstr "" "Encontre a Chave de Autenticação necessária abaixo do menu Autenticação" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24 #, fuzzy #| msgid "Click on \"Save Changes\"" msgid "Click on the \"Save Changes\" button!" msgstr "Clique em \"Salvar Alterações\"" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25 msgid "Navigate to the \"Details\" tab of your Application!" msgstr "" #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be " #| "needed in the plugin's settings." msgid "" "Here you can see your \"API Key\" and \"API Secret\". These " "will be needed in the plugin's settings." msgstr "" "Aqui você pode ver o seu \"ID do Cliente\" e \"Segredo do cliente\". Estes " "serão necessários nas configurações do plugin." #: nextend-social-login-pro/providers/disqus/admin/settings.php:38 #, fuzzy #| msgid "App Secret" msgid "API Secret" msgstr "Chave Secreta do App" #: nextend-social-login-pro/providers/disqus/disqus.php:86 msgid "Continue with Disqus" msgstr "Continuar com Disqus" #: nextend-social-login-pro/providers/disqus/disqus.php:87 msgid "Link account with Disqus" msgstr "Vincular conta com Disqus" #: nextend-social-login-pro/providers/disqus/disqus.php:88 msgid "Unlink account from Disqus" msgstr "Desvincular conta do Disqus" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10 msgid "Click on your App and go to the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11 #, fuzzy, php-format #| msgid "Add the following URL to the \"Redirect URLs\" field %s " msgid "Add the following URL to the \"Redirect URLs\" field: %s" msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"%s " #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:12 #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24 #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14 #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "Hit update to save the changes" msgid "Click on \"Update\" to save the changes" msgstr "Clique atualizar para salvar as alterações" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17 #, fuzzy #| msgid "Locate the blue \"Create application\" button and click on it." msgid "Locate the \"Create app\" button and click on it." msgstr "Localize o botão azul “Criar Aplicação” e clique nele." #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18 #, fuzzy #| msgid "Enter the title of your app and select \"Websie\"." msgid "Enter the name of your App to the \"App name\" field." msgstr "Digite o título do seu aplicativo e selecione \"Website\"." #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19 #, php-format msgid "" "Find your company page in the \"Company\" field. If you don't have " "one yet, create new one at: %s" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20 msgid "" "Enter your \"Privacy policy URL\" amd upload an \"App logo\"" msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21 #, fuzzy #| msgid "Read the Developer Terms and click the Create button again!" msgid "" "Read and agree the \"API Terms of Use\" then click the \"Create " "App\" button!" msgstr "Leia os termos do desenvolvedor e clique no botão criar novamente!" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22 msgid "" "You will end up in the App setting area. Click on the \"Auth\" tab." msgstr "" #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23 #, fuzzy, php-format #| msgid "Add the following URL to the \"Redirect URLs\" field %s " msgid "" "Find \"OAuth 2.0 settings\" section and add the following URL to the " "\"Redirect URLs\" field: %s" msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"%s " #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25 #, fuzzy #| msgid "" #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of " #| "the page." msgid "" "Find the necessary \"Client ID\" and \"Client Secret\" under " "the Application credentials section, on the Auth tab." msgstr "" "Encontre o \"Client ID\" e \"Client Secret\" necessários no meio da página." #: nextend-social-login-pro/providers/linkedin/linkedin.php:37 msgid "Continue with LinkedIn" msgstr "Continuar com LinkedIn" #: nextend-social-login-pro/providers/linkedin/linkedin.php:38 msgid "Link account with LinkedIn" msgstr "Vincular conta com LinkedIn" #: nextend-social-login-pro/providers/linkedin/linkedin.php:39 msgid "Unlink account from LinkedIn" msgstr "Desvincular conta do LinkedIn" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18 msgid "There is a Sandbox/Live switch. Make sure \"Live\" is selected!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11 #, fuzzy, php-format #| msgid "Click on the name of your %s App." msgid "Click on the name of your %s App, under the REST API apps section." msgstr "Clique no nome do seu %s aplicativo." #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "" #| "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" " #| "heading and click \"Show\"." msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading and click \"Show\"." msgstr "" "Role para baixo até \"LIVE APP SETTINGS\", procure o título \"Live Return URL" "\" e clique em \"Show\"." #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "Add the following URL to the \"Live Return URL\" field %s " msgid "" "Add the following URL to the \"Live Return URL\" field: %s " msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" %s" #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14 msgid "Click on \"Save\"" msgstr "Clique em \"Salvar\"" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15 #, php-format msgid "" "Editing Live Apps are only possible with a %s. So please make sure you own " "one!" msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19 #, fuzzy #| msgid "Click the \"Create App\" button." msgid "Click the \"Create App\" button under the REST API apps section." msgstr "Clique no botão \"Criar Novo App\"." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20 #, fuzzy #| msgid "Fill the \"App Name\" field and click \"Create App\" button." msgid "" "Fill the \"App Name\" field and click \"Create App\" button." msgstr "" "Preencha o campo \"nome do aplicativo\" e clique no botão \"criar aplicativo" "\"." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21 #, fuzzy #| msgid "" #| "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" " #| "heading and click \"Show\"." msgid "" "Scroll down to \"LIVE APP SETTINGS\", find the \"Live Return URL\" heading then click \"Show\"." msgstr "" "Role para baixo até \"LIVE APP SETTINGS\", procure o título \"Live Return URL" "\" e clique em \"Show\"." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23 #, fuzzy #| msgid "" #| "Scroll down to \"App feature options\" section and tick \"Log In with " #| "PayPal\"." msgid "" "Scroll down to \"App feature options\" section and tick \"Log In " "with PayPal\"." msgstr "" "Role para baixo até a seção \"Opções do recurso do aplicativo\" e marque " "\"fazer login com o PayPal\"." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24 #, fuzzy #| msgid "" #| "Click \"Advanced Options\" which can be found at the end of text \"Log In " #| "with PayPal\"." msgid "" "Click \"Advanced Options\" which can be found at the end of text " "after \"Connect with PayPal (formerly Log In with PayPal)\"." msgstr "" "Clique em \"Opções avançadas\", que pode ser encontrado no final do texto " "\"Login com o PayPal\"." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25 #, fuzzy #| msgid "Tick \"Full name\" and \"Email address\"." msgid "Tick \"Full name\"." msgstr "Marque \"Nome completo\" e \"Endereço de e-mail\"." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:26 msgid "" "\"Email address\" now requires an App Review by PayPal. To get the " "email address as well, please submit your App for a review after your " "App configuration is finished. Once the App review is successful, you need " "to pick \"Email address\" here to retrieve the email of the user. Until then " "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab." msgstr "" #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27 #, fuzzy #| msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"." msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"." msgstr "" "Preencha \"URL da política de privacidade\" e \"URL do contrato do usuário\"." #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29 #, fuzzy #| msgid "" #| "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary " #| "\"Client ID\" and \"Secret\"! ( Make sure you are in \"Live\" mode and " #| "not \"Sandbox\" )." msgid "" "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary " "\"Client ID\" and \"Secret\"! ( Make sure you are in " "\"Live\" mode and not \"Sandbox\". )" msgstr "" "Role até a seção \"CREDENCIAIS DA API AO VIVO\" e encontre os \"ID do cliente" "\" e \"Secreto\" necessários! (Certifique-se de estar no modo \"Live\" e não " "\"Sandbox\")." #: nextend-social-login-pro/providers/paypal/admin/settings.php:38 msgid "Secret" msgstr "Secreto" #: nextend-social-login-pro/providers/paypal/admin/settings.php:45 #, fuzzy #| msgid "Email" msgid "Email scope" msgstr "E-mail" #: nextend-social-login-pro/providers/paypal/admin/settings.php:54 msgid "Disable, when you have no rights for email address." msgstr "" #: nextend-social-login-pro/providers/paypal/paypal.php:64 msgid "Continue with PayPal" msgstr "Continuar com PayPal" #: nextend-social-login-pro/providers/paypal/paypal.php:65 msgid "Link account with PayPal" msgstr "Vincular conta com PayPal" #: nextend-social-login-pro/providers/paypal/paypal.php:66 msgid "Unlink account from PayPal" msgstr "Desvincular conta do PayPal" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10 #, fuzzy #| msgid "Click on the Manage button at the App" msgid "Click on the \"Manage\" button next to the associated App." msgstr "Clique no botão Gerenciar no aplicativo" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11 #, fuzzy #| msgid "Go to the Settings menu" msgid "Go to the \"Settings\" menu" msgstr "Vá para o menu configurações" #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized redirect URI:\" field: %s" msgid "" "Add the following URL to the \"Authorized redirect URI\" field: " "%s" msgstr "" "Adicione o seguinte URL ao \"Redirecionado autorizada URI:\" campo: %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17 #, fuzzy #| msgid "Locate the blue \"Create application\" button and click on it." msgid "Locate the blue \"Create app\" button and click on it." msgstr "Localize o botão azul “Criar Aplicação” e clique nele." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18 #, fuzzy #| msgid "Enter the title of your app and select \"Websie\"." msgid "" "Enter the Title for your App and select \"Website\" as " "platform." msgstr "Digite o título do seu aplicativo e selecione \"Website\"." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Fill \"Site address\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website address\" with the url of your homepage, probably: " "%s" msgstr "" "Preencha \"Endereço do site\" com a URL da sua página inicial, " "provavelmente: %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "Fill the \"Base domain\" field with your domain, probably: %s" msgid "" "Fill the \"Base domain\" field with your domain, probably: %s" msgstr "" "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: %s" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21 #, fuzzy #| msgid "When all fields are filled, click \"Save\"." msgid "When all fields are filled, click the \"Upload app\" button." msgstr "Quando todos os campos estiverem preenchidos, clique em \"Salvar\"." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22 #, fuzzy #| msgid "Fill the form for your app and upload an app icon then hit Save." msgid "" "Fill the information form of your app, upload an app icon then " "click Save." msgstr "" "Preencha o formulário do seu aplicativo, envie um ícone do aplicativo e " "pressione Salvar." #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23 #, fuzzy #| msgid "Pick Settings at the left-hand menu " msgid "Pick Settings at the left-hand menu " msgstr "Escolha Configurações no menu à esquerda" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24 #, fuzzy, php-format #| msgid "" #| "Add the following URL to the \"Authorized redirect URI\" field %s " msgid "" "Add the following URL to the \"Authorized redirect URI\" field %s " msgstr "" "Adicione a seguinte URL ao campo \"URI de redirecionamento autorizado\"" "%s " #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25 #, fuzzy #| msgid "Save your app" msgid "Save your app" msgstr "Salve seu aplicativo" #: nextend-social-login-pro/providers/vk/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Find the necessary Application ID and Secure key at the top of the " #| "Settings page where you just hit the save button." msgid "" "Find the necessary \"App ID\" and \"Secure key\" at the top of " "the Settings page where you just hit the save button." msgstr "" "Encontre o ID do aplicativo e a chave segura necessários na parte superior " "da página Configurações, onde você acabou de pressionar o botão Salvar." #: nextend-social-login-pro/providers/vk/admin/settings.php:39 msgid "Secure key" msgstr "Chave segura" #: nextend-social-login-pro/providers/vk/vk.php:35 msgid "Continue with VK" msgstr "Continuar com VK" #: nextend-social-login-pro/providers/vk/vk.php:36 msgid "Link account with VK" msgstr "Vincular conta com VK" #: nextend-social-login-pro/providers/vk/vk.php:37 msgid "Unlink account from VK" msgstr "Desvincular conta do VK" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12 #, fuzzy #| msgid "Click \"Manage Settings\" under the Tools section!" msgid "Click \"Manage Settings\" under the Tools section!" msgstr "Clique em \"gerenciar configurações\" na seção ferramentas!" #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13 #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20 #, fuzzy, php-format #| msgid "Add the following URL to the \"Redirect URLs\" field %s " msgid "Add the following URL to the \"Redirect URLs\" field %s " msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"%s " #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17 #, fuzzy #| msgid "Click on the \"Create New Application\" button." msgid "Click on the \"Create New Application\" button." msgstr "Clique no botão \"Criar novo aplicativo\"." #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18 #, fuzzy #| msgid "Enter a \"Name\" and \"Description\" for your App." msgid "Enter a \"Name\" and \"Description\" for your App." msgstr "Digite um \"Nome\" e \"Descrição\" para seu aplicativo." #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19 #, fuzzy, php-format #| msgid "" #| "Fill \"Website URL\" with the url of your homepage, probably: %s" msgid "" "Fill \"Website URL\" with the url of your homepage, probably: %s" msgstr "" "Preencha “URL Website” com a url de sua página, provavelmente: %s" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21 msgid "You can leave the \"Javascript Origins\" field blank!" msgstr "Você pode deixar o campo \"Javascript Origins\" em branco!" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22 msgid "Complete the human verification test." msgstr "Complete o teste de verificação humano." #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23 #, fuzzy #| msgid "At the \"Type\" make sure \"Web\" is selected!" msgid "At the \"Type\" make sure \"Web\" is selected!" msgstr "No \"Tipo\", verifique se \"Web\" está selecionado!" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24 #, fuzzy #| msgid "Click the \"Create\" button!" msgid "Click the \"Create\" button!" msgstr "Clique no botão \"Criar\"!" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25 #, fuzzy #| msgid "" #| "Click the name of your App either in the Breadcrumb navigation or next to " #| "Editing!" msgid "" "Click the name of your App either in the Breadcrumb navigation or " "next to Editing!" msgstr "" "Clique no nome do seu aplicativo na navegação do Breadcrumb ou ao lado de " "Editando!" #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26 #, fuzzy #| msgid "" #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be " #| "needed in the plugin's settings." msgid "" "Here you can see your \"Client ID\" and \"Client Secret\". " "These will be needed in the plugin's settings." msgstr "" "Aqui você pode ver o seu \"ID do Cliente\" e \"Segredo do cliente\". Estes " "serão necessários nas configurações do plugin." #: nextend-social-login-pro/providers/wordpress/wordpress.php:73 msgid "Continue with WordPress.com" msgstr "Continuar com WordPress.com" #: nextend-social-login-pro/providers/wordpress/wordpress.php:74 msgid "Link account with WordPress.com" msgstr "Vincular conta com WordPress.com" #: nextend-social-login-pro/providers/wordpress/wordpress.php:75 msgid "Unlink account from WordPress.com" msgstr "Desvincular conta do WordPress.com" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10 msgid "Click on the App which has its credentials associated with the plugin." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:11 #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22 #, fuzzy, php-format #| msgid "Add the following URL to the \"Redirect URLs\" field %s " msgid "" "Add the following URL to the \"Redirect URI(s)\" field: %s" msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"%s " #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18 #, fuzzy #| msgid "Click the \"Create App\" button." msgid "Click on the \"Create an App\" button on the top right corner." msgstr "Clique no botão \"Criar Novo App\"." #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19 msgid "" "Fill the \"Application Name\" and select \"Web Application\" " "at \"Application Type\"." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20 #, fuzzy #| msgid "Enter a \"Name\" and \"Description\" for your App." msgid "Enter a \"Description\" for your app!" msgstr "Digite um \"Nome\" e \"Descrição\" para seu aplicativo." #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21 #, fuzzy, php-format #| msgid "Add the following URL to the \"Live Return URL\" field %s " msgid "" "Enter the URL of your site to the \"Home Page URL\" field: %s" msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" %s" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23 msgid "" "Under the \"API Permissions\" you should select \"OpenID Connect " "Permissions\" with both \"Email\" and \"Profile\" enabled." msgstr "" #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:24 #, fuzzy #| msgid "Click the \"Create App\" button." msgid "Click \"Create App\"." msgstr "Clique no botão \"Criar Novo App\"." #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:25 #, fuzzy #| msgid "" #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be " #| "needed in the plugin's settings." msgid "" "On the top of the page, you will find the necessary \"Client ID\" and " "\"Client Secret\"! These will be needed in the plugin's settings." msgstr "" "Aqui você pode ver o seu \"ID do Cliente\" e \"Segredo do cliente\". Estes " "serão necessários nas configurações do plugin." #: nextend-social-login-pro/providers/yahoo/yahoo.php:64 #, fuzzy #| msgid "Continue with Facebook" msgid "Continue with Yahoo" msgstr "Continuar com Facebook" #: nextend-social-login-pro/providers/yahoo/yahoo.php:65 #, fuzzy #| msgid "Link account with Facebook" msgid "Link account with Yahoo" msgstr "Vincular conta com Facebook" #: nextend-social-login-pro/providers/yahoo/yahoo.php:66 #, fuzzy #| msgid "Unlink account from Facebook" msgid "Unlink account from Yahoo" msgstr "Desvincular conta do Facebook" #: nextend-social-login-pro/providers/yahoo/yahoo.php:186 #, fuzzy, php-format #| msgid "Required scope: %1$s" msgid "Required permission: %1$s" msgstr "Escopo requerido: %1$s" #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10 #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10 #: nextend-social-login-pro/template-parts/login/above-separator.php:20 #: nextend-social-login-pro/template-parts/login/below-separator.php:8 #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10 #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11 #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10 #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10 msgid "OR" msgstr "OU" #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1 #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1 #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1 msgid "Social accounts" msgstr "Contas redes sociais" #~ msgid "Click on blue \"Create App ID\" button" #~ msgstr "Clique no botão azul \"Criar ID do App\"" #, fuzzy #~| msgid "In the left sidebar, click on \"Facebook Login/Settings\"" #~ msgid "" #~ "In the left sidebar under the Products section, click on \"Facebook Login" #~ "\" and select Settings" #~ msgstr "Na barra lateral esquerda, clique em \"Facebook Login/Settings\"" #, fuzzy #~| msgid "In the top of the left sidebar, click on \"Settings\"" #~ msgid "" #~ "In the top of the left sidebar, click on \"Settings\" and select \"Basic\"" #~ msgstr "No topo da barra lateral esquerda, clique em \"Configurações\"" #, php-format #~ msgid "Click on OAuth 2.0 client ID: %s" #~ msgstr "Clique no ID de Cliente OAuth 2.0: %s" #~ msgid "" #~ "Click on the \"Credentials\" in the left hand menu to create new API " #~ "credentials" #~ msgstr "" #~ "Clique em “Credenciais” no menu esquerdo para criar uma nova credencial " #~ "API" #, fuzzy #~| msgid "Select \"OAuth client ID\" from the dropdown." #~ msgid "" #~ "Click the Create credentials button and select \"OAuth client ID\" from " #~ "the dropdown." #~ msgstr "Selecione \"OAuth client ID\" no menu suspenso." #~ msgid "Your application type should be \"Web application\"" #~ msgstr "Seu tipo de aplicação deve ser “Aplicação Web”" #~ msgid "Name your application" #~ msgstr "Nomeie seu aplicativo" #, fuzzy #~| msgid "Click the \"Create\" button!" #~ msgid "Click the \"Save Changes\" button!" #~ msgstr "Clique no botão \"Criar\"!" #~ msgid "Click on the App" #~ msgstr "Clicar no App" #, php-format #~ msgid "" #~ "Add the following URL to the \"Authorized Redirect URLs:\" field: %s" #~ msgstr "" #~ "Adicionar o seguinte URL no campo “URLs de Redirecionamento Autorizados”: " #~ "%s" #~ msgid "Scroll down to \"REST API apps\"." #~ msgstr "Role para baixo até \"apps de API REST\"." #~ msgid "Select the \"Live\" option on the top-right side. " #~ msgstr "Selecione a opção \"ao vivo\" no lado superior direito." #~ msgid "Click the \"Create App\" button." #~ msgstr "Clique no botão \"Criar Novo App\"." #~ msgid "Locate the blue \"Create application\" button and click on it." #~ msgstr "Localize o botão azul “Criar Aplicação” e clique nele." #~ msgid "When all fields are filled, create you app." #~ msgstr "Quando todos os campos estiverem preenchidos, crie seu aplicativo." #~ msgid "" #~ "You'll be sent a confirmation code via SMS which you need to type to be " #~ "able to create the app." #~ msgstr "" #~ "Você receberá um código de confirmação por SMS que precisa ser digitado " #~ "para poder criar o aplicativo." #~ msgid "Application ID" #~ msgstr "ID do aplicativo" #~ msgid "Click on \"Update\"" #~ msgstr "Clique em \"Atualizar\"" #, fuzzy, php-format #~| msgid "" #~| "Fill the \"Base domain\" field with your domain, probably: %s" #~ msgid "" #~ "Check if the saved \"Callback Domain\" matches with your domain: %s" #~ msgstr "" #~ "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: %s" #, fuzzy #~| msgid "" #~| "Here you can see your \"Client ID\" and \"Client Secret\". These will be " #~| "needed in the plugin's settings." #~ msgid "" #~ "Replace your old \"Client ID\" and \"Client Secret\" with the one of the " #~ "new app!" #~ msgstr "" #~ "Aqui você pode ver o seu \"ID do Cliente\" e \"Segredo do cliente\". " #~ "Estes serão necessários nas configurações do plugin." #~ msgid "Fill \"Display Name\" and \"Contact Email\"" #~ msgstr "Preencha \"Nome de Exibição\" e \"Email de Contato\"" #~ msgid "Locate the yellow \"Create application\" button and click on it." #~ msgstr "Localize o botão amarelo “Criar Aplicação” e clique nele." #~ msgid "Fill the fields marked with *" #~ msgstr "Preencha os campos marcados com *" #~ msgid "Accept the Terms of use and hit Submit" #~ msgstr "Aceite os Termos de uso e clique Enviar" #~ msgid "Find the necessary Authentication Keys under the Authentication menu" #~ msgstr "" #~ "Encontre a Chave de Autenticação necessária abaixo do menu Autenticação" #~ msgid "" #~ "You probably want to enable the \"r_emailaddress\" under the Default " #~ "Application Permissions" #~ msgstr "" #~ "Você provavelmente quer habilitar o “r_emailaddress” abaixo das " #~ "Permissões de Aplicação Padrão" #~ msgid "Pro Addon - Authorized domain has been changed" #~ msgstr "Complemento pro - O domínio autorizado foi alterado" #~ msgid "" #~ "You must authorize your new domain to receive updates and " #~ "support in the future." #~ msgstr "" #~ "Você deve autorizar seu novo domíniopara receber atualizações e " #~ "suporte no futuro." #~ msgid "You can authorize your new domain by completing the following steps:" #~ msgstr "" #~ "Você pode autorizar seu novo domínio concluindo as seguintes etapas:" #~ msgid "Log in with your credentials if you are not logged in" #~ msgstr "Faça o login com suas credenciais se você não estiver logado" #~ msgid "Find your old domain name: %s" #~ msgstr "Encontre o seu nome de domínio antigo: %s" #~ msgid "Click on the %1$s next to your domain name." #~ msgstr "Clique no %1$s ao lado do seu nome de domínio." #~ msgid "Authorize your %1$s by clicking on the following button." #~ msgstr "Autorize seu %1$s clicando no seguinte botão." #~ msgid "The authorized domain name of your site is fine!" #~ msgstr "O nome de domínio autorizado do seu site é bom!" #~ msgid "Your domain name changed so you must authorize %1$s again." #~ msgstr "" #~ "Seu nome de domínio foi alterado, então você deve autorizar %1$s " #~ "novamente." #~ msgid "" #~ "Move your mouse over Facebook Login and click on the appearing \"Set Up\" " #~ "button" #~ msgstr "" #~ "Mova seu mouse sobre Facebook Login e clique no botão “Configurar” que " #~ "aparecerá" #~ msgid "Choose Web" #~ msgstr "Escolher Web" #~ msgid "Fill \"Site URL\" with the url of your homepage, probably: %s" #~ msgstr "" #~ "Preencha “URL do Site” com a url de sua página, provavelmente: %s" #~ msgid "In the left sidebar, click on \"Facebook Login\"" #~ msgstr "Na barra lateral esquerda, clique em \"Facebook Login\"" #~ msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab." #~ msgstr "" #~ "Escolha a aba \"Geral\", que fica ao lado da aba \"Configurações da Web\"." #~ msgid "Legacy" #~ msgstr "Legado" #~ msgid "" #~ "%s took the place of Nextend Google Connect. You can delete Nextend " #~ "Google Connect as it is not needed anymore." #~ msgstr "" #~ "%s tomou o lugar do Nextend Google Connect. Você pode apagar o Nextend " #~ "Google Connect como ele não é mais necessário." #~ msgid "" #~ "%s took the place of Nextend Twitter Connect. You can delete Nextend " #~ "Twitter Connect as it is not needed anymore." #~ msgstr "" #~ "%s tomou o lugar do Nextend Twitter Connect. Você pode apagar o Nextend " #~ "Twitter Connect como ele não é mais necessário." #~ msgid "Import Facebook configuration" #~ msgstr "Importar Configuração do Facebook" #~ msgid "Be sure to read the following notices before you proceed." #~ msgstr "Certifique-se de ler as seguintes notificações antes de prosseguir." #~ msgid "Important steps before the import" #~ msgstr "Passos importantes antes de importar" #~ msgid "" #~ "Make sure that the redirect URI for your app is correct before proceeding." #~ msgstr "" #~ "Certifique-se de que a URI de redirecionamento para seu app está correta " #~ "antes de prosseguir." #~ msgid "Visit %s." #~ msgstr "Visita %s." #~ msgid "Select your app." #~ msgstr "Selecione seu app." #~ msgid "" #~ "Go to the Settings menu which you can find below the Facebook Login in " #~ "the left menu." #~ msgstr "" #~ "Vá para o menu Configurações que você pode encontrar abaixo de Facebook " #~ "Login no menu esquerdo." #~ msgid "Make sure that the \"%1$s\" field contains %2$s" #~ msgstr "Certifique-se de que o campo \"%1$s\" contém %2$s" #~ msgid "The following settings will be imported:" #~ msgstr "As configurações seguintes serão importadas:" #~ msgid "Your old API configurations" #~ msgstr "Suas configurações de API antigas" #~ msgid "The user prefix you set" #~ msgstr "O prefixo de usuário que você definiu" #~ msgid "Create a backup of the old settings" #~ msgstr "Criar um backup das configurações antigas" #~ msgid "Other changes" #~ msgstr "Outras variações" #~ msgid "" #~ "The custom redirect URI is now handled globally for all providers, so it " #~ "won't be imported from the previous version. Visit \"Nextend Social Login " #~ "> Global settings\" to set the new redirect URIs." #~ msgstr "" #~ "O URI de redirecionamento personalizado é agora tratado globalmente para " #~ "todos os provedores, então não será importado das versões anteriores. " #~ "Visite “Nextend Social Login > Configurações Globais” para ajustar os " #~ "novos URIs de redirecionamento." #~ msgid "" #~ "The login button's layout will be changed to a new, more modern look. If " #~ "you used any custom buttons that won't be imported." #~ msgstr "" #~ "O layout do botão de login será alterado para uma nova, mais moderna " #~ "aparência. Se você usou qualquer botão personalizado que não será " #~ "importado." #~ msgid "" #~ "The old version's PHP functions are not available anymore. This means if " #~ "you used any custom codes where you used these old functions, you need to " #~ "remove them." #~ msgstr "" #~ "As funções do PHP de versões antigas não estão mais disponíveis. Isto " #~ "significa que se você usou qualquer código personalizado onde você tenha " #~ "usado estas funções antigas você precisa removê-las." #~ msgid "" #~ "After the importing process finishes, you will need to test your " #~ "app and enable the provider. You can do both in the next screen." #~ msgstr "" #~ "Após o processo de importação terminar, você precisará testar seu " #~ "app e ativar o fornecedor. Você pode fazer ambos na próxima tela." #~ msgid "Import Configuration" #~ msgstr "Importar a Configuração" #~ msgid "Import Google configuration" #~ msgstr "Importar Configuração do Google" #~ msgid "If you have more projects, select the one where your app is." #~ msgstr "Se você tiver mais projetos, selecione um onde seu app esteja." #~ msgid "Click on Credentials at the left-hand menu then select your app." #~ msgstr "Clique em Credenciais no menu a esquerda, então selecione seu app." #~ msgid "Import Twitter configuration" #~ msgstr "Impotar configuração do Twitter" #~ msgid "Go to the Settings tab." #~ msgstr "Vá para a aba Configurações." #~ msgid "" #~ "If you're prompted to set a product name, do so. Provide the Privacy " #~ "Policy URL as well then click on the save button" #~ msgstr "" #~ "Vá para a aba de tela de consentimento OAuth e insira um nome de produto " #~ "e forneça uma URL de Política de Privacidade, então clique no botão salvar" #~ msgid "Authorize your Pro Addon" #~ msgstr "Autorize seu Addon Pro" #~ msgid "Authorize" #~ msgstr "Autorizar" #~ msgid "Deauthorize Pro Addon" #~ msgstr "Desautorizar o Addon Pro" #~ msgid "Click on the \"Settings\" tab" #~ msgstr "Clique na aba \"Configurações\"" #~ msgid "Click on \"Update Settings\"" #~ msgstr "Clicar em \"Atualizar Configurações\"" #~ msgid "" #~ "Go back to the Credentials tab and locate the small box at the middle. " #~ "Click on the blue \"Create credentials\" button. Chose the \"OAuth client " #~ "ID\" from the dropdown list." #~ msgstr "" #~ "Volte para o guia de Credenciais e localize a pequena caixa no meio. " #~ "Clique no botão azul ”Criar credenciais\". Escolha o \"ID de cliente OAuth" #~ "\" da lista suspensa." #~ msgid "Accept the Twitter Developer Agreement" #~ msgstr "Aceitar o Acordo de Desenvolvedor do Twitter" #~ msgid "" #~ "Create your application by clicking on the Create your Twitter " #~ "application button" #~ msgstr "Crie sua aplicação clicando no botão Criar sua aplicação Twitter" #~ msgid "Consumer Key" #~ msgstr "Chave do consumidor" #~ msgid "Consumer Secret" #~ msgstr "Senha Consumidor" #~ msgid "BuddyPress register form" #~ msgstr "Formulário de registo BuddyPress" #~ msgid "BuddyPress register button style" #~ msgstr "Estilo de botão de registro BuddyPress" #~ msgid "Comment login button" #~ msgstr "Botão de login de comentário" #~ msgid "Comment button style" #~ msgstr "Estilo do botão de comentário" #~ msgid "WooCommerce login form" #~ msgstr "Formulário de login do WooCommerce" #~ msgid "Connect button before login form" #~ msgstr "Botão Conectar antes de formulário de login" #~ msgid "Connect button after login form" #~ msgstr "Botão Conectar após o formulário de login" #~ msgid "WooCommerce register form" #~ msgstr "Formulário de registo do WooCommerce" #~ msgid "Connect button before register form" #~ msgstr "Botão Conectar antes de formulário de registro" #~ msgid "Connect button after register form" #~ msgstr "Botão Conectar após o formulário de registro" #~ msgid "WooCommerce billing form" #~ msgstr "Formulário de Cobrança do WooCommerce" #~ msgid "Connect button before billing form" #~ msgstr "Botão Conectar antes do formulário de cobrança" #~ msgid "Connect button after billing form" #~ msgstr "Botão Conectar após o formulário de cobrança" #~ msgid "Link buttons before account details" #~ msgstr "Botão Vincular antes de detalhes da conta" #~ msgid "WooCommerce button style" #~ msgstr "Estilo do botão WooCommerce" #~ msgid "Use custom" #~ msgstr "Usar personalizado" #~ msgid "Fixed redirect url for register" #~ msgstr "Url de redirecionamento corrigido para registo" #~ msgid "Registration form" #~ msgstr "Formulário de registro" #~ msgid "Please save your changes before testing." #~ msgstr "Por favor, salve suas alterações antes de testar." class-settings.php000066600000005235152140537230010233 0ustar00 array(), 'stored' => array(), 'final' => array() ); /** * NextendSocialLoginSettings constructor. * * @param $optionKey string * @param $defaultSettings array */ public function __construct($optionKey, $defaultSettings) { $this->optionKey = $optionKey; $this->settings['default'] = $defaultSettings; $storedSettings = get_option($this->optionKey); if ($storedSettings !== false) { $storedSettings = (array)maybe_unserialize($storedSettings); } else { $storedSettings = array(); } $this->settings['stored'] = array_merge($this->settings['default'], $storedSettings); $this->settings['final'] = apply_filters('nsl_finalize_settings_' . $optionKey, $this->settings['stored']); } public function get($key, $storage = 'final') { if (!isset($this->settings[$storage][$key])) { return false; } return $this->settings[$storage][$key]; } public function set($key, $value) { $this->settings['stored'][$key] = $value; $this->storeSettings(); } public function getAll($storage = 'final') { return $this->settings[$storage]; } /** * @param array $postedData * * @return bool */ public function update($postedData) { if (is_array($postedData)) { $newData = array(); $newData = apply_filters('nsl_update_settings_validate_' . $this->optionKey, $newData, $postedData); if (count($newData)) { $isChanged = false; foreach ($newData AS $key => $value) { if ($this->settings['stored'][$key] != $value) { $this->settings['stored'][$key] = $value; $isChanged = true; } } if ($isChanged) { $allowedKeys = array_keys($this->settings['default']); $this->settings['stored'] = array_intersect_key($this->settings['stored'], array_flip($allowedKeys)); $this->storeSettings(); return true; } } } return false; } protected function storeSettings() { update_option($this->optionKey, maybe_serialize($this->settings['stored'])); $this->settings['final'] = apply_filters('nsl_finalize_settings_' . $this->optionKey, $this->settings['stored']); } }compat.php000066600000002547152140537230006556 0ustar00 /** WPLMS triggers the same hook twice in the same form -> Hide duplicated social buttons. */ div#vibe_bp_login div#nsl-custom-login-form-2{ display:none; } "; } } } new NextendSocialLoginCompatibility(); nextend-social-login.php000066600000130352152140537230011312 0ustar00' . __('Update now!', 'nextend-facebook-connect') . ''); } } public static function noticeUpdatePro() { if (is_admin() && current_user_can('manage_options')) { $file = 'nextend-social-login-pro/nextend-social-login-pro.php'; Notices::addError(sprintf(__('Please update %1$s to version %2$s or newer.', 'nextend-facebook-connect'), "Nextend Social Login Pro Addon", self::$nslPROMinVersion) . ' ' . __('Update now!', 'nextend-facebook-connect') . ''); } } /** @var NextendSocialLoginSettings */ public static $settings; private static $styles = array( 'default' => array( 'container' => 'nsl-container-block', 'align' => array( 'left', 'right', 'center', ) ), 'icon' => array( 'container' => 'nsl-container-inline', 'align' => array( 'left', 'right', 'center', ) ), 'grid' => array( 'container' => 'nsl-container-grid', 'align' => array( 'left', 'right', 'center', 'space-around', 'space-between', ) ) ); public static $providersPath; /** * @var NextendSocialProviderDummy[] */ public static $providers = array(); /** * @var NextendSocialProvider[] */ public static $allowedProviders = array(); /** * @var NextendSocialProvider[] */ public static $enabledProviders = array(); private static $ordering = array(); private static $loginHeadAdded = false; private static $loginMainButtonsAdded = false; public static $counter = 1; public static $WPLoginCurrentView = ''; public static $WPLoginCurrentFlow = 'login'; public static function init() { add_action('plugins_loaded', 'NextendSocialLogin::plugins_loaded'); register_activation_hook(NSL_PATH_FILE, 'NextendSocialLogin::install'); add_action('delete_user', 'NextendSocialLogin::delete_user'); self::$settings = new NextendSocialLoginSettings('nextend_social_login', array( 'enabled' => array(), 'register-flow-page' => '', 'proxy-page' => '', 'ordering' => array( 'facebook', 'google', 'twitter' ), 'licenses' => array(), 'terms_show' => 0, 'terms' => __('By clicking Register, you accept our Privacy Policy', 'nextend-facebook-connect'), 'store_name' => 1, 'store_email' => 1, 'avatar_store' => 1, 'store_access_token' => 1, 'redirect_prevent_external' => 0, 'redirect' => '', 'redirect_reg' => '', 'default_redirect' => '', 'default_redirect_reg' => '', 'blacklisted_urls' => '', 'target' => 'prefer-popup', 'allow_register' => -1, 'allow_unlink' => 1, 'show_login_form' => 'show', 'login_form_button_align' => 'left', 'show_registration_form' => 'show', 'login_form_button_style' => 'default', 'login_form_layout' => 'below', 'show_embedded_login_form' => 'show', 'embedded_login_form_button_align' => 'left', 'embedded_login_form_button_style' => 'default', 'embedded_login_form_layout' => 'below', 'comment_login_button' => 'show', 'comment_button_align' => 'left', 'comment_button_style' => 'default', 'buddypress_register_button' => 'bp_before_account_details_fields', 'buddypress_register_button_align' => 'left', 'buddypress_register_button_style' => 'default', 'buddypress_login' => 'show', 'buddypress_login_form_layout' => 'default', 'buddypress_login_button_style' => 'default', 'buddypress_sidebar_login' => 'show', 'woocommerce_login' => 'after', 'woocommerce_login_form_layout' => 'default', 'woocommerce_register' => 'after', 'woocommerce_register_form_layout' => 'default', 'woocommerce_billing' => 'before', 'woocommerce_billing_form_layout' => 'default', 'woocoommerce_form_button_style' => 'default', 'woocoommerce_form_button_align' => 'left', 'woocommerce_account_details' => 'before', 'memberpress_form_button_align' => 'left', 'memberpress_login_form_button_style' => 'default', 'memberpress_login_form_layout' => 'below-separator', 'memberpress_signup' => 'before', 'memberpress_signup_form_button_style' => 'default', 'memberpress_signup_form_layout' => 'below-separator', 'memberpress_account_details' => 'after', 'registration_notification_notify' => '0', 'debug' => '0', 'login_restriction' => '0', 'avatars_in_all_media' => '0', 'review_state' => -1, 'woocommerce_dismissed' => 0, 'userpro_show_login_form' => 'show', 'userpro_show_register_form' => 'show', 'userpro_form_button_align' => 'left', 'userpro_login_form_button_style' => 'default', 'userpro_register_form_button_style' => 'default', 'userpro_login_form_layout' => 'below', 'userpro_register_form_layout' => 'below', 'ultimatemember_form_button_align' => 'left', 'ultimatemember_login' => 'after', 'ultimatemember_login_form_button_style' => 'default', 'ultimatemember_login_form_layout' => 'below-separator', 'ultimatemember_register' => 'after', 'ultimatemember_register_form_button_style' => 'default', 'ultimatemember_register_form_layout' => 'below-separator', 'ultimatemember_account_details' => 'after', 'admin_bar_roles' => array(), )); add_action('itsec_initialized', 'NextendSocialLogin::disable_better_wp_security_block_long_urls', -1); add_action('bp_loaded', 'NextendSocialLogin::buddypress_loaded'); } public static function plugins_loaded() { NextendSocialLoginAdmin::init(); $lastVersion = get_option('nsl-version'); if ($lastVersion != self::$version) { NextendSocialLogin::install(); if (empty($lastVersion) || version_compare($lastVersion, '3.0.14', '<=')) { $old_license_status = NextendSocialLogin::$settings->get('license_key_ok'); if ($old_license_status) { $domain = NextendSocialLogin::$settings->get('authorized_domain'); if (empty($domain)) { $domain = self::getDomain(); } NextendSocialLogin::$settings->set('licenses', array( array( 'license_key' => NextendSocialLogin::$settings->get('license_key'), 'domain' => $domain ) )); } } update_option('nsl-version', self::$version, true); wp_redirect(set_url_scheme('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'])); exit; } else if (isset($_REQUEST['repairnsl']) && current_user_can('manage_options') && check_admin_referer('repairnsl')) { self::install(); wp_redirect(admin_url('admin.php?page=nextend-social-login')); exit; } do_action('nsl_start'); load_plugin_textdomain('nextend-facebook-connect', false, basename(dirname(__FILE__)) . '/languages/'); Notices::init(); self::$providersPath = NSL_PATH . '/providers/'; $providers = array_diff(scandir(self::$providersPath), array( '..', '.' )); foreach ($providers AS $provider) { if (file_exists(self::$providersPath . $provider . '/' . $provider . '.php')) { require_once(self::$providersPath . $provider . '/' . $provider . '.php'); } } do_action('nsl_add_providers'); self::$ordering = array_flip(self::$settings->get('ordering')); uksort(self::$providers, 'NextendSocialLogin::sortProviders'); uksort(self::$allowedProviders, 'NextendSocialLogin::sortProviders'); uksort(self::$enabledProviders, 'NextendSocialLogin::sortProviders'); do_action('nsl_providers_loaded'); if (NextendSocialLogin::$settings->get('allow_register') != 1) { add_filter('nsl_is_register_allowed', 'NextendSocialLogin::is_register_allowed'); } add_action('login_form_login', 'NextendSocialLogin::login_form_login'); add_action('login_form_register', 'NextendSocialLogin::login_form_register'); add_action('login_form_link', 'NextendSocialLogin::login_form_link'); add_action('bp_core_screen_signup', 'NextendSocialLogin::bp_login_form_register'); add_action('login_form_unlink', 'NextendSocialLogin::login_form_unlink'); add_action('template_redirect', 'NextendSocialLogin::alternate_login_page_template_redirect'); add_action('parse_request', 'NextendSocialLogin::editProfileRedirect'); //check if jQuery is loaded add_action('wp_print_scripts', 'NextendSocialLogin::checkJqueryLoaded'); if (count(self::$enabledProviders) > 0) { if (self::$settings->get('show_login_form') == 'hide') { add_action('login_form_login', 'NextendSocialLogin::removeLoginFormAssets'); } else { add_action('login_form', 'NextendSocialLogin::addLoginFormButtons'); add_action('login_form_login', 'NextendSocialLogin::jQuery'); } if (NextendSocialLogin::$settings->get('show_registration_form') == 'hide') { add_action('login_form_register', 'NextendSocialLogin::removeLoginFormAssets'); } else { add_action('register_form', 'NextendSocialLogin::addLoginFormButtons'); add_action('login_form_register', 'NextendSocialLogin::jQuery'); } if (NextendSocialLogin::$settings->get('show_embedded_login_form') != 'hide') { add_filter('login_form_bottom', 'NextendSocialLogin::filterAddEmbeddedLoginFormButtons'); } //some themes trigger both the bp_sidebar_login_form action and the login_form action. switch (NextendSocialLogin::$settings->get('buddypress_sidebar_login')) { case 'show': add_action('bp_sidebar_login_form', 'NextendSocialLogin::addLoginButtons'); break; } add_action('profile_personal_options', 'NextendSocialLogin::addLinkAndUnlinkButtons'); /* * Shopkeeper theme fix. Remove normal login form hooks while WooCommerce registration/login form rendering */ add_action('woocommerce_login_form_start', 'NextendSocialLogin::remove_action_login_form_buttons'); add_action('woocommerce_login_form_end', 'NextendSocialLogin::add_action_login_form_buttons'); add_action('woocommerce_register_form_start', 'NextendSocialLogin::remove_action_login_form_buttons'); add_action('woocommerce_register_form_end', 'NextendSocialLogin::add_action_login_form_buttons'); /* End of fix */ add_action('wp_head', 'NextendSocialLogin::styles', 100); add_action('admin_head', 'NextendSocialLogin::styles', 100); add_action('login_head', 'NextendSocialLogin::loginHead', 100); add_action('wp_print_footer_scripts', 'NextendSocialLogin::scripts', 100); add_action('login_footer', 'NextendSocialLogin::scripts', 100); require_once dirname(__FILE__) . '/includes/avatar.php'; add_shortcode('nextend_social_login', 'NextendSocialLogin::shortcode'); } add_action('admin_print_footer_scripts', 'NextendSocialLogin::scripts', 100); require_once(NSL_PATH . '/widget.php'); do_action('nsl_init'); /** * Fix for Hide my WP plugin @see https://codecanyon.net/item/hide-my-wp-amazing-security-plugin-for-wordpress/4177158 */ if (class_exists('HideMyWP', false)) { if (!empty($_REQUEST['loginSocial'])) { global $HideMyWP; $loginPath = '/wp-login.php'; if (is_object($HideMyWP) && substr($_SERVER['PHP_SELF'], -1 * strlen($loginPath))) { $login_query = $HideMyWP->opt('login_query'); if (!$login_query) { $login_query = 'hide_my_wp'; } $_GET[$login_query] = $HideMyWP->opt('admin_key'); } } } if (!empty($_REQUEST['loginSocial'])) { // Fix for all-in-one-wp-security-and-firewall if (empty($_GET['action'])) { $_GET['action'] = 'nsl-login'; } // Fix for wps-hide-login if (empty($_REQUEST['action'])) { $_REQUEST['action'] = 'nsl-login'; } // Fix for Social Rabbit as it catch our code response from Facebook if (class_exists('\SR\Utils\Scheduled', true)) { add_action('init', 'NextendSocialLogin::fixSocialRabbit', 0); } // Fix for Dokan https://wedevs.com/dokan/ if (function_exists('dokan_redirect_to_register')) { remove_action('login_init', 'dokan_redirect_to_register', 10); } // Fix for Jetpack SSO add_filter('jetpack_sso_bypass_login_forward_wpcom', '__return_false'); } } public static function fixSocialRabbit() { remove_action('init', '\SR\Utils\Scheduled::init', 10); } public static function removeLoginFormAssets() { remove_action('login_head', 'NextendSocialLogin::loginHead', 100); remove_action('wp_print_footer_scripts', 'NextendSocialLogin::scripts', 100); remove_action('login_footer', 'NextendSocialLogin::scripts', 100); } public static function styles() { $stylesheet = self::get_template_part('style.css'); if (!empty($stylesheet) && file_exists($stylesheet)) { echo ''; } } public static function checkJqueryLoaded() { echo ''; } public static function loginHead() { self::styles(); $template = self::get_template_part('login/' . sanitize_file_name(self::$settings->get('login_form_layout')) . '.php'); if (!empty($template) && file_exists($template)) { require($template); } self::$loginHeadAdded = true; } public static function scripts() { static $once = null; if ($once === null) { $scripts = NSL_PATH . '/js/nsl.js'; if (file_exists($scripts)) { echo ''; } $once = true; } } public static function install() { /** @var $wpdb WPDB */ global $wpdb; $table_name = $wpdb->prefix . "social_users"; $charset_collate = $wpdb->get_charset_collate(); $sql = "CREATE TABLE " . $table_name . " ( `ID` int(11) NOT NULL, `type` varchar(20) NOT NULL, `identifier` varchar(100) NOT NULL, `register_date` datetime NOT NULL default '0000-00-00 00:00:00', `login_date` datetime NOT NULL default '0000-00-00 00:00:00', `link_date` datetime NOT NULL default '0000-00-00 00:00:00', KEY `ID` (`ID`,`type`) ) " . $charset_collate . ";"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); dbDelta($sql); } public static function sortProviders($a, $b) { if (isset(self::$ordering[$a]) && isset(self::$ordering[$b])) { if (self::$ordering[$a] < self::$ordering[$b]) { return -1; } return 1; } if (isset(self::$ordering[$a])) { return -1; } return 1; } /** * @param $provider NextendSocialProviderDummy */ public static function addProvider($provider) { if (in_array($provider->getId(), self::$settings->get('enabled'))) { if ($provider->isTested() && $provider->enable()) { self::$enabledProviders[$provider->getId()] = $provider; } } self::$providers[$provider->getId()] = $provider; if ($provider instanceof NextendSocialProvider) { self::$allowedProviders[$provider->getId()] = $provider; } } public static function enableProvider($providerID) { if (isset(self::$providers[$providerID])) { $enabled = self::$settings->get('enabled'); $enabled[] = self::$providers[$providerID]->getId(); $enabled = array_unique($enabled); self::$settings->update(array( 'enabled' => $enabled )); } } public static function disableProvider($providerID) { if (isset(self::$providers[$providerID])) { $enabled = array_diff(self::$settings->get('enabled'), array(self::$providers[$providerID]->getId())); self::$settings->update(array( 'enabled' => $enabled )); } } public static function isProviderEnabled($providerID) { return isset(self::$enabledProviders[$providerID]); } public static function alternate_login_page_template_redirect() { $isAlternatePage = ((self::getProxyPage() !== false && is_page(self::getProxyPage())) || (self::getRegisterFlowPage() !== false && is_page(self::getRegisterFlowPage()))); if ($isAlternatePage) { nocache_headers(); if (!empty($_REQUEST['loginSocial']) || (isset($_GET['interim_login']) && $_GET['interim_login'] === 'nsl')) { $action = isset($_GET['action']) ? $_GET['action'] : 'login'; if (!in_array($action, array( 'login', 'register', 'link', 'unlink' ))) { $action = 'login'; } switch ($action) { case 'login': NextendSocialLogin::login_form_login(); break; case 'register': NextendSocialLogin::login_form_register(); break; case 'link': NextendSocialLogin::login_form_link(); break; case 'unlink': NextendSocialLogin::login_form_unlink(); break; } } else { if (!is_front_page() && !is_home()) { wp_redirect(home_url()); exit; } } } } public static function login_form_login() { self::$WPLoginCurrentView = 'login'; self::login_init(); } public static function login_form_register() { self::$WPLoginCurrentView = 'register'; self::login_init(); } public static function bp_login_form_register() { self::$WPLoginCurrentView = 'register-bp'; self::login_init(); } public static function login_form_link() { self::$WPLoginCurrentView = 'link'; self::login_init(); } public static function login_form_unlink() { self::$WPLoginCurrentView = 'unlink'; self::login_init(); } public static function login_init() { add_filter('wp_login_errors', 'NextendSocialLogin::wp_login_errors'); if (isset($_GET['interim_login']) && $_GET['interim_login'] === 'nsl' && is_user_logged_in()) { self::onInterimLoginSuccess(); } if (isset($_REQUEST['loginFacebook']) && $_REQUEST['loginFacebook'] == '1') { $_REQUEST['loginSocial'] = 'facebook'; } if (isset($_REQUEST['loginGoogle']) && $_REQUEST['loginGoogle'] == '1') { $_REQUEST['loginSocial'] = 'google'; } if (isset($_REQUEST['loginTwitter']) && $_REQUEST['loginTwitter'] == '1') { $_REQUEST['loginTwitter'] = 'twitter'; } if (isset($_REQUEST['loginSocial']) && is_string($_REQUEST['loginSocial']) && isset(self::$providers[$_REQUEST['loginSocial']]) && (self::$providers[$_REQUEST['loginSocial']]->isEnabled() || self::$providers[$_REQUEST['loginSocial']]->isTest())) { nocache_headers(); self::$providers[$_REQUEST['loginSocial']]->connect(); } } private static function onInterimLoginSuccess() { require_once(NSL_PATH . '/admin/interim.php'); } public static function wp_login_errors($errors) { if (empty($errors)) { $errors = new WP_Error(); } $errorMessages = Notices::getErrors(); if ($errorMessages !== false) { foreach ($errorMessages AS $errorMessage) { $errors->add('error', $errorMessage); } } return $errors; } public static function editProfileRedirect() { global $wp; if (isset($wp->query_vars['editProfileRedirect'])) { if (function_exists('bp_loggedin_user_domain')) { header('LOCATION: ' . bp_loggedin_user_domain() . 'profile/edit/group/1/'); } else { header('LOCATION: ' . self_admin_url('profile.php')); } exit; } } public static function jQuery() { wp_enqueue_script('jquery'); } public static function filterAddEmbeddedLoginFormButtons($ret) { return $ret . self::getEmbeddedLoginForm(); } private static function getEmbeddedLoginForm() { ob_start(); self::styles(); $index = self::$counter++; $containerID = 'nsl-custom-login-form-' . $index; echo '
' . self::renderButtonsWithContainer(self::$settings->get('embedded_login_form_button_style'), false, false, false, self::$settings->get('embedded_login_form_button_align')) . '
'; $template = self::get_template_part('embedded-login/' . sanitize_file_name(self::$settings->get('embedded_login_form_layout')) . '.php'); if (!empty($template) && file_exists($template)) { include($template); } return ob_get_clean(); } public static function addLoginFormButtons() { echo self::getRenderedLoginButtons(); } public static function addLoginButtons() { echo self::getRenderedLoginButtons(); } public static function remove_action_login_form_buttons() { remove_action('login_form', 'NextendSocialLogin::addLoginFormButtons'); remove_action('register_form', 'NextendSocialLogin::addLoginFormButtons'); } public static function add_action_login_form_buttons() { add_action('login_form', 'NextendSocialLogin::addLoginFormButtons'); add_action('register_form', 'NextendSocialLogin::addLoginFormButtons'); } private static function getRenderedLoginButtons() { if (!self::$loginHeadAdded || self::$loginMainButtonsAdded) { return self::getEmbeddedLoginForm(); } self::$loginMainButtonsAdded = true; $ret = '
'; $ret .= self::renderButtonsWithContainer(self::$settings->get('login_form_button_style'), false, false, false, self::$settings->get('login_form_button_align')); $ret .= '
'; return $ret; } public static function addLinkAndUnlinkButtons() { echo self::renderLinkAndUnlinkButtons(); } /** * @param bool|false|string $heading * @param bool $link * @param bool $unlink * @param string $align * @param array|string $providers * * @return string */ public static function renderLinkAndUnlinkButtons($heading = '', $link = true, $unlink = true, $align = "left", $providers = false) { if (count(self::$enabledProviders)) { $buttons = ''; if ($heading !== false) { if (empty($heading)) { $heading = __('Social Login', 'nextend-facebook-connect'); } $buttons = '

' . $heading . '

'; } if ($unlink) { //Filter to disable unlinking social accounts $isUnlinkAllowed = apply_filters('nsl_allow_unlink', true); if (!$isUnlinkAllowed) { $unlink = false; } } $enabledProviders = false; if (is_array($providers)) { $enabledProviders = array(); foreach ($providers AS $provider) { if ($provider && isset(self::$enabledProviders[$provider->getId()])) { $enabledProviders[$provider->getId()] = $provider; } } } if ($enabledProviders === false) { $enabledProviders = self::$enabledProviders; } if (count($enabledProviders)) { $buttons = ''; foreach ($enabledProviders AS $provider) { if ($provider->isCurrentUserConnected()) { if ($unlink) { $buttons .= $provider->getUnLinkButton(); } } else { if ($link) { $buttons .= $provider->getLinkButton(); } } } $buttons = '
' . $buttons . '
'; return '
' . $buttons . '
'; } } return ''; } /** * @param $user_id * * @return bool * @deprecated * */ public static function getAvatar($user_id) { foreach (self::$enabledProviders AS $provider) { $avatar = $provider->getAvatar($user_id); if ($avatar !== false) { return $avatar; } } return false; } public static function shortcode($atts) { if (!is_array($atts)) { $atts = array(); } $atts = array_merge(array( 'provider' => false, 'login' => 1, 'link' => 0, 'unlink' => 0, 'heading' => false, 'align' => 'left', ), $atts); $providers = false; $providerID = $atts['provider'] === false ? false : $atts['provider']; if ($providerID !== false && isset(self::$enabledProviders[$providerID])) { $providers = array(self::$enabledProviders[$providerID]); } if (!is_user_logged_in()) { if (filter_var($atts['login'], FILTER_VALIDATE_BOOLEAN) === false) { return ''; } $atts = array_merge(array( 'style' => 'default', 'redirect' => false, 'trackerdata' => false ), $atts); return self::renderButtonsWithContainerAndTitle($atts['heading'], $atts['style'], $providers, $atts['redirect'], $atts['trackerdata'], $atts['align']); } $link = filter_var($atts['link'], FILTER_VALIDATE_BOOLEAN); $unlink = filter_var($atts['unlink'], FILTER_VALIDATE_BOOLEAN); if ($link || $unlink) { return self::renderLinkAndUnlinkButtons($atts['heading'], $link, $unlink, $atts['align'], $providers); } return ''; } /** * @param string $style * @param bool|NextendSocialProvider[] $providers * @param bool|string $redirect_to * @param bool $trackerData * @param string $align * * @return string */ public static function renderButtonsWithContainer($style = 'default', $providers = false, $redirect_to = false, $trackerData = false, $align = "left") { return self::renderButtonsWithContainerAndTitle(false, $style, $providers, $redirect_to, $trackerData, $align); } private static function renderButtonsWithContainerAndTitle($heading = false, $style = 'default', $providers = false, $redirect_to = false, $trackerData = false, $align = "left") { if (!isset(self::$styles[$style])) { $style = 'default'; } if (!in_array($align, self::$styles[$style]['align'])) { $align = 'left'; } $enabledProviders = false; if (is_array($providers)) { $enabledProviders = array(); foreach ($providers AS $provider) { if ($provider && isset(self::$enabledProviders[$provider->getId()])) { $enabledProviders[$provider->getId()] = $provider; } } } if ($enabledProviders === false) { $enabledProviders = self::$enabledProviders; } if (count($enabledProviders)) { $buttons = ''; foreach ($enabledProviders AS $provider) { $buttons .= $provider->getConnectButton($style, $redirect_to, $trackerData); } if (!empty($heading)) { $heading = '

' . $heading . '

'; } else { $heading = ''; } $buttons = '
' . $buttons . '
'; $ret = '
' . $heading . $buttons . '
'; if (defined('DOING_AJAX') && DOING_AJAX) { $id = md5(uniqid('nsl-ajax-')); $ret = '
' . $ret . '
'; } return $ret; } return ''; } public static function getCurrentPageURL() { if (defined('DOING_AJAX') && DOING_AJAX) { return ''; } $currentUrl = set_url_scheme('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']); if (!self::isAllowedRedirectUrl($currentUrl)) { return false; } return $currentUrl; } public static function getLoginUrl($scheme = null) { static $alternateLoginPage = null; if ($alternateLoginPage === null) { $proxyPage = self::getProxyPage(); if ($proxyPage !== false) { $alternateLoginPage = get_permalink($proxyPage); } if (empty($alternateLoginPage)) { $alternateLoginPage = false; } } if ($alternateLoginPage !== false) { return $alternateLoginPage; } return site_url('wp-login.php', $scheme); } public static function getRegisterUrl() { return wp_registration_url(); } public static function isAllowedRedirectUrl($url) { $loginUrl = self::getLoginUrl(); // If the currentUrl is the loginUrl, then we should not return it for redirects if (strpos($url, $loginUrl) === 0) { return false; } $loginUrl2 = site_url('wp-login.php'); // If the currentUrl is the loginUrl, then we should not return it for redirects if ($loginUrl2 !== $loginUrl && strpos($url, $loginUrl2) === 0) { return false; } $registerUrl = wp_registration_url(); // If the currentUrl is the registerUrl, then we should not return it for redirects if (strpos($url, $registerUrl) === 0) { return false; } $blacklistedUrls = NextendSocialLogin::$settings->get('blacklisted_urls'); if (!empty($blacklistedUrls)) { $blackListedUrlArray = preg_split('/\r\n|\r|\n/', $blacklistedUrls); // If the currentUrl is blacklisted, then we should not return it for redirects foreach ($blackListedUrlArray as $blackListedUrl) { //If the url contains the blackListedUrl returns false if (strpos($url, $blackListedUrl) !== false) { return false; } } } return true; } public static function get_template_part($file_name, $name = null) { // Execute code for this part do_action('get_template_part_' . $file_name, $file_name, $name); // Setup possible parts $templates = array(); $templates[] = $file_name; // Allow template parts to be filtered $templates = apply_filters('nsl_get_template_part', $templates, $file_name, $name); // Return the part that is found return self::locate_template($templates); } public static function locate_template($template_names) { // No file found yet $located = false; // Try to find a template file foreach ((array)$template_names as $template_name) { // Continue if template is empty if (empty($template_name)) { continue; } // Trim off any slashes from the template name $template_name = ltrim($template_name, '/'); // Check child theme first if (file_exists(trailingslashit(get_stylesheet_directory()) . 'nsl/' . $template_name)) { $located = trailingslashit(get_stylesheet_directory()) . 'nsl/' . $template_name; break; // Check parent theme next } else if (file_exists(trailingslashit(get_template_directory()) . 'nsl/' . $template_name)) { $located = trailingslashit(get_template_directory()) . 'nsl/' . $template_name; break; // Check theme compatibility last } else if (file_exists(trailingslashit(self::get_templates_dir()) . $template_name)) { $located = trailingslashit(self::get_templates_dir()) . $template_name; break; } else if (defined('NSL_PRO_PATH') && file_exists(trailingslashit(NSL_PRO_PATH) . 'template-parts/' . $template_name)) { $located = trailingslashit(NSL_PRO_PATH) . 'template-parts/' . $template_name; break; } } return $located; } public static function get_templates_dir() { return NSL_PATH . '/template-parts'; } public static function delete_user($user_id) { /** @var $wpdb WPDB */ global $wpdb, $blog_id; $wpdb->delete($wpdb->prefix . 'social_users', array( 'ID' => $user_id ), array( '%d' )); $attachment_id = get_user_meta($user_id, $wpdb->get_blog_prefix($blog_id) . 'user_avatar', true); if (wp_attachment_is_image($attachment_id)) { wp_delete_attachment($attachment_id, true); } } public static function disable_better_wp_security_block_long_urls() { if (class_exists('ITSEC_System_Tweaks', false)) { remove_action('itsec_initialized', array( ITSEC_System_Tweaks::get_instance(), 'block_long_urls' )); } } public static function buddypress_loaded() { add_action('bp_settings_setup_nav', 'NextendSocialLogin::bp_settings_setup_nav'); } public static function bp_settings_setup_nav() { if (!bp_is_active('settings')) { return; } // Determine user to use. if (bp_loggedin_user_domain()) { $user_domain = bp_loggedin_user_domain(); } else { return; } // Get the settings slug. $settings_slug = bp_get_settings_slug(); bp_core_new_subnav_item(array( 'name' => __('Social Accounts', 'nextend-facebook-connect'), 'slug' => 'social', 'parent_url' => trailingslashit($user_domain . $settings_slug), 'parent_slug' => $settings_slug, 'screen_function' => 'NextendSocialLogin::bp_display_account_link', 'position' => 30, 'user_has_access' => bp_core_can_edit_settings() ), 'members'); } public static function bp_display_account_link() { add_action('bp_template_title', 'NextendSocialLogin::bp_template_title'); add_action('bp_template_content', 'NextendSocialLogin::bp_template_content'); bp_core_load_template(apply_filters('bp_core_template_plugin', 'members/single/plugins')); } public static function bp_template_title() { _e('Social Login', 'nextend-facebook-connect'); } public static function bp_template_content() { echo self::renderLinkAndUnlinkButtons(false); } public static function getTrackerData() { return Persistent::get('trackerdata'); } public static function getDomain() { return preg_replace('/^www\./', '', parse_url(site_url(), PHP_URL_HOST)); } public static function getRegisterFlowPage() { static $registerFlowPage = null; if ($registerFlowPage === null) { $registerFlowPage = intval(self::$settings->get('register-flow-page')); if (empty($registerFlowPage) || get_post($registerFlowPage) === null) { $registerFlowPage = false; } } return $registerFlowPage; } public static function getProxyPage() { static $proxyPage = null; if ($proxyPage === null) { $proxyPage = intval(self::$settings->get('proxy-page')); if (empty($proxyPage) || get_post($proxyPage) === null) { $proxyPage = false; } } return $proxyPage; } public static function getFreePagesForRegisterFlow($pages) { $availablePages = array(); foreach ($pages as $page) { $post_states = array(); $post_states = apply_filters('display_post_states', $post_states, $page); if (NextendSocialLogin::getRegisterFlowPage() === $page->ID || !$post_states) { $availablePages[] = $page; } } return $availablePages; } public static function getFreePagesForOauthProxyPage($pages) { $availablePages = array(); foreach ($pages as $page) { $post_states = array(); $post_states = apply_filters('display_post_states', $post_states, $page); if (NextendSocialLogin::getProxyPage() === $page->ID || !$post_states) { $availablePages[] = $page; } } return $availablePages; } public static function is_register_allowed($isAllowed) { $allow_register = NextendSocialLogin::$settings->get('allow_register'); switch ($allow_register) { //WordPress default membership case -1: if (get_option('users_can_register')) { return true; } break; } return false; } public static function hasLicense($strict = true) { return self::getLicense($strict) !== false; } public static function getLicense($strict = true) { $licenses = NextendSocialLogin::$settings->get('licenses'); $currentDomain = '.' . NextendSocialLogin::getDomain(); $currentDomainLength = strlen($currentDomain); for ($i = 0; $i < count($licenses); $i++) { $authorizedDomain = '.' . preg_replace('/^www\./', '', $licenses[$i]['domain']); $authorizedDomainLength = strlen($authorizedDomain); if ($authorizedDomain === $currentDomain || strrpos($currentDomain, $authorizedDomain) === $currentDomainLength - $authorizedDomainLength) { return $licenses[$i]; } if (strrpos($currentDomain, $authorizedDomain) === $currentDomainLength - $authorizedDomainLength) { return $licenses[$i]; } if (strrpos($authorizedDomain, $currentDomain) === $authorizedDomainLength - $currentDomainLength) { return $licenses[$i]; } } if (!$strict && !empty($licenses)) { return $licenses[0]; } return false; } } NextendSocialLogin::init(); widget.php000066600000014740152140537230006554 0ustar00 '')); $title = $instance['title']; $style = isset($instance['style']) ? $instance['style'] : 'default'; $align = isset($instance['align']) ? $instance['align'] : 'left'; $loginButtons = isset($instance['login-buttons']) ? !!intval($instance['login-buttons']) : true; $linkButtons = isset($instance['link-buttons']) ? !!intval($instance['link-buttons']) : false; $unlinkButtons = isset($instance['unlink-buttons']) ? !!intval($instance['unlink-buttons']) : false; $isPRO = apply_filters('nsl-pro', false); ?>


checked/>
checked/>


checked/>
checked/>
checked/>

checked/>

checked/>

checked/>

id_base); $style = !empty($instance['style']) ? $instance['style'] : 'default'; $align = !empty($instance['align']) ? $instance['align'] : 'left'; $loginButtons = isset($instance['login-buttons']) ? intval($instance['login-buttons']) : 1; $linkButtons = isset($instance['link-buttons']) ? intval($instance['link-buttons']) : 0; $unlinkButtons = isset($instance['unlink-buttons']) ? intval($instance['unlink-buttons']) : 0; echo $args['before_widget']; if ($title) { echo $args['before_title'] . $title . $args['after_title']; } echo do_shortcode('[nextend_social_login style="' . $style . '" login="' . $loginButtons . '" link="' . $linkButtons . '" unlink="' . $unlinkButtons . '" align="' . $align . '"]'); echo $args['after_widget']; } } add_action('widgets_init', 'Nextend_Social_Login_Widget::register'); readme.txt000066600000055320152140537230006555 0ustar00=== Nextend Social Login and Register === Contributors: nextendweb Tags: social login, facebook, google, twitter, linkedin, register, login, social, nextend facebook connect, social sign in Donate link: https://www.facebook.com/nextendweb Requires at least: 4.5 Tested up to: 5.3.2 Stable tag: 3.0.22 Requires PHP: 7.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html One click registration & login plugin for Facebook, Google, Twitter and more. Quick setup and easy configuration. == Description == Nextend Social Login is a professional, easy to use and free WordPress plugin. It lets your visitors register and login to your site using their social profiles (Facebook, Google, Twitter, etc.) instead of forcing them to spend valuable time to fill out the default registration form. Besides that, they don't need to wait for validation emails or keep track of their username and password anymore. >[Demo](https://try-nextend-social-login.nextendweb.com/wp-login.php) | [Tutorial videos](https://www.youtube.com/watch?v=buPTza2-6xc&list=PLSawiBnEUNftt3EDqnP2jIXeh6q0pZ5D8&index=1) | [Docs](https://nextendweb.com/nextend-social-login-docs/documentation/) | [Support](https://nextendweb.com/contact-us/nextend-social-login-support/) | [Pro Addon](https://nextendweb.com/social-login/) [youtube https://www.youtube.com/watch?v=buPTza2-6xc] Nextend Social Login seamlessly integrates with your existing WordPress login and registration form. Existing users can add or remove their social accounts at their WordPress profile page. A single user can attach as many social account as they want allowing them to log in with Facebook, Google or Twitter. #### Three popular providers: Facebook, Google and Twitter Providers are the services which the visitors can use to register and log in to your site. Nextend Social Login allows your visitors to log in with their account from the most popular social networks: Facebook, Google and Twitter. #### Free version features * One click registration and login via Facebook, Google and Twitter * Your current users can easily connect their Facebook, Google or Twitter profiles with their account * Social accounts are tied to a WordPress user account so every account can be accessed with and without social account * You can define custom redirect URL after the registration (upon first login) using any of the social accounts. * You can define custom redirect URL after each login with any of the enabled social accounts. * Display Facebook, Google, Twitter profile picture as avatar * Login widget and shortcodes * Customizable designs to match your site * Editable and translatable texts on the login buttons * Very simple to setup and use * Clean, user friendly UI * Fast and helpful support #### Additional features in the [Pro addon](https://nextendweb.com/social-login/) * WooCommerce compatibility * Pro providers: LinkedIn, Amazon, VKontakte, WordPress.com, Yahoo, PayPal, Disqus, Apple and more coming soon * Configure whether email address should be asked on registration at each provider * Configure whether username should be asked on registration at each provider * Choose from icons or wide buttons * Several login layouts * Restrict specific user roles from using the social logins. (You can restrict different roles for each provider.) * Assign specific user roles to the newly registered users who use any social login provider. (You can set different roles for each provider.) #### Usage After you activated the plugin configure and enable the provider you want to use, then the plugin will automatically * add the login buttons to the WordPress login page. See screenshot #1 * add the account linking buttons to the WordPress profile page. See screenshot #2 == Frequently Asked Questions == = Can I make my site GDPR compliant with Nextend Social Login installed? = Sure, Nextend Social Login provides you the tools to make your site GDPR compliant. [Check out the Nextend Social Login GDPR documentation](https://nextendweb.com/nextend-social-login-docs/gdpr/) to learn more about the topic. = 1. Where does Nextend Social Login display the social login buttons? = The free version of Nextend Social Login displays the social login buttons automatically on the /wp-login.php's login form and all forms made using the wp_login_form action. You can use Nextend Social Login's widget and shortcodes if you need to display the buttons anywhere. If you need to publish the login buttons in your theme, you can use the [PHP code](https://nextendweb.com/nextend-social-login-docs/theme-developer/). = 2. How can I get the email address from the Twitter users? = After you set up your APP go to the Settings tab and enter the URL of your Terms of Service and Privacy Policy page. Then hit the Update your settings button. Then go to the Permissions tab and check the "Request email addresses from users" under "Additional Permissions". [There's a documentation](https://nextendweb.com/nextend-social-login-docs/provider-twitter/#get-email) that explains the process with screenshots. = 3. Why are random email addresses generated for users registering with their FaceBook account? = When the user tries to register with their Facebook account Facebook pops up a window where each user can view what kind of access they give for the app. In this modal they can chose not to share their email address. When they're doing so we generate a random email address for them. They can of course change this at their profile. If the permission is given to the app, there are still [other factors](https://nextendweb.com/nextend-social-login-docs/provider-facebook/#get-email) which can result Facebook not sending back any email address. In the Pro Addon it's possible to ask an email address if it's not returned by Facebook. = 4. What should I do when I experience any problems? = [Contact us](https://nextendweb.com/contact-us/nextend-social-login-support/) via email and explain the issue you have. = 5. How can I translate the plugin? = Find the `.pot` file at the /languages folder. From that you can start the translation process. [Drop us](https://nextendweb.com/contact-us/nextend-social-login-support/) the final `.po` and `.mo` files and we'll put them to the next releases. = 6. I have a feature request... = That's awesome! [Contact us](https://nextendweb.com/contact-us/nextend-social-login-support/) and let's discuss the details. = 7. Does Nextend Social Login work with BuddyPress? = Nextend Social Login Free version does not have BuddyPress specific settings and the login buttons will not appear there. However your users will still be able login and register at the normal WordPress login page. Then when logged in they can use every BuddyPress feature their current user role have access to. Using the Pro Addon you can set where the login buttons should appear on the Register form and how they should look like. == Installation == ### Automatic installation 1. Search for Nextend Social Login through 'Plugins > Add New' interface. 2. Find the plugin box of Nextend Social Login and click on the 'Install Now' button. 3. Then activate the Nextend Social Login plugin. 4. Go to the 'Settings > Nextend' Social Connect to see the available providers. 5. Configure the provider you would like to use. (You'll find detailed instructions for each provider.) 6. Test the configuration then enable the provider. ### Manual installation 1. Download [Nextend Social Login](https://downloads.wordpress.org/plugin/nextend-facebook-connect.zip) 2. Upload Nextend Social Login through 'Plugins > Add New > Upload' interface or upload nextend-facebook-connect folder to the `/wp-content/plugins/` directory. 3. Activate the Nextend Social Login plugin through the 'Plugins' menu in WordPress. 4. Go to the 'Settings > Nextend Social Connect' to see the available providers. 5. Configure the provider you would like to use. (You'll find detailed instructions for each provider.) 6. Test the configuration then enable the provider. == Screenshots == 1. Nextend Social Login and Register on the main WP login page 2. Nextend Social Login and Register in the profile page for account linking == Changelog == = 3.0.22 = * Fix: Updated language files * PRO: Fix: Plugin could not be activated because it triggered a fatal error. - Fix for the problem: Deactivate and delete "Nextend Social Login Pro Addon" plugin with version 3.0.21, then activate the version 3.0.22. = 3.0.21 = * Compatibility: PHP 7 or greater is required for the new version!. * Fix: Icon style - Icons will be wrapped into multiple lines when there is no more room for them. * Fix: Social buttons will no longer be distorted when the page is translated with Google translator. * Fix: WPLMS theme - social button style and duplicated social buttons. * Fix: WP Rocket - compatibility with combine JavaScript feature. * Fix: Popup target window when the social buttons appear in certain modals. * Fix: Ultimate Member avatars with social registration. * Fix: Avatar will be synchronized again, if the attachment was already set, but the file doesn't exist. * Improvement: Database - Register, Link and Login date will be stored in database. * Improvement: Improvement: Google - Light skin will be the default button skin. * Improvement: Pages which are being used by other plugins will be filtered out from [Page for register flow and OAuth redirect uri proxy page](https://nextendweb.com/nextend-social-login-docs/global-settings/) * Improvement: The Getting Started sections are updated with new steps. * Improvement: New registrations happening with social login will also be displayed in the BuddyPress - Activity log. * Improvement: Shortcode [provider](https://nextendweb.com/nextend-social-login-docs/theme-developer/#shortcode) parameter will also define the visibility of the link and unlink buttons. * Feature: Option to disable the Google account select prompt on each login. * For developers: The provider instance can now be accessed over "nsl_registration_form_start" and "nsl_registration_form_end" actions * PRO: Provider: [Apple](https://nextendweb.com/nextend-social-login-docs/provider-apple/) * PRO: Fix: Plugin update error - WordPress cached the wrong update url. * PRO: Fix: Social button layouts in Theme My Login forms. * PRO: Fix: Ultimate Member and [Support login restrictions](https://nextendweb.com/nextend-social-login-docs/login-restriction/) - Users will be redirected to the Ultimate Member login page after the registration. * PRO: Improvement: Yahoo new endpoint and app creation guide. New and deprecated [Sync data](https://nextendweb.com/nextend-social-login-docs/provider-yahoo/#sync_data) fields. * PRO: Improvement: WooCommerce automatically generated password feature support when [Registration notification sent to](https://nextendweb.com/nextend-social-login-docs/global-settings/#pro-settings) is set to User or User and Admin. = 3.0.20 = * Fix: Ultimate Member Auto Approve + Support Login Restriction - Avatars will be synchronized. * Fix: Error message didn't show up when an "OAuth redirect uri proxy page" was selected. * Feature: Shortcode - [Grid style](https://nextendweb.com/nextend-social-login-docs/theme-developer/#shortcode) * Feature: German translation files added. * Improvement: redirect_to URL parameter will be stronger than current page url * Improvement: [nsl_registration_user_data](https://nextendweb.com/nextend-social-login-docs/backend-developer/) filter can now be also used for [preventing the registration](https://nextendweb.com/nextend-social-login-docs/backend-developer/#prevent-registration). * PRO: Improvement: PayPal updated endpoints. New Sync Data field: PayPal account ID (payer ID) * PRO: Removed: [PayPal Sync Data](https://nextendweb.com/nextend-social-login-docs/provider-paypal/#sync_data) fields: Date of birth, Age range, Phone, Account type, Account creation date, Time zone, Locale, Language. = 3.0.19 = * Fix: Shortcode - align parameter notice * Fix: Social buttons didn't show up properly when the action where we check jQuery was called multiple times. * Improvement: Google Select account modal before the login. * PRO: Fix: Jetpack - display our social buttons on custom Jetpack comment form * PRO: Feature: BuddyPress - option to disable the social buttons on the action: bp_sidebar_login_form * PRO: Improvement: LinkedIn v2 REST API update. Getting Started section updated with the new App creation steps. * PRO: Removed: [LinkedIn Sync data](https://nextendweb.com/nextend-social-login-docs/provider-linkedin/#sync_data) = 3.0.18 = * Fix: _nsl is not defined error * Fix: The shortcode of [Page for register flow](https://nextendweb.com/nextend-social-login-docs/global-settings/) will be rendered into the correct position. * Fix: Google - G+ logo is replaced with simple G logo. * PRO: Fix: [Target window](https://nextendweb.com/nextend-social-login-docs/global-settings/#pro-settings) will open the auth window of the provider in the selected way again. * PRO: Fix: Update notice when the Free and Pro Addon are not compatible. * PRO: Feature: Social buttons for BuddyPress - Login widget * PRO: Feature: Option to disable the WordPress Toolbar on the front-end for some roles. * PRO: New provider - [Yahoo](https://nextendweb.com/nextend-social-login-docs/provider-yahoo/) * PRO: Note: We had plans to implement the [Instagram](https://nextendweb.com/nextend-social-login-docs/provider-instagram/) provider. Unfortunately we need to change our mind, since the Instagram API will become deprecated soon! = 3.0.17 = * Fix: Activation fix on certain sub-domains. = 3.0.16 = * Fix: NSL Avatars used to override the specified BuddyPress avatars. * Fix: 500 error when the Extended Profiles setting is disabled in BuddyPress. * Fix: By default, users won’t be redirected to the homepage after unlinking their accounts, instead will be redirected back to the page, where the unlink action has happened. * Fix: Nextend Social Login will now wait for jQuery before positioning the social buttons. * Fix: Getting Started section of some providers are updated with the new App creation steps. * Feature: Russian translation added. * Feature: [Display avatars in “All media items”](https://nextendweb.com/nextend-social-login-docs/global-settings/) – Images can now load faster in Media Library – Grid view, when this option is enabled. * Feature: Social button alignment option for WordPress forms, shortcode and widget. * Feature: [Membership](https://nextendweb.com/nextend-social-login-docs/global-settings/) – is now available in the FREE version and provides support for WordPress default membership as well. * Feature: new hook allows overriding the username and email before registration - [nsl_registration_user_data](https://nextendweb.com/nextend-social-login-docs/backend-developer/) * Facebook – Graph API v3.2 - old API-s may require [API Call version upgrade](https://nextendweb.com/nextend-social-login-docs/facebook-upgrade-api-call/)! * Old Nextend Facebook/Twitter/Google Connect compatibility has been removed. * Social Buttons use flex-box layout now. * PRO: Fix: Internet Explorer – Pro Addon activation. * PRO: Fix: Facebook provider – Sync data: Gender, Profile link, Age range can be retrieved again. * PRO: Feature: Social button alignment option for WooCommerce, Comment, BuddyPress, MemberPress, UserPro, Ultimate Member forms. * PRO: Feature: [Unlink](https://nextendweb.com/nextend-social-login-docs/global-settings/) option to disable unlink buttons. * PRO: Feature: PayPal – Option to [disable the email scope](https://nextendweb.com/nextend-social-login-docs/provider-paypal/#settings). * PRO: Removed: Facebook provider – Sync data fields: Currency, TimeZone, Locale became deprecated. * PRO: Improvement: Google+ API will shut down soon, so [Google Sync data](https://nextendweb.com/nextend-social-login-docs/provider-google/#sync_data) will use Google People API instead. = 3.0.14 = * Fix: Conflict with Login with Ajax reset password. * Fix: BuddyPress related themes, that render the avatar with the bp_displayed_user_avatar() will be able to get the avatar of the user. * Fix: New email and profile Google scopes, since old ones became deprecated. * Fix: WooCommerce User Email Verification plugin prevented users with NSL from logging in. * Fix: registerComplete function is hooked later to let other plugins send their email notifications. * Old Nextend Twitter/Google Connect - backwards compatibility notice added. In the 3.0.15 release the backward compatibility will be removed. * PRO: Fix: Ultimate Member - missing avatar when Support login restriction is disabled. * PRO: Fix: Authorized domain notification when the page was authorized on non www but was visited on www or vice versa. * PRO: New provider - [WordPress.com](https://nextendweb.com/nextend-social-login-docs/provider-wordpress-com/) * PRO: New provider - [Disqus](https://nextendweb.com/nextend-social-login-docs/provider-disqus/) = 3.0.13 = * Fix: Twitter Getting Started and Settings page updated according to the new Twitter App creation. * Fix: Won't stuck on a blank page anymore when the login and registration is blocked by WP Cerber. * Fix: Infinite redirect loop when home page was selected as OAuth redirect uri proxy page. * Fix: Safari will no longer close the page automatically after logging in with NSL. * Feature: Login restriction - Some plugins are now able to prevent the login of NSL when admin approval or email verification is necessary! * Feature: Google button skins. * Feature: Portuguese (Brazilian) translation added. * PRO: Fix: USM Premium prevented the authorization of NSL Pro Addon. * PRO: Fix: WooCommerce default button layout fix for Billing. * PRO: Fix: Separator duplication by some themes. = 3.0.12 = * Fix: Further changes to prevent some issues with Theme My Login. * Fix: 'profile_update' WordPress hook won't be triggered anymore upon a registration process. * Fix: Chrome and Android Facebook login issue via Facebook App. * Feature: Debug menu and option to test the connection of each provider. * Feature: Twitter - Selecting profile image size is an option now. * Feature: Blacklisted redirects * Feature: Nextend Social Login newsletters subscription! * PRO: Fix: Google Sync data - Error message for Google+ API when it is not enabled. * PRO: Feature: PayPal provider and PayPal Sync data! * PRO: Feature: Social Buttons for MemberPress - Memberships form. * PRO: Feature: Social Buttons for Ultimate Member forms. = 3.0.11 = * Fix: Twitter - 32bit and Windows servers are lost the id precision * Feature: Jetpack SSO login form extension * Feature: Prevent external redirect * Feature: Added Debug menu and Provider connection test * Theme My Login version 7 breaks Nextend Social Login, so notice displays with details * PRO: Feature: Sync Google fields * PRO: Feature: Sync Twitter fields = 3.0.10 = * Fix: display_post_states is static now = 3.0.9 = * Fix: Parse error for alternate login page = 3.0.8 = * Feature: A page can be selected which handles the extra fields for Register flow. * Feature: A page can be selected which handles the OAuth flow. * Feature: Spanish (Latin America) translation added. * Feature: GDPR - add custom Terms and conditions on register. * Feature: GDPR - retrieved fields can now be exported with the Export Personal Data tool of WordPress. * Fix: Jetpack - Secure Sign On * Fix: Dokan - redirection * PRO: Feature: Authorized domain name check and notice for changed domain name. * PRO: Feature: Option to change the button layouts for WooCommerce login/register/billing forms. * PRO: Feature: Sync LinkedId fields = 3.0.7 = * Feature: AJAX compatibility * Feature: Default Redirect URL * Feature: Twitter screen name as username * Fix: SocialRabbit compatibility * PRO: New provider - [VKontakte - vk.com](https://nextendweb.com/nextend-social-login-docs/provider-vkontakte/) * PRO: New provider - [Amazon](https://nextendweb.com/nextend-social-login-docs/provider-amazon/) * PRO: New provider - [UserPro Login and Register support.](https://nextendweb.com/nextend-social-login-docs/global-settings-userpro/) = 3.0.6 = * Avatars are stored in your media library as Facebook blocked the url access * Code improvements * PHP and WordPress version check * Improved template-parts * Fix: Login and redirect cleanup * Fix: Socialize theme * PRO: Sync Facebook fields * PRO: Force to ask password and username when enabled * PRO: MemberPress integration = 3.0.5 = * Session cookie name changed to properly work on Pantheon hosting. It can be changed with Can be changed with nsl_session_name filter and NSL_SESSION_NAME constant. * Fix for Hide my WP plugin @see https://codecanyon.net/item/hide-my-wp-amazing-security-plugin-for-wordpress/4177158 = 3.0.4 = * Remove whitespaces from username * Provider test process renamed to "Verify Settings" * NextendSocialLogin::renderLinkAndUnlinkButtons($heading = '', $link = true, $unlink = true) allows to display link and unlink buttons * Link and unlink shortcode added: [nextend_social_login login="0" link="1" unlink="1" heading="Connect Social Accounts"] * [Theme My Login](https://wordpress.org/plugins/theme-my-login/) plugin compatibility fixes. * Embedded login form settings for wp_login_form * Prevent account linking if it is already linked * BuddyPress register form support and profile link and unlink buttons * iThemes Security - Filter Long URL removed as it prevents provider to return oauth params. * All In One WP Security - Fixed Verify Settings in providers * Instruction when redirect Uri changes * Added new shortcode parameter: trackerdata. = 3.0.3 = * Added fallback username prefix * Fixed avatar for Google, Twitter and LinkedIn providers * Fixed avatars on retina screen * Optimized registration process * Fixed Shopkeeper theme conflict * WP HTTP api replaced the native cURL * Twitter provider client optimization, removed force_login param, [added email permission](https://nextendweb.com/nextend-social-login-docs/provider-twitter/#get-email) * Removed mb_strlen, so "PHP Multibyte String" not required anymore * Fixed rare case when the redirect to last state url was missing * Added [WebView support](https://nextendweb.com/nextend-social-login-docs/can-use-nextend-social-login-webview/) (Google buttons are hidden in WebView as Google does not allow to use) * Fixed rare case when user can stuck in legacy mode while importing provider. = 3.0.2 = * Fixed upgrade script = 3.0.1 = * Nextend Facebook Connect renamed to Nextend Social Login and contains Google and Twitter providers too. * Brand new UI * Popup login * Pro Addon = 2.1 = * New providers: Twitter and Google * Major UI redesign * API testing before a provider is enabled to eliminate possible configuration issues = 2.0.2 = * Fix: Fatal error: Call to undefined method Facebook\Facebook::getAccessToken() = 2.0.1 = * Fix: Redirect uri mismatch in spacial server environment = 2.0.0 = * The latest Facebook PHP API used: https://github.com/facebook/php-graph-sdk * Facebook SDK for PHP requires PHP 5.4 or greater. * Fix: Facebook 2.2 API does not work anymorenextend-facebook-connect.php000066600000003144152140537230012130 0ustar00=')) { add_action('admin_notices', 'nsl_fail_php_version'); } elseif (!version_compare(get_bloginfo('version'), '4.6', '>=')) { add_action('admin_notices', 'nsl_fail_wp_version'); } else { require_once(NSL_PATH . '/nextend-social-login.php'); } function nsl_fail_php_version() { /* translators: %2$s: PHP version */ $message = sprintf(esc_html__('%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE.', 'nextend-facebook-connect'), 'Nextend Social Login', '7.0'); $html_message = sprintf('
%s
', wpautop($message)); echo wp_kses_post($html_message); } function nsl_fail_wp_version() { /* translators: %2$s: WordPress version */ $message = sprintf(esc_html__('%1$s requires WordPress version %2$s+. Because you are using an earlier version, the plugin is currently NOT ACTIVE.', 'nextend-facebook-connect'), 'Nextend Social Login', '4.6'); $html_message = sprintf('
%s
', wpautop($message)); echo wp_kses_post($html_message); }