| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030 |
- msgid ""
- msgstr ""
- "Project-Id-Version: nextend-facebook-connect\n"
- "POT-Creation-Date: 2021-11-15 18:50+0100\n"
- "PO-Revision-Date: 2021-11-15 18:50+0100\n"
- "Last-Translator: \n"
- "Language-Team: nextend-facebook-connect\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 3.0\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: --no-location\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"
- msgid "What personal data we collect and why we collect it"
- msgstr ""
- #, 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 ""
- msgid "Who we share your data with"
- msgstr ""
- #, 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 ""
- msgid "Does the plugin share personal data with third parties"
- msgstr ""
- #, 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 ""
- msgid "How long we retain your data"
- msgstr ""
- #, php-format
- msgid ""
- "%1$s removes the collected personal data when the user deleted from "
- "WordPress."
- msgstr ""
- msgid "Does the plugin use personal data collected by others?"
- msgstr ""
- #, 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 ""
- msgid "Does the plugin store things in the browser?"
- msgstr ""
- #, 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 ""
- msgid "Does the plugin collect telemetry data, directly or indirectly?"
- msgstr ""
- msgid "No"
- msgstr ""
- msgid ""
- "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
- "third party?"
- msgstr ""
- msgid "User"
- msgstr ""
- #, php-format
- msgid "%s needs json_decode function."
- msgstr ""
- msgid "Please contact your server administrator and ask for solution!"
- msgstr ""
- msgid "Settings saved."
- msgstr ""
- msgid "The activation was successful"
- msgstr ""
- msgid "Deactivate completed."
- msgstr ""
- msgid "Settings"
- msgstr ""
- #, php-format
- msgid "Unexpected response: %s"
- msgstr ""
- #, php-format
- msgid ""
- "%s detected that your login url changed. You must update the Oauth redirect "
- "URIs in the related social applications."
- msgstr ""
- msgid "Fix Error"
- msgstr ""
- msgid "Oauth Redirect URI"
- msgstr ""
- #, 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 ""
- msgid "Dismiss and check Pro Addon"
- msgstr ""
- msgid "Dismiss"
- msgstr ""
- #, php-format
- msgid ""
- "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
- "register flow</b>\" and \"<b>OAuth redirect uri proxy page</b>\" in %1$s to "
- "work properly."
- msgstr ""
- msgid "Fix now"
- msgstr ""
- msgid "Activate your Pro Addon"
- msgstr ""
- msgid ""
- "To be able to use the Pro features, you need to activate Nextend Social "
- "Login Pro Addon. You can do this by clicking on the Activate button below "
- "then select the related purchase."
- msgstr ""
- msgid "Activate"
- msgstr ""
- msgid "License key"
- msgstr ""
- msgid "OAuth proxy page"
- msgstr ""
- msgid "Register flow page"
- msgstr ""
- #, php-format
- msgid ""
- "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
- "your %1$s configuration the Redirect URI can be different. For more "
- "information please check our %2$s %1$s compatibility tutorial%3$s!"
- msgstr ""
- #, php-format
- msgid ""
- "<p><strong><u>Warning</u></strong>: Providers change the App setup process "
- "quite often, which means some steps below might not be accurate. If you see "
- "significant difference in the written instructions and what you see at the "
- "provider, feel free to %1$sreport it%2$s, so we can check and update the "
- "instructions.<br><strong>Last updated:</strong> %3$s.</p>"
- msgstr ""
- msgid "You have logged in successfully."
- msgstr ""
- msgid "Login label"
- msgstr ""
- msgid "Reset to default"
- msgstr ""
- msgid "Register label"
- msgstr ""
- msgid "Link label"
- msgstr ""
- msgid "Unlink label"
- msgstr ""
- msgid "Default button"
- msgstr ""
- msgid "Use custom button"
- msgstr ""
- #, php-format
- msgid "Use the %s in your custom button's code to make the label show up."
- msgstr ""
- msgid "Icon button"
- msgstr ""
- msgid "Save Changes"
- msgstr ""
- msgid "Getting Started"
- msgstr ""
- msgid "Buttons"
- msgstr ""
- msgid "Sync data"
- msgstr ""
- msgid "Usage"
- msgstr ""
- msgid "Other settings"
- msgstr ""
- msgid "Username prefix on register"
- msgstr ""
- msgid "Fallback username prefix on register"
- msgstr ""
- msgid "Used when username is invalid or not stored"
- msgstr ""
- msgid "Terms and conditions"
- msgstr ""
- #, php-format
- msgid "Override global \"%1$s\""
- msgstr ""
- msgid "PRO settings"
- msgstr ""
- msgid "Ask E-mail on registration"
- msgstr ""
- msgid "Never"
- msgstr ""
- msgid "When email is not provided or empty"
- msgstr ""
- msgid "Always"
- msgstr ""
- msgid "Ask Username on registration"
- msgstr ""
- msgid "Never, generate automatically"
- msgstr ""
- msgid "When username is empty or invalid"
- msgstr ""
- msgid "Ask Password on registration"
- msgstr ""
- msgid "Automatically connect the existing account upon registration"
- msgstr ""
- msgid "Disabled"
- msgstr ""
- msgid "Automatic, based on email address"
- msgstr ""
- msgid "Disable login for the selected roles"
- msgstr ""
- msgid "Default roles for user who registered with this provider"
- msgstr ""
- msgid "Default"
- msgstr ""
- msgid "Register"
- msgstr ""
- msgid "Login"
- msgstr ""
- msgid "Link"
- msgstr ""
- msgid "Store in meta key"
- msgstr ""
- msgid "Shortcode"
- msgstr ""
- msgid "Important!"
- msgstr ""
- msgid "The shortcodes are only rendered for users who haven't logged in yet!"
- msgstr ""
- msgid "See the full list of shortcode parameters."
- msgstr ""
- msgid "Simple link"
- msgstr ""
- msgid "Click here to login or register"
- msgstr ""
- msgid "Image button"
- msgstr ""
- msgid "Image url"
- msgstr ""
- msgid "Debug"
- msgstr ""
- msgid "Test network connection with providers"
- msgstr ""
- msgid "You don't have cURL support, please enable it in php.ini!"
- msgstr ""
- #, php-format
- msgid "Test %1$s connection"
- msgstr ""
- msgid "Fix Oauth Redirect URIs"
- msgstr ""
- msgid "Every Oauth Redirect URI seems fine"
- msgstr ""
- msgid "Got it"
- msgstr ""
- msgid "Global Settings"
- msgstr ""
- msgid "General"
- msgstr ""
- msgid "Privacy"
- msgstr ""
- msgid "Login Form"
- msgstr ""
- msgid "Comment"
- msgstr ""
- msgid "Custom Actions"
- msgstr ""
- msgid "Docs"
- msgstr ""
- msgid "Support"
- msgstr ""
- msgid "Pro Addon"
- msgstr ""
- msgid "Providers"
- msgstr ""
- msgid "Error"
- msgstr ""
- msgid ""
- "You don’t have sufficient permissions to install and activate plugins. "
- "Please contact your site’s administrator!"
- msgstr ""
- msgid "Activate Pro Addon"
- msgstr ""
- msgid ""
- "Pro Addon is installed but not activated. To be able to use the Pro "
- "features, you need to activate it."
- msgstr ""
- msgid "Deactivate Pro Addon"
- msgstr ""
- msgid "Pro Addon is not installed"
- msgstr ""
- msgid ""
- "To access the Pro features, you need to install and activate the Pro Addon."
- msgstr ""
- #, php-format
- msgid "Install %s now"
- msgstr ""
- msgid "Install Pro Addon"
- msgstr ""
- msgid "Activating..."
- msgstr ""
- msgid "Not compatible!"
- msgstr ""
- #, php-format
- msgid ""
- "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or "
- "newer."
- msgstr ""
- msgid "Update Pro Addon"
- msgstr ""
- msgid "Pro Addon is installed and activated"
- msgstr ""
- 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 ""
- msgid "Get Pro Addon to unlock more features"
- msgstr ""
- #, php-format
- msgid ""
- "The features below are available in %s Pro Addon. Get it today and tweak the "
- "awesome settings."
- msgstr ""
- msgid ""
- "If you already have a license, you can Authorize your Pro Addon. Otherwise "
- "you can purchase it using the button below."
- msgstr ""
- msgid "Buy Pro Addon"
- msgstr ""
- msgid "Authorize Pro Addon"
- msgstr ""
- msgid "Pro Addon is not activated"
- msgstr ""
- msgid ""
- "To be able to use the Pro features, you need to install and activate the "
- "Nextend Social Login Pro Addon."
- msgstr ""
- #, php-format
- msgid ""
- "%1$s detected that you have providers configured but none of them are "
- "enabled. To display any social buttons, please make sure you have at least "
- "one provider enabled!"
- msgstr ""
- msgid "Not Available"
- msgstr ""
- msgid "Not Configured"
- msgstr ""
- msgid "Not Verified"
- msgstr ""
- msgid "Enabled"
- msgstr ""
- msgid "Upgrade Now"
- msgstr ""
- msgid "Verify Settings"
- msgstr ""
- msgid "Enable"
- msgstr ""
- msgid "Disable"
- msgstr ""
- msgid "Stay Updated"
- msgstr ""
- msgid ""
- "Receive info on the latest plugin updates and social provider related "
- "changes."
- msgstr ""
- msgid "Enter your email address"
- msgstr ""
- msgid "Subscribe"
- msgstr ""
- msgid "Saving..."
- msgstr ""
- msgid "Saving failed"
- msgstr ""
- msgid "Order Saved"
- msgstr ""
- msgid "Successfully subscribed!"
- msgstr ""
- msgid ""
- "We'll be bringing you all the latest news and updates about Social Login - "
- "right to your inbox."
- msgstr ""
- msgid "The entered email address is invalid!"
- msgstr ""
- msgid "Rate your experience!"
- msgstr ""
- msgid "Hated it"
- msgstr ""
- msgid "Disliked it"
- msgstr ""
- msgid "It was ok"
- msgstr ""
- msgid "Liked it"
- msgstr ""
- msgid "Loved it"
- msgstr ""
- msgid "Please Leave a Review"
- msgstr ""
- msgid ""
- "If you are happy with <b>Nextend Social Login</b> and can take a minute "
- "please leave us a review. It will be a tremendous help for us!"
- msgstr ""
- msgid "Ok, you deserve it"
- msgstr ""
- msgid "Register form"
- msgstr ""
- msgid "No Connect button"
- msgstr ""
- msgid "Connect button before register"
- msgstr ""
- msgid "Action:"
- msgstr ""
- msgid "Connect button before account details"
- msgstr ""
- msgid "Connect button after register"
- msgstr ""
- msgid "Register button style"
- msgstr ""
- msgid "Fullwidth"
- msgstr ""
- msgid "Icon"
- msgstr ""
- msgid "Register layout"
- msgstr ""
- msgid "Below"
- msgstr ""
- msgid "Below with separator"
- msgstr ""
- msgid "Above"
- msgstr ""
- msgid "Above with separator"
- msgstr ""
- msgid "Sidebar Login form"
- msgstr ""
- msgid "Hide login buttons"
- msgstr ""
- msgid "Show login buttons"
- msgstr ""
- msgid ""
- "Some themes that use BuddyPress, display the social buttons twice in the "
- "same login form. This option can disable the one for: "
- "<b>bp_sidebar_login_form action</b>. "
- msgstr ""
- msgid "Login form"
- msgstr ""
- msgid "Login button style"
- msgstr ""
- msgid "Login layout"
- msgstr ""
- msgid "Button alignment"
- msgstr ""
- msgid "Left"
- msgstr ""
- msgid "Center"
- msgstr ""
- msgid "Right"
- msgstr ""
- msgid "Login button"
- msgstr ""
- msgid "Show"
- msgstr ""
- msgid "Hide"
- msgstr ""
- #, php-format
- msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
- msgstr ""
- msgid "Discussion"
- msgstr ""
- msgid "Users must be registered and logged in to comment"
- msgstr ""
- msgid "Button style"
- msgstr ""
- #, php-format
- msgid "%1$s Add your custom actions here. One action per line."
- msgstr ""
- msgid "Usage:"
- msgstr ""
- #, php-format
- msgid ""
- "%1$s The HTML of the social buttons will be added at the place where the "
- "action is fired."
- msgstr ""
- msgid "Important:"
- msgstr ""
- #, php-format
- msgid ""
- "If you %1$sexperience problems%2$s because of this feature, you can disable "
- "it by defining the %3$s constant."
- msgstr ""
- msgid "Button layout"
- msgstr ""
- msgid "Default with top separator"
- msgstr ""
- msgid "Default with bottom separator"
- msgstr ""
- msgid "No Connect button in Login form"
- msgstr ""
- msgid "Connect button on"
- msgstr ""
- msgid "Login form button style"
- msgstr ""
- msgid "No Connect button in Register form"
- msgstr ""
- msgid "Register form button style"
- msgstr ""
- msgid "Checkout form"
- msgstr ""
- msgid "No Connect button in Checkout form"
- msgstr ""
- msgid "Checkout form button style"
- msgstr ""
- msgid "Checkout layout"
- msgstr ""
- msgid "Target window"
- msgstr ""
- msgid "Prefer popup"
- msgstr ""
- msgid "Prefer new tab"
- msgstr ""
- msgid "Prefer same window"
- msgstr ""
- msgid "Registration notification sent to"
- msgstr ""
- msgid "WordPress default"
- msgstr ""
- msgid "Nobody"
- msgstr ""
- msgid "Admin"
- msgstr ""
- msgid "User and Admin"
- msgstr ""
- msgid "Unlink"
- msgstr ""
- msgid "Allow Social account unlink"
- msgstr ""
- msgid "Show linked providers"
- msgstr ""
- #, php-format
- msgid "Providers linked to the account will appear in the %1$s."
- msgstr ""
- msgid "Users table"
- msgstr ""
- msgid "Disable Admin bar for roles"
- msgstr ""
- msgid "Debug mode"
- msgstr ""
- msgid "Page for register flow"
- msgstr ""
- msgid "None"
- msgstr ""
- 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 ""
- #, php-format
- msgid ""
- "%2$s First create a new page and insert the following shortcode: %1$s then "
- "select this page above"
- msgstr ""
- #, php-format
- msgid ""
- "%1$s You won't be able to reach the selected page unless a social login/"
- "registration happens."
- msgstr ""
- msgid "OAuth redirect uri proxy page"
- msgstr ""
- msgid ""
- "You can use this setting when wp-login.php page is not available to handle "
- "the OAuth flow."
- msgstr ""
- #, php-format
- msgid "%1$s First create a new page then select this page above."
- msgstr ""
- msgid "Prevent external redirect overrides"
- msgstr ""
- msgid "Disable external redirects"
- msgstr ""
- msgid "Default redirect url"
- msgstr ""
- msgid "for Login"
- msgstr ""
- msgid "for Register"
- msgstr ""
- msgid "Fixed redirect url"
- msgstr ""
- msgid "Blacklisted redirects"
- msgstr ""
- msgid "If you want to blacklist redirect url params. One pattern per line."
- msgstr ""
- msgid "Support login restrictions"
- msgstr ""
- #, php-format
- msgid "Please visit to our %1$s to check what plugins are supported!"
- msgstr ""
- msgid "Display avatars in \"All media items\""
- msgstr ""
- msgid ""
- "Enabling this option can speed up loading images in Media Library - Grid "
- "view!"
- msgstr ""
- msgid "Membership"
- msgstr ""
- msgid "Allow registration with Social login."
- msgstr ""
- msgid "Custom label for register buttons"
- msgstr ""
- #, php-format
- msgid ""
- "Set a custom label for the social buttons in registration forms and for "
- "shortcodes with %1$s parameter set to %2$s.<br>The register specific labels "
- "can be modified at the Buttons tab of each provider."
- msgstr ""
- msgid "Redirect overlay"
- msgstr ""
- msgid "No overlay"
- msgstr ""
- msgid "Display overlay"
- msgstr ""
- msgid "Display overlay with spinner"
- msgstr ""
- msgid "Display overlay with spinner and message"
- msgstr ""
- msgid ""
- "You can display an overlay on your site when we start the redirect after the "
- "authentication."
- msgstr ""
- #, php-format
- msgid "%1$s The overlay won't be displayed if the %2$s setting is set to %3$s!"
- msgstr ""
- msgid "Note:"
- msgstr ""
- msgid "Below and floating"
- msgstr ""
- msgid "Embedded Login form button style"
- msgstr ""
- msgid "Embedded Login layout"
- msgstr ""
- msgid "Embedded login form button alignment"
- msgstr ""
- msgid "Registration Form"
- msgstr ""
- msgid "Embedded login form"
- msgstr ""
- msgid "Sign Up form"
- msgstr ""
- msgid "No Connect button in Sign Up form"
- msgstr ""
- msgid "Sign Up form button style"
- msgstr ""
- msgid "Sign Up layout"
- msgstr ""
- msgid "Account details"
- msgstr ""
- msgid "No link buttons"
- msgstr ""
- msgid "Link buttons after account details"
- msgstr ""
- msgid ""
- "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
- "\"_blank\">Privacy Policy</a>"
- msgstr ""
- msgid "Store"
- msgstr ""
- msgid "First and last name"
- msgstr ""
- msgid "When not enabled, username will be randomly generated."
- msgstr ""
- msgid "Email"
- msgstr ""
- msgid "When not enabled, email will be empty."
- msgstr ""
- msgid "Avatar"
- msgstr ""
- msgid "Access token"
- msgstr ""
- msgid "Register Form"
- msgstr ""
- msgid "No Connect button in login form"
- msgstr ""
- msgid "No Connect button in register form"
- msgstr ""
- msgid "Billing form"
- msgstr ""
- msgid "No Connect button in billing form"
- msgstr ""
- msgid "Billing layout"
- msgstr ""
- msgid "Default with separator"
- msgstr ""
- msgid "Checkout for WooCommerce"
- msgstr ""
- msgid "No Connect button in \"Checkout for WooCommerce\" form"
- msgstr ""
- msgid "Checkout for WooCommerce layout"
- msgstr ""
- msgid "No Connect buttons in account details form"
- msgstr ""
- msgid "Link buttons on"
- msgstr ""
- msgid "Email template for registration"
- msgstr ""
- msgid "WordPress default notification"
- msgstr ""
- msgid "WooCommerce registration notification"
- msgstr ""
- #, php-format
- msgid ""
- "Defines whether the registration with %1$s will send the same registration "
- "notification that %2$s does, instead of the %3$s default one."
- msgstr ""
- #, php-format
- msgid "Network connection successful: %1$s"
- msgstr ""
- #, php-format
- msgid "Network connection failed: %1$s"
- msgstr ""
- msgid ""
- "Please contact with your hosting provider to resolve the network issue "
- "between your server and the provider."
- msgstr ""
- msgid "Manage Avatar"
- msgstr ""
- #, php-format
- msgid "Avatar <span class=\"count\">(%s)</span>"
- msgid_plural "Avatar <span class=\"count\">(%s)</span>"
- msgstr[0] ""
- msgstr[1] ""
- msgid "Invalid URL Provided."
- msgstr ""
- msgid "Could not create Temporary file."
- msgstr ""
- #, php-format
- msgid "%1$s ‹ %2$s — WordPress"
- msgstr ""
- msgid "https://wordpress.org/"
- msgstr ""
- msgid "Powered by WordPress"
- msgstr ""
- #, php-format
- msgctxt "site"
- msgid "← Back to %s"
- msgstr ""
- msgid "Your configuration needs to be verified"
- msgstr ""
- 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. <br> If you see error message in the popup "
- "check the copied ID and secret or the app itself. Otherwise your settings "
- "are fine."
- msgstr ""
- msgid "Please save your changes to verify settings."
- msgstr ""
- msgid "Works Fine"
- msgstr ""
- #, php-format
- msgid ""
- "This provider is currently disabled, which means that users can’t register "
- "or login via their %s account."
- msgstr ""
- #, 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 ""
- #, php-format
- msgid ""
- "This provider is currently enabled, which means that users can register or "
- "login via their %s account."
- msgstr ""
- msgid "Verify Settings Again"
- msgstr ""
- msgid "Please save your changes before verifying settings."
- msgstr ""
- msgid "Authentication successful"
- msgstr ""
- msgid "Authentication error"
- msgstr ""
- msgid "Unlink successful."
- msgstr ""
- msgid "Unlink is not allowed!"
- msgstr ""
- msgid "The test was successful"
- msgstr ""
- msgid "Authentication failed"
- msgstr ""
- msgid "Identifier"
- msgstr ""
- msgid "Profile Picture"
- msgstr ""
- #, php-format
- msgid ""
- "Your %1$s account is successfully linked with your account. Now you can sign "
- "in with %2$s easily."
- msgstr ""
- #, php-format
- msgid ""
- "You have already linked a(n) %s account. Please unlink the current and then "
- "you can link another %s account."
- msgstr ""
- #, php-format
- msgid "This %s account is already linked to another user."
- msgstr ""
- msgid "User registration is currently not allowed."
- msgstr ""
- #, php-format
- msgid ""
- "We found a user with your %1$s email address. Unfortunately it belongs to a "
- "different %1$s account, so we are unable to log you in. Please use the "
- "linked %1$s account or log in with your password!"
- msgstr ""
- msgid "Register For This Site"
- msgstr ""
- msgctxt "Register form submit button label"
- msgid "Register"
- msgstr ""
- #, php-format
- msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
- msgstr ""
- #, php-format
- msgid ""
- "%1$s requires WordPress version %2$s+. Because you are using an earlier "
- "version, the plugin is currently NOT ACTIVE."
- msgstr ""
- #, php-format
- msgid "Please update %1$s to version %2$s or newer."
- msgstr ""
- msgid "Update now!"
- msgstr ""
- msgid "Hold On"
- msgstr ""
- msgid "You are being redirected to another page,<br>it may take a few seconds."
- msgstr ""
- msgid "Social Login"
- msgstr ""
- msgid "Social Accounts"
- msgstr ""
- msgid "Button skin"
- msgstr ""
- msgid "Dark"
- msgstr ""
- msgid "Light"
- msgstr ""
- msgid "Black"
- msgstr ""
- msgid "White"
- msgstr ""
- #, php-format
- msgid "Navigate to <b>%s</b>"
- msgstr ""
- #, php-format
- msgid "Log in with your %s credentials if you are not logged in"
- msgstr ""
- #, php-format
- msgid "Click on the App with App ID: <b>%s</b>"
- msgstr ""
- msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
- msgstr ""
- msgid ""
- "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
- msgstr ""
- msgid "Click on \"<b>Save Changes</b>\""
- msgstr ""
- #, 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 ""
- msgid "How to get SSL for my WordPress site?"
- msgstr ""
- #, 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 ""
- #, php-format
- msgctxt "App creation"
- msgid "Create %s"
- msgstr ""
- #, php-format
- msgid "Navigate to %s"
- msgstr ""
- #, php-format
- msgid "Log in with your %s credentials if you are not logged in."
- msgstr ""
- msgid ""
- "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
- "\"<b>Consumer</b>\" App type!"
- msgstr ""
- msgid ""
- "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
- "to click on the green \"<b>Register Now</b>\" button, fill the form then "
- "finally verify your account."
- msgstr ""
- #, php-format
- msgid ""
- "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
- "specified \"App Display Name\" will appear on your %s!"
- msgstr ""
- msgid ""
- "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
- "if you have any."
- msgstr ""
- msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
- msgstr ""
- #, php-format
- msgid "Find \"<b>%1$s</b>\" and click \"<b>Set Up</b>\"."
- msgstr ""
- #, php-format
- msgid ""
- "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
- "field: <b>%s</b>"
- msgstr ""
- msgid "Press “<b>Save</b>”."
- msgstr ""
- #, php-format
- msgid ""
- "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
- "%2$s</b> - <b>%3$s</b>”"
- msgstr ""
- msgid "Click on “<b>Save Changes</b>”."
- msgstr ""
- #, php-format
- msgid ""
- "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
- "%2$s</b>”."
- msgstr ""
- #, php-format
- msgid ""
- "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
- "b>"
- msgstr ""
- msgid ""
- "Fill up the \"<b>Privacy Policy URL</b>\" 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 ""
- msgid ""
- "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
- "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
- "instructions on how users can delete their accounts on your site."
- msgstr ""
- msgid ""
- "To comply with GDPR, you should already offer possibility to delete accounts "
- "on your site, either by the user or by the admin:"
- msgstr ""
- msgid ""
- "<u>If each user has an option to delete the account</u>: the URL should "
- "point to a guide showing the way users can delete their accounts."
- msgstr ""
- msgid ""
- "<u>If the accounts are deleted by an admin</u>: then you should have a "
- "section - usually in the Privacy Policy - with the contact details, where "
- "users can send their account erasure requests. In this case the URL should "
- "point to this section of the document."
- msgstr ""
- msgid ""
- "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
- "Purpose</b>” option that describes your App the best, then press \"<b>Save "
- "Changes</b>\"."
- msgstr ""
- msgid ""
- "Your application is currently private, which means that only you can log in "
- "with it. In the top bar switch the \"<b>App Mode</b>\" from "
- "\"<b>Development</b>\" to \"<b>Live</b>\"."
- msgstr ""
- #, php-format
- msgid ""
- "By default, your application only has Standard access for the permissions, "
- "which is not enough for %1$s.<br>On the left side, click on <strong>%2$s</"
- "strong> then click <strong>%3$s</strong>. In the table you will find the "
- "\"<strong>%4$s</strong>\" and \"<strong>%5$s</strong>\" permissions and you "
- "should click on the <strong>%6$s</strong> buttons next to them. "
- msgstr ""
- #, php-format
- msgid ""
- "At the top of the page you can find your \"<b>%1$s</b>\" and you can see "
- "your \"<b>%2$s</b>\" if you click on the \"Show\" button. These will be "
- "needed in plugin’s settings."
- msgstr ""
- #, php-format
- msgid ""
- "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
- "WordPress users with linked Facebook accounts can only login using the %1$s "
- "App, that was originally used at the time, when the WordPress account was "
- "linked with a %1$s Account.<br>\n"
- "If you would like to know the reason of this, or you really need to replace "
- "the Facebook App, then please check our %2$sdocumentation%3$s."
- msgstr ""
- msgid "Maintaining the Facebook App:"
- msgstr ""
- #, php-format
- msgid ""
- "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
- "privacy, Facebook might requests you to fill some forms, so they can ensure "
- "that your API access and data use comply with the Facebook policies.\n"
- "If Facebook displays the \"%1$s\" modal for your App, then in our "
- "%2$sdocumentation%3$s you can find more information about the permissions "
- "that we need."
- msgstr ""
- #, php-format
- msgid "I am done setting up my %s"
- msgstr ""
- msgid "App ID"
- msgstr ""
- msgid "Required"
- msgstr ""
- #, php-format
- msgid ""
- "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
- "\">Getting Started</a>"
- msgstr ""
- msgid "App Secret"
- msgstr ""
- #, php-format
- msgid ""
- "By replacing your existing %1$s App, users with linked %1$s accounts will no "
- "longer be able to login with %1$s."
- msgstr ""
- msgid "Find out why?"
- msgstr ""
- msgid "Continue with <b>Facebook</b>"
- msgstr ""
- msgid "Sign up with <b>Facebook</b>"
- msgstr ""
- msgid "Link account with <b>Facebook</b>"
- msgstr ""
- msgid "Unlink account from <b>Facebook</b>"
- msgstr ""
- #, php-format
- msgid ""
- "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
- msgstr ""
- #, php-format
- msgid "Required scope: %1$s"
- msgstr ""
- msgid "Uniform - Legacy"
- msgstr ""
- msgid "Click on the \"<b>Credentials</b>\" in the left hand menu"
- msgstr ""
- #, php-format
- msgid ""
- "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
- "%s</b>"
- msgstr ""
- #, php-format
- msgid ""
- "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
- "following URL:"
- msgstr ""
- msgid "Click on \"<b>Save</b>\""
- msgstr ""
- #, php-format
- msgid ""
- "If you don't have a project yet, you'll need to create one. You can do this "
- "by clicking on the blue \"<b>%1$s</b>\" text on the right side! ( If you "
- "already have a project, then in the top bar click on the name of your "
- "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
- msgstr ""
- #, php-format
- msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
- msgstr ""
- msgid ""
- "Once you have a project, you'll end up in the dashboard. ( If earlier you "
- "have already had a Project, then make sure you select the created project in "
- "the top bar! )"
- msgstr ""
- #, php-format
- msgid "Click the “<b>%1$s</b>” button on the left hand side."
- msgstr ""
- #, php-format
- msgid ""
- "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
- "you want to enable the social login with %3$s for any users with a %3$s "
- "account, then pick the \"%4$s\" option!"
- msgstr ""
- #, php-format
- msgid ""
- "<b>Note:</b> 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 ""
- #, php-format
- msgid ""
- "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
- "the name of the app asking for consent."
- msgstr ""
- #, php-format
- msgid ""
- "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
- "contact you with questions about their consent."
- msgstr ""
- #, php-format
- msgid ""
- "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
- "enter your domain name, probably: <b>%3$s</b> without subdomains!"
- msgstr ""
- #, php-format
- msgid ""
- "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
- "notify you about any changes to your project."
- msgstr ""
- #, php-format
- msgid ""
- "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
- "too!"
- msgstr ""
- #, php-format
- msgid ""
- "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
- "\"<b>%2$s</b>\" button in the top bar."
- msgstr ""
- #, php-format
- msgid "Choose the \"<b>%1$s</b>\" option."
- msgstr ""
- #, php-format
- msgid "Select the \"<b>%1$s</b>\" under Application type."
- msgstr ""
- #, php-format
- msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
- msgstr ""
- #, php-format
- msgid "Click on the \"<b>%1$s</b>\" button"
- msgstr ""
- #, php-format
- msgid ""
- "A modal should pop up with your credentials. If that doesn't happen, go to "
- "the %1$s in the left hand menu and select your app by clicking on its name "
- "and you'll be able to copy-paste the \"<b>%2$s</b>\" and \"<b>%3$s</b>\" "
- "from there."
- msgstr ""
- msgid "Client ID"
- msgstr ""
- msgid "Client Secret"
- msgstr ""
- msgid "Select account on each login"
- msgstr ""
- msgid ""
- "Disable, when you don't want to see the account select prompt on each login."
- msgstr ""
- msgid "Continue with <b>Google</b>"
- msgstr ""
- msgid "Sign up with <b>Google</b>"
- msgstr ""
- msgid "Link account with <b>Google</b>"
- msgstr ""
- msgid "Unlink account from <b>Google</b>"
- msgstr ""
- #, php-format
- msgid "Required API: %1$s"
- msgstr ""
- msgid ""
- "Find your App and click on the <b>App settings</b> icon. (The one that looks "
- "like a gear.)"
- msgstr ""
- msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
- msgstr ""
- #, php-format
- msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
- msgstr ""
- #, php-format
- msgid ""
- "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
- msgstr ""
- 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 ""
- #, php-format
- msgid ""
- "Once your developer account is complete, navigate back to <b>%s</b> if you "
- "aren't already there!"
- msgstr ""
- #, php-format
- msgid "Click on \"<b>%s</b>\"!"
- msgstr ""
- msgid ""
- "Name your project, and go through the basic setup. You’ll need to select "
- "your use case, give a description and enter a name for the App as well."
- msgstr ""
- #, php-format
- msgid "Click \"<b>%s</b>\"!"
- msgstr ""
- #, php-format
- msgid ""
- "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
- "%1$s</b>\" and the \"<b>%2$s</b>\" to the corresponding fields at %3$s and "
- "press \"<b>Save Changes</b>\"."
- msgstr ""
- #, php-format
- msgid ""
- "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
- "\" section click on the name of your App."
- msgstr ""
- #, php-format
- msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
- msgstr ""
- #, php-format
- msgid "Switch on the \"<b>%s</b>\" option."
- msgstr ""
- #, php-format
- msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
- msgstr ""
- #, php-format
- msgid ""
- "If you want to get the email address as well, then don’t forget to enable "
- "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
- "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
- msgstr ""
- #, php-format
- msgid "Click on \"<b>%s</b>\"."
- msgstr ""
- #, php-format
- msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
- msgstr ""
- msgid "API Key"
- msgstr ""
- msgid "API secret key"
- msgstr ""
- msgid "Profile image size"
- msgstr ""
- msgid "Original"
- msgstr ""
- msgid "Continue with <b>Twitter</b>"
- msgstr ""
- msgid "Sign up with <b>Twitter</b>"
- msgstr ""
- msgid "Link account with <b>Twitter</b>"
- msgstr ""
- msgid "Unlink account from <b>Twitter</b>"
- msgstr ""
- #, php-format
- msgid "%s Buttons"
- msgstr ""
- msgid "Title:"
- msgstr ""
- msgid "Button style:"
- msgstr ""
- msgid "Button align:"
- msgstr ""
- msgid "Show link buttons"
- msgstr ""
- msgid "Show unlink buttons"
- msgstr ""
- msgid "Social login is not allowed with this role!"
- msgstr ""
- msgid "Please enter a username."
- msgstr ""
- msgid ""
- "This username is invalid because it uses illegal characters. Please enter a "
- "valid username."
- msgstr ""
- msgid ""
- "<strong>Error</strong>: This username is already registered. Please choose "
- "another one."
- msgstr ""
- msgid "<strong>Error</strong>: Sorry, that username is not allowed."
- msgstr ""
- msgid "Username"
- msgstr ""
- msgid "<strong>Error</strong>: Please enter an email address."
- msgstr ""
- msgid "<strong>Error</strong>: The email address isn’t correct."
- msgstr ""
- msgid ""
- "<strong>Error</strong>: This email is already registered. Please choose "
- "another one."
- msgstr ""
- msgid "Registration confirmation will be emailed to you."
- msgstr ""
- msgid "<strong>Error</strong>: Please enter a password."
- msgstr ""
- msgid "<strong>Error</strong>: Passwords may not contain the character \"\\\"."
- msgstr ""
- msgid ""
- "<strong>Error</strong>: Passwords don’t match. Please enter the same "
- "password in both password fields."
- msgstr ""
- msgid "Password"
- msgstr ""
- msgid "Strength indicator"
- msgstr ""
- msgid "Confirm use of weak password"
- msgstr ""
- msgid "Confirm password"
- msgstr ""
- #, php-format
- msgid ""
- "This email is already registered, please login in to your account to link "
- "with %1$s."
- msgstr ""
- #, php-format
- msgid "Please install and activate %1$s to use the %2$s"
- msgstr ""
- msgid "Network Activate"
- msgstr ""
- msgid "Install now!"
- msgstr ""
- msgid "Social Providers"
- msgstr ""
- #, php-format
- msgid ""
- "The Facebook Sync data needs an approved %1$s and your App must use the "
- "latest %2$s version!"
- msgstr ""
- #, 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 ""
- #, php-format
- msgid "Visit %s"
- msgstr ""
- msgid ""
- "On the right side, under \"<b>Manage</b>\", hover over the gear icon and "
- "select \"<b>Web Settings</b>\" option."
- msgstr ""
- msgid "Click \"<b>Edit</b>\"."
- msgstr ""
- msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
- msgstr ""
- #, 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 ""
- 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 \"<b>Create a New Security Profile</b>\" "
- "button on the left side."
- msgstr ""
- msgid ""
- "Fill \"<b>Security Profile Name</b>\", \"<b>Security Profile Description</b>"
- "\" and \"<b>Consent Privacy Notice URL</b>\"."
- msgstr ""
- msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
- msgstr ""
- #, php-format
- msgid ""
- "Fill \"<b>Allowed Origins</b>\" with the url of your homepage, probably: <b>"
- "%s</b>"
- msgstr ""
- msgid "When all fields are filled, click \"<b>Save</b>\"."
- msgstr ""
- msgid ""
- "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" at the "
- "middle of the page, under the \"<b>Web Settings</b>\" tab."
- msgstr ""
- msgid "Continue with <b>Amazon</b>"
- msgstr ""
- msgid "Sign up with <b>Amazon</b>"
- msgstr ""
- msgid "Link account with <b>Amazon</b>"
- msgstr ""
- msgid "Unlink account from <b>Amazon</b>"
- msgstr ""
- msgid "Click on the name of your service."
- msgstr ""
- msgid ""
- "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
- msgstr ""
- #, php-format
- msgid "Click the <b>blue + icon</b> next to %1$s heading."
- msgstr ""
- #, php-format
- msgid ""
- "Fill the \"<b>Domains and Subdomains</b>\" field with your domain name "
- "probably: <b>%s</b>"
- msgstr ""
- msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
- msgstr ""
- msgid ""
- "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
- "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
- msgstr ""
- #, 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 ""
- msgid ""
- "Make sure you have an <strong>active subscription for the <a href=\"https://"
- "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
- "a></strong>, as that is necessary for both creating and maintaining an Apple "
- "App!"
- msgstr ""
- msgid ""
- "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
- "b>!"
- msgstr ""
- msgid "1.) Create the associated App:"
- msgstr ""
- #, php-format
- msgid ""
- "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
- "option and click the \"Continue\" button."
- msgstr ""
- #, php-format
- msgid ""
- "Choose the \"<strong>%1$s</strong>\" option as type and press the "
- "\"<b>Continue</b>\" button."
- msgstr ""
- msgid "Enter a \"<b>Description</b>\""
- msgstr ""
- #, php-format
- msgid ""
- "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
- "enter your domain name in reverse-domain name style, with the name of the "
- "app at its end: <b>%s.nslapp</b>"
- msgstr ""
- msgid ""
- "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
- "b>\" option."
- msgstr ""
- msgid ""
- "Scroll up and press the \"<b>Continue</b>\" button and then the "
- "\"<b>Register</b>\" button."
- msgstr ""
- msgid "2.) Create the Key:"
- msgstr ""
- #, php-format
- msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
- msgstr ""
- msgid "Enter a name in the <b>Key Name</b> field."
- msgstr ""
- msgid ""
- "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
- "b>\"."
- msgstr ""
- msgid ""
- "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
- "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
- "\"."
- msgstr ""
- msgid ""
- "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
- "\" button."
- msgstr ""
- msgid "<b>Don't download the key yet!</b>"
- msgstr ""
- msgid "3.) Create the Service:"
- msgstr ""
- #, php-format
- msgid ""
- "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
- "tab."
- msgstr ""
- #, php-format
- msgid ""
- "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
- "option and click the \"<b>Continue</b>\" button."
- msgstr ""
- msgid "Enter a \"<b>Description</b>\"."
- msgstr ""
- #, php-format
- msgid ""
- "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
- "name style, with the name of the client at its end: <b>%s.nslclient</b>"
- msgstr ""
- msgid "<b>Note:</b> This will also be used as Service Identifier later!"
- msgstr ""
- msgid ""
- "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
- msgstr ""
- #, php-format
- msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
- msgstr ""
- msgid ""
- "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
- "b>\" button next to it."
- msgstr ""
- msgid ""
- "If you have multiple Apps, then at the \"Primary App ID\" field select the "
- "App what you just created."
- msgstr ""
- msgid "Click the \"<b>Next</b>\" button then press the \"<b>Done</b>\" button."
- msgstr ""
- msgid ""
- "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
- "button."
- msgstr ""
- msgid "4.) Configure Nextend Social Login with your credentials:"
- msgstr ""
- msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
- msgstr ""
- msgid "<strong><u>Private Key ID:</u></strong>"
- msgstr ""
- #, php-format
- msgid "Navigate to: <b>%s</b>"
- msgstr ""
- msgid "Click on the <b>name of your Key</b>."
- msgstr ""
- msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
- msgstr ""
- msgid "<strong><u>Private Key:</u></strong>"
- msgstr ""
- msgid ""
- "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
- "file is downloaded, it will no longer be available, so <b>make sure you keep "
- "this file safe</b>!</u> "
- msgstr ""
- msgid ""
- "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
- "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
- "\" field of Nextend Social Login."
- msgstr ""
- msgid "<strong><u>Team Identifier:</u></strong>"
- msgstr ""
- msgid ""
- "A 10 character long identifier, what you can find on the <b>top-right "
- "corner, just under your name</b>."
- msgstr ""
- msgid "<strong><u>Service Identifier:</u></strong>"
- msgstr ""
- #, php-format
- msgid ""
- "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
- "the service according to the suggestions, it will probably end to .nslclient "
- "e.g.: <b>%s.nslclient</b>"
- msgstr ""
- msgid ""
- "Once you filled up all the fields, click on the \"<b>Generate Token</b>\" "
- "button."
- msgstr ""
- msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
- msgstr ""
- 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 ""
- msgid "Delete credentials"
- msgstr ""
- msgid "Private Key ID"
- msgstr ""
- msgid "Private Key"
- msgstr ""
- msgid "Team Identifier"
- msgstr ""
- msgid "Service Identifier"
- msgstr ""
- msgid "Generate Token"
- msgstr ""
- msgid "Continue with <b>Apple</b>"
- msgstr ""
- msgid "Sign up with <b>Apple</b>"
- msgstr ""
- msgid "Link account with <b>Apple</b>"
- msgstr ""
- msgid "Unlink account from <b>Apple</b>"
- msgstr ""
- #, php-format
- msgid "An error occurred when storing of the expiration timestamp : %1$s"
- msgstr ""
- #, php-format
- msgid "Token generation failed: %1$s"
- msgstr ""
- msgid "Please check your credentials!"
- msgstr ""
- msgid "Private key format is not valid!"
- msgstr ""
- #, php-format
- msgid ""
- "%s detected that your Apple credentials have expired. Please delete the "
- "current credentials and generate new one!"
- msgstr ""
- msgid "Apple Credentials"
- msgstr ""
- #, php-format
- msgid ""
- "If you are not logged in yet, then log in with your %s credentials and visit "
- "the link above again."
- msgstr ""
- #, php-format
- msgid ""
- "Select your %s App and click on the “<b>%2$s</b>” menu point under the "
- "Settings section on the left side."
- msgstr ""
- msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
- msgstr ""
- msgid "Click the \"<b>New Application</b>\" button."
- msgstr ""
- msgid "Fill the \"<b>Name</b>\" field and click the \"<b>Create</b>\" button."
- msgstr ""
- msgid ""
- "Optional: Select an \"<b>App Icon</b>\" and add a \"<b>Terms of Service URL</"
- "b>\" and \"<b>Privacy Policy URL</b>\"."
- msgstr ""
- #, php-format
- msgid ""
- "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
- msgstr ""
- msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
- msgstr ""
- msgid "Click the \"<b>Save Changes</b>\" button."
- msgstr ""
- msgid ""
- "Copy the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" values "
- "and fill these fields in the plugin settings!"
- msgstr ""
- msgid "Force reauthorization on each login"
- msgstr ""
- msgid "Enable, when you want to see the consent screen on each login."
- msgstr ""
- msgid "Continue with <b>Discord</b>"
- msgstr ""
- msgid "Sign up with <b>Discord</b>"
- msgstr ""
- msgid "Link account with <b>Discord</b>"
- msgstr ""
- msgid "Unlink account from <b>Discord</b>"
- msgstr ""
- #, php-format
- msgid "Click on the name of your %s App."
- msgstr ""
- msgid ""
- "Select the \"<b>Settings</b>\" tab and scroll down to the Authentication "
- "section!"
- msgstr ""
- msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
- msgstr ""
- msgid "Click on the \"<b>Save Changes</b>\" button."
- msgstr ""
- msgid ""
- "Click on the \"<b>Registering new application</b>\" button under the "
- "Applications tab."
- msgstr ""
- msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
- msgstr ""
- #, php-format
- msgid ""
- "Fill \"<b>Website</b>\" with the url of your homepage, probably: <b>%s</b>"
- msgstr ""
- msgid ""
- "Complete the Human test and click the \"<b>Register my application</b>\" "
- "button."
- msgstr ""
- #, php-format
- msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
- msgstr ""
- msgid ""
- "Select \"<b>Read only</b>\" as Default Access under the Authentication "
- "section."
- msgstr ""
- msgid "Click on the \"<b>Save Changes</b>\" button!"
- msgstr ""
- msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
- msgstr ""
- msgid ""
- "Here you can see your \"<b>API Key</b>\" and \"<b>API Secret</b>\". These "
- "will be needed in the plugin's settings."
- msgstr ""
- msgid "API Secret"
- msgstr ""
- msgid "Continue with <b>Disqus</b>"
- msgstr ""
- msgid "Sign up with <b>Disqus</b>"
- msgstr ""
- msgid "Link account with <b>Disqus</b>"
- msgstr ""
- msgid "Unlink account from <b>Disqus</b>"
- msgstr ""
- #, php-format
- msgid "Click on the name of the App you configured %s with."
- msgstr ""
- #, php-format
- msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
- msgstr ""
- msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
- msgstr ""
- msgid "Press the <b>Update application</b> button to save the changes."
- msgstr ""
- #, php-format
- msgid ""
- "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
- "button."
- msgstr ""
- msgid ""
- "Enter a name into the <b>Application name</b> field. Users will see this "
- "name, when they authorize your app at the OAuth consent screen!"
- msgstr ""
- #, php-format
- msgid ""
- "Fill <b>Homepage URL</b> with the url of your homepage, probably: <b>%s</b>"
- msgstr ""
- msgid ""
- "In the <b>Description</b> field you should explain what this App will be "
- "used for."
- msgstr ""
- msgid "Click the <b>Register application</b> button."
- msgstr ""
- msgid ""
- "Find the necessary <b>Client ID</b> and <b>Client Secret</b> at the middle "
- "of the page. These will be needed in the plugin's settings!"
- msgstr ""
- #, php-format
- msgid ""
- "<b>Important note:</b> The email address is only retrievable, if there is a "
- "public email address set at the %1$s profile page%2$s!"
- msgstr ""
- msgid "Continue with <b>GitHub</b>"
- msgstr ""
- msgid "Sign up with <b>GitHub</b>"
- msgstr ""
- msgid "Link account with <b>GitHub</b>"
- msgstr ""
- msgid "Unlink account from <b>GitHub</b>"
- msgstr ""
- #, php-format
- msgid "Navigate to your %s"
- msgstr ""
- #, php-format
- msgid "Select your %s App and click on the LINE Login section."
- msgstr ""
- msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
- msgstr ""
- #, php-format
- msgid ""
- "Editing Live Apps are only possible with a %s. So please make sure you own "
- "one!"
- msgstr ""
- msgid "Click the \"<b>Create a new provider</b>\" button."
- msgstr ""
- msgid ""
- "Fill the \"<b>Provider name</b>\" field and click the \"<b>Create</b>\" "
- "button."
- msgstr ""
- msgid ""
- "Under the \"<b>Channels</b>\" panel select the \"<b>Create a LINE Login "
- "channel</b>\" option."
- msgstr ""
- msgid "Make sure \"<b>LINE Login</b>\" is selected as \"<b>Channel type</b>\"."
- msgstr ""
- msgid ""
- "For \"<b>Provider</b>\" choose the provider from the list, that you just "
- "created."
- msgstr ""
- msgid "Select your \"<b>Region</b>\"."
- msgstr ""
- msgid ""
- "Add your \"<b>Channel icon</b>\", \"<b>Channel name</b>\" and \"<b>Channel "
- "description</b>\". These will appear on your Consent Screen!"
- msgstr ""
- msgid "At the \"<b>App types</b>\" select the \"<b>Web app</b>\" option."
- msgstr ""
- msgid ""
- "Read and consent to the \"<b>LINE Developers Agreement</b>\", then click the "
- "\"<b>Create</b>\" button."
- msgstr ""
- msgid ""
- "Scroll down to \"<b>OpenID Connect</b>\", click the \"<b>Apply</b>\" button "
- "near the \"<b>Email address permission</b>\" label."
- msgstr ""
- msgid "Fill out the form, then click the \"<b>Submit</b>\" button."
- msgstr ""
- msgid ""
- "Scroll up to the top of the page and choose the \"<b>LINE Login</b>\" "
- "section."
- msgstr ""
- msgid ""
- "Under your App name click the \"<b>Developing</b>\" button and publish your "
- "Channel!"
- msgstr ""
- msgid ""
- "Go to the \"<b>Basic settings</b>\" tab and find the necessary \"<b>Channel "
- "ID</b>\" and \"<b>Channel secret</b>\" values and fill these fields in the "
- "plugin settings!"
- msgstr ""
- msgid "Channel ID"
- msgstr ""
- msgid "Channel Secret"
- msgstr ""
- msgid "Add LINE Official Account as a friend"
- msgstr ""
- msgid "Don't display"
- msgstr ""
- msgid "Display the add friend option in the consent screen"
- msgstr ""
- msgid "Opens a new screen with the add friend option after the consent screen"
- msgstr ""
- #, php-format
- msgid ""
- "If you have a LINE Official Account, people can add it as a friend when they "
- "authorize your App. %1$sLearn more%2$s."
- msgstr ""
- msgid "Continue with <b>Line</b>"
- msgstr ""
- msgid "Sign up with <b>Line</b>"
- msgstr ""
- msgid "Link account with <b>Line</b>"
- msgstr ""
- msgid "Unlink account from <b>Line</b>"
- msgstr ""
- msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
- msgstr ""
- msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
- msgstr ""
- msgid "Click on \"<b>Update</b>\" to save the changes"
- msgstr ""
- msgid "Locate the \"<b>Create app</b>\" button and click on it."
- msgstr ""
- msgid "Enter the name of your App to the \"App name\" field."
- msgstr ""
- #, php-format
- msgid ""
- "Find your company page in the \"<b>Company</b>\" field. If you don't have "
- "one yet, create new one at: %s"
- msgstr ""
- msgid ""
- "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
- msgstr ""
- msgid ""
- "Read and agree the \"<b>API Terms of Use</b>\" then click the \"<b>Create "
- "App</b>\" button!"
- msgstr ""
- msgid ""
- "You will end up in the App setting area. Click on the \"<b>Products</b>\" "
- "tab."
- msgstr ""
- #, php-format
- msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
- msgstr ""
- msgid ""
- "A modal will appear where you need to tick the \"<b>I have read and agree to "
- "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
- "button."
- msgstr ""
- msgid "Click on the \"<b>Auth</b>\" tab."
- msgstr ""
- msgid ""
- "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
- "\"<b>Redirect URLs</b>\" field:"
- msgstr ""
- msgid ""
- "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" under "
- "the Application credentials section, on the <b>Auth</b> tab."
- msgstr ""
- msgid "Continue with <b>LinkedIn</b>"
- msgstr ""
- msgid "Sign up with <b>LinkedIn</b>"
- msgstr ""
- msgid "Link account with <b>LinkedIn</b>"
- msgstr ""
- msgid "Unlink account from <b>LinkedIn</b>"
- msgstr ""
- #, php-format
- msgid "Log in with your %s credentials if you are not logged in yet."
- msgstr ""
- msgid "Click on the Search bar and search for \"<b>App registrations</b>\"."
- msgstr ""
- #, php-format
- msgid "Click on the App with Application (client) ID: <b>%s</b>"
- msgstr ""
- msgid "Click on the link next to the Redirect URIs label."
- msgstr ""
- msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
- msgstr ""
- #, php-format
- msgid ""
- "Log in with your %s credentials if you are not logged in or create a new "
- "account."
- msgstr ""
- msgid "Click on \"<b>New registration</b>\"."
- msgstr ""
- msgid "Fill the \"<b>Name</b>\" field with your App Name."
- msgstr ""
- #, php-format
- msgid ""
- "Select an option at Supported account types.<br><strong><u>Important:</u></"
- "strong> On our Settings tab, you will need to select the Audience depending "
- "on the selected value! If you are not sure what to choose, then %1$shere%2$s "
- "you can learn more."
- msgstr ""
- msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
- msgstr ""
- msgid "Create your App with the \"<b>Register</b>\" button."
- msgstr ""
- msgid "You land on the \"<b>Overview</b>\" page."
- msgstr ""
- msgid ""
- "Copy the \"<b>Application (client) ID</b>\", this will be the <b>Application "
- "(client) ID</b> in the plugin settings."
- msgstr ""
- msgid ""
- "Click on the link named \"<b>Add a certificate or secret</b>\" next to the "
- "Client credentials label."
- msgstr ""
- msgid "Click on \"<b>New client secret</b>\"."
- msgstr ""
- msgid "Fill the \"<b>Description</b>\" field."
- msgstr ""
- msgid "Set the expiration date at the \"<b>Expires</b>\" field."
- msgstr ""
- msgid "Then create your Client Secret with the \"<b>Add</b>\" button."
- msgstr ""
- msgid ""
- "Copy the \"<b>Client Secret Value</b>\", this will be the <b>Client secret</"
- "b> in the plugin settings."
- msgstr ""
- msgid "Application (client) ID"
- msgstr ""
- msgid "Client secret"
- msgstr ""
- msgid "Audience"
- msgstr ""
- msgid ""
- "Accounts in any organizational directory (Any Azure AD directory - "
- "Multitenant)"
- msgstr ""
- msgid ""
- "Accounts in any organizational directory (Any Azure AD directory - "
- "Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
- msgstr ""
- msgid "Personal Microsoft accounts only"
- msgstr ""
- msgid ""
- "Only users in an organizational directory from a particular Azure AD tenant:"
- msgstr ""
- #, php-format
- msgid ""
- "The selected value will define the supported account types. %1$sLearn more."
- "%2$s"
- msgstr ""
- msgid "Authorization Prompt"
- msgstr ""
- msgid "Display account select modal"
- msgstr ""
- msgid "Force user to enter login credentials on each login"
- msgstr ""
- msgid "Display authorization and authentication dialog only when necessary"
- msgstr ""
- msgid "Continue with <b>Microsoft</b>"
- msgstr ""
- msgid "Sign up with <b>Microsoft</b>"
- msgstr ""
- msgid "Link account with <b>Microsoft</b>"
- msgstr ""
- msgid "Unlink account from <b>Microsoft</b>"
- msgstr ""
- msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
- msgstr ""
- #, php-format
- msgid "Click on the name of your %s App, under the REST API apps section."
- msgstr ""
- msgid ""
- "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
- "b>\" heading and click \"<b>Show</b>\"."
- msgstr ""
- msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
- msgstr ""
- msgid "Click on \"Save\""
- msgstr ""
- #, php-format
- msgid ""
- "Editing Live Apps are only possible with a %s. If you own one, go to the 4. "
- "step, if not click on the link!"
- msgstr ""
- msgid "Click on Registration and create a Business account."
- msgstr ""
- msgid "If you are done, follow the guide from the 5. step."
- msgstr ""
- #, php-format
- msgid "Log in with your %s credentials."
- msgstr ""
- msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
- msgstr ""
- msgid ""
- "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
- msgstr ""
- msgid ""
- "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
- "b>\" heading then click \"<b>Show</b>\"."
- msgstr ""
- msgid ""
- "Scroll down to \"<b>App feature options</b>\" section and tick \"<b>Log In "
- "with PayPal</b>\"."
- msgstr ""
- msgid ""
- "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
- "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
- msgstr ""
- msgid "Tick \"<b>Full name</b>\"."
- msgstr ""
- msgid ""
- "\"<b>Email address</b>\" now requires an App Review by PayPal. To get the "
- "email address as well, <b>please submit your App for a review</b> 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 ""
- msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
- msgstr ""
- msgid ""
- "Scroll up to \"<b>LIVE API CREDENTIALS</b>\" section and find the necessary "
- "\"<b>Client ID</b>\" and \"<b>Secret</b>\"! ( Make sure you are in "
- "\"<b>Live</b>\" mode and not \"Sandbox\". )"
- msgstr ""
- msgid "Secret"
- msgstr ""
- msgid "Email scope"
- msgstr ""
- msgid "Disable, when you have no rights for email address."
- msgstr ""
- msgid "Continue with <b>PayPal</b>"
- msgstr ""
- msgid "Sign up with <b>PayPal</b>"
- msgstr ""
- msgid "Link account with <b>PayPal</b>"
- msgstr ""
- msgid "Unlink account from <b>PayPal</b>"
- msgstr ""
- #, php-format
- msgid "Select your %s App."
- msgstr ""
- msgid ""
- "Under the \"<b>Add features and functionality</b>\" panel click on the "
- "\"<b>Permissions</b>\" option."
- msgstr ""
- msgid "Click on the \"<b>Add</b>\" and \"<b>Save URLs</b>\" button."
- msgstr ""
- #, php-format
- msgid ""
- "Visit the %1$s page and log in with your %2$s credentials if you are not "
- "logged in, yet."
- msgstr ""
- msgid ""
- "Click the \"<b>Create New App</b>\" button. (If you can not see this button, "
- "you might need to create a workspace first!)"
- msgstr ""
- msgid "Choose the \"<b>From scratch</b>\" option."
- msgstr ""
- msgid ""
- "Fill the \"<b>App Name</b>\" field, select your workspace and click the "
- "\"<b>Create App</b>\" button."
- msgstr ""
- msgid "Scroll down to the \"<b>Redirect URLs</b>\" section."
- msgstr ""
- msgid "Click on the \"<b>Save URLs</b>\" button."
- msgstr ""
- msgid "Scroll down to the \"<b>Scopes</b>\" section."
- msgstr ""
- msgid ""
- "Add the following Scopes to the \"<b>User Token Scopes</b>\" field: "
- "\"<b>openid</b>\", \"<b>profile</b>\", \"<b>email</b>\""
- msgstr ""
- msgid ""
- "On the top left side click on the \"<b>Basic Information</b>\" option in the "
- "\"<b>Settings</b>\"."
- msgstr ""
- msgid ""
- "Under the \"<b>Install your app</b>\" panel click on the \"<b>Install to "
- "Workspace</b>\" button."
- msgstr ""
- msgid "Click on the \"<b>Allow</b>\" button."
- msgstr ""
- msgid ""
- "Under the \"<b>Manage distribution</b>\" panel click on the \"<b>Distribute "
- "App</b>\" button."
- msgstr ""
- msgid "Scroll down to the \"<b>Remove Hard Coded Information</b>\" section."
- msgstr ""
- msgid ""
- "Click on the \"<b>I’ve reviewed and removed any hard-coded information.</b>"
- "\". "
- msgstr ""
- msgid "Click on the \"<b>Activate Public Distribution</b>\" button."
- msgstr ""
- msgid ""
- "On the top left side click on the \"<b>Basic Information</b>\" option, that "
- "you find under \"<b>Settings</b>\"."
- msgstr ""
- msgid ""
- "Scroll down to the \"<b>App Credentials</b>\" section, find the necessary "
- "\"<b>Client ID</b>\" and \"<b>Client Secret</b>\" values and fill these "
- "fields in the plugin settings!"
- msgstr ""
- msgid "Slack Team ID"
- msgstr ""
- msgid "Optional"
- msgstr ""
- #, php-format
- msgid ""
- "The Team ID of a workspace to attempt to restrict to. %1$sLearn more.%2$s"
- msgstr ""
- msgid "72x72"
- msgstr ""
- msgid "192x192"
- msgstr ""
- msgid "512x512"
- msgstr ""
- msgid "1024x1024"
- msgstr ""
- msgid "Sign in with <b>Slack</b>"
- msgstr ""
- msgid "Sign up with <b>Slack</b>"
- msgstr ""
- msgid "Link account with <b>Slack</b>"
- msgstr ""
- msgid "Unlink account from <b>Slack</b>"
- msgstr ""
- msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
- msgstr ""
- msgid "Go to the \"<b>Settings</b>\" menu"
- msgstr ""
- msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
- msgstr ""
- msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
- msgstr ""
- msgid ""
- "Enter the <b>Title</b> for your App and select \"<b>Website</b>\" as "
- "platform."
- msgstr ""
- #, php-format
- msgid ""
- "Fill \"<b>Website address</b>\" with the url of your homepage, probably: <b>"
- "%s</b>"
- msgstr ""
- #, php-format
- msgid ""
- "Fill the \"<b>Base domain</b>\" field with your domain, probably: <b>%s</b>"
- msgstr ""
- msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
- msgstr ""
- msgid ""
- "<b>Fill the information form</b> of your app, <b>upload an app icon</b> then "
- "click <b>Save</b>."
- msgstr ""
- msgid "Pick <b>Settings</b> at the left-hand menu "
- msgstr ""
- msgid "<b>Save</b> your app"
- msgstr ""
- msgid ""
- "Find the necessary \"<b>App ID</b>\" and \"<b>Secure key</b>\" at the top of "
- "the Settings page where you just hit the save button."
- msgstr ""
- msgid "Secure key"
- msgstr ""
- msgid "Continue with <b>VK</b>"
- msgstr ""
- msgid "Sign up with <b>VK</b>"
- msgstr ""
- msgid "Link account with <b>VK</b>"
- msgstr ""
- msgid "Unlink account from <b>VK</b>"
- msgstr ""
- msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
- msgstr ""
- msgid "Click on the \"<b>Create New Application</b>\" button."
- msgstr ""
- msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
- msgstr ""
- #, php-format
- msgid ""
- "Fill \"<b>Website URL</b>\" with the url of your homepage, probably: <b>%s</"
- "b>"
- msgstr ""
- msgid "You can leave the \"Javascript Origins\" field blank!"
- msgstr ""
- msgid "Complete the human verification test."
- msgstr ""
- msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
- msgstr ""
- msgid "Click the \"<b>Create</b>\" button!"
- msgstr ""
- msgid ""
- "<b>Click the name of your App</b> either in the Breadcrumb navigation or "
- "next to Editing!"
- msgstr ""
- msgid ""
- "Here you can see your \"<b>Client ID</b>\" and \"<b>Client Secret</b>\". "
- "These will be needed in the plugin's settings."
- msgstr ""
- msgid "Continue with <b>WordPress.com</b>"
- msgstr ""
- msgid "Sign up with <b>WordPress.com</b>"
- msgstr ""
- msgid "Link account with <b>WordPress.com</b>"
- msgstr ""
- msgid "Unlink account from <b>WordPress.com</b>"
- msgstr ""
- msgid "Click on the App which has its credentials associated with the plugin."
- msgstr ""
- msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
- msgstr ""
- msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
- msgstr ""
- msgid ""
- "Fill the \"<b>Application Name</b>\" and select \"<b>Web Application</b>\" "
- "at \"<b>Application Type</b>\"."
- msgstr ""
- msgid "Enter a \"<b>Description</b>\" for your app!"
- msgstr ""
- #, php-format
- msgid ""
- "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
- msgstr ""
- msgid ""
- "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
- "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
- msgstr ""
- msgid "Click \"<b>Create App</b>\"."
- msgstr ""
- msgid ""
- "On the top of the page, you will find the necessary \"<b>Client ID</b>\" and "
- "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
- msgstr ""
- msgid "Continue with <b>Yahoo</b>"
- msgstr ""
- msgid "Sign up with <b>Yahoo</b>"
- msgstr ""
- msgid "Link account with <b>Yahoo</b>"
- msgstr ""
- msgid "Unlink account from <b>Yahoo</b>"
- msgstr ""
- #, php-format
- msgid "Required permission: %1$s"
- msgstr ""
- msgid "OR"
- msgstr "OU"
- msgid "Social accounts"
- msgstr ""
|