1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-08 19:43:56 +00:00
Files
mobile/src/Core/Resources/Localization/AppResources.kn.resx
Federico Maccaroni 39a34bd8c4 [PM-3349] [PM-3350] MAUI Migration Initial (#2806)
* PM-3349 PM-3350 MAUI Migration Initial

* PM-3349 PM-3350 MAUI Migration fix nullable exception bindings and AsyncCommand canExecute null exception

* PM-3349 PM-3350 MAUI Migration fix nullable bindings and fallbacks

* PM-3349: Android
Added CustomTabbedPageHandler for Android to handle the tab "reselection" for PopToRoot.
Commented support for Windows in App.csproj
Disabled Interpreter on Android to avoid very slow app in Debug (during Login for example)
Added some null checks that were causing crashes (on GeneratorPageVM and PickerVM)
Minor TabsPage cleanup

* TabBarEffect removed and it's behavior is now taken care of by CustomTabbedPageHandler

* PM-3349 PM-3350 Add null checks on CipherDetailsPageVM to avoid crash opening Secure Notes.

* PM-3349 PM-3350 MAUI Migration Start iOS extensions

* Changes to solution to hopefully fix Config Mappings

* PM-3349 Removed Deploy from iOS.Autofill to allow running Android
Changed MainApplication SpecialFolder.Personal to SpecialFolder.LocalApplicationData

* PM-3350 MAUI Migration Fix iOS Autofill extension

* PM-3349 Changed UseMauiApp init so that Android Handlers still get added

* PM-3349 Implemented HybridWebViewHandler for Android which enables 2nd factor auth flows
Ensured CustomTabbedPageHandler had it's DisconnectHandler called
Some minor code upgrades of older obsolete Xamarin Forms code.

* PM-3349 Implemented HybridWebViewHandler for iOS

* hardcoded AccountViewCell Avatar image to 40x40 to avoid current iOS/Android bugs where they fill much larger space.

* PM-3349 PM-3350
Added (migrated) CustomNavigationHandler (which should partially fix the AvatarIcon in the NavBar in iOS)
Added (migrated) CustomContentPageHandler (which should mostly place the AvatarIcon in the navBar in the correct place for iOS)
Added Task.Delay (workaround) to allow the Avatar to load in iOS on the LoginPage
Added workaround for iOS bug with the toolbar size (more info in comment in AvatarImageSource.cs)
Went through the AccountViewCell MAUI-Migration comments. (and deleted/added more comments as needed)
Migrated some Device calls to DeviceInfo and MainThread
Added (migrated) CustomTabbedHandler (for managing the iOS TabBar)

* PM-3349 Replaced the FabShadowEffect with the new MAUI Shadow to fix the buggy shadows on the Android Fab Button.

* PM-3349 ToolbarHandler created for setting text on Android go back buttons.

* PM-3350 Migrated the CustomViewCellRenderer for iOS

* PM-3350 Removed ButtonHandlerMappings and some other code related with fonts as MAUI is taking care of Accessibility and no custom code should be needed
Migrated SelectableLabelRenderer to Handler
Cleaned LabelHandlerMappings and added logic to migrate the CustomLabelRenderer

* Enabled argon2Id for iOS

* PM-3349
Added Argon libraries for Android
minor change to gitignore so that the Argon x86 lib is not ignored on the Android platform

* PM-3350 Migrated some Device to DeviceInfo and added temporary workaround with some comments to be able to see the Generated Password on iOS

* PM-3350 Added some missing images in iOS

* PM-3349 PRM-3350 Replaced XZing with Camera.MAUI for QRCodes

* Checked some [MAUI-Migration] and deleted when it's working as intended.
SearchBarHandlerMapping: IME options working as intended
SliderHandlerMappings: The MAUI "replacement" for Color.Default seems to be White so the old use case doesn't seem to be needed anymore.

* PM-3350 Checked some [MAUI-Migration] and changed as needed.
TimePickerHandlerMappings: Remove old code for forcing the Wheel. After testing without it wheel picker is still used so this code shouldn't be needed anymore.
AppDelegate.ContinueUserActivity: Uncommented and changed the iOS ContinueUserActivity. It needs to call Platform.ContinueUserActivity according with Xamarin Essentials migration docs.

* PM-3349 Fixed white tint color not appearing on images added as MAU IImage SVG
PM-3349 PM-3350 Fix for Avatar text not adjusting to white/black color correctly

* PM-3350 Removed MAUI Splash Screen. Fixed iOS Privacy Screen logo (hardcoded image to avoid it getting cropped)

* PM-3350 Quick workaround to allow 2nd factor auth to not get stuck in iOS in modals.
Updated some older "Device" code to the newer MAUI code.

* PM-3350 Removed duplicate reference to LaunchScreen.storyboard

* PM-3349 PM-3350 Minor change to HomePage to set fixed Image height otherwise it takes more space than it did in the old Xamarin Forms app.
Added HIdeSoftInputOnTapped on several pages (the ones with Entry controls) to allow hiding the keyboard when tapping "outside" of it. (just like we did in Xamarin Forms app)

* PM-3350 Added Scrollview on HomePage so that the "Create account" button can be accessed in smaller devices like iPhone SE.

* PM-3349 Added Handler that enables the ExtendedDatePicker to get IsFocused events in Android. This is a workaround for fixing the current bug where it's not possible to select the "current day" in the expiration date of a Send.
Fix for TimePicker not displaying default Time Value
Updated some "Device" code to the new MAUI "DeviceInfo"

* PM-3349 PM-3350 Migrated IconLabelButton Frames to Borders to fix issue with TapGestureRecognizer in Android
Also fixed some minor "styles" for normal Button and IconLabelButton (both Android and iOS)

* PM-3349 Fix for TabGestureRecognizer not working inside the StackLayout area of IconLabelButton

* PM-3349 Fix for Android buttons having all letters in Caps

* PM-3349 PM-3350 Started using OnNavigatedTo/From instead of On(Dis)Appearing for LoginPage and LoginSSOPage to avoid the "Modal loading" issues in iOS
Also had to add IsInitialized logic to these pages because OnNavigatedTo can be called twice in some scenario.
Some minor migrations of Device to DeviceInfo was also done

* PM-3350 Fixed iOS extensions (iOS.Extension and iOS.ShareExtension)  to load and commented argon2id from debug configuration until we have the .a compiled again with the new platform/arch

* PM-3350 Added configurations for Release mode (no FDroid yet)

* PM-3349 PM-3350 Migrated remaining AutomationProperties to SemanticProperties.
All 'IsInAccessibleTree="True"' were deleted.
'IsInAccessibleTree="False"' were kept and stayed in code.

* PM-3349 PM-3350 Changed binding set for CipherViewCell so it updates accordingly

* PM-3349 PM-3350 Changed AccountViewCell and its binding to be directly against the ViewModel

* PM-3349 Fix for HTML Label on Android. Color hex doesn't need to be cropped anymore.

* PM-3350 Fix for colored html text on iOS

* PM-3349 PM-3350 Added the partial MAUI Community Toolkit implementation for TouchEffect. This is a temporary solution until they finalize this and add it to their nuget package.
This allows implementing the LongPressCommand in AccountSwitchingOverlay and also have the "Ripple effect" animation when touching an item in Android

* PM-3349 PM-3350 Changed SendViewCell and its binding to be directly against the ViewModel

* PM-3350 Fixed iOS Share extension lazy views loading and an issue with the avatar loading. Also discovered issue with TapGestureRecognizer not working on MAUI Embedding

* PM-3350 Fixed iOS Extensions navigation to several pages and improved avoiding duplicate calls to OnNavigatedTo

* PM-3350 Updated PCL Crypto to latest alpha version to fix "Dll not found NCrypt" issue

* PM-3350 Removed workaround for iOS issue with Avatar icon as it's now fixed in latest .Net8 release.

* PM-3349 PM-3350 Removed AsyncCommand "wrapper" and added AsyncRelayCommand directly in all ViewModels that were using the other one.

* PM-3350 Added watchOS app to main project and fixed some csproj conditions for runtime identifiers on iOS.

* PM-3350 Fixed/Updated all MAUI-Migration TODOs

* PM-3350 Fixed account toolbar item and TitleView on SendAddOnlyPage, also removed comments on AvatarImageSource given the workaround is not needed anymore to draw the image successfully.

* PM-3350 Updated AppCenter package to latest version 5.0.3 and updated some things into MAUI style

* PM-3350 Added workaround for iOS Avatar icon again.

* PM-3349 Added workaround for Android to avoid issues with setting MainPage when app is in background. They are now kept on a Queue to be executed after the app has resumed.
Updated some things on App.xaml.cs to the new MAUI style

* PM-3349 PM-3350 Fixed issue where creating an account with weak/exposed password would get stuck after the Captcha (if a captcha is shown)
Changed App.xaml.cs NavigateImpl to be private

* PM-3349 Started to configure build.yml for MAUI Android

* PM-3349 build.yml update paths for MAUI Android

* PM-3349 build.yml commented verify format and just set qa as variant on MAUI Android for faster checks on CI

* PM-3349 PM-3350 build.cake updated paths

* PM-3349 build.yml updated env helpers variables and set specific csproj to build on Android so not to build iOS extensions

* PM-3349 build.yml add Android "prod" variant

* PM-3350 build.yml updated iOS build and ignore Android build to try the CI faster

* PM-3350 build.yml changed nuget restore for dotnet restore on iOS build to fix issue on restoring due to msbuild

* PM-3350 build.yml Upgraded iOS build to run on macos-13 image which has XCode 15, and set the XCode 15 version as currently the default one is 14.x

* PM-3350 build.yml try to fix ILLINK warnings and changed image to be macos-13-arm64 to see if the build is faster

* PM-3350 build.yml changed image back to be macos-13 to see if the build is faster

* PM-3350 Added Document.Build.props to disable trimming on publish

* PM-3350 build.yml disable trimming on publish so it's faster

* PM-3350 added linkskip for iOS csprojs

* PM-3350 iOS projs disable linking and set Newstandkit as weak framework

* Update build.yml disabling iOS job to avoid long running process of publish until we can fix that

* PM-3349 PM-3350 Workaround to fix issues with text getting cropped/truncated when a Label has both Multiline and LinebreakMode set

* PM-3349 build.yml enabled android build workflow

* PM-3349 build.yml configured FDROID job for MAUI

* PM-3350 iOS extensions TapGestureRecognizer try Window workaround

* PM-3350 iOS applied workaround on the iOS Autofill and Share extension to maui embed the navigation page with its content page in the Window

* PM-3349 PM-3350 Added workaround for More Options to work on Search and Groupings Page
Updated some code to MAUI Style also

* PM-3349 PM-3350 Added the ability for users to press "Continue" button as a fallback when using the Yubikey if the "SubmitCommand" doesn't trigger automatically.

* PM-3349 PM-3350 Fix for text getting cut/truncated in both account switcher and ciphers/search lists
Issue is due to MAUI but can be avoided by using slightly different layout

* PM-3350 iOS updated CFBundlerShortVersionString to latest one 2023.10.1

* PM-3350 fix build.yml Bitwarden.ipa AppStore exported file

* PM-3350 build.yml added step to validate app for submitting into App Store and have better logs of it

* PM-3350 build.yml Added several fixes like not using MtouchUseLLVM on the iOS builds to fix they taking forever to build and some changes on the automation CI to do a debug build for the moment

* PM-3350 Improved MTouch linking and extra args on iOS related csprojs

* PM-3349 PM-3350 Added MAUI label on self-host settings and on about settings to differentiate from XF app

* PM-3349 PM-3350 build.yml uncommented jobs so we have a more complete workflow

* PM-3349 PM-3350 Minor change: removed unneeded HorizontalTextAlignment from Label.

* PM-3349 Replaced CrossCurrentActivity plugin with MAUI internal CurrentActivity

* PM-3350 Fix iOS extensions navigation and Window/RootViewController handling for TapGestureRecognizer to work

* PM-3350 Cleared left ClipLogger from the iOS extensions debug logging.

* PM-3349 PM-3350 Refactored cipher bindings to have a simpler approach reusing a new CipherItemViewModel to avoid unwanted issues in the app

* PM-3349 Added base structure for avoiding Android Autofill crash. This workaround works but it's not complete as it can't handle the entire workflow when showing CipherSelectionPAge (like checking if it should show LockPage)

* PM-3350 Bumped iOS version

* PM-3350 Changed linker to use default mode given that "Full" is presenting some problems as the linker is stripping things it shouldn't and we're trying to solve it. So for now we will use the mode "Link SDK assemblies only" so QA can test.

* PM-3349 Fix for app crashing on Android when Dark mode is enabled
Removed unused button style for android

* Proof of concept for having multiple window in Android for autofill support and navigating with the help of an Extended splash page.

* PM-3350 Fix crash on Release by adding Interpreter on iOS and also adding System.Security.Cryptography to be ignored by the linker

* PM-3350 Apply Cryptography TrimmerRootAssembly only to iOS

* PM-3350 Updated Plugin.Fingerprint so biometrics work

* Update .github/workflows/build.yml setup-xcode commit hash

Co-authored-by: Vince Grassia <593223+vgrassia@users.noreply.github.com>

* PM-3349 PM-3350 Enabled argon2id and fixed one issue with the Uris when getting the icon image

* PM-3349 Upgraded Android targetSdkVersion to 34

* minor change (public to private fields)

* minor improvemments on autofill-redirect

* PM-3349 Commented the Deploy step for Android job given that we're using the hotfix-rc branch for testing iOS on TestFlight

* PM-3349 Uncommented the Deploy step for Android job

* PM-3349 Ensure "_isResumed=true" is set on App.xaml.cs:Bootstrap

* Reusing App.xaml.cs Navigation for the Android RedirectPage
Some other cleanup and changes

* Improved autofill workaround to better handle switching between windows.

* PM-3349 minor fix to add space in HomePage between the region picker labels.

* Added some comments and improvemments.

* PM-3349 Added Window events unsubscription of events. Also changed code to avoid potentially having multiple autofillwindow

* PM-3349 Minor ui fix (space between buttons in delete account page)

* initial commit of android credential provider service (wip)

* Revert "initial commit of android credential provider service (wip)"

This reverts commit 6011b63958.

* PM-3350 Fix for Delete Account buttons on iOS

* PM-3349 PM-3350 Changed search icon used in app to avoid issue with icon size on iOS

* PM-3349 Added custom window so that we can always get the current Active Window. This is used to support the Android Autofil and multi-window scenarios.

* PM-3349 Fix for icon and text spacing in some list items

* PM-3349 Minor aligment improvemment for region selection in HomePage

* PM-3349 Changed the "track color" for the Android switch so that the color is different from the "thumb"

* PM-3350 Updated version to 2024.1.0 on iOS

* PM-3349 Fix Picker selection style by doing a custom PickerHandler for Android which uses SetSingleChoiceItems(...) to provide with the appropriate UI

* PM-3350 Updated MauiVersion to 8.0.4-nightly.* to have the TapGestureRecognizer fix applied. This is done on the Directory.Build.props so we don't have to change it on every csproj. Also removed the workaround of TapGestureHack and fix the Show environment picker to work on the extensions as well.

* PM-3350 Added nuget.config so we add the nuget package source for MAUI Nightly builds

* Bump main iOS version

* PM-3350 Removed "iOS" old folder project that has been moved into the MAUI Single app project.

* PM-3350 Improved code safety adding a lot of try...catch and logging throughout the app. Also made the invoking on main thread safer on several places of the app. Additionally, on the GroupingsPageViewModel changed the code removing the old Xamarin hack and just using Replace directly instead of Clearing first to see if that fixes the crash we're having sometimes on the app.

* PM-3350 PM-3349 Updated Unit Test projects to NET 8.0 and fixed it to work with Core project reference. Also fixed a test that was breaking due to CIpherKey creation being wrong. Added "UT" as a constant to add when building/running Core.Test project so we have something on the context that tells us that is for a UT. With this I had to remove FFImageLoading on UT context because it doesn't support NET 8.0

* PM-3350 PM-3349 Updated Readme with MAUI and main branch

* PM-3350 PM-3349 Enable running Core tests

* PM-3350 Fix build.yml format

* PM-3349 Fix navigation when coming from autofill with Accessibility Services enabled. The user was getting into Home page instead of where they were, with this workaround the app navigates as if the account has been switched, leaving the user as closely as possible to where they were, basically on the first screen for the current state of the user.

* PM-3350 PM-3349 Added property to Directory.Build.props to enable Unit Testing globally so Test runners work

* Improve TOTP scan performance on Android

* Move Android camera/scan changes to xaml

* PM-3350 Testing UseInterpreter false on CI build

* PM-3350 Enabled back UseInterpreter on iOS Release given that it crashes on startup without it.

* PM-3349 PM-3350 Improved code safety with try...catch, better invoke on main thread and better null handling.

* PM-3349 PM-3350 Updated XCode version on build.yml to 15.1

* PM-3350 Removed TapGesture Window MAUI hack from iOS.Extension and iOS.ShareExtension

* PM-3350 Fixed CancellationTokenSource proper disposal

* PM-3350 Fix Avatar toolbar icon on extensions to load properly and to take advantage of using directly SkiaSharp to do the native conversion to UIImage. Also improved the toolbar item so that size is set appropriately.

* PM-3349 PM-3350 Fix external link icon

* PM-3350 Added new style to prevent spell check and text prediction

* Fix merge from main

* PM-3350 Commented event collection upload on the timer and when sending the app to background to see if that prevents the app from crashing on release mode.

* PM-3350 Added check for state migration version before trying to migrate LiteDB values into Prefs when there's no need to and that may be inducing crashes on backgrounded iOS apps.

* PM-3350 Try to disable Interpreter to have better crash knowledge. This time testing if avoiding loading the argon2id lib we're able to not use the interpreter.

* PM-5928 Fix circle animation to be shown on verification codes list on each item

* PM-3350 Go back to use Interpreter and added some Directory.Build.props to easily change Codesign properties and also include/exclude iOS extensions / WatchOS from the build.

* PM-3350 Enabled iOS extensions and WatchOS app to be included based on the Directory.Build.props

* PM-3350 Go back to include argon2id and interpreter

* Removing error/loading placeholders of icons on the cells to see if that is causing the background crash on iOS; so we can test this in TestFlight

* [PM-5910] Workaround for for sliding elements in Duo 2FA flow (#2967)

* workaround for sliding elements in duo 2fa flow

* restrict workaround to Android

* restrict workaround to Android

* Revert "restrict workaround to Android"

This reverts commit c2753d5dc4.

* Revert "restrict workaround to Android"

This reverts commit 69688cfb98.

* PM-5902 fix for account switcher not dismissing when tapping outside (#2974)

* PM-3350 Fix iossimulator-x64 argon2id load so we can test on simulators and also made easier to maintain loading the argon2id library on the iOS projects by setting a general Directory.Build.props that is shared.

* PM-5903 Changed App.xaml.cs SetOption to only update the needed properties instead of replacing the existing Options object which would cause the AccountSwitcher button bug (#2973)

* [PM-5896] Fix MAUI iOS Background crash due to lock files on suspension (#2969)

* PM-5896 Fix background crash on iOS due to lock files when app gets suspended. Changed loading and error placeholders of the CachedImage to not be used and use default icon of IconLabel instead changing visibility.

* PM-5896 Changed methods to be protected so that they don't get removed by the linker.

* PM-5896 Added stub class and references to it so to have stronger references to Icon_Success and Icon_Error so the linker doesn't remove them.

* PM-3349 Removed commented code from build.yml regarding FDroid that is not needed anymore.

* PM-6077 Separated Android and iOS HybridWebViewHandler so that it can be used on iOS.Core (#2983)

* [PM-5907] Fix for incorrect TOTP white text color on label when using light theme on iOS (#2982)

* PM-5907 workaround for incorrect textcolor when programmatically changing text on Entry

* Update src/Core/Pages/Vault/CipherAddEditPage.xaml.cs

Co-authored-by: Federico Maccaroni <fedemkr@gmail.com>

---------

Co-authored-by: Federico Maccaroni <fedemkr@gmail.com>

* [PM-5906] Fix for incorrect Send MaxAccess white text color on label when using light theme on iOS (#2981)

* PM-5906 workaround for incorrect textcolor when programmatically changing text on Entry

* Update src/Core/Pages/Send/SendAddEditPage.xaml.cs

Co-authored-by: Federico Maccaroni <fedemkr@gmail.com>

---------

Co-authored-by: Federico Maccaroni <fedemkr@gmail.com>

* PM-3349 PM-3350 Fixed Unit tests because of referencing FFImageLoading when it's not possible

---------

Co-authored-by: Dinis Vieira <dinisvieira@outlook.com>
Co-authored-by: Vince Grassia <593223+vgrassia@users.noreply.github.com>
Co-authored-by: mpbw2 <59324545+mpbw2@users.noreply.github.com>
2024-02-08 16:05:26 -03:00

2881 lines
154 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string"/>
<xsd:attribute name="type" type="xsd:string"/>
<xsd:attribute name="mimetype" type="xsd:string"/>
<xsd:attribute ref="xml:space"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string"/>
<xsd:attribute name="name" type="xsd:string"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
<xsd:attribute ref="xml:space"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required"/>
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="About" xml:space="preserve">
<value>ಬಗ್ಗೆ</value>
</data>
<data name="Add" xml:space="preserve">
<value>ಸೇರಿಸಿ</value>
<comment>Add/create a new entity (verb).</comment>
</data>
<data name="AddFolder" xml:space="preserve">
<value>ಫೋಲ್ಡರ್ ಸೇರಿಸಿ</value>
</data>
<data name="AddItem" xml:space="preserve">
<value>ಐಟಂ ಸೇರಿಸಿ</value>
<comment>The title for the add item page.</comment>
</data>
<data name="AnErrorHasOccurred" xml:space="preserve">
<value>ದೋಷ ಸಂಭವಿಸಿದೆ</value>
<comment>Alert title when something goes wrong.</comment>
</data>
<data name="Back" xml:space="preserve">
<value>ಹಿಂದಕ್ಕೆ</value>
<comment>Navigate back to the previous screen.</comment>
</data>
<data name="Bitwarden" xml:space="preserve">
<value>ಬಿಟ್ವಾರ್ಡೆನ್</value>
<comment>App name. Shouldn't ever change.</comment>
</data>
<data name="Cancel" xml:space="preserve">
<value>ರದ್ದು</value>
<comment>Cancel an operation.</comment>
</data>
<data name="Copy" xml:space="preserve">
<value>ನಕಲಿಸಿ</value>
<comment>Copy some value to your clipboard.</comment>
</data>
<data name="CopyPassword" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ನಕಲಿಸಿ</value>
<comment>The button text that allows a user to copy the login's password to their clipboard.</comment>
</data>
<data name="CopyUsername" xml:space="preserve">
<value>ಬಳಕೆಹೆಸರು ನಕಲಿಸು</value>
<comment>The button text that allows a user to copy the login's username to their clipboard.</comment>
</data>
<data name="Credits" xml:space="preserve">
<value>ಕ್ರೆಡಿಟ್ಸ್</value>
<comment>Title for page that we use to give credit to resources that we use.</comment>
</data>
<data name="Delete" xml:space="preserve">
<value>ಅಳಿಸು</value>
<comment>Delete an entity (verb).</comment>
</data>
<data name="Deleting" xml:space="preserve">
<value>ಅಳಿಸಲಾಗುತ್ತಿದೆ...</value>
<comment>Message shown when interacting with the server</comment>
</data>
<data name="DoYouReallyWantToDelete" xml:space="preserve">
<value>ನೀವು ನಿಜವಾಗಿಯೂ ಅಳಿಸಲು ಬಯಸುವಿರಾ? ಇದನ್ನು ರದ್ದುಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ.</value>
<comment>Confirmation alert message when deleteing something.</comment>
</data>
<data name="Edit" xml:space="preserve">
<value>ಎಡಿಟ್</value>
</data>
<data name="EditFolder" xml:space="preserve">
<value>ಫೋಲ್ಡರ್ ಸಂಪಾದಿಸಿ</value>
</data>
<data name="Email" xml:space="preserve">
<value>ಇಮೇಲ್</value>
<comment>Short label for an email address.</comment>
</data>
<data name="EmailAddress" xml:space="preserve">
<value>ಇಮೇಲ್ ವಿಳಾಸ</value>
<comment>Full label for a email address.</comment>
</data>
<data name="EmailUs" xml:space="preserve">
<value>ನಮಗೆ ಇಮೇಲ್ ಮಾಡಿ</value>
</data>
<data name="EmailUsDescription" xml:space="preserve">
<value>ಸಹಾಯ ಪಡೆಯಲು ಅಥವಾ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ನೀಡಲು ನಮಗೆ ನೇರವಾಗಿ ಇಮೇಲ್ ಮಾಡಿ.</value>
</data>
<data name="EnterPIN" xml:space="preserve">
<value>ಪಿನ್‌ ಕೋಡ್‌ ನಮೂದಿಸಿ</value>
</data>
<data name="Favorites" xml:space="preserve">
<value>ಮೆಚ್ಚುಗೆಗಳು</value>
<comment>Title for your favorite items in the vault.</comment>
</data>
<data name="FileBugReport" xml:space="preserve">
<value>ದೋಷ ವರದಿಯನ್ನು ಫೈಲ್ ಮಾಡಿ</value>
</data>
<data name="FileBugReportDescription" xml:space="preserve">
<value>ನಮ್ಮ ಗಿಟ್‌ಹಬ್ ಭಂಡಾರದಲ್ಲಿ ಸಮಸ್ಯೆಯನ್ನು ತೆರೆಯಿರಿ.</value>
</data>
<data name="FingerprintDirection" xml:space="preserve">
<value>ಮುಂದುವರಿಸಲು ನಿಮ್ಮ ಫಿಂಗರ್‌ಪ್ರಿಂಟ್ ಬಳಸಿ.</value>
</data>
<data name="Folder" xml:space="preserve">
<value>ಫೋಲ್ಡರ್</value>
<comment>Label for a folder.</comment>
</data>
<data name="FolderCreated" xml:space="preserve">
<value>ಹೊಸ ಫೋಲ್ಡರ್ ರಚಿಸಿದೆ.</value>
</data>
<data name="FolderDeleted" xml:space="preserve">
<value>ಫೋಲ್ಡರ್ ಅಳಿಸಲಾಗಿದೆ.</value>
</data>
<data name="FolderNone" xml:space="preserve">
<value>ಫೋಲ್ಡರ್ ಇಲ್ಲ</value>
<comment>Items that have no folder specified go in this special "catch-all" folder.</comment>
</data>
<data name="Folders" xml:space="preserve">
<value>ಫೋಲ್ಡರ್‌ಗಳು</value>
</data>
<data name="FolderUpdated" xml:space="preserve">
<value>ಫೋಲ್ಡರ್ ನವೀಕರಿಸಲಾಗಿದೆ.</value>
</data>
<data name="GoToWebsite" xml:space="preserve">
<value>ವೆಬ್‌ಸೈಟ್‌ಗೆ ಹೋಗಿ</value>
<comment>The button text that allows user to launch the website to their web browser.</comment>
</data>
<data name="HelpAndFeedback" xml:space="preserve">
<value>ಸಹಾಯ ಮತ್ತು ಪ್ರತಿಕ್ರಿಯೆ</value>
</data>
<data name="Hide" xml:space="preserve">
<value>ಮರೆಮಾಡಿ</value>
<comment>Hide a secret value that is currently shown (password).</comment>
</data>
<data name="InternetConnectionRequiredMessage" xml:space="preserve">
<value>ಮುಂದುವರಿಯುವ ಮೊದಲು ದಯವಿಟ್ಟು ಇಂಟರ್ನೆಟ್‌ಗೆ ಸಂಪರ್ಕಪಡಿಸಿ.</value>
<comment>Description message for the alert when internet connection is required to continue.</comment>
</data>
<data name="InternetConnectionRequiredTitle" xml:space="preserve">
<value>ಇಂಟರ್ನೆಟ್ ಸಂಪರ್ಕ ಅಗತ್ಯವಿದೆ</value>
<comment>Title for the alert when internet connection is required to continue.</comment>
</data>
<data name="InvalidMasterPassword" xml:space="preserve">
<value>ಅಮಾನ್ಯ ಮಾಸ್ಟರ್ ಪಾಸ್‌ವರ್ಡ್. ಮತ್ತೆ ಪ್ರಯತ್ನಿಸು.</value>
</data>
<data name="InvalidPIN" xml:space="preserve">
<value>ಅಮಾನ್ಯ ಪಿನ್. ಮತ್ತೆ ಪ್ರಯತ್ನಿಸು.</value>
</data>
<data name="Launch" xml:space="preserve">
<value>ಶುರು</value>
<comment>The button text that allows user to launch the website to their web browser.</comment>
</data>
<data name="LogIn" xml:space="preserve">
<value>ಲಾಗಿನ್</value>
<comment>The login button text (verb).</comment>
</data>
<data name="LogInNoun" xml:space="preserve">
<value>ಲಾಗಿನ್</value>
<comment>Title for login page. (noun)</comment>
</data>
<data name="LogOut" xml:space="preserve">
<value>ಲಾಗ್ ಔಟ್</value>
<comment>The log out button text (verb).</comment>
</data>
<data name="LogoutConfirmation" xml:space="preserve">
<value>ಲಾಗ್ ಔಟ್ ಮಾಡಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?</value>
</data>
<data name="RemoveAccount" xml:space="preserve">
<value>Remove account</value>
</data>
<data name="RemoveAccountConfirmation" xml:space="preserve">
<value>Are you sure you want to remove this account?</value>
</data>
<data name="AccountAlreadyAdded" xml:space="preserve">
<value>Account already added</value>
</data>
<data name="SwitchToAlreadyAddedAccountConfirmation" xml:space="preserve">
<value>Would you like to switch to it now?</value>
</data>
<data name="MasterPassword" xml:space="preserve">
<value>ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್</value>
<comment>Label for a master password.</comment>
</data>
<data name="More" xml:space="preserve">
<value>ಹೆಚ್ಚು</value>
<comment>Text to define that there are more options things to see.</comment>
</data>
<data name="MyVault" xml:space="preserve">
<value>ನನ್ನ ವಾಲ್ಟ್</value>
<comment>The title for the vault page.</comment>
</data>
<data name="Authenticator" xml:space="preserve">
<value>Authenticator</value>
<comment>Authenticator TOTP feature</comment>
</data>
<data name="Name" xml:space="preserve">
<value>ಹೆಸರು</value>
<comment>Label for an entity name.</comment>
</data>
<data name="No" xml:space="preserve">
<value>ಇಲ್ಲ</value>
</data>
<data name="Notes" xml:space="preserve">
<value>ಟಿಪ್ಪಣಿಗಳು</value>
<comment>Label for notes.</comment>
</data>
<data name="Ok" xml:space="preserve">
<value>ಸರಿ</value>
<comment>Acknowledgement.</comment>
</data>
<data name="Password" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್</value>
<comment>Label for a password.</comment>
</data>
<data name="Save" xml:space="preserve">
<value>ಉಳಿಸಿ</value>
<comment>Button text for a save operation (verb).</comment>
</data>
<data name="Move" xml:space="preserve">
<value>Move</value>
</data>
<data name="Saving" xml:space="preserve">
<value>ಉಳಿಸುತ್ತಿದೆ...</value>
<comment>Message shown when interacting with the server</comment>
</data>
<data name="Settings" xml:space="preserve">
<value>ಸೆಟ್ಟಿಂಗ್‍ಗಳು
</value>
<comment>The title for the settings page.</comment>
</data>
<data name="Show" xml:space="preserve">
<value>ತೋರಿಸಿ</value>
<comment>Reveal a hidden value (password).</comment>
</data>
<data name="ItemDeleted" xml:space="preserve">
<value>ಐಟಂ ಅಳಿಸಲಾಗಿದೆ.</value>
<comment>Confirmation message after successfully deleting a login.</comment>
</data>
<data name="Submit" xml:space="preserve">
<value>ಒಪ್ಪಿಸು</value>
</data>
<data name="Sync" xml:space="preserve">
<value>ಸಿಂಕ್</value>
<comment>The title for the sync page.</comment>
</data>
<data name="ThankYou" xml:space="preserve">
<value>ಧನ್ಯವಾದಗಳು</value>
</data>
<data name="Tools" xml:space="preserve">
<value>ಉಪಕರಣ</value>
<comment>The title for the tools page.</comment>
</data>
<data name="URI" xml:space="preserve">
<value>URI</value>
<comment>Label for a uri/url.</comment>
</data>
<data name="UseFingerprintToUnlock" xml:space="preserve">
<value>ಅನ್ಲಾಕ್ ಮಾಡಲು ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಬಳಸಿ</value>
</data>
<data name="Username" xml:space="preserve">
<value>ಬಳಕೆದಾರ ಹೆಸರು</value>
<comment>Label for a username.</comment>
</data>
<data name="ValidationFieldRequired" xml:space="preserve">
<value>{0} ಕ್ಷೇತ್ರದ ಅಗತ್ಯವಿದೆ.</value>
<comment>Validation message for when a form field is left blank and is required to be entered.</comment>
</data>
<data name="ValueHasBeenCopied" xml:space="preserve">
<value>{0} ಅನ್ನು ನಕಲಿಸಲಾಗಿದೆ.</value>
<comment>Confirmation message after successfully copying a value to the clipboard.</comment>
</data>
<data name="VerifyFingerprint" xml:space="preserve">
<value>ನಿಮ್ಮ ಬೆರಳಚ್ಚನ್ನು ಪರಿಶೀಲಿಸಿ</value>
</data>
<data name="VerifyMasterPassword" xml:space="preserve">
<value>ಮಾಸ್ಟರ್ ಪಾಸ್‌ವರ್ಡ್ ಪರಿಶೀಲಿಸಿ</value>
</data>
<data name="VerifyPIN" xml:space="preserve">
<value>ಪಿನ್ ಪರಿಶೀಲಿಸಿ</value>
</data>
<data name="Version" xml:space="preserve">
<value>ಆವೃತ್ತಿ</value>
</data>
<data name="View" xml:space="preserve">
<value>ವೀಕ್ಷಣೆ</value>
</data>
<data name="VisitOurWebsite" xml:space="preserve">
<value>ನಮ್ಮ ವೆಬ್‌ಸೈಟ್‌ ಅನ್ನು ಭೇಟಿಮಾಡಿ</value>
</data>
<data name="Website" xml:space="preserve">
<value>ಜಾಲತಾಣ</value>
<comment>Label for a website.</comment>
</data>
<data name="Yes" xml:space="preserve">
<value>ಹೌದು</value>
</data>
<data name="Account" xml:space="preserve">
<value>ಖಾತೆ</value>
</data>
<data name="AccountCreated" xml:space="preserve">
<value>ನಿಮ್ಮ ಹೊಸ ಖಾತೆಯನ್ನು ರಚಿಸಲಾಗಿದೆ! ನೀವು ಈಗ ಲಾಗ್ ಇನ್ ಮಾಡಬಹುದು.</value>
</data>
<data name="AddAnItem" xml:space="preserve">
<value>ಐಟಂ ಸೇರಿಸಿ</value>
</data>
<data name="AppExtension" xml:space="preserve">
<value>ಅಪ್ಲಿಕೇಶನ್ ವಿಸ್ತರಣೆ</value>
</data>
<data name="AutofillAccessibilityDescription" xml:space="preserve">
<value>ಅಪ್ಲಿಕೇಶನ್‌ಗಳು ಮತ್ತು ವೆಬ್‌ನಾದ್ಯಂತ ನಿಮ್ಮ ಲಾಗಿನ್‌ಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ತುಂಬಲು ಬಿಟ್‌ವಾರ್ಡೆನ್ ಪ್ರವೇಶಿಸುವಿಕೆ ಸೇವೆಯನ್ನು ಬಳಸಿ.</value>
</data>
<data name="AutofillService" xml:space="preserve">
<value>ಸ್ವಯಂ ಭರ್ತಿ ಸೇವೆ</value>
</data>
<data name="AvoidAmbiguousCharacters" xml:space="preserve">
<value>ಅಸ್ಪಷ್ಟ ಅಕ್ಷರಗಳನ್ನು ತಪ್ಪಿಸಿ</value>
</data>
<data name="BitwardenAppExtension" xml:space="preserve">
<value>ಬಿಟ್‌ವಾರ್ಡೆನ್ ಅಪ್ಲಿಕೇಶನ್ ವಿಸ್ತರಣೆ</value>
</data>
<data name="BitwardenAppExtensionAlert2" xml:space="preserve">
<value>ನಿಮ್ಮ ವಾಲ್ಟ್‌ಗೆ ಹೊಸ ಲಾಗಿನ್‌ಗಳನ್ನು ಸೇರಿಸಲು ಸುಲಭವಾದ ಮಾರ್ಗವೆಂದರೆ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಅಪ್ಲಿಕೇಶನ್ ವಿಸ್ತರಣೆ. "ಸೆಟ್ಟಿಂಗ್‌ಗಳು" ಪರದೆಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡುವ ಮೂಲಕ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಅಪ್ಲಿಕೇಶನ್ ವಿಸ್ತರಣೆಯನ್ನು ಬಳಸುವ ಬಗ್ಗೆ ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ.</value>
</data>
<data name="BitwardenAppExtensionDescription" xml:space="preserve">
<value>ನಿಮ್ಮ ಲಾಗಿನ್‌ಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ತುಂಬಲು ಸಫಾರಿ ಮತ್ತು ಇತರ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಲ್ಲಿ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಬಳಸಿ.</value>
</data>
<data name="BitwardenAutofillService" xml:space="preserve">
<value>ಬಿಟ್ವಾರ್ಡೆನ್ ಸ್ವಯಂ ಭರ್ತಿ ಸೇವೆ</value>
</data>
<data name="BitwardenAutofillAccessibilityServiceDescription" xml:space="preserve">
<value>ನಿಮ್ಮ ಲಾಗಿನ್‌ಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ತುಂಬಲು ಬಿಟ್‌ವಾರ್ಡೆನ್ ಪ್ರವೇಶಿಸುವಿಕೆ ಸೇವೆಯನ್ನು ಬಳಸಿ.</value>
</data>
<data name="ChangeEmail" xml:space="preserve">
<value>ಇಮೇಲ್ ಬದಲಾಯಿಸಿ</value>
</data>
<data name="ChangeEmailConfirmation" xml:space="preserve">
<value>ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ನೀವು bitwarden.com ವೆಬ್ ವಾಲ್ಟ್‌ನಲ್ಲಿ ಬದಲಾಯಿಸಬಹುದು. ನೀವು ಈಗ ವೆಬ್‌ಸೈಟ್‌ಗೆ ಭೇಟಿ ನೀಡಲು ಬಯಸುವಿರಾ?</value>
</data>
<data name="ChangeMasterPassword" xml:space="preserve">
<value>ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಬದಲಾಯಿಸಿ</value>
</data>
<data name="Close" xml:space="preserve">
<value>ಮುಚ್ಚಿ</value>
</data>
<data name="Continue" xml:space="preserve">
<value>ಮುಂದುವರಿಸಿ</value>
</data>
<data name="CreateAccount" xml:space="preserve">
<value>ಖಾತೆ ತೆರೆ</value>
</data>
<data name="CreatingAccount" xml:space="preserve">
<value>ಖಾತೆಯನ್ನು ರಚಿಸಲಾಗುತ್ತಿದೆ ...</value>
<comment>Message shown when interacting with the server</comment>
</data>
<data name="EditItem" xml:space="preserve">
<value>ವಸ್ತುಗಳನ್ನು ಸಂಪಾದಿಸಿ</value>
</data>
<data name="EnableAutomaticSyncing" xml:space="preserve">
<value>ಸ್ವಯಂಚಾಲಿತ ಸಿಂಕ್ ಮಾಡುವುದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ</value>
</data>
<data name="EnterEmailForHint" xml:space="preserve">
<value>ವಿಸ್ತರಣೆಯನ್ನು ಪ್ರಾರಂಭಿಸಲು ಮೆನುವಿನಲ್ಲಿರುವ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಐಕಾನ್ ಟ್ಯಾಪ್ ಮಾಡಿ.</value>
</data>
<data name="ExntesionReenable" xml:space="preserve">
<value>ಅಪ್ಲಿಕೇಶನ್ ವಿಸ್ತರಣೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ</value>
</data>
<data name="ExtensionAlmostDone" xml:space="preserve">
<value>ಬಹುತೇಕ ಮುಗಿದಿದೆ!</value>
</data>
<data name="ExtensionEnable" xml:space="preserve">
<value>ಅಪ್ಲಿಕೇಶನ್ ವಿಸ್ತರಣೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ</value>
</data>
<data name="ExtensionInSafari" xml:space="preserve">
<value>ಸಫಾರಿ ಯಲ್ಲಿ, ಹಂಚಿಕೆ ಐಕಾನ್ ಬಳಸಿ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಅನ್ನು ಹುಡುಕಿ (ಸುಳಿವು: ಮೆನುವಿನ ಕೆಳಗಿನ ಸಾಲಿನಲ್ಲಿ ಬಲಕ್ಕೆ ಸ್ಕ್ರಾಲ್ ಮಾಡಿ).</value>
<comment>Safari is the name of apple's web browser</comment>
</data>
<data name="ExtensionInstantAccess" xml:space="preserve">
<value>ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್‌ಗಳಿಗೆ ತ್ವರಿತ ಪ್ರವೇಶವನ್ನು ಪಡೆಯಿರಿ!</value>
</data>
<data name="ExtensionReady" xml:space="preserve">
<value>ನೀವು ಲಾಗ್ ಇನ್ ಮಾಡಲು ಸಿದ್ಧರಿದ್ದೀರಿ!</value>
</data>
<data name="ExtensionSetup" xml:space="preserve">
<value>ನಿಮ್ಮ ಲಾಗಿನ್‌ಗಳನ್ನು ಈಗ ಸಫಾರಿ, ಕ್ರೋಮ್ ಮತ್ತು ಇತರ ಬೆಂಬಲಿತ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಂದ ಸುಲಭವಾಗಿ ಪ್ರವೇಶಿಸಬಹುದು.</value>
</data>
<data name="ExtensionSetup2" xml:space="preserve">
<value>ಸಫಾರಿ ಮತ್ತು ಕ್ರೋಮ್‌ನಲ್ಲಿ, ಹಂಚಿಕೆ ಐಕಾನ್ ಬಳಸಿ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಅನ್ನು ಹುಡುಕಿ (ಸುಳಿವು: ಹಂಚಿಕೆ ಮೆನುವಿನ ಕೆಳಗಿನ ಸಾಲಿನಲ್ಲಿ ಬಲಕ್ಕೆ ಸ್ಕ್ರಾಲ್ ಮಾಡಿ).</value>
</data>
<data name="ExtensionTapIcon" xml:space="preserve">
<value>ವಿಸ್ತರಣೆಯನ್ನು ಪ್ರಾರಂಭಿಸಲು ಮೆನುವಿನಲ್ಲಿರುವ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಐಕಾನ್ ಟ್ಯಾಪ್ ಮಾಡಿ.</value>
</data>
<data name="ExtensionTurnOn" xml:space="preserve">
<value>ಸಫಾರಿ ಮತ್ತು ಇತರ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಲ್ಲಿ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಅನ್ನು ಆನ್ ಮಾಡಲು, ಮೆನುವಿನ ಕೆಳಗಿನ ಸಾಲಿನಲ್ಲಿರುವ "ಇನ್ನಷ್ಟು" ಐಕಾನ್ ಟ್ಯಾಪ್ ಮಾಡಿ.</value>
</data>
<data name="Favorite" xml:space="preserve">
<value>ಮೆಚ್ಚಿನ</value>
</data>
<data name="Fingerprint" xml:space="preserve">
<value>ಫಿಂಗರ್‌ಪ್ರಿಂಟ್</value>
</data>
<data name="GeneratePassword" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ರಚಿಸಿ</value>
</data>
<data name="GetPasswordHint" xml:space="preserve">
<value>ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್‌ವರ್ಡ್ ಸುಳಿವನ್ನು ಪಡೆಯಿರಿ</value>
</data>
<data name="ImportItems" xml:space="preserve">
<value>ವಸ್ತುಗಳನ್ನು ಆಮದು ಮಾಡಿ</value>
</data>
<data name="ImportItemsConfirmation" xml:space="preserve">
<value>ನೀವು ಬಿಟ್‌ವಾರ್ಡೆನ್.ಕಾಮ್ ವೆಬ್ ವಾಲ್ಟ್‌ನಿಂದ ಬೃಹತ್ ಆಮದು ವಸ್ತುಗಳನ್ನು ಮಾಡಬಹುದು. ನೀವು ಈಗ ವೆಬ್‌ಸೈಟ್‌ಗೆ ಭೇಟಿ ನೀಡಲು ಬಯಸುವಿರಾ?</value>
</data>
<data name="ImportItemsDescription" xml:space="preserve">
<value>ಇತರ ಪಾಸ್‌ವರ್ಡ್ ನಿರ್ವಹಣಾ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಂದ ನಿಮ್ಮ ವಸ್ತುಗಳನ್ನು ತ್ವರಿತವಾಗಿ ಆಮದು ಮಾಡಿ.</value>
</data>
<data name="LastSync" xml:space="preserve">
<value>ಕೊನೆಯ ಸಿಂಕ್</value>
</data>
<data name="Length" xml:space="preserve">
<value>ಉದ್ದ</value>
</data>
<data name="Lock" xml:space="preserve">
<value>ಲಾಕ್‌</value>
</data>
<data name="FifteenMinutes" xml:space="preserve">
<value>೧೫ ನಿಮಿಷಗಳು</value>
</data>
<data name="OneHour" xml:space="preserve">
<value>೧ ಗಂಟೆ</value>
</data>
<data name="OneMinute" xml:space="preserve">
<value>೧ ನಿಮಿಷ</value>
</data>
<data name="FourHours" xml:space="preserve">
<value>೪ ಗಂಟೆಗಳು</value>
</data>
<data name="Immediately" xml:space="preserve">
<value>ತಕ್ಷಣ</value>
</data>
<data name="VaultTimeout" xml:space="preserve">
<value>ವಾಲ್ಟ್ ಕಾಲಾವಧಿ</value>
</data>
<data name="VaultTimeoutAction" xml:space="preserve">
<value>ವಾಲ್ಟ್ ಸಮಯ ಮೀರುವ ಕ್ರಿಯೆ</value>
</data>
<data name="VaultTimeoutLogOutConfirmation" xml:space="preserve">
<value>ಲಾಗ್ out ಟ್ ಆಗುವುದರಿಂದ ನಿಮ್ಮ ವಾಲ್ಟ್‌ನ ಎಲ್ಲಾ ಪ್ರವೇಶವನ್ನು ತೆಗೆದುಹಾಕುತ್ತದೆ ಮತ್ತು ಕಾಲಾವಧಿ ಅವಧಿಯ ನಂತರ ಆನ್‌ಲೈನ್ ದೃ hentic ೀಕರಣದ ಅಗತ್ಯವಿದೆ. ಈ ಸೆಟ್ಟಿಂಗ್ ಅನ್ನು ಬಳಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?</value>
</data>
<data name="LoggingIn" xml:space="preserve">
<value>ಲಾಗ್ ಇನ್ ಆಗುತ್ತಿದೆ ...</value>
<comment>Message shown when interacting with the server</comment>
</data>
<data name="LoginOrCreateNewAccount" xml:space="preserve">
<value>ನಿಮ್ಮ ಸುರಕ್ಷಿತ ವಾಲ್ಟ್ ಅನ್ನು ಪ್ರವೇಶಿಸಲು ಲಾಗ್ ಇನ್ ಮಾಡಿ ಅಥವಾ ಹೊಸ ಖಾತೆಯನ್ನು ರಚಿಸಿ.</value>
</data>
<data name="Manage" xml:space="preserve">
<value>ವ್ಯವಸ್ಥಾಪಕ</value>
</data>
<data name="MasterPasswordConfirmationValMessage" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ದೃಢೀಕರಣ ಸರಿಯಾಗಿಲ್ಲ.</value>
</data>
<data name="MasterPasswordDescription" xml:space="preserve">
<value>ನಿಮ್ಮ ವಾಲ್ಟ್ ಅನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಬಳಸುವ ಪಾಸ್ವರ್ಡ್ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಆಗಿದೆ. ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ನೀವು ಮರೆಯದಿರುವುದು ಬಹಳ ಮುಖ್ಯ. ನೀವು ಅದನ್ನು ಮರೆತ ಸಂದರ್ಭದಲ್ಲಿ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ಮರುಪಡೆಯಲು ಯಾವುದೇ ಮಾರ್ಗವಿಲ್ಲ.</value>
</data>
<data name="MasterPasswordHint" xml:space="preserve">
<value>ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಸುಳಿವು (ಐಚ್ಛಿಕ)</value>
</data>
<data name="MasterPasswordHintDescription" xml:space="preserve">
<value>ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ನೀವು ಮರೆತರೆ ಅದನ್ನು ನೆನಪಿಟ್ಟುಕೊಳ್ಳಲು ಮಾಸ್ಟರ್ ಪಾಸ್‌ವರ್ಡ್ ಸುಳಿವು ನಿಮಗೆ ಸಹಾಯ ಮಾಡುತ್ತದೆ.</value>
</data>
<data name="MasterPasswordLengthValMessageX" xml:space="preserve">
<value>Master password must be at least {0} characters long.</value>
</data>
<data name="MinNumbers" xml:space="preserve">
<value>ಕನಿಷ್ಠ ಸಂಖ್ಯೆಗಳು</value>
<comment>Minimum numeric characters for password generator settings</comment>
</data>
<data name="MinSpecial" xml:space="preserve">
<value>ಕನಿಷ್ಠ ವಿಶೇಷ</value>
<comment>Minimum special characters for password generator settings</comment>
</data>
<data name="MoreSettings" xml:space="preserve">
<value>ಹೆಚ್ಚಿನ ಸೆಟ್ಟಿಂಗ್‌ಗಳು</value>
</data>
<data name="MustLogInMainApp" xml:space="preserve">
<value>ನೀವು ವಿಸ್ತರಣೆಯನ್ನು ಬಳಸುವ ಮೊದಲು ನೀವು ಮುಖ್ಯ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಅಪ್ಲಿಕೇಶನ್‌ಗೆ ಲಾಗ್ ಇನ್ ಆಗಬೇಕು.</value>
</data>
<data name="Never" xml:space="preserve">
<value>ಇಲ್ಲವೇ ಇಲ್ಲ</value>
</data>
<data name="NewItemCreated" xml:space="preserve">
<value>ಹೊಸ ಐಟಂ ರಚಿಸಲಾಗಿದೆ.</value>
</data>
<data name="NoFavorites" xml:space="preserve">
<value>ನಿಮ್ಮ ವಾಲ್ಟ್‌ನಲ್ಲಿ ಯಾವುದೇ ಮೆಚ್ಚಿನವುಗಳಿಲ್ಲ.</value>
</data>
<data name="NoItems" xml:space="preserve">
<value>ನಿಮ್ಮ ವಾಲ್ಟ್‌ನಲ್ಲಿ ಯಾವುದೇ ವಸ್ತುಗಳು ಇಲ್ಲ.</value>
</data>
<data name="NoItemsTap" xml:space="preserve">
<value>ಈ ವೆಬ್‌ಸೈಟ್ / ಅಪ್ಲಿಕೇಶನ್‌ಗಾಗಿ ನಿಮ್ಮ ವಾಲ್ಟ್‌ನಲ್ಲಿ ಯಾವುದೇ ಐಟಂಗಳಿಲ್ಲ. ಒಂದನ್ನು ಸೇರಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ.</value>
</data>
<data name="NoUsernamePasswordConfigured" xml:space="preserve">
<value>ಈ ಲಾಗಿನ್ ಬಳಕೆದಾರಹೆಸರು ಅಥವಾ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಿಲ್ಲ.</value>
</data>
<data name="OkGotIt" xml:space="preserve">
<value>ಸರಿ, ಅರ್ಥವಾಯಿತು</value>
<comment>Confirmation, like "Ok, I understand it"</comment>
</data>
<data name="OptionDefaults" xml:space="preserve">
<value>ಆಯ್ಕೆ ಡೀಫಾಲ್ಟ್‌ಗಳನ್ನು ಮುಖ್ಯ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಅಪ್ಲಿಕೇಶನ್‌ನ ಪಾಸ್‌ವರ್ಡ್ ಜನರೇಟರ್ ಸಾಧನದಿಂದ ಹೊಂದಿಸಲಾಗಿದೆ.</value>
</data>
<data name="Options" xml:space="preserve">
<value>ಆಯ್ಕೆಗಳು</value>
</data>
<data name="Other" xml:space="preserve">
<value>ಇತರೆ</value>
</data>
<data name="PasswordGenerated" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ರಚಿಸಲಾಗಿದೆ.</value>
</data>
<data name="PasswordGenerator" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ಜನರೇಟರ್</value>
</data>
<data name="PasswordHint" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ಸುಳಿವು</value>
</data>
<data name="PasswordHintAlert" xml:space="preserve">
<value>ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್‌ವರ್ಡ್ ಸುಳಿವಿನೊಂದಿಗೆ ನಾವು ನಿಮಗೆ ಇಮೇಲ್ ಕಳುಹಿಸಿದ್ದೇವೆ.</value>
</data>
<data name="PasswordOverrideAlert" xml:space="preserve">
<value>ಪ್ರಸ್ತುತ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ತಿದ್ದಿಬರೆಯಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?</value>
</data>
<data name="PushNotificationAlert" xml:space="preserve">
<value>ಪುಶ್ ಅಧಿಸೂಚನೆಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಬಿಟ್‌ವಾರ್ಡನ್ ನಿಮ್ಮ ವಾಲ್ಟ್ ಅನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸಿಂಕ್ ಮಾಡುತ್ತದೆ. ಸಾಧ್ಯವಾದಷ್ಟು ಉತ್ತಮ ಅನುಭವಕ್ಕಾಗಿ, ಪುಶ್ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ಕೇಳಿದಾಗ ದಯವಿಟ್ಟು ಈ ಕೆಳಗಿನ ಪ್ರಾಂಪ್ಟಿನಲ್ಲಿ "ಅನುಮತಿಸು" ಆಯ್ಕೆಮಾಡಿ.</value>
<comment>Push notifications for apple products</comment>
</data>
<data name="RateTheApp" xml:space="preserve">
<value>ಈ ಆಪ್‍ಗೆ ರೇಟ್ ನೀಡಿ</value>
</data>
<data name="RateTheAppDescription" xml:space="preserve">
<value>ಉತ್ತಮ ವಿಮರ್ಶೆಯೊಂದಿಗೆ ನಮಗೆ ಸಹಾಯ ಮಾಡಲು ದಯವಿಟ್ಟು ಪರಿಗಣಿಸಿ!</value>
</data>
<data name="RegeneratePassword" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಪುನರುತ್ಪಾದಿಸಿ</value>
</data>
<data name="RetypeMasterPassword" xml:space="preserve">
<value>ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರು-ಟೈಪ್ ಮಾಡಿ</value>
</data>
<data name="SearchVault" xml:space="preserve">
<value>ವಾಲ್ಟ್ ಹುಡುಕಿ</value>
</data>
<data name="Security" xml:space="preserve">
<value>ಭದ್ರತೆ</value>
</data>
<data name="Select" xml:space="preserve">
<value>ಆಯ್ಕೆಮಾಡಿ</value>
</data>
<data name="SetPIN" xml:space="preserve">
<value>ಪಿನ್‌ ಸೆಟ್ ಮಾಡಿ</value>
</data>
<data name="SetPINDirection" xml:space="preserve">
<value>ಇದರೊಂದಿಗೆ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಅನ್ಲಾಕ್ ಮಾಡಲು 4 ಅಂಕಿಯ ಪಿನ್ ಕೋಡ್ ನಮೂದಿಸಿ.</value>
</data>
<data name="ItemInformation" xml:space="preserve">
<value>ಐಟಂ ಮಾಹಿತಿ</value>
</data>
<data name="ItemUpdated" xml:space="preserve">
<value>ಐಟಂ ನವೀಕರಿಸಲಾಗಿದೆ.</value>
</data>
<data name="Submitting" xml:space="preserve">
<value>ಸಲ್ಲಿಸಲು...</value>
<comment>Message shown when interacting with the server</comment>
</data>
<data name="Syncing" xml:space="preserve">
<value>ಸಿಂಕ್ ಆಗುತ್ತಿದೆ...</value>
<comment>Message shown when interacting with the server</comment>
</data>
<data name="SyncingComplete" xml:space="preserve">
<value>ಸಿಂಕ್ ಮುಗಿದಿದೆ</value>
</data>
<data name="SyncingFailed" xml:space="preserve">
<value>ಸಿಂಕ್ ವಿಫಲಗೊಂಡಿದೆ</value>
</data>
<data name="SyncVaultNow" xml:space="preserve">
<value>ವಾಲ್ಟ್ ಅನ್ನು ಈಗ ಸಿಂಕ್ ಮಾಡಿ</value>
</data>
<data name="TouchID" xml:space="preserve">
<value>ಟಚ್ ಐಡಿ</value>
<comment>What Apple calls their fingerprint reader.</comment>
</data>
<data name="TwoStepLogin" xml:space="preserve">
<value>ಎರಡು ಹಂತದ ಲಾಗಿನ್</value>
</data>
<data name="UnlockWith" xml:space="preserve">
<value>{0} ನೊಂದಿಗೆ ಅನ್ಲಾಕ್ ಮಾಡಿ</value>
</data>
<data name="UnlockWithPIN" xml:space="preserve">
<value>ಪಿನ್ ಕೋಡ್‌ನೊಂದಿಗೆ ಅನ್ಲಾಕ್ ಮಾಡಿ</value>
</data>
<data name="Validating" xml:space="preserve">
<value>ಮೌಲ್ಯೀಕರಿಸಲಾಗುತ್ತಿದೆ</value>
<comment>Message shown when interacting with the server</comment>
</data>
<data name="VerificationCode" xml:space="preserve">
<value>ಪರಿಶೀಲನಾ ಕೋಡ್‌ಗಳು</value>
</data>
<data name="ViewItem" xml:space="preserve">
<value>ಐಟಂ ವೀಕ್ಷಿಸಿ</value>
</data>
<data name="WebVault" xml:space="preserve">
<value>ಬಿಟ್ವಾರ್ಡೆನ್ ವೆಬ್ ವಾಲ್ಟ್</value>
</data>
<data name="Lost2FAApp" xml:space="preserve">
<value>ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ ಕಳೆದುಹೋಗಿದೆಯೇ?</value>
</data>
<data name="Items" xml:space="preserve">
<value>ಐಟಂಗಳು</value>
<comment>Screen title</comment>
</data>
<data name="ExtensionActivated" xml:space="preserve">
<value>ವಿಸ್ತರಣೆ ಸಕ್ರಿಯಗೊಂಡಿದೆ!</value>
</data>
<data name="Icons" xml:space="preserve">
<value>ಐಕಾನ್‌ಗಳು</value>
</data>
<data name="Translations" xml:space="preserve">
<value>ಅನುವಾದಗಳು</value>
</data>
<data name="ItemsForUri" xml:space="preserve">
<value>{0}ಗಾಗಿ ಐಟಂಗಳು</value>
<comment>This is used for the autofill service. ex. "Logins for twitter.com"</comment>
</data>
<data name="NoItemsForUri" xml:space="preserve">
<value>{0} ಗೆ ನಿಮ್ಮ ವಾಲ್ಟ್‌ನಲ್ಲಿ ಯಾವುದೇ ಐಟಂಗಳಿಲ್ಲ.</value>
<comment>This is used for the autofill service. ex. "There are no items in your vault for twitter.com".</comment>
</data>
<data name="BitwardenAutofillServiceOverlay" xml:space="preserve">
<value>ನೀವು ಇನ್ಪುಟ್ ಕ್ಷೇತ್ರವನ್ನು ಆಯ್ಕೆ ಮಾಡಿದಾಗ ಮತ್ತು ಬಿಟ್ವಾರ್ಡೆನ್ ಸ್ವಯಂ-ಭರ್ತಿ ಓವರ್ಲೇ ಅನ್ನು ನೋಡಿದಾಗ, ಸ್ವಯಂ-ಭರ್ತಿ ಸೇವೆಯನ್ನು ಪ್ರಾರಂಭಿಸಲು ನೀವು ಅದನ್ನು ಟ್ಯಾಪ್ ಮಾಡಬಹುದು.</value>
</data>
<data name="BitwardenAutofillServiceNotificationContent" xml:space="preserve">
<value>ನಿಮ್ಮ ವಾಲ್ಟ್‌ನಿಂದ ಐಟಂ ಅನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ತುಂಬಲು ಈ ಅಧಿಸೂಚನೆಯನ್ನು ಟ್ಯಾಪ್ ಮಾಡಿ.</value>
</data>
<data name="BitwardenAutofillServiceOpenAccessibilitySettings" xml:space="preserve">
<value>ಪ್ರವೇಶಿಸುವಿಕೆ ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ತೆರೆಯಿರಿ</value>
</data>
<data name="BitwardenAutofillServiceStep1" xml:space="preserve">
<value>1. ಆಂಡ್ರಾಯ್ಡ್ ಪ್ರವೇಶಿಸುವಿಕೆ ಸೆಟ್ಟಿಂಗ್‌ಗಳ ಪರದೆಯಲ್ಲಿ, ಸೇವೆಗಳ ಶೀರ್ಷಿಕೆಯಡಿಯಲ್ಲಿ "ಬಿಟ್‌ವಾರ್ಡನ್" ಸ್ಪರ್ಶಿಸಿ.</value>
</data>
<data name="BitwardenAutofillServiceStep2" xml:space="preserve">
<value>2. ಟಾಗಲ್ ಆನ್ ಮಾಡಿ ಮತ್ತು ಸ್ವೀಕರಿಸಲು ಸರಿ ಒತ್ತಿರಿ.</value>
</data>
<data name="Disabled" xml:space="preserve">
<value>ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ</value>
</data>
<data name="Enabled" xml:space="preserve">
<value>ಸಕ್ರಿಯಗೊಳಿಸಿದೆ</value>
</data>
<data name="Off" xml:space="preserve">
<value>Off</value>
</data>
<data name="On" xml:space="preserve">
<value>On</value>
</data>
<data name="Status" xml:space="preserve">
<value>ಸ್ಥಿತಿ</value>
</data>
<data name="BitwardenAutofillServiceAlert2" xml:space="preserve">
<value>ನಿಮ್ಮ ವಾಲ್ಟ್‌ಗೆ ಹೊಸ ಲಾಗಿನ್‌ಗಳನ್ನು ಸೇರಿಸಲು ಸುಲಭವಾದ ಮಾರ್ಗವೆಂದರೆ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಸ್ವಯಂ-ಭರ್ತಿ ಸೇವೆಯಿಂದ. "ಸೆಟ್ಟಿಂಗ್‌ಗಳು" ಪರದೆಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡುವ ಮೂಲಕ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಸ್ವಯಂ-ಭರ್ತಿ ಸೇವೆಯನ್ನು ಬಳಸುವ ಬಗ್ಗೆ ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ.</value>
</data>
<data name="Autofill" xml:space="preserve">
<value>ಸ್ವಯಂ ಭರ್ತಿ</value>
</data>
<data name="AutofillOrView" xml:space="preserve">
<value>ಈ ಐಟಂ ಅನ್ನು ಸ್ವಯಂ ಭರ್ತಿ ಮಾಡಲು ಅಥವಾ ವೀಕ್ಷಿಸಲು ನೀವು ಬಯಸುವಿರಾ?</value>
</data>
<data name="BitwardenAutofillServiceMatchConfirm" xml:space="preserve">
<value>ಈ ಐಟಂ ಅನ್ನು ಸ್ವಯಂ ತುಂಬಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ? ಇದು "{0}" ಗೆ ಸಂಪೂರ್ಣ ಹೊಂದಾಣಿಕೆಯಾಗಿಲ್ಲ.</value>
</data>
<data name="MatchingItems" xml:space="preserve">
<value>ಹೊಂದಾಣಿಕೆಯ ವಸ್ತುಗಳು</value>
</data>
<data name="PossibleMatchingItems" xml:space="preserve">
<value>ಹೊಂದಾಣಿಕೆಯ ವಸ್ತುಗಳು</value>
</data>
<data name="Search" xml:space="preserve">
<value>ಹುಡುಕಿ </value>
</data>
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
<value>ನೀವು "{0}" ಗಾಗಿ ಸ್ವಯಂ-ಭರ್ತಿ ಐಟಂ ಅನ್ನು ಹುಡುಕುತ್ತಿದ್ದೀರಿ.</value>
</data>
<data name="LearnOrg" xml:space="preserve">
<value>Learn about organizations</value>
</data>
<data name="CannotOpenApp" xml:space="preserve">
<value>"{0}" ಅಪ್ಲಿಕೇಶನ್ ತೆರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ.</value>
<comment>Message shown when trying to launch an app that does not exist on the user's device.</comment>
</data>
<data name="AuthenticatorAppTitle" xml:space="preserve">
<value>ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್</value>
<comment>For 2FA</comment>
</data>
<data name="EnterVerificationCodeApp" xml:space="preserve">
<value>ನಿಮ್ಮ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್‌ನಿಂದ 6 ಅಂಕಿಯ ಪರಿಶೀಲನಾ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸಿ.</value>
<comment>For 2FA</comment>
</data>
<data name="EnterVerificationCodeEmail" xml:space="preserve">
<value>{0} ಇಮೇಲ್ ಮಾಡಲಾದ 6 ಅಂಕಿಯ ಪರಿಶೀಲನಾ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸಿ.</value>
<comment>For 2FA</comment>
</data>
<data name="LoginUnavailable" xml:space="preserve">
<value>ಲಾಗಿನ್ ಲಭ್ಯವಿಲ್ಲ</value>
<comment>For 2FA whenever there are no available providers on this device.</comment>
</data>
<data name="NoTwoStepAvailable" xml:space="preserve">
<value>ಈ ಖಾತೆಯು ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದೆ, ಆದಾಗ್ಯೂ, ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾದ ಎರಡು-ಹಂತದ ಪೂರೈಕೆದಾರರಲ್ಲಿ ಯಾರೂ ಈ ಸಾಧನದಲ್ಲಿ ಬೆಂಬಲಿಸುವುದಿಲ್ಲ. ದಯವಿಟ್ಟು ಬೆಂಬಲಿತ ಸಾಧನವನ್ನು ಬಳಸಿ ಮತ್ತು / ಅಥವಾ ಸಾಧನಗಳಲ್ಲಿ ಉತ್ತಮವಾಗಿ ಬೆಂಬಲಿಸುವ ಹೆಚ್ಚುವರಿ ಪೂರೈಕೆದಾರರನ್ನು ಸೇರಿಸಿ (ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್‌ನಂತಹ).</value>
</data>
<data name="RecoveryCodeTitle" xml:space="preserve">
<value>ಮರುಪಡೆಯುವಿಕೆ ಕೋಡ್</value>
<comment>For 2FA</comment>
</data>
<data name="RememberMe" xml:space="preserve">
<value>ನನ್ನನ್ನು ನೆನಪಿನಲ್ಲಿ ಇಡು</value>
<comment>Remember my two-step login</comment>
</data>
<data name="SendVerificationCodeAgain" xml:space="preserve">
<value>ಪರಿಶೀಲನೆ ಕೋಡ್ ಇಮೇಲ್ ಅನ್ನು ಮತ್ತೆ ಕಳುಹಿಸಿ</value>
<comment>For 2FA</comment>
</data>
<data name="TwoStepLoginOptions" xml:space="preserve">
<value>ಎರಡು ಹಂತದ ಲಾಗಿನ್ ಆಯ್ಕೆಗಳು</value>
</data>
<data name="UseAnotherTwoStepMethod" xml:space="preserve">
<value>ಮತ್ತೊಂದು ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ವಿಧಾನವನ್ನು ಬಳಸಿ</value>
</data>
<data name="VerificationEmailNotSent" xml:space="preserve">
<value>ಪರಿಶೀಲನೆ ಇಮೇಲ್ ಕಳುಹಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ. ಮತ್ತೆ ಪ್ರಯತ್ನಿಸು.</value>
<comment>For 2FA</comment>
</data>
<data name="VerificationEmailSent" xml:space="preserve">
<value>ಪರಿಶೀಲನೆ ಇಮೇಲ್‌ ಕಳುಹಿಸಲಾಗಿದೆ</value>
<comment>For 2FA</comment>
</data>
<data name="YubiKeyInstruction" xml:space="preserve">
<value>ಮುಂದುವರೆಯಲು, ಸಾಧನದ ಹಿಂಭಾಗದಲ್ಲಿ ನಿಮ್ಮ ಯೂಬಿಕೆ ಎನ್ಇಒ ಅನ್ನು ಹಿಡಿದುಕೊಳ್ಳಿ ಅಥವಾ ನಿಮ್ಮ ಯುಬಿಕಿಯನ್ನು ನಿಮ್ಮ ಸಾಧನದ ಯುಎಸ್ಬಿ ಪೋರ್ಟ್ಗೆ ಸೇರಿಸಿ, ನಂತರ ಅದರ ಗುಂಡಿಯನ್ನು ಸ್ಪರ್ಶಿಸಿ.</value>
</data>
<data name="YubiKeyTitle" xml:space="preserve">
<value>ಯುಬಿಕೆ ಭದ್ರತಾ ಕೀ</value>
<comment>"YubiKey" is the product name and should not be translated.</comment>
</data>
<data name="AddNewAttachment" xml:space="preserve">
<value>ಹೊಸ ಲಗತ್ತನ್ನು ಸೇರಿಸಿ</value>
</data>
<data name="Attachments" xml:space="preserve">
<value>ಲಗತ್ತುಗಳು</value>
</data>
<data name="UnableToDownloadFile" xml:space="preserve">
<value>ಫೈಲ್ ಡೌನ್‌ಲೋಡ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ.</value>
</data>
<data name="UnableToOpenFile" xml:space="preserve">
<value>ನಿಮ್ಮ ಸಾಧನವು ಈ ರೀತಿಯ ಫೈಲ್ ಅನ್ನು ತೆರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ.</value>
</data>
<data name="Downloading" xml:space="preserve">
<value>ಡೌನ್‌ಲೋಡ್ ಆಗುತ್ತಿದೆ…</value>
<comment>Message shown when downloading a file</comment>
</data>
<data name="AttachmentLargeWarning" xml:space="preserve">
<value>ಈ ಲಗತ್ತು {0} ಗಾತ್ರದಲ್ಲಿದೆ. ನಿಮ್ಮ ಸಾಧನದಲ್ಲಿ ಅದನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?</value>
<comment>The placeholder will show the file size of the attachment. Ex "25 MB"</comment>
</data>
<data name="AuthenticatorKey" xml:space="preserve">
<value>ದೃಢೀಕರಣ ಕೀ (TOTP)</value>
</data>
<data name="VerificationCodeTotp" xml:space="preserve">
<value>ಪರಿಶೀಲನಾ ಕೋಡ್‌ಗಳು</value>
<comment>Totp code label</comment>
</data>
<data name="AuthenticatorKeyAdded" xml:space="preserve">
<value>ದೃಢೀಕರಣ ಕೀ (TOTP)</value>
</data>
<data name="AuthenticatorKeyReadError" xml:space="preserve">
<value>ದೃಢೀಕರಣ ಕೀಲಿಯನ್ನು ಓದಲಾಗುವುದಿಲ್ಲ.</value>
</data>
<data name="PointYourCameraAtTheQRCode" xml:space="preserve">
<value>Point your camera at the QR Code.
Scanning will happen automatically.</value>
</data>
<data name="ScanQrTitle" xml:space="preserve">
<value>QR ಕೋಡ್‌ ಸ್ಕ್ಯಾನ್‌ ಮಾಡಿ</value>
</data>
<data name="Camera" xml:space="preserve">
<value>ಕ್ಯಾಮರಾ</value>
</data>
<data name="Photos" xml:space="preserve">
<value>ಫೋಟೋಗಳು</value>
</data>
<data name="CopyTotp" xml:space="preserve">
<value>TOTP ಅನ್ನು ನಕಲಿಸಿ</value>
</data>
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
<value>If a login has an authenticator key, copy the TOTP verification code to your clipboard when you auto-fill the login.</value>
</data>
<data name="CopyTotpAutomatically" xml:space="preserve">
<value>Copy TOTP automatically</value>
</data>
<data name="PremiumRequired" xml:space="preserve">
<value>ಈ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲು ಪ್ರೀಮಿಯಂ ಸದಸ್ಯತ್ವ ಅಗತ್ಯವಿದೆ.</value>
</data>
<data name="AttachementAdded" xml:space="preserve">
<value>ಲಗತ್ತು ಸೇರಿಸಲಾಗಿದೆ</value>
</data>
<data name="AttachmentDeleted" xml:space="preserve">
<value>ಲಗತ್ತು ಅಳಿಸಲಾಗಿದೆ</value>
</data>
<data name="ChooseFile" xml:space="preserve">
<value>ಫೈಲ್ ಆಯ್ಕೆ</value>
</data>
<data name="File" xml:space="preserve">
<value>ಫೈಲ್</value>
</data>
<data name="NoFileChosen" xml:space="preserve">
<value>ಯಾವ ಫೈಲನ್ನು ಆರಿಸಿಲ್ಲ</value>
</data>
<data name="NoAttachments" xml:space="preserve">
<value>ಯಾವುದೇ ಲಗತ್ತುಗಳಿಲ್ಲ.</value>
</data>
<data name="FileSource" xml:space="preserve">
<value>ಫೈಲ್ ಮೂಲ</value>
</data>
<data name="FeatureUnavailable" xml:space="preserve">
<value>ವೈಶಿಷ್ಟ್ಯ ಲಭ್ಯವಿಲ್ಲ</value>
</data>
<data name="MaxFileSize" xml:space="preserve">
<value>ಗರಿಷ್ಠ ಫೈಲ್ ಗಾತ್ರ 100 ಎಂಬಿ.</value>
</data>
<data name="UpdateKey" xml:space="preserve">
<value>ನಿಮ್ಮ ಎನ್‌ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ನವೀಕರಿಸುವವರೆಗೆ ನೀವು ಈ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲಾಗುವುದಿಲ್ಲ.</value>
</data>
<data name="EncryptionKeyMigrationRequiredDescriptionLong" xml:space="preserve">
<value>Encryption key migration required. Please login through the web vault to update your encryption key.</value>
</data>
<data name="LearnMore" xml:space="preserve">
<value>ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ</value>
</data>
<data name="ApiUrl" xml:space="preserve">
<value>API ಸರ್ವರ್ URL</value>
</data>
<data name="CustomEnvironment" xml:space="preserve">
<value>ಕಸ್ಟಮ್ ಪರಿಸರ</value>
</data>
<data name="CustomEnvironmentFooter" xml:space="preserve">
<value>ಸುಧಾರಿತ ಬಳಕೆದಾರರಿಗಾಗಿ. ನೀವು ಪ್ರತಿ ಸೇವೆಯ ಮೂಲ URL ಅನ್ನು ಸ್ವತಂತ್ರವಾಗಿ ನಿರ್ದಿಷ್ಟಪಡಿಸಬಹುದು.</value>
</data>
<data name="EnvironmentSaved" xml:space="preserve">
<value>ಪರಿಸರ URL ಗಳನ್ನು ಉಳಿಸಲಾಗಿದೆ.</value>
</data>
<data name="FormattedIncorrectly" xml:space="preserve">
<value>{0} ಅನ್ನು ಸರಿಯಾಗಿ ಫಾರ್ಮ್ಯಾಟ್ ಮಾಡಲಾಗಿಲ್ಲ.</value>
<comment>Validation error when something is not formatted correctly, such as a URL or email address.</comment>
</data>
<data name="IdentityUrl" xml:space="preserve">
<value>ಗುರುತಿನ ಸರ್ವರ್ URL</value>
<comment>"Identity" refers to an identity server. See more context here https://en.wikipedia.org/wiki/Identity_management</comment>
</data>
<data name="SelfHostedEnvironment" xml:space="preserve">
<value>ಸ್ವಯಂ ಆತಿಥೇಯ ಪರಿಸರ</value>
</data>
<data name="SelfHostedEnvironmentFooter" xml:space="preserve">
<value>ನಿಮ್ಮ ಆನ್-ಪ್ರಮೇಯ ಹೋಸ್ಟ್ ಮಾಡಿದ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಸ್ಥಾಪನೆಯ ಮೂಲ URL ಅನ್ನು ನಿರ್ದಿಷ್ಟಪಡಿಸಿ.</value>
</data>
<data name="ServerUrl" xml:space="preserve">
<value>ಸರ್ವರ್ URL</value>
</data>
<data name="WebVaultUrl" xml:space="preserve">
<value>ವೆಬ್ ವಾಲ್ಟ್ ಸರ್ವರ್ URL</value>
</data>
<data name="BitwardenAutofillServiceNotificationContentOld" xml:space="preserve">
<value>ನಿಮ್ಮ ವಾಲ್ಟ್‌ನಿಂದ ವಸ್ತುಗಳನ್ನು ವೀಕ್ಷಿಸಲು ಈ ಅಧಿಸೂಚನೆಯನ್ನು ಟ್ಯಾಪ್ ಮಾಡಿ.</value>
</data>
<data name="CustomFields" xml:space="preserve">
<value>ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರಗಳು</value>
</data>
<data name="CopyNumber" xml:space="preserve">
<value>ನಕಲು ಸಂಖ್ಯೆ</value>
</data>
<data name="CopySecurityCode" xml:space="preserve">
<value>ಭದ್ರತಾ ಕೋಡ್ ಅನ್ನು ನಕಲಿಸಿ</value>
</data>
<data name="Number" xml:space="preserve">
<value>ಸಂಖ್ಯೆ</value>
</data>
<data name="SecurityCode" xml:space="preserve">
<value>ಭದ್ರತಾ ಕೋಡ್ </value>
</data>
<data name="TypeCard" xml:space="preserve">
<value>ಕಾರ್ಡ್</value>
</data>
<data name="TypeIdentity" xml:space="preserve">
<value>ಗುರುತಿಸುವಿಕೆ</value>
</data>
<data name="TypeLogin" xml:space="preserve">
<value>ಲಾಗಿನ್</value>
</data>
<data name="TypeSecureNote" xml:space="preserve">
<value>ಸುರಕ್ಷಿತ ಟಿಪ್ಪಣಿ</value>
</data>
<data name="Address1" xml:space="preserve">
<value>ವಿಳಾಸ 1</value>
</data>
<data name="Address2" xml:space="preserve">
<value>ವಿಳಾಸ 2</value>
</data>
<data name="Address3" xml:space="preserve">
<value>ವಿಳಾಸ 3</value>
</data>
<data name="April" xml:space="preserve">
<value>ಏಪ್ರಿಲ್</value>
</data>
<data name="August" xml:space="preserve">
<value>ಆಗಸ್ಟ್</value>
</data>
<data name="Brand" xml:space="preserve">
<value>ಬ್ರ್ಯಾಂಡ್</value>
</data>
<data name="CardholderName" xml:space="preserve">
<value>ಕಾರ್ಡುದಾರನ ಹೆಸರು</value>
</data>
<data name="CityTown" xml:space="preserve">
<value>ನಗರ / ಪಟ್ಟಣ</value>
</data>
<data name="Company" xml:space="preserve">
<value>ಕಂಪನಿ</value>
</data>
<data name="Country" xml:space="preserve">
<value>ದೇಶ</value>
</data>
<data name="December" xml:space="preserve">
<value>ಡಿಸೆಂಬರ್</value>
</data>
<data name="Dr" xml:space="preserve">
<value>Dr</value>
</data>
<data name="ExpirationMonth" xml:space="preserve">
<value>ಮುಕ್ತಾಯ ತಿಂಗಳು</value>
</data>
<data name="ExpirationYear" xml:space="preserve">
<value>ಮುಕ್ತಾಯ ವರ್ಷ</value>
</data>
<data name="February" xml:space="preserve">
<value>ಫೆಬ್ರವರಿ</value>
</data>
<data name="FirstName" xml:space="preserve">
<value>ಮೊದಲ ಹೆಸರು</value>
</data>
<data name="January" xml:space="preserve">
<value>ಜನವರಿ</value>
</data>
<data name="July" xml:space="preserve">
<value>ಜುಲೈ</value>
</data>
<data name="June" xml:space="preserve">
<value>ಜೂನ್</value>
</data>
<data name="LastName" xml:space="preserve">
<value>ಕೊನೆ ಹೆಸರು</value>
</data>
<data name="FullName" xml:space="preserve">
<value>Full name</value>
</data>
<data name="LicenseNumber" xml:space="preserve">
<value>ಪರವಾನಗಿ ಸಂಖ್ಯೆ</value>
</data>
<data name="March" xml:space="preserve">
<value>ಮಾರ್ಚ್</value>
</data>
<data name="May" xml:space="preserve">
<value>ಮೇ</value>
</data>
<data name="MiddleName" xml:space="preserve">
<value>ಮಧ್ಯದ ಹೆಸರು</value>
</data>
<data name="Mr" xml:space="preserve">
<value>ಶ್ರೀ</value>
</data>
<data name="Mrs" xml:space="preserve">
<value>ಶ್ರೀಮತಿ</value>
</data>
<data name="Ms" xml:space="preserve">
<value>ಎಂ.ಎಸ್</value>
</data>
<data name="Mx" xml:space="preserve">
<value>Mx</value>
</data>
<data name="November" xml:space="preserve">
<value>ನವೆಂಬರ್</value>
</data>
<data name="October" xml:space="preserve">
<value>ಅಕ್ಟೋಬರ್</value>
</data>
<data name="PassportNumber" xml:space="preserve">
<value>ಪಾಸ್ಪೋರ್ಟ್ ಸಂಖ್ಯೆ</value>
</data>
<data name="Phone" xml:space="preserve">
<value>ಫೋನ್‌</value>
</data>
<data name="September" xml:space="preserve">
<value>ಸೆಪ್ಟೆಂಬರ್</value>
</data>
<data name="SSN" xml:space="preserve">
<value>ಸಾಮಾಜಿಕ ಭದ್ರತೆ ಸಂಖ್ಯೆ</value>
</data>
<data name="StateProvince" xml:space="preserve">
<value>ರಾಜ್ಯ / ಪ್ರಾಂತ್ಯ</value>
</data>
<data name="Title" xml:space="preserve">
<value>ಶೀರ್ಷಿಕೆ</value>
</data>
<data name="ZipPostalCode" xml:space="preserve">
<value>ಪಿನ್ / ಅಂಚೆ ಕೋಡ್</value>
</data>
<data name="Address" xml:space="preserve">
<value>ವಿಳಾಸ </value>
</data>
<data name="Expiration" xml:space="preserve">
<value>ಮುಕ್ತಾಯ</value>
</data>
<data name="ShowWebsiteIcons" xml:space="preserve">
<value>Show website icons</value>
</data>
<data name="ShowWebsiteIconsDescription" xml:space="preserve">
<value>Show a recognizable image next to each login.</value>
</data>
<data name="IconsUrl" xml:space="preserve">
<value>ಚಿಹ್ನೆಗಳು ಸರ್ವರ್ URL</value>
</data>
<data name="AutofillWithBitwarden" xml:space="preserve">
<value>ಬಿಟ್‌ವಾರ್ಡೆನ್‌ನೊಂದಿಗೆ ಸ್ವಯಂ ಭರ್ತಿ ಮಾಡಿ</value>
</data>
<data name="VaultIsLocked" xml:space="preserve">
<value>ವಾಲ್ಟ್ ಲಾಕ್ ಆಗಿದೆ</value>
</data>
<data name="GoToMyVault" xml:space="preserve">
<value>ನನ್ನ ವಾಲ್ಟ್ಗೆ ಹೋಗಿ</value>
</data>
<data name="Collections" xml:space="preserve">
<value>ಸಂಗ್ರಹಣೆಗಳು</value>
</data>
<data name="NoItemsCollection" xml:space="preserve">
<value>ಈ ಸಂಗ್ರಹಣೆಯಲ್ಲಿ ಯಾವುದೇ ಐಟಂಗಳಿಲ್ಲ.</value>
</data>
<data name="NoItemsFolder" xml:space="preserve">
<value>ಈ ಫೋಲ್ಡರ್‌ನಲ್ಲಿ ಯಾವುದೇ ಐಟಂಗಳಿಲ್ಲ.</value>
</data>
<data name="NoItemsTrash" xml:space="preserve">
<value>ಅನುಪಯುಕ್ತದಲ್ಲಿ ಯಾವುದೇ ವಸ್ತುಗಳು ಇಲ್ಲ.</value>
</data>
<data name="AutofillAccessibilityService" xml:space="preserve">
<value>ಸ್ವಯಂ-ಭರ್ತಿ ಪ್ರವೇಶ ಸೇವೆ</value>
</data>
<data name="AutofillServiceDescription" xml:space="preserve">
<value>ನಿಮ್ಮ ಸಾಧನದಲ್ಲಿನ ಇತರ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಗೆ ಲಾಗಿನ್‌ಗಳು, ಕ್ರೆಡಿಟ್ ಕಾರ್ಡ್‌ಗಳು ಮತ್ತು ಗುರುತಿನ ಮಾಹಿತಿಯನ್ನು ಭರ್ತಿ ಮಾಡಲು ಸಹಾಯ ಮಾಡಲು ಬಿಟ್‌ವಾರ್ಡೆನ್ ಸ್ವಯಂ-ಭರ್ತಿ ಸೇವೆ ಆಂಡ್ರಾಯ್ಡ್ ಆಟೋಫಿಲ್ ಫ್ರೇಮ್‌ವರ್ಕ್ ಅನ್ನು ಬಳಸುತ್ತದೆ.</value>
</data>
<data name="BitwardenAutofillServiceDescription" xml:space="preserve">
<value>ಲಾಗಿನ್‌ಗಳು, ಕ್ರೆಡಿಟ್ ಕಾರ್ಡ್‌ಗಳು ಮತ್ತು ಗುರುತಿನ ಮಾಹಿತಿಯನ್ನು ಇತರ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಲ್ಲಿ ತುಂಬಲು ಬಿಟ್‌ವಾರ್ಡೆನ್ ಸ್ವಯಂ-ಭರ್ತಿ ಸೇವೆಯನ್ನು ಬಳಸಿ.</value>
</data>
<data name="BitwardenAutofillServiceOpenAutofillSettings" xml:space="preserve">
<value>ಆಟೋಫಿಲ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ತೆರೆಯಿರಿ</value>
</data>
<data name="FaceID" xml:space="preserve">
<value>ಫೇಸ್ ಐಡಿ</value>
<comment>What Apple calls their facial recognition reader.</comment>
</data>
<data name="FaceIDDirection" xml:space="preserve">
<value>ಪರಿಶೀಲಿಸಲು ಫೇಸ್ ಐಡಿ ಬಳಸಿ.</value>
</data>
<data name="UseFaceIDToUnlock" xml:space="preserve">
<value>ಅನ್ಲಾಕ್ ಮಾಡಲು ಫೇಸ್ ಐಡಿ ಬಳಸಿ</value>
</data>
<data name="VerifyFaceID" xml:space="preserve">
<value>ಫೇಸ್ ಐಡಿ ಪರಿಶೀಲಿಸಿ</value>
</data>
<data name="WindowsHello" xml:space="preserve">
<value>ವಿಂಡೋಸ್ ಹಲೋ</value>
</data>
<data name="BitwardenAutofillGoToSettings" xml:space="preserve">
<value>ನಿಮಗಾಗಿ Android ಆಟೋಫಿಲ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳ ಮೆನುವನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ತೆರೆಯಲು ನಮಗೆ ಸಾಧ್ಯವಾಗಲಿಲ್ಲ. ನೀವು Android ಸೆಟ್ಟಿಂಗ್‌ಗಳಿಂದ ಹಸ್ತಚಾಲಿತವಾಗಿ ಆಟೋಫಿಲ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳ ಮೆನುಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಬಹುದು &gt; ಸಿಸ್ಟಮ್ &gt; ಭಾಷೆಗಳು ಮತ್ತು ಇನ್ಪುಟ್ &gt; ಸುಧಾರಿತ &gt; ಆಟೋಫಿಲ್ ಸೇವೆ.</value>
</data>
<data name="CustomFieldName" xml:space="preserve">
<value>ಕಸ್ಟಮ್ಫೀಲ್ಡ್ ನೇಮ್</value>
</data>
<data name="FieldTypeBoolean" xml:space="preserve">
<value>ಬೂಲಿಯನ್</value>
</data>
<data name="FieldTypeHidden" xml:space="preserve">
<value>ಮರೆಮಾಡಲಾಗಿದೆ</value>
</data>
<data name="FieldTypeLinked" xml:space="preserve">
<value>Linked</value>
</data>
<data name="FieldTypeText" xml:space="preserve">
<value>ಪಠ್ಯ</value>
</data>
<data name="NewCustomField" xml:space="preserve">
<value>ಹೊಸ ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರ</value>
</data>
<data name="SelectTypeField" xml:space="preserve">
<value>ನೀವು ಯಾವ ರೀತಿಯ ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರವನ್ನು ಸೇರಿಸಲು ಬಯಸುತ್ತೀರಿ?</value>
</data>
<data name="Remove" xml:space="preserve">
<value>ತೆಗೆ</value>
</data>
<data name="NewUri" xml:space="preserve">
<value>ಹೊಸ ಯುಆರ್ಐ</value>
</data>
<data name="URIPosition" xml:space="preserve">
<value>ಯುಆರ್ಐ {0}</value>
<comment>Label for a uri/url with position. i.e. URI 1, URI 2, etc</comment>
</data>
<data name="BaseDomain" xml:space="preserve">
<value>ಮೂಲ ಡೊಮೇನ್</value>
</data>
<data name="Default" xml:space="preserve">
<value>ಡಿಫಾಲ್ಟ್</value>
</data>
<data name="Exact" xml:space="preserve">
<value>ನಿಖರವಾಗಿ</value>
</data>
<data name="Host" xml:space="preserve">
<value>ಅತಿಥೆಯ</value>
<comment>A URL's host value. For example, the host of https://sub.domain.com:443 is 'sub.domain.com:443'.</comment>
</data>
<data name="RegEx" xml:space="preserve">
<value>ನಿಯಮಿತ ಅಭಿವ್ಯಕ್ತಿ</value>
<comment>A programming term, also known as 'RegEx'.</comment>
</data>
<data name="StartsWith" xml:space="preserve">
<value>ಇದರೊಂದಿಗೆ ಪ್ರಾರಂಭವಾಗುತ್ತದೆ</value>
</data>
<data name="URIMatchDetection" xml:space="preserve">
<value>ಯುಆರ್ಐ ಪಂದ್ಯ ಪತ್ತೆ</value>
</data>
<data name="MatchDetection" xml:space="preserve">
<value>ಹೊಂದಾಣಿಕೆ ಪತ್ತೆ</value>
<comment>URI match detection for auto-fill.</comment>
</data>
<data name="YesAndSave" xml:space="preserve">
<value>ಹೌದು, ಮತ್ತು ಉಳಿಸಿ</value>
</data>
<data name="AutofillAndSave" xml:space="preserve">
<value>ಸ್ವಯಂ ಭರ್ತಿ ಮತ್ತು ಉಳಿಸಿ</value>
</data>
<data name="Organization" xml:space="preserve">
<value>ಸಂಸ್ಥೆ</value>
<comment>An entity of multiple related people (ex. a team or business organization).</comment>
</data>
<data name="HoldYubikeyNearTop" xml:space="preserve">
<value>ನಿಮ್ಮ ಯುಬಿಕಿಯನ್ನು ಸಾಧನದ ಮೇಲ್ಭಾಗದಲ್ಲಿ ಹಿಡಿದುಕೊಳ್ಳಿ.</value>
</data>
<data name="TryAgain" xml:space="preserve">
<value>ಮತ್ತೊಮ್ಮೆ ಪ್ರಯತ್ನಿಸಿ</value>
</data>
<data name="YubiKeyInstructionIos" xml:space="preserve">
<value>ಮುಂದುವರೆಯಲು, ಸಾಧನದ ಹಿಂಭಾಗದಲ್ಲಿ ನಿಮ್ಮ ಯೂಬಿಕೆ ಎನ್ಇಒ ಅನ್ನು ಹಿಡಿದುಕೊಳ್ಳಿ.</value>
</data>
<data name="BitwardenAutofillAccessibilityServiceDescription2" xml:space="preserve">
<value>ಸ್ಟ್ಯಾಂಡರ್ಡ್ ಸ್ವಯಂ-ಭರ್ತಿ ಸೇವೆಯನ್ನು ಅಪ್ಲಿಕೇಶನ್‌ಗಳು ಬೆಂಬಲಿಸದಿದ್ದಾಗ ಬಳಸಲು ಪ್ರವೇಶ ಸೇವೆ ಸಹಾಯವಾಗಬಹುದು.</value>
</data>
<data name="DatePasswordUpdated" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ನವೀಕರಿಸಲಾಗಿದೆ</value>
<comment>ex. Date this password was updated</comment>
</data>
<data name="DateUpdated" xml:space="preserve">
<value>ಅಪ್‌ಡೇಟ್</value>
<comment>ex. Date this item was updated</comment>
</data>
<data name="AutofillActivated" xml:space="preserve">
<value>ಆಟೋಫಿಲ್ ಸಕ್ರಿಯಗೊಂಡಿದೆ!</value>
</data>
<data name="MustLogInMainAppAutofill" xml:space="preserve">
<value>ನೀವು ಆಟೋಫಿಲ್ ಬಳಸುವ ಮೊದಲು ಮುಖ್ಯ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಅಪ್ಲಿಕೇಶನ್‌ಗೆ ಲಾಗ್ ಇನ್ ಆಗಬೇಕು.</value>
</data>
<data name="AutofillSetup" xml:space="preserve">
<value>ಅಪ್ಲಿಕೇಶನ್‌ಗಳು ಮತ್ತು ವೆಬ್‌ಸೈಟ್‌ಗಳಿಗೆ ಲಾಗ್ ಇನ್ ಆಗುವಾಗ ನಿಮ್ಮ ಲಾಗಿನ್‌ಗಳನ್ನು ನಿಮ್ಮ ಕೀಬೋರ್ಡ್‌ನಿಂದ ಸುಲಭವಾಗಿ ಪ್ರವೇಶಿಸಬಹುದು.</value>
</data>
<data name="AutofillSetup2" xml:space="preserve">
<value>We recommend disabling any other AutoFill apps under Settings if you do not plan to use them.</value>
</data>
<data name="BitwardenAutofillDescription" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ತ್ವರಿತವಾಗಿ ಸ್ವಯಂ ತುಂಬಲು ನಿಮ್ಮ ಕೀಲಿಮಣೆಯಿಂದ ನೇರವಾಗಿ ನಿಮ್ಮ ವಾಲ್ಟ್ ಅನ್ನು ಪ್ರವೇಶಿಸಿ.</value>
</data>
<data name="AutofillTurnOn" xml:space="preserve">
<value>ನಿಮ್ಮ ಸಾಧನದಲ್ಲಿ ಪಾಸ್‌ವರ್ಡ್ ಸ್ವಯಂಚಾಲಿತ ಭರ್ತಿ ಮಾಡಲು, ಈ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ:</value>
</data>
<data name="AutofillTurnOn1" xml:space="preserve">
<value>1. ಐಒಎಸ್ "ಸೆಟ್ಟಿಂಗ್ಸ್" ಅಪ್ಲಿಕೇಶನ್‌ಗೆ ಹೋಗಿ</value>
</data>
<data name="AutofillTurnOn2" xml:space="preserve">
<value>2. "ಪಾಸ್‌ವರ್ಡ್‌ಗಳು ಮತ್ತು ಖಾತೆಗಳು" ಟ್ಯಾಪ್ ಮಾಡಿ</value>
</data>
<data name="AutofillTurnOn3" xml:space="preserve">
<value>3. "ಆಟೋಫಿಲ್ ಪಾಸ್‌ವರ್ಡ್‌ಗಳು" ಟ್ಯಾಪ್ ಮಾಡಿ</value>
</data>
<data name="AutofillTurnOn4" xml:space="preserve">
<value>4. ಆಟೋಫಿಲ್ ಆನ್ ಮಾಡಿ</value>
</data>
<data name="AutofillTurnOn5" xml:space="preserve">
<value>5. "ಬಿಟ್ವಾರ್ಡನ್" ಆಯ್ಕೆಮಾಡಿ</value>
</data>
<data name="PasswordAutofill" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ಆಟೋಫಿಲ್</value>
</data>
<data name="BitwardenAutofillAlert2" xml:space="preserve">
<value>ನಿಮ್ಮ ವಾಲ್ಟ್‌ಗೆ ಹೊಸ ಲಾಗಿನ್‌ಗಳನ್ನು ಸೇರಿಸಲು ಸುಲಭವಾದ ಮಾರ್ಗವೆಂದರೆ ಬಿಟ್‌ವರ್ಡ್ ಪಾಸ್‌ವರ್ಡ್ ಆಟೋಫಿಲ್ ವಿಸ್ತರಣೆಯನ್ನು ಬಳಸುವುದು. "ಸೆಟ್ಟಿಂಗ್‌ಗಳು" ಪರದೆಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡುವ ಮೂಲಕ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಪಾಸ್‌ವರ್ಡ್ ಆಟೋಫಿಲ್ ವಿಸ್ತರಣೆಯನ್ನು ಬಳಸುವ ಬಗ್ಗೆ ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ.</value>
</data>
<data name="InvalidEmail" xml:space="preserve">
<value>ಅಮಾನ್ಯ ಇಮೇಲ್ ವಿಳಾಸ.</value>
</data>
<data name="Cards" xml:space="preserve">
<value>ಕಾರ್ಡ್‌ಗಳು</value>
</data>
<data name="Identities" xml:space="preserve">
<value>ಗುರುತುಗಳು</value>
</data>
<data name="Logins" xml:space="preserve">
<value>ಲಾಗಿನ್ಸ್</value>
</data>
<data name="SecureNotes" xml:space="preserve">
<value>ಸುರಕ್ಷಿತ ಟಿಪ್ಪಣಿಗಳು</value>
</data>
<data name="AllItems" xml:space="preserve">
<value>ಎಲ್ಲಾ ವಸ್ತುಗಳು</value>
</data>
<data name="URIs" xml:space="preserve">
<value>ಯುಆರ್ಐಗಳು</value>
<comment>Plural form of a URI</comment>
</data>
<data name="CheckingPassword" xml:space="preserve">
<value>ಪಾಸ್‌ವರ್ಡ್ ಪರಿಶೀಲಿಸುತ್ತಿದೆ…</value>
<comment>A loading message when doing an exposed password check.</comment>
</data>
<data name="CheckPassword" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ಬಹಿರಂಗಗೊಂಡಿದೆಯೇ ಎಂದು ಪರಿಶೀಲಿಸಿ.</value>
</data>
<data name="PasswordExposed" xml:space="preserve">
<value>ಡೇಟಾ ಪಾಸ್‌ಗಳಲ್ಲಿ ಈ ಪಾಸ್‌ವರ್ಡ್ {0} ಸಮಯ (ಗಳು) ಅನ್ನು ಬಹಿರಂಗಪಡಿಸಲಾಗಿದೆ. ನೀವು ಅದನ್ನು ಬದಲಾಯಿಸಬೇಕು.</value>
</data>
<data name="PasswordSafe" xml:space="preserve">
<value>ತಿಳಿದಿರುವ ಯಾವುದೇ ಡೇಟಾ ಉಲ್ಲಂಘನೆಗಳಲ್ಲಿ ಈ ಪಾಸ್‌ವರ್ಡ್ ಕಂಡುಬಂದಿಲ್ಲ. ಅದನ್ನು ಬಳಸಲು ಸುರಕ್ಷಿತವಾಗಿರಬೇಕು.</value>
</data>
<data name="IdentityName" xml:space="preserve">
<value>ಹೆಸರು ಗುರುತು</value>
</data>
<data name="Value" xml:space="preserve">
<value>ಮೌಲ್ಯ</value>
</data>
<data name="PasswordHistory" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ಇತಿಹಾಸ</value>
</data>
<data name="Types" xml:space="preserve">
<value>ರೀತಿಯ</value>
</data>
<data name="NoPasswordsToList" xml:space="preserve">
<value>ಪಟ್ಟಿ ಮಾಡಲು ಪಾಸ್‌ವರ್ಡ್‌ಗಳಿಲ್ಲ.</value>
</data>
<data name="NoItemsToList" xml:space="preserve">
<value>ಪಟ್ಟಿ ಮಾಡಲು ಯಾವುದೇ ಐಟಂಗಳಿಲ್ಲ.</value>
</data>
<data name="SearchCollection" xml:space="preserve">
<value>ಸಂಗ್ರಹಣೆ ಹುಡುಕಿ</value>
</data>
<data name="SearchFileSends" xml:space="preserve">
<value>Search file Sends</value>
</data>
<data name="SearchTextSends" xml:space="preserve">
<value>Search text Sends</value>
</data>
<data name="SearchGroup" xml:space="preserve">
<value>Search {0}</value>
<comment>ex: Search Logins</comment>
</data>
<data name="Type" xml:space="preserve">
<value>ಪ್ರಕಾರ</value>
</data>
<data name="MoveDown" xml:space="preserve">
<value>ಕೆಳಕ್ಕೆ ಸರಿಸು</value>
</data>
<data name="MoveUp" xml:space="preserve">
<value>ಮೇಲಕ್ಕೆ ಸರಿಸಿ</value>
</data>
<data name="Miscellaneous" xml:space="preserve">
<value>ಇತರೆ</value>
</data>
<data name="Ownership" xml:space="preserve">
<value>ಮಾಲೀಕತ್ವ</value>
</data>
<data name="WhoOwnsThisItem" xml:space="preserve">
<value>ಈ ಐಟಂ ಅನ್ನು ಯಾರು ಹೊಂದಿದ್ದಾರೆ?</value>
</data>
<data name="NoCollectionsToList" xml:space="preserve">
<value>ಪಟ್ಟಿ ಮಾಡಲು ಯಾವುದೇ ಸಂಗ್ರಹಗಳಿಲ್ಲ.</value>
</data>
<data name="MovedItemToOrg" xml:space="preserve">
<value>{0} moved to {1}.</value>
<comment>ex: Item moved to Organization.</comment>
</data>
<data name="ItemShared" xml:space="preserve">
<value>ಐಟಂ ಹಂಚಿಕೊಳ್ಳಲಾಗಿದೆ.</value>
</data>
<data name="SelectOneCollection" xml:space="preserve">
<value>ನೀವು ಕನಿಷ್ಠ ಒಂದು ಸಂಗ್ರಹವನ್ನು ಆರಿಸಬೇಕು.</value>
</data>
<data name="Share" xml:space="preserve">
<value>ಹಂಚಿಕೊಳ್ಳಿ</value>
</data>
<data name="ShareItem" xml:space="preserve">
<value>ಐಟಂ ಹಂಚಿಕೊಳ್ಳಿ</value>
</data>
<data name="MoveToOrganization" xml:space="preserve">
<value>Move to Organization</value>
</data>
<data name="NoOrgsToList" xml:space="preserve">
<value>ಪಟ್ಟಿ ಮಾಡಲು ಯಾವುದೇ ಸಂಸ್ಥೆಗಳು ಇಲ್ಲ.</value>
</data>
<data name="MoveToOrgDesc" xml:space="preserve">
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
</data>
<data name="NumberOfWords" xml:space="preserve">
<value>ಪದಗಳ ಸಂಖ್ಯೆ</value>
</data>
<data name="Passphrase" xml:space="preserve">
<value>ಪಾಸ್ಫ್ರೇಸ್</value>
</data>
<data name="WordSeparator" xml:space="preserve">
<value>ಪದ ವಿಭಜಕ</value>
</data>
<data name="Clear" xml:space="preserve">
<value>ಕ್ಲಿಯರ್‌</value>
<comment>To clear something out. example: To clear browser history.</comment>
</data>
<data name="Generator" xml:space="preserve">
<value>ಜನರೇಟರ್</value>
<comment>Short for "Password Generator"</comment>
</data>
<data name="NoFoldersToList" xml:space="preserve">
<value>ಪಟ್ಟಿ ಮಾಡಲು ಯಾವುದೇ ಫೋಲ್ಡರ್‌ಗಳಿಲ್ಲ.</value>
</data>
<data name="FingerprintPhrase" xml:space="preserve">
<value>ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಫ್ರೇಸ್</value>
<comment>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.</comment>
</data>
<data name="YourAccountsFingerprint" xml:space="preserve">
<value>ನಿಮ್ಮ ಖಾತೆಯ ಫಿಂಗರ್‌ಪ್ರಿಂಟ್ ನುಡಿಗಟ್ಟು</value>
<comment>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.</comment>
</data>
<data name="LearnOrgConfirmation" xml:space="preserve">
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
</data>
<data name="ExportVault" xml:space="preserve">
<value>ರಫ್ತು ವಾಲ್ಟ್</value>
</data>
<data name="LockNow" xml:space="preserve">
<value>ಈಗ ಲಾಕ್ ಮಾಡಿ</value>
</data>
<data name="PIN" xml:space="preserve">
<value>ಪಿನ್</value>
</data>
<data name="Unlock" xml:space="preserve">
<value>ಅನ್‌ಲಾಕ್ ಮಾಡಿ</value>
</data>
<data name="UnlockVault" xml:space="preserve">
<value>Unlock vault</value>
</data>
<data name="ThirtyMinutes" xml:space="preserve">
<value>30 ನಿಮಿಷಗಳು</value>
</data>
<data name="SetPINDescription" xml:space="preserve">
<value>ಬಿಟ್‌ವಾರ್ಡೆನ್ ಅನ್ಲಾಕ್ ಮಾಡಲು ನಿಮ್ಮ ಪಿನ್ ಕೋಡ್ ಅನ್ನು ಹೊಂದಿಸಿ. ನೀವು ಎಂದಾದರೂ ಅಪ್ಲಿಕೇಶನ್‌ನಿಂದ ಸಂಪೂರ್ಣವಾಗಿ ಲಾಗ್ out ಟ್ ಆಗಿದ್ದರೆ ನಿಮ್ಮ ಪಿನ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ಮರುಹೊಂದಿಸಲಾಗುತ್ತದೆ.</value>
</data>
<data name="LoggedInAsOn" xml:space="preserve">
<value>{1} ನಲ್ಲಿ {0} ಆಗಿ ಲಾಗ್ ಇನ್ ಮಾಡಲಾಗಿದೆ.</value>
<comment>ex: Logged in as user@example.com on bitwarden.com.</comment>
</data>
<data name="VaultLockedMasterPassword" xml:space="preserve">
<value>ನಿಮ್ಮ ವಾಲ್ಟ್ ಲಾಕ್ ಆಗಿದೆ. ಮುಂದುವರೆಯಲು ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ಪರಿಶೀಲಿಸಿ.</value>
</data>
<data name="VaultLockedPIN" xml:space="preserve">
<value>ನಿಮ್ಮ ವಾಲ್ಟ್ ಲಾಕ್ ಆಗಿದೆ. ಮುಂದುವರೆಯಲು ನಿಮ್ಮ ಪಿನ್ ಕೋಡ್ ಪರಿಶೀಲಿಸಿ.</value>
</data>
<data name="VaultLockedIdentity" xml:space="preserve">
<value>Your vault is locked. Verify your identity to continue.</value>
</data>
<data name="Dark" xml:space="preserve">
<value>ಡಾರ್ಕ್</value>
<comment>A dark color</comment>
</data>
<data name="Light" xml:space="preserve">
<value>ಬೆಳಕು</value>
<comment>A light color</comment>
</data>
<data name="FiveMinutes" xml:space="preserve">
<value>೫ ನಿಮಿಷಗಳು</value>
</data>
<data name="TenSeconds" xml:space="preserve">
<value>೧೦ ಕ್ಷಣ</value>
</data>
<data name="ThirtySeconds" xml:space="preserve">
<value>೩೦ ಕ್ಷಣ</value>
</data>
<data name="TwentySeconds" xml:space="preserve">
<value>೨0 ಸೆಕೆಂಡುಗಳು</value>
</data>
<data name="TwoMinutes" xml:space="preserve">
<value>೨ ನಿಮಿಷಗಳು</value>
</data>
<data name="ClearClipboard" xml:space="preserve">
<value>ಕ್ಲಿಪ್‌ಬೋರ್ಡ್ ತೆರವುಗೊಳಿಸಿ</value>
<comment>Clipboard is the operating system thing where you copy/paste data to on your device.</comment>
</data>
<data name="ClearClipboardDescription" xml:space="preserve">
<value>ನಿಮ್ಮ ಕ್ಲಿಪ್‌ಬೋರ್ಡ್‌ನಿಂದ ನಕಲಿಸಿದ ಮೌಲ್ಯಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ತೆರವುಗೊಳಿಸಿ.</value>
<comment>Clipboard is the operating system thing where you copy/paste data to on your device.</comment>
</data>
<data name="DefaultUriMatchDetection" xml:space="preserve">
<value>ಡೀಫಾಲ್ಟ್ ಯುಆರ್ಐ ಹೊಂದಾಣಿಕೆ ಪತ್ತೆ</value>
<comment>Default URI match detection for auto-fill.</comment>
</data>
<data name="DefaultUriMatchDetectionDescription" xml:space="preserve">
<value>ಸ್ವಯಂ ಭರ್ತಿಯಂತಹ ಕ್ರಿಯೆಗಳನ್ನು ನಿರ್ವಹಿಸುವಾಗ ಲಾಗಿನ್‌ಗಳಿಗಾಗಿ URI ಹೊಂದಾಣಿಕೆ ಪತ್ತೆಹಚ್ಚುವಿಕೆಯನ್ನು ನಿರ್ವಹಿಸುವ ಪೂರ್ವನಿಯೋಜಿತ ಮಾರ್ಗವನ್ನು ಆರಿಸಿ.</value>
</data>
<data name="Theme" xml:space="preserve">
<value>ಥೀಮ್ಸ್</value>
<comment>Color theme</comment>
</data>
<data name="ThemeDescription" xml:space="preserve">
<value>ಅಪ್ಲಿಕೇಶನ್‌ನ ಬಣ್ಣ ಥೀಮ್ ಅನ್ನು ಬದಲಾಯಿಸಿ.</value>
</data>
<data name="ThemeDefault" xml:space="preserve">
<value>Default (System)</value>
</data>
<data name="DefaultDarkTheme" xml:space="preserve">
<value>Default dark theme</value>
</data>
<data name="CopyNotes" xml:space="preserve">
<value>ಟಿಪ್ಪಣಿ ನಕಲಿಸಿ</value>
</data>
<data name="Exit" xml:space="preserve">
<value>ನಿರ್ಗಮಿಸು</value>
</data>
<data name="ExitConfirmation" xml:space="preserve">
<value>ಖಚಿತವಾಗಿ ನಿರ್ಗಮಿಸಲು ಬಯಸುವಿರಾ?</value>
</data>
<data name="PINRequireMasterPasswordRestart" xml:space="preserve">
<value>ಅಪ್ಲಿಕೇಶನ್ ಪುನರಾರಂಭಗೊಂಡಾಗ ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್‌ವರ್ಡ್‌ನೊಂದಿಗೆ ಅನ್‌ಲಾಕ್ ಮಾಡುವ ಅಗತ್ಯವಿದೆಯೇ?</value>
</data>
<data name="Black" xml:space="preserve">
<value>ಕಪ್ಪು</value>
<comment>The color black</comment>
</data>
<data name="Nord" xml:space="preserve">
<value>Nord</value>
<comment>'Nord' is the name of a specific color scheme. It should not be translated.</comment>
</data>
<data name="SolarizedDark" xml:space="preserve">
<value>Solarized Dark</value>
<comment>'Solarized Dark' is the name of a specific color scheme. It should not be translated.</comment>
</data>
<data name="AutofillBlockedUris" xml:space="preserve">
<value>Auto-fill blocked URIs</value>
</data>
<data name="AskToAddLogin" xml:space="preserve">
<value>Ask to add login</value>
</data>
<data name="AskToAddLoginDescription" xml:space="preserve">
<value>Ask to add an item if one isn't found in your vault.</value>
</data>
<data name="OnRestart" xml:space="preserve">
<value>ಅಪ್ಲಿಕೇಶನ್ ಮರುಪ್ರಾರಂಭದಲ್ಲಿ</value>
</data>
<data name="AutofillServiceNotEnabled" xml:space="preserve">
<value>ಸ್ವಯಂ-ಭರ್ತಿ ಇತರ ವೆಬ್‌ಸೈಟ್‌ಗಳು ಮತ್ತು ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಂದ ನಿಮ್ಮ ಬಿಟ್‌ವಾರ್ಡನ್ ವಾಲ್ಟ್ ಅನ್ನು ಸುರಕ್ಷಿತವಾಗಿ ಪ್ರವೇಶಿಸಲು ಸುಲಭಗೊಳಿಸುತ್ತದೆ. ನೀವು ಬಿಟ್‌ವಾರ್ಡೆನ್‌ಗಾಗಿ ಸ್ವಯಂ ಭರ್ತಿ ಸೇವೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿಲ್ಲ ಎಂದು ತೋರುತ್ತಿದೆ. "ಸೆಟ್ಟಿಂಗ್‌ಗಳು" ಪರದೆಯಿಂದ ಬಿಟ್‌ವಾರ್ಡೆನ್‌ಗಾಗಿ ಸ್ವಯಂ ಭರ್ತಿ ಸಕ್ರಿಯಗೊಳಿಸಿ.</value>
</data>
<data name="ThemeAppliedOnRestart" xml:space="preserve">
<value>ಅಪ್ಲಿಕೇಶನ್ ಮರುಪ್ರಾರಂಭಿಸಿದಾಗ ನಿಮ್ಮ ಥೀಮ್ ಬದಲಾವಣೆಗಳು ಅನ್ವಯವಾಗುತ್ತವೆ.</value>
</data>
<data name="Capitalize" xml:space="preserve">
<value>ದೊಡ್ಡಕ್ಷರ ಮಾಡಿ</value>
<comment>ex. Uppercase the first character of a word.</comment>
</data>
<data name="IncludeNumber" xml:space="preserve">
<value>ಸಂಖ್ಯೆಯನ್ನು ಸೇರಿಸಿ</value>
</data>
<data name="Download" xml:space="preserve">
<value>ಡೌನ್‌ಲೋಡ್</value>
</data>
<data name="Shared" xml:space="preserve">
<value>ಹಂಚಿಕೊಳ್ಳಲಾಗಿದೆ</value>
</data>
<data name="ToggleVisibility" xml:space="preserve">
<value>ಗೋಚರತೆಯನ್ನು ಟಾಗಲ್ ಮಾಡಿ</value>
</data>
<data name="LoginExpired" xml:space="preserve">
<value>ನಿಮ್ಮ ಲಾಗಿನ್ ಸೆಷನ್ ಅವಧಿ ಮೀರಿದೆ.</value>
</data>
<data name="BiometricsDirection" xml:space="preserve">
<value>ಬಯೋಮೆಟ್ರಿಕ್ ಪರಿಶೀಲನೆ</value>
</data>
<data name="Biometrics" xml:space="preserve">
<value>ಬಯೋಮೆಟ್ರಿಕ್ </value>
</data>
<data name="UseBiometricsToUnlock" xml:space="preserve">
<value>ಅನ್ಲಾಕ್ ಮಾಡಲು ಬಯೋಮೆಟ್ರಿಕ್ಸ್ ಬಳಸಿ</value>
</data>
<data name="AccessibilityOverlayPermissionAlert" xml:space="preserve">
<value>ಬಿಟ್‌ವಾರ್ಡೆನ್‌ಗೆ ಗಮನ ಬೇಕು - ಬಿಟ್‌ವಾರ್ಡೆನ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳಿಂದ "ಸ್ವಯಂ-ಭರ್ತಿ ಪ್ರವೇಶಿಸುವಿಕೆ ಸೇವೆ" ನೋಡಿ</value>
</data>
<data name="BitwardenAutofillServiceOverlayPermission" xml:space="preserve">
<value>3. ಬಿಟ್‌ವಾರ್ಡೆನ್‌ಗಾಗಿ ಆಂಡ್ರಾಯ್ಡ್ ಅಪ್ಲಿಕೇಶನ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳ ಪರದೆಯಲ್ಲಿ, "ಇತರ ಅಪ್ಲಿಕೇಶನ್‌ಗಳ ಮೇಲೆ ಪ್ರದರ್ಶಿಸು" ಆಯ್ಕೆಗಳಿಗೆ (ಸುಧಾರಿತ ಅಡಿಯಲ್ಲಿ) ಹೋಗಿ ಮತ್ತು ಓವರ್‌ಲೇ ಬೆಂಬಲವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ಟಾಗಲ್ ಟ್ಯಾಪ್ ಮಾಡಿ.</value>
</data>
<data name="OverlayPermission" xml:space="preserve">
<value>ಅನುಮತಿಗಳು</value>
</data>
<data name="BitwardenAutofillServiceOpenOverlayPermissionSettings" xml:space="preserve">
<value>ಓವರ್‌ಲೇ ಅನುಮತಿ ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ತೆರೆಯಿರಿ</value>
</data>
<data name="BitwardenAutofillServiceStep3" xml:space="preserve">
<value>3. ಬಿಟ್‌ವಾರ್ಡೆನ್‌ಗಾಗಿ ಆಂಡ್ರಾಯ್ಡ್ ಅಪ್ಲಿಕೇಶನ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳ ಪರದೆಯಲ್ಲಿ, "ಇತರ ಅಪ್ಲಿಕೇಶನ್‌ಗಳ ಮೇಲೆ ಪ್ರದರ್ಶಿಸು" ("ಸುಧಾರಿತ" ಅಡಿಯಲ್ಲಿ) ಆಯ್ಕೆಮಾಡಿ ಮತ್ತು ಓವರ್‌ಲೇ ಅನ್ನು ಅನುಮತಿಸಲು ಟಾಗಲ್ ಆನ್ ಮಾಡಿ.</value>
</data>
<data name="Denied" xml:space="preserve">
<value>ನಿರಾಕರಿಸಲಾಗಿದೆ</value>
</data>
<data name="Granted" xml:space="preserve">
<value>ಮಂಜೂರು</value>
</data>
<data name="FileFormat" xml:space="preserve">
<value>ಕಡತದ ಮಾದರಿ</value>
</data>
<data name="ExportVaultMasterPasswordDescription" xml:space="preserve">
<value>ನಿಮ್ಮ ವಾಲ್ಟ್ ಡೇಟಾವನ್ನು ರಫ್ತು ಮಾಡಲು ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ನಮೂದಿಸಿ.</value>
</data>
<data name="SendVerificationCodeToEmail" xml:space="preserve">
<value>Send a verification code to your email</value>
</data>
<data name="CodeSent" xml:space="preserve">
<value>Code sent!</value>
</data>
<data name="ConfirmYourIdentity" xml:space="preserve">
<value>Confirm your identity to continue.</value>
</data>
<data name="ExportVaultWarning" xml:space="preserve">
<value>ಈ ರಫ್ತು ನಿಮ್ಮ ವಾಲ್ಟ್ ಡೇಟಾವನ್ನು ಎನ್‌ಕ್ರಿಪ್ಟ್ ಮಾಡದ ಸ್ವರೂಪದಲ್ಲಿ ಒಳಗೊಂಡಿದೆ. ನೀವು ರಫ್ತು ಮಾಡಿದ ಫೈಲ್ ಅನ್ನು ಅಸುರಕ್ಷಿತ ಚಾನಲ್‌ಗಳಲ್ಲಿ (ಇಮೇಲ್ ನಂತಹ) ಸಂಗ್ರಹಿಸಬಾರದು ಅಥವಾ ಕಳುಹಿಸಬಾರದು. ನೀವು ಅದನ್ನು ಬಳಸಿದ ನಂತರ ಅದನ್ನು ಅಳಿಸಿ.</value>
</data>
<data name="EncExportKeyWarning" xml:space="preserve">
<value>ಈ ರಫ್ತು ನಿಮ್ಮ ಖಾತೆಯ ಎನ್‌ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ಬಳಸಿಕೊಂಡು ನಿಮ್ಮ ಡೇಟಾವನ್ನು ಎನ್‌ಕ್ರಿಪ್ಟ್ ಮಾಡುತ್ತದೆ. ನಿಮ್ಮ ಖಾತೆಯ ಎನ್‌ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ನೀವು ಎಂದಾದರೂ ತಿರುಗಿಸಿದರೆ ನೀವು ಈ ರಫ್ತು ಫೈಲ್ ಅನ್ನು ಡೀಕ್ರಿಪ್ಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗದ ಕಾರಣ ನೀವು ಮತ್ತೆ ರಫ್ತು ಮಾಡಬೇಕು.</value>
</data>
<data name="EncExportAccountWarning" xml:space="preserve">
<value>ಖಾತೆ ಎನ್‌ಕ್ರಿಪ್ಶನ್ ಕೀಗಳು ಪ್ರತಿ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಬಳಕೆದಾರ ಖಾತೆಗೆ ಅನನ್ಯವಾಗಿವೆ, ಆದ್ದರಿಂದ ನೀವು ಎನ್‌ಕ್ರಿಪ್ಟ್ ಮಾಡಿದ ರಫ್ತು ಬೇರೆ ಖಾತೆಗೆ ಆಮದು ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ.</value>
</data>
<data name="ExportVaultConfirmationTitle" xml:space="preserve">
<value>ವಾಲ್ಟ್ ರಫ್ತು ಖಚಿತಪಡಿಸಿ</value>
<comment>Title for the alert to confirm vault exports.</comment>
</data>
<data name="Warning" xml:space="preserve">
<value>ಎಚ್ಚರಿಕೆ</value>
</data>
<data name="ExportVaultFailure" xml:space="preserve">
<value>ನಿಮ್ಮ ವಾಲ್ಟ್ ಅನ್ನು ರಫ್ತು ಮಾಡುವಲ್ಲಿ ಸಮಸ್ಯೆ ಇದೆ. ಸಮಸ್ಯೆ ಮುಂದುವರಿದರೆ, ನೀವು ವೆಬ್ ವಾಲ್ಟ್‌ನಿಂದ ರಫ್ತು ಮಾಡಬೇಕಾಗುತ್ತದೆ.</value>
</data>
<data name="ExportVaultSuccess" xml:space="preserve">
<value>ವಾಲ್ಟ್ ಯಶಸ್ವಿಯಾಗಿ ರಫ್ತು ಮಾಡಲಾಗಿದೆ</value>
</data>
<data name="Clone" xml:space="preserve">
<value>ಕ್ಲೋನ್</value>
<comment>Clone an entity (verb).</comment>
</data>
<data name="PasswordGeneratorPolicyInEffect" xml:space="preserve">
<value>ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ಸಂಸ್ಥೆ ನೀತಿಗಳು ನಿಮ್ಮ ಜನರೇಟರ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳ ಮೇಲೆ ಪರಿಣಾಮ ಬೀರುತ್ತವೆ</value>
</data>
<data name="Open" xml:space="preserve">
<value>ತೆರೆಯಿರಿ</value>
<comment>Button text for an open operation (verb).</comment>
</data>
<data name="UnableToSaveAttachment" xml:space="preserve">
<value>ಈ ಲಗತ್ತನ್ನು ಉಳಿಸುವಲ್ಲಿ ಸಮಸ್ಯೆ ಇದೆ. ಸಮಸ್ಯೆ ಮುಂದುವರಿದರೆ, ನೀವು ಅದನ್ನು ವೆಬ್ ವಾಲ್ಟ್‌ನಿಂದ ಉಳಿಸಬಹುದು.</value>
</data>
<data name="SaveAttachmentSuccess" xml:space="preserve">
<value>ಲಗತ್ತು ಯಶಸ್ವಿಯಾಗಿ ಉಳಿಸಲಾಗಿದೆ</value>
</data>
<data name="AutofillTileAccessibilityRequired" xml:space="preserve">
<value>ಸ್ವಯಂ-ಭರ್ತಿ ಟೈಲ್ ಅನ್ನು ಬಳಸಲು ದಯವಿಟ್ಟು ಬಿಟ್‌ವಾರ್ಡನ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳಿಂದ "ಸ್ವಯಂ-ಭರ್ತಿ ಪ್ರವೇಶಿಸುವಿಕೆ ಸೇವೆ" ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ.</value>
</data>
<data name="AutofillTileUriNotFound" xml:space="preserve">
<value>No password fields detected</value>
</data>
<data name="SoftDeleting" xml:space="preserve">
<value>ಅನುಪಯುಕ್ತಕ್ಕೆ ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ ...</value>
<comment>Message shown when interacting with the server</comment>
</data>
<data name="ItemSoftDeleted" xml:space="preserve">
<value>ಐಟಂ ಅನ್ನು ಅನುಪಯುಕ್ತಕ್ಕೆ ಕಳುಹಿಸಲಾಗಿದೆ.</value>
<comment>Confirmation message after successfully soft-deleting a login</comment>
</data>
<data name="Restore" xml:space="preserve">
<value>ಪುನಸ್ಥಾಪಿಸಿ</value>
<comment>Restores an entity (verb).</comment>
</data>
<data name="Restoring" xml:space="preserve">
<value>ಮರುಸ್ಥಾಪಿಸಲಾಗುತ್ತಿದೆ ...</value>
<comment>Message shown when interacting with the server</comment>
</data>
<data name="ItemRestored" xml:space="preserve">
<value>ಐಟಂ ಅನ್ನು ಮರುಸ್ಥಾಪಿಸಲಾಗಿದೆ.</value>
<comment>Confirmation message after successfully restoring a soft-deleted item</comment>
</data>
<data name="Trash" xml:space="preserve">
<value>ಅನುಪಯುಕ್ತ</value>
<comment>(noun) Location of deleted items which have not yet been permanently deleted</comment>
</data>
<data name="SearchTrash" xml:space="preserve">
<value>ಅನುಪಯುಕ್ತವನ್ನು ಹುಡುಕಿ</value>
<comment>(action prompt) Label for the search text field when viewing the trash folder</comment>
</data>
<data name="DoYouReallyWantToPermanentlyDeleteCipher" xml:space="preserve">
<value>ನೀವು ನಿಜವಾಗಿಯೂ ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಲು ಬಯಸುವಿರಾ? ಇದನ್ನು ರದ್ದುಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ.</value>
<comment>Confirmation alert message when permanently deleteing a cipher.</comment>
</data>
<data name="DoYouReallyWantToRestoreCipher" xml:space="preserve">
<value>ಈ ಐಟಂ ಅನ್ನು ಮರುಸ್ಥಾಪಿಸಲು ನೀವು ನಿಜವಾಗಿಯೂ ಬಯಸುವಿರಾ?</value>
<comment>Confirmation alert message when restoring a soft-deleted cipher.</comment>
</data>
<data name="DoYouReallyWantToSoftDeleteCipher" xml:space="preserve">
<value>ನೀವು ನಿಜವಾಗಿಯೂ ಅನುಪಯುಕ್ತಕ್ಕೆ ಕಳುಹಿಸಲು ಬಯಸುವಿರಾ?</value>
<comment>Confirmation alert message when soft-deleting a cipher.</comment>
</data>
<data name="AccountBiometricInvalidated" xml:space="preserve">
<value>Biometric unlock for this account is disabled pending verification of master password.</value>
</data>
<data name="AccountBiometricInvalidatedExtension" xml:space="preserve">
<value>Autofill biometric unlock for this account is disabled pending verification of master password.</value>
</data>
<data name="EnableSyncOnRefresh" xml:space="preserve">
<value>ರಿಫ್ರೆಶ್‌ನಲ್ಲಿ ಸಿಂಕ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ</value>
</data>
<data name="EnableSyncOnRefreshDescription" xml:space="preserve">
<value>ಪುಲ್ ಡೌನ್ ಗೆಸ್ಚರ್ನೊಂದಿಗೆ ವಾಲ್ಟ್ ಅನ್ನು ಸಿಂಕ್ ಮಾಡಲಾಗುತ್ತಿದೆ.</value>
</data>
<data name="LogInSso" xml:space="preserve">
<value>ಎಂಟರ್‌ಪ್ರೈಸ್ ಏಕ ಸೈನ್-ಆನ್</value>
</data>
<data name="LogInSsoSummary" xml:space="preserve">
<value>ನಿಮ್ಮ ಸಂಸ್ಥೆಯ ಏಕ ಸೈನ್-ಆನ್ ಪೋರ್ಟಲ್ ಬಳಸಿ ತ್ವರಿತವಾಗಿ ಲಾಗ್ ಇನ್ ಮಾಡಿ. ಪ್ರಾರಂಭಿಸಲು ದಯವಿಟ್ಟು ನಿಮ್ಮ ಸಂಸ್ಥೆಯ ಗುರುತಿಸುವಿಕೆಯನ್ನು ನಮೂದಿಸಿ.</value>
</data>
<data name="OrgIdentifier" xml:space="preserve">
<value>ಸಂಸ್ಥೆ ಗುರುತಿಸುವಿಕೆ</value>
</data>
<data name="LoginSsoError" xml:space="preserve">
<value>ಪ್ರಸ್ತುತ ಎಸ್‌ಎಸ್‌ಒ ಜೊತೆ ಲಾಗಿನ್ ಆಗಲು ಸಾಧ್ಯವಿಲ್ಲ</value>
</data>
<data name="SetMasterPassword" xml:space="preserve">
<value>ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಹೊಂದಿಸಿ</value>
</data>
<data name="SetMasterPasswordSummary" xml:space="preserve">
<value>ಎಸ್‌ಎಸ್‌ಒನೊಂದಿಗೆ ಲಾಗಿನ್ ಆಗುವುದನ್ನು ಪೂರ್ಣಗೊಳಿಸಲು, ದಯವಿಟ್ಟು ನಿಮ್ಮ ವಾಲ್ಟ್ ಅನ್ನು ಪ್ರವೇಶಿಸಲು ಮತ್ತು ರಕ್ಷಿಸಲು ಮಾಸ್ಟರ್ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ಹೊಂದಿಸಿ.</value>
</data>
<data name="MasterPasswordPolicyInEffect" xml:space="preserve">
<value>ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ಸಂಸ್ಥೆ ನೀತಿಗಳಿಗೆ ಈ ಕೆಳಗಿನ ಅವಶ್ಯಕತೆಗಳನ್ನು ಪೂರೈಸಲು ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್‌ವರ್ಡ್ ಅಗತ್ಯವಿದೆ:</value>
</data>
<data name="PolicyInEffectMinComplexity" xml:space="preserve">
<value>{0} ನ ಕನಿಷ್ಠ ಸಂಕೀರ್ಣತೆಯ ಸ್ಕೋರ್</value>
</data>
<data name="PolicyInEffectMinLength" xml:space="preserve">
<value>{0}ನ ಕನಿಷ್ಠ ಉದ್ದ</value>
</data>
<data name="PolicyInEffectUppercase" xml:space="preserve">
<value>ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ದೊಡ್ಡಕ್ಷರಗಳನ್ನು ಹೊಂದಿರುತ್ತದೆ</value>
</data>
<data name="PolicyInEffectLowercase" xml:space="preserve">
<value>ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ಸಣ್ಣ ಅಕ್ಷರಗಳನ್ನು ಹೊಂದಿರುತ್ತದೆ</value>
</data>
<data name="PolicyInEffectNumbers" xml:space="preserve">
<value>ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ಸಂಖ್ಯೆಗಳನ್ನು ಹೊಂದಿರುತ್ತದೆ</value>
</data>
<data name="PolicyInEffectSpecial" xml:space="preserve">
<value>ಕೆಳಗಿನ ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ವಿಶೇಷ ಅಕ್ಷರಗಳನ್ನು ಒಳಗೊಂಡಿರುತ್ತದೆ: {0}</value>
</data>
<data name="MasterPasswordPolicyValidationTitle" xml:space="preserve">
<value>ಅಮಾನ್ಯ ಪಾಸ್‌ವರ್ಡ್</value>
</data>
<data name="MasterPasswordPolicyValidationMessage" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ಸಂಸ್ಥೆಯ ಅವಶ್ಯಕತೆಗಳನ್ನು ಪೂರೈಸುವುದಿಲ್ಲ. ದಯವಿಟ್ಟು ನೀತಿ ಮಾಹಿತಿಯನ್ನು ಪರಿಶೀಲಿಸಿ ಮತ್ತು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ.</value>
</data>
<data name="Loading" xml:space="preserve">
<value>ಲೋಡ್‌ಆಗುತ್ತಿದೆ</value>
</data>
<data name="AcceptPolicies" xml:space="preserve">
<value>ಈ ಸ್ವಿಚ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸುವ ಮೂಲಕ ನೀವು ಈ ಕೆಳಗಿನವುಗಳನ್ನು ಒಪ್ಪುತ್ತೀರಿ:</value>
</data>
<data name="AcceptPoliciesError" xml:space="preserve">
<value>ಸೇವಾ ನಿಯಮಗಳು ಮತ್ತು ಗೌಪ್ಯತೆ ನೀತಿಯನ್ನು ಅಂಗೀಕರಿಸಲಾಗಿಲ್ಲ.</value>
</data>
<data name="TermsOfService" xml:space="preserve">
<value>ಸೇವಾ ನಿಯಮಗಳು</value>
</data>
<data name="PrivacyPolicy" xml:space="preserve">
<value>ಗೌಪ್ಯತಾ ನೀತಿ</value>
</data>
<data name="AccessibilityDrawOverPermissionAlert" xml:space="preserve">
<value>ಬಿಟ್‌ವಾರ್ಡೆನ್‌ಗೆ ಗಮನ ಬೇಕು - ಬಿಟ್‌ವಾರ್ಡೆನ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳಿಂದ "ಸ್ವಯಂ-ಭರ್ತಿ ಸೇವೆಗಳು" ನಲ್ಲಿ "ಡ್ರಾ-ಓವರ್" ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ</value>
</data>
<data name="AutofillServices" xml:space="preserve">
<value>ಸ್ವಯಂ ಭರ್ತಿ ಸೇವೆ</value>
</data>
<data name="InlineAutofill" xml:space="preserve">
<value>ಇನ್ಲೈನ್ ಆಟೋಫಿಲ್ ಬಳಸಿ</value>
</data>
<data name="InlineAutofillDescription" xml:space="preserve">
<value>ನಿಮ್ಮ ಆಯ್ದ IME (ಕೀಬೋರ್ಡ್) ಅದನ್ನು ಬೆಂಬಲಿಸಿದರೆ ಇನ್ಲೈನ್ ಆಟೋಫಿಲ್ ಬಳಸಿ. ನಿಮ್ಮ ಕಾನ್ಫಿಗರೇಶನ್ ಬೆಂಬಲಿಸದಿದ್ದರೆ (ಅಥವಾ ಈ ಆಯ್ಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ), ಡೀಫಾಲ್ಟ್ ಆಟೋಫಿಲ್ ಓವರ್‌ಲೇ ಅನ್ನು ಬಳಸಲಾಗುತ್ತದೆ.</value>
</data>
<data name="Accessibility" xml:space="preserve">
<value>ಪ್ರವೇಶಿಸುವಿಕೆ ಬಳಸಿ</value>
</data>
<data name="AccessibilityDescription" xml:space="preserve">
<value>ಅಪ್ಲಿಕೇಶನ್‌ಗಳು ಮತ್ತು ವೆಬ್‌ನಾದ್ಯಂತ ನಿಮ್ಮ ಲಾಗಿನ್‌ಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ತುಂಬಲು ಬಿಟ್‌ವಾರ್ಡೆನ್ ಪ್ರವೇಶಿಸುವಿಕೆ ಸೇವೆಯನ್ನು ಬಳಸಿ. ಸಕ್ರಿಯಗೊಳಿಸಿದಾಗ, ಲಾಗಿನ್ ಕ್ಷೇತ್ರಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿದಾಗ ನಾವು ಪಾಪ್ಅಪ್ ಅನ್ನು ಪ್ರದರ್ಶಿಸುತ್ತೇವೆ.</value>
</data>
<data name="AccessibilityDescription2" xml:space="preserve">
<value>ಅಪ್ಲಿಕೇಶನ್‌ಗಳು ಮತ್ತು ವೆಬ್‌ನಾದ್ಯಂತ ನಿಮ್ಮ ಲಾಗಿನ್‌ಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ತುಂಬಲು ಬಿಟ್‌ವಾರ್ಡೆನ್ ಪ್ರವೇಶಿಸುವಿಕೆ ಸೇವೆಯನ್ನು ಬಳಸಿ. (ಡ್ರಾ-ಓವರ್ ಅನ್ನು ಸಹ ಸಕ್ರಿಯಗೊಳಿಸಬೇಕಾಗಿದೆ)</value>
</data>
<data name="AccessibilityDescription3" xml:space="preserve">
<value>ಆಟೋಫಿಲ್ ಕ್ವಿಕ್-ಆಕ್ಷನ್ ಟೈಲ್ ಅನ್ನು ಬಳಸಲು ಬಿಟ್‌ವಾರ್ಡೆನ್ ಪ್ರವೇಶಿಸುವಿಕೆ ಸೇವೆಯನ್ನು ಬಳಸಿ, ಮತ್ತು / ಅಥವಾ ಡ್ರಾ-ಓವರ್ ಬಳಸಿ ಪಾಪ್ಅಪ್ ಅನ್ನು ತೋರಿಸಿ (ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದರೆ).</value>
</data>
<data name="AccessibilityDescription4" xml:space="preserve">
<value>ಆಟೋಫಿಲ್ ಕ್ವಿಕ್-ಆಕ್ಷನ್ ಟೈಲ್ ಅನ್ನು ಬಳಸಲು ಅಥವಾ ಡ್ರಾ-ಓವರ್ (ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದರೆ) ಬಳಸುವ ಮೂಲಕ ಆಟೋಫಿಲ್ ಸೇವೆಯನ್ನು ಹೆಚ್ಚಿಸಲು ಅಗತ್ಯವಿದೆ.</value>
</data>
<data name="DrawOver" xml:space="preserve">
<value>ಡ್ರಾ-ಓವರ್ ಬಳಸಿ</value>
</data>
<data name="DrawOverDescription" xml:space="preserve">
<value>ಸಕ್ರಿಯಗೊಳಿಸಿದಾಗ, ಲಾಗಿನ್ ಕ್ಷೇತ್ರಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿದಾಗ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಪ್ರವೇಶಿಸುವಿಕೆ ಸೇವೆಯನ್ನು ಪಾಪ್ಅಪ್ ಪ್ರದರ್ಶಿಸಲು ಅನುಮತಿಸುತ್ತದೆ.</value>
</data>
<data name="DrawOverDescription2" xml:space="preserve">
<value>ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದರೆ, ನಿಮ್ಮ ಲಾಗಿನ್‌ಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಭರ್ತಿ ಮಾಡಲು ಸಹಾಯ ಮಾಡಲು ಲಾಗಿನ್ ಕ್ಷೇತ್ರಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿದಾಗ ಬಿಟ್‌ವಾರ್ಡೆನ್ ಪ್ರವೇಶಿಸುವಿಕೆ ಸೇವೆ ಪಾಪ್ಅಪ್ ಅನ್ನು ಪ್ರದರ್ಶಿಸುತ್ತದೆ.</value>
</data>
<data name="DrawOverDescription3" xml:space="preserve">
<value>ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದರೆ, ಆಂಡ್ರಾಯ್ಡ್ ಆಟೋಫಿಲ್ ಫ್ರೇಮ್‌ವರ್ಕ್ ಅನ್ನು ಬೆಂಬಲಿಸದ ಹಳೆಯ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಗಾಗಿ ಆಟೋಫಿಲ್ ಸೇವೆಯನ್ನು ಹೆಚ್ಚಿಸಲು ಪ್ರವೇಶಿಸುವಿಕೆಯು ಪಾಪ್ಅಪ್ ಅನ್ನು ತೋರಿಸುತ್ತದೆ.</value>
</data>
<data name="PersonalOwnershipSubmitError" xml:space="preserve">
<value>Due to an Enterprise Policy, you are restricted from saving items to your personal vault. Change the Ownership option to an organization and choose from available Collections.</value>
</data>
<data name="PersonalOwnershipPolicyInEffect" xml:space="preserve">
<value>ಸಂಸ್ಥೆಯ ನೀತಿಯು ನಿಮ್ಮ ಮಾಲೀಕತ್ವದ ಆಯ್ಕೆಗಳ ಮೇಲೆ ಪರಿಣಾಮ ಬೀರುತ್ತಿದೆ.</value>
</data>
<data name="Send" xml:space="preserve">
<value>ಕಳುಹಿಸಿ</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="AllSends" xml:space="preserve">
<value>ಎಲ್ಲಾ ಕಳುಹಿಸುತ್ತದೆ</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="Sends" xml:space="preserve">
<value>ಕಳುಹಿಸುತ್ತದೆ</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="NameInfo" xml:space="preserve">
<value>ಇದನ್ನು ಕಳುಹಿಸಲು ವಿವರಿಸಲು ಸ್ನೇಹಪರ ಹೆಸರು.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="Text" xml:space="preserve">
<value>Text</value>
</data>
<data name="TypeText" xml:space="preserve">
<value>ಪಠ್ಯ</value>
</data>
<data name="TypeTextInfo" xml:space="preserve">
<value>ನೀವು ಕಳುಹಿಸಲು ಬಯಸುವ ಪಠ್ಯ.</value>
</data>
<data name="HideTextByDefault" xml:space="preserve">
<value>ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಪ್ರವೇಶಿಸುವಾಗ, ಪಠ್ಯವನ್ನು ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಮರೆಮಾಡಿ</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="TypeFile" xml:space="preserve">
<value>ಫೈಲ್</value>
</data>
<data name="TypeFileInfo" xml:space="preserve">
<value>ನೀವು ಕಳುಹಿಸಲು ಬಯಸುವ ಫೈಲ್.</value>
</data>
<data name="FileTypeIsSelected" xml:space="preserve">
<value>File type is selected.</value>
</data>
<data name="FileTypeIsNotSelected" xml:space="preserve">
<value>File type is not selected, tap to select.</value>
</data>
<data name="TextTypeIsSelected" xml:space="preserve">
<value>Text type is selected.</value>
</data>
<data name="TextTypeIsNotSelected" xml:space="preserve">
<value>Text type is not selected, tap to select.</value>
</data>
<data name="DeletionDate" xml:space="preserve">
<value>ಅಳಿಸುವ ದಿನಾಂಕ</value>
</data>
<data name="DeletionTime" xml:space="preserve">
<value>ಅಳಿಸುವ ಸಮಯ</value>
</data>
<data name="DeletionDateInfo" xml:space="preserve">
<value>ಕಳುಹಿಸಿದ ದಿನಾಂಕ ಮತ್ತು ಸಮಯದ ಮೇಲೆ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಲಾಗುತ್ತದೆ.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="PendingDelete" xml:space="preserve">
<value>ಅಳಿಸುವಿಕೆ ಬಾಕಿ ಉಳಿದಿದೆ</value>
</data>
<data name="ExpirationDate" xml:space="preserve">
<value>ಮುಕ್ತಾಯ ದಿನಾಂಕ</value>
</data>
<data name="ExpirationTime" xml:space="preserve">
<value>ಮುಕ್ತಾಯ ಸಮಯ</value>
</data>
<data name="ExpirationDateInfo" xml:space="preserve">
<value>ಹೊಂದಿಸಿದ್ದರೆ, ಈ ಕಳುಹಿಸುವಿಕೆಯ ಪ್ರವೇಶವು ನಿಗದಿತ ದಿನಾಂಕ ಮತ್ತು ಸಮಯದ ಮೇಲೆ ಮುಕ್ತಾಯಗೊಳ್ಳುತ್ತದೆ.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="Expired" xml:space="preserve">
<value>ಅವಧಿ ಮೀರಿದೆ</value>
</data>
<data name="MaximumAccessCount" xml:space="preserve">
<value>ಗರಿಷ್ಠ ಪ್ರವೇಶ ಎಣಿಕೆ</value>
</data>
<data name="MaximumAccessCountInfo" xml:space="preserve">
<value>ಹೊಂದಿಸಿದ್ದರೆ, ಗರಿಷ್ಠ ಪ್ರವೇಶ ಎಣಿಕೆ ತಲುಪಿದ ನಂತರ ಬಳಕೆದಾರರಿಗೆ ಈ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಪ್ರವೇಶಿಸಲು ಸಾಧ್ಯವಾಗುವುದಿಲ್ಲ.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="MaximumAccessCountReached" xml:space="preserve">
<value>ಗರಿಷ್ಠ ಪ್ರವೇಶ ಎಣಿಕೆ ತಲುಪಿದೆ</value>
</data>
<data name="CurrentAccessCount" xml:space="preserve">
<value>ಪ್ರಸ್ತುತ ಪ್ರವೇಶ ಎಣಿಕೆ</value>
</data>
<data name="NewPassword" xml:space="preserve">
<value>ಹೊಸ ಪಾಸ್‌ವರ್ಡ್</value>
</data>
<data name="PasswordInfo" xml:space="preserve">
<value>ಈ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಪ್ರವೇಶಿಸಲು ಬಳಕೆದಾರರಿಗೆ ಪಾಸ್‌ವರ್ಡ್ ಐಚ್ ಗತ್ಯವಿದೆ.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="RemovePassword" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ತೆಗೆದುಹಾಕಿ</value>
</data>
<data name="AreYouSureRemoveSendPassword" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ತೆಗೆದುಹಾಕಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?</value>
</data>
<data name="RemovingSendPassword" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ತೆಗೆದುಹಾಕಲಾಗುತ್ತಿದೆ</value>
</data>
<data name="SendPasswordRemoved" xml:space="preserve">
<value>ಪಾಸ್ವರ್ಡ್ ತೆಗೆದುಹಾಕಲಾಗಿದೆ.</value>
</data>
<data name="NotesInfo" xml:space="preserve">
<value>ಈ ಕಳುಹಿಸುವ ಬಗ್ಗೆ ಖಾಸಗಿ ಟಿಪ್ಪಣಿಗಳು.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="DisableSend" xml:space="preserve">
<value>ಇದನ್ನು ಕಳುಹಿಸುವುದನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ ಇದರಿಂದ ಯಾರೂ ಅದನ್ನು ಪ್ರವೇಶಿಸಲಾಗುವುದಿಲ್ಲ.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="NoSends" xml:space="preserve">
<value>ನಿಮ್ಮ ಖಾತೆಯಲ್ಲಿ ಯಾವುದೇ ಕಳುಹಿಸುವಿಕೆಗಳಿಲ್ಲ.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="AddASend" xml:space="preserve">
<value>ಕಳುಹಿಸು ಸೇರಿಸಿ</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="CopyLink" xml:space="preserve">
<value>ಲಿಂಕ್ ಕಾಪಿ ಮಾಡಿ</value>
</data>
<data name="ShareLink" xml:space="preserve">
<value>ಲಿಂಕ್ ಶೇರ್ ಮಾಡಿ</value>
</data>
<data name="SendLink" xml:space="preserve">
<value>ಲಿಂಕ್ ಕಳುಹಿಸಿ</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="SearchSends" xml:space="preserve">
<value>ಹುಡುಕಾಟ ಕಳುಹಿಸುತ್ತದೆ</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="EditSend" xml:space="preserve">
<value>ಕಳುಹಿಸು ಸಂಪಾದಿಸಿ</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="AddSend" xml:space="preserve">
<value>ಕಳುಹಿಸು ಸೇರಿಸಿ</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="AreYouSureDeleteSend" xml:space="preserve">
<value>ಈ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="SendDeleted" xml:space="preserve">
<value>ಕಳುಹಿಸು ಅಳಿಸಲಾಗಿದೆ.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="SendUpdated" xml:space="preserve">
<value>ನವೀಕರಿಸಲಾಗಿದೆ ಕಳುಹಿಸಿ.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="NewSendCreated" xml:space="preserve">
<value>ಹೊಸ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ರಚಿಸಲಾಗಿದೆ.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="OneDay" xml:space="preserve">
<value>1 ದಿನ</value>
</data>
<data name="TwoDays" xml:space="preserve">
<value>2 ದಿನಗಳು</value>
</data>
<data name="ThreeDays" xml:space="preserve">
<value>3 ದಿನಗಳು</value>
</data>
<data name="SevenDays" xml:space="preserve">
<value>7 ದಿನಗಳು</value>
</data>
<data name="ThirtyDays" xml:space="preserve">
<value>30 ದಿನಗಳು</value>
</data>
<data name="Custom" xml:space="preserve">
<value>ಕಸ್ಟಮ್</value>
</data>
<data name="ShareOnSave" xml:space="preserve">
<value>ಸೇವ್ ಆನ್ ಸೇವ್ ಅನ್ನು ಹಂಚಿಕೊಳ್ಳಿ.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="SendDisabledWarning" xml:space="preserve">
<value>Due to an enterprise policy, you are only able to delete an existing Send.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="AboutSend" xml:space="preserve">
<value>ಕಳುಹಿಸುವ ಬಗ್ಗೆ</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="HideEmail" xml:space="preserve">
<value>ಸ್ವೀಕರಿಸುವವರಿಂದ ನನ್ನ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಮರೆಮಾಡಿ.</value>
</data>
<data name="SendOptionsPolicyInEffect" xml:space="preserve">
<value>ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ಸಂಸ್ಥೆಯ ನೀತಿಗಳು ನಿಮ್ಮ ಕಳುಹಿಸುವ ಆಯ್ಕೆಗಳ ಮೇಲೆ ಪರಿಣಾಮ ಬೀರುತ್ತವೆ.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="SendFilePremiumRequired" xml:space="preserve">
<value>Free accounts are restricted to sharing text only. A premium membership is required to use files with Send.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="SendFileEmailVerificationRequired" xml:space="preserve">
<value>ಕಳುಹಿಸುವಿಕೆಯೊಂದಿಗೆ ಫೈಲ್‌ಗಳನ್ನು ಬಳಸಲು ನಿಮ್ಮ ಇಮೇಲ್ ಅನ್ನು ನೀವು ಪರಿಶೀಲಿಸಬೇಕು. ವೆಬ್ ವಾಲ್ಟ್ನಲ್ಲಿ ನಿಮ್ಮ ಇಮೇಲ್ ಅನ್ನು ನೀವು ಪರಿಶೀಲಿಸಬಹುದು.</value>
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
</data>
<data name="PasswordPrompt" xml:space="preserve">
<value>ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಮರು-ಪ್ರಾಂಪ್ಟ್</value>
</data>
<data name="PasswordConfirmation" xml:space="preserve">
<value>ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ದೃಢೀಕರಣ</value>
</data>
<data name="PasswordConfirmationDesc" xml:space="preserve">
<value>ಮುಂದುವರಿಯಲು ಈ ಕ್ರಿಯೆಯನ್ನು ರಕ್ಷಿಸಲಾಗಿದೆ, ದಯವಿಟ್ಟು ನಿಮ್ಮ ಗುರುತನ್ನು ಪರಿಶೀಲಿಸಲು ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ಮರು ನಮೂದಿಸಿ.</value>
</data>
<data name="CaptchaRequired" xml:space="preserve">
<value>Captcha required</value>
</data>
<data name="CaptchaFailed" xml:space="preserve">
<value>Captcha failed. Please try again.</value>
</data>
<data name="UpdatedMasterPassword" xml:space="preserve">
<value>Updated master password</value>
</data>
<data name="UpdateMasterPassword" xml:space="preserve">
<value>Update master password</value>
</data>
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
<value>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.</value>
</data>
<data name="UpdatingPassword" xml:space="preserve">
<value>Updating password</value>
</data>
<data name="UpdatePasswordError" xml:space="preserve">
<value>Currently unable to update password</value>
</data>
<data name="RemoveMasterPassword" xml:space="preserve">
<value>Remove master password</value>
</data>
<data name="RemoveMasterPasswordWarning" xml:space="preserve">
<value>{0} is using SSO with customer-managed encryption. Continuing will remove your master password from your account and require SSO to login.</value>
</data>
<data name="RemoveMasterPasswordWarning2" xml:space="preserve">
<value>If you do not want to remove your master password, you may leave this organization.</value>
</data>
<data name="LeaveOrganization" xml:space="preserve">
<value>Leave organization</value>
</data>
<data name="LeaveOrganizationName" xml:space="preserve">
<value>Leave {0}?</value>
</data>
<data name="Fido2Title" xml:space="preserve">
<value>FIDO2 WebAuthn</value>
</data>
<data name="Fido2Instruction" xml:space="preserve">
<value>To continue, have your FIDO2 WebAuthn compatible security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
</data>
<data name="Fido2Desc" xml:space="preserve">
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
</data>
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
<value>Authenticate WebAuthn</value>
</data>
<data name="Fido2ReturnToApp" xml:space="preserve">
<value>Return to app</value>
</data>
<data name="Fido2CheckBrowser" xml:space="preserve">
<value>Please make sure your default browser supports WebAuthn and try again.</value>
</data>
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
</data>
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
<value>Your organization policies have set your maximum allowed vault timeout to {0} hour(s) and {1} minute(s).</value>
</data>
<data name="VaultTimeoutPolicyWithActionInEffect" xml:space="preserve">
<value>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}.</value>
</data>
<data name="VaultTimeoutActionPolicyInEffect" xml:space="preserve">
<value>Your organization policies have set your vault timeout action to {0}.</value>
</data>
<data name="VaultTimeoutToLarge" xml:space="preserve">
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
</data>
<data name="DisablePersonalVaultExportPolicyInEffect" xml:space="preserve">
<value>One or more organization policies prevents your from exporting your individual vault.</value>
</data>
<data name="AddAccount" xml:space="preserve">
<value>Add account</value>
</data>
<data name="AccountUnlocked" xml:space="preserve">
<value>Unlocked</value>
</data>
<data name="AccountLocked" xml:space="preserve">
<value>Locked</value>
</data>
<data name="AccountLoggedOut" xml:space="preserve">
<value>Logged out</value>
</data>
<data name="AccountSwitchedAutomatically" xml:space="preserve">
<value>Switched to next available account</value>
</data>
<data name="AccountLockedSuccessfully" xml:space="preserve">
<value>Account locked</value>
</data>
<data name="AccountLoggedOutSuccessfully" xml:space="preserve">
<value>Account logged out successfully</value>
</data>
<data name="AccountRemovedSuccessfully" xml:space="preserve">
<value>Account removed successfully</value>
</data>
<data name="DeleteAccount" xml:space="preserve">
<value>Delete account</value>
</data>
<data name="DeletingYourAccountIsPermanent" xml:space="preserve">
<value>Deleting your account is permanent</value>
</data>
<data name="DeleteAccountExplanation" xml:space="preserve">
<value>Your account and all vault data will be erased and unrecoverable. Are you sure you want to continue?</value>
</data>
<data name="DeletingYourAccount" xml:space="preserve">
<value>Deleting your account</value>
</data>
<data name="YourAccountHasBeenPermanentlyDeleted" xml:space="preserve">
<value>Your account has been permanently deleted</value>
</data>
<data name="InvalidVerificationCode" xml:space="preserve">
<value>Invalid verification code</value>
</data>
<data name="RequestOTP" xml:space="preserve">
<value>Request one-time password</value>
</data>
<data name="SendCode" xml:space="preserve">
<value>Send code</value>
</data>
<data name="Sending" xml:space="preserve">
<value>Sending</value>
</data>
<data name="CopySendLinkOnSave" xml:space="preserve">
<value>Copy Send link on save</value>
</data>
<data name="SendingCode" xml:space="preserve">
<value>Sending code</value>
</data>
<data name="Verifying" xml:space="preserve">
<value>Verifying</value>
</data>
<data name="ResendCode" xml:space="preserve">
<value>Resend code</value>
</data>
<data name="AVerificationCodeWasSentToYourEmail" xml:space="preserve">
<value>A verification code was sent to your email</value>
</data>
<data name="AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain" xml:space="preserve">
<value>An error occurred while sending a verification code to your email. Please try again</value>
</data>
<data name="EnterTheVerificationCodeThatWasSentToYourEmail" xml:space="preserve">
<value>Enter the verification code that was sent to your email</value>
</data>
<data name="SubmitCrashLogs" xml:space="preserve">
<value>Submit crash logs</value>
</data>
<data name="SubmitCrashLogsDescription" xml:space="preserve">
<value>Help Bitwarden improve app stability by submitting crash reports.</value>
</data>
<data name="OptionsExpanded" xml:space="preserve">
<value>Options are expanded, tap to collapse.</value>
</data>
<data name="OptionsCollapsed" xml:space="preserve">
<value>Options are collapsed, tap to expand.</value>
</data>
<data name="UppercaseAtoZ" xml:space="preserve">
<value>Uppercase (A to Z)</value>
</data>
<data name="LowercaseAtoZ" xml:space="preserve">
<value>Lowercase (A to Z)</value>
</data>
<data name="NumbersZeroToNine" xml:space="preserve">
<value>Numbers (0 to 9)</value>
</data>
<data name="SpecialCharacters" xml:space="preserve">
<value>Special characters (!@#$%^&amp;*)</value>
</data>
<data name="TapToGoBack" xml:space="preserve">
<value>Tap to go back</value>
</data>
<data name="PasswordIsVisibleTapToHide" xml:space="preserve">
<value>Password is visible, tap to hide.</value>
</data>
<data name="PasswordIsNotVisibleTapToShow" xml:space="preserve">
<value>Password is not visible, tap to show.</value>
</data>
<data name="FilterByVault" xml:space="preserve">
<value>Filter items by vault</value>
</data>
<data name="AllVaults" xml:space="preserve">
<value>All vaults</value>
</data>
<data name="Vaults" xml:space="preserve">
<value>Vaults</value>
</data>
<data name="VaultFilterDescription" xml:space="preserve">
<value>Vault: {0}</value>
</data>
<data name="All" xml:space="preserve">
<value>All</value>
</data>
<data name="Totp" xml:space="preserve">
<value>TOTP</value>
</data>
<data name="VerificationCodes" xml:space="preserve">
<value>Verification codes</value>
</data>
<data name="PremiumSubscriptionRequired" xml:space="preserve">
<value>Premium subscription required</value>
</data>
<data name="CannotAddAuthenticatorKey" xml:space="preserve">
<value>Cannot add authenticator key? </value>
</data>
<data name="ScanQRCode" xml:space="preserve">
<value>Scan QR Code</value>
</data>
<data name="CannotScanQRCode" xml:space="preserve">
<value>Cannot scan QR Code? </value>
</data>
<data name="AuthenticatorKeyScanner" xml:space="preserve">
<value>Authenticator key</value>
</data>
<data name="EnterKeyManually" xml:space="preserve">
<value>Enter key manually</value>
</data>
<data name="AddTotp" xml:space="preserve">
<value>Add TOTP</value>
</data>
<data name="SetupTotp" xml:space="preserve">
<value>Set up TOTP</value>
</data>
<data name="OnceTheKeyIsSuccessfullyEntered" xml:space="preserve">
<value>Once the key is successfully entered,
select Add TOTP to store the key safely</value>
</data>
<data name="NeverLockWarning" xml:space="preserve">
<value>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.</value>
</data>
<data name="EnvironmentPageUrlsError" xml:space="preserve">
<value>One or more of the URLs entered are invalid. Please revise it and try to save again.</value>
</data>
<data name="GenericErrorMessage" xml:space="preserve">
<value>We were unable to process your request. Please try again or contact us.</value>
</data>
<data name="AllowScreenCapture" xml:space="preserve">
<value>Allow screen capture</value>
</data>
<data name="AreYouSureYouWantToEnableScreenCapture" xml:space="preserve">
<value>Are you sure you want to turn on screen capture?</value>
</data>
<data name="LogInRequested" xml:space="preserve">
<value>Login requested</value>
</data>
<data name="AreYouTryingToLogIn" xml:space="preserve">
<value>Are you trying to log in?</value>
</data>
<data name="LogInAttemptByXOnY" xml:space="preserve">
<value>Login attempt by {0} on {1}</value>
</data>
<data name="DeviceType" xml:space="preserve">
<value>Device type</value>
</data>
<data name="IpAddress" xml:space="preserve">
<value>IP address</value>
</data>
<data name="Time" xml:space="preserve">
<value>Time</value>
</data>
<data name="Near" xml:space="preserve">
<value>Near</value>
</data>
<data name="ConfirmLogIn" xml:space="preserve">
<value>Confirm login</value>
</data>
<data name="DenyLogIn" xml:space="preserve">
<value>Deny login</value>
</data>
<data name="JustNow" xml:space="preserve">
<value>Just now</value>
</data>
<data name="XMinutesAgo" xml:space="preserve">
<value>{0} minutes ago</value>
</data>
<data name="LogInAccepted" xml:space="preserve">
<value>Login confirmed</value>
</data>
<data name="LogInDenied" xml:space="preserve">
<value>Login denied</value>
</data>
<data name="ApproveLoginRequests" xml:space="preserve">
<value>Approve login requests</value>
</data>
<data name="UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices" xml:space="preserve">
<value>Use this device to approve login requests made from other devices</value>
</data>
<data name="AllowNotifications" xml:space="preserve">
<value>Allow notifications</value>
</data>
<data name="ReceivePushNotificationsForNewLoginRequests" xml:space="preserve">
<value>Receive push notifications for new login requests</value>
</data>
<data name="NoThanks" xml:space="preserve">
<value>No thanks</value>
</data>
<data name="ConfimLogInAttempForX" xml:space="preserve">
<value>Confirm login attempt for {0}</value>
</data>
<data name="AllNotifications" xml:space="preserve">
<value>All notifications</value>
</data>
<data name="PasswordType" xml:space="preserve">
<value>Password type</value>
</data>
<data name="WhatWouldYouLikeToGenerate" xml:space="preserve">
<value>What would you like to generate?</value>
</data>
<data name="UsernameType" xml:space="preserve">
<value>Username type</value>
</data>
<data name="PlusAddressedEmail" xml:space="preserve">
<value>Plus addressed email</value>
</data>
<data name="CatchAllEmail" xml:space="preserve">
<value>Catch-all email</value>
</data>
<data name="ForwardedEmailAlias" xml:space="preserve">
<value>Forwarded email alias</value>
</data>
<data name="RandomWord" xml:space="preserve">
<value>Random word</value>
</data>
<data name="EmailRequiredParenthesis" xml:space="preserve">
<value>Email (required)</value>
</data>
<data name="DomainNameRequiredParenthesis" xml:space="preserve">
<value>Domain name (required)</value>
</data>
<data name="APIKeyRequiredParenthesis" xml:space="preserve">
<value>API key (required)</value>
</data>
<data name="Service" xml:space="preserve">
<value>Service</value>
</data>
<data name="AddyIo" xml:space="preserve">
<value>addy.io</value>
<comment>"addy.io" is the product name and should not be translated.</comment>
</data>
<data name="FirefoxRelay" xml:space="preserve">
<value>Firefox Relay</value>
<comment>"Firefox Relay" is the product name and should not be translated.</comment>
</data>
<data name="SimpleLogin" xml:space="preserve">
<value>SimpleLogin</value>
<comment>"SimpleLogin" is the product name and should not be translated.</comment>
</data>
<data name="DuckDuckGo" xml:space="preserve">
<value>DuckDuckGo</value>
<comment>"DuckDuckGo" is the product name and should not be translated.</comment>
</data>
<data name="Fastmail" xml:space="preserve">
<value>Fastmail</value>
<comment>"Fastmail" is the product name and should not be translated.</comment>
</data>
<data name="ForwardEmail" xml:space="preserve">
<value>ForwardEmail</value>
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
</data>
<data name="APIAccessToken" xml:space="preserve">
<value>API access token</value>
</data>
<data name="AreYouSureYouWantToOverwriteTheCurrentUsername" xml:space="preserve">
<value>Are you sure you want to overwrite the current username?</value>
</data>
<data name="GenerateUsername" xml:space="preserve">
<value>Generate username</value>
</data>
<data name="EmailType" xml:space="preserve">
<value>Email Type</value>
</data>
<data name="WebsiteRequired" xml:space="preserve">
<value>Website (required)</value>
</data>
<data name="UnknownXErrorMessage" xml:space="preserve">
<value>Unknown {0} error occurred.</value>
</data>
<data name="PlusAddressedEmailDescription" xml:space="preserve">
<value>Use your email provider's subaddress capabilities</value>
</data>
<data name="CatchAllEmailDescription" xml:space="preserve">
<value>Use your domain's configured catch-all inbox.</value>
</data>
<data name="ForwardedEmailDescription" xml:space="preserve">
<value>Generate an email alias with an external forwarding service.</value>
</data>
<data name="Random" xml:space="preserve">
<value>Random</value>
</data>
<data name="ConnectToWatch" xml:space="preserve">
<value>Connect to Watch</value>
</data>
<data name="AccessibilityServiceDisclosure" xml:space="preserve">
<value>Accessibility Service Disclosure</value>
</data>
<data name="AccessibilityDisclosureText" xml:space="preserve">
<value>Bitwarden uses the Accessibility Service to search for login fields in apps and websites, then establish the appropriate field IDs for entering a username &amp; 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.</value>
</data>
<data name="Accept" xml:space="preserve">
<value>Accept</value>
</data>
<data name="Decline" xml:space="preserve">
<value>Decline</value>
</data>
<data name="LoginRequestHasAlreadyExpired" xml:space="preserve">
<value>Login request has already expired.</value>
</data>
<data name="LoginAttemptFromXDoYouWantToSwitchToThisAccount" xml:space="preserve">
<value>Login attempt from:
{0}
Do you want to switch to this account?</value>
</data>
<data name="NewAroundHere" xml:space="preserve">
<value>New around here?</value>
</data>
<data name="GetMasterPasswordwordHint" xml:space="preserve">
<value>Get master password hint</value>
</data>
<data name="LoggingInAsXOnY" xml:space="preserve">
<value>Logging in as {0} on {1}</value>
</data>
<data name="NotYou" xml:space="preserve">
<value>Not you?</value>
</data>
<data name="LogInWithMasterPassword" xml:space="preserve">
<value>Log in with master password</value>
</data>
<data name="LogInWithAnotherDevice" xml:space="preserve">
<value>Log in with device</value>
</data>
<data name="LogInInitiated" xml:space="preserve">
<value>Login initiated</value>
</data>
<data name="ANotificationHasBeenSentToYourDevice" xml:space="preserve">
<value>A notification has been sent to your device.</value>
</data>
<data name="PleaseMakeSureYourVaultIsUnlockedAndTheFingerprintPhraseMatchesOnTheOtherDevice" xml:space="preserve">
<value>Please make sure your vault is unlocked and the Fingerprint phrase matches on the other device.</value>
</data>
<data name="ResendNotification" xml:space="preserve">
<value>Resend notification</value>
</data>
<data name="NeedAnotherOption" xml:space="preserve">
<value>Need another option?</value>
</data>
<data name="ViewAllLoginOptions" xml:space="preserve">
<value>View all log in options</value>
</data>
<data name="ThisRequestIsNoLongerValid" xml:space="preserve">
<value>This request is no longer valid</value>
</data>
<data name="PendingLogInRequests" xml:space="preserve">
<value>Pending login requests</value>
</data>
<data name="DeclineAllRequests" xml:space="preserve">
<value>Decline all requests</value>
</data>
<data name="AreYouSureYouWantToDeclineAllPendingLogInRequests" xml:space="preserve">
<value>Are you sure you want to decline all pending login requests?</value>
</data>
<data name="RequestsDeclined" xml:space="preserve">
<value>Requests declined</value>
</data>
<data name="NoPendingRequests" xml:space="preserve">
<value>No pending requests</value>
</data>
<data name="EnableCamerPermissionToUseTheScanner" xml:space="preserve">
<value>Enable camera permission to use the scanner</value>
</data>
<data name="Language" xml:space="preserve">
<value>Language</value>
</data>
<data name="LanguageChangeXDescription" xml:space="preserve">
<value>The language has been changed to {0}. Please restart the app to see the change</value>
</data>
<data name="LanguageChangeRequiresAppRestart" xml:space="preserve">
<value>Language change requires app restart</value>
</data>
<data name="DefaultSystem" xml:space="preserve">
<value>Default (System)</value>
</data>
<data name="Important" xml:space="preserve">
<value>Important</value>
</data>
<data name="YourMasterPasswordCannotBeRecoveredIfYouForgetItXCharactersMinimum" xml:space="preserve">
<value>Your master password cannot be recovered if you forget it! {0} characters minimum.</value>
</data>
<data name="WeakMasterPassword" xml:space="preserve">
<value>Weak Master Password</value>
</data>
<data name="WeakPasswordIdentifiedUseAStrongPasswordToProtectYourAccount" xml:space="preserve">
<value>Weak password identified. Use a strong password to protect your account. Are you sure you want to use a weak password?</value>
</data>
<data name="Weak" xml:space="preserve">
<value>Weak</value>
</data>
<data name="Good" xml:space="preserve">
<value>Good</value>
</data>
<data name="Strong" xml:space="preserve">
<value>Strong</value>
</data>
<data name="CheckKnownDataBreachesForThisPassword" xml:space="preserve">
<value>Check known data breaches for this password</value>
</data>
<data name="ExposedMasterPassword" xml:space="preserve">
<value>Exposed Master Password</value>
</data>
<data name="PasswordFoundInADataBreachAlertDescription" xml:space="preserve">
<value>Password found in a data breach. Use a unique password to protect your account. Are you sure you want to use an exposed password?</value>
</data>
<data name="WeakAndExposedMasterPassword" xml:space="preserve">
<value>Weak and Exposed Master Password</value>
</data>
<data name="WeakPasswordIdentifiedAndFoundInADataBreachAlertDescription" xml:space="preserve">
<value>Weak password identified and found in a data breach. Use a strong and unique password to protect your account. Are you sure you want to use this password?</value>
</data>
<data name="OrganizationSsoIdentifierRequired" xml:space="preserve">
<value>Organization SSO identifier required.</value>
</data>
<data name="AddTheKeyToAnExistingOrNewItem" xml:space="preserve">
<value>Add the key to an existing or new item</value>
</data>
<data name="ThereAreNoItemsInYourVaultThatMatchX" xml:space="preserve">
<value>There are no items in your vault that match "{0}"</value>
</data>
<data name="SearchForAnItemOrAddANewItem" xml:space="preserve">
<value>Search for an item or add a new item</value>
</data>
<data name="ThereAreNoItemsThatMatchTheSearch" xml:space="preserve">
<value>There are no items that match the search</value>
</data>
<data name="US" xml:space="preserve">
<value>US</value>
</data>
<data name="EU" xml:space="preserve">
<value>EU</value>
</data>
<data name="SelfHosted" xml:space="preserve">
<value>Self-hosted</value>
</data>
<data name="DataRegion" xml:space="preserve">
<value>Data region</value>
</data>
<data name="Region" xml:space="preserve">
<value>Region</value>
</data>
<data name="UpdateWeakMasterPasswordWarning" xml:space="preserve">
<value>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.</value>
</data>
<data name="CurrentMasterPassword" xml:space="preserve">
<value>Current master password</value>
</data>
<data name="LoggedIn" xml:space="preserve">
<value>Logged in!</value>
</data>
<data name="ApproveWithMyOtherDevice" xml:space="preserve">
<value>Approve with my other device</value>
</data>
<data name="RequestAdminApproval" xml:space="preserve">
<value>Request admin approval</value>
</data>
<data name="ApproveWithMasterPassword" xml:space="preserve">
<value>Approve with master password</value>
</data>
<data name="TurnOffUsingPublicDevice" xml:space="preserve">
<value>Turn off using a public device</value>
</data>
<data name="RememberThisDevice" xml:space="preserve">
<value>Remember this device</value>
</data>
<data name="Passkey" xml:space="preserve">
<value>Passkey</value>
</data>
<data name="Passkeys" xml:space="preserve">
<value>Passkeys</value>
</data>
<data name="Application" xml:space="preserve">
<value>Application</value>
</data>
<data name="YouCannotEditPasskeyApplicationBecauseItWouldInvalidateThePasskey" xml:space="preserve">
<value>You cannot edit passkey application because it would invalidate the passkey</value>
</data>
<data name="PasskeyWillNotBeCopied" xml:space="preserve">
<value>Passkey will not be copied</value>
</data>
<data name="ThePasskeyWillNotBeCopiedToTheClonedItemDoYouWantToContinueCloningThisItem" xml:space="preserve">
<value>The passkey will not be copied to the cloned item. Do you want to continue cloning this item?</value>
</data>
<data name="CopyApplication" xml:space="preserve">
<value>Copy application</value>
</data>
<data name="AvailableForTwoStepLogin" xml:space="preserve">
<value>Available for two-step login</value>
</data>
<data name="MasterPasswordRePromptHelp" xml:space="preserve">
<value>Master password re-prompt help</value>
</data>
<data name="UnlockingMayFailDueToInsufficientMemoryDecreaseYourKDFMemorySettingsToResolve" xml:space="preserve">
<value>Unlocking may fail due to insufficient memory. Decrease your KDF memory settings or set up biometric unlock to resolve.</value>
</data>
<data name="InvalidAPIKey" xml:space="preserve">
<value>Invalid API key</value>
</data>
<data name="InvalidAPIToken" xml:space="preserve">
<value>Invalid API token</value>
</data>
<data name="AdminApprovalRequested" xml:space="preserve">
<value>Admin approval requested</value>
</data>
<data name="YourRequestHasBeenSentToYourAdmin" xml:space="preserve">
<value>Your request has been sent to your admin.</value>
</data>
<data name="YouWillBeNotifiedOnceApproved" xml:space="preserve">
<value>You will be notified once approved. </value>
</data>
<data name="TroubleLoggingIn" xml:space="preserve">
<value>Trouble logging in?</value>
</data>
<data name="LoggingInAsX" xml:space="preserve">
<value>Logging in as {0}</value>
</data>
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
<value>Vault timeout action changed to log out</value>
</data>
<data name="BlockAutoFill" xml:space="preserve">
<value>Block auto-fill</value>
</data>
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
<value>Auto-fill will not be offered for these URIs.</value>
</data>
<data name="NewBlockedURI" xml:space="preserve">
<value>New blocked URI</value>
</data>
<data name="URISaved" xml:space="preserve">
<value>URI saved</value>
</data>
<data name="InvalidFormatUseHttpsHttpOrAndroidApp" xml:space="preserve">
<value>Invalid format. Use https://, http://, or androidapp://</value>
<comment>https://, http://, androidapp:// should not be translated</comment>
</data>
<data name="EditURI" xml:space="preserve">
<value>Edit URI</value>
</data>
<data name="EnterURI" xml:space="preserve">
<value>Enter URI</value>
</data>
<data name="FormatXSeparateMultipleURIsWithAComma" xml:space="preserve">
<value>Format: {0}. Separate multiple URIs with a comma.</value>
</data>
<data name="FormatX" xml:space="preserve">
<value>Format: {0}</value>
</data>
<data name="InvalidURI" xml:space="preserve">
<value>Invalid URI</value>
</data>
<data name="URIRemoved" xml:space="preserve">
<value>URI removed</value>
</data>
<data name="ThereAreNoBlockedURIs" xml:space="preserve">
<value>There are no blocked URIs</value>
</data>
<data name="TheURIXIsAlreadyBlocked" xml:space="preserve">
<value>The URI {0} is already blocked</value>
</data>
<data name="CannotEditMultipleURIsAtOnce" xml:space="preserve">
<value>Cannot edit multiple URIs at once</value>
</data>
<data name="LoginApproved" xml:space="preserve">
<value>Login approved</value>
</data>
<data name="LogInWithDeviceMustBeSetUpInTheSettingsOfTheBitwardenAppNeedAnotherOption" xml:space="preserve">
<value>Log in with device must be set up in the settings of the Bitwarden app. Need another option?</value>
</data>
<data name="LogInWithDevice" xml:space="preserve">
<value>Log in with device</value>
</data>
<data name="LoggingInOn" xml:space="preserve">
<value>Logging in on</value>
</data>
<data name="Vault" xml:space="preserve">
<value>Vault</value>
</data>
<data name="Appearance" xml:space="preserve">
<value>Appearance</value>
</data>
<data name="AccountSecurity" xml:space="preserve">
<value>Account security</value>
</data>
<data name="BitwardenHelpCenter" xml:space="preserve">
<value>Bitwarden Help Center</value>
</data>
<data name="ContactBitwardenSupport" xml:space="preserve">
<value>Contact Bitwarden support</value>
</data>
<data name="CopyAppInformation" xml:space="preserve">
<value>Copy app information</value>
</data>
<data name="SyncNow" xml:space="preserve">
<value>Sync now</value>
</data>
<data name="UnlockOptions" xml:space="preserve">
<value>Unlock options</value>
</data>
<data name="SessionTimeout" xml:space="preserve">
<value>Session timeout</value>
</data>
<data name="SessionTimeoutAction" xml:space="preserve">
<value>Session timeout action</value>
</data>
<data name="AccountFingerprintPhrase" xml:space="preserve">
<value>Account fingerprint phrase</value>
<comment>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.</comment>
</data>
<data name="OneHourAndOneMinute" xml:space="preserve">
<value>One hour and one minute</value>
</data>
<data name="OneHourAndXMinute" xml:space="preserve">
<value>One hour and {0} minutes</value>
</data>
<data name="XHoursAndOneMinute" xml:space="preserve">
<value>{0} hours and one minute</value>
</data>
<data name="XHoursAndYMinutes" xml:space="preserve">
<value>{0} hours and {1} minutes</value>
</data>
<data name="XHours" xml:space="preserve">
<value>{0} hours</value>
</data>
<data name="AutofillServicesExplanationLong" xml:space="preserve">
<value>The Android Autofill Framework is used to assist in filling login information into other apps on your device.</value>
</data>
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
<value>Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay.</value>
</data>
<data name="AdditionalOptions" xml:space="preserve">
<value>Additional options</value>
</data>
<data name="ContinueToWebApp" xml:space="preserve">
<value>Continue to web app?</value>
</data>
<data name="ContinueToX" xml:space="preserve">
<value>Continue to {0}?</value>
<comment>The parameter is an URL, like bitwarden.com.</comment>
</data>
<data name="ContinueToHelpCenter" xml:space="preserve">
<value>Continue to Help center?</value>
</data>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Continue to contact support?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Continue to privacy policy?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Continue to app store?</value>
</data>
<data name="TwoStepLoginDescriptionLong" xml:space="preserve">
<value>Make your account more secure by setting up two-step login in the Bitwarden web app.</value>
</data>
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
<value>You can change your master password on the Bitwarden web app.</value>
</data>
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
<value>You can import data to your vault on {0}.</value>
<comment>The parameter is an URL, like vault.bitwarden.com.</comment>
</data>
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
<value>Learn more about how to use Bitwarden on the Help center.</value>
</data>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Cant find what you are looking for? Reach out to Bitwarden support on bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Check out our privacy policy on bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Explore more features of your Bitwarden account on the web app.</value>
</data>
<data name="LearnAboutOrganizationsDescriptionLong" xml:space="preserve">
<value>Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website.</value>
</data>
<data name="RateAppDescriptionLong" xml:space="preserve">
<value>Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now.</value>
</data>
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
<value>Choose the dark theme to use when your devices dark mode is in use</value>
</data>
<data name="CreatedXY" xml:space="preserve">
<value>Created {0}, {1}</value>
<comment>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.</comment>
</data>
<data name="TooManyAttempts" xml:space="preserve">
<value>Too many attempts</value>
</data>
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
<value>Account logged out.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Set up an unlock option to change your vault timeout action.</value>
</data>
</root>