From 685e0f407a0e2af27678e5744afb956e4439aef2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bispo?= Date: Mon, 2 Oct 2023 20:43:42 +0100 Subject: [PATCH 01/23] [PM-2915] Fix config service null exception error bug (#2778) --- src/Core/Services/ConfigService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Services/ConfigService.cs b/src/Core/Services/ConfigService.cs index 360fc4b0f..60515b358 100644 --- a/src/Core/Services/ConfigService.cs +++ b/src/Core/Services/ConfigService.cs @@ -37,7 +37,7 @@ namespace Bit.Core.Services _stateService.SetConfigs(_configs); } } - catch (ApiException ex) when (ex.Error.StatusCode == System.Net.HttpStatusCode.BadGateway) + catch (ApiException ex) when (ex.Error?.StatusCode == System.Net.HttpStatusCode.BadGateway) { // ignore if there is no internet connection and return local configs } From f2be840a7d17eb923b98e8862dd6551d58a77b99 Mon Sep 17 00:00:00 2001 From: aj-rosado <109146700+aj-rosado@users.noreply.github.com> Date: Tue, 3 Oct 2023 12:54:22 +0100 Subject: [PATCH 02/23] Added GetOrDeriveMasterKey to UserVerificationService (#2808) --- src/App/Services/MobilePasswordRepromptService.cs | 8 +------- src/Core/Abstractions/ICryptoService.cs | 1 + src/Core/Services/CryptoService.cs | 11 +++++++++++ src/Core/Services/UserVerificationService.cs | 4 +++- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/src/App/Services/MobilePasswordRepromptService.cs b/src/App/Services/MobilePasswordRepromptService.cs index f9c3112da..d5a173a2f 100644 --- a/src/App/Services/MobilePasswordRepromptService.cs +++ b/src/App/Services/MobilePasswordRepromptService.cs @@ -51,13 +51,7 @@ namespace Bit.App.Services { await AppHelpers.ResetInvalidUnlockAttemptsAsync(); - var userKey = await _cryptoService.DecryptUserKeyWithMasterKeyAsync(masterKey); - await _cryptoService.SetMasterKeyAsync(masterKey); - var hasKey = await _cryptoService.HasUserKeyAsync(); - if (!hasKey) - { - await _cryptoService.SetUserKeyAsync(userKey); - } + await _cryptoService.UpdateMasterKeyAndUserKeyAsync(masterKey); } return passwordValid; diff --git a/src/Core/Abstractions/ICryptoService.cs b/src/Core/Abstractions/ICryptoService.cs index 66582bdf9..427179776 100644 --- a/src/Core/Abstractions/ICryptoService.cs +++ b/src/Core/Abstractions/ICryptoService.cs @@ -62,5 +62,6 @@ namespace Bit.Core.Abstractions Task EncryptToBytesAsync(byte[] plainValue, SymmetricCryptoKey key = null); Task DecryptAndMigrateOldPinKeyAsync(bool masterPasswordOnRestart, string pin, string email, KdfConfig kdfConfig, EncString oldPinKey); Task GetOrDeriveMasterKeyAsync(string password, string userId = null); + Task UpdateMasterKeyAndUserKeyAsync(MasterKey masterKey); } } diff --git a/src/Core/Services/CryptoService.cs b/src/Core/Services/CryptoService.cs index 5bd3c2129..15f8d893c 100644 --- a/src/Core/Services/CryptoService.cs +++ b/src/Core/Services/CryptoService.cs @@ -719,6 +719,17 @@ namespace Bit.Core.Services await _stateService.GetActiveUserCustomDataAsync(a => new KdfConfig(a?.Profile))); } + public async Task UpdateMasterKeyAndUserKeyAsync(MasterKey masterKey) + { + var userKey = await DecryptUserKeyWithMasterKeyAsync(masterKey); + await SetMasterKeyAsync(masterKey); + var hasKey = await HasUserKeyAsync(); + if (!hasKey) + { + await SetUserKeyAsync(userKey); + } + } + // --HELPER METHODS-- private async Task StoreAdditionalKeysAsync(UserKey userKey, string userId = null) diff --git a/src/Core/Services/UserVerificationService.cs b/src/Core/Services/UserVerificationService.cs index 5399c9d70..6149ce9ba 100644 --- a/src/Core/Services/UserVerificationService.cs +++ b/src/Core/Services/UserVerificationService.cs @@ -48,12 +48,14 @@ namespace Bit.Core.Services } else { - var passwordValid = await _cryptoService.CompareAndUpdateKeyHashAsync(secret, null); + var masterKey = await _cryptoService.GetOrDeriveMasterKeyAsync(secret); + var passwordValid = await _cryptoService.CompareAndUpdateKeyHashAsync(secret, masterKey); if (!passwordValid) { await InvalidSecretErrorAsync(verificationType); return false; } + await _cryptoService.UpdateMasterKeyAndUserKeyAsync(masterKey); } return true; From 71731bb9b75526afdf91966c779610aeac8b4a77 Mon Sep 17 00:00:00 2001 From: Federico Maccaroni Date: Tue, 3 Oct 2023 15:40:55 -0300 Subject: [PATCH 03/23] PM-2658 Removed deprecated strings resources. (#2812) --- src/App/Resources/AppResources.Designer.cs | 45 ---------------------- src/App/Resources/AppResources.resx | 20 ---------- 2 files changed, 65 deletions(-) diff --git a/src/App/Resources/AppResources.Designer.cs b/src/App/Resources/AppResources.Designer.cs index 97f482cf7..b2cb2b95a 100644 --- a/src/App/Resources/AppResources.Designer.cs +++ b/src/App/Resources/AppResources.Designer.cs @@ -1507,15 +1507,6 @@ namespace Bit.App.Resources { } } - /// - /// Looks up a localized string similar to You can change your master password on the bitwarden.com web vault. Do you want to visit the website now?. - /// - public static string ChangePasswordConfirmation { - get { - return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); - } - } - /// /// Looks up a localized string similar to Checking password.... /// @@ -1876,15 +1867,6 @@ namespace Bit.App.Resources { } } - /// - /// Looks up a localized string similar to Created {0}. - /// - public static string CreatedX { - get { - return ResourceManager.GetString("CreatedX", resourceCulture); - } - } - /// /// Looks up a localized string similar to Created {0}, {1}. /// @@ -2056,15 +2038,6 @@ namespace Bit.App.Resources { } } - /// - /// Looks up a localized string similar to Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use.. - /// - public static string DefaultDarkThemeDescription { - get { - return ResourceManager.GetString("DefaultDarkThemeDescription", resourceCulture); - } - } - /// /// Looks up a localized string similar to Choose the dark theme to use when your device’s dark mode is in use. /// @@ -6858,15 +6831,6 @@ namespace Bit.App.Resources { } } - /// - /// Looks up a localized string similar to Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be set up on the bitwarden.com web vault. Do you want to visit the website now?. - /// - public static string TwoStepLoginConfirmation { - get { - return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); - } - } - /// /// Looks up a localized string similar to Make your account more secure by setting up two-step login in the Bitwarden web app.. /// @@ -7578,15 +7542,6 @@ namespace Bit.App.Resources { } } - /// - /// Looks up a localized string similar to Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden.. - /// - public static string VisitOurWebsiteDescription { - get { - return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); - } - } - /// /// Looks up a localized string similar to Warning. /// diff --git a/src/App/Resources/AppResources.resx b/src/App/Resources/AppResources.resx index 4caf066e8..fd4eb3c82 100644 --- a/src/App/Resources/AppResources.resx +++ b/src/App/Resources/AppResources.resx @@ -396,10 +396,6 @@ Visit our website - - Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden. - DEPRECATED - Website Label for a website. @@ -452,10 +448,6 @@ Change master password - - You can change your master password on the bitwarden.com web vault. Do you want to visit the website now? - DEPRECATED - Close @@ -709,10 +701,6 @@ Two-step login - - Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be set up on the bitwarden.com web vault. Do you want to visit the website now? - DEPRECATED - Unlock with {0} @@ -1561,10 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - DEPRECATED - Copy note @@ -2659,10 +2643,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - DEPRECATED To state the date in which the cipher was created: Created 03/21/2023 - Application From b23f29511c9133f6bd2c8a690e62c10259b10e5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bispo?= Date: Wed, 4 Oct 2023 15:48:04 +0100 Subject: [PATCH 04/23] [PM-868] Re-open app to item could crash the app (#2813) * [PM-868] Check for previous page before loading vault. Remove exception throw. * [PM-868] Continue to throw exceptions --- .../Vault/GroupingsPage/GroupingsPage.xaml.cs | 31 ++++++++++--------- .../ExtendedGroupableItemsViewController.cs | 4 +++ 2 files changed, 21 insertions(+), 14 deletions(-) diff --git a/src/App/Pages/Vault/GroupingsPage/GroupingsPage.xaml.cs b/src/App/Pages/Vault/GroupingsPage/GroupingsPage.xaml.cs index 501678f5c..d7b8f6b7d 100644 --- a/src/App/Pages/Vault/GroupingsPage/GroupingsPage.xaml.cs +++ b/src/App/Pages/Vault/GroupingsPage/GroupingsPage.xaml.cs @@ -130,24 +130,27 @@ namespace Bit.App.Pages await LoadOnAppearedAsync(_mainLayout, false, async () => { - if (!_syncService.SyncInProgress || (await _cipherService.GetAllAsync()).Any()) + if (_previousPage == null) { - try + if (!_syncService.SyncInProgress || (await _cipherService.GetAllAsync()).Any()) { - await _vm.LoadAsync(); + try + { + await _vm.LoadAsync(); + } + catch (Exception e) when (e.Message.Contains("No key.")) + { + await Task.Delay(1000); + await _vm.LoadAsync(); + } } - catch (Exception e) when (e.Message.Contains("No key.")) + else { - await Task.Delay(1000); - await _vm.LoadAsync(); - } - } - else - { - await Task.Delay(5000); - if (!_vm.Loaded) - { - await _vm.LoadAsync(); + await Task.Delay(5000); + if (!_vm.Loaded) + { + await _vm.LoadAsync(); + } } } await ShowPreviousPageAsync(); diff --git a/src/iOS.Core/Renderers/CollectionView/ExtendedGroupableItemsViewController.cs b/src/iOS.Core/Renderers/CollectionView/ExtendedGroupableItemsViewController.cs index 519fcbbb6..0933dc183 100644 --- a/src/iOS.Core/Renderers/CollectionView/ExtendedGroupableItemsViewController.cs +++ b/src/iOS.Core/Renderers/CollectionView/ExtendedGroupableItemsViewController.cs @@ -38,6 +38,10 @@ namespace Bit.iOS.Core.Renderers.CollectionView // Do nothing in here, this is temporary to get more info about the crash, if the logger fails, we want to get the info // by crashing with the original exception and not the logger one } + if (ex is IndexOutOfRangeException) + { + return; + } throw colEx; } } From 757e5ea6479a44ba2b646cb7eafdb055311513ec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 07:46:57 +0000 Subject: [PATCH 05/23] Autosync the updated translations (#2805) Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com> --- src/App/Resources/AppResources.af.resx | 122 ++- src/App/Resources/AppResources.ar.resx | 122 ++- src/App/Resources/AppResources.az.resx | 122 ++- src/App/Resources/AppResources.be.resx | 122 ++- src/App/Resources/AppResources.bg.resx | 122 ++- src/App/Resources/AppResources.bn.resx | 126 ++- src/App/Resources/AppResources.bs.resx | 124 ++- src/App/Resources/AppResources.ca.resx | 122 ++- src/App/Resources/AppResources.cs.resx | 124 ++- src/App/Resources/AppResources.cy.resx | 126 ++- src/App/Resources/AppResources.da.resx | 122 ++- src/App/Resources/AppResources.de.resx | 122 ++- src/App/Resources/AppResources.el.resx | 122 ++- src/App/Resources/AppResources.en-GB.resx | 122 ++- src/App/Resources/AppResources.en-IN.resx | 122 ++- src/App/Resources/AppResources.es.resx | 122 ++- src/App/Resources/AppResources.et.resx | 122 ++- src/App/Resources/AppResources.eu.resx | 122 ++- src/App/Resources/AppResources.fa.resx | 128 ++- src/App/Resources/AppResources.fi.resx | 122 ++- src/App/Resources/AppResources.fil.resx | 122 ++- src/App/Resources/AppResources.fr.resx | 136 ++- src/App/Resources/AppResources.gl.resx | 126 ++- src/App/Resources/AppResources.he.resx | 126 ++- src/App/Resources/AppResources.hi.resx | 124 ++- src/App/Resources/AppResources.hr.resx | 154 +++- src/App/Resources/AppResources.hu.resx | 124 ++- src/App/Resources/AppResources.id.resx | 260 ++++-- src/App/Resources/AppResources.it.resx | 124 ++- src/App/Resources/AppResources.ja.resx | 122 ++- src/App/Resources/AppResources.ka.resx | 126 ++- src/App/Resources/AppResources.kn.resx | 126 ++- src/App/Resources/AppResources.ko.resx | 122 ++- src/App/Resources/AppResources.lt.resx | 122 ++- src/App/Resources/AppResources.lv.resx | 122 ++- src/App/Resources/AppResources.ml.resx | 126 ++- src/App/Resources/AppResources.mr.resx | 126 ++- src/App/Resources/AppResources.my.resx | 126 ++- src/App/Resources/AppResources.nb.resx | 122 ++- src/App/Resources/AppResources.ne.resx | 126 ++- src/App/Resources/AppResources.nl.resx | 122 ++- src/App/Resources/AppResources.nn.resx | 128 ++- src/App/Resources/AppResources.or.resx | 126 ++- src/App/Resources/AppResources.pl.resx | 124 ++- src/App/Resources/AppResources.pt-BR.resx | 128 ++- src/App/Resources/AppResources.pt-PT.resx | 144 ++- src/App/Resources/AppResources.ro.resx | 122 ++- src/App/Resources/AppResources.ru.resx | 128 ++- src/App/Resources/AppResources.si.resx | 126 ++- src/App/Resources/AppResources.sk.resx | 124 ++- src/App/Resources/AppResources.sl.resx | 124 ++- src/App/Resources/AppResources.sr.resx | 128 ++- src/App/Resources/AppResources.sv.resx | 122 ++- src/App/Resources/AppResources.ta.resx | 122 ++- src/App/Resources/AppResources.te.resx | 126 ++- src/App/Resources/AppResources.th.resx | 126 ++- src/App/Resources/AppResources.tr.resx | 138 ++- src/App/Resources/AppResources.uk.resx | 124 ++- src/App/Resources/AppResources.vi.resx | 869 ++++++++++-------- src/App/Resources/AppResources.zh-Hans.resx | 134 ++- src/App/Resources/AppResources.zh-Hant.resx | 124 ++- .../Localization/id.lproj/Localizable.strings | 20 +- .../Localization/tr.lproj/Localizable.strings | 12 +- .../Localization/vi.lproj/Localizable.strings | 20 +- store/apple/id/copy.resx | 30 +- store/apple/vi/copy.resx | 18 +- store/google/id/copy.resx | 30 +- store/google/pt-PT/copy.resx | 2 +- store/google/vi/copy.resx | 16 +- 69 files changed, 7085 insertions(+), 1592 deletions(-) diff --git a/src/App/Resources/AppResources.af.resx b/src/App/Resources/AppResources.af.resx index dc3e356f8..d99d2f855 100644 --- a/src/App/Resources/AppResources.af.resx +++ b/src/App/Resources/AppResources.af.resx @@ -396,9 +396,6 @@ Besoek ons webwerf - - Besoek ons webwerf vir hulp, nuus, om ’n e-pos aan ons te stuur en/of om meer te leer oor die gebruik van Bitwarden. - Webwerf Label for a website. @@ -451,9 +448,6 @@ Verander hoofwagwoord - - U kan u hoofwagwoord op die bitwarden.com-webkluis verander. Wil u die webwerf nou besoek? - Sluit @@ -707,9 +701,6 @@ Tweestapaantekening - - Tweestapsaantekening maak u rekening veiliger deur u aantekenpoging te bevestig met ’n ander toestel soos ’n beveiligingsleutel, waarmerktoep, SMS, telefoonoproep of e-pos. U kan tweestapsaantekening in die webkluis op bitwarden.com aktiveer. Wil u die webwerf nou besoek? - Ontgrendel met {0} @@ -1558,9 +1549,6 @@ Skandering gebeur outomaties. Verstekdonkertema - - Kies welke donkertema om te gebruik as stelseltema wanneer u toestel se donkertema geaktiveer is. - Kopieer notas @@ -2654,10 +2642,6 @@ Wil u na die rekening omskakel? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2764,6 +2748,112 @@ Wil u na die rekening omskakel? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.ar.resx b/src/App/Resources/AppResources.ar.resx index d01262770..2f1529f34 100644 --- a/src/App/Resources/AppResources.ar.resx +++ b/src/App/Resources/AppResources.ar.resx @@ -396,9 +396,6 @@ زيارة موقعنا على الانترنت - - قم بزيارة موقعنا الإلكتروني للحصول على المساعدة، واقرأ الأخبار، واكتب لنا و/أو تعلم كيفية استخدام bitwarden بشكل أفضل. - موقع الويب Label for a website. @@ -451,9 +448,6 @@ تغيير كلمة المرور الرئيسية - - يمكنك تغيير كلمة المرور الرئيسية من خزنة الويب في bitwarden.com. هل تريد زيارة الموقع الآن؟ - إغلاق @@ -707,9 +701,6 @@ تحديد المصادقة الثنائية - - تجعل المصادقة الثنائية المعامل حسابك أكثر أمانًا من خلال طلب إدخال رمز أمان مع كل معرف من تطبيق المصادقة. يمكن تنشيط تعريف العامل المزدوج في خزنة الويب في bitwarden.com هل تريد زيارة الموقع الآن؟ - فتح مع {0} @@ -1558,9 +1549,6 @@ السمة المظلمة الافتراضية - - اختر السمة المظلمة لاستخدامها عند استخدام السمة الافتراضية (النظام) أثناء تمكين الوضع المظلم لجهازك - نسخ الملاحظة @@ -2655,10 +2643,6 @@ مفاتيح المرور - - أُنشِئ {0} - To state the date in which the cipher was created: Created 03/21/2023 - تطبيق @@ -2765,6 +2749,112 @@ جارٍ تسجيل الدخول + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + لقد أجريت محاولات كثيرة diff --git a/src/App/Resources/AppResources.az.resx b/src/App/Resources/AppResources.az.resx index aa0b71500..e719db8dc 100644 --- a/src/App/Resources/AppResources.az.resx +++ b/src/App/Resources/AppResources.az.resx @@ -396,9 +396,6 @@ Veb saytımızı ziyarət edin - - Kömək almaq, xəbərlərə baxmaq, bizə e-poçt göndərmək və/və ya "Bitwarden"in necə istifadə edildiyini öyrənmək üçün veb saytımızı ziyarət edin. - Veb sayt Label for a website. @@ -451,9 +448,6 @@ Ana parolu dəyişdir - - Ana parolunuzu bitwarden.com veb anbarında dəyişdirə bilərsiniz. İndi saytı ziyarət etmək istəyirsiniz? - Bağla @@ -707,9 +701,6 @@ İki mərhələli giriş - - İki mərhələli giriş, güvənlik açarı, kimlik təsdiqləyici tətbiq, SMS, telefon zəngi və ya e-poçt kimi digər cihazlarla girişinizi təsdiqləməyinizi tələb edərək hesabınızı daha da güvənli edir. İki mərhələli giriş, bitwarden.com veb anbarında fəallaşdırıla bilər. Veb saytı indi ziyarət etmək istəyirsiniz? - {0} ilə kilidi açın @@ -1558,9 +1549,6 @@ Skan prosesi avtomatik baş tutacaq. İlkin tünd tema - - Cihazınızda tünd rejim fəal olanda İlkin (Sistem) temanı istifadə edərkən istifadə ediləcək tünd temanı seçin - Qeydləri kopyala @@ -2653,10 +2641,6 @@ Bu hesaba keçmək istəyirsiniz? Keçid açarı - - {0} yaradıldı - To state the date in which the cipher was created: Created 03/21/2023 - Tətbiq @@ -2763,6 +2747,112 @@ Bu hesaba keçmək istəyirsiniz? Giriş edilir + + Anbar + + + Görünüş + + + Hesab güvənliyi + + + Bitwarden Kömək Mərkəzi + + + Bitwarden dəstəyi ilə əlaqə saxla + + + Tətbiq məlumatlarını kopyala + + + İndi sinxr. + + + Kilid açma seçimləri + + + Seans vaxt bitməsi + + + Seans vaxt bitmə əməliyyatı + + + Hesab barmaq izi ifadəsi + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Bir saat bir dəqiqə + + + Bir saat {0} dəqiqə + + + {0} saat bir dəqiqə + + + {0} saat {1} dəqiqə + + + {0} saat + + + Android Avto-doldurma Çərçivəsi, giriş məlumatlarını cihazınızdakı digər tətbiqlərə doldurmağa kömək etmək üçün istifadə olunur. + + + Seçdiyiniz klaviatura dəstəkləyirsə sətir daxili avto-doldurmani istifadə edin. Əks halda, ilkin örtük istifadə edin. + + + Əlavə seçimlər + + + Veb tətbiqlə davam edilsin? + + + {0} ilə davam edilsin? + The parameter is an URL, like bitwarden.com. + + + Kömək mərkəzi ilə davam edilsin? + + + Dəstək komandası ilə əlaqə qurmağa davam edilsin? + + + Tətbiq mağazası ilə davam edilsin? + + + Bitwarden veb tətbiqində iki addımlı girişi quraraq hesabınızı daha güvənli edin. + + + Ana parolunuzu Bitwarden veb tətbiqində dəyişdirə bilərsiniz. + + + Datanı {0} üzərindən anbarınıza köçürə bilərsiniz. + The parameter is an URL, like vault.bitwarden.com. + + + Kömək mərkəzində Bitwarden-in necə istifadə ediləcəyi ilə bağlı ətraflı öyrənin. + + + Axtardığınızı tapa bilmirsiniz? bitwarden.com üzərindən Bitwarden dəstəyinə müraciət edin. + + + Veb tətbiqində Bitwarden hesabınızın daha çox özəlliyini kəşf edin. + + + Bitwarden, bir təşkilat hesabı istifadə edərək anbar elementlərinizi başqaları ilə paylaşmağınıza icazə verər. bitwarden.com veb saytında ətraflı öyrənin. + + + Başqalarının Bitwarden-in onlar üçün uyğun olub-olmadığını öyrənməkdə kömək edin. Tətbiq mağazasını ziyarət edin və tətbiqimizi qiymətləndirin. + + + Cihazınızda qaranlıq rejim açıq olduqda istifadə ediləcək qaranlıq temanı seçin + + + Yaradıldı: {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Həddən artıq cəhd diff --git a/src/App/Resources/AppResources.be.resx b/src/App/Resources/AppResources.be.resx index 2f921e868..2b3e130ff 100644 --- a/src/App/Resources/AppResources.be.resx +++ b/src/App/Resources/AppResources.be.resx @@ -396,9 +396,6 @@ Наведайце наш вэб-сайт - - Наведайце наш вэб-сайт, каб атрымаць дапамогу, прачытаць апошнія навіны, звязацца з намі і/або даведацца больш пра тое, як карыстацца Bitwarden. - Вэб-сайт Label for a website. @@ -451,9 +448,6 @@ Змяніць асноўны пароль - - Вы можаце змяніць свой асноўны пароль у вэб-сховішчы на bitwarden.com. Перайсці на вэб-сайт зараз? - Закрыць @@ -707,9 +701,6 @@ Двухэтапны ўваход - - Двухэтапны ўваход робіць ваш уліковы запіс больш бяспечным, патрабуючы пацвярджэнне ўваходу на іншай прыладзе з выкарыстаннем ключа бяспекі, праграмы аўтэнтыфікацыі, SMS, тэлефоннага званка або электроннай пошты. Двухэтапны ўваход уключаецца на bitwarden.com. Перайсці на вэб-сайт, каб зрабіць гэта? - Разблакіраваць з {0} @@ -1557,9 +1548,6 @@ Прадвызначана цёмная тэма - - Выбіраць цёмную тэму для яе выкарыстання ў выпадку, калі яна з'яўляецца прадвызначанай (сістэмнай) для вашай прылады. - Скапіяваць нататку @@ -2654,10 +2642,6 @@ Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Праграма @@ -2764,6 +2748,112 @@ Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.bg.resx b/src/App/Resources/AppResources.bg.resx index 2e0cf40e5..af3b1eed2 100644 --- a/src/App/Resources/AppResources.bg.resx +++ b/src/App/Resources/AppResources.bg.resx @@ -396,9 +396,6 @@ Посетете нашия сайт - - Посетете сайта ни за помощ, новини, начини да се свържете с нас и как да ползвате Bitwarden. - Сайт Label for a website. @@ -451,9 +448,6 @@ Промяна на главната парола - - Главната парола на трезор може да се промени чрез сайта bitwarden.com. Искате ли да го посетите? - Затваряне @@ -707,9 +701,6 @@ Двустепенно удостоверяване - - Двустепенното вписване защищава регистрацията ви като ви кара да потвърдите влизането си чрез устройство-ключ, приложение за идентификация, мобилно съобщение, телефонно обаждане или е-поща. Двустепенното вписване може да се включи чрез сайта bitwarden.com. Искате ли да го посетите? - Отключване с {0} @@ -1558,9 +1549,6 @@ Стандартен тъмен облик - - Изберете тъмния облик, който да се ползва, когато е избран стандартният (от системата) облик и тъмният режим на устройството Ви е включен. - Копиране на бележките @@ -2654,10 +2642,6 @@ select Add TOTP to store the key safely Passkeys - - Създадено на {0} - To state the date in which the cipher was created: Created 03/21/2023 - Приложение @@ -2764,6 +2748,112 @@ select Add TOTP to store the key safely Вписване в + + Трезор + + + Външен вид + + + Защита на регистрацията + + + Помощен център на Битуорден + + + Свържете се с поддръжката на Битуорден + + + Копиране на информацията за приложението + + + Синхронизиране сега + + + Unlock options + + + Изтичане на времето за сесията + + + Действие при изтичане на времето за сесията + + + Уникална фраза, идентифицираща регистрацията Ви + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Един час и една минута + + + Един час и {0} минути + + + {0} часа и една минута + + + {0} часа и {1} минути + + + {0} часа + + + Подсистемата за автоматично попълване на Андроид се използва за попълване на данните за вход в други приложения на устройството. + + + Използвайте вграденото автоматично попълване, ако избраната от Вас клавиатура го поддържа. Иначе използвайте слоя по подразбиране. + + + Допълнителни настройки + + + Продължаване към уеб приложението? + + + Продължаване към {0}? + The parameter is an URL, like bitwarden.com. + + + Продължаване към помощния център? + + + Продължаване към връзка с поддръжката? + + + Продължаване към магазина за приложения? + + + Подобрете защитата на регистрацията си, като настроите двустепенното удостоверяване в уеб приложението на Битуорден. + + + Може да промените главната си парола в уеб приложението на Битуорден. + + + Може да внесете данни в трезора си на {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Научете повече относно това как да използвате Битуорден в помощния център. + + + Не намирате това, което търсите? Свържете се с поддръжката на Битуорден на bitwarden.com. + + + Разгледайте още от възможностите на регистрацията си в Битуорден в уеб приложението. + + + Битуорден позволява да споделяте части от трезора си чрез използването на организация. Научете повече на сайта bitwarden.com. + + + Помогнете на другите да разберат дали Битуорден е подходящ за тях. Посетете магазина за приложения и дайте оценка още сега. + + + Изберете коя тъмна тема да се използва когато е включен тъмният режим на устройството Ви + + + Създадено на {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Твърде много опити diff --git a/src/App/Resources/AppResources.bn.resx b/src/App/Resources/AppResources.bn.resx index 9a245d588..cb1448159 100644 --- a/src/App/Resources/AppResources.bn.resx +++ b/src/App/Resources/AppResources.bn.resx @@ -396,9 +396,6 @@ আমাদের ওয়েবসাইটে ঢু মেরে আসুন - - সাহায্য পেতে, খবর পেতে, আমাদের ইমেল করতে এবং/অথবা বিটওয়ার্ডেন কীভাবে ব্যবহার করবেন সে সম্পর্কে আরও জানতে আমাদের ওয়েবসাইট দেখুন। - ওয়েবসাইট Label for a website. @@ -451,9 +448,6 @@ প্রধান পাসওয়ার্ড পরিবর্তন - - আপনি bitwarden.com ওয়েব ভল্ট থেকে প্রধান পাসওয়ার্ডটি পরিবর্তন করতে পারেন। আপনি কি এখনই ওয়েবসাইটটি দেখতে চান? - বন্ধ করুন @@ -707,9 +701,6 @@ Two-step login - - Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be set up on the bitwarden.com web vault. Do you want to visit the website now? - Unlock with {0} @@ -916,7 +907,7 @@ Scanning will happen automatically. Copy TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy note @@ -2367,7 +2355,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2655,10 +2643,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.bs.resx b/src/App/Resources/AppResources.bs.resx index 5d6df7166..27f0ac947 100644 --- a/src/App/Resources/AppResources.bs.resx +++ b/src/App/Resources/AppResources.bs.resx @@ -396,9 +396,6 @@ Posjetite našu Web Stranicu - - Posjeti našu Web stranicu kako bi pronašli pomoć, novosti, poslali nam e-poštu i/ili saznali više o tome kako koristiti Bitwarden. - Web stranica Label for a website. @@ -451,9 +448,6 @@ Promijenite glavnu lozinku - - Možete da promjenite svoju glavnu lozinku na bitwarden.com web trezoru. Da li želite da posjetite web stranicu sada? - Zatvori @@ -707,9 +701,6 @@ Prijava u dva koraka - - Prijava u dva koraka čini Vaš nalog sigurnijim tako što zahteva da verifikujete svoje podatke pomoću drugog uređaja, kao što su bezbednosni ključ, aplikacija za potvrdu autentičnosti, SMS, telefonski poziv ili e-pošta. Prijavljivanje u dva koraka može se omogućiti na bitwarden.com veb trezoru. Da li želite da posetite veb stranicu sada? - Otključajte sa {0} @@ -1558,9 +1549,6 @@ Skeniranje će biti izvršeno automatski. Zadana tamna tema - - Odaberi korištenje tamne teme kada je uređaj već zadano koristi. - Kopiraj bilješke @@ -2365,7 +2353,7 @@ Skeniranje će biti izvršeno automatski. Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2653,10 +2641,6 @@ Skeniranje će biti izvršeno automatski. Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2763,6 +2747,112 @@ Skeniranje će biti izvršeno automatski. Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.ca.resx b/src/App/Resources/AppResources.ca.resx index be97174e6..808644ac3 100644 --- a/src/App/Resources/AppResources.ca.resx +++ b/src/App/Resources/AppResources.ca.resx @@ -396,9 +396,6 @@ Visiteu el nostre lloc web - - Visiteu el nostre lloc web per obtenir ajuda, notícies, enviar-nos un correu electrònic i obtenir més informació sobre com utilitzar Bitwarden. - Lloc web Label for a website. @@ -451,9 +448,6 @@ Canvia la contrasenya mestra - - Podeu canviar la contrasenya mestra a la caixa forta web de bitwarden.com. Voleu visitar el lloc web ara? - Tanca @@ -707,9 +701,6 @@ Inici de sessió en dues passes - - L'inici de sessió en dues passes fa que el vostre compte siga més segur, ja que obliga a verificar el vostre inici de sessió amb un altre dispositiu, com ara una clau de seguretat, una aplicació autenticadora, un SMS, una trucada telefònica o un correu electrònic. Es pot habilitar l'inici de sessió en dues passes a la caixa forta web de bitwarden.com. Voleu visitar el lloc web ara? - Desbloqueja amb {0} @@ -1558,9 +1549,6 @@ L'escaneig es farà automàticament. Tema fosc per defecte - - Tria el tema fosc quan feu servir el tema predeterminat (sistema) mentre el mode fosc del vostre dispositiu està habilitat - Copia nota @@ -2654,10 +2642,6 @@ Voleu canviar a aquest compte? Claus de pas - - Creats {0} - To state the date in which the cipher was created: Created 03/21/2023 - Aplicació @@ -2764,6 +2748,112 @@ Voleu canviar a aquest compte? Inici de sessió en + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.cs.resx b/src/App/Resources/AppResources.cs.resx index 61016304e..d6e5a82c9 100644 --- a/src/App/Resources/AppResources.cs.resx +++ b/src/App/Resources/AppResources.cs.resx @@ -396,9 +396,6 @@ Navštivte naše webové stránky - - Navštivte náš web pro získání nápovědy, novinek, kontaktu, nebo návodů, jak používat Bitwarden. - Webová stránka Label for a website. @@ -451,9 +448,6 @@ Změnit hlavní heslo - - Hlavní heslo si můžete změnit na webové stránce bitwarden.com. Chcete tuto stránku nyní otevřít? - Zavřít @@ -707,9 +701,6 @@ Dvoufázové přihlášení - - Dvoufázové přihlášení činí Váš účet mnohem bezpečnějším díky nutnosti po každém úspěšném přihlášení zadat ověřovací kód získaný z bezpečnostního klíče, aplikace, SMS, telefonního hovoru nebo e-mailu. Dvoufázové přihlášení lze aktivovat na webové stránce bitwarden.com. Chcete tuto stránku nyní otevřít? - Odemknout pomocí {0} @@ -1558,9 +1549,6 @@ Načtení proběhne automaticky. Výchozí tmavý motiv - - Zvolte motiv, který se bude zobrazovat po aktivování tmavého motivu v systému. - Kopírovat poznámku @@ -2365,7 +2353,7 @@ Načtení proběhne automaticky. Schválit žádosti o přihlášení - Použijte toto zařízení pro schvalování žádostí o přihlášení z jiných zařízení. + Použít toto zařízení pro schvalování žádostí o přihlášení z jiných zařízení Povolit oznámení @@ -2653,10 +2641,6 @@ Chcete se přepnout na tento účet? Přístupové klíče - - Vytvořeno {0} - To state the date in which the cipher was created: Created 03/21/2023 - Aplikace @@ -2763,6 +2747,112 @@ Chcete se přepnout na tento účet? Přihlašování na + + Trezor + + + Vzhled + + + Zabezpečení účtu + + + Centrum nápovědy Bitwarden + + + Kontakt na podporu Bitwarden + + + Kopírovat informace o aplikaci + + + Synchronizovat nyní + + + Volby odemknutí + + + Časový limit relace + + + Akce časového limitu relace + + + Fráze otisku prstu účtu + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Jedna hodina a jedna minuta + + + Jedna hodina a {0} minut + + + {0} hodin a jedna minuta + + + {0} hodin a {1} minut + + + {0} hodin + + + Android Autofill Framework se používá k vyplnění přihlašovacích údajů do jiných aplikací na Vašem zařízení. + + + Pokud to Vaše vybraná klávesnice podporuje, použije se inline automatické vyplňování. V opačném případě se použije výchozí překrytí. + + + Další volby + + + Pokračovat do webové aplikace? + + + Pokračovat do {0}? + The parameter is an URL, like bitwarden.com. + + + Pokračovat do centra nápovědy? + + + Pokračovat v kontaktování podpory? + + + Pokračovat do obchodu s aplikacemi? + + + Vytvořte svůj účet bezpečnějším nastavením dvoufázového přihlášení ve webové aplikaci Bitwarden. + + + Hlavní heslo můžete změnit na webové aplikaci Bitwarden. + + + Data můžete importovat do Vašeho trezoru na {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Přečtěte si více o tom, jak používat Bitwarden v centru nápovědy. + + + Nenašli jste to, co jste hledali? Na bitwarden.com získejte podporu. + + + Prozkoumejte další funkce Vašeho účtu Bitwarden ve webové aplikaci. + + + Bitwarden Vám umožňuje sdílet položky v trezoru s ostatními prostřednictvím organizace. Více informací naleznete na bitwarden.com. + + + Pomozte ostatním zjistit, zda je Bitwarden pro ně správný. Navštivte obchod s aplikacemi a zanechte hodnocení. + + + Vybere tmavý motiv při použití tmavého režimu Vašeho zařízení. + + + Vytvořeno {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Příliš mnoho pokusů diff --git a/src/App/Resources/AppResources.cy.resx b/src/App/Resources/AppResources.cy.resx index 2dc48859e..159c2daac 100644 --- a/src/App/Resources/AppResources.cy.resx +++ b/src/App/Resources/AppResources.cy.resx @@ -396,9 +396,6 @@ Visit our website - - Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden. - Gwefan Label for a website. @@ -451,9 +448,6 @@ Newid y prif gyfrinair - - You can change your master password on the bitwarden.com web vault. Do you want to visit the website now? - Cau @@ -707,9 +701,6 @@ Two-step login - - Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be set up on the bitwarden.com web vault. Do you want to visit the website now? - Datgloi â {0} @@ -916,7 +907,7 @@ Scanning will happen automatically. Copy TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy note @@ -2367,7 +2355,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Caniatáu hysbysiadau @@ -2655,10 +2643,6 @@ Do you want to switch to this account? Passkeys - - Crëwyd {0} - To state the date in which the cipher was created: Created 03/21/2023 - Rhaglen @@ -2765,6 +2749,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.da.resx b/src/App/Resources/AppResources.da.resx index 04e6ee376..b37c72bd4 100644 --- a/src/App/Resources/AppResources.da.resx +++ b/src/App/Resources/AppResources.da.resx @@ -396,9 +396,6 @@ Besøg vores websted - - Besøg vores hjemmeside for at få hjælp, nyheder, e-maile os og/eller få mere at vide om, hvordan du benytter Bitwarden. - Hjemmeside Label for a website. @@ -451,9 +448,6 @@ Skift hovedadgangskode - - Du kan skifte din hovedadgangskode i bitwarden.com web-boksen. Vil du besøge hjemmesiden nu? - Luk @@ -707,9 +701,6 @@ To-trins login - - To-trins login gør din konto mere sikker ved at kræve, at du verificerer dit login med en anden enhed, såsom en sikkerhedsnøgle, autentificeringsapp, SMS, telefonopkald eller e-mail. To-trins login kan aktiveres i bitwarden.com web-boksen. Vil du besøge hjemmesiden nu? - Lås op med {0} @@ -1558,9 +1549,6 @@ Skanning vil ske automatisk. Standard mørkt tema - - Vælg det mørke tema, der skal bruges, når Standard (System) temaet bruges, mens din enheds mørke tilstand er aktiveret. - Kopiér notat @@ -2654,10 +2642,6 @@ Vil du skifte til denne konto? Adgangsnøgler - - Oprettet {0} - To state the date in which the cipher was created: Created 03/21/2023 - Applikation @@ -2764,6 +2748,112 @@ Vil du skifte til denne konto? Logger ind på + + Boks + + + Udseende + + + Kontosikkerhed + + + Bitwarden Hjælpecenter + + + Kontakt Bitwarden-support + + + Kopiér app-information + + + Synk nu + + + Oplås muligheder + + + Sessionstimeout + + + Handling ved sessionstimeout + + + Fingeraftrykssætning for konto + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + En time og et minut + + + En time og {0} minutter + + + {0} timer og et minut + + + {0} timer and {1} minutter + + + {0} timer + + + Android Autofill Framework bruges til at hjælpe med at udfylde loginoplysninger i andre apps på enheden. + + + Brug inline-autofyld, hvis det valgte tastatur understøtter det, ellers brug standardoverlejring. + + + Yderligere indstillinger + + + Fortsæt til web-app? + + + Fortsæt til {0}? + The parameter is an URL, like bitwarden.com. + + + Fortsæt til Hjælpecenter? + + + Fortsæt med at kontakte support? + + + Fortsæt til App Store? + + + Øg kontosikkerheden ved at oprette totrins-indlogning i Bitwarden web-appen. + + + Hovedadgangskoden kan ændres fra Bitwarden web-appen. + + + Data kan importere til din Boks på {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Læs mere i Hjælpecenter om, hvordan man bruger Bitwarden. + + + Kan ikke finde det, der søges efter? Kontakt Bitwarden-supporten via bitwarden.com. + + + Tjek flere funktioner ud i Bitwarden-kontoen på web-appen. + + + Bitwarden muliggør deling af emner i din Boks med andre vha. en organisation. Læs mere på bitwarden.com-webstedet. + + + Hjælp andre med at finde ud af, om Bitwarden er det rigtige for dem. Besøg App Store og skriv en bedømmelse nu. + + + Vælg det mørke tema, der skal bruges, når enhedens mørke-tilstand er i brug + + + Oprettet {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + For mange forsøg diff --git a/src/App/Resources/AppResources.de.resx b/src/App/Resources/AppResources.de.resx index 580ff8afe..dc4894645 100644 --- a/src/App/Resources/AppResources.de.resx +++ b/src/App/Resources/AppResources.de.resx @@ -396,9 +396,6 @@ Besuche unsere Website - - Besuche unsere Webseite um Hilfe zu erhalten, Neuigkeiten zu erfahren, Kontakt aufzunehmen und mehr über die Verwendung von Bitwarden zu lernen. - Webseite Label for a website. @@ -451,9 +448,6 @@ Master-Password ändern - - Du kannst dein Master-Passwort im Bitwarden.com Web-Tresor ändern. Möchtest du die Seite jetzt öffnen? - Schließen @@ -707,9 +701,6 @@ Zwei-Faktor-Authentifizierung - - Mit der Zwei-Faktor-Authentifizierung wird dein Konto zusätzlich abgesichert, da jede Anmeldung mit einem anderen Gerät wie einem Sicherheitsschlüssel, einer Authentifizierungs-App, einer SMS, einem Anruf oder einer E-Mail verifiziert werden muss. Die Zwei-Faktor-Authentifizierung kann im bitwarden.com Web-Tresor aktiviert werden. Möchtest du die Webseite jetzt öffnen? - Mit {0} entsperren @@ -1558,9 +1549,6 @@ Das Scannen erfolgt automatisch. Dunkles Standard-Design - - Wähle das zu verwendende dunkle Design aus, das bei der Auswahl vom Standard-(System)-Design verwendet werden soll, während der Dark Mode deines Geräts aktiviert ist. - Notiz kopieren @@ -2653,10 +2641,6 @@ Möchtest du zu diesem Konto wechseln? Passkeys - - Erstellt am {0} - To state the date in which the cipher was created: Created 03/21/2023 - Anwendung @@ -2763,6 +2747,112 @@ Möchtest du zu diesem Konto wechseln? Anmelden bei + + Tresor + + + Aussehen + + + Kontosicherheit + + + Bitwarden Hilfezentrum + + + Bitwarden Support kontaktieren + + + App-Informationen kopieren + + + Jetzt synchronisieren + + + Entsperroptionen + + + Sitzungs-Timeout + + + Aktion bei Sitzungs-Timeout + + + Fingerabdruck-Phrase des Kontos + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Eine Stunde und eine Minute + + + Eine Stunde und {0} Minuten + + + {0} Stunden und eine Minute + + + {0} Stunden und {1} Minuten + + + {0} Stunden + + + Das Android Autofill Framework wird verwendet, um Zugangsdaten in andere Apps auf deinem Gerät auszufüllen. + + + Inline Auto-Ausfüllen verwenden, falls deine ausgewählte Tastatur dies unterstützt. Andernfalls wird das Standard Auto-Ausfüllen-Overlay verwendet. + + + Weitere Optionen + + + Weiter zur Web-App? + + + Weiter zu {0}? + The parameter is an URL, like bitwarden.com. + + + Weiter zum Hilfezentrum? + + + Weiter, um den Support zu kontaktieren? + + + Weiter zum App Store? + + + Mache dein Konto sicherer, indem du eine Zwei-Faktor-Authentifizierung in der Bitwarden Web-App einrichtest. + + + Du kannst dein Master-Passwort in der Bitwarden Web-App ändern. + + + Du kannst Daten in deinem Tresor auf {0} importieren. + The parameter is an URL, like vault.bitwarden.com. + + + Erfahre mehr über die Verwendung von Bitwarden im Hilfezentrum. + + + Du findest nicht, was du suchst? Kontaktiere den Bitwarden Support auf bitwarden.com. + + + Entdecke mehr Funktionen deines Bitwarden-Kontos in der Web-App. + + + Bitwarden erlaubt es dir, deine Tresor-Einträge mit anderen zu teilen, indem du eine Organisation verwendest. Erfahre mehr auf der bitwarden.com Website. + + + Hilf anderen herauszufinden, ob Bitwarden das Richtige für sie ist. Besuche den App Store und hinterlasse jetzt eine Bewertung. + + + Wähle das zu verwendende dunkle Design aus, während der Dark Mode deines Geräts aktiviert ist + + + Erstellt am {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Zu viele Versuche diff --git a/src/App/Resources/AppResources.el.resx b/src/App/Resources/AppResources.el.resx index bc6c5397e..8cc4dfcce 100644 --- a/src/App/Resources/AppResources.el.resx +++ b/src/App/Resources/AppResources.el.resx @@ -397,9 +397,6 @@ Επισκεφθείτε την ιστοσελίδα μας - - Επισκευθείτε την ιστοσελίδα μας για να λάβετε βοήθεια, νέα, να μας στείλετε email ή να μάθετε περισσότερα σχετικά με τον τρόπο χρήσης του Bitwarden. - Ιστοσελίδα Label for a website. @@ -452,9 +449,6 @@ Αλλαγή Κύριου Κωδικού - - Μπορείτε να αλλάξετε τον κύριο κωδικό στο bitwarden.com. Θέλετε να επισκεφθείτε την ιστοσελίδα τώρα; - Κλείσιμο @@ -708,9 +702,6 @@ Σύνδεση σε δύο βήματα - - Η σύνδεση σε δύο βήματα καθιστά πιο ασφαλή τον λογαριασμό σας, απαιτώντας να επαληθεύσετε τα στοιχεία σας με μια άλλη συσκευή, όπως κλειδί ασφαλείας, εφαρμογή επαλήθευσης, μήνυμα SMS, τηλεφωνική κλήση ή email. Μπορείτε να ενεργοποιήσετε τη σύνδεση σε δύο βήματα στο bitwarden.com. Θέλετε να επισκεφθείτε την ιστοσελίδα τώρα; - Ξεκλείδωμα με {0} @@ -1558,9 +1549,6 @@ Προεπιλεγμένο σκοτεινό θέμα - - Επιλέξτε το σκούρο θέμα που θα χρησιμοποιηθεί όταν χρησιμοποιείτε το προεπιλεγμένο (System) θέμα ενώ η σκοτεινή λειτουργία της συσκευής σας είναι ενεργοποιημένη. - Αντιγραφή Σημειώσεων @@ -2654,10 +2642,6 @@ Συνθηματικά - - Δημιουργήθηκε {0} - To state the date in which the cipher was created: Created 03/21/2023 - Εφαρμογή @@ -2764,6 +2748,112 @@ Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.en-GB.resx b/src/App/Resources/AppResources.en-GB.resx index c28b68a78..fa68de666 100644 --- a/src/App/Resources/AppResources.en-GB.resx +++ b/src/App/Resources/AppResources.en-GB.resx @@ -396,9 +396,6 @@ Visit our website - - Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden. - Website Label for a website. @@ -451,9 +448,6 @@ Change master password - - You can change your master password on the bitwarden.com web vault. Do you want to visit the website now? - Close @@ -707,9 +701,6 @@ Two-step login - - Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be set up on the bitwarden.com web vault. Do you want to visit the website now? - Unlock with {0} @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy note @@ -2654,10 +2642,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2764,6 +2748,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.en-IN.resx b/src/App/Resources/AppResources.en-IN.resx index 55f39aaa1..09c034fb5 100644 --- a/src/App/Resources/AppResources.en-IN.resx +++ b/src/App/Resources/AppResources.en-IN.resx @@ -396,9 +396,6 @@ Visit our website - - Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden. - Website Label for a website. @@ -451,9 +448,6 @@ Change master password - - You can change your master password on the bitwarden.com web vault. Do you want to visit the website now? - Close @@ -707,9 +701,6 @@ Two-step login - - Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be enabled on the bitwarden.com web vault. Do you want to visit the website now? - Unlock with {0} @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy notes @@ -2668,10 +2656,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2778,6 +2762,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.es.resx b/src/App/Resources/AppResources.es.resx index a65da9516..f4fb63c41 100644 --- a/src/App/Resources/AppResources.es.resx +++ b/src/App/Resources/AppResources.es.resx @@ -396,9 +396,6 @@ Visita nuestro sitio web - - Visita nuestro sitio web para recibir ayuda, noticias, contactarnos por correo y/o aprender más sobre como utilizar Bitwarden. - Web Label for a website. @@ -451,9 +448,6 @@ Cambiar contraseña maestra - - Puedes cambiar tu contraseña maestra en la caja fuerte web de bitwarden.com. ¿Quieres visitar ahora el sitio web? - Cerrar @@ -707,9 +701,6 @@ Autenticación en dos pasos - - La autenticación en dos pasos hace que tu cuenta sea mucho más segura requiriendo que introduzcas un código de seguridad de una aplicación de autenticación cada vez que accedes. La autenticación en dos pasos puede ser habilitada en la caja fuerte web de bitwarden.com. ¿Quieres visitar ahora el sitio web? - Desbloquear con {0} @@ -1558,9 +1549,6 @@ El escaneo se realizará automáticamente. Tema oscuro por defecto - - Elija el tema oscuro para usar al estar usándose el tema por defecto (Sistema) mientras el modo oscuro de su dispositivo está activado. - Copiar notas @@ -2655,10 +2643,6 @@ seleccione Agregar TOTP para almacenar la clave de forma segura Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ seleccione Agregar TOTP para almacenar la clave de forma segura Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Creado {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.et.resx b/src/App/Resources/AppResources.et.resx index e03488370..80423e1d8 100644 --- a/src/App/Resources/AppResources.et.resx +++ b/src/App/Resources/AppResources.et.resx @@ -396,9 +396,6 @@ Külasta meie kodulehte - - Külasta kodulehte abi saamiseks, meiega kontakteerumiseks, uudiste lugemiseks või Bitwardeni kohta rohkema teabe saamiseks. - Veebisait Label for a website. @@ -451,9 +448,6 @@ Muuda ülemparooli - - Saad oma ülemparooli muuta bitwarden.com veebihoidlas. Soovid seda kohe teha? - Sulge @@ -707,9 +701,6 @@ Kaheastmeline kinnitamine - - Kaheastmeline kinnitamine aitab konto turvalisust tõsta. Lisaks paroolile pead kontole ligipääsemiseks kinnitama sisselogimise päringu SMS-ga, telefonikõnega, autentimise rakendusega või e-postiga. Kaheastmelist kinnitust saab sisse lülitada bitwarden.com veebihoidlas. Soovid seda kohe avada? - Lukusta lahti {0} @@ -1558,9 +1549,6 @@ Skaneerimine toimub automaatselt. Vaikimisi tume teema - - Kui kasutad vaikimisi (süsteemset) teemat ja seadme tume režiim on sisse lülitatud, siis valitakse vaikimisi tume teema - Kopeeri märkus @@ -2654,10 +2642,6 @@ Soovid selle konto peale lülituda? Pääsukoodid - - Loodud {0} - To state the date in which the cipher was created: Created 03/21/2023 - Rakendus @@ -2764,6 +2748,112 @@ Soovid selle konto peale lülituda? Sisselogimas kui + + Hoidla + + + Välimus + + + Konto turvalisus + + + Bitwardeni abikeskus + + + Võta Bitwardeniga ühendust + + + Kopeeri info + + + Sünkroniseeri kohe + + + Unlock options + + + Sessiooni ajalõpp + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.eu.resx b/src/App/Resources/AppResources.eu.resx index 6472a750f..73db7189b 100644 --- a/src/App/Resources/AppResources.eu.resx +++ b/src/App/Resources/AppResources.eu.resx @@ -396,9 +396,6 @@ Bisitatu gure webgunea - - Zatoz gure webgunera laguntza eta albisteak jasotzeko, emailez hitz egiteko eta/edo Bitwarden nola erabili ikasteko. - Webgunea Label for a website. @@ -451,9 +448,6 @@ Aldatu pasahitz nagusia - - Zure pasahitz nagusia alda dezakezu bitwarden.com webgunean. Orain joan nahi duzu webgunera? - Itxi @@ -707,9 +701,6 @@ Bi urratseko saio hasiera - - Bi urratseko saio hasiera dela eta, zure kontua seguruagoa da, beste aplikazio/gailu batekin saioa hastea eskatzen baitizu; adibidez, segurtasun-gako, autentifikazio aplikazio, SMS, telefono dei edo email bidez. Bi urratseko saio hasiera bitwarden.com webgunean aktibatu daiteke. Orain joan nahi duzu webgunera? - {0}-arekin desblokeatu @@ -1557,9 +1548,6 @@ Lehehetsia gai iluna - - Hautatu gai iluna lehenetsitako gaia (sistema) erabiltzen duzuenean, gailuaren modu iluna gaituta dagoen bitartean - Kopiatu oharra @@ -2653,10 +2641,6 @@ Kontu honetara aldatu nahi duzu? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2763,6 +2747,112 @@ Kontu honetara aldatu nahi duzu? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.fa.resx b/src/App/Resources/AppResources.fa.resx index 27ae9d651..7c8805621 100644 --- a/src/App/Resources/AppResources.fa.resx +++ b/src/App/Resources/AppResources.fa.resx @@ -396,9 +396,6 @@ از وب‌سایت ما دیدن کنید - - برای کمک گرفتن، اخبار، ایمیل ما، و یا آموزش بیشتر برای استفاده از Bitwarden از وب سایت ما دیدن کنید. - وب‌سایت Label for a website. @@ -451,9 +448,6 @@ تغییر کلمه عبور اصلی - - شما می‌توانید کلمه عبور اصلی خود را در bitwarden.com تغییر دهید. آیا می‌خواهید از سایت بازدید کنید؟ - بستن @@ -707,9 +701,6 @@ ورود دو مرحله ای - - ورود دو مرحله ای باعث می‌شود که حساب کاربری شما با استفاده از یک دستگاه دیگر مانند کلید امنیتی، برنامه احراز هویت، پیامک، تماس تلفنی و یا ایمیل، اعتبار خود را با ایمنی بیشتر اثبات کند. ورود دو مرحله ای می تواند در bitwarden.com فعال شود. آیا می‌خواهید از سایت بازدید کنید؟ - باز کردن با {0} @@ -955,7 +946,7 @@ تا زمانی که کد رمزنگاری را به‌روز نکنید نمی‌توانید از این قابلیت استفاده کنید. - Encryption key migration required. Please login through the web vault to update your encryption key. + انتقال کلید رمزگذاری مورد نیاز است. لطفاً از طریق گاوصندوق وب وارد شوید تا کلید رمزگذاری خود را به روز کنید. بیشتر بدانید @@ -1558,9 +1549,6 @@ تم تیره پیش‌‌فرض - - هنگام استفاده از طرح زمینه پیش‌فرض (سیستم) در حالی که حالت تاریک دستگاه شما فعال است، تم تیره را انتخاب کنید - کپی یادداشت‌ها @@ -2655,10 +2643,6 @@ کلیدهای عبور - - {0} ایجاد شد - To state the date in which the cipher was created: Created 03/21/2023 - درخواست @@ -2765,10 +2749,116 @@ ورود با + + گاوصندوق + + + ظاهر + + + امنیت حساب + + + مرکز راهنمایی Bitwarden + + + پیام به پشتیبانی Bitwarden + + + اطلاعات اپ را کپی کن + + + اکنون همگام‌سازی شود + + + باز کردن امکانات + + + پایان جلسه + + + نشست را متوقف کن + + + عبارت اثر انگشت حساب + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + یک ساعت و یک دقیقه + + + یک ساعت و {0} دقیقه + + + {0} ساعت و یک دقیقه + + + {0} ساعت و {1} دقیقه + + + {0} ساعت + + + چارچوب پر کردن خودکار اندروید برای کمک به پر کردن اطلاعات ورود به سیستم در سایر برنامه‌های دستگاه شما استفاده می‌شود. + + + اگر صفحه کلید انتخابی شما از آن پشتیبانی می‌کند، از پر کردن خودکار درون خطی استفاده کنید. در غیر این صورت، از پوشش پیش‌فرض استفاده کنید. + + + گزینه‌های اضافی + + + با برنامه وب ادامه می‌دهید؟ + + + به {0} ادامه می‌دهید؟ + The parameter is an URL, like bitwarden.com. + + + به مرکز راهنمایی ادامه می‌دهید؟ + + + می‌خواهید با پشتیبانی تماس بگیرید؟ + + + به فروشگاه برنامه ادامه می‌دهید؟ + + + با راه‌اندازی ورود دو مرحله‌ای در برنامه وب Bitwarden، حساب خود را ایمن‌تر کنید. + + + می‌توانید کلمه عبور اصلی خود را در برنامه وب Bitwarden تغییر دهید. + + + می‌توانید داده‌ها را در {0} به گاوصندوق خود وارد کنید. + The parameter is an URL, like vault.bitwarden.com. + + + درباره نحوه استفاده از Bitwarden در مرکز راهنمایی بیشتر بیاموزید. + + + چیزی را که به دنبالش هستید پیدا نمی‌کنید؟ با پشتیبانی Bitwarden در bitwarden.com تماس بگیرید. + + + ویژگی‌های بیشتر حساب Bitwarden خود را در برنامه وب کاوش کنید. + + + Bitwarden به شما اجازه می‌دهد تا با استفاده از یک سازمان، موارد گاوصندوق خود را با دیگران به اشتراک بگذارید. در وب سایت bitwarden.com بیشتر بیاموزید. + + + به دیگران کمک کنید بفهمند آیا Bitwarden برای آنها مناسب است یا خیر. از فروشگاه برنامه دیدن کنید و اکنون رتبه بندی کنید. + + + تم تیره را برای استفاده در زمانی که حالت تاریک دستگاه شما در حال استفاده است انتخاب کنید + + + ایجاد شده در {0}، {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + - Too many attempts + تلاش‌ها بیش از حد مجاز بود - Account logged out. + حساب از سیستم خارج شد. diff --git a/src/App/Resources/AppResources.fi.resx b/src/App/Resources/AppResources.fi.resx index 3329cb2c8..0c8be9d7a 100644 --- a/src/App/Resources/AppResources.fi.resx +++ b/src/App/Resources/AppResources.fi.resx @@ -396,9 +396,6 @@ Käy sivustollamme - - Käy sivustollamme saadaksesi apua, uutisia, lähettääksesi meille sähköpostia ja/tai saadaksesi lisätietoa Bitwardenin käytöstä. - SIvusto Label for a website. @@ -451,9 +448,6 @@ Vaihda pääsalasana - - Voit vaihtaa pääsalasanasi bitwarden.com-verkkoholvissa. Haluatko käydä sivustolla nyt? - Sulje @@ -707,9 +701,6 @@ Kaksivaiheinen kirjautuminen - - Kaksivaiheinen kirjautuminen parantaa tilisi suojausta vaatimalla kirjautumisen vahvistuksen salasanan lisäksi todennuslaitteen, ‑sovelluksen, tekstiviestin, puhelun tai sähköpostin avulla. Voit ottaa kaksivaiheisen kirjautumisen käyttöön bitwarden.com‑verkkoholvissa. Haluatko avata sen nyt? - Avaus {0} @@ -1558,9 +1549,6 @@ Koodi luetaan automaattisesti. Oletusarvoinen tumma teema - - Valitse "Oletus (järjestelmä)" -asetuksen oletusarvoinen tumma teema, jota käytetään laitteen tumman tilan ollessa käytössä. - Kopioi merkinnät @@ -2655,10 +2643,6 @@ Haluatko vaihtaa tähän tiliin? Suojausavaimet - - Luotu {0} - To state the date in which the cipher was created: Created 03/21/2023 - Sovellus @@ -2765,6 +2749,112 @@ Haluatko vaihtaa tähän tiliin? Kirjaudutaan sijaintiin + + Holvi + + + Ulkoasu + + + Tilin suojaus + + + Bitwardenin Tukikeskus + + + Ota yhteyttä Bitwardenin asiakaspalveluun + + + Kopioi sovelluksen tiedot + + + Synkronoi nyt + + + Lukitseminen + + + Istunnon aikakatkaisu + + + Istunnon aikakatkaisutoiminto + + + Tilisi tunnistelauseke + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Tunti ja minuutti + + + Tunti ja {0} minuuttia + + + {0} tuntia yksi minuutti + + + {0} tuntia {1} minuuttia + + + {0} tuntia + + + Android Autofill Framework -rajapintaa käytetään kirjautumistietojen täyttöön laitteen muihin sovelluksiin. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Lisäasetukset + + + Avataanko verkkosovellus? + + + Avataanko osoite {0}? + The parameter is an URL, like bitwarden.com. + + + Avataanko Tukikeskus? + + + Avataanko asiakaspalvelu? + + + Avataanko sovelluskauppa? + + + Paranna tilisi suojausta määrittämällä kaksivaiheinen kirjautuminen Bitwarden-verkkosovelluksesta. + + + Voit vaihtaa pääsalasanasi Bitwarden-verkkosovelluksesta. + + + Voit tuoda tietoja holviisi osoitteessa {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Opi käyttämään Bitwardenia Tukikeskuksessa. + + + Etkö löydä etsimääsi? Tavoitat Bitwardenin asiakaspalvelun osoitteesta bitwarden.com. + + + Tutustu Bitwarden-tilisi muihin omimaisuuksiin verkkosovelluksessa. + + + Bitwarden mahdollistaa holvisi sisällön jakamisen organisaation avulla. Lisätietoja saat bitwarden.com-sivustolta. + + + Auta muita selvittämään sopiiko Bitwarden heille. Arvioi se sovelluskaupassa nyt. + + + Valitse tumma teema kun laitteesi tumma tila on käytössä. + + + Luotu {0} - {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Liian monta yritystä diff --git a/src/App/Resources/AppResources.fil.resx b/src/App/Resources/AppResources.fil.resx index c47c65f3e..f7be063a8 100644 --- a/src/App/Resources/AppResources.fil.resx +++ b/src/App/Resources/AppResources.fil.resx @@ -396,9 +396,6 @@ Bisitahin ang website namin - - Bisitahin ang website namin para magpatulong, makibalita, mag-email sa amin, at/o matuto pa sa paggamit ng Bitwarden. - Website Label for a website. @@ -451,9 +448,6 @@ Palitan ang master password - - Maaari mong palitan ang iyong master password sa bitwarden.com web vault. Gusto mo bang bisitahin ang website ngayon? - Isara @@ -707,9 +701,6 @@ Dalawang-hakbang na pag-log in - - Ginagawang mas ligtas ng dalawang-hakbang na pag-log in ang account mo sa pamamagitan ng pagpilit sa iyo na beripikahin ang iyong login sa iba pang device tulad ng security key, app na awtentikador, SMS, tawag sa telepono, o email. Maaari itong i-set up sa bitwarden.com web vault. Gusto mo bang bumisita sa website ngayon? - Buksan gamit ang {0} @@ -1558,9 +1549,6 @@ Awtomatikong itong magsa-scan. Default na madilim na tema - - Piliin ang gagamiting madilim na tema habang nakatakda ang Default (Sistema) na tema at naka-dark mode ang device mo. - Kopyahin ang tala @@ -2655,10 +2643,6 @@ Gusto mo bang pumunta sa account na ito? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ Gusto mo bang pumunta sa account na ito? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.fr.resx b/src/App/Resources/AppResources.fr.resx index 7baddc274..c1f8b4df9 100644 --- a/src/App/Resources/AppResources.fr.resx +++ b/src/App/Resources/AppResources.fr.resx @@ -396,9 +396,6 @@ Visitez notre site web - - Visitez notre site web pour obtenir de l'aide, lire les actualités, nous écrire et/ou apprendre à mieux utiliser Bitwarden. - Site web Label for a website. @@ -451,9 +448,6 @@ Changer le mot de passe principal - - Vous pouvez changer votre mot de passe principal depuis le coffre web de bitwarden.com. Voulez-vous visiter le site web maintenant ? - Fermer @@ -707,9 +701,6 @@ Authentification à deux facteurs - - L'authentification à deux facteurs rend votre compte plus sûr en vous demandant de vérifier votre connexion avec un autre dispositif tel qu'une clé de sécurité, une application d'authentification, un SMS, un appel téléphonique ou un courriel. L'authentification à deux facteurs peut être configurée sur le coffre web de bitwarden.com. Voulez-vous visiter le site web maintenant ? - Déverrouiller avec {0} @@ -916,7 +907,7 @@ La numérisation se fera automatiquement. Copier le TOTP - Si un identifiant possède une clé d'authentification, copiez le code de vérification TOTP dans votre presse-papiers lorsque vous saisissez automatiquement l'identifiant. + Si un identifiant a une clé d'authentification, copier le code de vérification TOTP dans votre presse-papier quand vous remplissez automatiquement l'identifiant. Copier TOTP automatiquement @@ -1558,9 +1549,6 @@ La numérisation se fera automatiquement. Thème sombre par défaut - - Choisissez le thème sombre à utiliser lorsque le thème (système) par défaut est utilisé alors que le mode sombre de votre appareil est en cours d'utilisation. - Copier la note @@ -2635,7 +2623,7 @@ Voulez-vous basculer vers ce compte ? Connecté ! - Approve with my other device + Approuver sur mon autre appareil Demander l'approbation de l'administrateur @@ -2644,7 +2632,7 @@ Voulez-vous basculer vers ce compte ? Approuver avec le mot de passe principal - Turn off using a public device + Décochez si vous utilisez un appareil public Se souvenir de cet appareil @@ -2655,10 +2643,6 @@ Voulez-vous basculer vers ce compte ? Clés d'accès - - Créée le {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2702,10 +2686,10 @@ Voulez-vous basculer vers ce compte ? Problème pour vous connecter ? - Logging in as {0} + Connecté en tant que {0} - Vault timeout action changed to log out + Délai d'expiration du coffre a été changé pour se déconnecter Cet élément ne peut pas être déplacé vers l'organisation, car celle-ci dispose déjà d'un élément avec la même clé d'accès. @@ -2754,10 +2738,10 @@ Voulez-vous basculer vers ce compte ? Impossible de modifier des URI multiples à la fois - Login approved + Connexion approuvée - Log in with device must be set up in the settings of the Bitwarden app. Need another option? + La connexion avec l'appareil doit être configurée dans les paramètres de l'application Bitwarden. Besoin d'une autre option ? Se connecter avec l'appareil @@ -2765,6 +2749,112 @@ Voulez-vous basculer vers ce compte ? Connexion sur + + Coffre + + + Apparence + + + Sécurité du compte + + + Centre d'aide Bitwarden + + + Contacter le support Bitwarden + + + Copier les informations de l'application + + + Synchroniser maintenant + + + Options de déverrouillage + + + Délai d'expiration de la session + + + Action après délai d'expiration de la session + + + La phrase d'empreinte du compte + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Une heure et une minute + + + Une heure et {0} minutes + + + {0} heures et une minute + + + {0} heures et {1} minutes + + + {0} heures + + + Le framework de saisie automatique d'Android est utilisé pour vous accompagner à remplir les informations de connexion dans les autres applications de votre appareil. + + + Utilisez le remplissage automatique en ligne si votre clavier sélectionné le supporte. Sinon, utilisez la superposition par défaut. + + + Options supplémentaires + + + Continuer vers l'application web ? + + + Continuer vers {0} ? + The parameter is an URL, like bitwarden.com. + + + Continuer vers le centre d'aide ? + + + Continuer vers le contact du support ? + + + Continuer vers la boutique des applications ? + + + Rendez votre compte plus sécurisé en configurant l'authentification à deux facteurs dans l'application web Bitwarden. + + + Vous pouvez modifier votre mot de passe principal dans l'application web Bitwarden. + + + Vous pouvez importer des données dans votre coffre sur {0}. + The parameter is an URL, like vault.bitwarden.com. + + + En savoir plus sur l'utilisation de Bitwarden dans le centre d'aide. + + + Vous ne trouvez pas ce que vous cherchez ? Contactez le support de Bitwarden sur bitwarden.com. + + + Explorez plus de fonctionnalités de votre compte Bitwarden sur l'application Web. + + + Bitwarden vous permet de partager les éléments de votre coffre avec les autres en utilisant une organisation. Apprenez-en plus sur le site bitwarden.com. + + + Aidez les autres à savoir si Bitwarden est fait pour eux. Visitez la boutique des applications et laissez une évaluation dès maintenant. + + + Choisissez le thème sombre à utiliser lorsque le mode sombre de votre appareil est en cours d'utilisation + + + Créé le {0} à {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Trop de tentatives diff --git a/src/App/Resources/AppResources.gl.resx b/src/App/Resources/AppResources.gl.resx index aa8c6ff88..7e750de59 100644 --- a/src/App/Resources/AppResources.gl.resx +++ b/src/App/Resources/AppResources.gl.resx @@ -396,9 +396,6 @@ Visit our website - - Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden. - Website Label for a website. @@ -451,9 +448,6 @@ Change master password - - You can change your master password on the bitwarden.com web vault. Do you want to visit the website now? - Close @@ -707,9 +701,6 @@ Two-step login - - Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be set up on the bitwarden.com web vault. Do you want to visit the website now? - Unlock with {0} @@ -916,7 +907,7 @@ Scanning will happen automatically. Copy TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy note @@ -2367,7 +2355,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2655,10 +2643,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.he.resx b/src/App/Resources/AppResources.he.resx index 6fd9fc0ab..47fa463d6 100644 --- a/src/App/Resources/AppResources.he.resx +++ b/src/App/Resources/AppResources.he.resx @@ -396,9 +396,6 @@ בקרו באתר שלנו - - בקר באתר שלנו לקבלת עזרה, חדשות, פניות במייל, ו\או עבור הסברים כיצד להשתמש בBitwarden. - אתר Label for a website. @@ -451,9 +448,6 @@ החלף סיסמה ראשית - - באפשרותך לשנות את הסיסמה הראשית שלך דרך הכספת באתר bitwarden.com. האם ברצונך לפתוח את האתר כעת? - סגירה @@ -707,9 +701,6 @@ התחברות בשני-שלבים - - התחברות בשני-שלבים הופכת את החשבון שלך למאובטח יותר בכך שאתה נדרש לוודא בכל כניסה בעזרת מכשיר אחר כדוגמת מפתח אבטחה, תוכנת אימות, SMS, שיחת טלפון, או אימייל. ניתן להפעיל את "התחברות בשני-שלבים" בכספת שבאתר bitwarden.com. האם ברצונך לפתוח את האתר כעת? - בטל נעילה עם {0} @@ -917,7 +908,7 @@ Scanning will happen automatically. העתק TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1560,9 +1551,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - העתק פתק @@ -2369,7 +2357,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2657,10 +2645,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2767,6 +2751,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.hi.resx b/src/App/Resources/AppResources.hi.resx index b0705cb6f..8c0356433 100644 --- a/src/App/Resources/AppResources.hi.resx +++ b/src/App/Resources/AppResources.hi.resx @@ -396,9 +396,6 @@ हमारे वेबसाइट पर जाएं - - मदद लेने, खबर लेने, हमें ईमेल करने, और/या बिटवार्डन के इस्तेमाल के बारे में ज़्यादा जानने के लिए हमारी वेबसाइट पर जाएं। - वेबसाइट Label for a website. @@ -451,9 +448,6 @@ मुख्य पासवर्ड बदलें - - मुख्य पासवर्ड बिटवार्डन वेब तिजोरी पर जाकर बदला जा सकता है। वेबसाइट पर अभी जाएं? - बंद करें @@ -707,9 +701,6 @@ द्वि-चरणीय लॉगिन - - Two-step login makes your account more secure by requiring you to enter a security code from an authenticator app whenever you log in. Two-step login can be enabled on the bitwarden.com web vault. Do you want to visit the website now? - {0} से अनलॉक करें @@ -916,7 +907,7 @@ Scanning will happen automatically. QR कोड कॉपी करें - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - नोट कॉपी करें @@ -2655,10 +2643,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.hr.resx b/src/App/Resources/AppResources.hr.resx index 8b7e2efb7..b12decab3 100644 --- a/src/App/Resources/AppResources.hr.resx +++ b/src/App/Resources/AppResources.hr.resx @@ -396,9 +396,6 @@ Posjeti naš web - - Posjeti naš web kako bi pronašli pomoć, vijesti, poslali nam e-poštu i/ili saznali više o tome kako koristiti Bitwarden. - Web stranica Label for a website. @@ -451,9 +448,6 @@ Promjena glavne lozinke - - Svoju glavnu lozinku možeš promijeniti na web trezoru. Želiš li sada posjetiti bitwarden.com? - Zatvori @@ -707,9 +701,6 @@ Prijava dvostrukom autentifikacijom - - Prijava dvostrukom autentifikacijom čini tvoj račun još sigurnijim tako što će zahtijevati potvrdu prijave putem drugog uređaja kao što su sigurnosni ključ, autentifikatorske aplikacije, SMS-om, pozivom ili e-poštom. Prijavu dvostrukom autentifikacijom možeš omogućiti na web trezoru. Želiš li sada posjetiti bitwarden.com? - Otključaj s {0} @@ -954,7 +945,7 @@ Ne možeš koristiti ovu značajku dok ne ažuriraš svoj ključ za šifriranje. - Encryption key migration required. Please login through the web vault to update your encryption key. + Potrebna je migracija ključa za šifriranje. Prijavi se na web trezoru za ažuriranje ključa za šifriranje. Saznaj više @@ -1557,9 +1548,6 @@ Zadana tamna tema - - Odaberi korištenje tamnne teme kada ju uređaj zadano koristi. - Kopiraj bilješku @@ -1752,10 +1740,10 @@ Confirmation alert message when soft-deleting a cipher. - Biometrijsko otključavanje za ovaj račun je onemogućeno do potvrde glavne lozinke. + Biometrijsko otključavanje za ovaj račun nije omogućeno dok se ne potvrdi glavna lozinka. - Biometrijsko otključavanje auto-ispune za ovaj račun je onemogućeno do potvrde glavne lozinke. + Biometrijsko otključavanje auto-ispune za ovaj račun nije omogućeno dok se ne potvrdi glavna lozinka. Uključi sinkronizaciju pri osvježavanju @@ -1773,7 +1761,7 @@ Identifikator organizacije - Trenutno nije moguća prijava sa SSO. + Trenutno nije moguća SSO prijava Postavi glavnu lozinku @@ -2608,7 +2596,7 @@ Nema stavki koje odgovaraju pretrazi - US + SAD EU @@ -2647,38 +2635,34 @@ Zapamti ovaj uređaj - Passkey + Pristupni ključ - Passkeys - - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 + Pristupni ključevi Aplikacija - You cannot edit passkey application because it would invalidate the passkey + Ne možeš ažurirati aplikaciju za pristupne ključeve jer bi se time poništio postojeći pristupni ključ - Passkey will not be copied + Pristupni ključ neće biti kopiran - The passkey will not be copied to the cloned item. Do you want to continue cloning this item? + Pristupni ključ se neće kopirati u kloniranu stavku. Želiš li nastaviti klonirati ovu stavku? Kopiraj aplikaciju - Available for two-step login + Dostupno za dvostruku autentifikaciju - Master password re-prompt help + Pomoć za ponovno traženje glavne lozinke - Unlocking may fail due to insufficient memory. Decrease your KDF memory settings or set up biometric unlock to resolve. + Otključavanje možda neće uspjeti zbog nedostatka memorije. Smanji postavke KDF memorije ili postavi biometrijsko otključavanje. Nevažeći API ključ @@ -2705,7 +2689,7 @@ Radnja isteka trezora promijenjena je u odjavu - This item cannot be shared with the organization because there is one already with the same passkey. + Ova se stavka ne može dijeliti s organizacijom jer već postoji stavka s istim pristupnim ključem. Blokiraj auto-ispunu @@ -2762,10 +2746,116 @@ Prijava na + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Stvoreno {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + - Too many attempts + Previše pokušaja - Account logged out. + Račun odjavljen. diff --git a/src/App/Resources/AppResources.hu.resx b/src/App/Resources/AppResources.hu.resx index 6c6ea489f..f11c5a942 100644 --- a/src/App/Resources/AppResources.hu.resx +++ b/src/App/Resources/AppResources.hu.resx @@ -396,9 +396,6 @@ Fejlesztői webhely felkeresése - - A fejlesztői webhely felkeresése segítségért, hírekért, email küldése a fejlesztőknek és/vagy további információk a Bitwarden használatáról. - Weboldal Label for a website. @@ -451,9 +448,6 @@ Mesterjelszó megváltoztatása - - Mesterjelszavadat a bitwarden.com webes széfében tudod megváltoztatni. Szeretnéd meglátogatni most a weboldalt? - Bezár @@ -707,9 +701,6 @@ Kétlépcsős bejelentkezés - - A kétlépcsős bejelentkezés biztonságosabbá teszi a fiókot, mert egy másik eszközzel, például biztonsági kulccsal, hitelesítőalkalmazással, sms- segítségével, telefonhívással vagy emaillel is jóvá kell hagyni a bejelentkezést. A kétlépcsős bejelentkezés a bitwarden.com webes széfjében kapcsolható be. Megnyitásra kerüljön a webhely most? - Kinyitás ezzel: {0} @@ -1557,9 +1548,6 @@ Alapértelmezett sötét téma - - A sötét téma választása használatra, ha az Alapértelmezett (Rendszer) témát használjuk az eszköz bekapcsolt sötét módja mellett. - Jegyzet másolása @@ -2653,10 +2641,6 @@ Szeretnénk átváltani erre a fiókra? Hozzáférési kulcsok - - Létrehozta {0} - To state the date in which the cipher was created: Created 03/21/2023 - Alkalmazás @@ -2679,7 +2663,7 @@ Szeretnénk átváltani erre a fiókra? Mesterjelszó újbóli bekérés súgó - Unlocking may fail due to insufficient memory. Decrease your KDF memory settings or set up biometric unlock to resolve. + A feloldás meghiúsulhat, mert nincs elegendő memória. A megoldáshoz csökkentsük a KDF memóriabeállításait. Érvénytelen API kulcs @@ -2763,6 +2747,112 @@ Szeretnénk átváltani erre a fiókra? Bejelentkezés: + + Széf + + + Megjelenés + + + Fiókbiztonság + + + Bitwardsn Segítségközpont + + + Bitwarden ügyfélszolgálat + + + Alkalmazás információ másolása + + + Szinkronizálás most + + + Zárolási opciók + + + Munkamenet időkifutás + + + Munkamenet időkifutási művelet + + + Fiók ujjnyomat kifejezés + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Egy óra és egy perc + + + Egy óra és {0} perc + + + {0} óra és egy perc + + + {0} óra és {1} perc + + + {0} óra + + + Az Android automatikus kitöltési keretrendszere segít a bejelentkezési adatok kitöltésében az eszközön lévő más alkalmazásokba. + + + Használjuk a sorközi automatikus kitöltést, ha a kiválasztott billentyűzet azt támogatja. Ellenkező esetben használjuk az alapértelmezett átfedést. + + + Kiegészítő opciók + + + Tovább a webes alkalmazáshoz? + + + Tovább: {0}? + The parameter is an URL, like bitwarden.com. + + + Tovább a Segítség Központhoz? + + + Tovább az ügyfélszolgálathoz? + + + Tovább az alkalmazásboltba? + + + Tegyük biztonságosabbá a fiókot a kétlépcsős bejelentkezés beállításával a Bitwarden webalkalmazásban. + + + A mesterjelszó a Bitwarden webalkalmazásban módosítható. + + + Adatokat importálhatunk a széfbe itt: {0}. + The parameter is an URL, like vault.bitwarden.com. + + + További információ a Bitwarden használatáról a Súgó Központban. + + + Nem találjuk, amit keresünk? Lépjünk kapcsolatba a Bitwarden ügyfélszolgálatával a bitwarden.com oldalon. + + + Fedezzük fel a Bitwarden-fiók további funkcióit a webalkalmazásban. + + + A Bitwarden lehetővé teszi a széf elemeinek megosztását másokkal egy szervezet használatával. További információ a bitwarden.com webhelyen. + + + Segítsünk másoknak megtudni, hogy a Bitwarden megfelelő-e számukra. Látogassunk el az alkalmazásboltba és értékeljünk most. + + + Válasszuk a sötét témát az eszköz sötét módban történő használata esetén. + + + Létrehozta: {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Túl sok próbálkozás történt diff --git a/src/App/Resources/AppResources.id.resx b/src/App/Resources/AppResources.id.resx index 3e531b0af..732a0b7ff 100644 --- a/src/App/Resources/AppResources.id.resx +++ b/src/App/Resources/AppResources.id.resx @@ -285,7 +285,7 @@ Akun telah ditambahkan - Would you like to switch to it now? + Apakah anda ingin beralih akun sekarang? Kata Sandi Utama @@ -396,9 +396,6 @@ Kunjungi Situs Web Kami - - Kunjungi situs web kami untuk mendapatkan bantuan, berita, email kami, dan/atau mempelajari lebih lanjut tentang bagaimana menggunakan Bitwarden. - Situs web Label for a website. @@ -451,9 +448,6 @@ Ubah Kata Sandi Utama - - Anda dapat mengubah kata sandi utama Anda di brankas web bitwarden.com. Anda ingin mengunjungi situs web sekarang? - Tutup @@ -584,7 +578,7 @@ Petunjuk kata sandi utama dapat membantu Anda mengingat kata sandi Anda jika Anda melupakannya. - Master password must be at least {0} characters long. + Kata sandi utama sedikitnya harus {0} karakter. Angka Minimum @@ -707,9 +701,6 @@ Info masuk dua langkah - - Two-step login makes your account more secure by requiring you to enter a security code from an authenticator app whenever you log in. Two-step login can be enabled on the bitwarden.com web vault. Do you want to visit the website now? - Buka denga {0} @@ -775,10 +766,10 @@ Diaktifkan - Off + Mati - On + Aktif Status @@ -916,10 +907,10 @@ Proses pindai akan terjadi secara otomatis. Salin TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + Jika login memiliki kunci autentikator, salin kode verifikasi TOTP ke clip-board anda, saat anda mengisi login secara otomatis. - Copy TOTP automatically + Salin TOTP secara otomatis Keanggotaan premium diperlukan untuk menggunakan fitur ini. @@ -955,7 +946,7 @@ Proses pindai akan terjadi secara otomatis. Anda tidak dapat menggunakan fitur ini sampai Anda memperbarui kunci enkripsi Anda. - Encryption key migration required. Please login through the web vault to update your encryption key. + Diperlukan migrasi kunci enkripsi. Silakan masuk melalui brankas web untuk memperbarui kunci enkripsi Anda. Pelajari Lebih Lanjut @@ -1107,7 +1098,7 @@ Proses pindai akan terjadi secara otomatis. Nona - Mx + Bapak/Ibu November @@ -1143,10 +1134,10 @@ Proses pindai akan terjadi secara otomatis. Masa Berlaku - Show website icons + Tampilkan ikon website - Show a recognizable image next to each login. + Tampilkan gambar pengenal di samping setiap login. URL Server Ikon @@ -1387,13 +1378,13 @@ Proses pindai akan terjadi secara otomatis. Cari koleksi - Search file Sends + Cari berkas pada Sends - Search text Sends + Cari teks pada Sends - Search {0} + Cari {0} ex: Search Logins @@ -1556,10 +1547,7 @@ Proses pindai akan terjadi secara otomatis. Bawaan (Sistem) - Default dark theme - - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. + Tema gelap bawaan Catatan Salinan @@ -1586,13 +1574,13 @@ Proses pindai akan terjadi secara otomatis. 'Solarized Dark' is the name of a specific color scheme. It should not be translated. - Auto-fill blocked URIs + Isi otomatis URI yang diblokir - Ask to add login + Minta untuk penambahan login - Ask to add an item if one isn't found in your vault. + Minta untuk menambahkan item jika tidak ditemukan di brankas Anda. Saat Aplikasi Memulai Ulang @@ -1753,10 +1741,10 @@ Proses pindai akan terjadi secara otomatis. Confirmation alert message when soft-deleting a cipher. - Biometric unlock for this account is disabled pending verification of master password. + Buka kunci biometrik untuk akun ini dinonaktifkan sambil menunggu verifikasi kata sandi utama. - Autofill biometric unlock for this account is disabled pending verification of master password. + Buka kunci biometrik otomatis untuk akun ini dinonaktifkan sambil menunggu verifikasi kata sandi utama. Aktifkan sinkronisasi saat refresh @@ -1886,7 +1874,7 @@ Proses pindai akan terjadi secara otomatis. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Text + Teks Teks @@ -1905,16 +1893,16 @@ Proses pindai akan terjadi secara otomatis. Berkas yang ingin Anda kirim. - File type is selected. + Jenis file dipilih. - File type is not selected, tap to select. + Jenis file tidak dipilih, ketuk untuk memilih. - Text type is selected. + Jenis teks telah dipilih. - Text type is not selected, tap to select. + Jenis teks tidak dipilih, ketuk untuk memilih. Tanggal Penghapusan @@ -2143,16 +2131,16 @@ Proses pindai akan terjadi secara otomatis. Kebijakan organisasi Anda memengaruhi waktu tunggu brankas Anda. Batas maksimal Waktu Tunggu Brankas yang diizinkan adalah {0} jam dan {1} menit - Your organization policies are affecting your vault timeout. Maximum allowed vault timeout is {0} hour(s) and {1} minute(s). Your vault timeout action is set to {2}. + Kebijakan organisasi Anda memengaruhi batas waktu vault Anda. Batas waktu brankas maksimum yang diizinkan adalah {0} jam dan {1} menit. Tindakan batas waktu vault Anda diatur ke {2}. - Your organization policies have set your vault timeout action to {0}. + Kebijakan organisasi anda telah menetapkan tindakan batas waktu vault ke {0}. - Your vault timeout exceeds the restrictions set by your organization. + Batas waktu brankas anda melebihi batasan yang ditetapkan oleh organisasi Anda. - One or more organization policies prevents your from exporting your individual vault. + Satu atau beberapa kebijakan organiasasi mencegah anda untuk mengekspor brankas pribadi anda. Tambahkan Akun @@ -2167,7 +2155,7 @@ Proses pindai akan terjadi secara otomatis. Keluar - Switched to next available account + Beralih ke akun berikutnya yang tersedia Akun terkunci @@ -2176,16 +2164,16 @@ Proses pindai akan terjadi secara otomatis. Berhasil keluar - Account removed successfully + Akun berhasil dihapus Hapus akun - Deleting your account is permanent + Menghapus akun anda bersifat permanen - Your account and all vault data will be erased and unrecoverable. Are you sure you want to continue? + Akun anda dan semua data brankas akan terhapus dan tidak dapat dipulihkan. Apakah anda yakin untuk melanjutkan? Hapus akun anda @@ -2197,7 +2185,7 @@ Proses pindai akan terjadi secara otomatis. Kode verifikasi tidak valid. - Request one-time password + Meminta kata sandi sekali pakai Kirim Kode @@ -2206,10 +2194,10 @@ Proses pindai akan terjadi secara otomatis. Mengirim... - Copy Send link on save + Salin tautan Send saat menyimpan - Sending code + Mengirim kode Memverifikasi... @@ -2221,107 +2209,107 @@ Proses pindai akan terjadi secara otomatis. Kode verifikasi telah dikirim ke email Anda. - An error occurred while sending a verification code to your email. Please try again + Terdapat kesalahan terjadi saat mengirim kode verifikasi ke email anda. Silahkan coba lagi Masukkan kode verifikasi yang dikirim ke email anda - Submit crash logs + Kirim catatan kerusakan - Help Bitwarden improve app stability by submitting crash reports. + Bantu Bitwarden meningkatkan stabilitas aplikasi dengan mengirim laporan kerusakan. - Options are expanded, tap to collapse. + Opsi diperluas, ketuk untuk menciutkan. - Options are collapsed, tap to expand. + Opsi diciutkan, ketuk untuk memperluas. - Uppercase (A to Z) + Huruf besar (A ke Z) - Lowercase (A to Z) + Huruf kecil (Z ke A) - Numbers (0 to 9) + Angka (0 ke 9) - Special characters (!@#$%^&*) + Karakter spesial (!@#$%^&*) - Tap to go back + Ketuk untuk kembali - Password is visible, tap to hide. + Kata sandi terlihat, ketuk untuk menyembunyikannya. - Password is not visible, tap to show. + Kata sandi tidak terlihat, ketuk untuk menampilkannya. - Filter items by vault + Saring item berdasarkan brankas - All vaults + Semua brankas - Vaults + Brankas - Vault: {0} + Brankas: {0} - All + Semua TOTP - Verification codes + Kode Verifikasi - Premium subscription required + Diperlukan langganan premium - Cannot add authenticator key? + Tidak dapat menambah kunci autentikator? - Scan QR Code + Pindai Kode QR - Cannot scan QR Code? + Tidak dapat memindai Kode QR? - Authenticator key + Kunci Autentikator - Enter key manually + Masukkan kunci secara manual - Add TOTP + Tambahkan TOTP - Set up TOTP + Atur TOTP - Once the key is successfully entered, -select Add TOTP to store the key safely + Setelah kunci berhasil dimasukkan, +pilih Tambahkan TOTP untuk menyimpan kunci dengan aman - Setting your lock options to “Never” keeps your vault available to anyone with access to your device. If you use this option, you should ensure that you keep your device properly protected. + Mengatur opsi kunci Anda ke "Tidak Pernah" membuat brankas Anda tetap tersedia bagi siapa saja yang memiliki akses ke perangkat Anda. Jika Anda menggunakan opsi ini, Anda harus memastikan bahwa perangkat Anda terlindungi dengan baik. - One or more of the URLs entered are invalid. Please revise it and try to save again. + Satu atau beberapa URL yang dimasukkan tidak valid. Silakan revisi dan coba simpan lagi. - We were unable to process your request. Please try again or contact us. + Kami tidak dapat memproses permintaan Anda. Silakan coba lagi atau hubungi kami. - Allow screen capture + Mengizinkan penangkapan layar - Are you sure you want to turn on screen capture? + Apakah Anda yakin ingin mengaktifkan tangkapan layar? Login requested @@ -2366,7 +2354,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2654,10 +2642,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2764,6 +2748,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.it.resx b/src/App/Resources/AppResources.it.resx index 9b06a90d4..43ae92ffb 100644 --- a/src/App/Resources/AppResources.it.resx +++ b/src/App/Resources/AppResources.it.resx @@ -254,7 +254,7 @@ Password principale non valida. Riprova. - PIN errato. Riprova. + PIN non valido. Riprova. Avvia @@ -396,9 +396,6 @@ Visita il nostro sito - - Visita il nostro sito per ottenere aiuto, notizie, mandarci un'email e imparare di più su come usare Bitwarden. - Sito web Label for a website. @@ -451,9 +448,6 @@ Cambia password principale - - Puoi cambiare la tua password principale sulla cassaforte online di bitwarden.com. Vuoi visitare ora il sito? - Chiudi @@ -707,9 +701,6 @@ Verifica in due passaggi - - La verifica in due passaggi rende il tuo account più sicuro richiedendoti di verificare il tuo login usando un altro dispositivo come una chiave di sicurezza, app di autenticazione, SMS, telefonata, o email. Può essere abilitata nella cassaforte web su bitwarden.com. Vuoi visitare il sito? - Sblocca con {0} @@ -1557,9 +1548,6 @@ Tema scuro predefinito - - Scegli il tema scuro da usare quando il tema predefinito di sistema è in modalità scura. - Copia note @@ -2654,10 +2642,6 @@ Vuoi passare a questo account? Passkey - - Creato {0} - To state the date in which the cipher was created: Created 03/21/2023 - Applicazione @@ -2764,6 +2748,112 @@ Vuoi passare a questo account? Accedendo su + + Cassaforte + + + Aspetto + + + Sicurezza dell'account + + + Centro assistenza Bitwarden + + + Contatta assistenza Bitwarden + + + Copia le informazioni dell'app + + + Sincronizza ora + + + Opzioni di sblocco + + + Timeout della sessione + + + Azione timeout cassaforte + + + Frase impronta dell'account + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Un'ora e un minuto + + + Un'ora e {0} minuti + + + {0} ore e un minuto + + + {0} ore e {1} minuti + + + {0} ore + + + La struttura di riempimento automatico di Android è usata per aiutare a inserire le tue credenziali su altre app nel tuo dispositivo. + + + Usa il riempimento automatico in linea se la tua tastiera lo supporta. Altrimenti, usa la sovrapposizione predefinita. + + + Opzioni aggiuntive + + + Continua sull'app web? + + + Continua su {0}? + The parameter is an URL, like bitwarden.com. + + + Continua sul centro assistenza? + + + Continua per contattare l'assistenza? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Creato il {0} alle {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Troppi tentativi diff --git a/src/App/Resources/AppResources.ja.resx b/src/App/Resources/AppResources.ja.resx index 63bfda861..7346e6a14 100644 --- a/src/App/Resources/AppResources.ja.resx +++ b/src/App/Resources/AppResources.ja.resx @@ -396,9 +396,6 @@ ウェブサイトを開く - - 私たちのウェブサイトでヘルプ、ニュース、問い合わせや Bitwarden の詳しい使い方をチェックしてください。 - ウェブサイト Label for a website. @@ -451,9 +448,6 @@ マスターパスワードの変更 - - マスターパスワードは bitwarden.com ウェブ保管庫で変更できます。ウェブサイトを開きますか? - 閉じる @@ -707,9 +701,6 @@ 2段階認証 - - 2段階認証を有効にすると、他の端末でログインする際にセキュリティキー、認証アプリ、SMS、電話、またはメールで認証することが必要となり,アカウントの安全性が高まります。2段階認証を有効にするのはBitwarden.comのウェブ保管庫でできます。ウェブサイトに進みますか? - {0}でロック解除 @@ -1558,9 +1549,6 @@ デフォルトのダークテーマ - - デバイスでダークモードが有効になっている間、デフォルト(システム)テーマを使用するときに使用するダークテーマを選択してください - メモをコピー @@ -2654,10 +2642,6 @@ パスキー - - {0} に作成 - To state the date in which the cipher was created: Created 03/21/2023 - アプリ @@ -2764,6 +2748,112 @@ ログイン先 + + 保管庫 + + + 外観 + + + アカウントのセキュリティ + + + Bitwarden ヘルプセンター + + + Bitwarden サポートへの問い合わせ + + + アプリ情報をコピー + + + 今すぐ同期 + + + ロック解除オプション + + + セッションタイムアウト + + + セッションタイムアウト時のアクション + + + アカウントのフィンガープリントフレーズ + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + 1 時間1分 + + + 1時間{0}分 + + + {0}時間1分 + + + {0}時間{1}分 + + + {0}時間 + + + Android Autofill Frameworkは、お使いのデバイス上の他のアプリケーションにログイン情報を入力する際に使用されます。 + + + 選択したキーボードがインライン入力をサポートしている場合は、インライン入力を使用します。そうでない場合は、デフォルトの自動入力を使用します。 + + + 追加オプション + + + ウェブアプリに進みますか? + + + {0} に進みますか? + The parameter is an URL, like bitwarden.com. + + + ヘルプセンターに進みますか? + + + サポートに連絡しますか? + + + アプリストアに進みますか? + + + Bitwarden ウェブアプリで2段階認証を設定すると、アカウントがより安全になります。 + + + Bitwarden ウェブアプリでマスターパスワードを変更できます。 + + + {0} の保管庫にデータをインポートできます。 + The parameter is an URL, like vault.bitwarden.com. + + + Bitwarden のヘルプセンターで使用方法の詳細をご覧ください。 + + + お探しのものが見つかりませんか? bitwarden.com で Bitwarden のサポートにご連絡ください。 + + + Bitwarden アカウントの機能をウェブアプリでご確認ください。 + + + Bitwarden は組織を使って保管庫アイテムを他の人と共有することができます。詳細は bitwarden.com ウェブサイトをご覧ください。 + + + Bitwarden の使いやすさを他のユーザーにも知ってもらいましょう。アプリストアでレビューをしてください。 + + + お使いのデバイスがダークモードの時に使用するダークテーマを選択してください + + + 作成日時 {0} {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + 試行回数が多すぎます diff --git a/src/App/Resources/AppResources.ka.resx b/src/App/Resources/AppResources.ka.resx index aa8c6ff88..7e750de59 100644 --- a/src/App/Resources/AppResources.ka.resx +++ b/src/App/Resources/AppResources.ka.resx @@ -396,9 +396,6 @@ Visit our website - - Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden. - Website Label for a website. @@ -451,9 +448,6 @@ Change master password - - You can change your master password on the bitwarden.com web vault. Do you want to visit the website now? - Close @@ -707,9 +701,6 @@ Two-step login - - Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be set up on the bitwarden.com web vault. Do you want to visit the website now? - Unlock with {0} @@ -916,7 +907,7 @@ Scanning will happen automatically. Copy TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy note @@ -2367,7 +2355,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2655,10 +2643,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.kn.resx b/src/App/Resources/AppResources.kn.resx index c4c562319..153d14b50 100644 --- a/src/App/Resources/AppResources.kn.resx +++ b/src/App/Resources/AppResources.kn.resx @@ -397,9 +397,6 @@ ನಮ್ಮ ವೆಬ್‌ಸೈಟ್‌ ಅನ್ನು ಭೇಟಿಮಾಡಿ - - ಸಹಾಯ ಪಡೆಯಲು ನಮ್ಮ ವೆಬ್‌ಸೈಟ್‌ಗೆ ಭೇಟಿ ನೀಡಿ, ಸುದ್ದಿ ಮಾಡಿ, ನಮಗೆ ಇಮೇಲ್ ಮಾಡಿ ಮತ್ತು / ಅಥವಾ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಅನ್ನು ಹೇಗೆ ಬಳಸುವುದು ಎಂಬುದರ ಕುರಿತು ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ. - ಜಾಲತಾಣ Label for a website. @@ -452,9 +449,6 @@ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಬದಲಾಯಿಸಿ - - ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ನೀವು bitwarden.com ವೆಬ್ ವಾಲ್ಟ್‌ನಲ್ಲಿ ಬದಲಾಯಿಸಬಹುದು. ನೀವು ಈಗ ವೆಬ್‌ಸೈಟ್‌ಗೆ ಭೇಟಿ ನೀಡಲು ಬಯಸುವಿರಾ? - ಮುಚ್ಚಿ @@ -708,9 +702,6 @@ ಎರಡು ಹಂತದ ಲಾಗಿನ್ - - ಭದ್ರತಾ ಕೀ, ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್, ಎಸ್‌ಎಂಎಸ್, ಫೋನ್ ಕರೆ ಅಥವಾ ಇಮೇಲ್‌ನಂತಹ ಮತ್ತೊಂದು ಸಾಧನದೊಂದಿಗೆ ನಿಮ್ಮ ಲಾಗಿನ್ ಅನ್ನು ಪರಿಶೀಲಿಸುವ ಅಗತ್ಯವಿರುವ ಎರಡು ಹಂತದ ಲಾಗಿನ್ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಹೆಚ್ಚು ಸುರಕ್ಷಿತಗೊಳಿಸುತ್ತದೆ. ಬಿಟ್ವಾರ್ಡೆನ್.ಕಾಮ್ ವೆಬ್ ವಾಲ್ಟ್ನಲ್ಲಿ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು. ನೀವು ಈಗ ವೆಬ್‌ಸೈಟ್‌ಗೆ ಭೇಟಿ ನೀಡಲು ಬಯಸುವಿರಾ? - {0} ನೊಂದಿಗೆ ಅನ್ಲಾಕ್ ಮಾಡಿ @@ -917,7 +908,7 @@ Scanning will happen automatically. TOTP ಅನ್ನು ನಕಲಿಸಿ - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1559,9 +1550,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - ಟಿಪ್ಪಣಿ ನಕಲಿಸಿ @@ -2367,7 +2355,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2655,10 +2643,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.ko.resx b/src/App/Resources/AppResources.ko.resx index b2aae3906..25602dde0 100644 --- a/src/App/Resources/AppResources.ko.resx +++ b/src/App/Resources/AppResources.ko.resx @@ -396,9 +396,6 @@ 웹 사이트 방문 - - 도움이 필요하거나 뉴스, 이메일 또는 Bitwarden을 사용하는 방법이 궁금하시면 웹 사이트를 방문하세요. - 웹 사이트 Label for a website. @@ -451,9 +448,6 @@ 마스터 비밀번호 변경 - - bitwarden.com 웹 보관함에서 마스터 비밀번호를 바꿀 수 있습니다. 지금 웹 사이트를 방문하시겠습니까? - 닫기 @@ -707,9 +701,6 @@ 2단계 인증 - - 2단계 인증은 보안 키, 인증 앱, SMS, 전화 통화 등의 다른 기기로 사용자의 로그인 시도를 검증하여 사용자의 계정을 더욱 안전하게 만듭니다. 2단계 인증은 bitwarden.com 웹 보관함에서 활성화할 수 있습니다. 지금 웹 사이트를 방문하시겠습니까? - {0}을 사용하여 잠금 해제 @@ -1558,9 +1549,6 @@ 어두운 테마 사용 - - 기본 (시스템) 테마를 선택한 경우 기기의 다크 모드가 활성화되었을 때 사용할 다크 테마 선택 - 메모 복사 @@ -2654,10 +2642,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2764,6 +2748,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.lt.resx b/src/App/Resources/AppResources.lt.resx index 0b6c66f58..c4f9039fa 100644 --- a/src/App/Resources/AppResources.lt.resx +++ b/src/App/Resources/AppResources.lt.resx @@ -396,9 +396,6 @@ Apsilankykite mūsų svetainėje - - Apsilankykite mūsų svetainėje ir gaukite pagalbos, naujienų, atsiųskite mums el. laišką ir (arba) sužinokite daugiau apie tai, kaip naudotis „Bitwarden“. - Tinklapis Label for a website. @@ -451,9 +448,6 @@ Keisti pagrindinį slaptažodį - - Pagrindinį slaptažodį galite pakeisti bitwarden.com žiniatinklio saugykloje. Ar norite dabar apsilankyti svetainėje? - Uždaryti @@ -707,9 +701,6 @@ Dviejų žingsnių prisijungimas - - Prisijungus dviem veiksmais, jūsų paskyra tampa saugesnė, reikalaujant patvirtinti prisijungimą naudojant kitą įrenginį, pvz., Saugos raktą, autentifikavimo programą, SMS, telefono skambutį ar el. Paštą. Dviejų žingsnių prisijungimą galima įjungti „bitwarden.com“ interneto saugykloje. Ar norite dabar apsilankyti svetainėje? - Atrakinti naudojant {0} @@ -1558,9 +1549,6 @@ Nuskaitymas vyks automatiškai. Numatytoji tamsi tema - - Pasirinkite tamsiąją temą, kurią norite naudoti, kai naudojate numatytąją (sistemos) temą, kai naudojamas įrenginio tamsusis režimas. - Kopijuoti pastabas @@ -2655,10 +2643,6 @@ Ar norite pereiti prie šios paskyros? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ Ar norite pereiti prie šios paskyros? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.lv.resx b/src/App/Resources/AppResources.lv.resx index 02319e752..405eb3425 100644 --- a/src/App/Resources/AppResources.lv.resx +++ b/src/App/Resources/AppResources.lv.resx @@ -396,9 +396,6 @@ Apmeklēt mūsu tīmekļa vietni - - Apmeklē mūsu tīmekļa vietni lai iegūtu palīdzību, jaunumus, rakstītu mums e-pastu un/vai uzzinātu vairāk par to, kā izmantot Bitwarden. - Tīmekļa vietne Label for a website. @@ -451,9 +448,6 @@ Mainīt galveno paroli - - Galveno paroli ir iespējams mainīt bitwarden.com tīmekļa glabātavā. Vai apmeklēt tīmekļa vietni? - Aizvērt @@ -707,9 +701,6 @@ Divpakāpju pieteikšanās - - Divpakāpju pieteikšanās padara kontu krietni drošāku, pieprasot apstiprināt pieteikšanos ar tādu citu ierīču vai pakalpojumu starpniecību kā drošības atslēga, autentificētāja lietotne, īsziņa, tālruņa zvans vai e-pasts. Divpakāpju pieteikšanos var iespējot bitwarden.com tīmekļa glabātavā. Vai apmeklēt tīmekļa vietni? - Atslēgt ar {0} @@ -1558,9 +1549,6 @@ Nolasīšana notiks automātiski. Noklusējuma tumšais izskats - - Izvēlēties tumšo izskatu, ko pielietot, kad tiek izmantotots noklusējuma (sistēmas) izskats, kad ir iespējots ierīces tumšais režīms. - Ievietot piezīmes starpliktuvē @@ -2655,10 +2643,6 @@ Vai pārslēgties uz šo kontu? Paroļatslēgas - - Izveidota {0} - To state the date in which the cipher was created: Created 03/21/2023 - Lietotne @@ -2765,6 +2749,112 @@ Vai pārslēgties uz šo kontu? Piesakās + + Glabātava + + + Izskats + + + Konta drošība + + + Bitwarden palīdzības centrs + + + Sazināties ar Bitwarden atbalstu + + + Ievietot starpliktuvē informāciju par lietotni + + + Sinhronizēt tūlīt + + + Atslēgšanas iespējas + + + Sesijas noildze + + + Sesijas noildzes darbība + + + Konta atpazīšanas vārdkopa + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Viena stunda un viena minūte + + + Viena stunda un {0} minūtes + + + {0} stundas un viena minūte + + + {0} stundas un {1} minūtes + + + {0} stundas + + + Android automātiskās aizpildes ietvars tiek izmantots, lai palīdzētu aizpildīt pieteikšanās informāciju citās ierīces lietotnēs. + + + Iekļautā automātiskā aizpilde ir izmantojama, ja izvēlētā tastatūra to nodrošina. Citādi ir jāizmanto noklusējuma pārklājums. + + + Papildu iespējas + + + Pāriet uz tīmekļa lietotni? + + + Pāriet uz {0}? + The parameter is an URL, like bitwarden.com. + + + Pāriet uz palīdzības centru? + + + Pāriet uz sazināšanos ar atbalstu? + + + Pāriet uz lietotņu veikalu? + + + Savu kontu var padarīt drošāku ar divpakāpju pieteikšanās uzstādīšanu Bitwarden tīmekļa lietotnē. + + + Savu galveno paroli var mainīt Bitwarden tīmekļa lietotnē. + + + Ievietot datus savā glabātavā var {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Par to, kā izmantot Bitwarden, vairāk var uzzināt palīdzības centrā. + + + Meklējamais nav atrodams? Ir iespēja sazināties ar Bitwarden atbalstu bitwarden.com. + + + Vairāk sava Bitwarden konta iespēju var izpētīt tīmekļa vietnē. + + + Bitwarden nodrošina iespēju kopīgot savas glabātavas vienumus ar citiem, kad tiek izmantota apvienība. Vairāk var uzzināt bitwarden.com tīmekļa vietnē. + + + Var palīdzēt citiem noskaidrot, vai Bitwarden tiem der. To var izdarīt lietotņu veikalā, atstājot vērtējumu. + + + Izvēlēties izmantot tumšo izskatu, kad tiek izmantots ierīces tumšais izskats + + + Izveidots {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Pārāk daudz mēģinājumu diff --git a/src/App/Resources/AppResources.ml.resx b/src/App/Resources/AppResources.ml.resx index eceed9625..1ee3691d5 100644 --- a/src/App/Resources/AppResources.ml.resx +++ b/src/App/Resources/AppResources.ml.resx @@ -396,9 +396,6 @@ ഞങ്ങളുടെ വെബ്സൈറ്റ് സന്ദർശിക്കുക - - സഹായം ലഭിക്കാൻ, വാർത്തകൾ അറിയാൻ, ഇമെയിൽ അയക്കാൻ അല്ലെങ്കിൽ Bitwardenനെ കുറിച്ച് കൂടുതൽ വിവരങ്ങൾ അറിയാൻ ഞങ്ങളുടെ വെബ്സൈറ്റ് സന്ദർശിക്കുക. - വെബ്സൈറ്റ് Label for a website. @@ -451,9 +448,6 @@ പ്രാഥമിക പാസ്‌വേഡ് മാറ്റുക - - നിങ്ങൾക്ക് bitwarden.com വെബ് വാൾട്ടിൽ പ്രാഥമിക പാസ്‌വേഡ് മാറ്റാൻ സാധിക്കും.വെബ്സൈറ്റ് ഇപ്പോൾ സന്ദർശിക്കാൻ ആഗ്രഹിക്കുന്നുണ്ടോ ? - അടയ്ക്കുക @@ -707,9 +701,6 @@ രണ്ട്-ഘട്ട പ്രവേശനം - - സുരക്ഷാ കീ, ഓതന്റിക്കേറ്റർ അപ്ലിക്കേഷൻ, SMS, ഫോൺ കോൾ അല്ലെങ്കിൽ ഇമെയിൽ പോലുള്ള മറ്റൊരു ഉപകരണം ഉപയോഗിച്ച് തങ്ങളുടെ പ്രവേശനം സ്ഥിരീകരിക്കാൻ ആവശ്യപ്പെടുന്നതിലൂടെ, രണ്ട്-ഘട്ട പ്രവേശനം തങ്ങളുടെ അക്കൗണ്ടിനെ കൂടുതൽ സുരക്ഷിതമാക്കുന്നു. bitwarden.com വെബ് വാൾട്ടിൽ രണ്ട്-ഘട്ട പ്രവേശനം പ്രവർത്തനക്ഷമമാക്കാനാകും.തങ്ങള്ക്കു ഇപ്പോൾ വെബ്സൈറ്റ് സന്ദർശിക്കാൻ ആഗ്രഹമുണ്ടോ? - {0} ഉപയോഗിച്ച് അൺലോക്കുചെയ്യുക @@ -916,7 +907,7 @@ TOTP പകർത്തുക - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1558,9 +1549,6 @@ Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - കുറിപ്പ് പകർത്തുക @@ -2366,7 +2354,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2654,10 +2642,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2764,6 +2748,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.mr.resx b/src/App/Resources/AppResources.mr.resx index 8cefdfe2a..76d7887fd 100644 --- a/src/App/Resources/AppResources.mr.resx +++ b/src/App/Resources/AppResources.mr.resx @@ -396,9 +396,6 @@ Visit our website - - Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden. - Website Label for a website. @@ -451,9 +448,6 @@ Change master password - - You can change your master password on the bitwarden.com web vault. Do you want to visit the website now? - Close @@ -707,9 +701,6 @@ Two-step login - - Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be set up on the bitwarden.com web vault. Do you want to visit the website now? - Unlock with {0} @@ -916,7 +907,7 @@ Scanning will happen automatically. Copy TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy note @@ -2367,7 +2355,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2655,10 +2643,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.my.resx b/src/App/Resources/AppResources.my.resx index aa8c6ff88..7e750de59 100644 --- a/src/App/Resources/AppResources.my.resx +++ b/src/App/Resources/AppResources.my.resx @@ -396,9 +396,6 @@ Visit our website - - Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden. - Website Label for a website. @@ -451,9 +448,6 @@ Change master password - - You can change your master password on the bitwarden.com web vault. Do you want to visit the website now? - Close @@ -707,9 +701,6 @@ Two-step login - - Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be set up on the bitwarden.com web vault. Do you want to visit the website now? - Unlock with {0} @@ -916,7 +907,7 @@ Scanning will happen automatically. Copy TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy note @@ -2367,7 +2355,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2655,10 +2643,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.nb.resx b/src/App/Resources/AppResources.nb.resx index 593fffb6a..9fa1072a4 100644 --- a/src/App/Resources/AppResources.nb.resx +++ b/src/App/Resources/AppResources.nb.resx @@ -396,9 +396,6 @@ Besøk nettstedet vårt - - Besøk vårt nettsted for å få hjelp, nyheter, sende oss E-poster, og/eller lære mer om å bruke Bitwarden. - Nettsted Label for a website. @@ -451,9 +448,6 @@ Endre hovedpassord - - Du kan endre hovedpassordet ditt på bitwarden.com-netthvelvet. Vil du besøke nettstedet nå? - Lukk @@ -707,9 +701,6 @@ 2-trinnsinnlogging - - 2-trinnsinnlogging gjør kontoen din mer sikker, ved å kreve at du verifiserer din innlogging med en annen enhet, f.eks. en autentiseringsapp, SMS, E-post, telefonsamtale, eller sikkerhetsnøkkel. 2-trinnsinnlogging kan aktiveres på bitwarden.com-netthvelvet. Vil du besøke den nettsiden nå? - Lås opp med {0} @@ -1558,9 +1549,6 @@ Skanning skjer automatisk. Standard mørkt tema - - Velg mørkt tema som skal brukes når du bruker standard (System) tema når din enhets mørke modus er aktivert - Kopier notater @@ -2655,10 +2643,6 @@ Vil du bytte til denne kontoen? Passnøkler - - Opprettet {0} - To state the date in which the cipher was created: Created 03/21/2023 - Applikasjon @@ -2765,6 +2749,112 @@ Vil du bytte til denne kontoen? Logger inn på + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + For mange forsøk diff --git a/src/App/Resources/AppResources.ne.resx b/src/App/Resources/AppResources.ne.resx index aa8c6ff88..7e750de59 100644 --- a/src/App/Resources/AppResources.ne.resx +++ b/src/App/Resources/AppResources.ne.resx @@ -396,9 +396,6 @@ Visit our website - - Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden. - Website Label for a website. @@ -451,9 +448,6 @@ Change master password - - You can change your master password on the bitwarden.com web vault. Do you want to visit the website now? - Close @@ -707,9 +701,6 @@ Two-step login - - Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be set up on the bitwarden.com web vault. Do you want to visit the website now? - Unlock with {0} @@ -916,7 +907,7 @@ Scanning will happen automatically. Copy TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy note @@ -2367,7 +2355,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2655,10 +2643,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.nl.resx b/src/App/Resources/AppResources.nl.resx index 6d98931f2..9aa51f59b 100644 --- a/src/App/Resources/AppResources.nl.resx +++ b/src/App/Resources/AppResources.nl.resx @@ -396,9 +396,6 @@ Bezoek onze website - - Bezoek onze website voor hulp, nieuws, om ons een e-mail te sturen en/of om meer te weten te komen over het gebruik van Bitwarden. - Website Label for a website. @@ -451,9 +448,6 @@ Hoofdwachtwoord wijzigen - - Je kunt je hoofdwachtwoord wijzigen in de kluis op bitwarden.com. Wil je de website nu bezoeken? - Sluiten @@ -707,9 +701,6 @@ Tweestapsaanmelding - - Tweestapsaanmelding beschermt je account door je inlogpoging te bevestigen met een ander apparaat zoals een beveiligingssleutel, authenticatie-app, SMS, spraakoproep of e-mail. Je kunt Tweestapsaanmelding inschakelen in de webkluis op bitwarden.com. Wil je de website nu bezoeken? - Ontgrendelen met {0} @@ -1558,9 +1549,6 @@ Het scannen gebeurt automatisch. Standaard donkere thema - - Kies welk donkere thema te gebruiken als standaard (systeem) thema wanneer de donkere modus van je apparaat is ingeschakeld. - Notities kopiëren @@ -2654,10 +2642,6 @@ Wilt u naar dit account wisselen? Passkeys - - Aangemaakt {0} - To state the date in which the cipher was created: Created 03/21/2023 - Applicatie @@ -2764,6 +2748,112 @@ Wilt u naar dit account wisselen? Logging in on + + Kluis + + + Weergave + + + Accountbeveiliging + + + Bitwarden Hulpcentrum + + + Contacteer Bitwarden support + + + App-informatie kopiëren + + + Nu synchroniseren + + + Ontgrendelopties + + + Sessie time-out + + + Actie voor sessie time-out + + + Vingerafdrukzin van je account + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Een uur en een minuut + + + Een uur en {0} minuten + + + {0} uur en een minuut + + + {0} uur en {1} minuten + + + {0} uur + + + Het Android Autofill Framework helpt het het invullen van inloggegevens in andere apps op je apparaat. + + + Gebruik inline automatisch aanvullen als het geselecteerde toetsenbord dit ondersteunt. Gebruik anders de standaard overlay. + + + Extra instellingen + + + Doorgaan naar web-app? + + + Doorgaan naar {0}? + The parameter is an URL, like bitwarden.com. + + + Doorgaan met Helpcentrum? + + + Doorgaan met het contact opnemen met support? + + + Doorgaan naar de app store? + + + Maak je account veiliger met het instellen van tweestapsaanmelding in de Bitwarden-webapp. + + + Je kunt je hoofdwachtwoord wijzigen in de Bitwarden-webapp. + + + Je kunt gegevens importeren in je kluis op {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Leer meer over het gebruik van Bitwarden in het Helpcentrum. + + + Kan je niet vinden wat je zoekt? Neem contact op met Bitwarden-ondersteuning via bitwarden.com. + + + Ontdek meer functies van je Bitwarden-account in de webapp. + + + Met Bitwarden kun je je kluis-items met anderen delen door gebruik te maken van een organisatie. Lees meer op de website bitwarden.com. + + + Help anderen met beslissen of Bitwarden iets voor hen is. Bezoek de app store en laat een beoordeling achter. + + + Kies het donkere thema dat je wilt gebruiken wanneer de donkere modus van je apparaat actief is + + + Aangemaakt {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.nn.resx b/src/App/Resources/AppResources.nn.resx index 7f0356f3c..ec38c7ff8 100644 --- a/src/App/Resources/AppResources.nn.resx +++ b/src/App/Resources/AppResources.nn.resx @@ -396,9 +396,6 @@ Vitja nettstaden vår! - - Vitja nettstaden vår for å få hjelp, nyhende, senda oss e-post, og/eller læra meir om korleis ein brukar Bitwarden. - Nettstad Label for a website. @@ -451,9 +448,6 @@ Brigda hovudpassord - - Du kan brigda hovudpassordet ditt i nettkvelvet på bitwarden.com. Vil du fara til nettstaden no? - Lat att @@ -707,9 +701,6 @@ Tostegsinnskriving - - Tostegsinnskriving gjer kontoen din tryggare ved å krevja at du stadfestar innskrivinga di med ein anna eining, slik som ein trygdenykel, autentiseringsapp, sms, telefonsamtale, eller e-post. Ein kan slå på tostegsinnskriving i nettkvelvet på bitwarden.com. Vil du fara til nettstaden no? - Lås opp med {0} @@ -827,7 +818,7 @@ For 2FA - Login unavailable + Innlogging er utilgjengeleg For 2FA whenever there are no available providers on this device. @@ -916,7 +907,7 @@ Skanning skjer automatisk. Skriv av TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Kopier TOTP-en automatisk @@ -1558,9 +1549,6 @@ Skanning skjer automatisk. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy note @@ -2367,7 +2355,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2655,10 +2643,6 @@ Do you want to switch to this account? Passnøklar - - Oppretta {0} - To state the date in which the cipher was created: Created 03/21/2023 - Applikasjon @@ -2765,6 +2749,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.or.resx b/src/App/Resources/AppResources.or.resx index b01514f52..e966f3900 100644 --- a/src/App/Resources/AppResources.or.resx +++ b/src/App/Resources/AppResources.or.resx @@ -396,9 +396,6 @@ Visit our website - - Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden. - Website Label for a website. @@ -451,9 +448,6 @@ Change master password - - You can change your master password on the bitwarden.com web vault. Do you want to visit the website now? - Close @@ -707,9 +701,6 @@ Two-step login - - Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be set up on the bitwarden.com web vault. Do you want to visit the website now? - Unlock with {0} @@ -916,7 +907,7 @@ Scanning will happen automatically. Copy TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy note @@ -2367,7 +2355,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2655,10 +2643,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.pl.resx b/src/App/Resources/AppResources.pl.resx index f9e0b1c34..c39235e22 100644 --- a/src/App/Resources/AppResources.pl.resx +++ b/src/App/Resources/AppResources.pl.resx @@ -396,9 +396,6 @@ Odwiedź naszą stronę - - Odwiedź naszą stronę, aby uzyskać pomoc, zobaczyć aktualności, napisać do nas i/lub dowiedzieć się, jak używać Bitwarden. - Strona Label for a website. @@ -451,9 +448,6 @@ Zmień hasło główne - - Hasło główne możesz zmienić na stronie sejfu bitwarden.com. Czy chcesz przejść do tej strony? - Zamknij @@ -707,9 +701,6 @@ Logowanie dwustopniowe - - Logowanie dwustopniowe sprawia, że konto jest bardziej bezpieczne poprzez wymuszenie potwierdzenia logowania z innego urządzenia, takiego jak z klucza bezpieczeństwa, aplikacji uwierzytelniającej, wiadomości SMS, telefonu lub adresu e-mail. Logowanie dwustopniowe możesz włączyć w sejfie internetowym bitwarden.com. Czy chcesz przejść do tej strony? - Odblokuj przez {0} @@ -1558,9 +1549,6 @@ Skanowanie nastąpi automatycznie. Domyślny ciemny motyw - - Wybierz ciemny motyw podczas korzystania z domyślnego (systemowego) motywu, kiedy włączony jest tryb ciemny urządzenia - Kopiuj notatkę @@ -2654,10 +2642,6 @@ Czy chcesz przełączyć się na to konto? Passkeys - - Utworzono {0} - To state the date in which the cipher was created: Created 03/21/2023 - Aplikacja @@ -2704,7 +2688,7 @@ Czy chcesz przełączyć się na to konto? Logowanie jako {0} - Vault timeout action changed to log out + Sposób blokowania sejfu został zmieniony na wylogowanie Ten element nie może być współdzielony z organizacją, ponieważ jest już z tym samym passkey'em. @@ -2764,6 +2748,112 @@ Czy chcesz przełączyć się na to konto? Logowanie do + + Sejf + + + Wygląd + + + Bezpieczeństwo konta + + + Centrum pomocy Bitwarden + + + Skontaktuj się z pomocą techniczną Bitwarden + + + Skopiuj informacje o aplikacji + + + Synchronizuj teraz + + + Odblokuj Opcje + + + Limit czasu sesji + + + Akcja po przekroczeniu czasu sesji + + + Unikalny identyfikator Twojego konta + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Godzina i minuta + + + Godzina i {0} minut + + + {0} godzin i minuta + + + {0} godzin(y) i {1} minut(y) + + + {0} godzin(y) + + + Android Autofill Framework jest używany do uzupełniania danych logowania w innych aplikacjach na twoim urządzeniu. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Dodatkowe opcje + + + Kontynuować przez aplikację internetową? + + + Kontynuować przez {0}? + The parameter is an URL, like bitwarden.com. + + + Kontynuować do centrum pomocy? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Utworzono {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Zbyt wiele prób diff --git a/src/App/Resources/AppResources.pt-BR.resx b/src/App/Resources/AppResources.pt-BR.resx index c13b1899d..b19d7f27e 100644 --- a/src/App/Resources/AppResources.pt-BR.resx +++ b/src/App/Resources/AppResources.pt-BR.resx @@ -396,9 +396,6 @@ Visitar o Nosso Site - - Visite o nosso site para obter ajuda, notícias, enviar-nos um e-mail e/ou aprender mais sobre como utilizar o Bitwarden. - Site Label for a website. @@ -451,9 +448,6 @@ Alterar Senha Mestra - - Você pode alterar a sua senha mestra no cofre web em bitwarden.com. Você deseja visitar o site agora? - Fechar @@ -707,9 +701,6 @@ Login em Duas Etapas - - O login em duas etapas torna a sua conta mais segura ao exigir que você verifique seu login com outro dispositivo como uma chave de segurança, aplicativo de autenticação, SMS, ligação telefônica, ou e-mail. O login em duas etapas pode ser ativado no cofre web em bitwarden.com. Deseja visitar o site agora? - Desbloquear com {0} @@ -955,7 +946,7 @@ A leitura será feita automaticamente. Você não pode usar esse recurso, até você atualizar sua chave de criptografia. - Encryption key migration required. Please login through the web vault to update your encryption key. + Migração de chave de criptografia necessária. Faça login através do cofre web para atualizar sua chave de criptografia. Saiba Mais @@ -1558,9 +1549,6 @@ A leitura será feita automaticamente. Tema Escuro Padrão - - Escolha o tema escuro a ser usado ao usar o tema Padrão (Sistema) enquanto o modo escuro do seu dispositivo estiver ativado - Copiar Nota @@ -2655,10 +2643,6 @@ Você deseja mudar para esta conta? Chaves de acesso - - Criado {0} - To state the date in which the cipher was created: Created 03/21/2023 - Aplicação @@ -2765,10 +2749,116 @@ Você deseja mudar para esta conta? Entrando em + + Cofre + + + Aparência + + + Segurança da conta + + + Central de Ajuda Bitwarden + + + Contate o suporte Bitwarden + + + Copiar informações do aplicativo + + + Sincronizar agora + + + Opções de desbloqueio + + + Sessão expirada + + + Ação de sessão expirada + + + Frase biométrica da conta + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Uma hora e um minuto + + + Uma hora e {0} minutos + + + {0} horas e um minuto + + + {0} horas e {1} minutos + + + {0} horas + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Opções adicionais + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + Você pode importar dados para o seu cofre no {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Saiba mais sobre como usar o Bitwarden no centro de ajuda. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Criado em {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + - Too many attempts + Tentativas demais - Account logged out. + Conta desconectada. diff --git a/src/App/Resources/AppResources.pt-PT.resx b/src/App/Resources/AppResources.pt-PT.resx index 98fd74230..2d76d7499 100644 --- a/src/App/Resources/AppResources.pt-PT.resx +++ b/src/App/Resources/AppResources.pt-PT.resx @@ -396,9 +396,6 @@ Visite o nosso site - - Visite o nosso site para obter ajuda, notícias, enviar-nos um e-mail e/ou saber mais sobre como usar o Bitwarden. - Site Label for a website. @@ -419,7 +416,7 @@ Extensão da aplicação - Utilize o serviço de acessibilidade do Bitwarden para preencher automaticamente as suas credenciais em todas as aplicações e na Web. + Utilize o serviço de acessibilidade Bitwarden para preencher automaticamente as suas credenciais entre as aplicações e a web. Serviço de preenchimento automático @@ -451,9 +448,6 @@ Alterar palavra-passe mestra - - Pode alterar o seu endereço de e-mail no cofre do site bitwarden.com. Deseja visitar o site agora? - Fechar @@ -707,9 +701,6 @@ Verificação de dois passos - - A verificação de dois passos torna a sua conta mais segura, exigindo que verifique o seu início de sessão com outro dispositivo, como uma chave de segurança, aplicação de autenticação, SMS, chamada telefónica ou e-mail. A verificação de dois passos pode ser configurada em bitwarden.com. Pretende visitar o site agora? - Desbloquear com {0} @@ -727,7 +718,7 @@ Ver item - Cofre Web Bitwarden + Cofre web Bitwarden Perdeu a aplicação de autenticação? @@ -955,7 +946,7 @@ A leitura será efetuada automaticamente. Não pode utilizar esta funcionalidade até atualizar a sua chave de encriptação. - É necessária a migração da chave de encriptação. Inicie sessão através do cofre Web para atualizar a sua chave de encriptação. + É necessária a migração da chave de encriptação. Inicie sessão através do cofre web para atualizar a sua chave de encriptação. Saber mais @@ -990,7 +981,7 @@ A leitura será efetuada automaticamente. URL do servidor - URL do servidor do cofre Web + URL do servidor do cofre web Toque nesta notificação para ver itens do seu cofre. @@ -1235,7 +1226,7 @@ A leitura será efetuada automaticamente. Label for a uri/url with position. i.e. URI 1, URI 2, etc - Domínio base + Domínio de base Predefinido @@ -1471,7 +1462,7 @@ A leitura será efetuada automaticamente. A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. - O Bitwarden permite-lhe partilhar os itens do seu cofre com outros ao utilizar uma conta de organização. Gostaria de visitar o website bitwarden.com para saber mais? + O Bitwarden permite-lhe partilhar os itens do seu cofre com outros ao utilizar uma conta de organização. Gostaria de visitar o site bitwarden.com para saber mais? Exportar cofre @@ -1558,9 +1549,6 @@ A leitura será efetuada automaticamente. Tema escuro predefinido - - Escolha o tema escuro a utilizar quando o tema Predefinido (Sistema) do seu dispositivo estiver no modo escuro. - Copiar nota @@ -1684,7 +1672,7 @@ A leitura será efetuada automaticamente. Aviso - Ocorreu um problema ao exportar o seu cofre. Se o problema persistir, terá de exportar a partir do cofre Web. + Ocorreu um problema ao exportar o seu cofre. Se o problema persistir, terá de exportar a partir do cofre web. Cofre exportado com sucesso @@ -1701,7 +1689,7 @@ A leitura será efetuada automaticamente. Button text for an open operation (verb). - Houve um problema ao guardar este anexo. Se o problema persistir, poderá guardá-lo através do cofre Web. + Houve um problema ao guardar este anexo. Se o problema persistir, poderá guardá-lo através do cofre web. Anexo guardado com sucesso @@ -1840,10 +1828,10 @@ A leitura será efetuada automaticamente. Utilizar a acessibilidade - Utilize o Serviço de acessibilidade do Bitwarden para preencher automaticamente as suas credenciais em aplicações e na Web. Quando configurado, exibiremos um pop-up quando os campos de início de sessão forem selecionados. + Utilize o Serviço de acessibilidade do Bitwarden para preencher automaticamente as suas credenciais em aplicações e na web. Quando configurado, exibiremos um pop-up quando os campos de início de sessão forem selecionados. - Utilize o Serviço de acessibilidade do Bitwarden para preencher automaticamente as suas credenciais em aplicações e na Web. (Requer que a definição Aparecer sobre outras também esteja ativada) + Utilize o Serviço de acessibilidade do Bitwarden para preencher automaticamente as suas credenciais em aplicações e na web. (Requer que a definição Aparecer sobre outras também esteja ativada) Utilize o Serviço de acessibilidade do Bitwarden para utilizar o botão de preenchimento automático do Painel instantâneo e/ou mostrar um pop-up utilizando a definição Aparecer sobre outras (se estiver ativada). @@ -2070,7 +2058,7 @@ A leitura será efetuada automaticamente. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Tem de verificar o seu e-mail para utilizar ficheiros com o Send. Pode verificar o seu e-mail no cofre Web. + Tem de verificar o seu e-mail para utilizar ficheiros com o Send. Pode verificar o seu e-mail no cofre web. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. @@ -2653,10 +2641,6 @@ Deseja mudar para esta conta? Chaves de acesso - - Criada a {0} - To state the date in which the cipher was created: Created 03/21/2023 - Aplicação @@ -2763,6 +2747,112 @@ Deseja mudar para esta conta? A iniciar sessão em + + Cofre + + + Aparência + + + Segurança da conta + + + Centro de ajuda Bitwarden + + + Contactar o suporte Bitwarden + + + Copiar informações da aplicação + + + Sincronizar agora + + + Opções de desbloqueio + + + Tempo limite da sessão + + + Ação de tempo limite da sessão + + + Frase de impressão digital da conta + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Uma hora e um minuto + + + Uma hora e {0} minutos + + + {0} horas e um minuto + + + {0} horas e {1} minutos + + + {0} horas + + + A estrutura de preenchimento automático do Android é utilizada para ajudar a preencher as informações de início de sessão noutras aplicações do seu dispositivo. + + + Utilize o preenchimento automático em linha se o teclado selecionado o suportar. Caso contrário, utilize a sobreposição predefinida. + + + Opções adicionais + + + Continuar para a aplicação web? + + + Continuar para {0}? + The parameter is an URL, like bitwarden.com. + + + Continuar para o Centro de ajuda? + + + Continuar a contactar o apoio ao cliente? + + + Continuar para a loja de aplicações? + + + Torne a sua conta mais segura configurando o login em duas etapas na aplicação web Bitwarden. + + + Pode alterar a sua palavra-passe mestra na aplicação web Bitwarden. + + + Pode importar dados para o seu cofre em {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Saiba mais sobre como utilizar o Bitwarden no Centro de ajuda. + + + Não consegue encontrar o que está a procurar? Entre em contacto com o suporte da Bitwarden em bitwarden.com. + + + Explore mais funcionalidades da sua conta Bitwarden na aplicação web. + + + O Bitwarden permite-lhe partilhar os seus itens do cofre com outras pessoas através da utilização de uma organização. Saiba mais no site bitwarden.com. + + + Ajude outras pessoas a descobrir se o Bitwarden é adequado para elas. Visite a loja de aplicações e deixe uma avaliação agora. + + + Escolha o tema escuro a utilizar quando o modo escuro do seu dispositivo estiver a ser utilizado + + + Criada a {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Demasiadas tentativas diff --git a/src/App/Resources/AppResources.ro.resx b/src/App/Resources/AppResources.ro.resx index aa7221ff3..aa8c4408d 100644 --- a/src/App/Resources/AppResources.ro.resx +++ b/src/App/Resources/AppResources.ro.resx @@ -396,9 +396,6 @@ Vizitați-ne website-ul - - Vizitați siteul nostru pentru a primi ajutor, știri, pentru a trimite e-mail, și/sau aflați mai multe despre cum să utilizați Bitwarden. - Site web Label for a website. @@ -451,9 +448,6 @@ Modificare parolă principală - - Puteți modifica parola principală pe saitul web bitwarden.com. Doriți să vizitați saitul acum? - Închidere @@ -707,9 +701,6 @@ Autentificare în doi pași - - Autentificarea în două etape vă face contul mai sigur, prin solicitarea unei verificări de autentificare cu un alt dispozitiv, cum ar fi o cheie de securitate, o aplicație de autentificare, un SMS, un apel telefonic sau un e-mail. Autentificarea în două etape poate fi configurată în seiful web bitwarden.com. Doriți să vizitați site-ul web acum? - Deblocare cu {0} @@ -1558,9 +1549,6 @@ Scanarea se va face automat. Tema întunecată implicită - - Alegeți tema întunecată de utilizat atunci când utilizați tema Implicită (Sistem) în timp ce este utilizat modul întunecat al dispozitivului. - Copiere notă @@ -2654,10 +2642,6 @@ Doriți să comutați la acest cont? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2764,6 +2748,112 @@ Doriți să comutați la acest cont? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.ru.resx b/src/App/Resources/AppResources.ru.resx index 7bb37d8be..36de5111d 100644 --- a/src/App/Resources/AppResources.ru.resx +++ b/src/App/Resources/AppResources.ru.resx @@ -396,9 +396,6 @@ Посетить наш сайт - - Посетите наш сайт, чтобы получить помощь, прочесть новости, связаться с нами и/или узнать больше о том, как использовать Bitwarden. - Сайт Label for a website. @@ -451,9 +448,6 @@ Изменить мастер-пароль - - Вы можете изменить свой мастер-пароль на bitwarden.com. Перейти на сайт сейчас? - Закрыть @@ -707,9 +701,6 @@ Двухэтапная аутентификация - - Двухэтапная аутентификация делает аккаунт более защищенным, поскольку требуется подтверждение входа при помощи другого устройства, например, ключа безопасности, приложения-аутентификатора, SMS, телефонного звонка или электронной почты. Двухэтапная аутентификация включается на bitwarden.com. Перейти на сайт сейчас? - Разблокировка {0} @@ -1558,9 +1549,6 @@ Темная тема по умолчанию - - Выберите темную тему для использования в случае включения темы по умолчанию (системной) при включенном темном режиме вашего устройства. - Скопировать заметку @@ -2366,7 +2354,7 @@ Одобрение запросов на вход - Использовать это устройство для подтверждения запросов на вход, сделанных с других устройств. + Использовать это устройство для подтверждения запросов на вход, сделанных с других устройств Разрешить уведомления @@ -2654,10 +2642,6 @@ Ключи доступа - - Создан {0} - To state the date in which the cipher was created: Created 03/21/2023 - Приложение @@ -2704,7 +2688,7 @@ Войти как {0} - Таймаут хранилища изменен на выход + Тайм-аут хранилища изменен на выход Этим элементом нельзя поделиться с организацией, поскольку существует другой с тем же ключом. @@ -2764,6 +2748,114 @@ Войти на + + Хранилище + + + Внешний вид + + + Безопасность аккаунта + + + Справочный центр Bitwarden + + + Свяжитесь со службой поддержки Bitwarden + + + Скопировать информацию о приложении + + + Синхронизировать + + + Настройки разблокировки + + + Тайм-аут сессии + + + Действие при тайм-ауте сессии + + + Фраза отпечатка аккаунта + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Один час и одна минута + + + Один час и {0} минут + + + {0} часов и одна минута + + + {0} часов и {1} минут + + + {0} часов + + + Использовать фреймворк автозаполнения Android для заполнения информации о входе в другие приложения на устройстве + +Фреймворк автозаполнения Android используется для ввода учетных данных в приложениях на вашем устройстве. + + + Использовать встроенное автозаполнение, если выбранная клавиатура его поддерживает. В противном случае по умолчанию используется наложение. + + + Дополнительные настройки + + + Перейти к веб-приложению? + + + Перейти к {0}? + The parameter is an URL, like bitwarden.com. + + + Перейти в справочный центр? + + + Обратиться в службу поддержки? + + + Перейти в магазин приложений? + + + Сделайте ваш аккаунт более защищенным, настроив двухэтапную аутентификацию в веб-приложении Bitwarden. + + + Изменить мастер-пароль можно в веб-приложении Bitwarden. + + + Импортировать данные в хранилище можно в {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Подробнее о том, как использовать Bitwarden, можно узнать в справочном центре. + + + Не можете найти то, что ищете? Обратитесь в службу поддержки Bitwarden на сайте bitwarden.com. + + + Изучите дополнительные возможности вашего аккаунта Bitwarden в веб-приложении. + + + Bitwarden позволяет предоставлять доступ к элементам вашего хранилища другим пользователям с помощью организации. Более подробную информацию можно найти на сайте bitwarden.com. + + + Помогите другим узнать, подходит ли им Bitwarden. Посетите магазин приложений и оставьте отзыв прямо сейчас. + + + Выберите темную тему для использования при темном режиме устройства + + + Создано {0} в {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Слишком много попыток diff --git a/src/App/Resources/AppResources.si.resx b/src/App/Resources/AppResources.si.resx index ce443d69d..bb3bbb305 100644 --- a/src/App/Resources/AppResources.si.resx +++ b/src/App/Resources/AppResources.si.resx @@ -396,9 +396,6 @@ Visit our website - - Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden. - වියමන අඩවිය Label for a website. @@ -451,9 +448,6 @@ Change master password - - You can change your master password on the bitwarden.com web vault. Do you want to visit the website now? - වසන්න @@ -707,9 +701,6 @@ Two-step login - - Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be set up on the bitwarden.com web vault. Do you want to visit the website now? - Unlock with {0} @@ -916,7 +907,7 @@ Scanning will happen automatically. Copy TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy note @@ -2367,7 +2355,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2655,10 +2643,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.sk.resx b/src/App/Resources/AppResources.sk.resx index b16326e9e..ec948da33 100644 --- a/src/App/Resources/AppResources.sk.resx +++ b/src/App/Resources/AppResources.sk.resx @@ -396,9 +396,6 @@ Navštívte našu stránku - - Navštívte našu stránku pre získanie pomoci, noviniek, poslať nám email, alebo sa dozvedieť viac, ako používať bitwarden. - Webstránka Label for a website. @@ -451,9 +448,6 @@ Zmeniť hlavné heslo - - Svoje hlavné heslo môžete zmeniť na webovom trezore bitwarden.com. Chcete navštíviť túto stránku teraz? - Zavrieť @@ -707,9 +701,6 @@ Dvojstupňové prihlásenie - - Dvojstupňové prihlasovanie robí váš účet bezpečnejsí vyžadovaním bezpečnostného kódu z overovacej aplikácie vždy, keď sa prihlásite. Dvojstupňové prihlasovanie môžete povoliť na webovom trezore bitwarden.com. Chcete navštíviť túto stránku teraz? - Odomknúť s {0} @@ -1558,9 +1549,6 @@ Skenovanie prebehne automaticky. Predvolený tmavý motív - - Vyberte tmavý motív, ktorý sa použije ako Predvolený (Systém), keď bude zapnutý tmavý režim na zariadení - Kopírovať poznámku @@ -2654,10 +2642,6 @@ Chcete prepnúť na toto konto? Prístupové kľúče - - Vytvorené {0} - To state the date in which the cipher was created: Created 03/21/2023 - Aplikácia @@ -2680,7 +2664,7 @@ Chcete prepnúť na toto konto? Pomoc s opätovnou výzvou na zadanie hlavného hesla - Unlocking may fail due to insufficient memory. Decrease your KDF memory settings or set up biometric unlock to resolve. + Odomknutie môže zlyhať z dôvodu nedostatku pamäte. Znížte nastavenia pamäte KDF alebo nastavte biometrické odomykanie pre vyriešenie problému. Neplatný kľúč API @@ -2764,6 +2748,112 @@ Chcete prepnúť na toto konto? Prihlásenie na + + Trezor + + + Vzhľad + + + Zabezpečenie účtu + + + Centrum pomoci Bitwarden + + + Kontaktovať podporu Bitwardenu + + + Kopírovať informácie o aplikácii + + + Synchronizovať teraz + + + Možnosti odomknutia + + + Časový limit relácie + + + Akcia po vypršaní relácie + + + Fráza odtlačku účtu + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Jedna hodina a jedna minúta + + + Jedna hodina a {0} minút + + + {0} hodín a jedna minúta + + + {0} hodín a {1} minút + + + {0} hodín + + + Android Autofill Framework sa používa na uľahčenie vyplňovania prihlasovacích údajov do iných aplikácií na vašom zariadení. + + + Použite zabudované automatické vypĺňanie, ak ho vybraná klávesnica podporuje. V opačnom prípade použite predvolené automatické vyplnenie. + + + Ďalšie možnosti + + + Pokračovať vo webovej aplikácii? + + + Pokračovať v {0}? + The parameter is an URL, like bitwarden.com. + + + Pokračovať v centre pomoci? + + + Pokračovať v kontaktovaní podpory? + + + Pokračovať v obchode s aplikáciami? + + + Zabezpečte svoje konto nastavením dvojstupňového prihlasovania vo webovej aplikácii Bitwarden. + + + Hlavné heslo si môžete zmeniť vo webovej aplikácii Bitwarden. + + + Údaje do trezora môžete importovať na {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Viac informácií o používaní Bitwardenu nájdete v centre pomoci. + + + Nemôžete nájsť, čo hľadáte? Obráťte sa na podporu Bitwarden na stránke bitwarden.com. + + + Preskúmajte ďalšie funkcie svojho účtu na Bitwarden vo webovej aplikácii. + + + Bitwarden vám umožňuje zdieľať vaše položky trezora s ostatnými pomocou organizácie. Viac informácií nájdete na webovej stránke bitwarden.com. + + + Pomôžte ostatným zistiť, či je Bitwarden pre nich vhodný. Navštívte obchod s aplikáciami a pridajte hodnotenie. + + + Vyberte tmavý motív, ktorý sa má použiť, keď sa používa tmavý režim v zariadení + + + Vytvorené {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Príliš veľa pokusov diff --git a/src/App/Resources/AppResources.sl.resx b/src/App/Resources/AppResources.sl.resx index 81577d698..9719323a5 100644 --- a/src/App/Resources/AppResources.sl.resx +++ b/src/App/Resources/AppResources.sl.resx @@ -396,9 +396,6 @@ Obiščite našo spletno stran - - Obiščite našo spletno stran za pomoč, novice, kontakt ali da izveste več o uporabi orodja Bitwarden. - Spletna stran Label for a website. @@ -451,9 +448,6 @@ Spremeni glavno geslo - - Svoje glavno geslo lahko spremenite v spletnem trezorju na bitwarden.com. Želite to stran obiskati sedaj? - Zapri @@ -707,9 +701,6 @@ Prijava v dveh korakih - - Avtentikacija v dveh korakih naredi vaš račun bolj varen, saj od vas zahteva, da svojo prijavo potrdite z drugo napravo oz. na dodaten način, n.pr. varnostni ključ, aplikacija za preverjanje pristnosti, SMS, telefonski klic ali e-pošta. Prijavo v dveh korakih lahko omogočite v spletnem trezorju bitwarden.com. Ali želite to spletno stran obiskati sedaj? - Odkleni z {0} @@ -916,7 +907,7 @@ Scanning will happen automatically. Kopiraj TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Samodejno kopiraj TOTP @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Privzeta temna tema - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Kopiraj opombo @@ -2654,10 +2642,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2764,6 +2748,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.sr.resx b/src/App/Resources/AppResources.sr.resx index 4976c54a3..82254c815 100644 --- a/src/App/Resources/AppResources.sr.resx +++ b/src/App/Resources/AppResources.sr.resx @@ -396,9 +396,6 @@ Посетити наш веб-сајт - - Посетите нашу веб страницу да бисте добили помоћ, вести, послали нам имејл и/или сазнали више о томе како да користите Bitwarden. - Веб сајт Label for a website. @@ -451,9 +448,6 @@ Промени главну лозинку - - Можете променити главну лозинку у Вашем сефу на bitwarden.com. Да ли желите да посетите веб страницу сада? - Затвори @@ -707,9 +701,6 @@ Дво-коракна лозинка - - Пријава у два корака чини ваш налог сигурнијим захтевом да верификујете своје податке помоћу другог уређаја, као што су безбедносни кључ, апликација, СМС, телефонски позив или имејл. Пријављивање у два корака може се омогућити на веб сефу. Да ли желите да посетите веб страницу сада? - Откључај са {0} @@ -955,7 +946,7 @@ Не можете да користите ову способност док не промените Ваш кључ за шифровање. - Encryption key migration required. Please login through the web vault to update your encryption key. + Потребна је миграција кључа за шифровање. Пријавите се преко веб сефа да бисте ажурирали кључ за шифровање. Сазнај више @@ -1558,9 +1549,6 @@ Подразумевана тамна тема - - Одаберите тамну тему коју ћете користити када користите подразумевану (системску) тему док је тамни режим вашег уређаја омогућен - Копирај белешке @@ -2656,10 +2644,6 @@ Passkey-ови - - Креирано {0} - To state the date in which the cipher was created: Created 03/21/2023 - Апликација @@ -2766,10 +2750,116 @@ Logging in on + + Сеф + + + Изглед + + + Безбедност налога + + + Bitwarden помоћни центар + + + Контактирајте подршку Bitwarden-а + + + Копирај инфо апликације + + + Синхронизуј сада + + + Опције деблокирања + + + Истек сесије + + + Акција на истек сесије + + + Сигурносна фраза налога + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Један сат и један минут + + + Један сат и {0} минута + + + {0} сата/и и један минута + + + {0} сата/и и {1} минута + + + {0} сати/а + + + Android Autofill Framework се користи за помоћ при попуњавању података за пријаву у друге апликације на вашем уређају. + + + Користите ауто-попуњавање на линији ако га ваша изабрана тастатура подржава. У супротном, користите подразумевано преклапање. + + + Додатне опције + + + Ићи на веб апликацију? + + + Наставити на {0}? + The parameter is an URL, like bitwarden.com. + + + Настави на помоћни центар? + + + Настави на подршку? + + + Настави на радњу апликације? + + + Учините свој налог сигурнијим подешавањем пријаве у два корака у Bitwarden веб апликацији. + + + Можете променити главну лозинку на Bitwarden веб апликацији. + + + Можете да увезете податке у свој сеф на {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden у помоћни центар. + + + Не можете да пронађете оно што тражите? Контактирајте Bitwarden подршку на bitwarden.com. + + + Истражите више својстава на Bitwarden налогу на веб апликаији. + + + Bitwarden вам омогућава да делите ставке сефа са другима користећи организацију. Сазнајте више на веб локацију bitwarden.com. + + + Помозите другима да сазнају да ли је Bitwarden прави за њих. Посетите продавницу апликација и оставите оцену. + + + Одаберите тамну тему коју ћете користити када се користи тамни режим вашег уређаја + + + Креирано {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + - Too many attempts + Превише покушаја - Account logged out. + Налог је одјављен. diff --git a/src/App/Resources/AppResources.sv.resx b/src/App/Resources/AppResources.sv.resx index ccb76c527..74b24b727 100644 --- a/src/App/Resources/AppResources.sv.resx +++ b/src/App/Resources/AppResources.sv.resx @@ -396,9 +396,6 @@ Besök vår webbplats - - Besök vår webbplats för att få hjälp, nyheter, mejla oss och/eller lära dig mer om hur du använder Bitwarden. - Webbplats Label for a website. @@ -451,9 +448,6 @@ Ändra huvudlösenord - - Du kan ändra ditt huvudlösenord på bitwardens webbvalv. Vill du besöka webbplatsen nu? - Stäng @@ -707,9 +701,6 @@ Tvåfaktorsautentisering - - Tvåstegsverifiering gör ditt konto säkrare genom att kräva att du verifierar din inloggning med en annan enhet, t.ex. en säkerhetsnyckel, autentiseringsapp, SMS, telefonsamtal eller e-post. Tvåstegsverifiering kan aktiveras i Bitwardens webbvalv. Vill du besöka webbplatsen nu? - Lås upp med {0} @@ -1559,9 +1550,6 @@ Skanningen sker automatiskt. Standard mörkt tema - - Välj det mörka temat att använda när du använder standardtemat (System) medan din enhets mörka läge används. - Kopiera anteckningar @@ -2656,10 +2644,6 @@ Vill du byta till detta konto? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2766,6 +2750,112 @@ Vill du byta till detta konto? Logga in på + + Valv + + + Utseende + + + Account security + + + Bitwarden Hjälpcenter + + + Contact Bitwarden support + + + Copy app information + + + Synkronisera nu + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + En timme och en minut + + + En timme och {0} minuter + + + {0} timmar och en minut + + + {0} timmar och {1} minuter + + + {0} timmar + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Fortsätt till webbapp? + + + Fortsätt till {0}? + The parameter is an URL, like bitwarden.com. + + + Fortsätt till Hjälpcenter? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + För många försök diff --git a/src/App/Resources/AppResources.ta.resx b/src/App/Resources/AppResources.ta.resx index 3e2dfccdc..2b7480650 100644 --- a/src/App/Resources/AppResources.ta.resx +++ b/src/App/Resources/AppResources.ta.resx @@ -396,9 +396,6 @@ எங்கள் வலைத்தளத்தைப் பார்வையிடு - - உதவி, செய்திகள், எங்களுக்கு மின்னஞ்சலிடுதல் மற்றும்/அல்லது Bitwarden ஐ எவ்வாறு பயன்படுத்துவது என்பது பற்றி மேலும் அறிய எங்கள் வலைத்தளத்தைப் பார்வையிடவும். - வலைத்தளம் Label for a website. @@ -451,9 +448,6 @@ பிரதான கடவுச்சொல்லை மாற்று - - bitwarden.com வலைப்பெட்டகத்தில் நீங்கள் உங்கள் பிரதான கடவுச்சொல்லை மாற்ற இயலும். நீங்கள் இப்போது வலைத்தளத்தை பார்வையிட வேண்டுமா? - மூடு @@ -707,9 +701,6 @@ இரு-படி உள்நுழைவு - - பாதுகாப்பு விசை, அங்கீகார செயலி, குறுஞ்செய்தி, தொலைபேசி அழைப்பு அ மின்னஞ்சல் போன்ற மற்றொரு சாதனத்துடன் உங்கள் உள்நுழைவை சரிபார்க்குமாறு கோருவதன் மூலம் இரு-படி உள்நுழைவு உங்கள் கணக்கை மிகவும் பாதுகாப்பாக்குகிறது. bitwarden.com வலைப்பெட்டகத்தில் இரு-படி உள்நுழைவை இயக்க முடியும். நீங்கள் இப்போது வலைத்தளத்தைப் பார்வையிட வேண்டுமா? - {0} மூலம் பூட்டவிழ் @@ -1559,9 +1550,6 @@ இயல்புநிலை இருள் நிற அமைப்பு - - உமது சாதனத்தின் இருட்பயன்முறை இயங்குகையில் இயல்புநிலை (முறைமை) நிற அமைப்பைப் பயன்படுத்தும்போது பயன்படுத்தவேண்டிய இருள் நிற அமைப்பைத் தெரிவுசெய் - குறிப்பை நகலெடு @@ -2655,10 +2643,6 @@ கடவுவிசைகள் - - {0} உருவானது - To state the date in which the cipher was created: Created 03/21/2023 - செயலி @@ -2765,6 +2749,112 @@ இதில் உள்நுழைகிறது + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.te.resx b/src/App/Resources/AppResources.te.resx index aa8c6ff88..7e750de59 100644 --- a/src/App/Resources/AppResources.te.resx +++ b/src/App/Resources/AppResources.te.resx @@ -396,9 +396,6 @@ Visit our website - - Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden. - Website Label for a website. @@ -451,9 +448,6 @@ Change master password - - You can change your master password on the bitwarden.com web vault. Do you want to visit the website now? - Close @@ -707,9 +701,6 @@ Two-step login - - Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be set up on the bitwarden.com web vault. Do you want to visit the website now? - Unlock with {0} @@ -916,7 +907,7 @@ Scanning will happen automatically. Copy TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1558,9 +1549,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy note @@ -2367,7 +2355,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2655,10 +2643,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2765,6 +2749,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.th.resx b/src/App/Resources/AppResources.th.resx index 2da7692f3..b65fe1cbf 100644 --- a/src/App/Resources/AppResources.th.resx +++ b/src/App/Resources/AppResources.th.resx @@ -396,9 +396,6 @@ เยี่ยมชมเว็บไซต์ - - เยี่ยมชมเว็บไซต์ของเราเพื่อขอความช่วยเหลือ, ข่าว, อีเมลถึงเรา, และ/หรือเรียนรู้เพิ่มเติมเกี่ยวกับวิธีการใช้ Bitwarden. - เว็บไซต์ Label for a website. @@ -452,9 +449,6 @@ เปลี่ยนรหัสผ่านหลัก - - คุณสามารถเปลี่ยนรหัสผ่านหลักของคุณบน เว็บนิรภัย bitwarden.com คุณต้องการเยี่ยมชมเว็บไซต์เดี๋ยวนี้หรือไม่ - ปิด @@ -709,9 +703,6 @@ เข้าสู่ระบบแบบสองขั้นตอน - - การเข้าสู่ระบบแบบสองขั้นตอนทำให้บัญชีของคุณมีความปลอดภัยมากขึ้นด้วยการให้คุณตรวจสอบการเข้าสู่ระบบของคุณกับอุปกรณ์อื่นเช่นคีย์ความปลอดภัย, แอพ authenticator, SMS, โทรศัพท์หรืออีเมล. เข้าสู่ระบบแบบสองขั้นตอนสามารถเปิดใช้งานบน เว็บนิรภัย bitwarden.com คุณต้องการเยี่ยมชมเว็บไซต์เดี๋ยวนี้หรือไม่ - ปลดล็อก ด้วย {0} @@ -919,7 +910,7 @@ Scanning will happen automatically. คัดลอก TOTP - If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login. + If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login. Copy TOTP automatically @@ -1565,9 +1556,6 @@ Scanning will happen automatically. Default dark theme - - Choose the dark theme to use when using Default (System) theme while your device's dark mode is in use. - Copy note @@ -2374,7 +2362,7 @@ select Add TOTP to store the key safely Approve login requests - Use this device to approve login requests made from other devices. + Use this device to approve login requests made from other devices Allow notifications @@ -2662,10 +2650,6 @@ Do you want to switch to this account? Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - Application @@ -2772,6 +2756,112 @@ Do you want to switch to this account? Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Too many attempts diff --git a/src/App/Resources/AppResources.tr.resx b/src/App/Resources/AppResources.tr.resx index 10195911c..1ab7a9d66 100644 --- a/src/App/Resources/AppResources.tr.resx +++ b/src/App/Resources/AppResources.tr.resx @@ -396,9 +396,6 @@ Web sitemizi ziyaret edin - - Yardım almak, haberlere göz atmak, bize ulaşmak ve Bitwarden'ı kullanmayı öğrenmek için web sitemizi ziyaret edin. - Web sitesi Label for a website. @@ -451,9 +448,6 @@ Ana parolayı değiştir - - Ana parolanızı bitwarden.com web kasası üzerinden değiştirebilirsiniz. Siteye gitmek ister misiniz? - Kapat @@ -707,9 +701,6 @@ İki aşamalı giriş - - İki aşamalı giriş, hesabınıza girererken işlemi bir güvenlik anahtarı, şifrematik uygulaması, SMS, telefon araması veya e-posta gibi ek bir yöntemle doğrulamanızı isteyerek hesabınızın güvenliğini artırır. İki aşamalı giriş özelliğini bitwarden.com web kasası üzerinden ayarlayabilirsiniz. Şimdi siteye gitmek ister misiniz? - Kilidi {0} ile aç @@ -1319,7 +1310,7 @@ Kod otomatik olarak taranacaktır. 3. "Parolaları Oto. Doldur"a dokunun - 4. Otomatik doldurmayı etkinleştirin + 4. Otomatik doldurmayı açın 5. "Bitwarden"ı seçin @@ -1558,9 +1549,6 @@ Kod otomatik olarak taranacaktır. Varsayılan koyu tema - - Varsayılan (sistem) temayı kullanırken cihazınızın koyu modu açıldığında koyu temaya geçmek için bunu seçin. - Notu kopyala @@ -2365,7 +2353,7 @@ Kod otomatik olarak taranacaktır. Giriş isteklerini onayla - Diğer cihazlardan yapılan giriş isteklerini onaylamak için bu cihazı kullan. + Diğer cihazlardan yapılan giriş isteklerini onaylamak için bu cihazı kullan Bildirimlere izin ver @@ -2630,7 +2618,7 @@ Bu hesaba geçmek ister misiniz? Mevcut ana parola - Oturum açıldı! + Giriş yapıldı! Diğer cihazımla onayla @@ -2642,7 +2630,7 @@ Bu hesaba geçmek ister misiniz? Ana parola ile onayla - Herkese açık bir cihaz kullanarak kapat + Paylaşılan bir cihaz kullanıyorsanız işaretlemeyin Bu cihazı hatırla @@ -2653,10 +2641,6 @@ Bu hesaba geçmek ister misiniz? Şifre anahtarları - - Oluşturma: {0} - To state the date in which the cipher was created: Created 03/21/2023 - Uygulama @@ -2679,7 +2663,7 @@ Bu hesaba geçmek ister misiniz? Ana parola yeniden istemi yardımı - Unlocking may fail due to insufficient memory. Decrease your KDF memory settings or set up biometric unlock to resolve. + Yetersiz bellek nedeniyle kilit açma başarısız olabilir. Sorunu çözmek için KDF bellek ayarlarınızı azaltın veya biyometrik kilit açmayı ayarlayın. Geçersiz API anahtarı @@ -2700,7 +2684,7 @@ Bu hesaba geçmek ister misiniz? Giriş yaparken sorun mu yaşıyorsunuz? - {0} olarak oturum açılıyor + {0} olarak giriş yapılıyor Kasa zaman aşımı eylemi oturumu kapatmak için değiştirildi @@ -2755,13 +2739,119 @@ Bu hesaba geçmek ister misiniz? Giriş onaylandı - Cihazla oturum aç, Bitwarden uygulamasının ayarlarında ayarlanmalıdır. Başka bir seçeneğe mi ihtiyacınız var? + Cihazla girişi Bitwarden mobil uygulamasının ayarlarından etkinleştirmelisiniz. Başka bir seçeneğe mi ihtiyacınız var? Cihazla giriş yap - Logging in on + Giriş yapılan yer + + + Kasa + + + Görünüm + + + Hesap güvenliği + + + Bitwarden Yardım Merkezi + + + Bitwarden destek ekibiyle iletişime geç + + + Uygulama bilgilerini kopyala + + + Şimdi eşitle + + + Kilit açma seçenekleri + + + Oturum zaman aşımı + + + Oturum zaman aşımı eylemi + + + Hesap parmak izi ifadesi + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + 1 saat 1 dakika + + + 1 saat {0} dakika + + + {0} saat 1 dakika + + + {0} saat {1} dakika + + + {0} saat + + + Cihazınızdaki diğer uygulamalarda hesap bilgilerini doldurmak için Android Otomatik Doldurma Sistemi kullanılır. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Ek seçenekler + + + Web uygulamasına devam edilsin mi? + + + {0} ile devam edilsin mi? + The parameter is an URL, like bitwarden.com. + + + Yardım merkezine gitmek ister misiniz? + + + Destek ekibiyle iletişim kurmak ister misiniz? + + + App Store'a gitmek ister misiniz? + + + Bitwarden web uygulamasında iki adımlı giriş ayarlayarak hesabınızı daha güvenli hale getirin. + + + Ana parolanızı Bitwarden web uygulamasında değiştirebilirsiniz. + + + Verilerinizi {0} adresinden kasanıza aktarabilirsiniz. + The parameter is an URL, like vault.bitwarden.com. + + + Yardım merkezinde Bitwarden kullanımı hakkında daha fazla bilgi alabilirsiniz. + + + Aradığınızı bulamadınız mı? bitwarden.com sitesinden Bitwarden destek ekibine ulaşabilirsiniz. + + + Web uygulamasında Bitwarden hesabınızın diğer özelliklerini keşfedin. + + + Bitwarden'ın kuruluş özelliğini kullanarak kasanızdaki kayıtları başkalarıyla paylaşabilirsiniz. Daha fazla bilgi için bitwarden.com sitesini ziyaret edin. + + + Başkalarının Bitwarden'ın kendileri için uygun olup olmadığını öğrenmelerine yardımcı olun. Uygulama mağazasını ziyaret edin ve şimdi bir derecelendirme bırakın. + + + Cihazınızın koyu modu kullanımdayken kullanılacak koyu temayı seçin + + + Oluşturulma: {0} {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. Çok fazla deneme diff --git a/src/App/Resources/AppResources.uk.resx b/src/App/Resources/AppResources.uk.resx index 57dfb2e51..275fe8b6d 100644 --- a/src/App/Resources/AppResources.uk.resx +++ b/src/App/Resources/AppResources.uk.resx @@ -396,9 +396,6 @@ Відвідайте наш вебсайт - - Відвідайте наш вебсайт, щоб отримати допомогу, дізнатися про новини, написати нам, або дізнатися більше про те, як використовувати Bitwarden. - Вебсайт Label for a website. @@ -451,9 +448,6 @@ Змінити головний пароль - - Ви можете змінити головний пароль в сховищі на bitwarden.com. Хочете перейти на вебсайт зараз? - Закрити @@ -707,9 +701,6 @@ Двоетапна перевірка - - Двоетапна перевірка дає змогу надійніше захистити ваш обліковий запис, вимагаючи підтвердження входу з використанням іншого пристрою, наприклад, за допомогою коду безпеки, програми авторизації, SMS, телефонного виклику, або е-пошти. Ви можете налаштувати двоетапну перевірку в сховищі на bitwarden.com. Хочете перейти на вебсайт зараз? - Розблокування з {0} @@ -1558,9 +1549,6 @@ Типова темна тема - - Використовуйте темну тему разом із системними налаштуваннями, коли вона увімкнена для пристрою. - Копіювати нотатку @@ -2366,7 +2354,7 @@ Схвалювати запити на вхід - Використовувати цей пристрій для схвалення запитів на вхід, виконаних з інших пристроїв. + Використовувати цей пристрій для схвалення запитів на вхід, виконаних з інших пристроїв Дозволити сповіщення @@ -2654,10 +2642,6 @@ Ключі доступу - - Створено {0} - To state the date in which the cipher was created: Created 03/21/2023 - Програма @@ -2764,6 +2748,112 @@ Увійти на + + Сховище + + + Вигляд + + + Безпека облікового запису + + + Довідковий центр Bitwarden + + + Звернутися до служби підтримки Bitwarden + + + Копіювати інформацію про програму + + + Синхронізувати + + + Налаштування розблокування + + + Час очікування сеансу + + + Дія після часу очікування сеансу + + + Фраза відбитка облікового запису + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Одна година й одна хвилина + + + Одна година й {0} хвилин + + + {0} години й одна хвилина + + + {0} години й {1} хвилин + + + {0} годин + + + Для автозаповнення даних входу в інших програмах на вашому пристрої використовується Android Autofill Framework. + + + Використовуйте вбудоване автозаповнення, якщо його підтримує ваша клавіатура. Інакше, використовуйте типову функцію накладання. + + + Додаткові налаштування + + + Продовжити у вебпрограмі? + + + Продовжити у {0}? + The parameter is an URL, like bitwarden.com. + + + Перейти до довідкового центру? + + + Перейти до зв'язку зі службою підтримки? + + + Продовжити в App Store? + + + Додайте вищий рівень захисту облікового запису, налаштувавши двоетапну перевірку у вебпрограмі Bitwarden. + + + Ви можете змінити головний пароль у вебпрограмі Bitwarden. + + + Ви можете імпортувати дані у своє сховище на {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Дізнайтеся більше про те, як використовувати Bitwarden в довідковому центрі. + + + Не вдалося знайти те, що шукаєте? Зверніться до служби підтримки на bitwarden.com. + + + Ознайомтеся з іншими функціями вашого облікового запису Bitwarden у вебпрограмі. + + + Bitwarden дозволяє доступ до записів сховища спільно з іншими користувачами за допомогою організації. Дізнайтеся більше про це на вебсайті bitwarden.com. + + + Допоможіть іншим дізнатися про Bitwarden. Оцініть програму в App Store. + + + Використовуйте темну тему автоматично з налаштуваннями вашого пристрою + + + Створено {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + Забагато спроб diff --git a/src/App/Resources/AppResources.vi.resx b/src/App/Resources/AppResources.vi.resx index e956fd600..195eb09bc 100644 --- a/src/App/Resources/AppResources.vi.resx +++ b/src/App/Resources/AppResources.vi.resx @@ -179,7 +179,7 @@ Sửa - Chỉnh sửa thư mục + Sửa thư mục Email @@ -190,7 +190,7 @@ Full label for a email address. - Gửi email cho chúng tôi + Liên hệ chúng tôi Gửi email trực tiếp cho chúng tôi để nhận trợ giúp hoặc để lại phản hồi. @@ -203,7 +203,7 @@ Title for your favorite items in the vault. - Gửi báo cáo lỗi + Báo lỗi Tạo một vấn đề tại trang GitHub của chúng tôi. @@ -222,14 +222,14 @@ Đã xóa thư mục. - Không được phân loại + Chưa phân loại Items that have no folder specified go in this special "catch-all" folder. Thư mục - Đã cập nhật thư mục. + Đã lưu thư mục Đi đến trang web @@ -276,16 +276,16 @@ Bạn có chắc chắn muốn đăng xuất không? - Xóa Tài Khoản + Xóa tài khoản - Bạn có chắc muốn xóa tài khoản này không? + Bạn có chắc muốn xóa tài khoản này? - Tài Khoản Đã Được Thêm Trước Đó + Tài khoản này đã có rồi - Bạn có muốn chuyển sang tài khoản này không? + Bạn muốn chuyển sang tài khoản này? Mật khẩu chính @@ -342,7 +342,7 @@ Reveal a hidden value (password). - Mục đã bị xoá. + Đã xóa mục Confirmation message after successfully deleting a login. @@ -364,7 +364,7 @@ Label for a uri/url. - Sử dụng dấu vân tay để mở khóa + Dùng vân tay để mở khóa Tên người dùng @@ -375,14 +375,14 @@ Validation message for when a form field is left blank and is required to be entered. - {0} đã được sao chép. + Đã sao chép {0} Confirmation message after successfully copying a value to the clipboard. Xác thực vân tay - Nhập lại mật khẩu chủ + Nhập lại mật khẩu chính Xác thực mã PIN @@ -394,10 +394,7 @@ Xem - Ghé thăm trang web của chúng tôi - - - Truy cập trang web của chúng tôi để nhận trợ giúp, tin tức, địa chỉ email liên lạc và tìm hiểu thêm về cách sử dụng Bitwarden. + Ghé thăm trang chủ Trang web @@ -410,40 +407,40 @@ Tài khoản - Tài khoản của bạn đã được tạo. Bạn có thể đăng nhập bây giờ. + Đã tạo tài khoản. Bạn có thể đăng nhập bây giờ. Thêm một mục - Tiện ích mở rộng ứng dụng + Tiện ích mở rộng - Cấp quyền truy cập sử dụng để Bitwarden tự động điền thông tin đăng nhập của bạn vào các ứng dụng và trang web. + Sử dụng dịch vụ trợ năng của Bitwarden để tự động điền thông tin đăng nhập của bạn vào các ứng dụng và trang web. - Dịch vụ tự động điền + Dịch vụ điền tự động Tránh các ký tự dễ gây nhầm lẫn - Phần mở rộng Bitwarden + Tiện ích mở rộng Bitwarden - Cách dễ nhất để thêm thông tin đăng nhập mới vào kho của bạn là từ Phần mở rộng Bitwarden. Tìm hiểu thêm về cách sử dụng Phần mở rộng Bitwarden bằng cách chuyển đến màn hình "Cài đặt". + Cách dễ nhất để thêm thông tin đăng nhập mới vào kho của bạn là bằng tiện ích mở rộng Bitwarden. Tìm hiểu thêm về cách sử dụng tiện ích mở rộng Bitwarden trong "Cài đặt". - Sử dụng Bitwarden trong Safari và các ứng dụng khác để tự động điền thông tin đăng nhập của bạn. + Dùng Bitwarden trong Safari và các ứng dụng khác để tự động điền thông tin đăng nhập của bạn. Dịch vụ tự động điền Bitwarden - Cấp quyền truy cập sử dụng để Bitwarden tự động điền thông tin đăng nhập giúp bạn. + Dùng dịch vụ trợ năng của Bitwarden để tự động điền thông tin đăng nhập của bạn. - Thay đổi email + Đổi email Bạn có thể thay đổi địa chỉ email trong trang web Bitwarden. Bạn có muốn truy cập bitwarden.com bây giờ? @@ -451,9 +448,6 @@ Thay đổi mật khẩu chính - - Bạn có thể thay đổi mật khẩu chủ trong trang web Bitwarden. Bạn có muốn truy cập bitwarden.com bây giờ? - Đóng @@ -461,14 +455,14 @@ Tiếp tục - Tạo Tài Khoản + Tạo tài khoản Đang tạo tài khoản... Message shown when interacting with the server - Chỉnh sửa mục + Sửa mục Bật tự động đồng bộ @@ -477,13 +471,13 @@ Nhập địa chỉ email tài khoản của bạn để nhận gợi ý mật khẩu. - Bật lại tiện ích mở rộng ứng dụng + Bật lại tiện ích mở rộng Sắp xong! - Bật tiện ích mở rộng ứng dụng + Bật tiện ích mở rộng Trong Safari, tìm Bitwarden bằng cách sử dụng biểu tượng chia sẻ (gợi ý: di chuyển sang phải ở cuối cùng của trình đơn). @@ -496,13 +490,13 @@ Bạn đã sẵn sàng để đăng nhập! - Thông tin đăng nhập của bạn giờ đây có thể dễ dàng truy cập từ Safari, Chrome và các ứng dụng được hỗ trợ khác. + Dễ dàng truy cập thông tin đăng nhập của bạn từ Safari, Chrome và các ứng dụng được hỗ trợ khác. Trong Safari và Chrome, tìm Bitwarden bằng cách sử dụng biểu tượng chia sẻ (gợi ý: di chuyển sang phải ở cuối cùng của trình đơn chia sẻ). - Chạm vào biểu tượng Bitwarden trong trình đơn để khởi chạy phần mở rộng. + Nhấn vào biểu tượng Bitwarden trong trình đơn để khởi chạy phần mở rộng. Để bật Bitwarden trong Safari và các ứng dụng khác, nhấn vào biểu tượng "thêm" ở hàng dưới cùng của trình đơn. @@ -517,19 +511,19 @@ Tạo mật khẩu - Nhận gợi ý mật khẩu Bitwarden + Nhận gợi ý mật khẩu chính Nhập mục - Bạn có thể nhập mật khẩu hàng loạt trên trang chủ Bitwarden. Bạn có muốn truy cập bitwarden.com bây giờ? + Bạn có thể nhập hàng loạt mục đang nhập trên trang web Bitwarden. Bạn có muốn truy cập bitwarden.com bây giờ? Dễ dàng nhập toàn bộ mật khẩu của bạn từ các ứng dụng quản lý mật khẩu khác. - Lần đồng bộ gần nhất: + Đồng bộ lúc: Độ dài @@ -550,16 +544,16 @@ 4 giờ - Tức thì + Lập tức - Thời Gian Chờ Của Kho + Thời gian mở kho - Hành động khi hết thời gian chờ + Khi hết thời gian mở kho - Đăng xuất sẽ xóa tất các truy cập vào kho của bạn và yêu cầu xác thực trực tuyến sau khi khoảng thời gian chờ hết. Bạn có chắc bạn muốn dùng cài đặt này? + Tuỳ chọn đăng xuất sẽ đăng xuất khỏi kho sau khi hết thời gian mở kho và bạn sẽ cần đăng nhập lại để tiếp tục sử dụng. Bạn có chắc muốn sử dụng tuỳ chọn này không? Đang đăng nhập... @@ -572,30 +566,30 @@ Quản lý - Mật khẩu xác nhận không trùng khớp. + Mật khẩu nhập lại không trùng khớp. - Mật khẩu chủ là mật khẩu bạn sử dụng để truy cập kho mật khẩu của bạn. Nó rất quan trọng nên bạn không được quên mật khẩu chủ của mình. Không thể khôi phục lại mật khẩu chủ nếu bạn quên nó. + Mật khẩu chính là mật khẩu bạn sử dụng để truy cập kho mật khẩu của bạn. Nó rất quan trọng nên bạn không được quên mật khẩu chủ của mình. Không thể khôi phục lại mật khẩu chính nếu bạn quên nó. Gợi ý mật khẩu chính (tùy chọn) - Một gợi ý mật khẩu có thể giúp bạn nhớ lại mật khẩu chủ của bạn nếu bạn quên nó. + Một gợi ý mật khẩu có thể giúp bạn nhớ lại mật khẩu chính của bạn nếu bạn quên nó. - Siêu mật khẩu bắt buộc phải dài ít nhất {0} kí tự. + Mật khẩu chính phải tối thiểu {0} kí tự. - Số chữ số tối thiểu + Số chữ số Minimum numeric characters for password generator settings - Số kí tự đặc biệt tối thiểu + Số kí tự đặc biệt Minimum special characters for password generator settings - Cài đặt Khác + Cài đặt khác Bạn phải đăng nhập vào ứng dụng Bitwarden trước khi sử dụng phần mở rộng. @@ -604,7 +598,7 @@ Không bao giờ - Đã tạo mục mới. + Đã thêm mục mới Không có mục yêu thích nào trong kho của bạn. @@ -613,7 +607,7 @@ Không có mục nào trong kho của bạn. - Không có mục nào trong kho của bạn phù hợp với trang web này. Nhấn để thêm. + Không có mục nào trong kho của bạn cho trang web này. Nhấn để thêm. Thông tin đăng nhập này không có tên người dùng hoặc mật khẩu được định cấu hình. @@ -632,7 +626,7 @@ Khác - Đã tạo mật khẩu. + Đã tạo mật khẩu Tạo mật khẩu @@ -641,13 +635,13 @@ Gợi ý mật khẩu - Chúng tôi đã gửi cho bạn email có chứa gợi ý mật khẩu chủ của bạn. + Chúng tôi đã gửi cho bạn email có chứa gợi ý mật khẩu chính của bạn. Bạn có chắc chắn muốn ghi đè mật khẩu hiện tại không? - Bitwarden giữ kho mật khẩu của bạn được đồng bộ tự động hóa bằng cách sử dụng thông báo đẩy. Để mang lại trải nghiệm tốt nhất, vui lòng chọn "Đồng ý" trên bảng thông báo sau khi được yêu cầu bật thông báo đẩy. + Bitwarden tự động đồng bộ kho mật khẩu của bạn bằng thông báo đẩy. Để có trải nghiệm tốt nhất, vui lòng chọn "Cho phép" trên bảng thông báo xin cấp quyền thông báo đẩy. Push notifications for apple products @@ -681,7 +675,7 @@ Thông tin mục - Đã cập nhật mục. + Đã lưu mục Đang gửi... @@ -692,10 +686,10 @@ Message shown when interacting with the server - Đồng bộ hoàn tất. + Đồng bộ hoàn tất - Đồng bộ thất bại. + Đồng bộ thất bại Đồng bộ kho mật khẩu ngay @@ -705,23 +699,20 @@ What Apple calls their fingerprint reader. - Xác thực hai lớp - - - Xác thực hai lớp giúp tài khoản của bạn an toàn hơn bằng cách thêm một bước xác minh hoạt động đăng nhập của bạn bằng khóa bảo mật, ứng dụng xác thực, tin nhắn, cuộc gọi điện thoại hoặc email. Bạn có thể bật xác thực hai lớp trong trang web Bitwarden. Bạn có muốn ghé thăm bitwarden.com bây giờ không? + Xác minh 2 bước - Mở khóa với {0} + Mở khóa bằng {0} - Mở khóa với mã PIN + Mở khóa bằng mã PIN Đang xác nhận Message shown when interacting with the server - Mã xác nhận + Mã xác minh Xem mục @@ -737,7 +728,7 @@ Screen title - Đã kích hoạt Phần mở rộng! + Đã kích hoạt mở rộng! Biểu tượng @@ -754,7 +745,7 @@ This is used for the autofill service. ex. "There are no items in your vault for twitter.com". - Khi bạn chọn một trường nhập liệu và thấy thông báo tự động điền của Bitwarden, bạn có thể chạp vào nó để mở tự động điền tiêu chuẩn. + Khi bạn chọn một ô nhập liệu và thấy thông báo điền tự động của Bitwarden, hãy nhấn vào nó để bắt đầu dịch vụ điền tự động. Chạm vào thông báo này để tự động điền thông tin đăng nhập từ kho của bạn. @@ -784,7 +775,7 @@ Trạng thái - Cách dễ nhất để thêm một đăng nhập mới vào kho của bạn là bằng dịch vụ Tự động điền của Bitwarden. Tìm hiểu thêm về cách sử dụng dịch vụ Tự động điền của Bitwarden trong phần 'Cài đặt'. + Cách dễ nhất để thêm một thông tin đăng nhập mới vào kho của bạn là bằng dịch vụ Điền tự động điền của Bitwarden. Xem cách sử dụng Điền tự động của Bitwarden trong "Cài đặt"'. Tự động điền @@ -796,10 +787,10 @@ Bạn có chắc chắn muốn tự động điền vào mục này? Nó không hoàn toàn khớp với "{0}". - Khớp mục + Những mục trùng khớp - Các mục có thể khớp + Những mục có thể khớp Tìm kiếm @@ -815,11 +806,11 @@ Message shown when trying to launch an app that does not exist on the user's device. - Ứng dụng Xác thực hai lớp + Ứng dụng xác thực For 2FA - Nhập mã xác nhận 6 chữ số từ ứng dụng xác thực của bạn. + Nhập mã xác minh 6 chữ số từ ứng dụng xác thực của bạn. For 2FA @@ -827,11 +818,11 @@ For 2FA - Đăng nhập không sẵn có + Đăng nhập không được For 2FA whenever there are no available providers on this device. - Tài khoản này đã kích hoạt xác thực hai lớp, tuy nhiên dịch vụ xác thực hai lớp đã chọn không được hỗ trợ trên thiết bị này. Vui lòng sử dụng thiết bị được hỗ trợ và/hoặc dịch vụ xác thực bổ sung có thể hoạt động tốt trên thiết bị (chẳng hạn như một ứng dụng xác thực). + Tài khoản này đã kích hoạt xác minh 2 bước, tuy nhiên dịch vụ xác minh 2 bước đã chọn không được hỗ trợ trên thiết bị này. Vui lòng sử dụng thiết bị được hỗ trợ hoặc cài đặt một ứng dụng xác thực tốt hơn. Mã khôi phục @@ -846,7 +837,7 @@ For 2FA - Tùy chọn xác thực hai lớp + Tùy chọn xác minh 2 bước Sử dụng phương pháp xác thực hai lớp khác @@ -856,7 +847,7 @@ For 2FA - Đã gửi email xác minh. + Đã gửi email xác minh For 2FA @@ -867,7 +858,7 @@ "YubiKey" is the product name and should not be translated. - Thêm tệp đính kèm mới + Đính kèm tệp tin Tệp đính kèm @@ -894,13 +885,13 @@ Totp code label - Đã thêm khoá xác thực. + Đã thêm khóa xác thực. - Không thể đọc khoá xác thực. + Không thể đọc khóa xác thực. - Đưa Máy ảnh vào Mã QR. + Đưa máy ảnh vào Mã QR. Quá trình quét sẽ diễn ra tự động. @@ -916,7 +907,7 @@ Quá trình quét sẽ diễn ra tự động. Sao chép TOTP - Nếu thông tin đăng nhập có khóa xác thực, hãy sao chép mã xác minh TOTP vào khay nhớ tạm của bạn khi bạn tự động điền thông tin đăng nhập. + Nếu thông tin đăng nhập có khóa xác thực, hãy sao chép mã xác minh TOTP vào bộ nhớ tạm khi bạn tự động điền thông tin đăng nhập. Tự động sao chép mã TOTP @@ -931,7 +922,7 @@ Quá trình quét sẽ diễn ra tự động. Đã xóa tệp đính kèm - Chọn tập tin + Chọn tệp Tập tin @@ -955,10 +946,10 @@ Quá trình quét sẽ diễn ra tự động. Bạn không thể sử dụng tính năng này cho đến khi bạn cập nhật khoá mã hóa. - Encryption key migration required. Please login through the web vault to update your encryption key. + Cần di chuyển khóa mã hóa. Vui lòng đăng nhập trang web Bitwaden để cập nhật khóa mã hóa của bạn. - Tìm Hiểu Thêm + Tìm hiểu thêm Địa chỉ API máy chủ @@ -981,7 +972,7 @@ Quá trình quét sẽ diễn ra tự động. "Identity" refers to an identity server. See more context here https://en.wikipedia.org/wiki/Identity_management - Môi trường độc lập + Môi trường tự lưu trữ Chỉ định URL cơ sở on-premise của bạn để cài đặt máy chủ Bitwarden. @@ -990,19 +981,19 @@ Quá trình quét sẽ diễn ra tự động. Địa chỉ máy chủ - URL máy chủ lưu trữ web + Địa chỉ máy chủ lưu trữ web Chạm vào thông báo này để xem thông tin đăng nhập từ kho của bạn. - Trường tùy chỉnh + Mục tùy chỉnh Chép số - Sao chép Mã bảo mật + Sao chép mã bảo mật Số @@ -1020,7 +1011,7 @@ Quá trình quét sẽ diễn ra tự động. Đăng nhập - Ghi chú bảo mật + Ghi chú Địa chỉ 1 @@ -1059,7 +1050,7 @@ Quá trình quét sẽ diễn ra tự động. Tiến sĩ - Tháng Hết Hạn + Tháng hết hạn Năm hết hạn @@ -1095,7 +1086,7 @@ Quá trình quét sẽ diễn ra tự động. Tháng 5 - Tên đệm + Tên lót Ông @@ -1143,13 +1134,13 @@ Quá trình quét sẽ diễn ra tự động. Hết hạn - Hiển thị biểu tượng trang web + Hiện biểu tượng trang web - Hiển thị một hình ảnh dễ nhận biết bên cạnh mỗi lần đăng nhập. + Hiện logo trang web bên cạnh mỗi đăng nhập. - Biểu tượng địa chỉ máy chủ + Địa chỉ biểu tượng máy chủ Tự động điền với Bitwarden @@ -1170,16 +1161,16 @@ Quá trình quét sẽ diễn ra tự động. Không có mục nào trong thư mục này. - Không có khoản mục nào trong thùng rác! + Không có gì trong thùng rác. Tự động điền bằng trợ năng - Dịch vụ tự động điền của Bitwarden sử dụng Bộ khung Tự động điền của Android để hỗ trợ điền thông tin đăng nhập, thẻ tín dụng và thông tin danh tính vào các ứng dụng khác trên thiết bị của bạn. + Điền tự động của Bitwarden sử dụng Android Autofill Framework để điền thông tin đăng nhập vào các ứng dụng trên thiết bị của bạn. - Sử dụng dịch vụ tự động điền của Bitwarden để điền thông tin đăng nhập, thẻ tín dụng và thông tin danh tính vào các ứng dụng khác. + Dùng Điền tự động của Bitwarden để điền thông tin đăng nhập vào các ứng dụng. Mở cài đặt Tự động điền @@ -1204,7 +1195,7 @@ Quá trình quét sẽ diễn ra tự động. Chúng tôi không thể mở cài đặt tự động điền cho bạn. Bạn có thể đi đến cài đặt tự động điền theo cách thủ công bằng cách vào Cài đặt > Hệ thống > Ngôn ngữ và nhập liệu > Nâng cao > Dịch vụ tự động điền. - Tên Trường Tùy Chỉnh + Tên mục tùy chỉnh Đúng/Sai @@ -1219,7 +1210,7 @@ Quá trình quét sẽ diễn ra tự động. Văn bản - Trường tùy chỉnh mới + Thêm mục tùy chỉnh Bạn muốn thêm loại trường tùy chỉnh nào? @@ -1255,10 +1246,10 @@ Quá trình quét sẽ diễn ra tự động. Bắt đầu với - Độ phù hợp với URL + Phát hiện khớp URL - Độ phù hợp + Phát hiện khớp URI match detection for auto-fill. @@ -1284,42 +1275,42 @@ Quá trình quét sẽ diễn ra tự động. Bạn có thể cần dùng dịch vụ trợ năng vì một số ứng dụng không hỗ trợ dịch vụ tự động điền của Android. - Mật khẩu đã được cập nhật + Đã cập nhật mật khẩu ex. Date this password was updated - Đã được cập nhật + Cập nhật vào ex. Date this item was updated - Tự động điền đã được kích hoạt! + Đã bật Điền tự động! - Bạn phải đăng nhập vào ứng dụng Bitwarden trước khi sử dụng Tự động điền. + Bạn cần đăng nhập Bitwarden trước khi sử dụng Điền tự động. - Tên và mật khẩu có quyền tự động điền từ bàn phím khi bạn sử dụng ứng dụng hay website. + Dễ dàng đăng nhập tài khoản khi bạn sử dụng ứng dụng hay website. - Chúng tôi khuyên nên vô hiệu hóa các ứng dụng tự động điền khác trong Cài đặt nếu bạn không có ý định sử dụng chúng. + Bạn nên tắt các ứng dụng Điền tự động khác trong Cài đặt nếu bạn không có ý định sử dụng chúng. - Thông tin tự động điền vào trên bàn phím bằng việc truy cập trực tiếp vào mục lưu trữ dữ liệu. + Truy cập kho mật khẩu của bạn trực tiếp từ bàn phím để điền mật khẩu nhanh chóng. - Để mở chức năng tự động điền mật khẩu trên thiết bị của bạn, xin làm theo hướng dẫn dưới đây: + Làm theo hướng dẫn để bật tính năng tự động điền mật khẩu trên thiết bị của bạn: - 1. Truy cập vào ứng dụng "Cài đặt" của iOS + 1. Vào "Cài đặt" của iOS - 2. Chọn "Mật khẩu & Tài khoản" + 2. Chọn "Mật khẩu" 3. Chọn "Tự động điền mật khẩu" - 4. Mở Tự động điền mật khẩu + 4. Bật Tự động điền mật khẩu 5. Chọn "Bitwarden" @@ -1328,7 +1319,7 @@ Quá trình quét sẽ diễn ra tự động. Tự động điền mật khẩu - Cách dễ nhất để thêm đăng nhập mới vào kho của bạn là bằng cách sử dụng tiện ích mở rộng Tự động điền mật khẩu của Bitwarden. Tìm hiểu thêm về cách sử dụng tiện ích mở rộng Tự động điền mật khẩu của Bitwarden bằng cách điều hướng đến màn hình "Cài đặt". + Cách dễ nhất để thêm thông tin đăng nhập mới vào kho của bạn là bằng tiện ích mở rộng Điền tự động của Bitwarden. Tìm hiểu thêm trong mục "Cài đặt". Địa chỉ email không hợp lệ. @@ -1337,16 +1328,16 @@ Quá trình quét sẽ diễn ra tự động. Thẻ - Danh tính + Danh bạ Đăng nhập - Ghi chú bảo mật + Ghi chú - Tất cả các mục + Tất cả mục Đường dẫn @@ -1360,37 +1351,37 @@ Quá trình quét sẽ diễn ra tự động. Kiểm tra xem mật khẩu có bị lộ không. - Mật khẩu này đã bị lộ {0} lần trong các lần rò rĩ dữ liệu. Bạn nên thay đổi nó. + Mật khẩu này đã bị lộ {0} lần trong các vụ rò rỉ dữ liệu. Bạn nên đổi nó. - Mật khẩu này không được tìm thấy trong bất kỳ các lần rò rĩ dữ liệu nào nào được biết đến. Nó an toàn để sử dụng. + Mật khẩu này không được tìm thấy trong lần rò rỉ dữ liệu nào trước đây. Nó an toàn để sử dụng. - Tên đầy đủ + Tên danh bạ Giá trị - Lịch sử Mật khẩu + Lịch sử mật khẩu - Các loại + Loại - Không có mật khẩu nào để liệt kê. + Không có mật khẩu nào. - Không có mục nào để liệt kê. + Không có mục nào. - Tìm kiếm bộ sưu tập + Tìm bộ sưu tập - Tìm kiếm tập tin trong Sends + Tìm tệp tin trong Gửi - Tìm kiếm văn bản trong Sends + Tìm văn bản trong Gửi Tìm kiếm {0} @@ -1409,20 +1400,20 @@ Quá trình quét sẽ diễn ra tự động. Khác - Quyền sở hữu + Sở hữu Ai sở hữu mục này? - Không có bộ sưu tập nào để liệt kê. + Không có bộ sưu tập nào. {0} đã di chuyển tới {1}. ex: Item moved to Organization. - Mục đã được chia sẻ. + Đã chia sẻ mục. Bạn phải chọn ít nhất một bộ sưu tập. @@ -1431,16 +1422,16 @@ Quá trình quét sẽ diễn ra tự động. Chia sẻ - Chia sẻ mục này + Chia sẻ mục Chuyển tới Tổ chức - Không có tổ chức để liệt kê. + Không có tổ chức. - Chọn một tổ chức mà bạn muốn chuyển mục này đến. Việc chuyển đến một tổ chức sẽ chuyển quyền sở hữu mục này cho tổ chức đó. Bạn sẽ không còn là chủ sở hữu trực tiếp của mục này khi nó đã được di chuyển. + Chọn một tổ chức mà bạn muốn chuyển mục này đến. Việc chuyển đến một tổ chức sẽ chuyển quyền sở hữu mục này cho tổ chức đó. Bạn sẽ không còn là chủ sở hữu trực tiếp của mục này khi đã chuyển. Số lượng chữ @@ -1449,18 +1440,18 @@ Quá trình quét sẽ diễn ra tự động. Cụm từ mật khẩu - Dấu tách từ + Dấu phân tách - Xoá + Xóa To clear something out. example: To clear browser history. - Tạo mật khẩu + Tạo Short for "Password Generator" - Không có thư mục để liệt kê. + Không có thư mục nào. Cụm từ mật khẩu @@ -1474,7 +1465,7 @@ Quá trình quét sẽ diễn ra tự động. Bitwarden cho phép bạn chia sẻ các mục trong kho của mình với những người khác bằng cách sử dụng tài khoản tổ chức. Bạn có muốn truy cập trang web bitwarden.com để tìm hiểu thêm không? - Trích xuất kho + Xuất kho Khóa ngay @@ -1486,26 +1477,26 @@ Quá trình quét sẽ diễn ra tự động. Mở khóa - Mở Khóa Kho + Mở kho 30 phút - Đặt mã PIN của bạn để mở khóa Bitwarden. Cài đặt mã PIN của bạn sẽ bị xóa nếu bạn hoàn toàn đăng xuất khỏi ứng dụng. + Đặt mã PIN để mở khóa Bitwarden. Cài đặt mã PIN của bạn sẽ bị xóa nếu bạn đăng xuất hoàn toàn khỏi ứng dụng. - Đã đăng nhập là {0} trên {1} + Đã đăng nhập {0} trên {1}. ex: Logged in as user@example.com on bitwarden.com. - Kho của bạn đã bị khóa. Xác minh mật khẩu chính của bạn để mở. + Dùng mật khẩu chính của bạn để mở khóa kho. - Kho của bạn đã bị khóa. Xác minh mã PIN của bạn để mở. + Đã khóa kho của bạn. Nhập mã PIN để mở. - Kho của bạn đã bị khoá. Hãy xác minh danh tính của bạn để tiếp tục. + Đã khóa kho của bạn. Hãy xác minh danh tính để tiếp tục. Tối @@ -1535,32 +1526,29 @@ Quá trình quét sẽ diễn ra tự động. Clipboard is the operating system thing where you copy/paste data to on your device. - Tự động xóa các giá trị đã sao chép khỏi bộ nhớ tạm. + Tự động xóa mọi thứ đã sao chép khỏi bộ nhớ tạm. Clipboard is the operating system thing where you copy/paste data to on your device. - Phương thức kiểm tra URI mặc định + Phương thức kiểm tra đường dẫn Default URI match detection for auto-fill. - Chọn phương thức mặc định để kiểm tra so sánh URI cho các đăng nhập khi xử lí các hành động như là tự động điền. + Chọn phương thức kiểm tra đường dẫn để xử lý cho các hành động như là tự động điền thông tin đăng nhập. - Giao diện + Chủ đề Color theme - Thay đổi màu giao diện của ứng dụng. + Chọn chủ đề ứng dụng. - Mặc định (Hệ thống) + Giống như hệ thống Giao diện tối mặc định - - Chọn chủ đề tối để sử dụng khi sử dụng chủ đề Mặc định (Hệ thống) trong khi chế độ tối của thiết bị đang được sử dụng. - Sao chép ghi chú @@ -1571,7 +1559,7 @@ Quá trình quét sẽ diễn ra tự động. Bạn có chắc muốn thoát Bitwarden? - Bạn có muốn yêu cầu mở khóa bằng mật khẩu chính khi ứng dụng được khởi động lại không? + Bạn có muốn yêu cầu mở khóa bằng mật khẩu chính khi khởi động lại ứng dụng? Đen @@ -1582,33 +1570,33 @@ Quá trình quét sẽ diễn ra tự động. 'Nord' is the name of a specific color scheme. It should not be translated. - Tối + Solarized Dark 'Solarized Dark' is the name of a specific color scheme. It should not be translated. - Tự động điền các URI bị chặn + Tự động điền các URI đã chặn - Yêu cầu thêm thông tin đăng nhập + Hỏi khi thêm thông tin đăng nhập - Yêu cầu thêm một mục nếu không tìm thấy một mục trong kho của bạn. + Yêu cầu thêm mục nếu không tìm thấy nó trong kho của bạn. Khi khởi động lại ứng dụng - Tự động điền giúp dễ dàng an toàn truy cập kho Bitwarden của bạn từ các trang web khác và các ứng dụng. Có vẻ như không mở chức năng tự động điền cho Bitwarden. Mở chức năng tự động điền cho Bitwarden ở màn hình "Cài đặt". + Điền tự động giúp dễ dàng an toàn truy cập kho Bitwarden của bạn từ các trang web và ứng dụng khác. Hãy bật nó trong mục "Cài đặt". - Thay đổi về giao diện của bạn sẽ được áp dụng khi ứng dụng khởi động lại. + Chủ đề sẽ được áp dụng khi khởi động lại ứng dụng. Viết hoa ex. Uppercase the first character of a word. - Bao gồm cả số + Bao gồm số Tải xuống @@ -1617,46 +1605,46 @@ Quá trình quét sẽ diễn ra tự động. Đã chia sẻ - Chuyển đổi chế độ hiển thị + Đổi chế độ hiển thị Phiên đăng nhập của bạn đã hết hạn. - Sử dụng phương thức sinh trắc học để xác nhận. + Xác minh sinh trắc học - Phương thức sinh trắc học + Sinh trắc học - Sử dụng phương thức sinh trắc học để mở khóa + Dùng sinh trắc học để mở khóa - Bitwarden cần sự chú ý - Kiểm tra "Tự động điền bằng trợ năng" trong Cài đặt của Bitwarden + Chú ý Bitwarden - Kiểm tra "Điền tự động bằng trợ năng" trong Cài đặt của Bitwarden - 3. Ở màn hình Cài đặt Ứng dụng Android cho Bitwarden, chọn "Hiển thị lên trên các ứng dụng khác" (dưới mục "Nâng cao") và chạm vào tùy chọn bật/tắt để cho phép hiển thị đè. + 3. Ở màn hình Cài đặt Ứng dụng Android cho Bitwarden, chọn "Hiển thị trên các ứng dụng khác" (dưới mục Nâng cao) và nhấn vào tùy chọn bật/tắt để cho phép hiển thị. - Phân quyền + Quyền - Mở màn hình cài đặt phân quyền + Mở màn hình cài đặt quyền - 3. Ở màn hình Cài đặt Ứng dụng Android cho Bitwarden, chọn "Hiển thị lên trên các ứng dụng khác" (dưới mục "Nâng cao") và gạt tùy chọn bật/tắt để cho phép hiển thị đè. + 3. Ở màn hình Cài đặt Ứng dụng Android cho Bitwarden, chọn "Hiển thị trên các ứng dụng khác" (dưới mục Nâng cao) và nhấn vào tùy chọn bật/tắt để cho phép hiển thị. Đã từ chối - Đã chấp thuận + Đã cấp - Định dạng tập tin + Định dạng tệp tin - Nhập mật khẩu chính để trích xuất kho của bạn. + Nhập mật khẩu chính để xuất kho của bạn. Gửi mã xác minh tới email của bạn @@ -1665,59 +1653,59 @@ Quá trình quét sẽ diễn ra tự động. Đã gửi mã! - Xác nhận danh tính của bạn để tiếp tục. + Xác minh danh tính để tiếp tục. - Bản trích xuất này chứ dữ liệu kho của bạn dưới một định dạng không được mã hóa. Bạn không nên lưu trữ hay gửi tập tin trích xuất thông qua phương thức không an toàn (như email). Xóa nó ngay lập tức khi bạn đã sử dụng xong. + Tệp trích xuất này chứa dữ liệu kho của bạn dưới một định dạng không được mã hóa. Bạn không nên lưu trữ hay gửi tệp này thông qua phương thức không an toàn (như email). Xóa nó ngay lập tức khi bạn đã dùng xong. - This export encrypts your data using your account's encryption key. If you ever rotate your account's encryption key you should export again since you will not be able to decrypt this export file. + Quá trình xuất này mã hóa dữ liệu của bạn bằng khóa mã hóa của tài khoản. Nếu bạn đã từng thay đổi khóa mã hóa của tài khoản, bạn cần xuất lại vì bạn sẽ không thể giải mã tệp xuất này. - Account encryption keys are unique to each Bitwarden user account, so you can't import an encrypted export into a different account. + Khóa mã hóa tài khoản là duy nhất cho mỗi tài khoản Bitwarden, vì vậy bạn không thể nhập tệp xuất được mã hóa vào một tài khoản khác. - Xác nhận xuất mật khẩu ra file csv + Xác nhận xuất kho Title for the alert to confirm vault exports. Cảnh báo - Có vấn đề trong việc trích xuất kho của bạn. Nếu vấn đề vẫn tiếp tục, bạn sẽ phải trích xuất từ kho nền web. + Xảy ra lỗi khi xuất kho của bạn. Nếu vấn đề vẫn tiếp diễn, hãy xuất trên bản web. - Trích xuất kho thành công + Xuất kho hoàn tất Tạo bản sao Clone an entity (verb). - Có một hoặc vài chính sách của tổ chức đang làm ảnh hưởng đến cài đặt tạo mật khẩu của bạn + Có một hoặc vài chính sách của tổ chức đang ảnh hưởng đến cài đặt tạo mật khẩu của bạn Mở Button text for an open operation (verb). - Có vấn đề khi lưu tập đính kèm này. If vấn đề này vẫn tiếp tục, bạn có thể lưu nó từ kho nền web. + Xảy ra lỗi khi lưu tệp đính kèm này. Nếu vấn đề vẫn tiếp diễn, hãy lưu nó trên bản web. - Tập tin đính kèm được lưu thành công + Đã lưu tệp tin đính kèm thành công - Hãy mở "Tự động điền bằng trợ năng" từ Cài đặt của Bitwarden để sử dụng chức năng tự động điền. + Hãy bật "Điền tự động bằng trợ năng" từ Cài đặt của Bitwarden để sử dụng tính năng tự động điền. Không tìm thấy trường mật khẩu nào - Đang gửi vào thùng rác... + Đang cho vào thùng rác... Message shown when interacting with the server - Mục đã được đưa vào thùng rác. + Đã cho mục vào thùng rác. Confirmation message after successfully soft-deleting a login @@ -1729,7 +1717,7 @@ Quá trình quét sẽ diễn ra tự động. Message shown when interacting with the server - Mục đã được khôi phục. + Đã khôi phục mục Confirmation message after successfully restoring a soft-deleted item @@ -1737,38 +1725,38 @@ Quá trình quét sẽ diễn ra tự động. (noun) Location of deleted items which have not yet been permanently deleted - Tìm kiếm thùng rác + Tìm kiếm trong thùng rác (action prompt) Label for the search text field when viewing the trash folder - Bạn có chắc chắn muốn xóa hoàn toàn nó không? Thao tác này không thể được khôi phục. + Bạn có chắc muốn xóa vĩnh viễn? Không thể hoàn tác. Confirmation alert message when permanently deleteing a cipher. - Bạn có thực sự muốn khôi phục mục này? + Bạn có chắc muốn khôi phục mục này? Confirmation alert message when restoring a soft-deleted cipher. - Bạn có thực sự muốn đưa vào thùng rác? + Bạn có chắc muốn cho vào thùng rác? Confirmation alert message when soft-deleting a cipher. Mở khóa bằng sinh trắc học cho tài khoản này bị vô hiệu hóa trong khi chờ xác minh mật khẩu chính. - Mở khóa bằng sinh trắc học cho tài khoản này bị vô hiệu hóa trong khi chờ xác minh mật khẩu chính. + Mở khóa tự động điền bằng sinh trắc học cho tài khoản này bị vô hiệu hóa trong khi chờ xác minh mật khẩu chính. - Kích hoạt đồng bộ khi làm tươi(refresh) + Đồng bộ khi làm mới - Đồng bộ hóa kho bằng cử chỉ vuốt xuống + Đồng bộ kho bằng cách vuốt xuống. - Đăng nhập theo tài khoản tổ chức + Đăng nhập một lần cho doanh nghiệp - Đăng nhập nhanh bằng cách sử dụng cổng đăng nhập của tổ chức. Vui lòng nhập thông tin nhận dạng tổ chức để bắt đầu + Đăng nhập nhanh bằng cách sử dụng cổng đăng nhập một lần của tổ chức. Vui lòng nhập thông tin nhận dạng tổ chức để bắt đầu. Nhận dạng tổ chức @@ -1780,22 +1768,22 @@ Quá trình quét sẽ diễn ra tự động. Tạo mật khẩu chính - Để hoàn thành việc truy cập bằng phương thức SSO, vui lòng tạo mật khẩu chính để truy cập và bảo vệ kho + Để hoàn tất truy cập bằng phương thức SSO, vui lòng tạo mật khẩu chính để truy cập và bảo vệ kho. - Một hay nhiều chính sách của tổ chức yêu cầu tiêu chuẩn về mật khẩu chính theo yêu cầu sau đây: + Một hay nhiều chính sách của tổ chức yêu cầu mật khẩu chính của bạn phải: - Điểm phức tạp tối thiểu {0} + Độ mạnh tối thiểu {0} - Độ dài mật khẩu tối thiểu: {0} + Độ dài tối thiểu {0} Có chứa một hay nhiều ký tự viết hoa - Có chứa một hay nhiều ký tự viết thường + Có chứa một hay nhiều ký tự thường Có chứa một hay nhiều số @@ -1807,82 +1795,83 @@ Quá trình quét sẽ diễn ra tự động. Mật khẩu không đúng - Mật khẩu không khớp với yêu cầu của tổ chức. Vui lòng kiểm tra chính sách mật khẩu và thử lại + Mật khẩu không đáp ứng yêu cầu của tổ chức. Vui lòng kiểm tra chính sách mật khẩu và thử lại. Đang tải - Bằng việc kích hoạt chức năng bạn đồng ý các điều kiện sau: + Bật tính năng nghĩa là bạn đồng ý các điều kiện sau: + - Chính sách sử dụng và quyền riêng tư chưa biết + Chính sách Bảo mật và Điều khoản Dịch vụ chưa có. - Điều khoản sử dụng + Điều khoản Dịch vụ - Chính sách quyền riêng tư + Chính sách Bảo mật - Bitwarden cần kích hoạt: Vẽ lên ứng dụng( Draw-Over) trong phần cài đặt của Bitwarden + Chú ý Bitwarden - Bật (Hiện trên ứng dụng) trong phần cài đặt "Điền tự động" của Bitwarden Tự động điền mật khẩu - Sử dụng ứng dụng tự động điền biểu mẫu + Tự động điền biểu mẫu - Sử dụng tính năng tự động điền nếu bộ gõ hỗ trợ. Nếu không, sẽ chuyển qua chế độ tự động điền mặc định + Dùng tự động điền biểu mẫu nếu bộ gõ của bạn có hỗ trợ. Nếu không, hiện lên Điền tự động sẽ là mặc định. - Sử dụng trợ năng + Dùng trợ năng - Sử dụng chế độ tự động điền của Bitwarden để tự động điền thông tin đăng nhập trong ứng dụng và website. Khi chế độ này được kích hoạt, sẽ hiển thị cửa sổ popup ở ổ đăng nhập + Dùng tự động điền bằng trợ năng của Bitwarden để tự động điền thông tin đăng nhập trong các trang web và ứng dụng khác. Một cửa sổ popup sẽ hiện ra khi bạn bạn một trường đăng nhập. - Sử dụng chức năng tự động điền của Bitwarden để tự động điền mật khẩu trong app và website( Yêu cầu kích hoạt chức năng vẽ lên ứng dụng (Draw-Over)).. + Sử dụng tính năng tự động điền của Bitwarden để tự động điền mật khẩu trong các trang web và ứng dụng khác (Cần bật tính năng Draw-Over) - Sử dụng chế độ tự động điền của Bitwarden để sử dụng chức năng tự động điền nhanh, và/hoặc hiển thị cửa sổ popup bằng vẽ lên ứng dụng (Draw over). + Sử dụng tính năng tự động điền bằng trợ năng của Bitwarden để tự động điền mật khẩu trong các trang web và ứng dụng khác và hiện popup bằng Draw-Over (nếu đã bật). - Yêu cầu sử dụng tự động điền nhanh tiêu đề bằng cách sử dụng vẽ lên ứng dụng (Draw-over). + Yêu cầu dùng tự động điền nhanh bằng cách sử dụng vẽ lên ứng dụng (Draw-Over). - Dùng phương thức vẽ lên ứng dụng (Draw-Over) + Dùng vẽ lên ứng dụng (Draw-Over) - Khi kích hoạt, bạn sẽ đồng ý cho Bitwarden hiển thị cửa sổ popup khi đăng nhập + Cho phép Bitwarden hiển thị popup khi các trường đăng nhập được chọn. - Nếu được kích hoạt, chế độ tự động điền sẽ hiển thị cửa sổ popup trong phần đăng nhập để tự động điền mật khẩu + Nếu được bật, Bitwarden sẽ hiển thị popup để bạn chọn tự động điền mật khẩu. - Nếu được kích hoạt, + Nếu được bật, Bitwarden sẽ hiển thị popup để tăng cường Điền tự động cho các ứng dụng cũ hơn không hỗ trợ Android Autofill Framework. - Do chính sách về quyền riêng tư của tổ chức, bạn không được lưu trữ trong . + Do chính sách của tổ chức, bạn không được lưu trữ mục trong kho mật khẩu cá nhân. - An organization policy is affecting your ownership options. + Chính sách của tổ chức đang ảnh hưởng đến các tùy chọn quyền sở hữu của bạn. - Chia sẻ + Gửi 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Toàn bộ Send + Tất cả mục Gửi 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Chia sẻ + Gửi 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Một tên gợi nhớ để mô tả về Send này. + Một tên gợi nhớ để mô tả mục Gửi này. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. @@ -1895,7 +1884,7 @@ Quá trình quét sẽ diễn ra tự động. Văn bản bạn muốn gửi. - When accessing the Send, hide the text by default + Khi truy cập vào phần Gửi, văn bản sẽ được ẩn theo mặc định 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. @@ -1905,16 +1894,16 @@ Quá trình quét sẽ diễn ra tự động. Tập tin bạn muốn gửi. - File type is selected. + Loại tệp được chọn. - File type is not selected, tap to select. + Loại tệp chưa được chọn, nhấn để chọn. - Text type is selected. + Loại văn bản được chọn. - Text type is not selected, tap to select. + Loại văn bản chưa được chọn, nhấn để chọn. Ngày xóa @@ -1923,7 +1912,7 @@ Quá trình quét sẽ diễn ra tự động. Thời gian xóa - Send sẽ được xóa vĩnh viễn vào ngày và giờ được chỉ định. + Mục Gửi sẽ được xóa vĩnh viễn vào ngày và giờ chỉ định. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. @@ -1936,37 +1925,37 @@ Quá trình quét sẽ diễn ra tự động. Thời hạn - Nếu được thiết lập, truy cập vào Send này sẽ hết hạn vào ngày và giờ được chỉ định. + Nếu được thiết lập, mục Gửi này sẽ hết hạn vào ngày và giờ được chỉ định. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. Đã hết hạn - Số lượng truy cập tối đa + Số lần truy cập tối đa - Nếu được thiết lập, khi đã đạt tới số lượng truy cập tối đa, người dùng sẽ không thể truy cập Send này nữa. + Nếu được thiết lập, khi đã đạt tới số lượng truy cập tối đa, người dùng sẽ không thể truy cập mục Gửi này nữa. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Đã đạt đến số lượng truy cập tối đa + Đã vượt số lần truy cập tối đa - Số lượng truy cập hiện tại + Số lần truy cập hiện tại Mật khẩu mới - Optionally require a password for users to access this Send. + Yêu cầu nhập mật khẩu khi người dùng truy cập vào phần Gửi này. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. Xóa mật khẩu - Bạn có chắc chắn muốn xóa mật khẩu này? + Bạn có chắc muốn xóa mật khẩu này? Đang xóa mật khẩu @@ -1975,19 +1964,19 @@ Quá trình quét sẽ diễn ra tự động. Mật khẩu đã được xóa. - Private notes about this Send. + Ghi chú riêng tư về mục Gửi này. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Deactivate this Send so that no one can access it + Vô hiệu hoá mục Gửi này để không ai có thể truy cập nó 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - There are no Sends in your account. + Không có mục Gửi trong tài khoản của bạn. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Thêm vào Gửi + Thêm mục Gửi 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. @@ -1997,35 +1986,35 @@ Quá trình quét sẽ diễn ra tự động. Chia sẻ liên kết - Gửi liên kết + Liên kết Gửi 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Tìm kiếm Sends + Tìm kiếm mục Gửi 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Chỉnh sửa Send + Sửa mục Gửi 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Thêm Send + Mục Gửi mới 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Bạn có chắc chắn muốn xóa Send này? + Bạn có chắc muốn mục Gửi này? 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Gửi đã xóa + Đã xóa mục Gửi 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Đã cập nhật Send. + Đã lưu mục Gửi 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Gửi đã tạo + Đã tạo mục Gửi 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. @@ -2047,30 +2036,30 @@ Quá trình quét sẽ diễn ra tự động. Tùy chỉnh - Share this Send upon save + Chia sẻ mục Gửi này khi lưu 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Do chính sách doanh nghiệp, bạn chỉ có thể xóa những Send hiện có. + Do chính sách doanh nghiệp, bạn chỉ có thể xóa những mục Gửi hiện có. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Về Send + Về Gửi 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Ẩn địa chỉ email của tôi khỏi người nhận + Ẩn địa chỉ email của tôi - One or more organization policies are affecting your Send options. + Các chính sách của tổ chức đang ảnh hưởng đến tùy chọn Gửi của bạn. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - Tài khoản miễn phí chỉ được chia sẻ văn bản. Cần có tư cách thành viên Cao Cấp để sử dụng các tệp với Gửi. + Tài khoản miễn phí chỉ được gửi văn bản. Nâng cấp lên gói Cao Cấp để gửi các tệp. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. - You must verify your email to use files with Send. You can verify your email in the web vault. + Bạn phải xác minh email của mình để sử dụng tệp trong Gửi. Bạn có thể xác minh email của mình trong trang web Bitwaden. 'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated. @@ -2080,7 +2069,7 @@ Quá trình quét sẽ diễn ra tự động. Xác nhận mật khẩu chính - Hành động này được bảo vệ, để tiếp tục, vui lòng nhập lại mật khẩu chính của bạn để xác minh. + Để tiếp tục, vui lòng nhập lại mật khẩu chính của bạn. Yêu cầu điền mã Captcha @@ -2092,25 +2081,25 @@ Quá trình quét sẽ diễn ra tự động. Mật khẩu chính đã được cập nhật - Cập nhật Mật khẩu chính + Cập nhật mật khẩu chính - Your master password was recently changed by an administrator in your organization. In order to access the vault, you must update your master password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour. + Mật khẩu chính của bạn gần đây đã được thay đổi bởi người quản trị trong tổ chức của bạn. Để truy cập kho, bạn phải cập nhật mật khẩu chính của mình ngay bây giờ. Việc tiếp tục sẽ đăng xuất khỏi kho và bạn sẽ cần đăng nhập lại. Ứng dụng Bitwaden trên các thiết bị khác có thể tiếp tục hoạt động trong tối đa một giờ sau đó sẽ bị đăng xuất. - Đang cập nhật Mật khẩu + Đang cập nhật mật khẩu - Hiện không thể cập nhật mật khẩu + Không thể cập nhật mật khẩu lúc này Xóa mật khẩu chính - {0} is using SSO with customer-managed encryption. Continuing will remove your master password from your account and require SSO to login. + {0} đang sử dụng đăng nhập một lần (SSO) với mã hóa do khách hàng quản lý. Việc tiếp tục sẽ xóa mật khẩu chính khỏi tài khoản của bạn và yêu cầu SSO đăng nhập. - If you do not want to remove your master password, you may leave this organization. + Nếu bạn không muốn xóa mật khẩu chính của mình, bạn có thể rời khỏi tổ chức này. Rời khỏi tổ chức @@ -2122,10 +2111,10 @@ Quá trình quét sẽ diễn ra tự động. FIDO2 WebAuthn - To continue, have your FIDO2 WebAuthn compatible security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen. + Để tiếp tục, hãy chuẩn bị sẵn khóa bảo mật tương thích FIDO2 WebAuthn của bạn, sau đó làm theo hướng dẫn sau khi nhấp vào 'Xác thực WebAuthn' trên màn hình tiếp theo. - Authentication using FIDO2 WebAuthn, you can authenticate using an external security key. + Xác thực bằng FIDO2 WebAuthn, bạn có thể xác thực bằng khóa bảo mật bên ngoài. Xác thực WebAuthn @@ -2137,22 +2126,22 @@ Quá trình quét sẽ diễn ra tự động. Hãy đảm bảo rằng trình duyệt mặc định của bạn hỗ trợ WebAuthn và thử lại. - This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password. + Tổ chức này có chính sách doanh nghiệp sẽ tự động đặt lại mật khẩu chính cho bạn. Đăng ký sẽ cho phép quản trị viên tổ chức thay đổi mật khẩu chính của bạn. - Your organization policies have set your maximum allowed vault timeout to {0} hour(s) and {1} minute(s). + Tổ chức của bạn đã đặt thời gian mở kho tối đa là {0} giờ và {1} phút. - Your organization policies are affecting your vault timeout. Maximum allowed vault timeout is {0} hour(s) and {1} minute(s). Your vault timeout action is set to {2}. + Tổ chức của bạn đang ảnh hưởng đến thời gian mở kho. Thời gian mở kho tối đa là {0} giờ và {1} phút. Kho sẽ {2} sau khi hết thời gian mở kho. - Your organization policies have set your vault timeout action to {0}. + Tổ chức của bạn sẽ {0} sau khi hết thời gian mở kho. - Your vault timeout exceeds the restrictions set by your organization. + Thời gian mở kho vượt quá giới hạn do tổ chức của bạn đặt ra. - One or more organization policies prevents your from exporting your individual vault. + Các chính sách của tổ chức ngăn cản bạn xuất kho lưu trữ cá nhân của mình. Thêm tài khoản @@ -2170,7 +2159,7 @@ Quá trình quét sẽ diễn ra tự động. Đã đổi sang tài khoản có sẵn kế tiếp - Đã khoá tài khoản + Đã khóa tài khoản Đăng xuất tài khoản thành công @@ -2179,22 +2168,22 @@ Quá trình quét sẽ diễn ra tự động. Đã xóa tài khoản thành công - Xoá tài khoản + Xóa tài khoản - Xoá vĩnh viễn tài khoản của bạn + Xóa vĩnh viễn tài khoản của bạn - Your account and all vault data will be erased and unrecoverable. Are you sure you want to continue? + Tài khoản của bạn và tất cả dữ liệu trong kho sẽ bị xóa và không thể khôi phục được. Bạn có chắc chắn muốn tiếp tục không? - Đang xoá tài khoản của bạn + Đang xóa tài khoản của bạn Tài khoản của bạn đã được xóa vĩnh viễn - Mã xác minh không hợp lệ + Mã xác minh không đúng Yêu cầu mật khẩu một lần (OTP) @@ -2206,16 +2195,16 @@ Quá trình quét sẽ diễn ra tự động. Đang gửi - Copy Send link on save + Sao chép liên kết Gửi khi lưu - Đang gửi mã… + Đang gửi mã - Đang xác nhận... + Đang xác minh - Gửi lại Mã + Gửi lại mã Mã xác minh đã được gửi đến email của bạn @@ -2224,19 +2213,19 @@ Quá trình quét sẽ diễn ra tự động. Đã xảy ra lỗi khi gửi mã xác minh đến email của bạn. Vui lòng thử lại - Nhập mã xác minh đã được gửi đến email của bạn + Nhập mã xác minh được gửi đến email của bạn Gửi nhật ký lỗi - Help Bitwarden improve app stability by submitting crash reports. + Giúp Bitwarden cải thiện tính ổn định của ứng dụng bằng cách gửi báo cáo sự cố. - Options are expanded, tap to collapse. + Đã mở rộng các tuỳ chọn, nhấn để thu gọn. - Options are collapsed, tap to expand. + Đã thu gọn các tuỳ chọn, nhấn để mở rộng. Chữ hoa (A-Z) @@ -2251,16 +2240,16 @@ Quá trình quét sẽ diễn ra tự động. Ký tự đặc biệt (!@#$%^&*) - Chạm để trở lại + Nhấn để quay lại - Mật khẩu được hiển thị, nhấn để ẩn. + Đang hiện mật khẩu, nhấn để ẩn. - Mật khẩu được ẩn, nhấn để hiển thị. + Đang ẩn mật khẩu, nhấn để hiện. - Lọc các mục theo kho + Lọc mục theo kho Tất cả kho @@ -2305,32 +2294,32 @@ Quá trình quét sẽ diễn ra tự động. Thiết lập TOTP - Khi khóa được nhập thành công, + Khi nhập khóa thành công, chọn Thêm TOTP để lưu khóa an toàn - Đặt các tùy chọn khóa của bạn thành “Không bao giờ” sẽ giúp kho của bạn luôn sẵn sàng cho bất kỳ ai có quyền truy cập vào thiết bị của bạn. Nếu bạn sử dụng tùy chọn này, bạn nên đảm bảo rằng bạn luôn bảo vệ thiết bị của mình đúng cách. + Đặt tùy chọn khóa của bạn thành “Không bao giờ” sẽ khiến bất kỳ ai có quyền truy cập vào thiết bị của bạn cũng có thể mở kho. Hãy đảm bảo rằng bạn luôn bảo vệ thiết bị của mình đúng cách. - Một hoặc nhiều URL đã nhập không hợp lệ. Vui lòng sửa lại và thử lưu lại. + Một hoặc nhiều URL đã nhập không hợp lệ. Vui lòng sửa và thử lại. - Chúng tôi không thể xử lý yêu cầu của bạn. Vui lòng thử lại hoặc liên hệ với chúng tôi. + Chúng tôi không thể xử lý yêu cầu của bạn. Vui lòng thử lại hoặc liên hệ hỗ trợ. - Cho Phép Chụp Ảnh Màn Hình + Cho phép chụp màn hình - Bạn có chắc muốn cho phép chụp ảnh màn hình? + Bạn có chắc muốn cho phép chụp màn hình? Yêu cầu đăng nhập - Bạn đang cố gắng đăng nhập? + Bạn đang cố đăng nhập? - Nỗ lực đăng nhập của {0} trên {1} + Lần đăng nhập của {0} trên {1} Loại thiết bị @@ -2366,10 +2355,10 @@ chọn Thêm TOTP để lưu khóa an toàn Phê duyệt yêu cầu đăng nhập - Sử dụng thiết bị này để phê duyệt các yêu cầu đăng nhập được thực hiện từ các thiết bị khác. + Dùng thiết bị này để phê duyệt yêu cầu đăng nhập được thực hiện từ các thiết bị khác - Cho phép gửi thông báo + Cho phép thông báo Nhận thông báo đẩy cho các yêu cầu đăng nhập mới @@ -2378,7 +2367,7 @@ chọn Thêm TOTP để lưu khóa an toàn Không, cảm ơn - Xác nhận nỗ lực đăng nhập cho {0} + Phê duyệt đăng nhập cho {0} Tất cả thông báo @@ -2396,10 +2385,10 @@ chọn Thêm TOTP để lưu khóa an toàn Địa chỉ email có hậu tố - Email Tổng hợp + Email tổng hợp - Forwarded email alias + Đã chuyển tiếp bí danh email Từ ngẫu nhiên @@ -2437,31 +2426,31 @@ chọn Thêm TOTP để lưu khóa an toàn "Fastmail" is the product name and should not be translated. - API access token + Khoá truy cập API - Are you sure you want to overwrite the current username? + Bạn có chắc muốn ghi đè lên tên người dùng hiện tại không? Tạo tên người dùng - Email Type + Loại Email Trang web (bắt buộc) - Đã xảy ra lỗi {0} không xác định. + Xảy ra {0} lỗi không xác định. - Use your email provider's subaddress capabilities + Sử dụng khả năng địa chỉ phụ của nhà cung cấp dịch vụ mail của bạn - Use your domain's configured catch-all inbox. + Sử dụng hộp thư đến tổng hợp được định cấu hình trong tên miền của bạn. - Generate an email alias with an external forwarding service. + Tạo bí danh email với dịch vụ chuyển tiếp bên ngoài. Ngẫu nhiên @@ -2470,33 +2459,33 @@ chọn Thêm TOTP để lưu khóa an toàn Kết nối với đồng hồ - Accessibility Service Disclosure + Tiết lộ Dịch vụ trợ năng - Bitwarden uses the Accessibility Service to search for login fields in apps and websites, then establish the appropriate field IDs for entering a username & password when a match for the app or site is found. We do not store any of the information presented to us by the service, nor do we make any attempt to control any on-screen elements beyond text entry of credentials. + Bitwarden sử dụng Dịch vụ trợ năng để tìm kiếm các trường đăng nhập trong ứng dụng và trang web, sau đó thiết lập ID trường thích hợp để nhập tên người dùng và mật khẩu khi tìm thấy kết quả trùng khớp với ứng dụng hoặc trang web đã lưu. Chúng tôi không lưu trữ bất kỳ thông tin nào được dịch vụ cung cấp cho chúng tôi và chúng tôi cũng không thực hiện bất kỳ nỗ lực nào để kiểm soát bất kỳ thành phần nào trên màn hình ngoài việc nhập văn bản cần điền. - Chấp Nhận + Đồng ý - Từ Chối + Từ chối Yêu cầu đăng nhập đã hết hạn. - Login attempt from: + Nỗ lực đăng nhập từ: {0} -Do you want to switch to this account? +Bạn có muốn chuyển sang tài khoản này không? Bạn mới tới đây sao? - Get master password hint + Nhận gợi ý mật khẩu chính - Logging in as {0} on {1} + Đăng nhập như {0} trên {1} Không phải bạn? @@ -2505,22 +2494,22 @@ Do you want to switch to this account? Đăng nhập bằng mật khẩu chính - Đăng nhập bằng thiết bị khác + Đăng nhập bằng thiết bị - Login initiated + Bắt đầu đăng nhập Một thông báo đã được gửi đến thiết bị của bạn. - Please make sure your vault is unlocked and the Fingerprint phrase matches on the other device. + Vui lòng đảm bảo rằng bạn đã mở khoá kho và cụm từ mật khẩu khớp trên thiết bị khác. Gửi lại thông báo - Cần một tuỳ chọn khác? + Tùy chọn khác? Xem tất cả các tùy chọn đăng nhập @@ -2529,46 +2518,46 @@ Do you want to switch to this account? Yêu cầu này không còn hiệu lực - Pending login requests + Yêu cầu đăng nhập chờ xử lý - Decline all requests + Từ chối tất cả yêu cầu - Are you sure you want to decline all pending login requests? + Bạn có chắc muốn từ chối tất cả các yêu cầu đăng nhập đang chờ? - Requests declined + Yêu cầu đã từ chối Không có yêu cầu đang chờ phê duyệt - Bật quyền của máy ảnh để sử dụng máy quét + Bật quyền của máy ảnh để sử dụng trình quét Ngôn ngữ - The language has been changed to {0}. Please restart the app to see the change + Đã đổi ngôn ngữ thành {0}. Khởi động lại ứng dụng để áp dụng - Language change requires app restart + Thay đổi ngôn ngữ yêu cầu khởi động lại ứng dụng - Mặc định (Hệ thống) + Giống như hệ thống Quan trọng - Mật khẩu chính của bạn không thể được phục hồi nếu bạn quên nó! tối thiểu {0} ký tự. + Mật khẩu chính của bạn không thể phục hồi nếu bạn quên nó! Tối thiểu {0} ký tự. Mật khẩu chính Yếu - Mật khẩu Yếu. Sử dụng một mật khẩu mạnh hơn để bảo vệ tài khoản của bạn. Bạn có chắc chắn muốn sử dụng mật khẩu yếu không? + Mật khẩu yếu. Bạn có chắc muốn sử dụng mật khẩu yếu không? Yếu @@ -2580,34 +2569,34 @@ Do you want to switch to this account? Mạnh - Kiểm tra xem mật khẩu có thuộc các vụ rò rỉ dữ liệu hay không + Kiểm tra mật khẩu có lộ trong các vụ rò rỉ dữ liệu hay không - Mật Khẩu Chính Bị Lộ + Mật khẩu chính Bị Lộ - Phát hiện mật khẩu này đã bị rò rỉ trong một vụ xâm nhập dữ liệu. Hãy sử dụng một mật khẩu độc nhất để bảo vệ tài khoản của bạn. Bạn có chắc chắn muốn sử dụng mật khẩu đã bị rò rỉ này không? + Mật khẩu này đã bị rò rỉ trong một vụ tấn công dữ liệu. Bạn có chắc muốn sử dụng mật khẩu đã bị rò rỉ? - Weak and Exposed Master Password + Mật khẩu chính Yếu và Bị Lộ - Phát hiện mật khẩu yếu này đã bị rò rỉ trong một vụ xâm nhập dữ liệu. Hãy sử dụng một mật khẩu mạnh và độc nhất để bảo vệ tài khoản của bạn. Bạn có chắc chắn muốn sử dụng mật khẩu này không? + Mật khẩu này yếu và đã bị rò rỉ trong một vụ tấn công dữ liệu. Bạn có chắc muốn sử dụng mật khẩu này? - Organization SSO identifier required. + Cần có mã định danh SSO của tổ chức. - Add the key to an existing or new item + Thêm khóa vào một mục mới hoặc hiện có - There are no items in your vault that match "{0}" + Không có mục nào trong kho của bạn khớp với "{0}" - Search for an item or add a new item + Tìm kiếm một mục hoặc thêm mục mới - There are no items that match the search + Không có mục nào phù hợp với tìm kiếm Hoa Kỳ @@ -2616,158 +2605,260 @@ Do you want to switch to this account? Châu Âu - Self-hosted + Tự lưu trữ - Data region + Nơi lưu dữ liệu Khu vực - Your master password does not meet one or more of your organization policies. In order to access the vault, you must update your master password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour. + Mật khẩu chính của bạn không đáp ứng chính sách tổ chức của bạn. Để truy cập kho, bạn phải cập nhật mật khẩu chính của mình ngay bây giờ. Việc tiếp tục sẽ đăng xuất bạn khỏi phiên hiện tại và bắt buộc đăng nhập lại. Các phiên hoạt động trên các thiết bị khác có thể tiếp tục duy trì hoạt động trong tối đa một giờ. - Current master password + Mật khẩu chính hiện tại - Logged in! + Đã đăng nhập! - Approve with my other device + Phê duyệt bằng thiết bị khác - Request admin approval + Yêu cầu quản trị viên phê duyệt - Approve with master password + Phê duyệt bằng mật khẩu chính - Turn off using a public device + Tắt bằng một thiết bị công khai - Remember this device + Lưu thiết bị này Passkey - Passkeys - - - Đã tạo {0} - To state the date in which the cipher was created: Created 03/21/2023 + Passkey Ứng dụng - You cannot edit passkey application because it would invalidate the passkey + Bạn không thể chỉnh sửa ứng dụngpasskey vì nó sẽ làm mất hiệu lực passkey - Passkey will not be copied + Không thể sao chép passkey - The passkey will not be copied to the cloned item. Do you want to continue cloning this item? + Passkey sẽ không được sao chép vào mục sao chép. Bạn có muốn tiếp tục sao chép mục này? - Copy application + Sao chép ứng dụng - Available for two-step login + Có thể đăng nhập hai bước - Master password re-prompt help + Gợi ý mật khẩu chính - Unlocking may fail due to insufficient memory. Decrease your KDF memory settings or set up biometric unlock to resolve. + Mở khóa không thành công do không đủ bộ nhớ. Giảm cài đặt bộ nhớ KDF của bạn hoặc thiết lập mở khóa sinh trắc học để giải quyết. - Invalid API key + API key không hợp lệ - Invalid API token + API token không hợp lệ - Admin approval requested + Yêu cầu quản trị viên phê duyệt - Your request has been sent to your admin. + Yêu cầu của bạn đã được gửi đến quản trị viên. - You will be notified once approved. + Bạn sẽ có thông báo nếu được phê duyệt. - Trouble logging in? + Không thể đăng nhập? - Logging in as {0} + Đăng nhập như {0} - Vault timeout action changed to log out + Hành động sau khi hết thời gian mở kho đã thay đổi thành đăng xuất - This item cannot be shared with the organization because there is one already with the same passkey. + Không thể chia sẻ mục này với tổ chức vì đã có một mục có cùng passkey. - Block auto-fill + Chặn tự động điền - Auto-fill will not be offered for these URIs. + Tính năng tự động điền sẽ không được cung cấp cho các URI này. - New blocked URI + URI bị chặn mới - URI saved + Đã lưu URI Định dạng không hợp lệ. Dùng https://, http://, hoặc androidapp:// https://, http://, androidapp:// should not be translated - Edit URI + Sửa URI - Enter URI + Nhập URI - Format: {0}. Separate multiple URIs with a comma. + Định dạng: {0}. Phân tách nhiều URI bằng dấu phẩy. - Format: {0} + Định dạng: {0} - Invalid URI + URI không hợp lệ - URI removed + Đã xóa URI - There are no blocked URIs + Không có URI nào bị chặn - The URI {0} is already blocked + URI {0} đã bị chặn - Cannot edit multiple URIs at once + Không thể chỉnh sửa nhiều URI cùng lúc - Login approved + Lượt đăng nhập đã duyệt - Log in with device must be set up in the settings of the Bitwarden app. Need another option? + Đăng nhập bằng thiết bị phải được thiết lập trong cài đặt của ứng dụng Bitwarden. Dùng cách khác? - Log in with device + Đăng nhập bằng thiết bị - Logging in on + Đăng nhập máy chủ + + + Kho mật khẩu + + + Giao diện + + + Bảo mật tài khoản + + + Trung tâm hỗ trợ Bitwarden + + + Liên hệ Bitwarden + + + Sao chép thông tin ứng dụng + + + Đồng bộ ngay + + + Tùy chọn mở khóa + + + Thời gian chờ của phiên + + + Hành động sau khi hết phiên + + + Cụm vân tay tài khoản + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + Một giờ một phút + + + Một giờ {0} phút + + + {0} giờ một phút + + + {0} giờ {1} phút + + + {0} giờ + + + Android Autofill Framework được dùng để hỗ trợ điền thông tin đăng nhập vào các ứng dụng khác trên thiết bị của bạn. + + + Sử dụng tính năng tự động điền nội tuyến nếu bàn phím hỗ trợ tính năng này. Nếu không, hãy sử dụng lớp phủ mặc định. + + + Tùy chọn bổ sung + + + Xem trong web? + + + Đi đến {0}? + The parameter is an URL, like bitwarden.com. + + + Đi đến Trung tâm trợ giúp? + + + Vẫn liên hệ hỗ trợ? + + + Vẫn tiếp tục đến cửa hàng ứng dụng? + + + Bảo vệ tài khoản của bạn an toàn hơn bằng cách thiết lập đăng nhập hai bước trên Bitwarden bản web. + + + Bạn có thể thay đổi mật khẩu chính của mình trên Bitwarden bản web. + + + Bạn có thể nhập dữ liệu vào kho mật khẩu trên {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Tìm hiểu thêm về cách sử dụng Bitwarden trong Trung tâm trợ giúp. + + + Không tìm thấy? Hãy liên hệ với bộ phận hỗ trợ của Bitwarden trên bitwarden.com. + + + Khám phá thêm các tính năng của tài khoản Bitwarden của bạn trên bản web. + + + Bitwarden cho phép bạn chia sẻ các mục trong kho mật khẩu với người khác bằng cách tạo một tổ chức. Tìm hiểu thêm trên bitwarden.com. + + + Giúp người khác tìm hiểu xem Bitwarden có phù hợp với họ không. Hãy truy cập cửa hàng ứng dụng và đánh giá ngay bây giờ. + + + Chọn chủ đề tối để sử dụng khi thiết bị của bạn đang sử dụng chế độ tối + + + Đã tạo vào {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. - Too many attempts + Thử quá nhiều lần - Account logged out. + Đã đăng xuất tài khoản. diff --git a/src/App/Resources/AppResources.zh-Hans.resx b/src/App/Resources/AppResources.zh-Hans.resx index f136721dc..f0c386fcc 100644 --- a/src/App/Resources/AppResources.zh-Hans.resx +++ b/src/App/Resources/AppResources.zh-Hans.resx @@ -396,9 +396,6 @@ 访问我们的网站 - - 访问我们的网站以获得帮助、新闻、给我们发送电子邮件、和/或了解更多关于如何使用 Bitwarden 的信息。 - 网站 Label for a website. @@ -451,9 +448,6 @@ 更改主密码 - - 您可以在 bitwarden.com 网页版密码库修改主密码。您现在要访问这个网站吗? - 关闭 @@ -707,9 +701,6 @@ 两步登录 - - 两步登录要求您从其他设备(例如安全钥匙、验证器应用、短信、电话或者电子邮件)来验证您的登录,这能使您的账户更加安全。两步登录需要在 bitwarden.com 网页版密码库中设置。现在访问此网站吗? - 使用 {0} 解锁 @@ -819,7 +810,7 @@ For 2FA - 请输入您的身份验证器 App 中的 6 位验证码。 + 请输入您的验证器应用中的 6 位数验证码。 For 2FA @@ -916,7 +907,7 @@ 复制 TOTP - 如果登录包含验证器密钥,当自动填充此登录时,TOTP 验证码将复制到剪贴板。 + 如果登录项目包含验证器密钥,当自动填充此登录时,TOTP 验证码将复制到剪贴板。 自动复制 TOTP @@ -1558,9 +1549,6 @@ 默认深色主题 - - 当设备的深色模式启用时,选择用来代替默认(系统)主题的深色主题。 - 复制备注 @@ -2366,7 +2354,7 @@ 批准登录请求 - 使用此设备批准其他设备的登录请求。 + 使用此设备批准其他设备的登录请求 允许通知 @@ -2502,10 +2490,10 @@ 不是你? - 主密码登录 + 使用主密码登录 - 设备登录 + 使用设备登录 登录已发起 @@ -2654,10 +2642,6 @@ 通行密钥 - - 创建于 {0} - To state the date in which the cipher was created: Created 03/21/2023 - 应用 @@ -2759,11 +2743,117 @@ 设备登录必须在 Bitwarden 应用程序的设置中启用。需要其他登录选项吗? - 设备登录 + 使用设备登录 登录到 + + 密码库 + + + 外观 + + + 账户安全 + + + Bitwarden 帮助中心 + + + 联系 Bitwarden 支持 + + + 复制应用信息 + + + 立即同步 + + + 解锁选项 + + + 会话超时 + + + 会话超时动作 + + + 账户的指纹短语 + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + 1 小时 1 分钟 + + + 1 小时 {0} 分钟 + + + {0} 小时 1 分钟 + + + {0} 小时 {1} 分钟 + + + {0} 小时 + + + Android 自动填充框架用于帮助将登录信息填充到您设备上的其他应用。 + + + 如果您所选的键盘支持,请使用内联自动填充。否则,请使用默认叠加层。 + + + 附加选项 + + + 接下来前往网页应用吗? + + + 接下来前往 {0} 吗? + The parameter is an URL, like bitwarden.com. + + + 接下来前往帮助中心吗? + + + 接下来要联系支持吗? + + + 接下来前往 App Store 吗? + + + 在 Bitwarden 网页应用中设置两步登录,可以使您的账户更加安全。 + + + 您可以在 Bitwarden 网页应用上更改您的主密码。 + + + 您可以将数据导入到 {0} 上的密码库。 + The parameter is an URL, like vault.bitwarden.com. + + + 在帮助中心了解更多如何使用 Bitwarden 的信息。 + + + 找不到您想要的吗?请在 bitwarden.com 上联系 Bitwarden 支持。 + + + 在网页应用上探索您的 Bitwarden 账户的更多功能。 + + + Bitwarden 允许您使用组织与他人共享您的密码库项目。访问 bitwarden.com 网站以了解更多。 + + + 帮助别人了解 Bitwarden 是否适合他们。立即访问应用商店并留下评分。 + + + 当设备的深色模式启用时,选择要使用的深色主题。 + + + 创建于 {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + 尝试次数过多 diff --git a/src/App/Resources/AppResources.zh-Hant.resx b/src/App/Resources/AppResources.zh-Hant.resx index 02588567b..eb0d9ae40 100644 --- a/src/App/Resources/AppResources.zh-Hant.resx +++ b/src/App/Resources/AppResources.zh-Hant.resx @@ -396,9 +396,6 @@ 造訪我們的網站 - - 瀏覽我們的網站以取得協助、了解新消息、傳送電子郵件給我們或瀏覽更多有關使用 Bitwarden 的秘訣。 - 網站 Label for a website. @@ -451,9 +448,6 @@ 變更主密碼 - - 您可以在 bitwarden.com 網頁版密碼庫變更主密碼。現在要前往嗎? - 關閉 @@ -707,9 +701,6 @@ 兩步驟登入 - - 兩步驟登入需要您從其他裝置(例如安全金鑰、驗證器程式、SMS、手機或電子郵件)來驗證您的登入,這使您的帳戶更加安全。兩步驟登入可以在 bitwarden.com 網頁版密碼庫啟用。現在要前往嗎? - 使用 {0} 解鎖 @@ -1558,9 +1549,6 @@ 預設深色主題 - - 當裝置的深色模式開啟時,選擇用於替代預設(系統)主題的深色主題。 - 複製備註 @@ -2366,7 +2354,7 @@ 批准登入要求 - 使用此裝置準予來自其他裝置的登入要求。 + 使用此裝置批准來自其他裝置的登入要求。 允許通知 @@ -2654,10 +2642,6 @@ Passkeys - - Created {0} - To state the date in which the cipher was created: Created 03/21/2023 - 應用程式 @@ -2764,6 +2748,112 @@ Logging in on + + Vault + + + Appearance + + + Account security + + + Bitwarden Help Center + + + Contact Bitwarden support + + + Copy app information + + + Sync now + + + Unlock options + + + Session timeout + + + Session timeout action + + + Account fingerprint phrase + A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. + + + One hour and one minute + + + One hour and {0} minutes + + + {0} hours and one minute + + + {0} hours and {1} minutes + + + {0} hours + + + The Android Autofill Framework is used to assist in filling login information into other apps on your device. + + + Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + + + Additional options + + + Continue to web app? + + + Continue to {0}? + The parameter is an URL, like bitwarden.com. + + + Continue to Help center? + + + Continue to contact support? + + + Continue to app store? + + + Make your account more secure by setting up two-step login in the Bitwarden web app. + + + You can change your master password on the Bitwarden web app. + + + You can import data to your vault on {0}. + The parameter is an URL, like vault.bitwarden.com. + + + Learn more about how to use Bitwarden on the Help center. + + + Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + + + Explore more features of your Bitwarden account on the web app. + + + Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + + + Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + + + Choose the dark theme to use when your device’s dark mode is in use + + + Created {0}, {1} + To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. + 嘗試次數過多 diff --git a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/id.lproj/Localizable.strings b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/id.lproj/Localizable.strings index cad65e2b8..6b9fe0055 100644 --- a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/id.lproj/Localizable.strings +++ b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/id.lproj/Localizable.strings @@ -1,10 +1,10 @@ -"ThereAreNoItemsToList" = "There are no items to list"; -"ToViewVerificationCodesUpgradeToPremium" = "To view verification codes, upgrade to premium"; -"Add2FactorAutenticationToAnItemToViewVerificationCodes" = "Add 2 factor authentication to an item to view the verification codes"; -"LogInToBitwardenOnYourIPhoneToViewVerificationCodes" = "Log in to Bitwarden on your iPhone to view verification codes"; -"SyncingItemsContainingVerificationCodes" = "Syncing items containing verification codes"; -"UnlockBitwardenOnYourIPhoneToViewVerificationCodes" = "Unlock Bitwarden on your iPhone to view verification codes"; -"SetUpBitwardenToViewItemsContainingVerificationCodes" = "Set up Bitwarden to view items containing verification codes"; -"Search" = "Search"; -"NoItemsFound" = "No items found"; -"SetUpAppleWatchPasscodeInOrderToUseBitwarden" = "Set up Apple Watch passcode in order to use Bitwarden"; +"ThereAreNoItemsToList" = "Tidak ada item untuk dicantumkan"; +"ToViewVerificationCodesUpgradeToPremium" = "Untuk melihat kode verifikasi, tingkatkan ke premium"; +"Add2FactorAutenticationToAnItemToViewVerificationCodes" = "Menambahkan autentikasi 2 faktor ke item untuk melihat kode verifikasi"; +"LogInToBitwardenOnYourIPhoneToViewVerificationCodes" = "Masuk ke Bitwarden di iPhone Anda untuk melihat kode verifikasi"; +"SyncingItemsContainingVerificationCodes" = "Menyinkronkan item yang berisi kode verifikasi"; +"UnlockBitwardenOnYourIPhoneToViewVerificationCodes" = "Buka kunci Bitwarden di iPhone Anda untuk melihat kode verifikasi"; +"SetUpBitwardenToViewItemsContainingVerificationCodes" = "Mengatur Bitwarden untuk melihat item yang mengandung kode verifikasi"; +"Search" = "Pencarian"; +"NoItemsFound" = "Item tidak ditemukan"; +"SetUpAppleWatchPasscodeInOrderToUseBitwarden" = "Mengatur kode sandi Apple Watch untuk menggunakan Bitwarden"; diff --git a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/tr.lproj/Localizable.strings b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/tr.lproj/Localizable.strings index 98e7d5e80..ae2fa6029 100644 --- a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/tr.lproj/Localizable.strings +++ b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/tr.lproj/Localizable.strings @@ -1,10 +1,10 @@ "ThereAreNoItemsToList" = "Listelenecek kayıt yok"; "ToViewVerificationCodesUpgradeToPremium" = "Doğrulama kodlarını görmek için premium'a geçin"; -"Add2FactorAutenticationToAnItemToViewVerificationCodes" = "Add 2 factor authentication to an item to view the verification codes"; -"LogInToBitwardenOnYourIPhoneToViewVerificationCodes" = "Log in to Bitwarden on your iPhone to view verification codes"; -"SyncingItemsContainingVerificationCodes" = "Syncing items containing verification codes"; -"UnlockBitwardenOnYourIPhoneToViewVerificationCodes" = "Unlock Bitwarden on your iPhone to view verification codes"; -"SetUpBitwardenToViewItemsContainingVerificationCodes" = "Set up Bitwarden to view items containing verification codes"; +"Add2FactorAutenticationToAnItemToViewVerificationCodes" = "Doğrulama kodlarını görüntülemek için, bir öğeye 2 adımlı doğrulama ekleyin"; +"LogInToBitwardenOnYourIPhoneToViewVerificationCodes" = "Doğrulama kodlarını görmek için Bitwarden'a iPhone'unuzdan giriş yapın"; +"SyncingItemsContainingVerificationCodes" = "Doğrulama kodları içeren kayıtlar eşitleniyor"; +"UnlockBitwardenOnYourIPhoneToViewVerificationCodes" = "Doğrulama kodlarını görmek için iPhone'unuzda Bitwarden'ın kilidini açın"; +"SetUpBitwardenToViewItemsContainingVerificationCodes" = "Doğrulama kodu içeren kayıtları görmek için Bitwarden'ı ayarlayın"; "Search" = "Ara"; "NoItemsFound" = "Hiç kayıt bulunamadı"; -"SetUpAppleWatchPasscodeInOrderToUseBitwarden" = "Set up Apple Watch passcode in order to use Bitwarden"; +"SetUpAppleWatchPasscodeInOrderToUseBitwarden" = "Bitwarden'ı kullanmak için Apple Watch parolasını ayarlayın"; diff --git a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/vi.lproj/Localizable.strings b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/vi.lproj/Localizable.strings index cad65e2b8..2546e0e9d 100644 --- a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/vi.lproj/Localizable.strings +++ b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/vi.lproj/Localizable.strings @@ -1,10 +1,10 @@ -"ThereAreNoItemsToList" = "There are no items to list"; -"ToViewVerificationCodesUpgradeToPremium" = "To view verification codes, upgrade to premium"; -"Add2FactorAutenticationToAnItemToViewVerificationCodes" = "Add 2 factor authentication to an item to view the verification codes"; -"LogInToBitwardenOnYourIPhoneToViewVerificationCodes" = "Log in to Bitwarden on your iPhone to view verification codes"; -"SyncingItemsContainingVerificationCodes" = "Syncing items containing verification codes"; -"UnlockBitwardenOnYourIPhoneToViewVerificationCodes" = "Unlock Bitwarden on your iPhone to view verification codes"; -"SetUpBitwardenToViewItemsContainingVerificationCodes" = "Set up Bitwarden to view items containing verification codes"; -"Search" = "Search"; -"NoItemsFound" = "No items found"; -"SetUpAppleWatchPasscodeInOrderToUseBitwarden" = "Set up Apple Watch passcode in order to use Bitwarden"; +"ThereAreNoItemsToList" = "Không có mục nào"; +"ToViewVerificationCodesUpgradeToPremium" = "Dùng gói Cao Cấp để xem mã xác minh"; +"Add2FactorAutenticationToAnItemToViewVerificationCodes" = "Thêm xác minh 2 yếu tố vào một mục để xem mã xác minh"; +"LogInToBitwardenOnYourIPhoneToViewVerificationCodes" = "Đăng nhập Bitwarden trên iPhone của bạn để xem mã xác minh"; +"SyncingItemsContainingVerificationCodes" = "Đồng bộ các mục có chứa mã xác minh"; +"UnlockBitwardenOnYourIPhoneToViewVerificationCodes" = "Mở khóa Bitwarden trên iPhone của bạn để xem mã xác minh"; +"SetUpBitwardenToViewItemsContainingVerificationCodes" = "Thiết lập Bitwarden để xem các mục chứa mã xác minh"; +"Search" = "Tìm kiếm"; +"NoItemsFound" = "Không tìm thấy mục nào"; +"SetUpAppleWatchPasscodeInOrderToUseBitwarden" = "Thiết lập Apple Watch passcode để dùng Bitwarden"; diff --git a/store/apple/id/copy.resx b/store/apple/id/copy.resx index dedf4e635..1f73a2a36 100644 --- a/store/apple/id/copy.resx +++ b/store/apple/id/copy.resx @@ -122,31 +122,31 @@ Max 30 characters - Bitwarden, Inc. is the parent company of 8bit Solutions LLC. + Bitwarden, Inc. adalah perusahaan induk dari 8bit Solutions LLC. -NAMED BEST PASSWORD MANAGER BY THE VERGE, U.S. NEWS & WORLD REPORT, CNET, AND MORE. +DINOBATKAN SEBAGAI PENGELOLA KATA SANDI TERBAIK OLEH THE VERGE, U.S. NEWS & WORLD REPORT, CNET, DAN BANYAK LAGI. -Manage, store, secure, and share unlimited passwords across unlimited devices from anywhere. Bitwarden delivers open source password management solutions to everyone, whether at home, at work, or on the go. +Kelola, simpan, amankan, dan bagikan kata sandi tanpa batas di perangkat tanpa batas dari mana saja. Bitwarden memberikan solusi manajemen kata sandi sumber terbuka untuk semua orang, baik di rumah, di tempat kerja, atau di perjalanan. -Generate strong, unique, and random passwords based on security requirements for every website you frequent. +Buat kata sandi yang kuat, unik, dan acak berdasarkan persyaratan keamanan untuk setiap situs web yang sering Anda kunjungi. -Bitwarden Send quickly transmits encrypted information --- files and plaintext -- directly to anyone. +Bitwarden Send dengan cepat mengirimkan informasi terenkripsi - file dan teks biasa - langsung ke siapa saja. -Bitwarden offers Teams and Enterprise plans for companies so you can securely share passwords with colleagues. +Bitwarden menawarkan paket Teams dan Enterprise untuk perusahaan sehingga Anda dapat berbagi kata sandi dengan rekan kerja dengan aman. -Why Choose Bitwarden: +Mengapa Memilih Bitwarden: -World-Class Encryption -Passwords are protected with advanced end-to-end encryption (AES-256 bit, salted hashtag, and PBKDF2 SHA-256) so your data stays secure and private. +Enkripsi Kelas Dunia +Kata sandi dilindungi dengan enkripsi end-to-end yang canggih (AES-256 bit, salted hash, dan PBKDF2 SHA-256) sehingga data Anda tetap aman dan pribadi. -Built-in Password Generator -Generate strong, unique, and random passwords based on security requirements for every website you frequent. +Pembuat Kata Sandi Internal +Hasilkan kata sandi yang kuat, unik, dan acak berdasarkan persyaratan keamanan untuk setiap situs web yang sering Anda kunjungi. -Global Translations -Bitwarden translations exist in 40 languages and are growing, thanks to our global community. +Terjemahan Global +Terjemahan Bitwarden tersedia dalam 40 bahasa dan terus bertambah, berkat komunitas global kami. -Cross-Platform Applications -Secure and share sensitive data within your Bitwarden Vault from any browser, mobile device, or desktop OS, and more. +Aplikasi Lintas Platform +Amankan dan bagikan data sensitif di dalam Bitwarden Vault Anda dari browser, perangkat seluler, atau OS desktop apa pun, dan banyak lagi. Max 4000 characters diff --git a/store/apple/vi/copy.resx b/store/apple/vi/copy.resx index 22e036c76..cc1e076d4 100644 --- a/store/apple/vi/copy.resx +++ b/store/apple/vi/copy.resx @@ -122,31 +122,31 @@ Max 30 characters - Bitwarden, Inc là công ty mẹ của 8bit Solutions LLC + Bitwarden, Inc là công ty mẹ của 8bit Solutions LLC. -ĐƯỢC ĐÁNH GIÁ LÀ TRÌNH QUẢN LÝ MẬT KHẨU TỐT NHẤT BỞI NHÀ BÁO LỚN NHƯ THE VERGE, CNET, U.S. NEWS & WORLD REPORT VÀ HƠN NỮA +LÀ TRÌNH QUẢN LÝ MẬT KHẨU TỐT NHẤT THEO THE VERGE, CNET, U.S. NEWS & WORLD REPORT VÀ HƠN THẾ NỮA. -Quản lý, lưu trữ, bảo mật và chia sẻ mật khẩu không giới hạn trên các thiết bị không giới hạn mọi lúc, mọi nơi. Bitwarden cung cấp các giải pháp quản lý mật khẩu mã nguồn mở cho tất cả mọi người, cho dù ở nhà, tại cơ quan hay khi đang di chuyển. +Quản lý, lưu trữ, bảo vệ và chia sẻ mật khẩu không hạn chế trên các thiết bị mọi lúc, mọi nơi. Bitwarden cung cấp các giải pháp quản lý mật khẩu mã nguồn mở cho tất cả mọi người, cho dù ở nhà, tại cơ quan hay khi đang di chuyển. Tạo mật khẩu mạnh, không bị trùng và ngẫu nhiên dựa trên các yêu cầu bảo mật cho mọi trang web bạn thường xuyên sử dụng. -Tính năng 'Bitwarden Send' nhanh chóng truyền thông tin được mã hóa --- tệp và bản rõ - trực tiếp đến bất kỳ ai. +Tính năng 'Gửi' nhanh chóng truyền thông tin được mã hóa --- tập tin và văn bản --- đến bất kỳ ai. -Bitwarden cung cấp các gói 'Nhóm' và 'Doanh nghiệp' cho các công ty để bạn có thể chia sẻ mật khẩu với đồng nghiệp một cách an toàn. +Bitwarden cung cấp các gói Nhóm và Doanh nghiệp cho các công ty để bạn có thể chia sẻ mật khẩu với đồng nghiệp một cách an toàn. Tại sao bạn nên chọn Bitwarden: Mã hóa tốt nhất thế giới -Mật khẩu được bảo vệ bằng mã hóa đầu cuối (end-to-end encryption) tiên tiến như AES-256 bit, salted hashtag, và PBKDF2 SHA-256 nên dữ liệu của bạn luôn an toàn và riêng tư. +Mật khẩu được bảo vệ bằng mã hóa đầu cuối tiên tiến như AES-256 bit, salted hashtag và PBKDF2 SHA-256 nên dữ liệu của bạn luôn an toàn và riêng tư. Trình tạo mật khẩu tích hợp Tạo mật khẩu mạnh, không bị trùng và ngẫu nhiên dựa trên các yêu cầu bảo mật cho mọi trang web bạn thường xuyên sử dụng. Bản dịch ngôn ngữ từ cộng đồng -Bitwarden đã có bản dịch 40 ngôn ngữ và đang phát triển nhờ vào cộng đồng toàn cầu của chúng tôi. +Bitwarden đã có 40 ngôn ngữ nhờ vào cộng đồng toàn cầu của chúng tôi. Ứng dụng đa nền tảng -Bảo mật và chia sẻ dữ liệu nhạy cảm trong kho lưu trữ Bitwarden của bạn từ bất kỳ trình duyệt, điện thoại thông minh hoặc hệ điều hành máy tính nào, vân vân. +Bảo mật và chia sẻ dữ liệu nhạy cảm trong kho lưu trữ Bitwarden của bạn từ bất kỳ trình duyệt, điện thoại thông minh hoặc hệ điều hành máy tính nào. Max 4000 characters @@ -161,7 +161,7 @@ Bảo mật và chia sẻ dữ liệu nhạy cảm trong kho lưu trữ Bitwarde Tự động tạo mật khẩu mạnh, ngẫu nhiên và an toàn - Bảo vệ kho mật khẩu của bạn bằng Touch ID, Face ID, mã PIN hoặc mật khẩu chủ + Bảo vệ kho mật khẩu của bạn bằng Touch ID, Face ID, mã PIN hoặc mật khẩu chính Tự động điền thông tin đăng nhập từ Safari, Chrome và hàng trăm ứng dụng khác diff --git a/store/google/id/copy.resx b/store/google/id/copy.resx index 6b632a3ce..ac4074c2f 100644 --- a/store/google/id/copy.resx +++ b/store/google/id/copy.resx @@ -126,31 +126,31 @@ Max 80 characters - Bitwarden, Inc. is the parent company of 8bit Solutions LLC. + Bitwarden, Inc. adalah perusahaan induk dari 8bit Solutions LLC. -NAMED BEST PASSWORD MANAGER BY THE VERGE, U.S. NEWS & WORLD REPORT, CNET, AND MORE. +DINOBATKAN SEBAGAI PENGELOLA KATA SANDI TERBAIK OLEH THE VERGE, U.S. NEWS & WORLD REPORT, CNET, DAN BANYAK LAGI. -Manage, store, secure, and share unlimited passwords across unlimited devices from anywhere. Bitwarden delivers open source password management solutions to everyone, whether at home, at work, or on the go. +Kelola, simpan, amankan, dan bagikan kata sandi tanpa batas di perangkat tanpa batas dari mana saja. Bitwarden memberikan solusi manajemen kata sandi sumber terbuka untuk semua orang, baik di rumah, di tempat kerja, atau di perjalanan. -Generate strong, unique, and random passwords based on security requirements for every website you frequent. +Buat kata sandi yang kuat, unik, dan acak berdasarkan persyaratan keamanan untuk setiap situs web yang sering Anda kunjungi. -Bitwarden Send quickly transmits encrypted information --- files and plaintext -- directly to anyone. +Bitwarden Send dengan cepat mengirimkan informasi terenkripsi - file dan teks biasa - langsung ke siapa saja. -Bitwarden offers Teams and Enterprise plans for companies so you can securely share passwords with colleagues. +Bitwarden menawarkan paket Teams dan Enterprise untuk perusahaan sehingga Anda dapat berbagi kata sandi dengan rekan kerja dengan aman. -Why Choose Bitwarden: +Mengapa Memilih Bitwarden: -World-Class Encryption -Passwords are protected with advanced end-to-end encryption (AES-256 bit, salted hashtag, and PBKDF2 SHA-256) so your data stays secure and private. +Enkripsi Kelas Dunia +Kata sandi dilindungi dengan enkripsi end-to-end yang canggih (AES-256 bit, salted hash, dan PBKDF2 SHA-256) sehingga data Anda tetap aman dan pribadi. -Built-in Password Generator -Generate strong, unique, and random passwords based on security requirements for every website you frequent. +Pembuat Kata Sandi Internal +Hasilkan kata sandi yang kuat, unik, dan acak berdasarkan persyaratan keamanan untuk setiap situs web yang sering Anda kunjungi. -Global Translations -Bitwarden translations exist in 40 languages and are growing, thanks to our global community. +Terjemahan Global +Terjemahan Bitwarden tersedia dalam 40 bahasa dan terus bertambah, berkat komunitas global kami. -Cross-Platform Applications -Secure and share sensitive data within your Bitwarden Vault from any browser, mobile device, or desktop OS, and more. +Aplikasi Lintas Platform +Amankan dan bagikan data sensitif di dalam Bitwarden Vault Anda dari browser, perangkat seluler, atau OS desktop apa pun, dan banyak lagi. Max 4000 characters diff --git a/store/google/pt-PT/copy.resx b/store/google/pt-PT/copy.resx index 2ed7944b8..68d20ea99 100644 --- a/store/google/pt-PT/copy.resx +++ b/store/google/pt-PT/copy.resx @@ -167,7 +167,7 @@ Proteja e partilhe dados confidenciais no seu cofre Bitwarden a partir de qualqu Proteja o seu cofre com impressão digital, código PIN ou palavra-passe mestra - Preencha rapidamente as credenciais de forma automática a partir do seu navegador Web e de outras aplicações + Preencha rapidamente as credenciais de forma automática a partir do seu navegador web e de outras aplicações Sincronize e aceda ao seu cofre a partir de vários dispositivos diff --git a/store/google/vi/copy.resx b/store/google/vi/copy.resx index 157d4d092..762b87e0e 100644 --- a/store/google/vi/copy.resx +++ b/store/google/vi/copy.resx @@ -126,31 +126,31 @@ Max 80 characters - Bitwarden, Inc là công ty mẹ của 8bit Solutions LLC + Bitwarden, Inc. là công ty mẹ của 8bit Solutions LLC. -ĐƯỢC ĐÁNH GIÁ LÀ TRÌNH QUẢN LÝ MẬT KHẨU TỐT NHẤT BỞI NHÀ BÁO LỚN NHƯ THE VERGE, CNET, U.S. NEWS & WORLD REPORT VÀ HƠN NỮA +LÀ TRÌNH QUẢN LÝ MẬT KHẨU TỐT NHẤT THEO THE VERGE, CNET, U.S. NEWS & WORLD REPORT VÀ HƠN THẾ NỮA. -Quản lý, lưu trữ, bảo mật và chia sẻ mật khẩu không giới hạn trên các thiết bị không giới hạn mọi lúc, mọi nơi. Bitwarden cung cấp các giải pháp quản lý mật khẩu mã nguồn mở cho tất cả mọi người, cho dù ở nhà, tại cơ quan hay khi đang di chuyển. +Quản lý, lưu trữ, bảo vệ và chia sẻ mật khẩu không hạn chế trên các thiết bị mọi lúc, mọi nơi. Bitwarden cung cấp các giải pháp quản lý mật khẩu mã nguồn mở cho tất cả mọi người, cho dù ở nhà, tại cơ quan hay khi đang di chuyển. Tạo mật khẩu mạnh, không bị trùng và ngẫu nhiên dựa trên các yêu cầu bảo mật cho mọi trang web bạn thường xuyên sử dụng. -Tính năng 'Bitwarden Send' nhanh chóng truyền thông tin được mã hóa --- tệp và bản rõ - trực tiếp đến bất kỳ ai. +Tính năng 'Gửi' nhanh chóng truyền thông tin được mã hóa --- tập tin và văn bản --- đến bất kỳ ai. -Bitwarden cung cấp các gói 'Nhóm' và 'Doanh nghiệp' cho các công ty để bạn có thể chia sẻ mật khẩu với đồng nghiệp một cách an toàn. +Bitwarden cung cấp các gói Nhóm và Doanh nghiệp cho các công ty để bạn có thể chia sẻ mật khẩu với đồng nghiệp một cách an toàn. Tại sao bạn nên chọn Bitwarden: Mã hóa tốt nhất thế giới -Mật khẩu được bảo vệ bằng mã hóa đầu cuối (end-to-end encryption) tiên tiến như AES-256 bit, salted hashtag, và PBKDF2 SHA-256 nên dữ liệu của bạn luôn an toàn và riêng tư. +Mật khẩu được bảo vệ bằng mã hóa đầu cuối tiên tiến như AES-256 bit, salted hashtag và PBKDF2 SHA-256 nên dữ liệu của bạn luôn an toàn và riêng tư. Trình tạo mật khẩu tích hợp Tạo mật khẩu mạnh, không bị trùng và ngẫu nhiên dựa trên các yêu cầu bảo mật cho mọi trang web bạn thường xuyên sử dụng. Bản dịch ngôn ngữ từ cộng đồng -Bitwarden đã có bản dịch 40 ngôn ngữ và đang phát triển nhờ vào cộng đồng toàn cầu của chúng tôi. +Bitwarden đã có 40 ngôn ngữ nhờ vào cộng đồng toàn cầu của chúng tôi. Ứng dụng đa nền tảng -Bảo mật và chia sẻ dữ liệu nhạy cảm trong kho lưu trữ Bitwarden của bạn từ bất kỳ trình duyệt, điện thoại thông minh hoặc hệ điều hành máy tính nào, vân vân. +Bảo mật và chia sẻ dữ liệu nhạy cảm trong kho lưu trữ Bitwarden của bạn từ bất kỳ trình duyệt, điện thoại thông minh hoặc hệ điều hành máy tính nào. Max 4000 characters From a67f50b145c73e9c2138dc2abcf1e1628db2df74 Mon Sep 17 00:00:00 2001 From: aj-rosado <109146700+aj-rosado@users.noreply.github.com> Date: Tue, 10 Oct 2023 16:22:39 +0100 Subject: [PATCH 06/23] Added CultureInfo in char.ToLower at GetServiceRegistrationName method (#2810) --- src/Core/Utilities/ServiceContainer.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Core/Utilities/ServiceContainer.cs b/src/Core/Utilities/ServiceContainer.cs index 197fa4668..7d3e32e3b 100644 --- a/src/Core/Utilities/ServiceContainer.cs +++ b/src/Core/Utilities/ServiceContainer.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Concurrent; using System.Collections.Generic; +using System.Globalization; using System.Text; using System.Threading.Tasks; using Bit.Core.Abstractions; @@ -228,7 +229,7 @@ namespace Bit.Core.Utilities // and lower case the 2nd one (index 1) indexToLowerCase = 1; } - sb.Append(char.ToLower(typeName[indexToLowerCase])); + sb.Append(char.ToLower(typeName[indexToLowerCase], new CultureInfo("en-US"))); sb.Append(typeName.Substring(++indexToLowerCase)); return sb.ToString(); } From 5a0c2115a1de3c58668815e4f80075889655fb0e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 15:42:03 -0700 Subject: [PATCH 07/23] Bumped version to 2023.9.3 (#2820) Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com> --- src/Android/Properties/AndroidManifest.xml | 2 +- src/iOS.Autofill/Info.plist | 2 +- src/iOS.Extension/Info.plist | 2 +- src/iOS.ShareExtension/Info.plist | 2 +- src/iOS/Info.plist | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Android/Properties/AndroidManifest.xml b/src/Android/Properties/AndroidManifest.xml index 62208bf8b..a9cfa4b2a 100644 --- a/src/Android/Properties/AndroidManifest.xml +++ b/src/Android/Properties/AndroidManifest.xml @@ -1,5 +1,5 @@  - + diff --git a/src/iOS.Autofill/Info.plist b/src/iOS.Autofill/Info.plist index d7304f0b6..8ab1fbee0 100644 --- a/src/iOS.Autofill/Info.plist +++ b/src/iOS.Autofill/Info.plist @@ -11,7 +11,7 @@ CFBundleIdentifier com.8bit.bitwarden.autofill CFBundleShortVersionString - 2023.9.2 + 2023.9.3 CFBundleVersion 1 CFBundleLocalizations diff --git a/src/iOS.Extension/Info.plist b/src/iOS.Extension/Info.plist index 1ea6cbf9b..b6943cb8b 100644 --- a/src/iOS.Extension/Info.plist +++ b/src/iOS.Extension/Info.plist @@ -11,7 +11,7 @@ CFBundleIdentifier com.8bit.bitwarden.find-login-action-extension CFBundleShortVersionString - 2023.9.2 + 2023.9.3 CFBundleLocalizations en diff --git a/src/iOS.ShareExtension/Info.plist b/src/iOS.ShareExtension/Info.plist index 26d2f8abd..1f2e6abfe 100644 --- a/src/iOS.ShareExtension/Info.plist +++ b/src/iOS.ShareExtension/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2023.9.2 + 2023.9.3 CFBundleVersion 1 MinimumOSVersion diff --git a/src/iOS/Info.plist b/src/iOS/Info.plist index 5575ce83f..a9a4479dc 100644 --- a/src/iOS/Info.plist +++ b/src/iOS/Info.plist @@ -11,7 +11,7 @@ CFBundleIdentifier com.8bit.bitwarden CFBundleShortVersionString - 2023.9.2 + 2023.9.3 CFBundleVersion 1 CFBundleIconName From bb2f1f0f5f0e0fd89135033e643dfa1f2291f184 Mon Sep 17 00:00:00 2001 From: mpbw2 <59324545+mpbw2@users.noreply.github.com> Date: Thu, 12 Oct 2023 08:58:11 -0400 Subject: [PATCH 08/23] [PM-3741] [PM-3750] Improvements to local storage handling (#2795) * [PM-3741] [PM-3750] Improvements to local storage handling * Update src/Android/MainActivity.cs Co-authored-by: Federico Maccaroni --------- Co-authored-by: Federico Maccaroni --- src/Android/Constants.cs | 6 ++++++ src/Android/MainActivity.cs | 12 ++++++++---- src/Android/Resources/xml/filepaths.xml | 2 +- src/Android/Services/FileService.cs | 3 ++- 4 files changed, 17 insertions(+), 6 deletions(-) diff --git a/src/Android/Constants.cs b/src/Android/Constants.cs index 398bfb708..b6fe75d1e 100644 --- a/src/Android/Constants.cs +++ b/src/Android/Constants.cs @@ -3,5 +3,11 @@ public static class Constants { public const string PACKAGE_NAME = "com.x8bit.bitwarden"; + public const string TEMP_CAMERA_IMAGE_NAME = "temp_camera_image.jpg"; + + /// + /// This directory must also be declared in filepaths.xml + /// + public const string TEMP_CAMERA_IMAGE_DIR = "camera_temp"; } } diff --git a/src/Android/MainActivity.cs b/src/Android/MainActivity.cs index 6792f3567..90d2ed45a 100644 --- a/src/Android/MainActivity.cs +++ b/src/Android/MainActivity.cs @@ -239,18 +239,22 @@ namespace Bit.Droid string fileName = null; if (data != null && data.Data != null) { - uri = data.Data; - fileName = AndroidHelpers.GetFileName(ApplicationContext, uri); + if (data.Data.ToString()?.Contains(Constants.PACKAGE_NAME) != true) + { + uri = data.Data; + fileName = AndroidHelpers.GetFileName(ApplicationContext, uri); + } } else { // camera - var file = new Java.IO.File(FilesDir, "temp_camera_photo.jpg"); + var tmpDir = new Java.IO.File(FilesDir, Constants.TEMP_CAMERA_IMAGE_DIR); + var file = new Java.IO.File(tmpDir, Constants.TEMP_CAMERA_IMAGE_NAME); uri = FileProvider.GetUriForFile(this, "com.x8bit.bitwarden.fileprovider", file); fileName = $"photo_{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.jpg"; } - if (uri == null) + if (uri == null || fileName == null) { return; } diff --git a/src/Android/Resources/xml/filepaths.xml b/src/Android/Resources/xml/filepaths.xml index be754fbbb..d8e6022f2 100644 --- a/src/Android/Resources/xml/filepaths.xml +++ b/src/Android/Resources/xml/filepaths.xml @@ -1,5 +1,5 @@  - + diff --git a/src/Android/Services/FileService.cs b/src/Android/Services/FileService.cs index c217f7a51..621e7ca44 100644 --- a/src/Android/Services/FileService.cs +++ b/src/Android/Services/FileService.cs @@ -190,7 +190,8 @@ namespace Bit.Droid.Services { try { - var file = new Java.IO.File(activity.FilesDir, "temp_camera_photo.jpg"); + var tmpDir = new Java.IO.File(activity.FilesDir, Constants.TEMP_CAMERA_IMAGE_DIR); + var file = new Java.IO.File(tmpDir, Constants.TEMP_CAMERA_IMAGE_NAME); if (!file.Exists()) { file.ParentFile.Mkdirs(); From f2936c95fa7af8540d8d1bc5e40df58a097b3f70 Mon Sep 17 00:00:00 2001 From: Federico Maccaroni Date: Thu, 12 Oct 2023 16:51:19 -0300 Subject: [PATCH 09/23] [PM-4054] Rename Fido2Key to Fido2Credential (#2821) * PM-4054 Renamed Fido2Key to Fido2Credential on the entire codebase * PM-4054 Renamed file Fido2KeyApi to Fido2CredentialApi --- .../Pages/Vault/CipherAddEditPageViewModel.cs | 4 ++-- src/App/Pages/Vault/CipherDetailsPage.xaml | 4 ++-- .../Pages/Vault/CipherDetailsPageViewModel.cs | 2 +- src/Core/Constants.cs | 6 +++--- .../{Fido2KeyApi.cs => Fido2CredentialApi.cs} | 12 ++++++------ src/Core/Models/Api/LoginApi.cs | 2 +- .../{Fido2KeyData.cs => Fido2CredentialData.cs} | 12 ++++++------ src/Core/Models/Data/LoginData.cs | 4 ++-- .../Domain/{Fido2Key.cs => Fido2Credential.cs} | 14 +++++++------- src/Core/Models/Domain/Login.cs | 16 ++++++++-------- src/Core/Models/Request/CipherRequest.cs | 2 +- src/Core/Models/View/CipherView.cs | 2 +- .../{Fido2KeyView.cs => Fido2CredentialView.cs} | 10 +++++----- src/Core/Models/View/LoginView.cs | 6 +++--- src/Core/Services/CipherService.cs | 16 ++++++++-------- 15 files changed, 56 insertions(+), 56 deletions(-) rename src/Core/Models/Api/{Fido2KeyApi.cs => Fido2CredentialApi.cs} (86%) rename src/Core/Models/Data/{Fido2KeyData.cs => Fido2CredentialData.cs} (83%) rename src/Core/Models/Domain/{Fido2Key.cs => Fido2Credential.cs} (73%) rename src/Core/Models/View/{Fido2KeyView.cs => Fido2CredentialView.cs} (79%) diff --git a/src/App/Pages/Vault/CipherAddEditPageViewModel.cs b/src/App/Pages/Vault/CipherAddEditPageViewModel.cs index f5bfd0c64..a80cb8fb7 100644 --- a/src/App/Pages/Vault/CipherAddEditPageViewModel.cs +++ b/src/App/Pages/Vault/CipherAddEditPageViewModel.cs @@ -308,7 +308,7 @@ namespace Bit.App.Pages public string PasswordVisibilityAccessibilityText => ShowPassword ? AppResources.PasswordIsVisibleTapToHide : AppResources.PasswordIsNotVisibleTapToShow; public bool HasTotpValue => IsLogin && !string.IsNullOrEmpty(Cipher?.Login?.Totp); public string SetupTotpText => $"{BitwardenIcons.Camera} {AppResources.SetupTotp}"; - public bool ShowPasskeyInfo => Cipher?.HasFido2Key == true && !CloneMode; + public bool ShowPasskeyInfo => Cipher?.HasFido2Credential == true && !CloneMode; public void Init() { @@ -370,7 +370,7 @@ namespace Bit.App.Pages if (Cipher.Type == CipherType.Login) { // passkeys can't be cloned - Cipher.Login.Fido2Keys = null; + Cipher.Login.Fido2Credentials = null; } } if (appOptions?.OtpData != null && Cipher.Type == CipherType.Login) diff --git a/src/App/Pages/Vault/CipherDetailsPage.xaml b/src/App/Pages/Vault/CipherDetailsPage.xaml index 9c97500a1..e95c2add4 100644 --- a/src/App/Pages/Vault/CipherDetailsPage.xaml +++ b/src/App/Pages/Vault/CipherDetailsPage.xaml @@ -199,12 +199,12 @@ Text="{u:I18n Passkey}" StyleClass="box-label" Margin="0,10,0,0" - IsVisible="{Binding Cipher.Login.MainFido2Key, Converter={StaticResource notNull}}"/> + IsVisible="{Binding Cipher.Login.MainFido2Credential, Converter={StaticResource notNull}}"/> + IsVisible="{Binding Cipher.Login.MainFido2Credential, Converter={StaticResource notNull}}" /> diff --git a/src/App/Pages/Vault/CipherDetailsPageViewModel.cs b/src/App/Pages/Vault/CipherDetailsPageViewModel.cs index f12348c10..0b1da5f56 100644 --- a/src/App/Pages/Vault/CipherDetailsPageViewModel.cs +++ b/src/App/Pages/Vault/CipherDetailsPageViewModel.cs @@ -702,7 +702,7 @@ namespace Bit.App.Pages private async Task CanCloneAsync() { - if (!Cipher.HasFido2Key) + if (!Cipher.HasFido2Credential) { return true; } diff --git a/src/Core/Constants.cs b/src/Core/Constants.cs index 7fe9fe8f5..04641a6b0 100644 --- a/src/Core/Constants.cs +++ b/src/Core/Constants.cs @@ -69,9 +69,9 @@ namespace Bit.Core public const int MasterPasswordMinimumChars = 12; public const int CipherKeyRandomBytesLength = 64; public const string CipherKeyEncryptionMinServerVersion = "2023.9.1"; - public const string DefaultFido2KeyType = "public-key"; - public const string DefaultFido2KeyAlgorithm = "ECDSA"; - public const string DefaultFido2KeyCurve = "P-256"; + public const string DefaultFido2CredentialType = "public-key"; + public const string DefaultFido2CredentialAlgorithm = "ECDSA"; + public const string DefaultFido2CredentialCurve = "P-256"; public static readonly string[] AndroidAllClearCipherCacheKeys = { diff --git a/src/Core/Models/Api/Fido2KeyApi.cs b/src/Core/Models/Api/Fido2CredentialApi.cs similarity index 86% rename from src/Core/Models/Api/Fido2KeyApi.cs rename to src/Core/Models/Api/Fido2CredentialApi.cs index 40c5595d0..8ebc63dbf 100644 --- a/src/Core/Models/Api/Fido2KeyApi.cs +++ b/src/Core/Models/Api/Fido2CredentialApi.cs @@ -2,13 +2,13 @@ namespace Bit.Core.Models.Api { - public class Fido2KeyApi + public class Fido2CredentialApi { - public Fido2KeyApi() + public Fido2CredentialApi() { } - public Fido2KeyApi(Fido2Key fido2Key) + public Fido2CredentialApi(Fido2Credential fido2Key) { CredentialId = fido2Key.CredentialId?.EncryptedString; Discoverable = fido2Key.Discoverable?.EncryptedString; @@ -25,9 +25,9 @@ namespace Bit.Core.Models.Api public string CredentialId { get; set; } public string Discoverable { get; set; } - public string KeyType { get; set; } = Constants.DefaultFido2KeyType; - public string KeyAlgorithm { get; set; } = Constants.DefaultFido2KeyAlgorithm; - public string KeyCurve { get; set; } = Constants.DefaultFido2KeyCurve; + public string KeyType { get; set; } = Constants.DefaultFido2CredentialType; + public string KeyAlgorithm { get; set; } = Constants.DefaultFido2CredentialAlgorithm; + public string KeyCurve { get; set; } = Constants.DefaultFido2CredentialCurve; public string KeyValue { get; set; } public string RpId { get; set; } public string RpName { get; set; } diff --git a/src/Core/Models/Api/LoginApi.cs b/src/Core/Models/Api/LoginApi.cs index 2ebefc0c3..2d4c1d851 100644 --- a/src/Core/Models/Api/LoginApi.cs +++ b/src/Core/Models/Api/LoginApi.cs @@ -10,6 +10,6 @@ namespace Bit.Core.Models.Api public string Password { get; set; } public DateTime? PasswordRevisionDate { get; set; } public string Totp { get; set; } - public List Fido2Keys { get; set; } + public List Fido2Credentials { get; set; } } } diff --git a/src/Core/Models/Data/Fido2KeyData.cs b/src/Core/Models/Data/Fido2CredentialData.cs similarity index 83% rename from src/Core/Models/Data/Fido2KeyData.cs rename to src/Core/Models/Data/Fido2CredentialData.cs index aa1fd8e39..2e63e7aa5 100644 --- a/src/Core/Models/Data/Fido2KeyData.cs +++ b/src/Core/Models/Data/Fido2CredentialData.cs @@ -2,11 +2,11 @@ namespace Bit.Core.Models.Data { - public class Fido2KeyData : Data + public class Fido2CredentialData : Data { - public Fido2KeyData() { } + public Fido2CredentialData() { } - public Fido2KeyData(Fido2KeyApi apiData) + public Fido2CredentialData(Fido2CredentialApi apiData) { CredentialId = apiData.CredentialId; Discoverable = apiData.Discoverable; @@ -23,9 +23,9 @@ namespace Bit.Core.Models.Data public string CredentialId { get; set; } public string Discoverable { get; set; } - public string KeyType { get; set; } = Constants.DefaultFido2KeyType; - public string KeyAlgorithm { get; set; } = Constants.DefaultFido2KeyAlgorithm; - public string KeyCurve { get; set; } = Constants.DefaultFido2KeyCurve; + public string KeyType { get; set; } = Constants.DefaultFido2CredentialType; + public string KeyAlgorithm { get; set; } = Constants.DefaultFido2CredentialAlgorithm; + public string KeyCurve { get; set; } = Constants.DefaultFido2CredentialCurve; public string KeyValue { get; set; } public string RpId { get; set; } public string RpName { get; set; } diff --git a/src/Core/Models/Data/LoginData.cs b/src/Core/Models/Data/LoginData.cs index bc71df1af..ede56065f 100644 --- a/src/Core/Models/Data/LoginData.cs +++ b/src/Core/Models/Data/LoginData.cs @@ -16,7 +16,7 @@ namespace Bit.Core.Models.Data PasswordRevisionDate = data.PasswordRevisionDate; Totp = data.Totp; Uris = data.Uris?.Select(u => new LoginUriData(u)).ToList(); - Fido2Keys = data.Fido2Keys?.Select(f => new Fido2KeyData(f)).ToList(); + Fido2Credentials = data.Fido2Credentials?.Select(f => new Fido2CredentialData(f)).ToList(); } public List Uris { get; set; } @@ -24,6 +24,6 @@ namespace Bit.Core.Models.Data public string Password { get; set; } public DateTime? PasswordRevisionDate { get; set; } public string Totp { get; set; } - public List Fido2Keys { get; set; } + public List Fido2Credentials { get; set; } } } diff --git a/src/Core/Models/Domain/Fido2Key.cs b/src/Core/Models/Domain/Fido2Credential.cs similarity index 73% rename from src/Core/Models/Domain/Fido2Key.cs rename to src/Core/Models/Domain/Fido2Credential.cs index 504830fd7..b606aa0dd 100644 --- a/src/Core/Models/Domain/Fido2Key.cs +++ b/src/Core/Models/Domain/Fido2Credential.cs @@ -5,7 +5,7 @@ using Bit.Core.Models.View; namespace Bit.Core.Models.Domain { - public class Fido2Key : Domain + public class Fido2Credential : Domain { public static HashSet EncryptableProperties => new HashSet { @@ -22,9 +22,9 @@ namespace Bit.Core.Models.Domain nameof(Counter) }; - public Fido2Key() { } + public Fido2Credential() { } - public Fido2Key(Fido2KeyData data, bool alreadyEncrypted = false) + public Fido2Credential(Fido2CredentialData data, bool alreadyEncrypted = false) { BuildDomainModel(this, data, EncryptableProperties, alreadyEncrypted); } @@ -41,14 +41,14 @@ namespace Bit.Core.Models.Domain public EncString UserName { get; set; } public EncString Counter { get; set; } - public async Task DecryptAsync(string orgId, SymmetricCryptoKey key = null) + public async Task DecryptAsync(string orgId, SymmetricCryptoKey key = null) { - return await DecryptObjAsync(new Fido2KeyView(), this, EncryptableProperties, orgId, key); + return await DecryptObjAsync(new Fido2CredentialView(), this, EncryptableProperties, orgId, key); } - public Fido2KeyData ToFido2KeyData() + public Fido2CredentialData ToFido2CredentialData() { - var data = new Fido2KeyData(); + var data = new Fido2CredentialData(); BuildDataModel(this, data, EncryptableProperties); return data; } diff --git a/src/Core/Models/Domain/Login.cs b/src/Core/Models/Domain/Login.cs index 43900b179..ed1822c13 100644 --- a/src/Core/Models/Domain/Login.cs +++ b/src/Core/Models/Domain/Login.cs @@ -15,7 +15,7 @@ namespace Bit.Core.Models.Domain { PasswordRevisionDate = obj.PasswordRevisionDate; Uris = obj.Uris?.Select(u => new LoginUri(u, alreadyEncrypted)).ToList(); - Fido2Keys = obj.Fido2Keys?.Select(f => new Fido2Key(f, alreadyEncrypted)).ToList(); + Fido2Credentials = obj.Fido2Credentials?.Select(f => new Fido2Credential(f, alreadyEncrypted)).ToList(); BuildDomainModel(this, obj, new HashSet { "Username", @@ -29,7 +29,7 @@ namespace Bit.Core.Models.Domain public EncString Password { get; set; } public DateTime? PasswordRevisionDate { get; set; } public EncString Totp { get; set; } - public List Fido2Keys { get; set; } + public List Fido2Credentials { get; set; } public async Task DecryptAsync(string orgId, SymmetricCryptoKey key = null) { @@ -47,12 +47,12 @@ namespace Bit.Core.Models.Domain view.Uris.Add(await uri.DecryptAsync(orgId, key)); } } - if (Fido2Keys != null) + if (Fido2Credentials != null) { - view.Fido2Keys = new List(); - foreach (var fido2Key in Fido2Keys) + view.Fido2Credentials = new List(); + foreach (var fido2Credential in Fido2Credentials) { - view.Fido2Keys.Add(await fido2Key.DecryptAsync(orgId, key)); + view.Fido2Credentials.Add(await fido2Credential.DecryptAsync(orgId, key)); } } return view; @@ -72,9 +72,9 @@ namespace Bit.Core.Models.Domain { l.Uris = Uris.Select(u => u.ToLoginUriData()).ToList(); } - if (Fido2Keys != null) + if (Fido2Credentials != null) { - l.Fido2Keys = Fido2Keys.Select(f => f.ToFido2KeyData()).ToList(); + l.Fido2Credentials = Fido2Credentials.Select(f => f.ToFido2CredentialData()).ToList(); } return l; } diff --git a/src/Core/Models/Request/CipherRequest.cs b/src/Core/Models/Request/CipherRequest.cs index bef11566c..f0b44d402 100644 --- a/src/Core/Models/Request/CipherRequest.cs +++ b/src/Core/Models/Request/CipherRequest.cs @@ -32,7 +32,7 @@ namespace Bit.Core.Models.Request Password = cipher.Login.Password?.EncryptedString, PasswordRevisionDate = cipher.Login.PasswordRevisionDate, Totp = cipher.Login.Totp?.EncryptedString, - Fido2Keys = cipher.Login.Fido2Keys?.Select(f => new Fido2KeyApi(f)).ToList() + Fido2Credentials = cipher.Login.Fido2Credentials?.Select(f => new Fido2CredentialApi(f)).ToList() }; break; case CipherType.Card: diff --git a/src/Core/Models/View/CipherView.cs b/src/Core/Models/View/CipherView.cs index 01c86f450..df8a47eb4 100644 --- a/src/Core/Models/View/CipherView.cs +++ b/src/Core/Models/View/CipherView.cs @@ -121,6 +121,6 @@ namespace Bit.Core.Models.View public bool IsClonable => OrganizationId is null; - public bool HasFido2Key => Type == CipherType.Login && Login?.HasFido2Keys == true; + public bool HasFido2Credential => Type == CipherType.Login && Login?.HasFido2Credentials == true; } } diff --git a/src/Core/Models/View/Fido2KeyView.cs b/src/Core/Models/View/Fido2CredentialView.cs similarity index 79% rename from src/Core/Models/View/Fido2KeyView.cs rename to src/Core/Models/View/Fido2CredentialView.cs index 20a4d0ee1..390a3bf7d 100644 --- a/src/Core/Models/View/Fido2KeyView.cs +++ b/src/Core/Models/View/Fido2CredentialView.cs @@ -3,13 +3,13 @@ using Bit.Core.Enums; namespace Bit.Core.Models.View { - public class Fido2KeyView : ItemView, ILaunchableView + public class Fido2CredentialView : ItemView, ILaunchableView { public string CredentialId { get; set; } public string Discoverable { get; set; } - public string KeyType { get; set; } = Constants.DefaultFido2KeyType; - public string KeyAlgorithm { get; set; } = Constants.DefaultFido2KeyAlgorithm; - public string KeyCurve { get; set; } = Constants.DefaultFido2KeyCurve; + public string KeyType { get; set; } = Constants.DefaultFido2CredentialType; + public string KeyAlgorithm { get; set; } = Constants.DefaultFido2CredentialAlgorithm; + public string KeyCurve { get; set; } = Constants.DefaultFido2CredentialCurve; public string KeyValue { get; set; } public string RpId { get; set; } public string RpName { get; set; } @@ -23,6 +23,6 @@ namespace Bit.Core.Models.View public bool CanLaunch => !string.IsNullOrEmpty(RpId); public string LaunchUri => $"https://{RpId}"; - public bool IsUniqueAgainst(Fido2KeyView fido2View) => fido2View?.RpId != RpId || fido2View?.UserName != UserName; + public bool IsUniqueAgainst(Fido2CredentialView fido2View) => fido2View?.RpId != RpId || fido2View?.UserName != UserName; } } diff --git a/src/Core/Models/View/LoginView.cs b/src/Core/Models/View/LoginView.cs index bece3a9ce..9993c2f11 100644 --- a/src/Core/Models/View/LoginView.cs +++ b/src/Core/Models/View/LoginView.cs @@ -20,7 +20,7 @@ namespace Bit.Core.Models.View public DateTime? PasswordRevisionDate { get; set; } public string Totp { get; set; } public List Uris { get; set; } - public List Fido2Keys { get; set; } + public List Fido2Credentials { get; set; } public string Uri => HasUris ? Uris[0].Uri : null; public string MaskedPassword => Password != null ? "••••••••" : null; @@ -28,8 +28,8 @@ namespace Bit.Core.Models.View public bool CanLaunch => HasUris && Uris.Any(u => u.CanLaunch); public string LaunchUri => HasUris ? Uris.FirstOrDefault(u => u.CanLaunch)?.LaunchUri : null; public bool HasUris => (Uris?.Count ?? 0) > 0; - public bool HasFido2Keys => Fido2Keys?.Any() == true; - public Fido2KeyView MainFido2Key => HasFido2Keys ? Fido2Keys[0] : null; + public bool HasFido2Credentials => Fido2Credentials?.Any() == true; + public Fido2CredentialView MainFido2Credential => HasFido2Credentials ? Fido2Credentials[0] : null; public override List> LinkedFieldOptions { diff --git a/src/Core/Services/CipherService.cs b/src/Core/Services/CipherService.cs index cdbc4aa46..8b490d12d 100644 --- a/src/Core/Services/CipherService.cs +++ b/src/Core/Services/CipherService.cs @@ -597,7 +597,7 @@ namespace Bit.Core.Services private async Task ValidateCanBeSharedWithOrgAsync(CipherView cipher, string organizationId) { - if (!cipher.HasFido2Key) + if (!cipher.HasFido2Credential) { return true; } @@ -605,7 +605,7 @@ namespace Bit.Core.Services var decCiphers = await GetAllDecryptedAsync(); return !decCiphers .Where(c => c.OrganizationId == organizationId) - .Any(c => !cipher.Login.MainFido2Key.IsUniqueAgainst(c.Login?.MainFido2Key)); + .Any(c => !cipher.Login.MainFido2Credential.IsUniqueAgainst(c.Login?.MainFido2Credential)); } public async Task SaveAttachmentRawWithServerAsync(Cipher cipher, CipherView cipherView, string filename, byte[] data) @@ -1176,14 +1176,14 @@ namespace Bit.Core.Services cipher.Login.Uris.Add(loginUri); } } - if (model.Login.HasFido2Keys) + if (model.Login.HasFido2Credentials) { - cipher.Login.Fido2Keys = new List(); - foreach (var fido2Key in model.Login.Fido2Keys) + cipher.Login.Fido2Credentials = new List(); + foreach (var fido2Credential in model.Login.Fido2Credentials) { - var fido2KeyDomain = new Fido2Key(); - await EncryptObjPropertyAsync(fido2Key, fido2KeyDomain, Fido2Key.EncryptableProperties, key); - cipher.Login.Fido2Keys.Add(fido2KeyDomain); + var fido2CredentialDomain = new Fido2Credential(); + await EncryptObjPropertyAsync(fido2Credential, fido2CredentialDomain, Fido2Credential.EncryptableProperties, key); + cipher.Login.Fido2Credentials.Add(fido2CredentialDomain); } } break; From 9d0209751c174ae6bc319338eb51becefd0cc912 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 08:19:14 +0000 Subject: [PATCH 10/23] Autosync the updated translations (#2822) Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com> --- src/App/Resources/AppResources.pl.resx | 24 +++++++++---------- src/App/Resources/AppResources.tr.resx | 10 ++++---- .../Localization/tr.lproj/Localizable.strings | 4 ++-- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/src/App/Resources/AppResources.pl.resx b/src/App/Resources/AppResources.pl.resx index c39235e22..7582caa67 100644 --- a/src/App/Resources/AppResources.pl.resx +++ b/src/App/Resources/AppResources.pl.resx @@ -2801,7 +2801,7 @@ Czy chcesz przełączyć się na to konto? Android Autofill Framework jest używany do uzupełniania danych logowania w innych aplikacjach na twoim urządzeniu. - Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + Użyj bezpośredniego autouzupełniania, jeśli wybrana klawiatura je obsługuje. W przeciwnym razie użyj domyślnej nakładki. Dodatkowe opcje @@ -2817,38 +2817,38 @@ Czy chcesz przełączyć się na to konto? Kontynuować do centrum pomocy? - Continue to contact support? + Kontynuować kontakt z pomocą techniczną? - Continue to app store? + Kontynuować do sklepu aplikacji? - Make your account more secure by setting up two-step login in the Bitwarden web app. + Spraw, aby Twoje konto było bezpieczniejsze poprzez skonfigurowanie dwustopniowego logowania w aplikacji internetowej Bitwarden. - You can change your master password on the Bitwarden web app. + Możesz zmienić swoje hasło główne w aplikacji internetowej Bitwarden. - You can import data to your vault on {0}. + Możesz zaimportować dane do swojego sejfu na {0}. The parameter is an URL, like vault.bitwarden.com. - Learn more about how to use Bitwarden on the Help center. + Dowiedz się więcej o tym, jak korzystać z centrum pomocy Bitwarden. - Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + Nie możesz znaleźć tego, czego szukasz? Skontaktuj się z pomocą na bitwarden.com. - Explore more features of your Bitwarden account on the web app. + Odkryj więcej funkcji swojego konta Bitwarden w aplikacji internetowej. - Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + Bitwarden pozwala na udostępnianie zawartości sejfu innym osobom za pośrednictwem organizacji. Dowiedz się wiecej na bitwarden.com. - Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + Pomóż innym dowiedzieć się, czy Bitwarden jest dla nich odpowiedni. Odwiedź sklep z aplikacją i zostaw ocenę. - Choose the dark theme to use when your device’s dark mode is in use + Wybierz ciemny motyw, gdy używany jest tryb ciemny urządzenia Utworzono {0}, {1} diff --git a/src/App/Resources/AppResources.tr.resx b/src/App/Resources/AppResources.tr.resx index 1ab7a9d66..93231f65d 100644 --- a/src/App/Resources/AppResources.tr.resx +++ b/src/App/Resources/AppResources.tr.resx @@ -2687,7 +2687,7 @@ Bu hesaba geçmek ister misiniz? {0} olarak giriş yapılıyor - Kasa zaman aşımı eylemi oturumu kapatmak için değiştirildi + Kasa zaman aşımı eylemi "çıkış yap" olarak değiştirildi Aynı şifre anahtarına sahip başka bir kayıt olduğu için bu kaydı kuruluşunuzla paylaşamazsınız. @@ -2745,7 +2745,7 @@ Bu hesaba geçmek ister misiniz? Cihazla giriş yap - Giriş yapılan yer + Giriş yapılan konum Kasa @@ -2800,7 +2800,7 @@ Bu hesaba geçmek ister misiniz? Cihazınızdaki diğer uygulamalarda hesap bilgilerini doldurmak için Android Otomatik Doldurma Sistemi kullanılır. - Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + Seçtiğiniz klavye destekliyorsa satır içi otomatik doldurma kullanılır. Aksi halde varsayılan üstünde gösterme kullanılır. Ek seçenekler @@ -2822,7 +2822,7 @@ Bu hesaba geçmek ister misiniz? App Store'a gitmek ister misiniz? - Bitwarden web uygulamasında iki adımlı giriş ayarlayarak hesabınızı daha güvenli hale getirin. + Bitwarden web uygulamasında iki aşamalı girişi ayarlayarak hesabınızın güvenliğini artırabilirsiniz. Ana parolanızı Bitwarden web uygulamasında değiştirebilirsiniz. @@ -2844,7 +2844,7 @@ Bu hesaba geçmek ister misiniz? Bitwarden'ın kuruluş özelliğini kullanarak kasanızdaki kayıtları başkalarıyla paylaşabilirsiniz. Daha fazla bilgi için bitwarden.com sitesini ziyaret edin. - Başkalarının Bitwarden'ın kendileri için uygun olup olmadığını öğrenmelerine yardımcı olun. Uygulama mağazasını ziyaret edin ve şimdi bir derecelendirme bırakın. + Bitwarden'ı başkalarına da tanımak ister misiniz? Uygulama mağazasını ziyaret edip Bitwarden'ı değerlendirin. Cihazınızın koyu modu kullanımdayken kullanılacak koyu temayı seçin diff --git a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/tr.lproj/Localizable.strings b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/tr.lproj/Localizable.strings index ae2fa6029..7f394f4d8 100644 --- a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/tr.lproj/Localizable.strings +++ b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/tr.lproj/Localizable.strings @@ -1,10 +1,10 @@ "ThereAreNoItemsToList" = "Listelenecek kayıt yok"; "ToViewVerificationCodesUpgradeToPremium" = "Doğrulama kodlarını görmek için premium'a geçin"; -"Add2FactorAutenticationToAnItemToViewVerificationCodes" = "Doğrulama kodlarını görüntülemek için, bir öğeye 2 adımlı doğrulama ekleyin"; +"Add2FactorAutenticationToAnItemToViewVerificationCodes" = "Doğrulama kodlarını görmek istediğiniz kayda iki aşamalı doğrulama ekleyin"; "LogInToBitwardenOnYourIPhoneToViewVerificationCodes" = "Doğrulama kodlarını görmek için Bitwarden'a iPhone'unuzdan giriş yapın"; "SyncingItemsContainingVerificationCodes" = "Doğrulama kodları içeren kayıtlar eşitleniyor"; "UnlockBitwardenOnYourIPhoneToViewVerificationCodes" = "Doğrulama kodlarını görmek için iPhone'unuzda Bitwarden'ın kilidini açın"; "SetUpBitwardenToViewItemsContainingVerificationCodes" = "Doğrulama kodu içeren kayıtları görmek için Bitwarden'ı ayarlayın"; -"Search" = "Ara"; +"Search" = "Arama"; "NoItemsFound" = "Hiç kayıt bulunamadı"; "SetUpAppleWatchPasscodeInOrderToUseBitwarden" = "Bitwarden'ı kullanmak için Apple Watch parolasını ayarlayın"; From a1912526c2823056f069da8ad035cc9aa37cd48c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bispo?= Date: Fri, 13 Oct 2023 14:51:19 +0100 Subject: [PATCH 11/23] [PM-3532] Code clean up. DeviceType delete. (#2762) --- src/Core/Enums/DeviceType.cs | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/Core/Enums/DeviceType.cs b/src/Core/Enums/DeviceType.cs index 7c4b7065a..418329140 100644 --- a/src/Core/Enums/DeviceType.cs +++ b/src/Core/Enums/DeviceType.cs @@ -27,24 +27,4 @@ namespace Bit.Core.Enums VivaldiExtension = 19, SafariExtension = 20 } - - public static class DeviceTypeExtensions - { - public static List GetMobileTypes() => new List - { - DeviceType.Android, - DeviceType.AndroidAmazon, - DeviceType.iOS - }; - - public static List GetDesktopTypes() => new List - { - DeviceType.WindowsDesktop, - DeviceType.MacOsDesktop, - DeviceType.LinuxDesktop, - DeviceType.UWP, - }; - - public static List GetDesktopAndMobileTypes() => GetMobileTypes().Concat(GetDesktopTypes()).ToList(); - } } From bc2eb212a63bcb07b1acfbfdd2a3bc1af9cff9d3 Mon Sep 17 00:00:00 2001 From: ifernandezdiaz Date: Fri, 13 Oct 2023 12:12:47 -0300 Subject: [PATCH 12/23] Adding missing ids (#2823) * Adding missing ids * Fixing repeated IDs --- src/App/Pages/Settings/OtherSettingsPage.xaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/App/Pages/Settings/OtherSettingsPage.xaml b/src/App/Pages/Settings/OtherSettingsPage.xaml index ba84240e5..830cbcbbd 100644 --- a/src/App/Pages/Settings/OtherSettingsPage.xaml +++ b/src/App/Pages/Settings/OtherSettingsPage.xaml @@ -23,19 +23,21 @@ Title="{u:I18n EnableSyncOnRefresh}" IsToggled="{Binding EnableSyncOnRefresh}" Subtitle="{u:I18n EnableSyncOnRefreshDescription}" - AutomationId="SubmitCrashLogsSwitch" + AutomationId="SyncOnRefreshSwitch" StyleClass="settings-item-view" HorizontalOptions="FillAndExpand" /> + Command="{Binding SyncCommand}" + AutomationId="SyncNowButton"> From 21fc56457dea97584ae0e47e20a323dd5797ee35 Mon Sep 17 00:00:00 2001 From: Jake Fink Date: Fri, 13 Oct 2023 13:41:52 -0400 Subject: [PATCH 13/23] fix isLocked logic and add comments (#2802) --- src/Core/Services/VaultTimeoutService.cs | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/Core/Services/VaultTimeoutService.cs b/src/Core/Services/VaultTimeoutService.cs index 50b3a411b..b5c985095 100644 --- a/src/Core/Services/VaultTimeoutService.cs +++ b/src/Core/Services/VaultTimeoutService.cs @@ -3,7 +3,6 @@ using System.Threading.Tasks; using Bit.Core.Abstractions; using Bit.Core.Enums; using Bit.Core.Exceptions; -using Bit.Core.Models.Domain; namespace Bit.Core.Services { @@ -56,8 +55,15 @@ namespace Bit.Core.Services public long? DelayLockAndLogoutMs { get; set; } + /// + /// Determine if the current or provided account is locked. + /// + /// + /// Optional specified user, must be provided if not the current account. + /// public async Task IsLockedAsync(string userId = null) { + // If biometrics are used, we can use the flag to determine locked state var biometricSet = await IsBiometricLockSetAsync(userId); if (biometricSet && await _stateService.GetBiometricLockedAsync(userId)) { @@ -68,18 +74,21 @@ namespace Bit.Core.Services { try { + // Filter out accounts without auto key if (!await _cryptoService.HasAutoUnlockKeyAsync(userId)) { return true; } + // Inactive accounts with an auto key aren't locked, but we shouldn't set user key if (userId != null && await _stateService.GetActiveUserIdAsync() != userId) { - await _cryptoService.SetUserKeyAsync(await _cryptoService.GetAutoUnlockKeyAsync(userId), - userId); + return false; } + await _cryptoService.SetUserKeyAsync(await _cryptoService.GetAutoUnlockKeyAsync(userId), userId); } catch (LegacyUserException) { + // Legacy users must migrate on web vault before login await LogOutAsync(false, userId); } From ed3467515ee536227a46e029a77e28f9709a99a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bispo?= Date: Sat, 14 Oct 2023 00:39:57 +0100 Subject: [PATCH 14/23] [PM-3531] Add missing automation ids. (#2814) --- .../Accounts/LoginApproveDevicePage.xaml | 22 +++++++++++-------- .../LoginPasswordlessRequestPage.xaml | 12 +++++----- src/App/Pages/Accounts/LoginSsoPage.xaml | 8 ++++--- 3 files changed, 25 insertions(+), 17 deletions(-) diff --git a/src/App/Pages/Accounts/LoginApproveDevicePage.xaml b/src/App/Pages/Accounts/LoginApproveDevicePage.xaml index 42edf6371..9b04ec84f 100644 --- a/src/App/Pages/Accounts/LoginApproveDevicePage.xaml +++ b/src/App/Pages/Accounts/LoginApproveDevicePage.xaml @@ -18,15 +18,16 @@ + AutomationId="RememberThisDeviceSwitch" + VerticalOptions="Center" /> + Clicked="LogIn_Clicked" + AutomationId="LogInButton" /> From 72de17bd1d38761bc4b412c160195f44ebb73e2e Mon Sep 17 00:00:00 2001 From: Federico Maccaroni Date: Tue, 17 Oct 2023 12:36:54 -0300 Subject: [PATCH 15/23] PM-4314 Removed move passkey to organization duplicate check (#2828) --- src/App/Pages/Vault/SharePageViewModel.cs | 8 +------- src/App/Resources/AppResources.Designer.cs | 10 ---------- src/App/Resources/AppResources.resx | 3 --- src/Core/Abstractions/ICipherService.cs | 8 +------- src/Core/Services/CipherService.cs | 22 +--------------------- 5 files changed, 3 insertions(+), 48 deletions(-) diff --git a/src/App/Pages/Vault/SharePageViewModel.cs b/src/App/Pages/Vault/SharePageViewModel.cs index ccea0ee4a..548040a5d 100644 --- a/src/App/Pages/Vault/SharePageViewModel.cs +++ b/src/App/Pages/Vault/SharePageViewModel.cs @@ -113,15 +113,9 @@ namespace Bit.App.Pages try { await _deviceActionService.ShowLoadingAsync(AppResources.Saving); - var error = await _cipherService.ShareWithServerAsync(cipherView, OrganizationId, checkedCollectionIds); + await _cipherService.ShareWithServerAsync(cipherView, OrganizationId, checkedCollectionIds); await _deviceActionService.HideLoadingAsync(); - if (error == ICipherService.ShareWithServerError.DuplicatedPasskeyInOrg) - { - _platformUtilsService.ShowToast(null, null, AppResources.ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey); - return false; - } - var movedItemToOrgText = string.Format(AppResources.MovedItemToOrg, cipherView.Name, (await _organizationService.GetAsync(OrganizationId)).Name); _platformUtilsService.ShowToast("success", null, movedItemToOrgText); diff --git a/src/App/Resources/AppResources.Designer.cs b/src/App/Resources/AppResources.Designer.cs index b2cb2b95a..513d8f2fa 100644 --- a/src/App/Resources/AppResources.Designer.cs +++ b/src/App/Resources/AppResources.Designer.cs @@ -6659,16 +6659,6 @@ namespace Bit.App.Resources { } } - /// - /// Looks up a localized string similar to This item cannot be shared with the organization because there is one already with the same passkey.. - /// - public static string ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey { - get { - return ResourceManager.GetString("ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePassk" + - "ey", resourceCulture); - } - } - /// /// Looks up a localized string similar to This request is no longer valid. /// diff --git a/src/App/Resources/AppResources.resx b/src/App/Resources/AppResources.resx index fd4eb3c82..ffbc3afed 100644 --- a/src/App/Resources/AppResources.resx +++ b/src/App/Resources/AppResources.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/Core/Abstractions/ICipherService.cs b/src/Core/Abstractions/ICipherService.cs index 928f79686..b344bc101 100644 --- a/src/Core/Abstractions/ICipherService.cs +++ b/src/Core/Abstractions/ICipherService.cs @@ -10,12 +10,6 @@ namespace Bit.Core.Abstractions { public interface ICipherService { - public enum ShareWithServerError - { - None, - DuplicatedPasskeyInOrg - } - Task ClearAsync(string userId); Task ClearCacheAsync(); Task DeleteAsync(List ids); @@ -36,7 +30,7 @@ namespace Bit.Core.Abstractions Task SaveAttachmentRawWithServerAsync(Cipher cipher, CipherView cipherView, string filename, byte[] data); Task SaveCollectionsWithServerAsync(Cipher cipher); Task SaveWithServerAsync(Cipher cipher); - Task ShareWithServerAsync(CipherView cipher, string organizationId, HashSet collectionIds); + Task ShareWithServerAsync(CipherView cipher, string organizationId, HashSet collectionIds); Task UpdateLastUsedDateAsync(string id); Task UpsertAsync(CipherData cipher); Task UpsertAsync(List cipher); diff --git a/src/Core/Services/CipherService.cs b/src/Core/Services/CipherService.cs index 8b490d12d..e3d59d195 100644 --- a/src/Core/Services/CipherService.cs +++ b/src/Core/Services/CipherService.cs @@ -564,13 +564,8 @@ namespace Bit.Core.Services await UpsertAsync(data); } - public async Task ShareWithServerAsync(CipherView cipher, string organizationId, HashSet collectionIds) + public async Task ShareWithServerAsync(CipherView cipher, string organizationId, HashSet collectionIds) { - if (!await ValidateCanBeSharedWithOrgAsync(cipher, organizationId)) - { - return ICipherService.ShareWithServerError.DuplicatedPasskeyInOrg; - } - var attachmentTasks = new List(); if (cipher.Attachments != null) { @@ -591,21 +586,6 @@ namespace Bit.Core.Services var userId = await _stateService.GetActiveUserIdAsync(); var data = new CipherData(response, userId, collectionIds); await UpsertAsync(data); - - return ICipherService.ShareWithServerError.None; - } - - private async Task ValidateCanBeSharedWithOrgAsync(CipherView cipher, string organizationId) - { - if (!cipher.HasFido2Credential) - { - return true; - } - - var decCiphers = await GetAllDecryptedAsync(); - return !decCiphers - .Where(c => c.OrganizationId == organizationId) - .Any(c => !cipher.Login.MainFido2Credential.IsUniqueAgainst(c.Login?.MainFido2Credential)); } public async Task SaveAttachmentRawWithServerAsync(Cipher cipher, CipherView cipherView, string filename, byte[] data) From 142c3145f0ce4d015240dcd3b7a82ebaea787dd8 Mon Sep 17 00:00:00 2001 From: Federico Maccaroni Date: Thu, 19 Oct 2023 17:46:26 -0300 Subject: [PATCH 16/23] PM-4404 Added CreationDate to Fido2Credential objects and updated the UI bindings accordingly (#2832) --- src/App/Pages/Vault/CipherAddEditPage.xaml | 5 ++++- src/App/Pages/Vault/CipherDetailsPage.xaml | 6 ++++-- src/App/Utilities/DateTimeConverter.cs | 4 +++- src/Core/Models/Api/Fido2CredentialApi.cs | 5 ++++- src/Core/Models/Data/Fido2CredentialData.cs | 5 ++++- src/Core/Models/Domain/Fido2Credential.cs | 20 +++++++++++++++----- src/Core/Models/View/Fido2CredentialView.cs | 14 +++++++++++++- src/Core/Services/CipherService.cs | 7 +++++-- 8 files changed, 52 insertions(+), 14 deletions(-) diff --git a/src/App/Pages/Vault/CipherAddEditPage.xaml b/src/App/Pages/Vault/CipherAddEditPage.xaml index ec28d128a..7785457b0 100644 --- a/src/App/Pages/Vault/CipherAddEditPage.xaml +++ b/src/App/Pages/Vault/CipherAddEditPage.xaml @@ -12,6 +12,7 @@ xmlns:dts="clr-namespace:Bit.App.Lists.DataTemplateSelectors" xmlns:il="clr-namespace:Bit.App.Lists.ItemLayouts.CustomFields" xmlns:core="clr-namespace:Bit.Core;assembly=BitwardenCore" + xmlns:appResources="clr-namespace:Bit.App.Resources" x:DataType="pages:CipherAddEditPageViewModel" x:Name="_page" Title="{Binding PageTitle}"> @@ -28,6 +29,8 @@ + + diff --git a/src/App/Pages/Vault/CipherDetailsPage.xaml b/src/App/Pages/Vault/CipherDetailsPage.xaml index e95c2add4..467be7a77 100644 --- a/src/App/Pages/Vault/CipherDetailsPage.xaml +++ b/src/App/Pages/Vault/CipherDetailsPage.xaml @@ -11,6 +11,7 @@ xmlns:dts="clr-namespace:Bit.App.Lists.DataTemplateSelectors" xmlns:il="clr-namespace:Bit.App.Lists.ItemLayouts.CustomFields" xmlns:core="clr-namespace:Bit.Core;assembly=BitwardenCore" + xmlns:appResources="clr-namespace:Bit.App.Resources" x:DataType="pages:CipherDetailsPageViewModel" x:Name="_page" Title="{Binding PageTitle}"> @@ -23,6 +24,7 @@ + + IsVisible="{Binding Cipher.Login.MainFido2Credential, Converter={StaticResource notNull}, FallbackValue=False}" /> diff --git a/src/App/Utilities/DateTimeConverter.cs b/src/App/Utilities/DateTimeConverter.cs index cd8f2cec4..499429028 100644 --- a/src/App/Utilities/DateTimeConverter.cs +++ b/src/App/Utilities/DateTimeConverter.cs @@ -7,6 +7,8 @@ namespace Bit.App.Utilities { public class DateTimeConverter : IValueConverter { + public string Format { get; set; } = "{0} {1}"; + private readonly ILocalizeService _localizeService; public DateTimeConverter() @@ -26,7 +28,7 @@ namespace Bit.App.Utilities return string.Empty; } var d = ((DateTime)value).ToLocalTime(); - return string.Format("{0} {1}", + return string.Format(Format, _localizeService.GetLocaleShortDate(d), _localizeService.GetLocaleShortTime(d)); } diff --git a/src/Core/Models/Api/Fido2CredentialApi.cs b/src/Core/Models/Api/Fido2CredentialApi.cs index 8ebc63dbf..7953e06a1 100644 --- a/src/Core/Models/Api/Fido2CredentialApi.cs +++ b/src/Core/Models/Api/Fido2CredentialApi.cs @@ -1,4 +1,5 @@ -using Bit.Core.Models.Domain; +using System; +using Bit.Core.Models.Domain; namespace Bit.Core.Models.Api { @@ -21,6 +22,7 @@ namespace Bit.Core.Models.Api UserHandle = fido2Key.UserHandle?.EncryptedString; UserName = fido2Key.UserName?.EncryptedString; Counter = fido2Key.Counter?.EncryptedString; + CreationDate = fido2Key.CreationDate; } public string CredentialId { get; set; } @@ -34,5 +36,6 @@ namespace Bit.Core.Models.Api public string UserHandle { get; set; } public string UserName { get; set; } public string Counter { get; set; } + public DateTime CreationDate { get; set; } } } diff --git a/src/Core/Models/Data/Fido2CredentialData.cs b/src/Core/Models/Data/Fido2CredentialData.cs index 2e63e7aa5..846df59f4 100644 --- a/src/Core/Models/Data/Fido2CredentialData.cs +++ b/src/Core/Models/Data/Fido2CredentialData.cs @@ -1,4 +1,5 @@ -using Bit.Core.Models.Api; +using System; +using Bit.Core.Models.Api; namespace Bit.Core.Models.Data { @@ -19,6 +20,7 @@ namespace Bit.Core.Models.Data UserHandle = apiData.UserHandle; UserName = apiData.UserName; Counter = apiData.Counter; + CreationDate = apiData.CreationDate; } public string CredentialId { get; set; } @@ -32,5 +34,6 @@ namespace Bit.Core.Models.Data public string UserHandle { get; set; } public string UserName { get; set; } public string Counter { get; set; } + public DateTime CreationDate { get; set; } } } diff --git a/src/Core/Models/Domain/Fido2Credential.cs b/src/Core/Models/Domain/Fido2Credential.cs index b606aa0dd..7c6928204 100644 --- a/src/Core/Models/Domain/Fido2Credential.cs +++ b/src/Core/Models/Domain/Fido2Credential.cs @@ -1,4 +1,6 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; +using System.Linq; using System.Threading.Tasks; using Bit.Core.Models.Data; using Bit.Core.Models.View; @@ -7,7 +9,7 @@ namespace Bit.Core.Models.Domain { public class Fido2Credential : Domain { - public static HashSet EncryptableProperties => new HashSet + public static HashSet EncryptablePropertiesToMap => new HashSet { nameof(CredentialId), nameof(Discoverable), @@ -22,11 +24,18 @@ namespace Bit.Core.Models.Domain nameof(Counter) }; + public static HashSet NonEncryptablePropertiesToMap => new HashSet + { + nameof(CreationDate) + }; + + public static HashSet AllPropertiesToMap => new HashSet(EncryptablePropertiesToMap.Concat(NonEncryptablePropertiesToMap)); + public Fido2Credential() { } public Fido2Credential(Fido2CredentialData data, bool alreadyEncrypted = false) { - BuildDomainModel(this, data, EncryptableProperties, alreadyEncrypted); + BuildDomainModel(this, data, AllPropertiesToMap, alreadyEncrypted, NonEncryptablePropertiesToMap); } public EncString CredentialId { get; set; } @@ -40,16 +49,17 @@ namespace Bit.Core.Models.Domain public EncString UserHandle { get; set; } public EncString UserName { get; set; } public EncString Counter { get; set; } + public DateTime CreationDate { get; set; } public async Task DecryptAsync(string orgId, SymmetricCryptoKey key = null) { - return await DecryptObjAsync(new Fido2CredentialView(), this, EncryptableProperties, orgId, key); + return await DecryptObjAsync(new Fido2CredentialView(this), this, EncryptablePropertiesToMap, orgId, key); } public Fido2CredentialData ToFido2CredentialData() { var data = new Fido2CredentialData(); - BuildDataModel(this, data, EncryptableProperties); + BuildDataModel(this, data, AllPropertiesToMap, NonEncryptablePropertiesToMap); return data; } } diff --git a/src/Core/Models/View/Fido2CredentialView.cs b/src/Core/Models/View/Fido2CredentialView.cs index 390a3bf7d..049d82047 100644 --- a/src/Core/Models/View/Fido2CredentialView.cs +++ b/src/Core/Models/View/Fido2CredentialView.cs @@ -1,10 +1,21 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; using Bit.Core.Enums; +using Bit.Core.Models.Domain; namespace Bit.Core.Models.View { public class Fido2CredentialView : ItemView, ILaunchableView { + public Fido2CredentialView() + { + } + + public Fido2CredentialView(Fido2Credential fido2Credential) + { + CreationDate = fido2Credential.CreationDate; + } + public string CredentialId { get; set; } public string Discoverable { get; set; } public string KeyType { get; set; } = Constants.DefaultFido2CredentialType; @@ -16,6 +27,7 @@ namespace Bit.Core.Models.View public string UserHandle { get; set; } public string UserName { get; set; } public string Counter { get; set; } + public DateTime CreationDate { get; set; } public override string SubTitle => UserName; public override List> LinkedFieldOptions => new List>(); diff --git a/src/Core/Services/CipherService.cs b/src/Core/Services/CipherService.cs index e3d59d195..c17c172e7 100644 --- a/src/Core/Services/CipherService.cs +++ b/src/Core/Services/CipherService.cs @@ -1161,8 +1161,11 @@ namespace Bit.Core.Services cipher.Login.Fido2Credentials = new List(); foreach (var fido2Credential in model.Login.Fido2Credentials) { - var fido2CredentialDomain = new Fido2Credential(); - await EncryptObjPropertyAsync(fido2Credential, fido2CredentialDomain, Fido2Credential.EncryptableProperties, key); + var fido2CredentialDomain = new Fido2Credential + { + CreationDate = fido2Credential.CreationDate + }; + await EncryptObjPropertyAsync(fido2Credential, fido2CredentialDomain, Fido2Credential.EncryptablePropertiesToMap, key); cipher.Login.Fido2Credentials.Add(fido2CredentialDomain); } } From a1808f64b3937ed00ea84ff89ebdc8e28a051134 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 08:53:18 +0000 Subject: [PATCH 17/23] Autosync the updated translations (#2833) Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com> --- src/App/Resources/AppResources.af.resx | 3 - src/App/Resources/AppResources.ar.resx | 3 - src/App/Resources/AppResources.az.resx | 3 - src/App/Resources/AppResources.be.resx | 3 - src/App/Resources/AppResources.bg.resx | 15 ++-- src/App/Resources/AppResources.bn.resx | 3 - src/App/Resources/AppResources.bs.resx | 3 - src/App/Resources/AppResources.ca.resx | 77 +++++++++---------- src/App/Resources/AppResources.cs.resx | 3 - src/App/Resources/AppResources.cy.resx | 3 - src/App/Resources/AppResources.da.resx | 7 +- src/App/Resources/AppResources.de.resx | 3 - src/App/Resources/AppResources.el.resx | 3 - src/App/Resources/AppResources.en-GB.resx | 3 - src/App/Resources/AppResources.en-IN.resx | 3 - src/App/Resources/AppResources.es.resx | 3 - src/App/Resources/AppResources.et.resx | 3 - src/App/Resources/AppResources.eu.resx | 3 - src/App/Resources/AppResources.fa.resx | 7 +- src/App/Resources/AppResources.fi.resx | 57 +++++++------- src/App/Resources/AppResources.fil.resx | 3 - src/App/Resources/AppResources.fr.resx | 3 - src/App/Resources/AppResources.gl.resx | 3 - src/App/Resources/AppResources.he.resx | 3 - src/App/Resources/AppResources.hi.resx | 3 - src/App/Resources/AppResources.hr.resx | 3 - src/App/Resources/AppResources.hu.resx | 3 - src/App/Resources/AppResources.id.resx | 3 - src/App/Resources/AppResources.it.resx | 13 ++-- src/App/Resources/AppResources.ja.resx | 3 - src/App/Resources/AppResources.ka.resx | 3 - src/App/Resources/AppResources.kn.resx | 3 - src/App/Resources/AppResources.ko.resx | 3 - src/App/Resources/AppResources.lt.resx | 3 - src/App/Resources/AppResources.lv.resx | 17 ++-- src/App/Resources/AppResources.ml.resx | 3 - src/App/Resources/AppResources.mr.resx | 3 - src/App/Resources/AppResources.my.resx | 3 - src/App/Resources/AppResources.nb.resx | 3 - src/App/Resources/AppResources.ne.resx | 3 - src/App/Resources/AppResources.nl.resx | 3 - src/App/Resources/AppResources.nn.resx | 3 - src/App/Resources/AppResources.or.resx | 3 - src/App/Resources/AppResources.pl.resx | 3 - src/App/Resources/AppResources.pt-BR.resx | 3 - src/App/Resources/AppResources.pt-PT.resx | 3 - src/App/Resources/AppResources.ro.resx | 3 - src/App/Resources/AppResources.ru.resx | 3 - src/App/Resources/AppResources.si.resx | 3 - src/App/Resources/AppResources.sk.resx | 3 - src/App/Resources/AppResources.sl.resx | 3 - src/App/Resources/AppResources.sr.resx | 13 ++-- src/App/Resources/AppResources.sv.resx | 3 - src/App/Resources/AppResources.ta.resx | 51 ++++++------ src/App/Resources/AppResources.te.resx | 3 - src/App/Resources/AppResources.th.resx | 3 - src/App/Resources/AppResources.tr.resx | 3 - src/App/Resources/AppResources.uk.resx | 3 - src/App/Resources/AppResources.vi.resx | 3 - src/App/Resources/AppResources.zh-Hans.resx | 3 - src/App/Resources/AppResources.zh-Hant.resx | 3 - .../Localization/de.lproj/Localizable.strings | 2 +- .../Localization/fi.lproj/Localizable.strings | 2 +- 63 files changed, 117 insertions(+), 300 deletions(-) diff --git a/src/App/Resources/AppResources.af.resx b/src/App/Resources/AppResources.af.resx index d99d2f855..b16ff6bd6 100644 --- a/src/App/Resources/AppResources.af.resx +++ b/src/App/Resources/AppResources.af.resx @@ -2690,9 +2690,6 @@ Wil u na die rekening omskakel? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.ar.resx b/src/App/Resources/AppResources.ar.resx index 2f1529f34..23fe154f6 100644 --- a/src/App/Resources/AppResources.ar.resx +++ b/src/App/Resources/AppResources.ar.resx @@ -2691,9 +2691,6 @@ تَغيير إجراء مهلة المخزن لتسجيل الخروج - - لا يمكن مشاركة هذا العنصر مع المؤسسة لأنه يوجد بالفعل واحد مع نفس مفتاح المرور. - حظر التعبئة التلقائية diff --git a/src/App/Resources/AppResources.az.resx b/src/App/Resources/AppResources.az.resx index e719db8dc..76313e443 100644 --- a/src/App/Resources/AppResources.az.resx +++ b/src/App/Resources/AppResources.az.resx @@ -2689,9 +2689,6 @@ Bu hesaba keçmək istəyirsiniz? Anbar vaxt bitməsi əməliyyatı "çıxış et" olaraq dəyişdirildi - - Bu element təşkilatla paylaşıla bilmir, çünki eyni keçid açarına sahib bir element artıq mövcuddur. - Avto-doldurmanı əngəllə diff --git a/src/App/Resources/AppResources.be.resx b/src/App/Resources/AppResources.be.resx index 2b3e130ff..0d5a9afc8 100644 --- a/src/App/Resources/AppResources.be.resx +++ b/src/App/Resources/AppResources.be.resx @@ -2690,9 +2690,6 @@ Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Блакіраваць аўтазапаўненне diff --git a/src/App/Resources/AppResources.bg.resx b/src/App/Resources/AppResources.bg.resx index af3b1eed2..2fe1e2163 100644 --- a/src/App/Resources/AppResources.bg.resx +++ b/src/App/Resources/AppResources.bg.resx @@ -2637,22 +2637,22 @@ select Add TOTP to store the key safely Запомняне на това устройство - Passkey + Секретен ключ - Passkeys + Секретни ключове Приложение - You cannot edit passkey application because it would invalidate the passkey + Не може да редактирате приложението за секретни ключове, защото секретният ключ ще спре да работи - Passkey will not be copied + Секретният ключ няма да бъде копиран - The passkey will not be copied to the cloned item. Do you want to continue cloning this item? + Секретният ключ няма да бъде копиран в клонирания елемент. Искате ли да продължите с клонирането на елемента? Копиране на приложението @@ -2690,9 +2690,6 @@ select Add TOTP to store the key safely Действието при изтичане на времето за достъп до трезора е променено на отписване - - This item cannot be shared with the organization because there is one already with the same passkey. - Блокиране на авт. попълване @@ -2770,7 +2767,7 @@ select Add TOTP to store the key safely Синхронизиране сега - Unlock options + Настройки за отключване Изтичане на времето за сесията diff --git a/src/App/Resources/AppResources.bn.resx b/src/App/Resources/AppResources.bn.resx index cb1448159..1f57c336d 100644 --- a/src/App/Resources/AppResources.bn.resx +++ b/src/App/Resources/AppResources.bn.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.bs.resx b/src/App/Resources/AppResources.bs.resx index 27f0ac947..532df58fe 100644 --- a/src/App/Resources/AppResources.bs.resx +++ b/src/App/Resources/AppResources.bs.resx @@ -2689,9 +2689,6 @@ Skeniranje će biti izvršeno automatski. Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.ca.resx b/src/App/Resources/AppResources.ca.resx index 808644ac3..df24015ea 100644 --- a/src/App/Resources/AppResources.ca.resx +++ b/src/App/Resources/AppResources.ca.resx @@ -946,7 +946,7 @@ L'escaneig es farà automàticament. No podeu utilitzar aquesta característica fins que no actualitzeu la vostra clau de xifratge. - Encryption key migration required. Please login through the web vault to update your encryption key. + Cal migrar la clau de xifratge. Inicieu la sessió a la caixa forta web per actualitzar la clau de xifratge. Més informació @@ -2690,9 +2690,6 @@ Voleu canviar a aquest compte? L'acció de temps d'espera de la caixa forta ha canviat per tancar la sessió - - Aquest element no es pot compartir amb l'organització perquè ja n'hi ha un amb la mateixa clau de pas. - Bloqueja l'emplenament automàtic @@ -2749,115 +2746,115 @@ Voleu canviar a aquest compte? Inici de sessió en - Vault + Caixa forta - Appearance + Aparença - Account security + Seguretat del compte - Bitwarden Help Center + Centre d'ajuda de Bitwarden - Contact Bitwarden support + Contacta amb l'assistència de Bitwarden - Copy app information + Copia la informació de l'aplicació - Sync now + Sincronitza ara - Unlock options + Opcions de desbloqueig - Session timeout + Temps de sessió - Session timeout action + Acció de temps d'espera de la sessió - Account fingerprint phrase + Frase d'empremta digital A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. - One hour and one minute + Una hora i un minut - One hour and {0} minutes + Una hora i {0} minuts - {0} hours and one minute + {0} hores i un minut - {0} hours and {1} minutes + {0} hores i {1} minuts - {0} hours + {0} hores - The Android Autofill Framework is used to assist in filling login information into other apps on your device. + El marc d'emplenament automàtic d'Android s'utilitza per ajudar a omplir la informació d'inici de sessió a altres aplicacions del vostre dispositiu. - Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + Utilitzeu l'emplenament automàtic en línia si el vostre teclat seleccionat ho admet. En cas contrari, utilitzeu la superposició predeterminada. - Additional options + Opcions addicionals - Continue to web app? + Continua cap a l'aplicació web? - Continue to {0}? + Voleu continuar cap a {0}? The parameter is an URL, like bitwarden.com. - Continue to Help center? + Voleu continuar cap al Centre d'ajuda? - Continue to contact support? + Voleu continuar per contactar amb l'assistència? - Continue to app store? + Voleu continuar cap a l'app store? - Make your account more secure by setting up two-step login in the Bitwarden web app. + Fes que el vostre compte siga més segur configurant l'inici de sessió en dos passos a l'aplicació web de Bitwarden. - You can change your master password on the Bitwarden web app. + Podeu canviar la vostra contrasenya mestra a l'aplicació web de Bitwarden. - You can import data to your vault on {0}. + Podeu importar dades a la vostra caixa forta a {0}. The parameter is an URL, like vault.bitwarden.com. - Learn more about how to use Bitwarden on the Help center. + Obteniu més informació sobre com utilitzar Bitwarden al Centre d'ajuda. - Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + No trobeu el que esteu buscant? Poseu-vos en contacte amb l'assistència de Bitwarden a bitwarden.com. - Explore more features of your Bitwarden account on the web app. + Exploreu més característiques del vostre compte Bitwarden a l'aplicació web. - Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + Bitwarden us permet compartir els elements de la vostra caixa forta amb altres usuaris mitjançant una organització. Més informació al lloc web bitwarden.com. - Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + Ajudeu els altres a descobrir si Bitwarden és adequat per a ells. Visiteu la botiga d'aplicacions i deixeu-nos una valoració. - Choose the dark theme to use when your device’s dark mode is in use + Tria el tema fosc quan el mode fosc del vostre dispositiu estiga en ús - Created {0}, {1} + Creat {0}, {1} To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. - Too many attempts + Ha hagut massa intents - Account logged out. + S'ha tancat la sessió del compte. diff --git a/src/App/Resources/AppResources.cs.resx b/src/App/Resources/AppResources.cs.resx index d6e5a82c9..647c6afd3 100644 --- a/src/App/Resources/AppResources.cs.resx +++ b/src/App/Resources/AppResources.cs.resx @@ -2689,9 +2689,6 @@ Chcete se přepnout na tento účet? Akce časového limitu trezoru byla změněna na odhlášení - - Tuto položku nelze sdílet s organizací, protože již existuje jedna se stejným přístupovým klíčem. - Blokovat automatické vyplňování diff --git a/src/App/Resources/AppResources.cy.resx b/src/App/Resources/AppResources.cy.resx index 159c2daac..75b4293f4 100644 --- a/src/App/Resources/AppResources.cy.resx +++ b/src/App/Resources/AppResources.cy.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Rhwystro llenwi awtomatig diff --git a/src/App/Resources/AppResources.da.resx b/src/App/Resources/AppResources.da.resx index b37c72bd4..06611612c 100644 --- a/src/App/Resources/AppResources.da.resx +++ b/src/App/Resources/AppResources.da.resx @@ -2690,9 +2690,6 @@ Vil du skifte til denne konto? Boks-timeouthandling ændret til udlogning - - Dette emne kan ikke deles med organisationen, da der allerede er et med den samme adgangsnøgle. - Blokér autoudfyldning @@ -2770,7 +2767,7 @@ Vil du skifte til denne konto? Synk nu - Oplås muligheder + Oplåsningsmuligheder Sessionstimeout @@ -2820,7 +2817,7 @@ Vil du skifte til denne konto? Fortsæt med at kontakte support? - Fortsæt til App Store? + Fortsæt til app-butik? Øg kontosikkerheden ved at oprette totrins-indlogning i Bitwarden web-appen. diff --git a/src/App/Resources/AppResources.de.resx b/src/App/Resources/AppResources.de.resx index dc4894645..ca4d93463 100644 --- a/src/App/Resources/AppResources.de.resx +++ b/src/App/Resources/AppResources.de.resx @@ -2689,9 +2689,6 @@ Möchtest du zu diesem Konto wechseln? Tresor-Timeoutaktion auf "Abmelden" geändert - - Dieser Eintrag kann nicht mit der Organisation geteilt werden, da bereits einer mit dem gleichen Passkey existiert. - Auto-Ausfüllen blockieren diff --git a/src/App/Resources/AppResources.el.resx b/src/App/Resources/AppResources.el.resx index 8cc4dfcce..fcab0794e 100644 --- a/src/App/Resources/AppResources.el.resx +++ b/src/App/Resources/AppResources.el.resx @@ -2690,9 +2690,6 @@ Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.en-GB.resx b/src/App/Resources/AppResources.en-GB.resx index fa68de666..4733a1102 100644 --- a/src/App/Resources/AppResources.en-GB.resx +++ b/src/App/Resources/AppResources.en-GB.resx @@ -2690,9 +2690,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.en-IN.resx b/src/App/Resources/AppResources.en-IN.resx index 09c034fb5..c95bed197 100644 --- a/src/App/Resources/AppResources.en-IN.resx +++ b/src/App/Resources/AppResources.en-IN.resx @@ -2704,9 +2704,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.es.resx b/src/App/Resources/AppResources.es.resx index f4fb63c41..adda62f6d 100644 --- a/src/App/Resources/AppResources.es.resx +++ b/src/App/Resources/AppResources.es.resx @@ -2691,9 +2691,6 @@ seleccione Agregar TOTP para almacenar la clave de forma segura Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.et.resx b/src/App/Resources/AppResources.et.resx index 80423e1d8..7dabdcb09 100644 --- a/src/App/Resources/AppResources.et.resx +++ b/src/App/Resources/AppResources.et.resx @@ -2690,9 +2690,6 @@ Soovid selle konto peale lülituda? Vault timeout action changed to log out - - Seda kirjet ei saa organisatsiooniga jagada, sest sama pääsukoodiga kirje juba eksisteerib. - Automaatse täitmise keelamine diff --git a/src/App/Resources/AppResources.eu.resx b/src/App/Resources/AppResources.eu.resx index 73db7189b..960eaf616 100644 --- a/src/App/Resources/AppResources.eu.resx +++ b/src/App/Resources/AppResources.eu.resx @@ -2689,9 +2689,6 @@ Kontu honetara aldatu nahi duzu? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.fa.resx b/src/App/Resources/AppResources.fa.resx index 7c8805621..09b0481da 100644 --- a/src/App/Resources/AppResources.fa.resx +++ b/src/App/Resources/AppResources.fa.resx @@ -560,7 +560,7 @@ Message shown when interacting with the server - وارد شوید یا یک حساب کاربری بسازید تا به گاوصندوق امنتان دسترسی یابید. + وارد شوید یا یک حساب کاربری بسازید تا به گاوصندوق امن‌تان دسترسی یابید. مدیریت @@ -2479,7 +2479,7 @@ آیا می‌خواهید به این حساب تغییر دهید؟ - اینجا جدیده؟ + اینجا تازه واردی؟ دریافت یادآور کلمه عبور اصلی @@ -2691,9 +2691,6 @@ اقدام پایان زمان گاوصندوق به خروج تغییر کرد - - این مورد را نمی‌توان با سازمان به اشتراک گذاشت زیرا قبلاً موردی با کلید عبور یکسان وجود دارد. - پر کردن خودکار را مسدود کنید diff --git a/src/App/Resources/AppResources.fi.resx b/src/App/Resources/AppResources.fi.resx index 0c8be9d7a..57bcf7d25 100644 --- a/src/App/Resources/AppResources.fi.resx +++ b/src/App/Resources/AppResources.fi.resx @@ -721,7 +721,7 @@ Bitwarden Verkkoholvi - Etkö pysty käyttämään todennussovellustasi? + Etkö voi käyttää todennussovellustasi? Kohteet @@ -892,10 +892,10 @@ Kohdista kamera QR-koodiin. -Koodi luetaan automaattisesti. +Koodi skannataan automaattisesti. - Lue QR-koodi + Skannaa QR-koodi Kamera @@ -907,7 +907,7 @@ Koodi luetaan automaattisesti. Kopioi TOTP-todennuskoodi - TOTP-todennuskoodi kopioidaan automaattisesti leikepöydälle automaattisen täytön yhteydessä, jos kirjautumistieto sisältää kaksivaiheisen todennusmenetelmän avaimen. + Jos kirjautumistieto sisältää kaksivaiheisen TOTP-todennusavaimen, kopioidaan todennuskoodi automaattisesti leikepöydälle automaattisen täytön yhteydessä. TOTP-koodin kopiointi @@ -2276,16 +2276,16 @@ Koodi luetaan automaattisesti. Etkö voi lisätä todennusavainta? - Lue QR-koodi + Skannaa QR-koodi - Etkö voi lukea QR-koodia? + Eikö QR-koodin skannaus onnistu? Todentajan avain - Syötä koodi manuaalisesti + Syötä se manuaalisesti Lisää TOTP @@ -2307,7 +2307,7 @@ turvallisesti valitsemalla "Lisää TOTP" Pyyntöäsi ei voitu käsitellä. Yritä uudelleen tai ota meihin yhteyttä. - Salli kuvakaappaus + Salli kuvankaappaus Haluatko varmasti sallia kuvankaappauksen? @@ -2319,7 +2319,7 @@ turvallisesti valitsemalla "Lisää TOTP" Yritätkö kirjautua sisään? - Kirjautumisyritys tunnuksella {0} laitteella {1} + Kirjautumisyritys tunnuksella {0} kohteessa {1}. Laitteen tyyppi @@ -2337,7 +2337,7 @@ turvallisesti valitsemalla "Lisää TOTP" Vahvista kirjautuminen - Estä kirjautuminen + Hylkää kirjautuminen Juuri nyt @@ -2355,7 +2355,7 @@ turvallisesti valitsemalla "Lisää TOTP" Hyväksy kirjautumispyyntöjä - Hyväksy kirjautumispyyntöjä tällä laitteella + Hyväksy muiden laitteiden kirjautumispyyntöjä tällä laitteella Salli ilmoitukset @@ -2533,7 +2533,7 @@ Haluatko vaihtaa tähän tiliin? Odottavia pyyntöjä ei ole - Myönnä kameran käyttöoikeus skannerin käyttämiseksi + Myönnä kameran käyttöoikeus käyttääksesi skannausta Kieli @@ -2620,10 +2620,10 @@ Haluatko vaihtaa tähän tiliin? Nykyinen pääsalasana - Kirjautuminen onnistui! + Kirjautuminen onnistui - Hyväksy muilta laitteiltasi + Hyväksy toisella laitteellani Pyydä hyväksyntää ylläpidolta @@ -2691,9 +2691,6 @@ Haluatko vaihtaa tähän tiliin? Holvin aikakatkaisutoiminnoksi vaihdettiin uloskirjaus - - Kohdetta ei voida jakaa organisaatiolle, koska siellä on jo samaa suojausavainta käyttävä kohde. - Estä automaattinen täyttö @@ -2771,7 +2768,7 @@ Haluatko vaihtaa tähän tiliin? Synkronoi nyt - Lukitseminen + Avausasetukset Istunnon aikakatkaisu @@ -2780,17 +2777,17 @@ Haluatko vaihtaa tähän tiliin? Istunnon aikakatkaisutoiminto - Tilisi tunnistelauseke + Tilin tunnistelauseke A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. - Tunti ja minuutti + 1 tunti 1 minuutti - Tunti ja {0} minuuttia + 1 tunti {0} minuuttia - {0} tuntia yksi minuutti + {0} tuntia 1 minuutti {0} tuntia {1} minuuttia @@ -2799,10 +2796,10 @@ Haluatko vaihtaa tähän tiliin? {0} tuntia - Android Autofill Framework -rajapintaa käytetään kirjautumistietojen täyttöön laitteen muihin sovelluksiin. + Android Autofill Framework -rajapintaa käytetään täytettäessä kirjautumistietoja laitteen muihin sovelluksiin. - Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay. + Tekstinsisäistä automattitäyttöä käytetään, jos aktiivinen näppäimistö tukee sitä. Muussa tapauksessa käytetään ponnahdusvalintaa. Lisäasetukset @@ -2818,23 +2815,23 @@ Haluatko vaihtaa tähän tiliin? Avataanko Tukikeskus? - Avataanko asiakaspalvelu? + Siirrytäänkö asiakaspalveluun? Avataanko sovelluskauppa? - Paranna tilisi suojausta määrittämällä kaksivaiheinen kirjautuminen Bitwarden-verkkosovelluksesta. + Paranna tilisi suojausta määrittämällä kaksivaiheinen kirjautuminen Bitwardenin verkkosovelluksessa. - Voit vaihtaa pääsalasanasi Bitwarden-verkkosovelluksesta. + Voit vaihtaa pääsalasanasi Bitwardenin verkkosovelluksessa. Voit tuoda tietoja holviisi osoitteessa {0}. The parameter is an URL, like vault.bitwarden.com. - Opi käyttämään Bitwardenia Tukikeskuksessa. + Tutustu Bitwardeniin ja opettele käyttämään sitä Tukikeskuksessa. Etkö löydä etsimääsi? Tavoitat Bitwardenin asiakaspalvelun osoitteesta bitwarden.com. @@ -2843,13 +2840,13 @@ Haluatko vaihtaa tähän tiliin? Tutustu Bitwarden-tilisi muihin omimaisuuksiin verkkosovelluksessa. - Bitwarden mahdollistaa holvisi sisällön jakamisen organisaation avulla. Lisätietoja saat bitwarden.com-sivustolta. + Bitwarden mahdollistaa holvisi sisällön jakamisen organisaation avulla. Lue lisää osoitteesta bitwarden.com. Auta muita selvittämään sopiiko Bitwarden heille. Arvioi se sovelluskaupassa nyt. - Valitse tumma teema kun laitteesi tumma tila on käytössä. + Valitse tumma teema kun laitteesi tumma tila on aktiivinen. Luotu {0} - {1} diff --git a/src/App/Resources/AppResources.fil.resx b/src/App/Resources/AppResources.fil.resx index f7be063a8..1944f19dd 100644 --- a/src/App/Resources/AppResources.fil.resx +++ b/src/App/Resources/AppResources.fil.resx @@ -2691,9 +2691,6 @@ Gusto mo bang pumunta sa account na ito? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.fr.resx b/src/App/Resources/AppResources.fr.resx index c1f8b4df9..c558e503e 100644 --- a/src/App/Resources/AppResources.fr.resx +++ b/src/App/Resources/AppResources.fr.resx @@ -2691,9 +2691,6 @@ Voulez-vous basculer vers ce compte ? Délai d'expiration du coffre a été changé pour se déconnecter - - Cet élément ne peut pas être déplacé vers l'organisation, car celle-ci dispose déjà d'un élément avec la même clé d'accès. - Bloquer la saisie automatique diff --git a/src/App/Resources/AppResources.gl.resx b/src/App/Resources/AppResources.gl.resx index 7e750de59..dbfdcb5c5 100644 --- a/src/App/Resources/AppResources.gl.resx +++ b/src/App/Resources/AppResources.gl.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.he.resx b/src/App/Resources/AppResources.he.resx index 47fa463d6..e53e9b513 100644 --- a/src/App/Resources/AppResources.he.resx +++ b/src/App/Resources/AppResources.he.resx @@ -2693,9 +2693,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.hi.resx b/src/App/Resources/AppResources.hi.resx index 8c0356433..e1f4cf87c 100644 --- a/src/App/Resources/AppResources.hi.resx +++ b/src/App/Resources/AppResources.hi.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.hr.resx b/src/App/Resources/AppResources.hr.resx index b12decab3..bea9fcdbf 100644 --- a/src/App/Resources/AppResources.hr.resx +++ b/src/App/Resources/AppResources.hr.resx @@ -2688,9 +2688,6 @@ Radnja isteka trezora promijenjena je u odjavu - - Ova se stavka ne može dijeliti s organizacijom jer već postoji stavka s istim pristupnim ključem. - Blokiraj auto-ispunu diff --git a/src/App/Resources/AppResources.hu.resx b/src/App/Resources/AppResources.hu.resx index f11c5a942..4fb622a7c 100644 --- a/src/App/Resources/AppResources.hu.resx +++ b/src/App/Resources/AppResources.hu.resx @@ -2689,9 +2689,6 @@ Szeretnénk átváltani erre a fiókra? A széf időkifutási művelete kijelentkezésre módosult. - - Ez az elem nem osztható meg a szervezettel, mert már van egy ugyanezzel a hozzáférési kulccsal. - Automatikus kitöltés blokkolása diff --git a/src/App/Resources/AppResources.id.resx b/src/App/Resources/AppResources.id.resx index 732a0b7ff..f178567e7 100644 --- a/src/App/Resources/AppResources.id.resx +++ b/src/App/Resources/AppResources.id.resx @@ -2690,9 +2690,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.it.resx b/src/App/Resources/AppResources.it.resx index 43ae92ffb..5a5459515 100644 --- a/src/App/Resources/AppResources.it.resx +++ b/src/App/Resources/AppResources.it.resx @@ -2690,9 +2690,6 @@ Vuoi passare a questo account? Azione timeout cassaforte impostata su uscire - - Questo elemento non può essere condiviso con l'organizzazione perché ne esiste già uno con la stessa passkey. - Bocca riempimento automatico @@ -2820,16 +2817,16 @@ Vuoi passare a questo account? Continua per contattare l'assistenza? - Continue to app store? + Continuare sull'App Store? Make your account more secure by setting up two-step login in the Bitwarden web app. - You can change your master password on the Bitwarden web app. + Puoi modificare la tua password principale sull'app web Bitwarden. - You can import data to your vault on {0}. + Puoi importare i dati nella tua cassaforte {0}. The parameter is an URL, like vault.bitwarden.com. @@ -2842,13 +2839,13 @@ Vuoi passare a questo account? Explore more features of your Bitwarden account on the web app. - Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website. + Bitwarden ti consente di condividere gli elementi della tua cassaforte con altri utilizzando un'organizzazione. Scopri di più sul sito bitwarden.com. Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. - Choose the dark theme to use when your device’s dark mode is in use + Scegli il tema scuro da utilizzare quando è in uso la modalità oscura del tuo dispositivo Creato il {0} alle {1} diff --git a/src/App/Resources/AppResources.ja.resx b/src/App/Resources/AppResources.ja.resx index 7346e6a14..a73571cf0 100644 --- a/src/App/Resources/AppResources.ja.resx +++ b/src/App/Resources/AppResources.ja.resx @@ -2690,9 +2690,6 @@ 保管庫のタイムアウトアクションがログアウトに変更されました - - すでに同じパスキーを持つものがあるため、このアイテムは組織と共有することはできません。 - 自動入力をブロック diff --git a/src/App/Resources/AppResources.ka.resx b/src/App/Resources/AppResources.ka.resx index 7e750de59..dbfdcb5c5 100644 --- a/src/App/Resources/AppResources.ka.resx +++ b/src/App/Resources/AppResources.ka.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.kn.resx b/src/App/Resources/AppResources.kn.resx index 153d14b50..5efda2546 100644 --- a/src/App/Resources/AppResources.kn.resx +++ b/src/App/Resources/AppResources.kn.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.ko.resx b/src/App/Resources/AppResources.ko.resx index 25602dde0..25ac20449 100644 --- a/src/App/Resources/AppResources.ko.resx +++ b/src/App/Resources/AppResources.ko.resx @@ -2690,9 +2690,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.lt.resx b/src/App/Resources/AppResources.lt.resx index c4f9039fa..38d9b1dc0 100644 --- a/src/App/Resources/AppResources.lt.resx +++ b/src/App/Resources/AppResources.lt.resx @@ -2691,9 +2691,6 @@ Ar norite pereiti prie šios paskyros? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.lv.resx b/src/App/Resources/AppResources.lv.resx index 405eb3425..86d685eba 100644 --- a/src/App/Resources/AppResources.lv.resx +++ b/src/App/Resources/AppResources.lv.resx @@ -375,7 +375,7 @@ Validation message for when a form field is left blank and is required to be entered. - {0} ir ievietots starpliktuvē. + {0} ir starpliktuvē Confirmation message after successfully copying a value to the clipboard. @@ -907,7 +907,7 @@ Nolasīšana notiks automātiski. Ievietot TOTP starpliktuvē - Ja pieteikšanās vienumam ir pievienota autentificētāja atslēga, TOTP apstiprinājuma kods tiks automātiski pārkopēts uz starpliktuvi, kad vien tiks automātiski aizpildīta pieteikšanās veidne. + Ja pieteikšanās vienumam ir pievienota autentificētāja atslēga, TOTP apstiprinājuma kods tiks automātiski ievietots starpliktuvē, kad vien tiks automātiski aizpildīta pieteikšanās veidne. Automātiski ievietot TOTP starpliktuvē @@ -2638,22 +2638,22 @@ Vai pārslēgties uz šo kontu? Atcerēties šo ierīci - Paroļatslēga + Piekļuves atslēga - Paroļatslēgas + Piekļuves atslēgas Lietotne - Paroļatslēgas lietotni nevar labot, jo tas paroļatslēgu padarītu nederīgu + Piekļuves atslēgas lietotni nevar labot, jo tas piekļuves atslēgu padarītu nederīgu - Paroļatslēga netiks kopēta + Piekļuves atslēga netiks ievietota starpliktuvē - Paroļatslēga netiks kopēta klonētajā vienumā. Vai turpināt šī vienuma klonēšanu? + Piekļuves atslēga netiks ievietota klonētajā vienumā. Vai turpināt šī vienuma klonēšanu? Kopēt lietotni @@ -2691,9 +2691,6 @@ Vai pārslēgties uz šo kontu? Glabātavas noildzes darbība nomainīta uz atteikšanos - - Šo vienumu nevar kopīgot ar apvienību, jo tur jau ir tāds ar to pašu paroļatslēgu. - Neļaut automātisko aizpildīšanu diff --git a/src/App/Resources/AppResources.ml.resx b/src/App/Resources/AppResources.ml.resx index 1ee3691d5..71385147c 100644 --- a/src/App/Resources/AppResources.ml.resx +++ b/src/App/Resources/AppResources.ml.resx @@ -2690,9 +2690,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.mr.resx b/src/App/Resources/AppResources.mr.resx index 76d7887fd..57bb41939 100644 --- a/src/App/Resources/AppResources.mr.resx +++ b/src/App/Resources/AppResources.mr.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.my.resx b/src/App/Resources/AppResources.my.resx index 7e750de59..dbfdcb5c5 100644 --- a/src/App/Resources/AppResources.my.resx +++ b/src/App/Resources/AppResources.my.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.nb.resx b/src/App/Resources/AppResources.nb.resx index 9fa1072a4..92e530c8d 100644 --- a/src/App/Resources/AppResources.nb.resx +++ b/src/App/Resources/AppResources.nb.resx @@ -2691,9 +2691,6 @@ Vil du bytte til denne kontoen? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.ne.resx b/src/App/Resources/AppResources.ne.resx index 7e750de59..dbfdcb5c5 100644 --- a/src/App/Resources/AppResources.ne.resx +++ b/src/App/Resources/AppResources.ne.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.nl.resx b/src/App/Resources/AppResources.nl.resx index 9aa51f59b..edf9f2b1e 100644 --- a/src/App/Resources/AppResources.nl.resx +++ b/src/App/Resources/AppResources.nl.resx @@ -2690,9 +2690,6 @@ Wilt u naar dit account wisselen? Vault timeout action changed to log out - - Je kunt dit item niet delen met de organisatie omdat er al een met dezelfde passkey is. - Automatisch aanvullen blokkeren diff --git a/src/App/Resources/AppResources.nn.resx b/src/App/Resources/AppResources.nn.resx index ec38c7ff8..d5160a69c 100644 --- a/src/App/Resources/AppResources.nn.resx +++ b/src/App/Resources/AppResources.nn.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - Denne gjenstanden kan ikkje delast med organisasjonen fordi det allereie finst ein med same passnøkkel. - Block auto-fill diff --git a/src/App/Resources/AppResources.or.resx b/src/App/Resources/AppResources.or.resx index e966f3900..ed2128536 100644 --- a/src/App/Resources/AppResources.or.resx +++ b/src/App/Resources/AppResources.or.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.pl.resx b/src/App/Resources/AppResources.pl.resx index 7582caa67..42ebc81ab 100644 --- a/src/App/Resources/AppResources.pl.resx +++ b/src/App/Resources/AppResources.pl.resx @@ -2690,9 +2690,6 @@ Czy chcesz przełączyć się na to konto? Sposób blokowania sejfu został zmieniony na wylogowanie - - Ten element nie może być współdzielony z organizacją, ponieważ jest już z tym samym passkey'em. - Blokuj autouzupełnianie diff --git a/src/App/Resources/AppResources.pt-BR.resx b/src/App/Resources/AppResources.pt-BR.resx index b19d7f27e..f0e7ade53 100644 --- a/src/App/Resources/AppResources.pt-BR.resx +++ b/src/App/Resources/AppResources.pt-BR.resx @@ -2691,9 +2691,6 @@ Você deseja mudar para esta conta? A ação ao acabar o tempo do Cofre mudada para encerrar a sessão - - Este item não pode ser compartilhado com a organização porque já existe um com a mesma senha. - Bloquear preenchimento automático diff --git a/src/App/Resources/AppResources.pt-PT.resx b/src/App/Resources/AppResources.pt-PT.resx index 2d76d7499..91ca285ac 100644 --- a/src/App/Resources/AppResources.pt-PT.resx +++ b/src/App/Resources/AppResources.pt-PT.resx @@ -2689,9 +2689,6 @@ Deseja mudar para esta conta? Ação de tempo limite do cofre alterada para terminar sessão - - Este item não pode ser partilhado com a organização porque já existe um com a mesma chave de acesso. - Bloquear preenchimento automático diff --git a/src/App/Resources/AppResources.ro.resx b/src/App/Resources/AppResources.ro.resx index aa8c4408d..771bc72e7 100644 --- a/src/App/Resources/AppResources.ro.resx +++ b/src/App/Resources/AppResources.ro.resx @@ -2690,9 +2690,6 @@ Doriți să comutați la acest cont? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.ru.resx b/src/App/Resources/AppResources.ru.resx index 36de5111d..b30e5f05f 100644 --- a/src/App/Resources/AppResources.ru.resx +++ b/src/App/Resources/AppResources.ru.resx @@ -2690,9 +2690,6 @@ Тайм-аут хранилища изменен на выход - - Этим элементом нельзя поделиться с организацией, поскольку существует другой с тем же ключом. - Блокировать автозаполнение diff --git a/src/App/Resources/AppResources.si.resx b/src/App/Resources/AppResources.si.resx index bb3bbb305..816cc091c 100644 --- a/src/App/Resources/AppResources.si.resx +++ b/src/App/Resources/AppResources.si.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.sk.resx b/src/App/Resources/AppResources.sk.resx index ec948da33..dcc0883c8 100644 --- a/src/App/Resources/AppResources.sk.resx +++ b/src/App/Resources/AppResources.sk.resx @@ -2690,9 +2690,6 @@ Chcete prepnúť na toto konto? Akcia pri vypršaní času pre trezor zmenená na odhlásenie - - Túto položku nemožno zdieľať s organizáciou, pretože už existuje jedna s rovnakým prístupovým kľúčom. - Blokovať automatické vypĺňanie diff --git a/src/App/Resources/AppResources.sl.resx b/src/App/Resources/AppResources.sl.resx index 9719323a5..3dfaa7afc 100644 --- a/src/App/Resources/AppResources.sl.resx +++ b/src/App/Resources/AppResources.sl.resx @@ -2690,9 +2690,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.sr.resx b/src/App/Resources/AppResources.sr.resx index 82254c815..e73d34292 100644 --- a/src/App/Resources/AppResources.sr.resx +++ b/src/App/Resources/AppResources.sr.resx @@ -2639,22 +2639,22 @@ Запамти овај уређај - Passkey + Приступачни кључ - Passkey-ови + Приступачни кључеви Апликација - Не може да се уреди passkey апликација јер би то поништило passkey + Не може да се уреди апликација кључева јер би то поништило приступачни кључ - Passkey неће бити копиран + Приступачни кључ неће бити копиран - Passkey неће бити копиран на клонирану ставку. Да ли желите да наставите са клонирањем ставке? + Приступачни кључ неће бити копиран на клонирану ставку. Да ли желите да наставите са клонирањем ставке? Копирај апликацију @@ -2692,9 +2692,6 @@ Радња временског ограничења сефа је промењена за одјављивање - - This item cannot be shared with the organization because there is one already with the same passkey. - Блокирати ауто-пуњење diff --git a/src/App/Resources/AppResources.sv.resx b/src/App/Resources/AppResources.sv.resx index 74b24b727..f73898ef6 100644 --- a/src/App/Resources/AppResources.sv.resx +++ b/src/App/Resources/AppResources.sv.resx @@ -2692,9 +2692,6 @@ Vill du byta till detta konto? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.ta.resx b/src/App/Resources/AppResources.ta.resx index 2b7480650..6e332dd32 100644 --- a/src/App/Resources/AppResources.ta.resx +++ b/src/App/Resources/AppResources.ta.resx @@ -947,7 +947,7 @@ உங்கள் குறியாக்க விசையை புதுப்பிக்கும் வரை இந்த அம்சத்தைப் பயன்படுத்த முடியாது. - Encryption key migration required. Please login through the web vault to update your encryption key. + மறையாக்க விசை பெயர்ப்பு தேவை. தயவுசெய்து வலைப் பெட்டகத்தில் உள்நுழைந்து உமது மறையாக்க விசையைப் புதுப்பிக்கவும். மேலும் அறிக @@ -2453,7 +2453,7 @@ Generate an email alias with an external forwarding service. - Random + ஏதோவொரு Connect to Watch @@ -2623,19 +2623,19 @@ Logged in! - Approve with my other device + எனது மற்றொரு சாதனத்துடன் ஒப்புதலளி - Request admin approval + நிர்வாகி ஒப்புதல் கோரு - Approve with master password + பிரதான கடவுச்சொலுடன் ஒப்புக்கொள் - Turn off using a public device + பொது சாதனம் பயன்படுத்துவதை முடக்கு - Remember this device + இச்சாதனத்தை நினைவுகொள் கடவுவிசை @@ -2647,7 +2647,7 @@ செயலி - You cannot edit passkey application because it would invalidate the passkey + கடவுவிசைச் செயலியைத் திருத்துதல் கடவுவிசையை செல்லாததாக்குவதால் அது முடியாது கடவிவிசை நகலெடுக்கப்படாது @@ -2674,25 +2674,22 @@ செல்லாத API கிள்ளாக்கு - Admin approval requested + நிர்வாகி ஒப்புதல் கோரப்பட்டது - Your request has been sent to your admin. + உமது கோரிக்கை உமது நிர்வாகிக்கு அனுப்பப்பட்டது. ஏற்கப்பட்ட பின் அறிவிக்கப்படுவீர். - Trouble logging in? + உள்நுழைவதில் சிக்கலா? {0} ஆக உள்நுழைகிறது - Vault timeout action changed to log out - - - This item cannot be shared with the organization because there is one already with the same passkey. + பெட்டக நேரமுடிவு செயல் வெளியேறு என மாற்றப்பட்டது தன்னிரப்பலைத் தடு @@ -2750,37 +2747,37 @@ இதில் உள்நுழைகிறது - Vault + பெட்டகம் - Appearance + தோற்றம் - Account security + கணக்கு பாதுகாப்பு - Bitwarden Help Center + Bitwarden உதவி மையம் - Contact Bitwarden support + Bitwarden ஆதரவைத் தொடர்புகொள் - Copy app information + செயலி தகவலை நகலெடு - Sync now + இப்போது ஒத்திசை Unlock options - Session timeout + அமர்வு நேரமுடிவு - Session timeout action + அமர்வு நேரமுடிவு செயல் - Account fingerprint phrase + கணக்கு கைரேகைச் சொற்றொடர் A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. @@ -2856,9 +2853,9 @@ To state the date/time in which the cipher was created: Created 03/21/2023, 09:25 AM. First parameter is the date and the second parameter is the time. - Too many attempts + மிக அதிக முயற்சிகள் - Account logged out. + கணக்கிலிருந்து வெளியேறப்பட்டது. diff --git a/src/App/Resources/AppResources.te.resx b/src/App/Resources/AppResources.te.resx index 7e750de59..dbfdcb5c5 100644 --- a/src/App/Resources/AppResources.te.resx +++ b/src/App/Resources/AppResources.te.resx @@ -2691,9 +2691,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.th.resx b/src/App/Resources/AppResources.th.resx index b65fe1cbf..c28bb2a44 100644 --- a/src/App/Resources/AppResources.th.resx +++ b/src/App/Resources/AppResources.th.resx @@ -2698,9 +2698,6 @@ Do you want to switch to this account? Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - Block auto-fill diff --git a/src/App/Resources/AppResources.tr.resx b/src/App/Resources/AppResources.tr.resx index 93231f65d..48fb7378a 100644 --- a/src/App/Resources/AppResources.tr.resx +++ b/src/App/Resources/AppResources.tr.resx @@ -2689,9 +2689,6 @@ Bu hesaba geçmek ister misiniz? Kasa zaman aşımı eylemi "çıkış yap" olarak değiştirildi - - Aynı şifre anahtarına sahip başka bir kayıt olduğu için bu kaydı kuruluşunuzla paylaşamazsınız. - Otomatik doldurmayı engelle diff --git a/src/App/Resources/AppResources.uk.resx b/src/App/Resources/AppResources.uk.resx index 275fe8b6d..ab8e09639 100644 --- a/src/App/Resources/AppResources.uk.resx +++ b/src/App/Resources/AppResources.uk.resx @@ -2690,9 +2690,6 @@ Час очікування сховища змінено на вихід - - Цей запис не можна поширити для організації, оскільки там вже є запис із таким самим ключем доступу. - Блокувати автозаповнення diff --git a/src/App/Resources/AppResources.vi.resx b/src/App/Resources/AppResources.vi.resx index 195eb09bc..0942a706b 100644 --- a/src/App/Resources/AppResources.vi.resx +++ b/src/App/Resources/AppResources.vi.resx @@ -2691,9 +2691,6 @@ Bạn có muốn chuyển sang tài khoản này không? Hành động sau khi hết thời gian mở kho đã thay đổi thành đăng xuất - - Không thể chia sẻ mục này với tổ chức vì đã có một mục có cùng passkey. - Chặn tự động điền diff --git a/src/App/Resources/AppResources.zh-Hans.resx b/src/App/Resources/AppResources.zh-Hans.resx index f0c386fcc..1680b8dd5 100644 --- a/src/App/Resources/AppResources.zh-Hans.resx +++ b/src/App/Resources/AppResources.zh-Hans.resx @@ -2690,9 +2690,6 @@ 密码库超时动作已更改为注销 - - 无法与组织共享此项目,因为已经有一个项目具有相同的通行密钥。 - 阻止自动填充 diff --git a/src/App/Resources/AppResources.zh-Hant.resx b/src/App/Resources/AppResources.zh-Hant.resx index eb0d9ae40..4bef50c8f 100644 --- a/src/App/Resources/AppResources.zh-Hant.resx +++ b/src/App/Resources/AppResources.zh-Hant.resx @@ -2690,9 +2690,6 @@ Vault timeout action changed to log out - - This item cannot be shared with the organization because there is one already with the same passkey. - 封鎖表單自動填入功能 diff --git a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/de.lproj/Localizable.strings b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/de.lproj/Localizable.strings index 68ca4313e..e33b612af 100644 --- a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/de.lproj/Localizable.strings +++ b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/de.lproj/Localizable.strings @@ -5,6 +5,6 @@ "SyncingItemsContainingVerificationCodes" = "Synchronisieren von Einträgen, die Verifizierungscodes enthalten"; "UnlockBitwardenOnYourIPhoneToViewVerificationCodes" = "Entsperre Bitwarden auf deinem iPhone, um Verifizierungscodes anzuzeigen"; "SetUpBitwardenToViewItemsContainingVerificationCodes" = "Richte Bitwarden für die Anzeige von Einträgen mit Verifizierungscodes ein"; -"Search" = "Search"; +"Search" = "Suche"; "NoItemsFound" = "Keine Einträge gefunden"; "SetUpAppleWatchPasscodeInOrderToUseBitwarden" = "Lege einen Apple Watch-Code fest, um Bitwarden zu verwenden"; diff --git a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/fi.lproj/Localizable.strings b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/fi.lproj/Localizable.strings index fbbdeaab3..954f8395c 100644 --- a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/fi.lproj/Localizable.strings +++ b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/fi.lproj/Localizable.strings @@ -5,6 +5,6 @@ "SyncingItemsContainingVerificationCodes" = "Vahvistuskoodeja sisältäviä kohteita synkronoidaan."; "UnlockBitwardenOnYourIPhoneToViewVerificationCodes" = "Näytä vahvistuskoodit avaamalla Bitwarden iPhonessa."; "SetUpBitwardenToViewItemsContainingVerificationCodes" = "Määritä Bitwarden nähdäksesi vahvistuskoodeja sisältävät kohteet."; -"Search" = "Etsi"; +"Search" = "Haku"; "NoItemsFound" = "Kohteita ei löytynyt."; "SetUpAppleWatchPasscodeInOrderToUseBitwarden" = "Määritä Apple Watch- lukituskoodi Bitwardenn käyttämiseksi."; From 4dda7a6634c91b7080600d011178161ce29aef98 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 09:51:53 +0000 Subject: [PATCH 18/23] Autosync the updated translations (#2836) Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com> --- src/App/Resources/AppResources.it.resx | 34 ++++++++++----------- src/App/Resources/AppResources.zh-Hans.resx | 2 +- store/apple/it/copy.resx | 6 ++-- store/google/it/copy.resx | 6 ++-- 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/App/Resources/AppResources.it.resx b/src/App/Resources/AppResources.it.resx index 5a5459515..72eb8581f 100644 --- a/src/App/Resources/AppResources.it.resx +++ b/src/App/Resources/AppResources.it.resx @@ -942,10 +942,10 @@ La dimensione massima del file è 100 MB. - Non puoi utilizzare questa funzione finché non aggiorni la tua chiave di criptografia. + Non puoi utilizzare questa funzione finché non aggiorni la tua chiave di crittografia. - Migrazione della chiave di criptografia obbligatoria. Accedi tramite la cassaforte web per aggiornare la tua chiave di criptografia. + Migrazione della chiave di crittografia obbligatoria. Accedi tramite la cassaforte web per aggiornare la tua chiave di crittografia. Ulteriori informazioni @@ -1655,13 +1655,13 @@ Conferma la tua identità per continuare. - Questa esportazione contiene i dati della tua cassaforte in un formato non criptato. Non salvare o inviare il file esportato attraverso canali non protetti (come le email). Eliminalo immediatamente dopo l'utilizzo. + Questa esportazione contiene i dati della tua cassaforte in un formato non crittografato. Non salvare o inviare il file esportato attraverso canali non protetti (come le email). Eliminalo immediatamente dopo l'utilizzo. - Questa esportazione cripta i tuoi dati usando la chiave di criptografia del tuo account. Se cambi la chiave di criptografia del tuo account, non potrai più decifrare il file esportato e dovrai eseguire una nuova esportazione. + Questa esportazione crittografa i tuoi dati usando la chiave di crittografia del tuo account. Se cambi la chiave di crittografia del tuo account, non potrai più decifrare il file esportato e dovrai eseguire una nuova esportazione. - Le chiavi di criptografia dell'account sono uniche per ogni account Bitwarden, quindi non puoi importare un file di esportazione criptato in un account diverso. + Le chiavi di crittografia dell'account sono uniche per ogni account Bitwarden, quindi non puoi importare un file di esportazione crittato in un account diverso. Conferma esportazione della cassaforte @@ -2095,7 +2095,7 @@ Rimuovi password principale - {0} sta usando SSO con criptografia gestita dal cliente. Continuare rimuoverà la tua password principale dal tuo profilo e richiederà SSO per accedere. + {0} sta usando SSO con crittografia gestita dal cliente. Continuare rimuoverà la tua password principale dal tuo profilo e richiederà SSO per accedere. Se non vuoi rimuovere la tua password principale, puoi lasciare questa organizzazione. @@ -2297,7 +2297,7 @@ clicca Aggiungi TOTP per salvare la chiave in modo sicuro - Sei sicuro di voler usare l'opzione "Mai"? Impostare le opzioni di blocco su "Mai" salverà la chiave di criptografia della cassaforte sul tuo dispositivo. Se utilizzi questa opzione, assicurati di mantenere il tuo dispositivo adeguatamente protetto. + Sei sicuro di voler usare l'opzione "Mai"? Impostare le opzioni di blocco su "Mai" salverà la chiave di crittografia della cassaforte sul tuo dispositivo. Se utilizzi questa opzione, assicurati di mantenere il tuo dispositivo adeguatamente protetto. L'URL inserito non è valido, controllalo e prova a salvarlo di nuovo. @@ -2354,7 +2354,7 @@ clicca Aggiungi TOTP per salvare la chiave in modo sicuro Approva richieste di accesso - Usa questo dispositivo per approvare le richieste di accesso fatte da altri dispositivi. + Usa questo dispositivo per approvare le richieste di accesso fatte da altri dispositivi Consenti notifiche @@ -2820,32 +2820,32 @@ Vuoi passare a questo account? Continuare sull'App Store? - Make your account more secure by setting up two-step login in the Bitwarden web app. + Rendi il tuo account più sicuro impostando la verifica in due passaggi sul sito web di Bitwarden. - Puoi modificare la tua password principale sull'app web Bitwarden. + Puoi modificare la tua password principale sul sito web di Bitwarden. - Puoi importare i dati nella tua cassaforte {0}. + Puoi importare i dati nella tua cassaforte su {0}. The parameter is an URL, like vault.bitwarden.com. - Learn more about how to use Bitwarden on the Help center. + Scopri di più su come usare Bitwarden nel centro assistenza. - Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com. + Non riesci a trovare quello che stai cercando? Contatta il supporto Bitwarden su bitwarden.com. - Explore more features of your Bitwarden account on the web app. + Esplora altre funzionalità del tuo account Bitwarden sul sito web. - Bitwarden ti consente di condividere gli elementi della tua cassaforte con altri utilizzando un'organizzazione. Scopri di più sul sito bitwarden.com. + Bitwarden ti consente di condividere gli elementi della tua cassaforte con altri usando un'organizzazione. Scopri di più su bitwarden.com. - Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now. + Aiuta gli altri a decidere se Bitwarden è adatto a loro. Visita l'App Store e lascia una recensione. - Scegli il tema scuro da utilizzare quando è in uso la modalità oscura del tuo dispositivo + Scegli il tema scuro da usare quando il tuo dispositivo è in modalità scura Creato il {0} alle {1} diff --git a/src/App/Resources/AppResources.zh-Hans.resx b/src/App/Resources/AppResources.zh-Hans.resx index 1680b8dd5..d694047d9 100644 --- a/src/App/Resources/AppResources.zh-Hans.resx +++ b/src/App/Resources/AppResources.zh-Hans.resx @@ -1644,7 +1644,7 @@ 文件格式 - 输入主密码来导出你的密码库。 + 输入您的主密码以导出你的密码库数据。 发送验证码到您的电子邮箱 diff --git a/store/apple/it/copy.resx b/store/apple/it/copy.resx index a65a811c7..51d47ae7a 100644 --- a/store/apple/it/copy.resx +++ b/store/apple/it/copy.resx @@ -130,14 +130,14 @@ Gestisci, archivia, proteggi, e condividi password illimitate su dispositivi ill Genera password forti, uniche, e casuali in base ai requisiti di sicurezza per ogni sito web che frequenti. -Bitwarden Send trasmette rapidamente informazioni criptate - via file e testo in chiaro - direttamente a chiunque. +Bitwarden Send trasmette rapidamente informazioni crittate - via file e testo in chiaro - direttamente a chiunque. Bitwarden offre piani Teams ed Enterprise per le aziende così puoi condividere le password in modo sicuro con i tuoi colleghi. Perché Scegliere Bitwarden: -Criptografia Di Livello Mondiale -Le password sono protette con criptografia end-to-end avanzata (AES-256 bit, salted hashing, e PBKDF2 SHA-256) per tenere i tuoi dati al sicuro e privati. +Crittografia Di Livello Mondiale +Le password sono protette con crittografia end-to-end avanzata (AES-256 bit, salted hashing, e PBKDF2 SHA-256) per tenere i tuoi dati al sicuro e privati. Generatore Di Password Integrato Genera password forti, uniche e casuali in base ai requisiti di sicurezza per ogni sito web che frequenti. diff --git a/store/google/it/copy.resx b/store/google/it/copy.resx index 01705c356..bb1675d94 100644 --- a/store/google/it/copy.resx +++ b/store/google/it/copy.resx @@ -134,14 +134,14 @@ Gestisci, archivia, proteggi, e condividi password illimitate su dispositivi ill Genera password forti, uniche, e casuali in base ai requisiti di sicurezza per ogni sito web che frequenti. -Bitwarden Send trasmette rapidamente informazioni criptate - via file e testo in chiaro - direttamente a chiunque. +Bitwarden Send trasmette rapidamente informazioni crittate - via file e testo in chiaro - direttamente a chiunque. Bitwarden offre piani Teams ed Enterprise per le aziende così puoi condividere le password in modo sicuro con i tuoi colleghi. Perché Scegliere Bitwarden: -Criptografia Di Livello Mondiale -Le password sono protette con criptografia end-to-end avanzata (AES-256 bit, salted hashing, e PBKDF2 SHA-256) per tenere i tuoi dati al sicuro e privati. +Crittografia Di Livello Mondiale +Le password sono protette con crittografia end-to-end avanzata (AES-256 bit, salted hashing, e PBKDF2 SHA-256) per tenere i tuoi dati al sicuro e privati. Generatore Di Password Integrato Genera password forti, uniche e casuali in base ai requisiti di sicurezza per ogni sito web che frequenti. From 2e5fb414b53fc7ebcb0faf4ed689564a38758ab8 Mon Sep 17 00:00:00 2001 From: aj-rosado <109146700+aj-rosado@users.noreply.github.com> Date: Thu, 26 Oct 2023 13:58:07 +0100 Subject: [PATCH 19/23] [PM-1835] Add ForwardEmail alias to Username Generator (#2803) * Add ForwardEmail alias to Username Generator * remove unnecessary initializer * Corrected order of alias Generators * PM-4307 - Trigger ForwardEmailDomainName PropertyChanged after initialization --- src/App/Pages/Generator/GeneratorPage.xaml | 9 ++++ .../Pages/Generator/GeneratorPageViewModel.cs | 27 ++++++++++ src/App/Resources/AppResources.Designer.cs | 9 ++++ src/App/Resources/AppResources.resx | 4 ++ src/Core/Enums/ForwardedEmailServiceType.cs | 2 + .../Domain/UsernameGenerationOptions.cs | 8 +++ .../EmailForwarders/ForwardEmailForwarder.cs | 52 +++++++++++++++++++ .../Services/UsernameGenerationService.cs | 7 +++ 8 files changed, 118 insertions(+) create mode 100644 src/Core/Services/EmailForwarders/ForwardEmailForwarder.cs diff --git a/src/App/Pages/Generator/GeneratorPage.xaml b/src/App/Pages/Generator/GeneratorPage.xaml index 73bc146ca..a9f27574e 100644 --- a/src/App/Pages/Generator/GeneratorPage.xaml +++ b/src/App/Pages/Generator/GeneratorPage.xaml @@ -278,6 +278,15 @@ Text="{Binding AddyIoDomainName}" StyleClass="box-value" AutomationId="AnonAddyDomainNameEntry" /> + + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/Core/Enums/ForwardedEmailServiceType.cs b/src/Core/Enums/ForwardedEmailServiceType.cs index b969e207d..8d73ed03e 100644 --- a/src/Core/Enums/ForwardedEmailServiceType.cs +++ b/src/Core/Enums/ForwardedEmailServiceType.cs @@ -15,5 +15,7 @@ namespace Bit.Core.Enums DuckDuckGo = 3, [LocalizableEnum("Fastmail")] Fastmail = 4, + [LocalizableEnum("ForwardEmail")] + ForwardEmail = 5, } } diff --git a/src/Core/Models/Domain/UsernameGenerationOptions.cs b/src/Core/Models/Domain/UsernameGenerationOptions.cs index deb98521d..554783b66 100644 --- a/src/Core/Models/Domain/UsernameGenerationOptions.cs +++ b/src/Core/Models/Domain/UsernameGenerationOptions.cs @@ -24,6 +24,8 @@ namespace Bit.Core.Models.Domain public string FastMailApiKey { get; set; } public string AnonAddyApiAccessToken { get; set; } public string AnonAddyDomainName { get; set; } + public string ForwardEmailApiAccessToken { get; set; } + public string ForwardEmailDomainName { get; set; } public string EmailWebsite { get; set; } public ForwarderOptions GetForwarderOptions() @@ -49,6 +51,12 @@ namespace Bit.Core.Models.Domain return new ForwarderOptions { ApiKey = FirefoxRelayApiAccessToken }; case ForwardedEmailServiceType.SimpleLogin: return new ForwarderOptions { ApiKey = SimpleLoginApiKey }; + case ForwardedEmailServiceType.ForwardEmail: + return new ForwardEmailForwarderOptions + { + ApiKey = ForwardEmailApiAccessToken, + DomainName = ForwardEmailDomainName + }; default: return null; } diff --git a/src/Core/Services/EmailForwarders/ForwardEmailForwarder.cs b/src/Core/Services/EmailForwarders/ForwardEmailForwarder.cs new file mode 100644 index 000000000..8f3728c07 --- /dev/null +++ b/src/Core/Services/EmailForwarders/ForwardEmailForwarder.cs @@ -0,0 +1,52 @@ +using System; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Text; +using System.Threading.Tasks; +using Bit.Core.Abstractions; +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; + +namespace Bit.Core.Services.EmailForwarders +{ + public class ForwardEmailForwarderOptions : ForwarderOptions + { + public string DomainName { get; set; } + } + + public class ForwardEmailForwarder : BaseForwarder + { + private readonly string _domain; + protected override string RequestUri => $"https://api.forwardemail.net/v1/domains/{_domain}/aliases"; + + public ForwardEmailForwarder(string domain) + { + _domain = domain; + } + + protected override bool CanGenerate(ForwardEmailForwarderOptions options) + { + return !string.IsNullOrWhiteSpace(options.ApiKey) && !string.IsNullOrWhiteSpace(options.DomainName); + } + + protected override void ConfigureHeaders(HttpRequestHeaders headers, ForwardEmailForwarderOptions options) + { + headers.Add("Authorization", $"Basic {Convert.ToBase64String(Encoding.UTF8.GetBytes(options.ApiKey + ":"))}"); + } + + protected override Task GetContentAsync(IApiService apiService, ForwardEmailForwarderOptions options) + { + return Task.FromResult(new StringContent( + JsonConvert.SerializeObject( + new + { + description = "Generated by Bitwarden." + }), Encoding.UTF8, "application/json")); + } + + protected override string HandleResponse(JObject result) + { + return $"{result["name"]}@{result["domain"]?["name"] ?? _domain}"; + } + } +} diff --git a/src/Core/Services/UsernameGenerationService.cs b/src/Core/Services/UsernameGenerationService.cs index 9ec9fa215..5789dac5c 100644 --- a/src/Core/Services/UsernameGenerationService.cs +++ b/src/Core/Services/UsernameGenerationService.cs @@ -141,6 +141,13 @@ namespace Bit.Core.Services .GenerateAsync(_apiService, (AnonAddyForwarderOptions)options.GetForwarderOptions()); } + if (options.ServiceType == ForwardedEmailServiceType.ForwardEmail) + { + var forwardedEmailOptions = (ForwardEmailForwarderOptions)options.GetForwarderOptions(); + return await new ForwardEmailForwarder(forwardedEmailOptions.DomainName) + .GenerateAsync(_apiService, forwardedEmailOptions); + } + BaseForwarder simpleForwarder = null; switch (options.ServiceType) From 12c72b28338c5b8cfde74f6ce7b1d98c21ca082a Mon Sep 17 00:00:00 2001 From: Jake Fink Date: Fri, 27 Oct 2023 12:19:41 -0400 Subject: [PATCH 20/23] migrate old enc key (#2732) --- src/Core/Services/CryptoService.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Core/Services/CryptoService.cs b/src/Core/Services/CryptoService.cs index 15f8d893c..7388f8e9a 100644 --- a/src/Core/Services/CryptoService.cs +++ b/src/Core/Services/CryptoService.cs @@ -1088,6 +1088,12 @@ namespace Bit.Core.Services { await _stateService.SetUserKeyBiometricUnlockAsync(userKey, userId); } + // Clear old enc key only if we don't need to still migrate PIN + if (await _stateService.GetPinProtectedAsync() == null + && await _stateService.GetPinProtectedKeyAsync() == null) + { + await _stateService.SetEncKeyEncryptedAsync(null, userId); + } await _stateService.SetKeyEncryptedAsync(null, userId); // Set encrypted user key just in case the user locks without syncing From bd2481b3e445c9160b5801a672d362fd1f4e497e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 08:21:49 +0000 Subject: [PATCH 21/23] Autosync the updated translations (#2840) Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com> --- src/App/Resources/AppResources.af.resx | 4 +++ src/App/Resources/AppResources.ar.resx | 4 +++ src/App/Resources/AppResources.az.resx | 4 +++ src/App/Resources/AppResources.be.resx | 4 +++ src/App/Resources/AppResources.bg.resx | 4 +++ src/App/Resources/AppResources.bn.resx | 4 +++ src/App/Resources/AppResources.bs.resx | 4 +++ src/App/Resources/AppResources.ca.resx | 4 +++ src/App/Resources/AppResources.cs.resx | 4 +++ src/App/Resources/AppResources.cy.resx | 4 +++ src/App/Resources/AppResources.da.resx | 4 +++ src/App/Resources/AppResources.de.resx | 4 +++ src/App/Resources/AppResources.el.resx | 4 +++ src/App/Resources/AppResources.en-GB.resx | 4 +++ src/App/Resources/AppResources.en-IN.resx | 4 +++ src/App/Resources/AppResources.es.resx | 4 +++ src/App/Resources/AppResources.et.resx | 4 +++ src/App/Resources/AppResources.eu.resx | 4 +++ src/App/Resources/AppResources.fa.resx | 4 +++ src/App/Resources/AppResources.fi.resx | 4 +++ src/App/Resources/AppResources.fil.resx | 4 +++ src/App/Resources/AppResources.fr.resx | 4 +++ src/App/Resources/AppResources.gl.resx | 4 +++ src/App/Resources/AppResources.he.resx | 4 +++ src/App/Resources/AppResources.hi.resx | 4 +++ src/App/Resources/AppResources.hr.resx | 4 +++ src/App/Resources/AppResources.hu.resx | 4 +++ src/App/Resources/AppResources.id.resx | 4 +++ src/App/Resources/AppResources.it.resx | 4 +++ src/App/Resources/AppResources.ja.resx | 4 +++ src/App/Resources/AppResources.ka.resx | 4 +++ src/App/Resources/AppResources.kn.resx | 4 +++ src/App/Resources/AppResources.ko.resx | 4 +++ src/App/Resources/AppResources.lt.resx | 4 +++ src/App/Resources/AppResources.lv.resx | 4 +++ src/App/Resources/AppResources.ml.resx | 4 +++ src/App/Resources/AppResources.mr.resx | 4 +++ src/App/Resources/AppResources.my.resx | 4 +++ src/App/Resources/AppResources.nb.resx | 4 +++ src/App/Resources/AppResources.ne.resx | 4 +++ src/App/Resources/AppResources.nl.resx | 4 +++ src/App/Resources/AppResources.nn.resx | 4 +++ src/App/Resources/AppResources.or.resx | 4 +++ src/App/Resources/AppResources.pl.resx | 4 +++ src/App/Resources/AppResources.pt-BR.resx | 4 +++ src/App/Resources/AppResources.pt-PT.resx | 4 +++ src/App/Resources/AppResources.ro.resx | 4 +++ src/App/Resources/AppResources.ru.resx | 4 +++ src/App/Resources/AppResources.si.resx | 4 +++ src/App/Resources/AppResources.sk.resx | 4 +++ src/App/Resources/AppResources.sl.resx | 4 +++ src/App/Resources/AppResources.sr.resx | 4 +++ src/App/Resources/AppResources.sv.resx | 4 +++ src/App/Resources/AppResources.ta.resx | 4 +++ src/App/Resources/AppResources.te.resx | 4 +++ src/App/Resources/AppResources.th.resx | 4 +++ src/App/Resources/AppResources.tr.resx | 4 +++ src/App/Resources/AppResources.uk.resx | 4 +++ src/App/Resources/AppResources.vi.resx | 4 +++ src/App/Resources/AppResources.zh-Hans.resx | 36 ++++++++++--------- src/App/Resources/AppResources.zh-Hant.resx | 4 +++ .../zh-Hans.lproj/Localizable.strings | 2 +- 62 files changed, 261 insertions(+), 17 deletions(-) diff --git a/src/App/Resources/AppResources.af.resx b/src/App/Resources/AppResources.af.resx index b16ff6bd6..95b793e58 100644 --- a/src/App/Resources/AppResources.af.resx +++ b/src/App/Resources/AppResources.af.resx @@ -2424,6 +2424,10 @@ kies u Voeg TOTP toe om die sleutel veilig te bewaar Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API-toegangsteken diff --git a/src/App/Resources/AppResources.ar.resx b/src/App/Resources/AppResources.ar.resx index 23fe154f6..3cfc5ce9a 100644 --- a/src/App/Resources/AppResources.ar.resx +++ b/src/App/Resources/AppResources.ar.resx @@ -2425,6 +2425,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + رمز الوصول API diff --git a/src/App/Resources/AppResources.az.resx b/src/App/Resources/AppResources.az.resx index 76313e443..f84632239 100644 --- a/src/App/Resources/AppResources.az.resx +++ b/src/App/Resources/AppResources.az.resx @@ -2423,6 +2423,10 @@ Skan prosesi avtomatik baş tutacaq. Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API müraciət tokeni diff --git a/src/App/Resources/AppResources.be.resx b/src/App/Resources/AppResources.be.resx index 0d5a9afc8..7d7b8f48c 100644 --- a/src/App/Resources/AppResources.be.resx +++ b/src/App/Resources/AppResources.be.resx @@ -2424,6 +2424,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Токен доступу да API diff --git a/src/App/Resources/AppResources.bg.resx b/src/App/Resources/AppResources.bg.resx index 2fe1e2163..d49909532 100644 --- a/src/App/Resources/AppResources.bg.resx +++ b/src/App/Resources/AppResources.bg.resx @@ -2424,6 +2424,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Идентификатор за достъп до API diff --git a/src/App/Resources/AppResources.bn.resx b/src/App/Resources/AppResources.bn.resx index 1f57c336d..20a646a97 100644 --- a/src/App/Resources/AppResources.bn.resx +++ b/src/App/Resources/AppResources.bn.resx @@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.bs.resx b/src/App/Resources/AppResources.bs.resx index 532df58fe..91c492d93 100644 --- a/src/App/Resources/AppResources.bs.resx +++ b/src/App/Resources/AppResources.bs.resx @@ -2423,6 +2423,10 @@ Skeniranje će biti izvršeno automatski. Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.ca.resx b/src/App/Resources/AppResources.ca.resx index df24015ea..4c83ca308 100644 --- a/src/App/Resources/AppResources.ca.resx +++ b/src/App/Resources/AppResources.ca.resx @@ -2424,6 +2424,10 @@ seleccioneu Afegeix TOTP per emmagatzemar la clau de manera segura Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Token d'accés a l'API diff --git a/src/App/Resources/AppResources.cs.resx b/src/App/Resources/AppResources.cs.resx index 647c6afd3..4c31da697 100644 --- a/src/App/Resources/AppResources.cs.resx +++ b/src/App/Resources/AppResources.cs.resx @@ -2423,6 +2423,10 @@ Načtení proběhne automaticky. Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Přístupový token API diff --git a/src/App/Resources/AppResources.cy.resx b/src/App/Resources/AppResources.cy.resx index 75b4293f4..8397e7476 100644 --- a/src/App/Resources/AppResources.cy.resx +++ b/src/App/Resources/AppResources.cy.resx @@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.da.resx b/src/App/Resources/AppResources.da.resx index 06611612c..431c53d91 100644 --- a/src/App/Resources/AppResources.da.resx +++ b/src/App/Resources/AppResources.da.resx @@ -2424,6 +2424,10 @@ vælg Tilføj TOTP for at gemme nøglen sikkert Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API-adgangstoken diff --git a/src/App/Resources/AppResources.de.resx b/src/App/Resources/AppResources.de.resx index ca4d93463..f524463f6 100644 --- a/src/App/Resources/AppResources.de.resx +++ b/src/App/Resources/AppResources.de.resx @@ -2423,6 +2423,10 @@ Das Scannen erfolgt automatisch. Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API-Zugriffstoken diff --git a/src/App/Resources/AppResources.el.resx b/src/App/Resources/AppResources.el.resx index fcab0794e..e47fec6f0 100644 --- a/src/App/Resources/AppResources.el.resx +++ b/src/App/Resources/AppResources.el.resx @@ -2424,6 +2424,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API Access Token diff --git a/src/App/Resources/AppResources.en-GB.resx b/src/App/Resources/AppResources.en-GB.resx index 4733a1102..49ffeba91 100644 --- a/src/App/Resources/AppResources.en-GB.resx +++ b/src/App/Resources/AppResources.en-GB.resx @@ -2424,6 +2424,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.en-IN.resx b/src/App/Resources/AppResources.en-IN.resx index c95bed197..a978e32ce 100644 --- a/src/App/Resources/AppResources.en-IN.resx +++ b/src/App/Resources/AppResources.en-IN.resx @@ -2438,6 +2438,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.es.resx b/src/App/Resources/AppResources.es.resx index adda62f6d..184c83cf2 100644 --- a/src/App/Resources/AppResources.es.resx +++ b/src/App/Resources/AppResources.es.resx @@ -2425,6 +2425,10 @@ seleccione Agregar TOTP para almacenar la clave de forma segura Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Token de acceso API diff --git a/src/App/Resources/AppResources.et.resx b/src/App/Resources/AppResources.et.resx index 7dabdcb09..df4574642 100644 --- a/src/App/Resources/AppResources.et.resx +++ b/src/App/Resources/AppResources.et.resx @@ -2424,6 +2424,10 @@ Skaneerimine toimub automaatselt. Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API ligipääsu võti diff --git a/src/App/Resources/AppResources.eu.resx b/src/App/Resources/AppResources.eu.resx index 960eaf616..fd897dafe 100644 --- a/src/App/Resources/AppResources.eu.resx +++ b/src/App/Resources/AppResources.eu.resx @@ -2423,6 +2423,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Token sarbide API-a diff --git a/src/App/Resources/AppResources.fa.resx b/src/App/Resources/AppResources.fa.resx index 09b0481da..f3cb074fe 100644 --- a/src/App/Resources/AppResources.fa.resx +++ b/src/App/Resources/AppResources.fa.resx @@ -2425,6 +2425,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + توکن دسترسی API diff --git a/src/App/Resources/AppResources.fi.resx b/src/App/Resources/AppResources.fi.resx index 57bcf7d25..31ebaaca6 100644 --- a/src/App/Resources/AppResources.fi.resx +++ b/src/App/Resources/AppResources.fi.resx @@ -2425,6 +2425,10 @@ turvallisesti valitsemalla "Lisää TOTP" Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API-käyttötunniste diff --git a/src/App/Resources/AppResources.fil.resx b/src/App/Resources/AppResources.fil.resx index 1944f19dd..57ea2bfb9 100644 --- a/src/App/Resources/AppResources.fil.resx +++ b/src/App/Resources/AppResources.fil.resx @@ -2425,6 +2425,10 @@ pindutin ang Magdagdag ng TOTP para ligtas na mai-store ang key Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Token pang-access sa API diff --git a/src/App/Resources/AppResources.fr.resx b/src/App/Resources/AppResources.fr.resx index c558e503e..22b52c9dd 100644 --- a/src/App/Resources/AppResources.fr.resx +++ b/src/App/Resources/AppResources.fr.resx @@ -2425,6 +2425,10 @@ sélectionnez Ajouter TOTP pour stocker la clé en toute sécurité Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Jeton d'accès API diff --git a/src/App/Resources/AppResources.gl.resx b/src/App/Resources/AppResources.gl.resx index dbfdcb5c5..7d8f4f604 100644 --- a/src/App/Resources/AppResources.gl.resx +++ b/src/App/Resources/AppResources.gl.resx @@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.he.resx b/src/App/Resources/AppResources.he.resx index e53e9b513..04425eda2 100644 --- a/src/App/Resources/AppResources.he.resx +++ b/src/App/Resources/AppResources.he.resx @@ -2427,6 +2427,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.hi.resx b/src/App/Resources/AppResources.hi.resx index e1f4cf87c..318524e40 100644 --- a/src/App/Resources/AppResources.hi.resx +++ b/src/App/Resources/AppResources.hi.resx @@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely फास्टमेल "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + एपीआई एक्सेस टोकन diff --git a/src/App/Resources/AppResources.hr.resx b/src/App/Resources/AppResources.hr.resx index bea9fcdbf..81d4e1e0e 100644 --- a/src/App/Resources/AppResources.hr.resx +++ b/src/App/Resources/AppResources.hr.resx @@ -2422,6 +2422,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Token za API pristup diff --git a/src/App/Resources/AppResources.hu.resx b/src/App/Resources/AppResources.hu.resx index 4fb622a7c..ad4953e3a 100644 --- a/src/App/Resources/AppResources.hu.resx +++ b/src/App/Resources/AppResources.hu.resx @@ -2423,6 +2423,10 @@ TOTP hozzáadása a kulcs biztonságos tárolásához lehetőséget. FastMail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API hozzáférési vezérjel diff --git a/src/App/Resources/AppResources.id.resx b/src/App/Resources/AppResources.id.resx index f178567e7..86aa13b48 100644 --- a/src/App/Resources/AppResources.id.resx +++ b/src/App/Resources/AppResources.id.resx @@ -2424,6 +2424,10 @@ pilih Tambahkan TOTP untuk menyimpan kunci dengan aman Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.it.resx b/src/App/Resources/AppResources.it.resx index 72eb8581f..e567f1240 100644 --- a/src/App/Resources/AppResources.it.resx +++ b/src/App/Resources/AppResources.it.resx @@ -2424,6 +2424,10 @@ clicca Aggiungi TOTP per salvare la chiave in modo sicuro Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Token di accesso API diff --git a/src/App/Resources/AppResources.ja.resx b/src/App/Resources/AppResources.ja.resx index a73571cf0..d681f83c4 100644 --- a/src/App/Resources/AppResources.ja.resx +++ b/src/App/Resources/AppResources.ja.resx @@ -2424,6 +2424,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API アクセストークン diff --git a/src/App/Resources/AppResources.ka.resx b/src/App/Resources/AppResources.ka.resx index dbfdcb5c5..7d8f4f604 100644 --- a/src/App/Resources/AppResources.ka.resx +++ b/src/App/Resources/AppResources.ka.resx @@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.kn.resx b/src/App/Resources/AppResources.kn.resx index 5efda2546..75d4ba7f2 100644 --- a/src/App/Resources/AppResources.kn.resx +++ b/src/App/Resources/AppResources.kn.resx @@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.ko.resx b/src/App/Resources/AppResources.ko.resx index 25ac20449..244a14aa6 100644 --- a/src/App/Resources/AppResources.ko.resx +++ b/src/App/Resources/AppResources.ko.resx @@ -2424,6 +2424,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API 액세스 토큰 diff --git a/src/App/Resources/AppResources.lt.resx b/src/App/Resources/AppResources.lt.resx index 38d9b1dc0..d32abcbe7 100644 --- a/src/App/Resources/AppResources.lt.resx +++ b/src/App/Resources/AppResources.lt.resx @@ -2425,6 +2425,10 @@ pasirinkite Pridėti TOTP, kad raktas būtų saugiai išsaugotas Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API prieigos raktas diff --git a/src/App/Resources/AppResources.lv.resx b/src/App/Resources/AppResources.lv.resx index 86d685eba..6fc72ee3a 100644 --- a/src/App/Resources/AppResources.lv.resx +++ b/src/App/Resources/AppResources.lv.resx @@ -2425,6 +2425,10 @@ jāizvēlas "Pievienot TOTP", lai droši glabātu atslēgu. Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API piekļuves pilnvara diff --git a/src/App/Resources/AppResources.ml.resx b/src/App/Resources/AppResources.ml.resx index 71385147c..7e24023e3 100644 --- a/src/App/Resources/AppResources.ml.resx +++ b/src/App/Resources/AppResources.ml.resx @@ -2424,6 +2424,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.mr.resx b/src/App/Resources/AppResources.mr.resx index 57bb41939..68120201f 100644 --- a/src/App/Resources/AppResources.mr.resx +++ b/src/App/Resources/AppResources.mr.resx @@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.my.resx b/src/App/Resources/AppResources.my.resx index dbfdcb5c5..7d8f4f604 100644 --- a/src/App/Resources/AppResources.my.resx +++ b/src/App/Resources/AppResources.my.resx @@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.nb.resx b/src/App/Resources/AppResources.nb.resx index 92e530c8d..8d71764e3 100644 --- a/src/App/Resources/AppResources.nb.resx +++ b/src/App/Resources/AppResources.nb.resx @@ -2425,6 +2425,10 @@ velg Legg til TOTP for å lagre nøkkelen sikkert Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API tilgangstoken diff --git a/src/App/Resources/AppResources.ne.resx b/src/App/Resources/AppResources.ne.resx index dbfdcb5c5..7d8f4f604 100644 --- a/src/App/Resources/AppResources.ne.resx +++ b/src/App/Resources/AppResources.ne.resx @@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.nl.resx b/src/App/Resources/AppResources.nl.resx index edf9f2b1e..5c37b5c42 100644 --- a/src/App/Resources/AppResources.nl.resx +++ b/src/App/Resources/AppResources.nl.resx @@ -2424,6 +2424,10 @@ kies je TOTP toevoegen om de sleutel veilig op te slaan Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API-toegangstoken diff --git a/src/App/Resources/AppResources.nn.resx b/src/App/Resources/AppResources.nn.resx index d5160a69c..844feef17 100644 --- a/src/App/Resources/AppResources.nn.resx +++ b/src/App/Resources/AppResources.nn.resx @@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.or.resx b/src/App/Resources/AppResources.or.resx index ed2128536..7acd8cda4 100644 --- a/src/App/Resources/AppResources.or.resx +++ b/src/App/Resources/AppResources.or.resx @@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.pl.resx b/src/App/Resources/AppResources.pl.resx index 42ebc81ab..5a8e0d177 100644 --- a/src/App/Resources/AppResources.pl.resx +++ b/src/App/Resources/AppResources.pl.resx @@ -2424,6 +2424,10 @@ wybierz Dodaj TOTP, aby bezpiecznie przechowywać klucz Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Token dostępu API diff --git a/src/App/Resources/AppResources.pt-BR.resx b/src/App/Resources/AppResources.pt-BR.resx index f0e7ade53..4d57edd93 100644 --- a/src/App/Resources/AppResources.pt-BR.resx +++ b/src/App/Resources/AppResources.pt-BR.resx @@ -2425,6 +2425,10 @@ selecione Adicionar TOTP para armazenar a chave de forma segura Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Token de Acesso à API diff --git a/src/App/Resources/AppResources.pt-PT.resx b/src/App/Resources/AppResources.pt-PT.resx index 91ca285ac..67f1427a9 100644 --- a/src/App/Resources/AppResources.pt-PT.resx +++ b/src/App/Resources/AppResources.pt-PT.resx @@ -2423,6 +2423,10 @@ A leitura será efetuada automaticamente. Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Token de acesso à API diff --git a/src/App/Resources/AppResources.ro.resx b/src/App/Resources/AppResources.ro.resx index 771bc72e7..7c073f896 100644 --- a/src/App/Resources/AppResources.ro.resx +++ b/src/App/Resources/AppResources.ro.resx @@ -2424,6 +2424,10 @@ selectați „Adăugare TOTP” pentru a stoca cheia în siguranță FastMail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Token de acces API diff --git a/src/App/Resources/AppResources.ru.resx b/src/App/Resources/AppResources.ru.resx index b30e5f05f..a8e62b7e2 100644 --- a/src/App/Resources/AppResources.ru.resx +++ b/src/App/Resources/AppResources.ru.resx @@ -2424,6 +2424,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Токен доступа к API diff --git a/src/App/Resources/AppResources.si.resx b/src/App/Resources/AppResources.si.resx index 816cc091c..506d7898e 100644 --- a/src/App/Resources/AppResources.si.resx +++ b/src/App/Resources/AppResources.si.resx @@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.sk.resx b/src/App/Resources/AppResources.sk.resx index dcc0883c8..ad384c871 100644 --- a/src/App/Resources/AppResources.sk.resx +++ b/src/App/Resources/AppResources.sk.resx @@ -2424,6 +2424,10 @@ Pridať TOTP, aby ste kľúč bezpečne uložili Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Prístupový token API diff --git a/src/App/Resources/AppResources.sl.resx b/src/App/Resources/AppResources.sl.resx index 3dfaa7afc..e28485b6a 100644 --- a/src/App/Resources/AppResources.sl.resx +++ b/src/App/Resources/AppResources.sl.resx @@ -2424,6 +2424,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.sr.resx b/src/App/Resources/AppResources.sr.resx index e73d34292..beda3b812 100644 --- a/src/App/Resources/AppResources.sr.resx +++ b/src/App/Resources/AppResources.sr.resx @@ -2426,6 +2426,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Приступни АПИ токен diff --git a/src/App/Resources/AppResources.sv.resx b/src/App/Resources/AppResources.sv.resx index f73898ef6..e0ab3754d 100644 --- a/src/App/Resources/AppResources.sv.resx +++ b/src/App/Resources/AppResources.sv.resx @@ -2426,6 +2426,10 @@ välj Lägg till TOTP för att lagra nyckeln på ett säkert sätt Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API-åtkomsttoken diff --git a/src/App/Resources/AppResources.ta.resx b/src/App/Resources/AppResources.ta.resx index 6e332dd32..b4a046e36 100644 --- a/src/App/Resources/AppResources.ta.resx +++ b/src/App/Resources/AppResources.ta.resx @@ -2425,6 +2425,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API அணுகல் கிள்ளாக்கு diff --git a/src/App/Resources/AppResources.te.resx b/src/App/Resources/AppResources.te.resx index dbfdcb5c5..7d8f4f604 100644 --- a/src/App/Resources/AppResources.te.resx +++ b/src/App/Resources/AppResources.te.resx @@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.th.resx b/src/App/Resources/AppResources.th.resx index c28bb2a44..a25aa4f63 100644 --- a/src/App/Resources/AppResources.th.resx +++ b/src/App/Resources/AppResources.th.resx @@ -2432,6 +2432,10 @@ select Add TOTP to store the key safely Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API access token diff --git a/src/App/Resources/AppResources.tr.resx b/src/App/Resources/AppResources.tr.resx index 48fb7378a..36c114d8d 100644 --- a/src/App/Resources/AppResources.tr.resx +++ b/src/App/Resources/AppResources.tr.resx @@ -2423,6 +2423,10 @@ Kod otomatik olarak taranacaktır. Fastmail "Fastmail" is the product name and should not be translated. + + E-posta ilet + "ForwardEmail" is the product name and should not be translated. + API erişim token'ı diff --git a/src/App/Resources/AppResources.uk.resx b/src/App/Resources/AppResources.uk.resx index ab8e09639..aba606066 100644 --- a/src/App/Resources/AppResources.uk.resx +++ b/src/App/Resources/AppResources.uk.resx @@ -2424,6 +2424,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Токен доступу до API diff --git a/src/App/Resources/AppResources.vi.resx b/src/App/Resources/AppResources.vi.resx index 0942a706b..bb5a2ea0b 100644 --- a/src/App/Resources/AppResources.vi.resx +++ b/src/App/Resources/AppResources.vi.resx @@ -2425,6 +2425,10 @@ chọn Thêm TOTP để lưu khóa an toàn Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + Khoá truy cập API diff --git a/src/App/Resources/AppResources.zh-Hans.resx b/src/App/Resources/AppResources.zh-Hans.resx index d694047d9..311bba392 100644 --- a/src/App/Resources/AppResources.zh-Hans.resx +++ b/src/App/Resources/AppResources.zh-Hans.resx @@ -721,7 +721,7 @@ Bitwarden 网页版密码库 - 丢失了验证器应用? + 丢失了验证器 App? 项目 @@ -806,11 +806,11 @@ Message shown when trying to launch an app that does not exist on the user's device. - 验证器应用 + 验证器 App For 2FA - 请输入您的验证器应用中的 6 位数验证码。 + 请输入您的验证器 App 中的 6 位数验证码。 For 2FA @@ -822,7 +822,7 @@ For 2FA whenever there are no available providers on this device. - 此账户已设置两步登录,但此设备不支持任何已配置的两步提供程序。请使用受支持的设备和/或添加其他跨设备支持的提供程序(例如验证器应用)。 + 此账户已设置两步登录,但此设备不支持任何已配置的两步提供程序。请使用受支持的设备和/或添加能更好支持跨设备使用的其他提供程序(例如验证器 App) 恢复代码 @@ -851,7 +851,7 @@ For 2FA - 要继续,请将您的 YubiKey 靠在设备背面或者将 YubiKey 插入您设备的 USB 端口,然后按下按钮。 + 要继续,请将您的 YubiKey NEO 靠在设备背面或者将 YubiKey 插入设备的 USB 端口,然后触摸其按钮。 YubiKey 安全钥匙 @@ -1131,13 +1131,13 @@ 地址 - 过期日 + 有效期 显示网站图标 - 在每个登录旁显示一个可识别的图像。 + 在每个登录项目旁边显示一个可识别的图像。 图标服务器 URL @@ -1269,7 +1269,7 @@ 再试一次 - 要继续,请将您的 YubiKey 靠在设备背面。 + 要继续,请将您的 YubiKey NEO 靠在设备背面。 当应用程序不支持标准的自动填充服务时,无障碍服务可能会很有用。 @@ -1458,7 +1458,7 @@ A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. - 您的账户的指纹短语 + 您的账户指纹短语 A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing. @@ -1795,7 +1795,7 @@ 无效的密码 - 密码不符合组织要求。请检查策略信息并重试。 + 密码不符合组织要求。请检查策略信息然后重试。 载入中 @@ -2354,7 +2354,7 @@ 批准登录请求 - 使用此设备批准其他设备的登录请求 + 使用此设备批准来自其他设备的登录请求 允许通知 @@ -2424,6 +2424,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API 访问令牌 @@ -2455,7 +2459,7 @@ 随机 - 连接到手表 + 连接到 Watch 无障碍服务声明 @@ -2493,7 +2497,7 @@ 使用主密码登录 - 使用设备登录 + 使用其他设备登录 登录已发起 @@ -2643,7 +2647,7 @@ 通行密钥 - 应用 + 应用程序 您不能编辑通行密钥应用程序,因为这会使通行密钥失效 @@ -2655,7 +2659,7 @@ 通行密钥将不会被复制到克隆的项目。要继续克隆这个项目吗? - 复制应用 + 复制应用程序 可用于两步登录 @@ -2820,7 +2824,7 @@ 接下来前往 App Store 吗? - 在 Bitwarden 网页应用中设置两步登录,可以使您的账户更加安全。 + 通过在 Bitwarden 网页应用中设置两步登录,可以使您的账户更加安全。 您可以在 Bitwarden 网页应用上更改您的主密码。 diff --git a/src/App/Resources/AppResources.zh-Hant.resx b/src/App/Resources/AppResources.zh-Hant.resx index 4bef50c8f..25fc29b9d 100644 --- a/src/App/Resources/AppResources.zh-Hant.resx +++ b/src/App/Resources/AppResources.zh-Hant.resx @@ -2424,6 +2424,10 @@ Fastmail "Fastmail" is the product name and should not be translated. + + ForwardEmail + "ForwardEmail" is the product name and should not be translated. + API 存取權杖 diff --git a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/zh-Hans.lproj/Localizable.strings b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/zh-Hans.lproj/Localizable.strings index 80f53506e..269ba1799 100644 --- a/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/zh-Hans.lproj/Localizable.strings +++ b/src/watchOS/bitwarden/bitwarden WatchKit Extension/Localization/zh-Hans.lproj/Localizable.strings @@ -7,4 +7,4 @@ "SetUpBitwardenToViewItemsContainingVerificationCodes" = "设置 Bitwarden 以查看包含验证码的项目"; "Search" = "搜索"; "NoItemsFound" = "未找到任何条目"; -"SetUpAppleWatchPasscodeInOrderToUseBitwarden" = "设置 Apple Watch 密码以使用 Bitwarden"; +"SetUpAppleWatchPasscodeInOrderToUseBitwarden" = "设置 Apple Watch 通行代码以使用 Bitwarden"; From 02b02657672008cc15a555bf29d2d406f3b533f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 11:07:07 -0400 Subject: [PATCH 22/23] Bumped version to 2023.10.0 (#2847) Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com> --- src/Android/Properties/AndroidManifest.xml | 2 +- src/iOS.Autofill/Info.plist | 2 +- src/iOS.Extension/Info.plist | 2 +- src/iOS.ShareExtension/Info.plist | 2 +- src/iOS/Info.plist | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Android/Properties/AndroidManifest.xml b/src/Android/Properties/AndroidManifest.xml index a9cfa4b2a..7fa1a5659 100644 --- a/src/Android/Properties/AndroidManifest.xml +++ b/src/Android/Properties/AndroidManifest.xml @@ -1,5 +1,5 @@  - + diff --git a/src/iOS.Autofill/Info.plist b/src/iOS.Autofill/Info.plist index 8ab1fbee0..aa62420cd 100644 --- a/src/iOS.Autofill/Info.plist +++ b/src/iOS.Autofill/Info.plist @@ -11,7 +11,7 @@ CFBundleIdentifier com.8bit.bitwarden.autofill CFBundleShortVersionString - 2023.9.3 + 2023.10.0 CFBundleVersion 1 CFBundleLocalizations diff --git a/src/iOS.Extension/Info.plist b/src/iOS.Extension/Info.plist index b6943cb8b..20522c680 100644 --- a/src/iOS.Extension/Info.plist +++ b/src/iOS.Extension/Info.plist @@ -11,7 +11,7 @@ CFBundleIdentifier com.8bit.bitwarden.find-login-action-extension CFBundleShortVersionString - 2023.9.3 + 2023.10.0 CFBundleLocalizations en diff --git a/src/iOS.ShareExtension/Info.plist b/src/iOS.ShareExtension/Info.plist index 1f2e6abfe..a5f2aad74 100644 --- a/src/iOS.ShareExtension/Info.plist +++ b/src/iOS.ShareExtension/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2023.9.3 + 2023.10.0 CFBundleVersion 1 MinimumOSVersion diff --git a/src/iOS/Info.plist b/src/iOS/Info.plist index a9a4479dc..322cf550c 100644 --- a/src/iOS/Info.plist +++ b/src/iOS/Info.plist @@ -11,7 +11,7 @@ CFBundleIdentifier com.8bit.bitwarden CFBundleShortVersionString - 2023.9.3 + 2023.10.0 CFBundleVersion 1 CFBundleIconName From 658c1eaf6471c0386e7ae75241332f43bed876a6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 14:07:28 -0400 Subject: [PATCH 23/23] Bumped version to 2023.10.1 (#2849) Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com> --- src/Android/Properties/AndroidManifest.xml | 2 +- src/iOS.Autofill/Info.plist | 2 +- src/iOS.Extension/Info.plist | 2 +- src/iOS.ShareExtension/Info.plist | 2 +- src/iOS/Info.plist | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Android/Properties/AndroidManifest.xml b/src/Android/Properties/AndroidManifest.xml index 7fa1a5659..22d585242 100644 --- a/src/Android/Properties/AndroidManifest.xml +++ b/src/Android/Properties/AndroidManifest.xml @@ -1,5 +1,5 @@  - + diff --git a/src/iOS.Autofill/Info.plist b/src/iOS.Autofill/Info.plist index aa62420cd..adc196ea8 100644 --- a/src/iOS.Autofill/Info.plist +++ b/src/iOS.Autofill/Info.plist @@ -11,7 +11,7 @@ CFBundleIdentifier com.8bit.bitwarden.autofill CFBundleShortVersionString - 2023.10.0 + 2023.10.1 CFBundleVersion 1 CFBundleLocalizations diff --git a/src/iOS.Extension/Info.plist b/src/iOS.Extension/Info.plist index 20522c680..364d7b3d6 100644 --- a/src/iOS.Extension/Info.plist +++ b/src/iOS.Extension/Info.plist @@ -11,7 +11,7 @@ CFBundleIdentifier com.8bit.bitwarden.find-login-action-extension CFBundleShortVersionString - 2023.10.0 + 2023.10.1 CFBundleLocalizations en diff --git a/src/iOS.ShareExtension/Info.plist b/src/iOS.ShareExtension/Info.plist index a5f2aad74..95c9cfa1a 100644 --- a/src/iOS.ShareExtension/Info.plist +++ b/src/iOS.ShareExtension/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2023.10.0 + 2023.10.1 CFBundleVersion 1 MinimumOSVersion diff --git a/src/iOS/Info.plist b/src/iOS/Info.plist index 322cf550c..a04496177 100644 --- a/src/iOS/Info.plist +++ b/src/iOS/Info.plist @@ -11,7 +11,7 @@ CFBundleIdentifier com.8bit.bitwarden CFBundleShortVersionString - 2023.10.0 + 2023.10.1 CFBundleVersion 1 CFBundleIconName