mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
fix(auth): close the MFA policy lockout and add self-service enrollment (#531)
Fixes #529 (opened investigating #515). Setting MFA policy to "required"/"admins only" saved regardless of whether the mfa enterprise feature was licensed, and there was no enrollment UI at all, so any instance that flipped the toggle locked every unenrolled user out with no way back in. The login page and Settings save also both collapsed the resulting error into a generic message, hiding the real reason. - Reject saving mfaPolicy to admins_only/required server-side unless mfa is licensed - Surface the specific server error on login and on a failed settings save instead of a generic fallback - Add a self-service two-factor authentication enrollment flow (QR code, manual entry, recovery codes, verify, disable) so a licensed admin can actually satisfy the policy before it's enforced - Fix a pending-enrollment dead end, silent error swallowing in verify/disable, and a silent clipboard-copy failure on the recovery codes screen - Add the integration test that actually proves the fix: a real login attempt returns 403 MFA_ENROLLMENT_REQUIRED
This commit is contained in:
@@ -3286,6 +3286,28 @@ export const ar: TranslationKeys = {
|
||||
currentPasswordIncorrect: "كلمة المرور الحالية غير صحيحة",
|
||||
changePasswordButton: "تغيير كلمة المرور",
|
||||
loginAttemptLimitNote: "يمكن ضبط حدود محاولات تسجيل الدخول في إعدادات النظام.",
|
||||
twoFactorHeading: "المصادقة الثنائية",
|
||||
twoFactorDescription: "أضِف طبقة حماية إضافية إلى حسابك باستخدام تطبيق مصادقة.",
|
||||
twoFactorEnabledStatus: "المصادقة الثنائية مفعّلة.",
|
||||
twoFactorDisabledStatus: "المصادقة الثنائية غير مفعّلة.",
|
||||
enableTwoFactorButton: "تفعيل المصادقة الثنائية",
|
||||
disableTwoFactorButton: "تعطيل المصادقة الثنائية",
|
||||
twoFactorScanQr:
|
||||
"امسح رمز QR هذا بتطبيق المصادقة الخاص بك (مثل Google Authenticator أو Authy أو 1Password).",
|
||||
twoFactorManualEntry: "تعذّر مسح الرمز؟ أدخل هذا المفتاح يدويًا:",
|
||||
twoFactorRecoveryCodesHeading: "رموز الاسترداد",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"احفظ هذه الرموز في مكان آمن. يمكن استخدام كل رمز مرة واحدة لتسجيل الدخول إذا فقدت الوصول إلى تطبيق المصادقة.",
|
||||
twoFactorCopyRecoveryCodes: "نسخ الرموز",
|
||||
twoFactorCodesCopied: "تم النسخ",
|
||||
twoFactorCopyFailed: "تعذّر النسخ تلقائيًا. حدد الرموز أعلاه وانسخها يدويًا.",
|
||||
twoFactorEnterCode: "أدخل الرمز المكوّن من 6 أرقام من تطبيقك لتأكيد الإعداد.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "تأكيد وتفعيل",
|
||||
twoFactorCancelButton: "إلغاء",
|
||||
twoFactorEnableSuccess: "المصادقة الثنائية مفعّلة الآن.",
|
||||
twoFactorDisableSuccess: "تم تعطيل المصادقة الثنائية.",
|
||||
twoFactorDisablePrompt: "أدخل رمز المصادقة الحالي لتعطيل المصادقة الثنائية.",
|
||||
adminHeading: "إعدادات أمان المسؤول",
|
||||
adminDescription: "إعدادات سياسة الأمان للمؤسسات. تنطبق على جميع المستخدمين.",
|
||||
sessionIdleTimeout: "مهلة الجلسة الخاملة (بالدقائق)",
|
||||
|
||||
@@ -3316,6 +3316,32 @@ export const de: TranslationKeys = {
|
||||
changePasswordButton: "Passwort ändern",
|
||||
loginAttemptLimitNote:
|
||||
"Anmeldeversuchslimits können in den Systemeinstellungen konfiguriert werden.",
|
||||
twoFactorHeading: "Zwei-Faktor-Authentifizierung",
|
||||
twoFactorDescription: "Schützen Sie Ihr Konto zusätzlich mit einer Authentifizierungs-App.",
|
||||
twoFactorEnabledStatus: "Zwei-Faktor-Authentifizierung ist aktiviert.",
|
||||
twoFactorDisabledStatus: "Zwei-Faktor-Authentifizierung ist nicht aktiviert.",
|
||||
enableTwoFactorButton: "Zwei-Faktor-Authentifizierung aktivieren",
|
||||
disableTwoFactorButton: "Zwei-Faktor-Authentifizierung deaktivieren",
|
||||
twoFactorScanQr:
|
||||
"Scannen Sie diesen QR-Code mit Ihrer Authentifizierungs-App (zum Beispiel Google Authenticator, Authy oder 1Password).",
|
||||
twoFactorManualEntry:
|
||||
"Code lässt sich nicht scannen? Geben Sie diesen Schlüssel manuell ein:",
|
||||
twoFactorRecoveryCodesHeading: "Wiederherstellungscodes",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Bewahren Sie diese Codes sicher auf. Jeder Code lässt sich einmal verwenden, um sich anzumelden, falls Sie den Zugriff auf Ihre Authentifizierungs-App verlieren.",
|
||||
twoFactorCopyRecoveryCodes: "Codes kopieren",
|
||||
twoFactorCodesCopied: "Kopiert",
|
||||
twoFactorCopyFailed:
|
||||
"Automatisches Kopieren fehlgeschlagen. Wählen Sie die Codes oben aus und kopieren Sie sie manuell.",
|
||||
twoFactorEnterCode:
|
||||
"Geben Sie den 6-stelligen Code aus Ihrer App ein, um die Einrichtung zu bestätigen.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Bestätigen und aktivieren",
|
||||
twoFactorCancelButton: "Abbrechen",
|
||||
twoFactorEnableSuccess: "Zwei-Faktor-Authentifizierung ist jetzt aktiviert.",
|
||||
twoFactorDisableSuccess: "Zwei-Faktor-Authentifizierung wurde deaktiviert.",
|
||||
twoFactorDisablePrompt:
|
||||
"Geben Sie Ihren aktuellen Code aus der Authentifizierungs-App ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren.",
|
||||
adminHeading: "Admin-Sicherheitseinstellungen",
|
||||
adminDescription: "Enterprise-Sicherheitsrichtlinien. Diese gelten für alle Benutzer.",
|
||||
sessionIdleTimeout: "Sitzungszeitlimit bei Inaktivität (Minuten)",
|
||||
|
||||
@@ -3252,6 +3252,31 @@ export const en = {
|
||||
currentPasswordIncorrect: "Current password is incorrect",
|
||||
changePasswordButton: "Change Password",
|
||||
loginAttemptLimitNote: "Login attempt limits can be configured in System Settings.",
|
||||
twoFactorHeading: "Two-Factor Authentication",
|
||||
twoFactorDescription:
|
||||
"Add an extra layer of security to your account with an authenticator app.",
|
||||
twoFactorEnabledStatus: "Two-factor authentication is enabled.",
|
||||
twoFactorDisabledStatus: "Two-factor authentication is not enabled.",
|
||||
enableTwoFactorButton: "Enable two-factor authentication",
|
||||
disableTwoFactorButton: "Disable two-factor authentication",
|
||||
twoFactorScanQr:
|
||||
"Scan this QR code with your authenticator app (such as Google Authenticator, Authy, or 1Password).",
|
||||
twoFactorManualEntry: "Can't scan the code? Enter this key manually:",
|
||||
twoFactorRecoveryCodesHeading: "Recovery codes",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Save these codes somewhere safe. Each one can be used once to sign in if you lose access to your authenticator app.",
|
||||
twoFactorCopyRecoveryCodes: "Copy codes",
|
||||
twoFactorCodesCopied: "Copied",
|
||||
twoFactorCopyFailed:
|
||||
"Couldn't copy automatically. Select the codes above and copy them manually.",
|
||||
twoFactorEnterCode: "Enter the 6-digit code from your app to confirm setup.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Confirm and enable",
|
||||
twoFactorCancelButton: "Cancel",
|
||||
twoFactorEnableSuccess: "Two-factor authentication is now enabled.",
|
||||
twoFactorDisableSuccess: "Two-factor authentication has been disabled.",
|
||||
twoFactorDisablePrompt:
|
||||
"Enter your current authenticator code to disable two-factor authentication.",
|
||||
adminHeading: "Admin Security Settings",
|
||||
adminDescription: "Enterprise security policy settings. These apply to all users.",
|
||||
sessionIdleTimeout: "Session Idle Timeout (minutes)",
|
||||
|
||||
@@ -3296,6 +3296,32 @@ export const es: TranslationKeys = {
|
||||
changePasswordButton: "Cambiar contraseña",
|
||||
loginAttemptLimitNote:
|
||||
"Los límites de intentos de inicio de sesión se pueden configurar en Configuración del sistema.",
|
||||
twoFactorHeading: "Autenticación en dos pasos",
|
||||
twoFactorDescription:
|
||||
"Añade una capa extra de seguridad a tu cuenta con una app de autenticación.",
|
||||
twoFactorEnabledStatus: "La autenticación en dos pasos está activada.",
|
||||
twoFactorDisabledStatus: "La autenticación en dos pasos no está activada.",
|
||||
enableTwoFactorButton: "Activar la autenticación en dos pasos",
|
||||
disableTwoFactorButton: "Desactivar la autenticación en dos pasos",
|
||||
twoFactorScanQr:
|
||||
"Escanea este código QR con tu app de autenticación (como Google Authenticator, Authy o 1Password).",
|
||||
twoFactorManualEntry: "¿No puedes escanear el código? Introduce esta clave manualmente:",
|
||||
twoFactorRecoveryCodesHeading: "Códigos de recuperación",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Guarda estos códigos en un lugar seguro. Cada uno se puede usar una vez para iniciar sesión si pierdes el acceso a tu app de autenticación.",
|
||||
twoFactorCopyRecoveryCodes: "Copiar códigos",
|
||||
twoFactorCodesCopied: "Copiado",
|
||||
twoFactorCopyFailed:
|
||||
"No se pudieron copiar automáticamente. Selecciona los códigos de arriba y cópialos manualmente.",
|
||||
twoFactorEnterCode:
|
||||
"Introduce el código de 6 dígitos de tu app para confirmar la configuración.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Confirmar y activar",
|
||||
twoFactorCancelButton: "Cancelar",
|
||||
twoFactorEnableSuccess: "La autenticación en dos pasos ya está activada.",
|
||||
twoFactorDisableSuccess: "La autenticación en dos pasos se ha desactivado.",
|
||||
twoFactorDisablePrompt:
|
||||
"Introduce tu código de autenticación actual para desactivar la autenticación en dos pasos.",
|
||||
adminHeading: "Configuración de seguridad del administrador",
|
||||
adminDescription:
|
||||
"Configuración de políticas de seguridad empresarial. Se aplica a todos los usuarios.",
|
||||
|
||||
@@ -3322,6 +3322,32 @@ export const fr: TranslationKeys = {
|
||||
changePasswordButton: "Changer le mot de passe",
|
||||
loginAttemptLimitNote:
|
||||
"Les limites de tentatives de connexion peuvent être configurées dans les Paramètres système.",
|
||||
twoFactorHeading: "Authentification à deux facteurs",
|
||||
twoFactorDescription:
|
||||
"Ajoutez une couche de sécurité supplémentaire à votre compte avec une application d'authentification.",
|
||||
twoFactorEnabledStatus: "L'authentification à deux facteurs est activée.",
|
||||
twoFactorDisabledStatus: "L'authentification à deux facteurs n'est pas activée.",
|
||||
enableTwoFactorButton: "Activer l'authentification à deux facteurs",
|
||||
disableTwoFactorButton: "Désactiver l'authentification à deux facteurs",
|
||||
twoFactorScanQr:
|
||||
"Scannez ce QR code avec votre application d'authentification (par exemple Google Authenticator, Authy ou 1Password).",
|
||||
twoFactorManualEntry: "Impossible de scanner le code ? Saisissez cette clé manuellement :",
|
||||
twoFactorRecoveryCodesHeading: "Codes de récupération",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Conservez ces codes en lieu sûr. Chacun peut servir une fois à vous connecter si vous perdez l'accès à votre application d'authentification.",
|
||||
twoFactorCopyRecoveryCodes: "Copier les codes",
|
||||
twoFactorCodesCopied: "Copié",
|
||||
twoFactorCopyFailed:
|
||||
"Impossible de copier automatiquement. Sélectionnez les codes ci-dessus et copiez-les manuellement.",
|
||||
twoFactorEnterCode:
|
||||
"Saisissez le code à 6 chiffres de votre application pour confirmer la configuration.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Confirmer et activer",
|
||||
twoFactorCancelButton: "Annuler",
|
||||
twoFactorEnableSuccess: "L'authentification à deux facteurs est maintenant activée.",
|
||||
twoFactorDisableSuccess: "L'authentification à deux facteurs a été désactivée.",
|
||||
twoFactorDisablePrompt:
|
||||
"Saisissez votre code d'authentification actuel pour désactiver l'authentification à deux facteurs.",
|
||||
adminHeading: "Paramètres de sécurité admin",
|
||||
adminDescription:
|
||||
"Paramètres de politique de sécurité entreprise. S'appliquent à tous les utilisateurs.",
|
||||
|
||||
@@ -3116,6 +3116,29 @@ export const hi: TranslationKeys = {
|
||||
currentPasswordIncorrect: "मौजूदा पासवर्ड गलत है",
|
||||
changePasswordButton: "पासवर्ड बदलें",
|
||||
loginAttemptLimitNote: "लॉगिन प्रयास सीमाएं सिस्टम सेटिंग्स में कॉन्फ़िगर की जा सकती हैं।",
|
||||
twoFactorHeading: "द्वि-कारक प्रमाणीकरण",
|
||||
twoFactorDescription: "ऑथेंटिकेटर ऐप के साथ अपने खाते में सुरक्षा की एक अतिरिक्त परत जोड़ें।",
|
||||
twoFactorEnabledStatus: "द्वि-कारक प्रमाणीकरण सक्षम है।",
|
||||
twoFactorDisabledStatus: "द्वि-कारक प्रमाणीकरण सक्षम नहीं है।",
|
||||
enableTwoFactorButton: "द्वि-कारक प्रमाणीकरण सक्षम करें",
|
||||
disableTwoFactorButton: "द्वि-कारक प्रमाणीकरण अक्षम करें",
|
||||
twoFactorScanQr:
|
||||
"इस QR कोड को अपने ऑथेंटिकेटर ऐप (जैसे Google Authenticator, Authy या 1Password) से स्कैन करें।",
|
||||
twoFactorManualEntry: "कोड स्कैन नहीं कर पा रहे? यह कुंजी मैन्युअल रूप से दर्ज करें:",
|
||||
twoFactorRecoveryCodesHeading: "रिकवरी कोड",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"इन कोड को कहीं सुरक्षित रूप से सहेजें। अपने ऑथेंटिकेटर ऐप तक पहुंच खोने पर हर कोड का उपयोग साइन इन करने के लिए एक बार किया जा सकता है।",
|
||||
twoFactorCopyRecoveryCodes: "कोड कॉपी करें",
|
||||
twoFactorCodesCopied: "कॉपी किया गया",
|
||||
twoFactorCopyFailed:
|
||||
"स्वचालित रूप से कॉपी नहीं हो सका। ऊपर दिए गए कोड चुनें और उन्हें मैन्युअल रूप से कॉपी करें।",
|
||||
twoFactorEnterCode: "सेटअप की पुष्टि के लिए अपने ऐप से 6-अंकों का कोड दर्ज करें।",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "पुष्टि करें और सक्षम करें",
|
||||
twoFactorCancelButton: "रद्द करें",
|
||||
twoFactorEnableSuccess: "द्वि-कारक प्रमाणीकरण अब सक्षम है।",
|
||||
twoFactorDisableSuccess: "द्वि-कारक प्रमाणीकरण अक्षम कर दिया गया है।",
|
||||
twoFactorDisablePrompt: "द्वि-कारक प्रमाणीकरण अक्षम करने के लिए अपना मौजूदा ऑथेंटिकेटर कोड दर्ज करें।",
|
||||
adminHeading: "एडमिन सुरक्षा सेटिंग्स",
|
||||
adminDescription: "एंटरप्राइज़ सुरक्षा नीति सेटिंग्स। ये सभी उपयोगकर्ताओं पर लागू होती हैं।",
|
||||
sessionIdleTimeout: "सत्र निष्क्रियता टाइमआउट (मिनट)",
|
||||
|
||||
@@ -3301,6 +3301,31 @@ export const id: TranslationKeys = {
|
||||
currentPasswordIncorrect: "Kata sandi saat ini salah",
|
||||
changePasswordButton: "Ubah Kata Sandi",
|
||||
loginAttemptLimitNote: "Batas percobaan login dapat dikonfigurasi di Pengaturan Sistem.",
|
||||
twoFactorHeading: "Autentikasi Dua Faktor",
|
||||
twoFactorDescription:
|
||||
"Tambahkan lapisan keamanan ekstra ke akun Anda dengan aplikasi autentikator.",
|
||||
twoFactorEnabledStatus: "Autentikasi dua faktor aktif.",
|
||||
twoFactorDisabledStatus: "Autentikasi dua faktor tidak aktif.",
|
||||
enableTwoFactorButton: "Aktifkan autentikasi dua faktor",
|
||||
disableTwoFactorButton: "Nonaktifkan autentikasi dua faktor",
|
||||
twoFactorScanQr:
|
||||
"Pindai kode QR ini dengan aplikasi autentikator Anda (seperti Google Authenticator, Authy, atau 1Password).",
|
||||
twoFactorManualEntry: "Tidak bisa memindai kode? Masukkan kunci ini secara manual:",
|
||||
twoFactorRecoveryCodesHeading: "Kode pemulihan",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Simpan kode ini di tempat yang aman. Setiap kode dapat digunakan sekali untuk masuk jika Anda kehilangan akses ke aplikasi autentikator.",
|
||||
twoFactorCopyRecoveryCodes: "Salin kode",
|
||||
twoFactorCodesCopied: "Disalin",
|
||||
twoFactorCopyFailed:
|
||||
"Tidak dapat menyalin secara otomatis. Pilih kode di atas dan salin secara manual.",
|
||||
twoFactorEnterCode: "Masukkan kode 6 digit dari aplikasi Anda untuk mengonfirmasi penyiapan.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Konfirmasi dan aktifkan",
|
||||
twoFactorCancelButton: "Batal",
|
||||
twoFactorEnableSuccess: "Autentikasi dua faktor kini aktif.",
|
||||
twoFactorDisableSuccess: "Autentikasi dua faktor telah dinonaktifkan.",
|
||||
twoFactorDisablePrompt:
|
||||
"Masukkan kode autentikator Anda saat ini untuk menonaktifkan autentikasi dua faktor.",
|
||||
adminHeading: "Pengaturan Keamanan Admin",
|
||||
adminDescription: "Pengaturan kebijakan keamanan enterprise. Berlaku untuk semua pengguna.",
|
||||
sessionIdleTimeout: "Batas Waktu Sesi Tidak Aktif (menit)",
|
||||
|
||||
@@ -3311,6 +3311,33 @@ export const it: TranslationKeys = {
|
||||
changePasswordButton: "Cambia password",
|
||||
loginAttemptLimitNote:
|
||||
"I limiti dei tentativi di accesso possono essere configurati nelle Impostazioni di sistema.",
|
||||
twoFactorHeading: "Autenticazione a due fattori",
|
||||
twoFactorDescription:
|
||||
"Aggiungi un ulteriore livello di sicurezza al tuo account con un'app di autenticazione.",
|
||||
twoFactorEnabledStatus: "L'autenticazione a due fattori è attiva.",
|
||||
twoFactorDisabledStatus: "L'autenticazione a due fattori non è attiva.",
|
||||
enableTwoFactorButton: "Attiva l'autenticazione a due fattori",
|
||||
disableTwoFactorButton: "Disattiva l'autenticazione a due fattori",
|
||||
twoFactorScanQr:
|
||||
"Scansiona questo codice QR con la tua app di autenticazione (come Google Authenticator, Authy o 1Password).",
|
||||
twoFactorManualEntry:
|
||||
"Non riesci a scansionare il codice? Inserisci questa chiave manualmente:",
|
||||
twoFactorRecoveryCodesHeading: "Codici di recupero",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Conserva questi codici in un luogo sicuro. Ognuno può essere usato una sola volta per accedere se perdi l'accesso alla tua app di autenticazione.",
|
||||
twoFactorCopyRecoveryCodes: "Copia codici",
|
||||
twoFactorCodesCopied: "Copiati",
|
||||
twoFactorCopyFailed:
|
||||
"Impossibile copiare automaticamente. Seleziona i codici sopra e copiali manualmente.",
|
||||
twoFactorEnterCode:
|
||||
"Inserisci il codice a 6 cifre della tua app per confermare la configurazione.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Conferma e attiva",
|
||||
twoFactorCancelButton: "Annulla",
|
||||
twoFactorEnableSuccess: "L'autenticazione a due fattori è ora attiva.",
|
||||
twoFactorDisableSuccess: "L'autenticazione a due fattori è stata disattivata.",
|
||||
twoFactorDisablePrompt:
|
||||
"Inserisci il codice attuale della tua app di autenticazione per disattivare l'autenticazione a due fattori.",
|
||||
adminHeading: "Impostazioni di sicurezza amministratore",
|
||||
adminDescription:
|
||||
"Impostazioni delle policy di sicurezza aziendale. Si applicano a tutti gli utenti.",
|
||||
|
||||
@@ -3259,6 +3259,29 @@ export const ja: TranslationKeys = {
|
||||
currentPasswordIncorrect: "現在のパスワードが正しくありません",
|
||||
changePasswordButton: "パスワード変更",
|
||||
loginAttemptLimitNote: "ログイン試行制限はシステム設定で構成できます。",
|
||||
twoFactorHeading: "2 要素認証",
|
||||
twoFactorDescription: "認証アプリを使って、アカウントにセキュリティを追加します。",
|
||||
twoFactorEnabledStatus: "2 要素認証は有効になっています。",
|
||||
twoFactorDisabledStatus: "2 要素認証は有効になっていません。",
|
||||
enableTwoFactorButton: "2 要素認証を有効にする",
|
||||
disableTwoFactorButton: "2 要素認証を無効にする",
|
||||
twoFactorScanQr:
|
||||
"認証アプリ(Google Authenticator、Authy、1Password など)でこの QR コードをスキャンしてください。",
|
||||
twoFactorManualEntry: "コードをスキャンできない場合は、このキーを手動で入力してください:",
|
||||
twoFactorRecoveryCodesHeading: "リカバリーコード",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"これらのコードを安全な場所に保管してください。認証アプリにアクセスできなくなった場合、各コードを 1 回だけサインインに使用できます。",
|
||||
twoFactorCopyRecoveryCodes: "コードをコピー",
|
||||
twoFactorCodesCopied: "コピーしました",
|
||||
twoFactorCopyFailed:
|
||||
"自動的にコピーできませんでした。上のコードを選択して手動でコピーしてください。",
|
||||
twoFactorEnterCode: "設定を確定するには、アプリに表示される 6 桁のコードを入力してください。",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "確定して有効にする",
|
||||
twoFactorCancelButton: "キャンセル",
|
||||
twoFactorEnableSuccess: "2 要素認証が有効になりました。",
|
||||
twoFactorDisableSuccess: "2 要素認証が無効になりました。",
|
||||
twoFactorDisablePrompt: "2 要素認証を無効にするには、現在の認証コードを入力してください。",
|
||||
adminHeading: "管理者セキュリティ設定",
|
||||
adminDescription:
|
||||
"エンタープライズセキュリティポリシー設定。すべてのユーザーに適用されます。",
|
||||
|
||||
@@ -3239,6 +3239,29 @@ export const ko: TranslationKeys = {
|
||||
currentPasswordIncorrect: "현재 비밀번호가 올바르지 않습니다",
|
||||
changePasswordButton: "비밀번호 변경",
|
||||
loginAttemptLimitNote: "로그인 시도 제한은 시스템 설정에서 구성할 수 있습니다.",
|
||||
twoFactorHeading: "2단계 인증",
|
||||
twoFactorDescription: "인증 앱으로 계정에 보안 단계를 추가하세요.",
|
||||
twoFactorEnabledStatus: "2단계 인증이 활성화되어 있습니다.",
|
||||
twoFactorDisabledStatus: "2단계 인증이 활성화되어 있지 않습니다.",
|
||||
enableTwoFactorButton: "2단계 인증 활성화",
|
||||
disableTwoFactorButton: "2단계 인증 비활성화",
|
||||
twoFactorScanQr:
|
||||
"인증 앱(Google Authenticator, Authy, 1Password 등)으로 이 QR 코드를 스캔하세요.",
|
||||
twoFactorManualEntry: "코드를 스캔할 수 없나요? 이 키를 직접 입력하세요:",
|
||||
twoFactorRecoveryCodesHeading: "복구 코드",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"이 코드를 안전한 곳에 보관하세요. 인증 앱에 접근할 수 없을 때 각 코드는 로그인에 한 번씩 사용할 수 있습니다.",
|
||||
twoFactorCopyRecoveryCodes: "코드 복사",
|
||||
twoFactorCodesCopied: "복사되었습니다",
|
||||
twoFactorCopyFailed:
|
||||
"자동으로 복사하지 못했습니다. 위의 코드를 선택하여 수동으로 복사하세요.",
|
||||
twoFactorEnterCode: "설정을 확인하려면 앱에 표시된 6자리 코드를 입력하세요.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "확인 후 활성화",
|
||||
twoFactorCancelButton: "취소",
|
||||
twoFactorEnableSuccess: "2단계 인증이 활성화되었습니다.",
|
||||
twoFactorDisableSuccess: "2단계 인증이 비활성화되었습니다.",
|
||||
twoFactorDisablePrompt: "2단계 인증을 비활성화하려면 현재 인증 코드를 입력하세요.",
|
||||
adminHeading: "관리자 보안 설정",
|
||||
adminDescription: "엔터프라이즈 보안 정책 설정입니다. 모든 사용자에게 적용됩니다.",
|
||||
sessionIdleTimeout: "세션 유휴 시간 제한(분)",
|
||||
|
||||
@@ -3309,6 +3309,31 @@ export const nl: TranslationKeys = {
|
||||
currentPasswordIncorrect: "Huidig wachtwoord is onjuist",
|
||||
changePasswordButton: "Wachtwoord wijzigen",
|
||||
loginAttemptLimitNote: "Inlogpogingslimieten kun je instellen bij Systeeminstellingen.",
|
||||
twoFactorHeading: "Tweefactorauthenticatie",
|
||||
twoFactorDescription:
|
||||
"Voeg een extra beveiligingslaag toe aan je account met een authenticator-app.",
|
||||
twoFactorEnabledStatus: "Tweefactorauthenticatie is ingeschakeld.",
|
||||
twoFactorDisabledStatus: "Tweefactorauthenticatie is niet ingeschakeld.",
|
||||
enableTwoFactorButton: "Tweefactorauthenticatie inschakelen",
|
||||
disableTwoFactorButton: "Tweefactorauthenticatie uitschakelen",
|
||||
twoFactorScanQr:
|
||||
"Scan deze QR-code met je authenticator-app (zoals Google Authenticator, Authy of 1Password).",
|
||||
twoFactorManualEntry: "Kun je de code niet scannen? Voer deze sleutel handmatig in:",
|
||||
twoFactorRecoveryCodesHeading: "Herstelcodes",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Bewaar deze codes op een veilige plek. Elke code kun je eenmalig gebruiken om in te loggen als je geen toegang meer hebt tot je authenticator-app.",
|
||||
twoFactorCopyRecoveryCodes: "Codes kopiëren",
|
||||
twoFactorCodesCopied: "Gekopieerd",
|
||||
twoFactorCopyFailed:
|
||||
"Automatisch kopiëren is mislukt. Selecteer de codes hierboven en kopieer ze handmatig.",
|
||||
twoFactorEnterCode: "Voer de 6-cijferige code uit je app in om de installatie te bevestigen.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Bevestigen en inschakelen",
|
||||
twoFactorCancelButton: "Annuleren",
|
||||
twoFactorEnableSuccess: "Tweefactorauthenticatie is nu ingeschakeld.",
|
||||
twoFactorDisableSuccess: "Tweefactorauthenticatie is uitgeschakeld.",
|
||||
twoFactorDisablePrompt:
|
||||
"Voer je huidige authenticator-code in om tweefactorauthenticatie uit te schakelen.",
|
||||
adminHeading: "Beveiligingsinstellingen voor beheerders",
|
||||
adminDescription:
|
||||
"Enterprise-beveiligingsbeleid. Deze instellingen gelden voor alle gebruikers.",
|
||||
|
||||
@@ -3308,6 +3308,31 @@ export const pl: TranslationKeys = {
|
||||
changePasswordButton: "Zmień hasło",
|
||||
loginAttemptLimitNote:
|
||||
"Limity prób logowania można skonfigurować w Ustawieniach systemowych.",
|
||||
twoFactorHeading: "Uwierzytelnianie dwuskładnikowe",
|
||||
twoFactorDescription:
|
||||
"Zwiększ bezpieczeństwo konta o dodatkową warstwę dzięki aplikacji uwierzytelniającej.",
|
||||
twoFactorEnabledStatus: "Uwierzytelnianie dwuskładnikowe jest włączone.",
|
||||
twoFactorDisabledStatus: "Uwierzytelnianie dwuskładnikowe jest wyłączone.",
|
||||
enableTwoFactorButton: "Włącz uwierzytelnianie dwuskładnikowe",
|
||||
disableTwoFactorButton: "Wyłącz uwierzytelnianie dwuskładnikowe",
|
||||
twoFactorScanQr:
|
||||
"Zeskanuj ten kod QR aplikacją uwierzytelniającą (np. Google Authenticator, Authy lub 1Password).",
|
||||
twoFactorManualEntry: "Nie możesz zeskanować kodu? Wprowadź ten klucz ręcznie:",
|
||||
twoFactorRecoveryCodesHeading: "Kody odzyskiwania",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Zapisz te kody w bezpiecznym miejscu. Każdego z nich można użyć jednorazowo do zalogowania się, jeśli utracisz dostęp do aplikacji uwierzytelniającej.",
|
||||
twoFactorCopyRecoveryCodes: "Kopiuj kody",
|
||||
twoFactorCodesCopied: "Skopiowano",
|
||||
twoFactorCopyFailed:
|
||||
"Nie udało się skopiować automatycznie. Zaznacz kody powyżej i skopiuj je ręcznie.",
|
||||
twoFactorEnterCode: "Wprowadź 6-cyfrowy kod z aplikacji, aby potwierdzić konfigurację.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Potwierdź i włącz",
|
||||
twoFactorCancelButton: "Anuluj",
|
||||
twoFactorEnableSuccess: "Uwierzytelnianie dwuskładnikowe jest teraz włączone.",
|
||||
twoFactorDisableSuccess: "Uwierzytelnianie dwuskładnikowe zostało wyłączone.",
|
||||
twoFactorDisablePrompt:
|
||||
"Wprowadź bieżący kod z aplikacji uwierzytelniającej, aby wyłączyć uwierzytelnianie dwuskładnikowe.",
|
||||
adminHeading: "Ustawienia zabezpieczeń administratora",
|
||||
adminDescription:
|
||||
"Ustawienia polityki bezpieczeństwa dla organizacji. Dotyczą wszystkich użytkowników.",
|
||||
|
||||
@@ -3305,6 +3305,32 @@ export const ptBR: TranslationKeys = {
|
||||
changePasswordButton: "Alterar senha",
|
||||
loginAttemptLimitNote:
|
||||
"Os limites de tentativas de login podem ser configurados nas Configurações do sistema.",
|
||||
twoFactorHeading: "Autenticação de dois fatores",
|
||||
twoFactorDescription:
|
||||
"Adicione uma camada extra de segurança à sua conta com um aplicativo autenticador.",
|
||||
twoFactorEnabledStatus: "A autenticação de dois fatores está ativada.",
|
||||
twoFactorDisabledStatus: "A autenticação de dois fatores não está ativada.",
|
||||
enableTwoFactorButton: "Ativar autenticação de dois fatores",
|
||||
disableTwoFactorButton: "Desativar autenticação de dois fatores",
|
||||
twoFactorScanQr:
|
||||
"Escaneie este código QR com seu aplicativo autenticador (como Google Authenticator, Authy ou 1Password).",
|
||||
twoFactorManualEntry: "Não consegue escanear o código? Digite esta chave manualmente:",
|
||||
twoFactorRecoveryCodesHeading: "Códigos de recuperação",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Guarde estes códigos em um local seguro. Cada um pode ser usado uma vez para entrar caso você perca o acesso ao seu aplicativo autenticador.",
|
||||
twoFactorCopyRecoveryCodes: "Copiar códigos",
|
||||
twoFactorCodesCopied: "Copiado",
|
||||
twoFactorCopyFailed:
|
||||
"Não foi possível copiar automaticamente. Selecione os códigos acima e copie-os manualmente.",
|
||||
twoFactorEnterCode:
|
||||
"Digite o código de 6 dígitos do seu aplicativo para confirmar a configuração.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Confirmar e ativar",
|
||||
twoFactorCancelButton: "Cancelar",
|
||||
twoFactorEnableSuccess: "A autenticação de dois fatores agora está ativada.",
|
||||
twoFactorDisableSuccess: "A autenticação de dois fatores foi desativada.",
|
||||
twoFactorDisablePrompt:
|
||||
"Digite seu código de autenticação atual para desativar a autenticação de dois fatores.",
|
||||
adminHeading: "Configurações de segurança do administrador",
|
||||
adminDescription:
|
||||
"Configurações de política de segurança empresarial. Aplicam-se a todos os usuários.",
|
||||
|
||||
@@ -3304,6 +3304,31 @@ export const ru: TranslationKeys = {
|
||||
currentPasswordIncorrect: "Текущий пароль неверен",
|
||||
changePasswordButton: "Изменить пароль",
|
||||
loginAttemptLimitNote: "Лимиты попыток входа можно настроить в Системных настройках.",
|
||||
twoFactorHeading: "Двухфакторная аутентификация",
|
||||
twoFactorDescription:
|
||||
"Добавьте дополнительный уровень защиты аккаунта с помощью приложения-аутентификатора.",
|
||||
twoFactorEnabledStatus: "Двухфакторная аутентификация включена.",
|
||||
twoFactorDisabledStatus: "Двухфакторная аутентификация отключена.",
|
||||
enableTwoFactorButton: "Включить двухфакторную аутентификацию",
|
||||
disableTwoFactorButton: "Отключить двухфакторную аутентификацию",
|
||||
twoFactorScanQr:
|
||||
"Отсканируйте этот QR-код приложением-аутентификатором (например, Google Authenticator, Authy или 1Password).",
|
||||
twoFactorManualEntry: "Не удаётся отсканировать код? Введите этот ключ вручную:",
|
||||
twoFactorRecoveryCodesHeading: "Коды восстановления",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Сохраните эти коды в надёжном месте. Каждый из них можно использовать один раз для входа, если вы потеряете доступ к приложению-аутентификатору.",
|
||||
twoFactorCopyRecoveryCodes: "Копировать коды",
|
||||
twoFactorCodesCopied: "Скопировано",
|
||||
twoFactorCopyFailed:
|
||||
"Не удалось скопировать автоматически. Выделите коды выше и скопируйте их вручную.",
|
||||
twoFactorEnterCode: "Введите 6-значный код из приложения, чтобы подтвердить настройку.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Подтвердить и включить",
|
||||
twoFactorCancelButton: "Отмена",
|
||||
twoFactorEnableSuccess: "Двухфакторная аутентификация включена.",
|
||||
twoFactorDisableSuccess: "Двухфакторная аутентификация отключена.",
|
||||
twoFactorDisablePrompt:
|
||||
"Введите текущий код из приложения-аутентификатора, чтобы отключить двухфакторную аутентификацию.",
|
||||
adminHeading: "Настройки безопасности администратора",
|
||||
adminDescription: "Корпоративные политики безопасности. Применяются ко всем пользователям.",
|
||||
sessionIdleTimeout: "Тайм-аут бездействия сессии (минуты)",
|
||||
|
||||
@@ -3300,6 +3300,32 @@ export const sv: TranslationKeys = {
|
||||
currentPasswordIncorrect: "Nuvarande lösenord är felaktigt",
|
||||
changePasswordButton: "Byt lösenord",
|
||||
loginAttemptLimitNote: "Inloggningsförsöksgränser kan konfigureras i Systeminställningar.",
|
||||
twoFactorHeading: "Tvåfaktorsautentisering",
|
||||
twoFactorDescription:
|
||||
"Lägg till ett extra säkerhetslager på ditt konto med en autentiseringsapp.",
|
||||
twoFactorEnabledStatus: "Tvåfaktorsautentisering är aktiverad.",
|
||||
twoFactorDisabledStatus: "Tvåfaktorsautentisering är inte aktiverad.",
|
||||
enableTwoFactorButton: "Aktivera tvåfaktorsautentisering",
|
||||
disableTwoFactorButton: "Inaktivera tvåfaktorsautentisering",
|
||||
twoFactorScanQr:
|
||||
"Skanna den här QR-koden med din autentiseringsapp (till exempel Google Authenticator, Authy eller 1Password).",
|
||||
twoFactorManualEntry: "Kan du inte skanna koden? Ange den här nyckeln manuellt:",
|
||||
twoFactorRecoveryCodesHeading: "Återställningskoder",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Spara de här koderna på ett säkert ställe. Var och en kan användas en gång för att logga in om du förlorar åtkomsten till din autentiseringsapp.",
|
||||
twoFactorCopyRecoveryCodes: "Kopiera koder",
|
||||
twoFactorCodesCopied: "Kopierat",
|
||||
twoFactorCopyFailed:
|
||||
"Det gick inte att kopiera automatiskt. Markera koderna ovan och kopiera dem manuellt.",
|
||||
twoFactorEnterCode:
|
||||
"Ange den 6-siffriga koden från din app för att bekräfta konfigurationen.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Bekräfta och aktivera",
|
||||
twoFactorCancelButton: "Avbryt",
|
||||
twoFactorEnableSuccess: "Tvåfaktorsautentisering är nu aktiverad.",
|
||||
twoFactorDisableSuccess: "Tvåfaktorsautentisering har inaktiverats.",
|
||||
twoFactorDisablePrompt:
|
||||
"Ange din nuvarande autentiseringskod för att inaktivera tvåfaktorsautentisering.",
|
||||
adminHeading: "Säkerhetsinställningar för admin",
|
||||
adminDescription: "Säkerhetspolicyinställningar för företag. Gäller alla användare.",
|
||||
sessionIdleTimeout: "Tidsgräns för inaktiv session (minuter)",
|
||||
|
||||
@@ -3269,6 +3269,28 @@ export const th: TranslationKeys = {
|
||||
currentPasswordIncorrect: "รหัสผ่านปัจจุบันไม่ถูกต้อง",
|
||||
changePasswordButton: "เปลี่ยนรหัสผ่าน",
|
||||
loginAttemptLimitNote: "สามารถกำหนดจำนวนครั้งจำกัดการเข้าสู่ระบบได้ในตั้งค่าระบบ",
|
||||
twoFactorHeading: "การยืนยันตัวตนสองปัจจัย",
|
||||
twoFactorDescription: "เพิ่มความปลอดภัยอีกชั้นให้บัญชีของคุณด้วยแอปยืนยันตัวตน",
|
||||
twoFactorEnabledStatus: "เปิดใช้งานการยืนยันตัวตนสองปัจจัยแล้ว",
|
||||
twoFactorDisabledStatus: "ยังไม่ได้เปิดใช้งานการยืนยันตัวตนสองปัจจัย",
|
||||
enableTwoFactorButton: "เปิดใช้งานการยืนยันตัวตนสองปัจจัย",
|
||||
disableTwoFactorButton: "ปิดใช้งานการยืนยันตัวตนสองปัจจัย",
|
||||
twoFactorScanQr:
|
||||
"สแกน QR code นี้ด้วยแอปยืนยันตัวตนของคุณ (เช่น Google Authenticator, Authy หรือ 1Password)",
|
||||
twoFactorManualEntry: "สแกนโค้ดไม่ได้ใช่ไหม กรอกคีย์นี้ด้วยตนเอง:",
|
||||
twoFactorRecoveryCodesHeading: "รหัสกู้คืน",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"เก็บรหัสเหล่านี้ไว้ในที่ปลอดภัย แต่ละรหัสใช้เข้าสู่ระบบได้ครั้งเดียวหากคุณเข้าถึงแอปยืนยันตัวตนไม่ได้",
|
||||
twoFactorCopyRecoveryCodes: "คัดลอกรหัส",
|
||||
twoFactorCodesCopied: "คัดลอกแล้ว",
|
||||
twoFactorCopyFailed: "คัดลอกอัตโนมัติไม่สำเร็จ กรุณาเลือกรหัสด้านบนแล้วคัดลอกด้วยตนเอง",
|
||||
twoFactorEnterCode: "กรอกรหัส 6 หลักจากแอปของคุณเพื่อยืนยันการตั้งค่า",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "ยืนยันและเปิดใช้งาน",
|
||||
twoFactorCancelButton: "ยกเลิก",
|
||||
twoFactorEnableSuccess: "เปิดใช้งานการยืนยันตัวตนสองปัจจัยแล้ว",
|
||||
twoFactorDisableSuccess: "ปิดใช้งานการยืนยันตัวตนสองปัจจัยแล้ว",
|
||||
twoFactorDisablePrompt: "กรอกรหัสจากแอปยืนยันตัวตนปัจจุบันของคุณเพื่อปิดใช้งานการยืนยันตัวตนสองปัจจัย",
|
||||
adminHeading: "การตั้งค่าความปลอดภัยของผู้ดูแล",
|
||||
adminDescription: "การตั้งค่านโยบายความปลอดภัยระดับองค์กร ใช้กับผู้ใช้ทุกคน",
|
||||
sessionIdleTimeout: "หมดเวลาเซสชันเมื่อไม่ใช้งาน (นาที)",
|
||||
|
||||
@@ -3305,6 +3305,31 @@ export const tr: TranslationKeys = {
|
||||
currentPasswordIncorrect: "Mevcut parola yanlış",
|
||||
changePasswordButton: "Parolayı Değiştir",
|
||||
loginAttemptLimitNote: "Giriş deneme limitleri Sistem Ayarlarından yapılandırılabilir.",
|
||||
twoFactorHeading: "İki Faktörlü Kimlik Doğrulama",
|
||||
twoFactorDescription:
|
||||
"Bir kimlik doğrulayıcı uygulamayla hesabınıza ek bir güvenlik katmanı ekleyin.",
|
||||
twoFactorEnabledStatus: "İki faktörlü kimlik doğrulama etkin.",
|
||||
twoFactorDisabledStatus: "İki faktörlü kimlik doğrulama etkin değil.",
|
||||
enableTwoFactorButton: "İki faktörlü kimlik doğrulamayı etkinleştir",
|
||||
disableTwoFactorButton: "İki faktörlü kimlik doğrulamayı devre dışı bırak",
|
||||
twoFactorScanQr:
|
||||
"Bu QR kodunu kimlik doğrulayıcı uygulamanızla (Google Authenticator, Authy veya 1Password gibi) tarayın.",
|
||||
twoFactorManualEntry: "Kodu tarayamıyor musunuz? Bu anahtarı elle girin:",
|
||||
twoFactorRecoveryCodesHeading: "Kurtarma kodları",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Bu kodları güvenli bir yerde saklayın. Kimlik doğrulayıcı uygulamanıza erişimi kaybederseniz her biri giriş yapmak için bir kez kullanılabilir.",
|
||||
twoFactorCopyRecoveryCodes: "Kodları kopyala",
|
||||
twoFactorCodesCopied: "Kopyalandı",
|
||||
twoFactorCopyFailed:
|
||||
"Otomatik olarak kopyalanamadı. Yukarıdaki kodları seçip elle kopyalayın.",
|
||||
twoFactorEnterCode: "Kurulumu onaylamak için uygulamanızdaki 6 haneli kodu girin.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Onayla ve etkinleştir",
|
||||
twoFactorCancelButton: "İptal",
|
||||
twoFactorEnableSuccess: "İki faktörlü kimlik doğrulama artık etkin.",
|
||||
twoFactorDisableSuccess: "İki faktörlü kimlik doğrulama devre dışı bırakıldı.",
|
||||
twoFactorDisablePrompt:
|
||||
"İki faktörlü kimlik doğrulamayı devre dışı bırakmak için mevcut kimlik doğrulayıcı kodunuzu girin.",
|
||||
adminHeading: "Yönetici Güvenlik Ayarları",
|
||||
adminDescription: "Kurumsal güvenlik politikası ayarları. Tüm kullanıcılar için geçerlidir.",
|
||||
sessionIdleTimeout: "Oturum Boşta Kalma Süresi (dakika)",
|
||||
|
||||
@@ -3303,6 +3303,31 @@ export const uk: TranslationKeys = {
|
||||
currentPasswordIncorrect: "Поточний пароль невірний",
|
||||
changePasswordButton: "Змінити пароль",
|
||||
loginAttemptLimitNote: "Ліміти спроб входу можна налаштувати в Системних налаштуваннях.",
|
||||
twoFactorHeading: "Двофакторна автентифікація",
|
||||
twoFactorDescription:
|
||||
"Додайте додатковий рівень захисту облікового запису за допомогою застосунку-автентифікатора.",
|
||||
twoFactorEnabledStatus: "Двофакторну автентифікацію ввімкнено.",
|
||||
twoFactorDisabledStatus: "Двофакторну автентифікацію не ввімкнено.",
|
||||
enableTwoFactorButton: "Увімкнути двофакторну автентифікацію",
|
||||
disableTwoFactorButton: "Вимкнути двофакторну автентифікацію",
|
||||
twoFactorScanQr:
|
||||
"Відскануйте цей QR-код застосунком-автентифікатором (наприклад, Google Authenticator, Authy чи 1Password).",
|
||||
twoFactorManualEntry: "Не вдається відсканувати код? Введіть цей ключ вручну:",
|
||||
twoFactorRecoveryCodesHeading: "Коди відновлення",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Збережіть ці коди в надійному місці. Кожен із них можна використати один раз для входу, якщо ви втратите доступ до застосунку-автентифікатора.",
|
||||
twoFactorCopyRecoveryCodes: "Копіювати коди",
|
||||
twoFactorCodesCopied: "Скопійовано",
|
||||
twoFactorCopyFailed:
|
||||
"Не вдалося скопіювати автоматично. Виділіть коди вище і скопіюйте їх вручну.",
|
||||
twoFactorEnterCode: "Введіть 6-значний код із застосунку, щоб підтвердити налаштування.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Підтвердити та ввімкнути",
|
||||
twoFactorCancelButton: "Скасувати",
|
||||
twoFactorEnableSuccess: "Двофакторну автентифікацію ввімкнено.",
|
||||
twoFactorDisableSuccess: "Двофакторну автентифікацію вимкнено.",
|
||||
twoFactorDisablePrompt:
|
||||
"Введіть поточний код автентифікатора, щоб вимкнути двофакторну автентифікацію.",
|
||||
adminHeading: "Налаштування безпеки адміністратора",
|
||||
adminDescription:
|
||||
"Корпоративні налаштування політики безпеки. Застосовуються до всіх користувачів.",
|
||||
|
||||
@@ -3301,6 +3301,29 @@ export const vi: TranslationKeys = {
|
||||
currentPasswordIncorrect: "Mật khẩu hiện tại không đúng",
|
||||
changePasswordButton: "Đổi mật khẩu",
|
||||
loginAttemptLimitNote: "Giới hạn đăng nhập có thể được cấu hình trong Cài đặt hệ thống.",
|
||||
twoFactorHeading: "Xác thực hai yếu tố",
|
||||
twoFactorDescription: "Thêm một lớp bảo mật cho tài khoản của bạn bằng ứng dụng xác thực.",
|
||||
twoFactorEnabledStatus: "Xác thực hai yếu tố đang được bật.",
|
||||
twoFactorDisabledStatus: "Xác thực hai yếu tố chưa được bật.",
|
||||
enableTwoFactorButton: "Bật xác thực hai yếu tố",
|
||||
disableTwoFactorButton: "Tắt xác thực hai yếu tố",
|
||||
twoFactorScanQr:
|
||||
"Quét mã QR này bằng ứng dụng xác thực của bạn (chẳng hạn Google Authenticator, Authy hoặc 1Password).",
|
||||
twoFactorManualEntry: "Không quét được mã? Nhập khóa này theo cách thủ công:",
|
||||
twoFactorRecoveryCodesHeading: "Mã khôi phục",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"Hãy lưu các mã này ở nơi an toàn. Mỗi mã dùng được một lần để đăng nhập nếu bạn mất quyền truy cập vào ứng dụng xác thực.",
|
||||
twoFactorCopyRecoveryCodes: "Sao chép mã",
|
||||
twoFactorCodesCopied: "Đã sao chép",
|
||||
twoFactorCopyFailed:
|
||||
"Không thể sao chép tự động. Hãy chọn các mã ở trên và sao chép theo cách thủ công.",
|
||||
twoFactorEnterCode: "Nhập mã 6 chữ số từ ứng dụng của bạn để xác nhận thiết lập.",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "Xác nhận và bật",
|
||||
twoFactorCancelButton: "Hủy",
|
||||
twoFactorEnableSuccess: "Xác thực hai yếu tố hiện đã được bật.",
|
||||
twoFactorDisableSuccess: "Xác thực hai yếu tố đã được tắt.",
|
||||
twoFactorDisablePrompt: "Nhập mã xác thực hiện tại của bạn để tắt xác thực hai yếu tố.",
|
||||
adminHeading: "Cài đặt bảo mật quản trị",
|
||||
adminDescription: "Cài đặt chính sách bảo mật doanh nghiệp. Áp dụng cho tất cả người dùng.",
|
||||
sessionIdleTimeout: "Thời gian chờ phiên nhàn rỗi (phút)",
|
||||
|
||||
@@ -3054,6 +3054,28 @@ export const zhCN: TranslationKeys = {
|
||||
currentPasswordIncorrect: "当前密码不正确",
|
||||
changePasswordButton: "修改密码",
|
||||
loginAttemptLimitNote: "登录尝试限制可在系统设置中配置。",
|
||||
twoFactorHeading: "双重身份验证",
|
||||
twoFactorDescription: "使用身份验证器应用为您的账户添加额外一层安全保护。",
|
||||
twoFactorEnabledStatus: "双重身份验证已启用。",
|
||||
twoFactorDisabledStatus: "双重身份验证尚未启用。",
|
||||
enableTwoFactorButton: "启用双重身份验证",
|
||||
disableTwoFactorButton: "禁用双重身份验证",
|
||||
twoFactorScanQr:
|
||||
"使用您的身份验证器应用(如 Google Authenticator、Authy 或 1Password)扫描此二维码。",
|
||||
twoFactorManualEntry: "无法扫描二维码?请手动输入此密钥:",
|
||||
twoFactorRecoveryCodesHeading: "恢复代码",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"请将这些代码妥善保存。如果您无法访问身份验证器应用,每个代码均可用于登录一次。",
|
||||
twoFactorCopyRecoveryCodes: "复制代码",
|
||||
twoFactorCodesCopied: "已复制",
|
||||
twoFactorCopyFailed: "无法自动复制。请选择上方的代码并手动复制。",
|
||||
twoFactorEnterCode: "输入应用中的 6 位数验证码以确认设置。",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "确认并启用",
|
||||
twoFactorCancelButton: "取消",
|
||||
twoFactorEnableSuccess: "双重身份验证现已启用。",
|
||||
twoFactorDisableSuccess: "双重身份验证已禁用。",
|
||||
twoFactorDisablePrompt: "输入您当前的身份验证器验证码以禁用双重身份验证。",
|
||||
adminHeading: "管理员安全设置",
|
||||
adminDescription: "企业安全策略设置。适用于所有用户。",
|
||||
sessionIdleTimeout: "会话空闲超时(分钟)",
|
||||
|
||||
@@ -3054,6 +3054,28 @@ export const zhTW: TranslationKeys = {
|
||||
currentPasswordIncorrect: "目前密碼不正確",
|
||||
changePasswordButton: "變更密碼",
|
||||
loginAttemptLimitNote: "登入嘗試限制可在系統設定中配置。",
|
||||
twoFactorHeading: "兩步驟驗證",
|
||||
twoFactorDescription: "使用驗證器應用程式為您的帳號增加一層額外的安全防護。",
|
||||
twoFactorEnabledStatus: "兩步驟驗證已啟用。",
|
||||
twoFactorDisabledStatus: "兩步驟驗證尚未啟用。",
|
||||
enableTwoFactorButton: "啟用兩步驟驗證",
|
||||
disableTwoFactorButton: "停用兩步驟驗證",
|
||||
twoFactorScanQr:
|
||||
"使用您的驗證器應用程式(例如 Google Authenticator、Authy 或 1Password)掃描此 QR 碼。",
|
||||
twoFactorManualEntry: "無法掃描此代碼?請手動輸入這組金鑰:",
|
||||
twoFactorRecoveryCodesHeading: "復原代碼",
|
||||
twoFactorRecoveryCodesDescription:
|
||||
"請將這些代碼妥善保存。若您無法存取驗證器應用程式,每組代碼可用於登入一次。",
|
||||
twoFactorCopyRecoveryCodes: "複製代碼",
|
||||
twoFactorCodesCopied: "已複製",
|
||||
twoFactorCopyFailed: "無法自動複製。請選取上方的代碼並手動複製。",
|
||||
twoFactorEnterCode: "請輸入應用程式中的 6 位數代碼以確認設定。",
|
||||
twoFactorCodePlaceholder: "000000",
|
||||
twoFactorConfirmButton: "確認並啟用",
|
||||
twoFactorCancelButton: "取消",
|
||||
twoFactorEnableSuccess: "兩步驟驗證已啟用。",
|
||||
twoFactorDisableSuccess: "兩步驟驗證已停用。",
|
||||
twoFactorDisablePrompt: "請輸入您目前的驗證器代碼以停用兩步驟驗證。",
|
||||
adminHeading: "管理員安全設定",
|
||||
adminDescription: "企業安全性政策設定,適用於所有使用者。",
|
||||
sessionIdleTimeout: "閒置逾時(分鐘)",
|
||||
|
||||
Reference in New Issue
Block a user