Yerelleştirme dizesi kimlikleri

Not

Azure Active Directory B2C'de özel ilkeler öncelikli olarak karmaşık senaryoları ele almak için tasarlanmıştır. Çoğu senaryoda, yerleşik kullanıcı akışlarını kullanmanızı öneririz. Bunu yapmadıysanız, Active Directory B2C'de özel ilkeleri kullanmaya başlama bölümünde özel ilke başlangıç paketi hakkında bilgi edinin.

Localization öğesi, kullanıcı yolculukları için ilkede birden çok yerel ayarı veya dili desteklemenizi sağlar. Bu makalede, ilkenizde kullanabileceğiniz yerelleştirme kimliklerinin listesi sağlanır. Kullanıcı arabirimi yerelleştirmesi hakkında daha fazla bilgi için bkz . Yerelleştirme.

Kaydolma veya oturum açma sayfası öğeleri

Aşağıdaki kimlikler, kimliği api.signuporsigninve kendi kendine onaylanan teknik profili olan bir içerik tanımı için kullanılır.

Kimlik Default value Sayfa Düzeni Sürümü
forgotpassword_link Parolanızı mı unuttunuz? All
createaccount_intro Hesabınız yok mu? All
button_signin Oturum açın All
social_intro Sosyal hesabınızla oturum açın All
remember_me Oturumumu açık tut. All
unknown_error Oturum açarken sorun yaşıyoruz. Lütfen daha sonra yeniden deneyin. All
divider_title VEYA All
local_intro_email Mevcut hesabınızla oturum açın < 2.0.0
logonIdentifier_email E-posta Adresi < 2.0.0
requiredField_email Lütfen e-postanızı girin < 2.0.0
invalid_email Lütfen geçerli bir e-posta adresi girin < 2.0.0
email_pattern ^[a-zA-Z0-9.!#$%&'*+\/=?^_`\{\|\}~\-]+@[a-zA-Z0-9\-]+(?:\\.[a-zA-Z0-9\-]+)\*$ < 2.0.0
local_intro_username Kullanıcı adınız ile oturum açın < 2.0.0
logonIdentifier_username Username < 2.0.0
requiredField_username Lütfen kullanıcı adınızı girin < 2.0.0
password Parola < 2.0.0
requiredField_password Lütfen parolanızı girin < 2.0.0
createaccount_link Hemen kaydolun < 2.0.0
cancel_message Kullanıcı parolasını unuttu < 2.0.0
invalid_password Girdiğiniz parola beklenen biçimde değil. < 2.0.0
createaccount_one_link Hemen kaydolun >= 2.0.0
createaccount_two_links veya ile {0} kaydolun {1} >= 2.0.0
createaccount_three_links , {1}veya ile {0}kaydolun{2} >= 2.0.0
local_intro_generic Oturum açmak için {0} >= 2.1.0
requiredField_generic Lütfen {0} >= 2.1.0
invalid_generic Lütfen geçerli bir değer girin {0} >= 2.1.1
heading Oturum açın >= 2.1.1

Not

Aşağıdaki örnekte, kaydolma veya oturum açma sayfasında bazı kullanıcı arabirimi öğelerinin kullanımı gösterilmektedir:

Screenshot that shows sign-up or sign-in page U X elements.

Kaydolma veya oturum açma kimlik sağlayıcıları

Kimlik sağlayıcılarının kimliği, ClaimsExchange kullanıcı yolculuğu öğesinde yapılandırılır. Kimlik sağlayıcısının başlığını yerelleştirmek için, ElementType olarak, ClaimsProviderStringId ise kimliği ClaimsExchangeolarak ayarlanır.

<OrchestrationStep Order="2" Type="ClaimsExchange">
  <Preconditions>
    <Precondition Type="ClaimsExist" ExecuteActionsIf="true">
      <Value>objectId</Value>
      <Action>SkipThisOrchestrationStep</Action>
    </Precondition>
  </Preconditions>
  <ClaimsExchanges>
    <ClaimsExchange Id="FacebookExchange" TechnicalProfileReferenceId="Facebook-OAUTH" />
    <ClaimsExchange Id="MicrosoftExchange" TechnicalProfileReferenceId="MSA-OIDC" />
    <ClaimsExchange Id="GoogleExchange" TechnicalProfileReferenceId="Google-OAUTH" />
    <ClaimsExchange Id="SignUpWithLogonEmailExchange" TechnicalProfileReferenceId="LocalAccount" />
  </ClaimsExchanges>
</OrchestrationStep>

Aşağıdaki örnek, Facebook kimlik sağlayıcısını Arapça olarak yerelleştirir:

<LocalizedString ElementType="ClaimsProvider" StringId="FacebookExchange">فيس بوك</LocalizedString>

Kaydolma veya oturum açma hata iletileri

Kimlik Default value
UserMessageIfInvalidPassword Parolanız yanlış.
UserMessageIfPasswordExpired Parolanızın süresi doldu.
UserMessageIfClaimsPrincipalDoesNotExist Hesabınızı bulamıyoruz.
UserMessageIfOldPasswordUsed Eski bir parola kullanmışsınız gibi görünüyor.
DefaultMessage Geçersiz kullanıcı adı veya parola.
UserMessageIfUserAccountDisabled Hesabınız kilitlendi. Kilidini açmak için destek sağlayıcınıza başvurun ve yeniden deneyin.
UserMessageIfUserAccountLocked Hesabınız, yetkisiz kullanımı önlemek için geçici olarak kilitlenir. Daha sonra tekrar deneyin.
AADRequestsThrottled Şu anda çok fazla istek var. Lütfen biraz bekleyin ve yeniden deneyin.

Kaydolma veya oturum açma örneği

<LocalizedResources Id="api.signuporsignin.en">
  <LocalizedStrings>
    <LocalizedString ElementType="ClaimType" ElementId="email" StringId="DisplayName">Email Address</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="heading">Sign in</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="social_intro">Sign in with your social account</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="local_intro_generic">Sign in with your {0}</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="requiredField_password">Please enter your password</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="requiredField_generic">Please enter your {0}</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="invalid_generic">Please enter a valid {0}</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="createaccount_one_link">Sign up now</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="createaccount_two_links">Sign up with {0} or {1}</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="createaccount_three_links">Sign up with {0}, {1}, or {2}</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="forgotpassword_link">Forgot your password?</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="button_signin">Sign in</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="divider_title">OR</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="unknown_error">We are having trouble signing you in. Please try again later.</LocalizedString>
    <!-- Uncomment the remember_me only if the keep me signed in is activated. 
    <LocalizedString ElementType="UxElement" StringId="remember_me">Keep me signed in</LocalizedString> -->
    <LocalizedString ElementType="ClaimsProvider" StringId="FacebookExchange">Facebook</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfInvalidPassword">Your password is incorrect.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfPasswordExpired">Your password has expired.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfClaimsPrincipalDoesNotExist">We can't seem to find your account.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfOldPasswordUsed">Looks like you used an old password.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="DefaultMessage">Invalid username or password.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfUserAccountDisabled">Your account has been locked. Contact your support person to unlock it, then try again.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfUserAccountLocked">Your account is temporarily locked to prevent unauthorized use. Try again later.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="AADRequestsThrottled">There are too many requests at this moment. Please wait for some time and try again.</LocalizedString>
  </LocalizedStrings>
</LocalizedResources>

Kaydolma ve kendi kendine onaylanan sayfalar kullanıcı arabirimi öğeleri

Aşağıdaki kimlikler, kimliğine api.localaccountsignup veya ve gibi api.selfasserted.profileupdate ile api.selfassertedbaşlayan herhangi bir içerik tanımına api.localaccountpasswordresetve kendi kendine onaylanan teknik profile sahip bir içerik tanımı için kullanılır.

Kimlik Default value
ver_sent Doğrulama kodu şu adresine gönderildi:
ver_but_default Varsayılan
cancel_message Kullanıcı kendi kendine onaylanan bilgileri girmeyi iptal etti
preloader_alt Lütfen bekleyin
ver_but_send Doğrulama kodu gönder
alert_yes Yes
error_fieldIncorrect Bir veya daha fazla alan yanlış doldurulmuş. Lütfen girdilerinizi denetleyin ve yeniden deneyin.
year Yıl
verifying_blurb Bilgilerinizi işlerken lütfen bekleyin.
button_cancel İptal
ver_fail_no_retry Çok fazla yanlış deneme yaptınız. Lütfen daha sonra yeniden deneyin.
month Month
ver_success_msg E-posta adresi doğrulandı. Artık devam edebilirsiniz.
months Ocak, Şubat, Mart, Nisan, Mayıs, Haziran, Temmuz, Ağustos, Eylül, Ekim, Kasım, Aralık
ver_fail_server E-posta adresinizi doğrularken sorun yaşıyoruz. Lütfen geçerli bir e-posta adresi girin ve yeniden deneyin.
error_requiredFieldMissing Gerekli bir alan eksik. Lütfen tüm gerekli alanları doldurun ve yeniden deneyin.
heading Kullanıcı Ayrıntıları
initial_intro Lütfen aşağıdaki ayrıntıları belirtin.
ver_but_resend Yeni kod gönder
button_continue Oluşturma
error_passwordEntryMismatch Parola giriş alanları eşleşmiyor. Lütfen her iki alana da aynı parolayı girin ve yeniden deneyin.
ver_incorrect_format Yanlış biçim.
ver_but_edit E-postayı değiştir
ver_but_verify Kodu doğrula
alert_no Hayır
ver_info_msg Doğrulama kodu gelen kutunuza gönderildi. Lütfen aşağıdaki giriş kutusuna kopyalayın.
day Gün
ver_fail_throttled Bu e-posta adresini doğrulamak için çok fazla istek yapıldı. Lütfen bir süre bekleyin ve yeniden deneyin.
helplink_text Bu nedir?
ver_fail_retry Bu kod yanlış. Lütfen tekrar deneyin.
alert_title Ayrıntılarınızı Girmeyi İptal Etme
required_field Bu bilgiler gereklidir.
alert_message Ayrıntılarınızı girmeyi iptal etmek istediğinizden emin misiniz?
ver_intro_msg Doğrulama gereklidir. Lütfen Gönder düğmesine tıklayın.
ver_input Doğrulama kodu
required_field_descriptive {0} gereklidir

Aşağıdaki UxElement dize kimlikleri, kendi kendine onaylanan sayfanın en altında yasal uyarı bağlantılarını görüntüler. Yerelleştirilmiş dizelerde belirtilmediği sürece bu bağlantılar varsayılan olarak görüntülenmez.

Kimlik Örnek değer
disclaimer_msg_intro Telefon numaranızı sağlayarak, {insert your application name} uygulamasında oturum açmanıza yardımcı olmak için kısa mesajla gönderilen tek seferlik bir geçiş kodu almayı kabul etmiş olursunuz. Standart ileti ve veri hızları uygulanabilir.
disclaimer_link_1_text Gizlilik Bildirimi
disclaimer_link_1_url {gizlilik bildirimi URL'nizi ekleyin}
disclaimer_link_2_text Hüküm ve Koşullar
disclaimer_link_2_url {hüküm ve koşullar URL'nizi ekleyin}

Kaydolma ve kendi kendine onaylanan sayfalar hata iletileri

Kimlik Default value
UserMessageIfClaimsPrincipalAlreadyExists Belirtilen kimlikte bir kullanıcı zaten var. Lütfen farklı bir tane seçin.
UserMessageIfClaimNotVerified Talep doğrulanmadı: {0}
UserMessageIfIncorrectPattern Yanlış desen: {0}
UserMessageIfMissingRequiredElement Eksik gerekli öğe: {0}
UserMessageIfValidationError Doğrulama hatası: {0}
UserMessageIfInvalidInput {0} geçersiz girişe sahip.
ServiceThrottled Şu anda çok fazla istek var. Lütfen biraz bekleyin ve yeniden deneyin.

Aşağıdaki örnekte, kaydolma sayfasında bazı kullanıcı arabirimi öğelerinin kullanımı gösterilmektedir:

Sign-up page with its UI element names labeled

Aşağıdaki örnekte, kullanıcı doğrulama kodu gönder düğmesini seçtikten sonra kaydolma sayfasındaki bazı kullanıcı arabirimi öğelerinin kullanımı gösterilmektedir:

Sign-up page email verification UX elements

Kaydolma ve kendi kendine onaylanan sayfalar örneği

<LocalizedResources Id="api.localaccountsignup.en">
  <LocalizedStrings>
    <LocalizedString ElementType="ClaimType" ElementId="email" StringId="DisplayName">Email Address</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="email" StringId="UserHelpText">Email address that can be used to contact you.</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="email" StringId="PatternHelpText">Please enter a valid email address.</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="newPassword" StringId="DisplayName">New Password</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="newPassword" StringId="UserHelpText">Enter new password</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="newPassword" StringId="PatternHelpText">8-16 characters, containing 3 out of 4 of the following: Lowercase characters, uppercase characters, digits (0-9), and one or more of the following symbols: @ # $ % ^ &amp; * - _ + = [ ] { } | \ : ' , ? / ` ~ " ( ) ; .</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="reenterPassword" StringId="DisplayName">Confirm New Password</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="reenterPassword" StringId="UserHelpText">Confirm new password</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="reenterPassword" StringId="PatternHelpText">#8-16 characters, containing 3 out of 4 of the following: Lowercase characters, uppercase characters, digits (0-9), and one or more of the following symbols: @ # $ % ^ &amp; * - _ + = [ ] { } | \ : ' , ? / ` ~ " ( ) ; .</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="displayName" StringId="DisplayName">Display Name</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="displayName" StringId="UserHelpText">Your display name.</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="surname" StringId="DisplayName">Surname</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="surname" StringId="UserHelpText">Your surname (also known as family name or last name).</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="givenName" StringId="DisplayName">Given Name</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="givenName" StringId="UserHelpText">Your given name (also known as first name).</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="button_continue">Create</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="error_fieldIncorrect">One or more fields are filled out incorrectly. Please check your entries and try again.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="error_passwordEntryMismatch">The password entry fields do not match. Please enter the same password in both fields and try again.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="error_requiredFieldMissing">A required field is missing. Please fill out all required fields and try again.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="helplink_text">What is this?</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="heading">User Details</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="initial_intro">Please provide the following details.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="preloader_alt">Please wait</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="required_field">This information is required.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="required_field_descriptive">{0} is required</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="ver_but_edit">Change e-mail</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="ver_but_resend">Send new code</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="ver_but_send">Send verification code</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="ver_but_verify">Verify code</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="ver_fail_code_expired">That code is expired. Please request a new code.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="ver_fail_no_retry">You've made too many incorrect attempts. Please try again later.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="ver_fail_retry">That code is incorrect. Please try again.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="ver_fail_server">We are having trouble verifying your email address. Please enter a valid email address and try again.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="ver_fail_throttled">There have been too many requests to verify this email address. Please wait a while, then try again.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="ver_info_msg">Verification code has been sent to your inbox. Please copy it to the input box below.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="ver_input">Verification code</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="ver_intro_msg">Verification is necessary. Please click Send button.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="ver_success_msg">E-mail address verified. You can now continue.</LocalizedString>
    <!-- The following elements will display a message and two links at the bottom of the page. 
         For policies that you intend to show to users in the United States, we suggest displaying the following text. Replace the content of the disclaimer_link_X_url elements with links to your organization's privacy statement and terms and conditions. 
          Uncomment any of these lines to display them.  -->
    <!-- <LocalizedString ElementType="UxElement" StringId="disclaimer_msg_intro">By providing your phone number, you consent to receiving a one-time passcode sent by text message to help you sign into {insert your application name}. Standard message and data rates may apply.</LocalizedString> -->
    <!-- <LocalizedString ElementType="UxElement" StringId="disclaimer_link_1_text">Privacy Statement</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="disclaimer_link_1_url">{insert your privacy statement URL}</LocalizedString> -->
    <!-- <LocalizedString ElementType="UxElement" StringId="disclaimer_link_2_text">Terms and Conditions</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="disclaimer_link_2_url">{insert your terms and conditions URL}</LocalizedString> -->
    <LocalizedString ElementType="ErrorMessage" StringId="ServiceThrottled">There are too many requests at this moment. Please wait for some time and try again.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfClaimNotVerified">Claim not verified: {0}</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfClaimsPrincipalAlreadyExists">A user with the specified ID already exists. Please choose a different one.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfIncorrectPattern">Incorrect pattern for: {0}</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfInvalidInput">{0} has invalid input.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfMissingRequiredElement">Missing required element: {0}</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfValidationError">Error in validation by: {0}</LocalizedString>
  </LocalizedStrings>
</LocalizedResources>

Telefon faktör kimlik doğrulaması sayfası kullanıcı arabirimi öğeleri

Kimliği ve telefon faktörü teknik profili olan içerik tanımının api.phonefactorkimlikleri aşağıdadır.

Kimlik Default value Sayfa Düzeni Sürümü
button_verify Beni Ara All
country_code_label Ülke Kodu All
cancel_message Kullanıcı çok faktörlü kimlik doğrulamasını iptal etti All
text_button_send_second_code yeni kod gönderme All
code_pattern \D{6} All
intro_mixed Sizin için kayıtta aşağıdaki numara var. Kimliğinizi doğrulamak için SMS veya telefon aracılığıyla bir kod gönderebiliriz. All
intro_mixed_p Sizin için kayıtta aşağıdaki numaralar var. Kimliğinizi doğrulamak için sms yoluyla telefon veya kod gönderebileceğimiz bir numara seçin. All
button_verify_code Kodu Doğrulama All
requiredField_code Lütfen aldığınız doğrulama kodunu girin All
invalid_code Lütfen aldığınız 6 basamaklı kodu girin All
button_cancel İptal All
local_number_input_placeholder_text Telefon numarası All
button_retry Yeniden Dene All
alternative_text Telefonum yok All
intro_phone_p Sizin için kayıtta aşağıdaki numaralar var. Kimliğinizi doğrulamak için arayabileceğiniz bir numara seçin. All
intro_phone Sizin için kayıtta aşağıdaki numara var. Kimliğinizi doğrulamak için telefon edeceğiz. All
enter_code_text_intro Doğrulama kodunuzu aşağıya girin veya All
intro_entry_phone Kimliğinizi doğrulamak için arayabileceğiniz bir numara girin. All
intro_entry_sms Kimliğinizi doğrulamak için SMS yoluyla kod gönderebileceğimiz bir numara girin. All
button_send_code Kod Gönder All
invalid_number Lütfen geçerli bir telefon numarası girin All
intro_sms Sizin için kayıtta aşağıdaki numara var. Kimliğinizi doğrulamak için SMS yoluyla bir kod göndereceğiz. All
intro_entry_mixed Aşağıya kimliğinizi doğrulamak için SMS aracılığıyla kod gönderebileceğimiz veya arayabileceğimiz bir numara girin. All
number_pattern ^\\+(?:[0-9][\\x20-]?){6,14}[0-9]$ All
intro_sms_p Sizin için kayıtta aşağıdaki numaralar var. Kimliğinizi doğrulamak için SMS yoluyla kod gönderebileceğimiz bir numara seçin. All
requiredField_countryCode Lütfen ülke kodunuzu seçin All
requiredField_number Lütfen telefon numaranızı girin All
country_code_input_placeholder_text Ülke veya Bölge All
number_label Telefon Numarası All
error_tryagain Sağladığınız telefon numarası meşgul veya kullanılamıyor. Lütfen numarayı denetleyin ve yeniden deneyin. All
error_sms_throttled Kısa mesaj sayısı sınırına ulaştınız. Kısa bir süre sonra tekrar deneyin. >= 1.2.3
error_phone_throttled Arama denemesi sayısı sınırına ulaştınız. Kısa bir süre sonra tekrar deneyin. >= 1.2.3
error_throttled Doğrulama denemesi sayısı sınırına ulaştınız. Kısa bir süre sonra tekrar deneyin. >= 1.2.3
error_incorrect_code Girdiğiniz doğrulama kodu kayıtlarımızla eşleşmiyor. Lütfen yeniden deneyin veya yeni bir kod isteyin. All
countryList Ülkeler listesine bakın. All
error_448 Sağladığınız telefon numarasına ulaşılamıyor. All
error_449 Kullanıcı yeniden deneme denemesi sayısını aştı. All
verification_code_input_placeholder_text Doğrulama kodu All

Aşağıdaki örnekte, MFA kayıt sayfasındaki bazı kullanıcı arabirimi öğelerinin kullanımı gösterilmektedir:

Phone factor authentication enrollment UX elements

Aşağıdaki örnek, MFA doğrulama sayfasında bazı kullanıcı arabirimi öğelerinin kullanımını gösterir:

Phone factor authentication validation UX elements

Telefon faktör kimlik doğrulaması sayfası örneği

<LocalizedResources Id="api.phonefactor.en">
  <LocalizedStrings>
    <LocalizedString ElementType="UxElement" StringId="button_verify">Call Me</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="country_code_label">Country Code</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="cancel_message">The user has canceled multi-factor authentication</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="text_button_send_second_code">Send a new code</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="code_pattern">\d{6}</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="intro_mixed">We have the following number on record for you. We can send a code via SMS or phone to authenticate you.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="intro_mixed_p">We have the following numbers on record for you. Choose a number that we can phone or send a code via SMS to authenticate you.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="button_verify_code">Verify Code</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="requiredField_code">Please enter the verification code you received</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="invalid_code">Please enter the 6-digit code you received</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="button_cancel">Cancel</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="local_number_input_placeholder_text">Phone number</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="button_retry">Retry</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="alternative_text">I don't have my phone</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="intro_phone_p">We have the following numbers on record for you. Choose a number that we can phone to authenticate you.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="intro_phone">We have the following number on record for you. We will phone to authenticate you.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="enter_code_text_intro">Enter your verification code below, or</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="intro_entry_phone">Enter a number below that we can phone to authenticate you.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="intro_entry_sms">Enter a number below that we can send a code via SMS to authenticate you.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="button_send_code">Send Code</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="invalid_number">Please enter a valid phone number</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="intro_sms">We have the following number on record for you. We will send a code via SMS to authenticate you.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="intro_entry_mixed">Enter a number below that we can send a code via SMS or phone to authenticate you.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="number_pattern">^\+(?:[0-9][\x20-]?){6,14}[0-9]$</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="intro_sms_p">We have the following numbers on record for you. Choose a number that we can send a code via SMS to authenticate you.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="requiredField_countryCode">Please select your country code</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="requiredField_number">Please enter your phone number</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="country_code_input_placeholder_text">Country or region</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="number_label">Phone Number</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="error_tryagain">The phone number you provided is busy or unavailable. Please check the number and try again.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="error_sms_throttled">You hit the limit on the number of text messages. Try again shortly.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="error_phone_throttled">You hit the limit on the number of call attempts. Try again shortly.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="error_throttled">You hit the limit on the number of verification attempts. Try again shortly.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="error_incorrect_code">The verification code you have entered does not match our records. Please try again, or request a new code.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="countryList">{"DEFAULT":"Country/Region","AF":"Afghanistan","AX":"Åland Islands","AL":"Albania","DZ":"Algeria","AS":"American Samoa","AD":"Andorra","AO":"Angola","AI":"Anguilla","AQ":"Antarctica","AG":"Antigua and Barbuda","AR":"Argentina","AM":"Armenia","AW":"Aruba","AU":"Australia","AT":"Austria","AZ":"Azerbaijan","BS":"Bahamas","BH":"Bahrain","BD":"Bangladesh","BB":"Barbados","BY":"Belarus","BE":"Belgium","BZ":"Belize","BJ":"Benin","BM":"Bermuda","BT":"Bhutan","BO":"Bolivia","BQ":"Bonaire","BA":"Bosnia and Herzegovina","BW":"Botswana","BV":"Bouvet Island","BR":"Brazil","IO":"British Indian Ocean Territory","VG":"British Virgin Islands","BN":"Brunei","BG":"Bulgaria","BF":"Burkina Faso","BI":"Burundi","CV":"Cabo Verde","KH":"Cambodia","CM":"Cameroon","CA":"Canada","KY":"Cayman Islands","CF":"Central African Republic","TD":"Chad","CL":"Chile","CN":"China","CX":"Christmas Island","CC":"Cocos (Keeling) Islands","CO":"Colombia","KM":"Comoros","CG":"Congo","CD":"Congo (DRC)","CK":"Cook Islands","CR":"Costa Rica","CI":"Côte d'Ivoire","HR":"Croatia","CU":"Cuba","CW":"Curaçao","CY":"Cyprus","CZ":"Czech Republic","DK":"Denmark","DJ":"Djibouti","DM":"Dominica","DO":"Dominican Republic","EC":"Ecuador","EG":"Egypt","SV":"El Salvador","GQ":"Equatorial Guinea","ER":"Eritrea","EE":"Estonia","ET":"Ethiopia","FK":"Falkland Islands","FO":"Faroe Islands","FJ":"Fiji","FI":"Finland","FR":"France","GF":"French Guiana","PF":"French Polynesia","TF":"French Southern Territories","GA":"Gabon","GM":"Gambia","GE":"Georgia","DE":"Germany","GH":"Ghana","GI":"Gibraltar","GR":"Greece","GL":"Greenland","GD":"Grenada","GP":"Guadeloupe","GU":"Guam","GT":"Guatemala","GG":"Guernsey","GN":"Guinea","GW":"Guinea-Bissau","GY":"Guyana","HT":"Haiti","HM":"Heard Island and McDonald Islands","HN":"Honduras","HK":"Hong Kong SAR","HU":"Hungary","IS":"Iceland","IN":"India","ID":"Indonesia","IR":"Iran","IQ":"Iraq","IE":"Ireland","IM":"Isle of Man","IL":"Israel","IT":"Italy","JM":"Jamaica","JP":"Japan","JE":"Jersey","JO":"Jordan","KZ":"Kazakhstan","KE":"Kenya","KI":"Kiribati","KR":"Korea","KW":"Kuwait","KG":"Kyrgyzstan","LA":"Laos","LV":"Latvia","LB":"Lebanon","LS":"Lesotho","LR":"Liberia","LY":"Libya","LI":"Liechtenstein","LT":"Lithuania","LU":"Luxembourg","MO":"Macao SAR","MK":"North Macedonia","MG":"Madagascar","MW":"Malawi","MY":"Malaysia","MV":"Maldives","ML":"Mali","MT":"Malta","MH":"Marshall Islands","MQ":"Martinique","MR":"Mauritania","MU":"Mauritius","YT":"Mayotte","MX":"Mexico","FM":"Micronesia","MD":"Moldova","MC":"Monaco","MN":"Mongolia","ME":"Montenegro","MS":"Montserrat","MA":"Morocco","MZ":"Mozambique","MM":"Myanmar","NA":"Namibia","NR":"Nauru","NP":"Nepal","NL":"Netherlands","NC":"New Caledonia","NZ":"New Zealand","NI":"Nicaragua","NE":"Niger","NG":"Nigeria","NU":"Niue","NF":"Norfolk Island","KP":"North Korea","MP":"Northern Mariana Islands","NO":"Norway","OM":"Oman","PK":"Pakistan","PW":"Palau","PS":"Palestinian Authority","PA":"Panama","PG":"Papua New Guinea","PY":"Paraguay","PE":"Peru","PH":"Philippines","PN":"Pitcairn Islands","PL":"Poland","PT":"Portugal","PR":"Puerto Rico","QA":"Qatar","RE":"Réunion","RO":"Romania","RU":"Russia","RW":"Rwanda","BL":"Saint Barthélemy","KN":"Saint Kitts and Nevis","LC":"Saint Lucia","MF":"Saint Martin","PM":"Saint Pierre and Miquelon","VC":"Saint Vincent and the Grenadines","WS":"Samoa","SM":"San Marino","ST":"São Tomé and Príncipe","SA":"Saudi Arabia","SN":"Senegal","RS":"Serbia","SC":"Seychelles","SL":"Sierra Leone","SG":"Singapore","SX":"Sint Maarten","SK":"Slovakia","SI":"Slovenia","SB":"Solomon Islands","SO":"Somalia","ZA":"South Africa","GS":"South Georgia and South Sandwich Islands","SS":"South Sudan","ES":"Spain","LK":"Sri Lanka","SH":"St Helena, Ascension, Tristan da Cunha","SD":"Sudan","SR":"Suriname","SJ":"Svalbard","SZ":"Swaziland","SE":"Sweden","CH":"Switzerland","SY":"Syria","TW":"Taiwan","TJ":"Tajikistan","TZ":"Tanzania","TH":"Thailand","TL":"Timor-Leste","TG":"Togo","TK":"Tokelau","TO":"Tonga","TT":"Trinidad and Tobago","TN":"Tunisia","TR":"Türkiye","TM":"Turkmenistan","TC":"Turks and Caicos Islands","TV":"Tuvalu","UM":"U.S. Outlying Islands","VI":"U.S. Virgin Islands","UG":"Uganda","UA":"Ukraine","AE":"United Arab Emirates","GB":"United Kingdom","US":"United States","UY":"Uruguay","UZ":"Uzbekistan","VU":"Vanuatu","VA":"Vatican City","VE":"Venezuela","VN":"Vietnam","WF":"Wallis and Futuna","YE":"Yemen","ZM":"Zambia","ZW":"Zimbabwe"}</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="error_448">The phone number you provided is unreachable.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="error_449">User has exceeded the number of retry attempts.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="verification_code_input_placeholder_text">Verification code</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="strongAuthenticationPhoneNumber" StringId="DisplayName">Phone Number</LocalizedString>
  </LocalizedStrings>
</LocalizedResources>

Doğrulama görüntüleme denetimi kullanıcı arabirimi öğeleri

Sayfa düzeni sürüm 2.1.0 veya üzeri olan doğrulama görüntüleme denetimi için aşağıdaki kimlikler kullanılır.

Kimlik Default value
intro_msg1 Doğrulama gereklidir. Lütfen Gönder düğmesine tıklayın.
success_send_code_msg Doğrulama kodu gönderildi. Lütfen aşağıdaki giriş kutusuna kopyalayın.
failure_send_code_msg E-posta adresinizi doğrularken sorun yaşıyoruz. Lütfen geçerli bir e-posta adresi girin ve yeniden deneyin.
success_verify_code_msg E-posta adresi doğrulandı. Artık devam edebilirsiniz.
failure_verify_code_msg E-posta adresinizi doğrularken sorun yaşıyoruz. Lütfen tekrar deneyin.
but_send_code Doğrulama kodu gönder
but_verify_code Kodu doğrula
but_send_new_code Yeni kod gönder
but_change_claims E-postayı değiştir
UserMessageIfVerificationControlClaimsNotVerified2 Doğrulama denetimi talepleri doğrulanmadı.

1intro_msg Öğesi gizlidir ve kendi kendini onaylanan sayfada gösterilmez. Bunu görünür hale getirmek için, Basamaklı Stil Sayfaları ile HTML özelleştirmesini kullanın. Örneğin:

.verificationInfoText div{display: block!important}

2 Doğrulama kodu girmesi durumunda kullanıcıya bu hata iletisi görüntülenir, ancak Doğrula düğmesini seçerek doğrulamayı tamamlamak yerine Devam düğmesini seçer.

Doğrulama görüntüleme denetimi örneği

<LocalizedResources Id="api.localaccountsignup.en">
  <LocalizedStrings>
   <!-- Display control UI elements-->
    <LocalizedString ElementType="DisplayControl" ElementId="emailVerificationControl" StringId="intro_msg">Verification is necessary. Please click Send button.</LocalizedString>
    <LocalizedString ElementType="DisplayControl" ElementId="emailVerificationControl" StringId="success_send_code_msg">Verification code has been sent to your inbox. Please copy it to the input box below.</LocalizedString>
    <LocalizedString ElementType="DisplayControl" ElementId="emailVerificationControl" StringId="failure_send_code_msg">We are having trouble verifying your email address. Please enter a valid email address and try again.</LocalizedString>
    <LocalizedString ElementType="DisplayControl" ElementId="emailVerificationControl" StringId="success_verify_code_msg">E-mail address verified. You can now continue.</LocalizedString>
    <LocalizedString ElementType="DisplayControl" ElementId="emailVerificationControl" StringId="failure_verify_code_msg">We are having trouble verifying your email address. Please try again.</LocalizedString>
    <LocalizedString ElementType="DisplayControl" ElementId="emailVerificationControl" StringId="but_send_code">Send verification code</LocalizedString>
    <LocalizedString ElementType="DisplayControl" ElementId="emailVerificationControl" StringId="but_verify_code">Verify code</LocalizedString>
    <LocalizedString ElementType="DisplayControl" ElementId="emailVerificationControl" StringId="but_send_new_code">Send new code</LocalizedString>
    <LocalizedString ElementType="DisplayControl" ElementId="emailVerificationControl" StringId="but_change_claims">Change e-mail</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfVerificationControlClaimsNotVerified">The claims for verification control have not been verified.</LocalizedString>
  </LocalizedStrings>
</LocalizedResources>

Doğrulama görüntüleme denetimi kullanıcı arabirimi öğeleri (kullanım dışı)

Sayfa düzeni sürüm 2.0.0 ile doğrulama görüntüleme denetimi için aşağıdaki kimlikler kullanılır.

Kimlik Default value
verification_control_but_change_claims Değiştir
verification_control_fail_send_code Kod gönderilemedi, lütfen daha sonra yeniden deneyin.
verification_control_fail_verify_code Kod doğrulanamadı, lütfen daha sonra yeniden deneyin.
verification_control_but_send_code Kod Gönder
verification_control_but_send_new_code Yeni Kod Gönder
verification_control_but_verify_code Kodu Doğrulama
verification_control_code_sent Doğrulama kodu gönderildi. Lütfen aşağıdaki giriş kutusuna kopyalayın.

Doğrulama görüntüleme denetimi örneği (kullanım dışı)

<LocalizedResources Id="api.localaccountsignup.en">
  <LocalizedStrings>
    <LocalizedString ElementType="UxElement" StringId="verification_control_but_change_claims">Change</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="verification_control_fail_send_code">Failed to send the code, please try again later.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="verification_control_fail_verify_code">Failed to verify the code, please try again later.</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="verification_control_but_send_code">Send Code</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="verification_control_but_send_new_code">Send New Code</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="verification_control_but_verify_code">Verify Code</LocalizedString>
    <LocalizedString ElementType="UxElement" StringId="verification_control_code_sent">Verification code has been sent. Please copy it to the input box below.</LocalizedString>
  </LocalizedStrings>
</LocalizedResources>

TOTP MFA denetimleri görüntüleme denetimi kullanıcı arabirimi öğeleri

Aşağıdaki kimlikler, sayfa düzeni sürüm 2.1.9 ve üzeri ile zaman tabanlı tek seferlik parola (TOTP) görüntüleme denetimi için kullanılır.

Kimlik Default value
title_text iOS ve Android için indirme bağlantılarını kullanarak Microsoft Authenticator'ı indirin veya istediğiniz başka bir kimlik doğrulayıcı uygulamasını kullanın.
DN Authenticator uygulamasını indirdikten sonra kayıt işlemine devam etmek için aşağıdaki yöntemlerden herhangi birini kullanabilirsiniz.
DisplayName Authenticator uygulamasını indirdikten sonra kayıt işlemine devam etmek için aşağıdaki yöntemlerden herhangi birini kullanabilirsiniz.
title_text QR kodunu tarama
info_msg Microsoft Authenticator uygulamasını indirebilir veya istediğiniz başka bir kimlik doğrulayıcı uygulamasını kullanabilirsiniz.
link_text Tarayamıyor musunuz? Bunu deneyin
title_text Hesap ayrıntılarını el ile girin.
account_name Hesap Adı:
display_prefix Gizli dizi
collapse_text Hala sorun mu yaşıyorsunuz?
DisplayName Kimlik doğrulayıcı uygulamanızdan doğrulama kodunu girin.
DisplayName Kodunuzu girin.
button_continue Doğrulama

TOTP MFA denetimleri görüntüleme denetimi örneği

      <LocalizedResources Id="api.selfasserted.totp.en">
        <LocalizedStrings>
          <LocalizedString ElementType="DisplayControl" ElementId="authenticatorAppIconControl" StringId="title_text">Download the Microsoft Authenticator using the download links for iOS and Android or use any other authenticator app of your choice.</LocalizedString>
          <LocalizedString ElementType="DisplayControl" ElementId="authenticatorAppIconControl" StringId="DN">Once you&#39;ve downloaded the Authenticator app, you can use any of the methods below to continue with enrollment.</LocalizedString>
          <LocalizedString ElementType="ClaimType" ElementId="QrCodeScanInstruction" StringId="DisplayName">Once you've downloaded the Authenticator app, you can use any of the methods below to continue with enrollment.</LocalizedString>
          <LocalizedString ElementType="DisplayControl" ElementId="totpQrCodeControl" StringId="title_text">Scan the QR code</LocalizedString>
          <LocalizedString ElementType="DisplayControl" ElementId="totpQrCodeControl" StringId="info_msg">You can download the Microsoft Authenticator app or use any other authenticator app of your choice.</LocalizedString>
          <LocalizedString ElementType="DisplayControl" ElementId="totpQrCodeControl" StringId="link_text">Can&#39;t scan? Try this</LocalizedString>
          <LocalizedString ElementType="DisplayControl" ElementId="authenticatorInfoControl" StringId="title_text">Enter the account details manually</LocalizedString>
          <LocalizedString ElementType="DisplayControl" ElementId="authenticatorInfoControl" StringId="account_name">Account Name:</LocalizedString>
          <LocalizedString ElementType="DisplayControl" ElementId="authenticatorInfoControl" StringId="display_prefix">Secret</LocalizedString>
          <LocalizedString ElementType="DisplayControl" ElementId="authenticatorInfoControl" StringId="collapse_text">Still having trouble?</LocalizedString>
          <LocalizedString ElementType="ClaimType" ElementId="QrCodeVerifyInstruction" StringId="DisplayName">Enter the verification code from your authenticator app​.</LocalizedString>
          <LocalizedString ElementType="ClaimType" ElementId="otpCode" StringId="DisplayName">Enter your code.</LocalizedString>
          <LocalizedString ElementType="UxElement" StringId="button_continue">Verify</LocalizedString>
        </LocalizedStrings>
      </LocalizedResources>

Bekleyen hizmet hata iletileri

Restful hizmeti teknik profili hata iletileri için aşağıdaki kimlikler kullanılır:

Kimlik Default value
DefaultUserMessageIfRequestFailed Bekleyen hizmet bitiş noktasına bağlantı kurulamadı. Restful hizmet URL'si: {0}
UserMessageIfCircuitOpen {0} Restful Service URL'si: {1}
UserMessageIfDnsResolutionFailed Bekleyen hizmet uç noktasının ana bilgisayar adı çözümlenemedi. Restful hizmet URL'si: {0}
UserMessageIfRequestTimeout Zaman aşımı sınırı {0} saniye içinde bekleyen hizmet uç noktasına bağlantı kurulamadı. Restful hizmet URL'si: {1}

Restful hizmeti örneği

<LocalizedResources Id="api.localaccountsignup.en">
  <LocalizedStrings>
    <LocalizedString ElementType="ErrorMessage" StringId="DefaultUserMessageIfRequestFailed">Failed to establish connection to restful service end point.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfCircuitOpen">Unable to connect to the restful service end point.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfDnsResolutionFailed">Failed to resolve the hostname of the restful service endpoint.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfRequestTimeout">Failed to establish connection to restful service end point within timeout limit.</LocalizedString>
  </LocalizedStrings>
</LocalizedResources>

Microsoft Entra çok faktörlü kimlik doğrulaması hata iletileri

Microsoft Entra ID çok faktörlü kimlik doğrulaması teknik profil hata iletisi için aşağıdaki kimlikler kullanılır:

Kimlik Default value
UserMessageIfCouldntSendSms Telefona SMS gönderilemiyor, lütfen başka bir telefon numarası deneyin.
UserMessageIfInvalidFormat Telefon numaranız geçerli bir biçimde değil, lütfen düzeltin ve yeniden deneyin.
UserMessageIfMaxAllowedCodeRetryReached Çok fazla yanlış kod girildi, lütfen daha sonra yeniden deneyin.
UserMessageIfServerError MFA hizmeti kullanılamaz, lütfen daha sonra yeniden deneyin.
UserMessageIfThrottled İsteğiniz kısıtlandı, lütfen daha sonra yeniden deneyin.
UserMessageIfWrongCodeEntered Yanlış kod girildi, lütfen yeniden deneyin.

Microsoft Entra çok faktörlü kimlik doğrulaması örneği

<LocalizedResources Id="api.localaccountsignup.en">
  <LocalizedStrings>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfCouldntSendSms">Cannot Send SMS to the phone, please try another phone number.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfInvalidFormat">Your phone number is not in a valid format, please correct it and try again.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfMaxAllowedCodeRetryReached">Wrong code entered too many times, please try again later.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfServerError">Cannot use MFA service, please try again later.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfThrottled">Your request has been throttled, please try again later.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfWrongCodeEntered">Wrong code entered, please try again.</LocalizedString>
  </LocalizedStrings>
</LocalizedResources>

Microsoft Entra SSPR

Microsoft Entra ID SSPR teknik profil hata iletileri için aşağıdaki kimlikler kullanılır:

Kimlik Default value
UserMessageIfChallengeExpired Kodun süresi doldu.
UserMessageIfInternalError E-posta hizmeti bir iç hatayla karşılaştı, lütfen daha sonra yeniden deneyin.
UserMessageIfThrottled Çok fazla istek gönderdiniz, lütfen daha sonra yeniden deneyin.
UserMessageIfVerificationFailedNoRetry Doğrulama denemesi sayısı üst sınırını aştınız.
UserMessageIfVerificationFailedRetryAllowed Doğrulama başarısız oldu, lütfen yeniden deneyin.

Microsoft Entra SSPR örneği

<LocalizedResources Id="api.localaccountsignup.en">
  <LocalizedStrings>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfInternalError">We are having trouble verifying your email address. Please try again later.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfThrottled">There have been too many requests to verify this email address. Please wait a while, then try again.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfChallengeExpired">That code is expired. Please request a new code.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfVerificationFailedNoRetry">You've made too many incorrect attempts. Please try again later.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfVerificationFailedRetryAllowed">That code is incorrect. Please try again.</LocalizedString>
  </LocalizedStrings>
</LocalizedResources>

Tek seferlik parola hata iletileri

Aşağıdaki kimlikler tek seferlik parola teknik profili hata iletileri için kullanılır.

Kimlik Varsayılan değer Description
UserMessageIfSessionDoesNotExist Hayır Kod doğrulama oturumunun süresi dolarsa kullanıcıya görüntülenecek ileti. Kodun süresi doldu veya kod belirli bir tanımlayıcı için hiç oluşturulmadı.
UserMessageIfMaxRetryAttempted Hayır İzin verilen en yüksek doğrulama denemelerini aşarsa kullanıcıya görüntülenecek ileti.
UserMessageIfMaxNumberOfCodeGenerated Hayır Kod oluşturma izin verilen en fazla deneme sayısını aştıysa kullanıcıya görüntülenecek ileti.
UserMessageIfInvalidCode Hayır Geçersiz bir kod girerse kullanıcıya görüntülenecek ileti.
UserMessageIfVerificationFailedRetryAllowed Hayır Geçersiz bir kod girerse ve kullanıcının doğru kodu sağlamasına izin verilirse kullanıcıya görüntülenecek ileti.
UserMessageIfSessionConflict Hayır Kod doğrulanamazsa kullanıcıya görüntülenecek ileti.

Tek seferlik parola örneği

<LocalizedResources Id="api.localaccountsignup.en">
  <LocalizedStrings>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfSessionDoesNotExist">You have exceeded the maximum time allowed.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfMaxRetryAttempted">You have exceeded the number of retries allowed.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfMaxNumberOfCodeGenerated">You have exceeded the number of code generation attempts allowed.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfInvalidCode">You have entered the wrong code.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfVerificationFailedRetryAllowed">That code is incorrect. Please try again.</LocalizedString>
   <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfSessionConflict">Cannot verify the code, please try again later.</LocalizedString>
  </LocalizedStrings>
</LocalizedResources>

Talep dönüştürmeleri hata iletileri

Talep dönüştürmeleri hata iletileri için aşağıdaki kimlikler kullanılır:

Kimlik Talepleri dönüştürme Default value
UserMessageIfClaimsTransformationBooleanValueIsNotEqual AssertBooleanClaimIsEqualToValue "inputClaim" talep türü için Boole talep değeri karşılaştırması başarısız oldu.
DateTimeGreaterThan AssertDateTimeIsGreaterThan Talep değeri karşılaştırması başarısız oldu: Sağlanan sol işlenen sağ işlenenden büyük.
UserMessageIfClaimsTransformationStringsAreNotEqual AssertStringClaimsAreEqual Talep değeri karşılaştırması StringComparison "OrdinalIgnoreCase" kullanılarak başarısız oldu.

Talep dönüştürmeleri örneği 1:

Bu örnekte, yerel hesap kaydolma için yerelleştirilmiş iletiler gösterilir.

<LocalizedResources Id="api.localaccountsignup.en">
  <LocalizedStrings>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfClaimsTransformationBooleanValueIsNotEqual">Your email address hasn't been verified.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="DateTimeGreaterThan">Expiration date must be greater that the current date.</LocalizedString>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfClaimsTransformationStringsAreNotEqual">The email entry fields do not match. Please enter the same email address in both fields and try again.</LocalizedString>
  </LocalizedStrings>
</LocalizedResources>

Talep dönüştürmeleri örneği 2:

Bu örnekte, yerel hesap parola sıfırlama için yerelleştirilmiş iletiler gösterilir.

<LocalizedResources Id="api.localaccountpasswordreset.en">
  <LocalizedStrings>
    <LocalizedString ElementType="ErrorMessage" StringId="UserMessageIfClaimsTransformationBooleanValueIsNotEqual">You cannot use the old password</LocalizedString>    
  </LocalizedStrings>
</LocalizedResources>

CAPTCHA görüntüleme denetimi kullanıcı arabirimi öğeleri

CAPTCHA görüntü denetimi için aşağıdaki kimlikler kullanılır:

Kimlik Varsayılan değer Açıklama
newCaptcha_arialabel Yeni CAPTCHA oluşturma Kullanıcıya, fare işaretçisini CAPTCHA yeniden yürütme simgesinin üzerinde hareket ettirdiğinde görüntülenecek araç ipucu iletisi.
switchCaptchaType_title CAPTCHA türünü {0} Fare işaretçisini CAPTCHA Ses veya görüntü simgesinin üzerine getirince kullanıcıya görüntülenecek araç ipucu iletisi.
captchatype_visual_help Gördüğünüz karakterleri girin Kullanıcı görsel moddaysa kullanıcının CAPTCHA kodunu giriş yaptığı giriş kutusundaki yer tutucu metin.
captchatype_audio_title Sınamayı yürütmek için ses düğmesine basma Kullanıcı ses moduna geçerse, fare işaretçisini CAPTCHA hoparlör simgesinin üzerinde hareket ettirdiğinde kullanıcıya görüntülenecek araç ipucu iletisi.
captchatype_audio_help Duyduğunuz karakterleri girin Kullanıcı ses moduna geçerse kullanıcının CAPTCHA kodunu giriş yaptığı giriş kutusundaki yer tutucu metin.
charsnotmatched_error Karakterler CAPTCHA sınaması için eşleşmedi. Lütfen yeniden deneyin Kullanıcıya yanlış bir CAPTCHA kodu girerse görüntülenecek ileti.
api_error CAPTCHA denetiminde API hatası Azure AD B2C CAPTCHA kodunu doğrulamaya çalışırken bir hata oluşursa kullanıcıya görüntülenecek ileti.
captcha_resolved Başarılı! Doğru bir CAPTCHA kodu girerse kullanıcıya görüntülenecek ileti.
DisplayName Botları yenelim. CAPTCHA görüntüleme denetiminin görünen adı.

CAPTCHA görüntü denetimi örneği

Bu örnekte CAPTCHA görüntüleme denetimi için yerelleştirilmiş iletiler gösterilir.

      <LocalizedResources Id="api.localaccountsignup.en">
        <LocalizedStrings>
          <LocalizedString ElementType="UxElement" StringId="newCaptcha_arialabel">Create new CAPTCHA</LocalizedString>
          <LocalizedString ElementType="UxElement" StringId="switchCaptchaType_title">Switch CAPTCHA type to {0}</LocalizedString>
          <LocalizedString ElementType="UxElement"  StringId="captchatype_visual_help">Enter the characters you see</LocalizedString>
          <LocalizedString ElementType="UxElement"  StringId="captchatype_audio_title">Press audio button to play the challenge</LocalizedString>
          <LocalizedString ElementType="UxElement"  StringId="captchatype_audio_help"> Enter the characters you hear</LocalizedString>
          <LocalizedString ElementType="ErrorMessage"  StringId="charsnotmatched_error"> The characters did not match for CAPTCHA challenge. Please try again</LocalizedString>
          <LocalizedString ElementType="ErrorMessage"  StringId="api_error"> Api error on CAPTCHA control</LocalizedString>
          <LocalizedString ElementType="UxElement"  StringId="captcha_resolved"> Success!</LocalizedString>
          <LocalizedString ElementType="DisplayControl" ElementId="captchaControlChallengeCode" StringId="DisplayName">Help us beat the bots</LocalizedString>
        </LocalizedStrings>
      </LocalizedResources>

Sonraki adımlar

Yerelleştirme örnekleri için aşağıdaki makalelere bakın: