Merge branch 'bitwarden:main' into master

This commit is contained in:
flox_x 2024-01-29 11:37:39 +01:00 committed by GitHub
commit 75f4e0d17e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
118 changed files with 1844 additions and 1351 deletions

15
.github/CODEOWNERS vendored
View File

@ -1,12 +1,14 @@
# Please sort lines alphabetically, this will ensure we don't accidentally add duplicates.
# Please sort into logical groups with comment headers. Sort groups in order of specificity.
# For example, default owners should always be the first group.
# Sort lines alphabetically within these groups to avoid accidentally adding duplicates.
#
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# The following owners will be the default owners for everything in the repo.
# Unless a later match takes precedence
# @bitwarden/tech-leads
# Default file owners
* @bitwarden/dept-development-mobile
@bitwarden/dept-development-mobile
# DevOps for Actions and other workflow changes
.github/workflows @bitwarden/dept-devops
## Auth team files ##
@ -32,3 +34,6 @@ src/App/Resources/AppResources.resx
src/watchOS/bitwarden/bitwarden\ WatchKit\ Extension/Localization/en.lproj
store/apple/en
store/google/en
## Utils ##
store/google/Publisher

17
.github/renovate.json vendored
View File

@ -2,22 +2,21 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"github>bitwarden/renovate-config:pin-actions",
":combinePatchMinorReleases",
":dependencyDashboard",
":maintainLockFilesWeekly",
":pinAllExceptPeerDependencies",
":prConcurrentLimit10",
":rebaseStalePrs",
"schedule:weekends",
":separateMajorReleases"
":separateMajorReleases",
"group:monorepos",
"schedule:weekends"
],
"enabledManagers": ["cargo", "github-actions", "npm", "nuget"],
"enabledManagers": ["github-actions", "npm", "nuget"],
"commitMessagePrefix": "[deps]:",
"commitMessageTopic": "{{depName}}",
"packageRules": [
{
"groupName": "cargo minor",
"matchManagers": ["cargo"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "gh minor",
"matchManagers": ["github-actions"],
@ -32,6 +31,6 @@
"groupName": "nuget minor",
"matchManagers": ["nuget"],
"matchUpdateTypes": ["minor", "patch"]
},
}
]
}

View File

@ -9,15 +9,14 @@ on:
paths-ignore:
- ".github/workflows/**"
workflow_dispatch:
inputs: {}
jobs:
cloc:
name: CLOC
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up CLOC
run: |
@ -30,13 +29,13 @@ jobs:
setup:
name: Setup
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
outputs:
rc_branch_exists: ${{ steps.branch-check.outputs.rc_branch_exists }}
hotfix_branch_exists: ${{ steps.branch-check.outputs.hotfix_branch_exists }}
steps:
- name: Checkout repo
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
submodules: 'true'
@ -54,7 +53,6 @@ jobs:
else
echo "hotfix_branch_exists=0" >> $GITHUB_OUTPUT
fi
shell: bash
android:
@ -72,7 +70,7 @@ jobs:
nuget-version: 5.9.0
- name: Set up .NET
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0
with:
dotnet-version: '3.1.x'
@ -82,25 +80,12 @@ jobs:
- name: Setup Windows builder
run: choco install checksum --no-progress
- name: Work Around for broken Windows 2022 Runner Image
- name: Install Microsoft OpenJDK 11
run: |
Set-Location "C:\Program Files (x86)\Microsoft Visual Studio\Installer\"
$InstallPath = "C:\Program Files\Microsoft Visual Studio\2022\Enterprise"
$componentsToAdd = @(
"Component.Xamarin"
)
[string]$workloadArgs = $componentsToAdd | ForEach-Object {" --add " + $_}
$Arguments = ('/c', "vs_installer.exe", 'modify', '--installPath', "`"$InstallPath`"",$workloadArgs, '--quiet', '--norestart', '--nocache')
$process = Start-Process -FilePath cmd.exe -ArgumentList $Arguments -Wait -PassThru -WindowStyle Hidden
if ($process.ExitCode -eq 0)
{
Write-Host "components have been successfully added"
}
else
{
Write-Host "components were not installed"
exit 1
}
choco install microsoft-openjdk11 --no-progress
Write-Output "JAVA_HOME=$(Get-ChildItem -Path 'C:\Program Files\Microsoft\jdk*' | Select -First 1 -ExpandProperty FullName)" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
Write-Output "Java Home: $env:JAVA_HOME"
- name: Print environment
run: |
nuget help | grep Version
@ -110,9 +95,10 @@ jobs:
echo "GitHub event: $GITHUB_EVENT"
- name: Checkout repo
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
- name: Decrypt secrets
env:
DECRYPT_FILE_PASSWORD: ${{ secrets.DECRYPT_FILE_PASSWORD }}
@ -126,6 +112,7 @@ jobs:
gpg --quiet --batch --yes --decrypt --passphrase="$DECRYPT_FILE_PASSWORD" \
--output $HOME/secrets/play_creds.json ./.github/secrets/play_creds.json.gpg
shell: bash
- name: Decrypt secrets - Google Services
if: ${{ matrix.variant == 'prod' }}
env:
@ -134,6 +121,7 @@ jobs:
gpg --quiet --batch --yes --decrypt --passphrase="$DECRYPT_FILE_PASSWORD" \
--output ./src/Android/google-services.json ./.github/secrets/google-services.json.gpg
shell: bash
- name: Increment version
run: |
BUILD_NUMBER=$((3000 + $GITHUB_RUN_NUMBER))
@ -151,18 +139,15 @@ jobs:
- name: Restore tools
run: dotnet tool restore
shell: pwsh
- name: Verify Format
run: dotnet tool run dotnet-format --check
shell: pwsh
- name: Run Core tests
run: dotnet test test/Core.Test/Core.Test.csproj --logger "trx;LogFileName=test-results.trx"
shell: pwsh
- name: Report test results
uses: dorny/test-reporter@c9b3d0e2bd2a4e96aaf424dbaa31c46b42318226 # v1.6.0
uses: dorny/test-reporter@afe6793191b75b608954023a46831a3fe10048d4 # v1.7.0
if: always()
with:
name: Test Results
@ -186,8 +171,6 @@ jobs:
Write-Output "########################################"
msbuild "$($env:GITHUB_WORKSPACE + "/src/Android/Android.csproj")" "/p:Configuration=$configuration"
shell: pwsh
- name: Sign Android Build
env:
PLAY_KEYSTORE_PASSWORD: ${{ secrets.PLAY_KEYSTORE_PASSWORD }}
@ -234,10 +217,10 @@ jobs:
$signedApkDestPath = $($env:GITHUB_WORKSPACE + "/$($packageName).apk");
Copy-Item $signedApkPath $signedApkDestPath
shell: pwsh
- name: Upload Prod .aab artifact
if: ${{ matrix.variant == 'prod' }}
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: com.x8bit.bitwarden.aab
path: ./com.x8bit.bitwarden.aab
@ -245,7 +228,7 @@ jobs:
- name: Upload Prod .apk artifact
if: ${{ matrix.variant == 'prod' }}
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: com.x8bit.bitwarden.apk
path: ./com.x8bit.bitwarden.apk
@ -253,7 +236,7 @@ jobs:
- name: Upload Other .apk artifact
if: ${{ matrix.variant != 'prod' }}
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: com.x8bit.bitwarden.${{ matrix.variant }}.apk
path: ./com.x8bit.bitwarden.${{ matrix.variant }}.apk
@ -273,7 +256,7 @@ jobs:
- name: Upload .apk sha file for prod
if: ${{ matrix.variant == 'prod' }}
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: bw-android-apk-sha256.txt
path: ./bw-android-apk-sha256.txt
@ -281,14 +264,14 @@ jobs:
- name: Upload .apk sha file for other
if: ${{ matrix.variant != 'prod' }}
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: bw-android-${{ matrix.variant }}-apk-sha256.txt
path: ./bw-android-${{ matrix.variant }}-apk-sha256.txt
if-no-files-found: error
- name: Deploy to Play Store
if: ${{ matrix.variant == 'prod' && (( github.ref == 'refs/heads/master'
if: ${{ matrix.variant == 'prod' && (( github.ref == 'refs/heads/main'
&& needs.setup.outputs.rc_branch_exists == 0
&& needs.setup.outputs.hotfix_branch_exists == 0)
|| (github.ref == 'refs/heads/rc' && needs.setup.outputs.hotfix_branch_exists == 0)
@ -318,25 +301,11 @@ jobs:
- name: Setup Windows builder
run: choco install checksum --no-progress
- name: Work Around for broken Windows 2022 Runner Image
- name: Install Microsoft OpenJDK 11
run: |
Set-Location "C:\Program Files (x86)\Microsoft Visual Studio\Installer\"
$InstallPath = "C:\Program Files\Microsoft Visual Studio\2022\Enterprise"
$componentsToAdd = @(
"Component.Xamarin"
)
[string]$workloadArgs = $componentsToAdd | ForEach-Object {" --add " + $_}
$Arguments = ('/c', "vs_installer.exe", 'modify', '--installPath', "`"$InstallPath`"",$workloadArgs, '--quiet', '--norestart', '--nocache')
$process = Start-Process -FilePath cmd.exe -ArgumentList $Arguments -Wait -PassThru -WindowStyle Hidden
if ($process.ExitCode -eq 0)
{
Write-Host "components have been successfully added"
}
else
{
Write-Host "components were not installed"
exit 1
}
choco install microsoft-openjdk11 --no-progress
Write-Output "JAVA_HOME=$(Get-ChildItem -Path 'C:\Program Files\Microsoft\jdk*' | Select -First 1 -ExpandProperty FullName)" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
Write-Output "Java Home: $env:JAVA_HOME"
- name: Print environment
run: |
@ -347,7 +316,7 @@ jobs:
echo "GitHub event: $GITHUB_EVENT"
- name: Checkout repo
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Decrypt secrets
env:
@ -441,7 +410,6 @@ jobs:
$appCenterNode.ParentNode.RemoveChild($appCenterNode);
$xml.Save($corePath);
shell: pwsh
- name: Restore packages
run: nuget restore
@ -455,7 +423,6 @@ jobs:
Write-Output "########################################"
msbuild "$($env:GITHUB_WORKSPACE + "/src/Android/Android.csproj")" "/p:Configuration=$configuration"
shell: pwsh
- name: Sign for F-Droid
env:
@ -479,10 +446,9 @@ jobs:
$signedApkDestPath = $($env:GITHUB_WORKSPACE + "/com.x8bit.bitwarden-fdroid.apk");
Copy-Item $signedApkPath $signedApkDestPath
shell: pwsh
- name: Upload F-Droid .apk artifact
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: com.x8bit.bitwarden-fdroid.apk
path: ./com.x8bit.bitwarden-fdroid.apk
@ -494,7 +460,7 @@ jobs:
-t sha256 | Out-File -Encoding ASCII ./bw-fdroid-apk-sha256.txt
- name: Upload F-Droid sha file
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: bw-fdroid-apk-sha256.txt
path: ./bw-fdroid-apk-sha256.txt
@ -520,28 +486,21 @@ jobs:
echo "GitHub event: $GITHUB_EVENT"
- name: Checkout repo
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
submodules: 'true'
- name: Login to Azure - CI Subscription
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.6
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
with:
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
- name: Retrieve secrets
id: retrieve-secrets
env:
KEYVAULT: bitwarden-ci
SECRETS: |
appcenter-ios-token
run: |
for i in ${SECRETS//,/ }
do
VALUE=$(az keyvault secret show --vault-name $KEYVAULT --name $i --query value --output tsv)
echo "::add-mask::$VALUE"
echo "$i=$VALUE" >> $GITHUB_OUTPUT
done
uses: bitwarden/gh-actions/get-keyvault-secrets@main
with:
keyvault: "bitwarden-ci"
secrets: "appcenter-ios-token"
- name: Decrypt secrets
env:
@ -570,7 +529,6 @@ jobs:
./.github/secrets/dist_watch_app_extension.mobileprovision.gpg
gpg --quiet --batch --yes --decrypt --passphrase="$DECRYPT_FILE_PASSWORD" \
--output ./src/watchOS/bitwarden/GoogleService-Info.plist ./.github/secrets/GoogleService-Info.plist.gpg
shell: bash
- name: Increment version
run: |
@ -586,8 +544,6 @@ jobs:
perl -0777 -pi.bak -e 's/<key>CFBundleVersion<\/key>\s*<string>1<\/string>/<key>CFBundleVersion<\/key>\n\t<string>'"$BUILD_NUMBER"'<\/string>/' ./src/iOS.ShareExtension/Info.plist
cd src/watchOS/bitwarden
agvtool new-version -all $BUILD_NUMBER
cd ../../..
shell: bash
- name: Update Entitlements
run: |
@ -596,7 +552,6 @@ jobs:
echo "########################################"
perl -0777 -pi.bak -e 's/<key>aps-environment<\/key>\s*<string>development<\/string>/<key>aps-environment<\/key>\n\t<string>production<\/string>/' ./src/iOS/Entitlements.plist
shell: bash
- name: Set up Keychain
env:
@ -613,7 +568,6 @@ jobs:
security import ~/secrets/iphone-distribution-cert.p12 -k build.keychain -P $DIST_CERT_PASSWORD \
-T /usr/bin/codesign -T /usr/bin/security
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k $KEYCHAIN_PASSWORD build.keychain
shell: bash
- name: Set up provisioning profiles
run: |
@ -644,7 +598,6 @@ jobs:
WATCH_APP_EXTENSION_UUID=$(grep UUID -A1 -a $WATCH_APP_EXTENSION_PROFILE_PATH | grep -io "[-A-F0-9]\{36\}")
cp $WATCH_APP_EXTENSION_PROFILE_PATH "$PROFILES_DIR_PATH/$WATCH_APP_EXTENSION_UUID.mobileprovision"
shell: bash
- name: Bulid WatchApp
run: |
@ -657,7 +610,6 @@ jobs:
echo "########################################"
echo "##### Done"
echo "########################################"
shell: bash
- name: Restore packages
run: nuget restore
@ -703,7 +655,6 @@ jobs:
xcodebuild -exportArchive -archivePath $ARCHIVE_PATH -exportPath $EXPORT_PATH \
-exportOptionsPlist $EXPORT_OPTIONS_PATH
shell: bash
- name: Export .app for Automation CI
run: |
@ -712,7 +663,6 @@ jobs:
zip -r -q BitwardeniOS.app.zip $ARCHIVE_PATH
mv BitwardeniOS.app.zip $EXPORT_PATH
shell: bash
- name: Copy all dSYMs files to upload
run: |
@ -725,10 +675,9 @@ jobs:
cp -r -v $ARCHIVE_DSYMS_PATH $EXPORT_PATH
mkdir $WATCH_DSYMS_EXPORT_PATH
cp -r -v $WATCH_ARCHIVE_DSYMS_PATH $WATCH_DSYMS_EXPORT_PATH
shell: bash
- name: Upload App Store .ipa & dSYMs artifacts
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: Bitwarden iOS
path: |
@ -737,7 +686,7 @@ jobs:
if-no-files-found: error
- name: Upload .app file for Automation CI
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: BitwardeniOS.app.zip
path: ./bitwarden-export/BitwardeniOS.app.zip
@ -745,7 +694,7 @@ jobs:
- name: Install AppCenter CLI
if: |
(github.ref == 'refs/heads/master'
(github.ref == 'refs/heads/main'
&& needs.setup.outputs.rc_branch_exists == 0
&& needs.setup.outputs.hotfix_branch_exists == 0)
|| (github.ref == 'refs/heads/rc' && needs.setup.outputs.hotfix_branch_exists == 0)
@ -754,7 +703,7 @@ jobs:
- name: Upload dSYMs to App Center
if: |
(github.ref == 'refs/heads/master'
(github.ref == 'refs/heads/main'
&& needs.setup.outputs.rc_branch_exists == 0
&& needs.setup.outputs.hotfix_branch_exists == 0)
|| (github.ref == 'refs/heads/rc' && needs.setup.outputs.hotfix_branch_exists == 0)
@ -762,27 +711,24 @@ jobs:
env:
APPCENTER_IOS_TOKEN: ${{ steps.retrieve-secrets.outputs.appcenter-ios-token }}
run: appcenter crashes upload-symbols -a bitwarden/bitwarden -s "./bitwarden-export/dSYMs" --token $APPCENTER_IOS_TOKEN
shell: bash
- name: Upload Watch dSYMs to Firebase Crashlytics
if: |
(github.ref == 'refs/heads/master'
(github.ref == 'refs/heads/main'
&& needs.setup.outputs.rc_branch_exists == 0
&& needs.setup.outputs.hotfix_branch_exists == 0)
|| (github.ref == 'refs/heads/rc' && needs.setup.outputs.hotfix_branch_exists == 0)
|| github.ref == 'refs/heads/hotfix-rc'
run: |
echo "########################################"
echo "##### Uploading Watch dSYMs to Firebase"
echo "########################################"
find "$HOME/Library/Developer/XCode/DerivedData" -name "upload-symbols" -exec chmod +x {} \; -exec {} -gsp "./src/watchOS/bitwarden/GoogleService-Info.plist" -p ios "./bitwarden-export/Watch_dSYMs" \;
shell: bash
- name: Deploy to App Store
if: |
(github.ref == 'refs/heads/master'
(github.ref == 'refs/heads/main'
&& needs.setup.outputs.rc_branch_exists == 0
&& needs.setup.outputs.hotfix_branch_exists == 0)
|| (github.ref == 'refs/heads/rc' && needs.setup.outputs.hotfix_branch_exists == 0)
@ -793,50 +739,42 @@ jobs:
run: |
xcrun altool --upload-app --type ios --file "./bitwarden-export/Bitwarden.ipa" \
--username "$APPLE_ID_USERNAME" --password "$APPLE_ID_PASSWORD"
shell: bash
crowdin-push:
name: Crowdin Push
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/main'
needs:
- android
- f-droid
- ios
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
_CROWDIN_PROJECT_ID: "269690"
steps:
- name: Checkout repo
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Login to Azure - CI Subscription
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.6
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
with:
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
- name: Retrieve secrets
id: retrieve-secrets
env:
KEYVAULT: bitwarden-ci
SECRETS: |
crowdin-api-token
run: |
for i in ${SECRETS//,/ }
do
VALUE=$(az keyvault secret show --vault-name $KEYVAULT --name $i --query value --output tsv)
echo "::add-mask::$VALUE"
echo "$i=$VALUE" >> $GITHUB_OUTPUT
done
uses: bitwarden/gh-actions/get-keyvault-secrets@main
with:
keyvault: "bitwarden-ci"
secrets: "crowdin-api-token"
- name: Upload Sources
uses: crowdin/github-action@965d501f160af7b1f88aed4c29154b0caf1e94b9 # v1.9.0
uses: crowdin/github-action@6fb7e99759b996fd142995636fd8c88c1fb8ecd9 # v1.16.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }}
with:
config: crowdin.yml
crowdin_branch_name: master
crowdin_branch_name: main
upload_sources: true
upload_translations: false
@ -844,7 +782,7 @@ jobs:
check-failures:
name: Check for failures
if: always()
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs:
- cloc
- android
@ -854,7 +792,7 @@ jobs:
steps:
- name: Check if any job failed
if: |
(github.ref == 'refs/heads/master')
(github.ref == 'refs/heads/main')
|| (github.ref == 'refs/heads/rc')
|| (github.ref == 'refs/heads/hotfix-rc')
env:
@ -877,25 +815,18 @@ jobs:
fi
- name: Login to Azure - CI Subscription
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.6
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
if: failure()
with:
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
- name: Retrieve secrets
id: retrieve-secrets
uses: bitwarden/gh-actions/get-keyvault-secrets@main
if: failure()
env:
KEYVAULT: bitwarden-ci
SECRETS: |
devops-alerts-slack-webhook-url
run: |
for i in ${SECRETS//,/ }
do
VALUE=$(az keyvault secret show --vault-name $KEYVAULT --name $i --query value --output tsv)
echo "::add-mask::$VALUE"
echo "$i=$VALUE" >> $GITHUB_OUTPUT
done
with:
keyvault: "bitwarden-ci"
secrets: "devops-alerts-slack-webhook-url"
- name: Notify Slack on failure
uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f # v2.0.0

View File

@ -15,10 +15,10 @@ jobs:
_CROWDIN_PROJECT_ID: "269690"
steps:
- name: Checkout repo
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Login to Azure - CI Subscription
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.6
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
with:
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
@ -30,13 +30,13 @@ jobs:
secrets: "crowdin-api-token, github-gpg-private-key, github-gpg-private-key-passphrase"
- name: Download translations
uses: crowdin/github-action@965d501f160af7b1f88aed4c29154b0caf1e94b9 # v1.9.0
uses: crowdin/github-action@6fb7e99759b996fd142995636fd8c88c1fb8ecd9 # v1.16.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }}
with:
config: crowdin.yml
crowdin_branch_name: master
crowdin_branch_name: main
upload_sources: false
upload_translations: false
download_translations: true

View File

@ -38,7 +38,7 @@ jobs:
fi
- name: Checkout repo
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Check Release Version
id: version
@ -68,7 +68,7 @@ jobs:
- name: Download all artifacts
if: ${{ github.event.inputs.release_type != 'Dry Run' }}
uses: dawidd6/action-download-artifact@246dbf436b23d7c49e21a7ab8204ca9ecd1fe615 # v2.27.0
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e # v2.28.0
with:
workflow: build.yml
workflow_conclusion: success
@ -76,11 +76,11 @@ jobs:
- name: Dry Run - Download all artifacts
if: ${{ github.event.inputs.release_type == 'Dry Run' }}
uses: dawidd6/action-download-artifact@246dbf436b23d7c49e21a7ab8204ca9ecd1fe615 # v2.27.0
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e # v2.28.0
with:
workflow: build.yml
workflow_conclusion: success
branch: master
branch: main
- name: Prep Bitwarden iOS release asset
run: zip -r Bitwarden\ iOS.zip Bitwarden\ iOS
@ -126,11 +126,11 @@ jobs:
if: inputs.fdroid_publish
steps:
- name: Checkout repo
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Download F-Droid .apk artifact
if: ${{ github.event.inputs.release_type != 'Dry Run' }}
uses: dawidd6/action-download-artifact@246dbf436b23d7c49e21a7ab8204ca9ecd1fe615 # v2.27.0
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e # v2.28.0
with:
workflow: build.yml
workflow_conclusion: success
@ -139,15 +139,15 @@ jobs:
- name: Dry Run - Download F-Droid .apk artifact
if: ${{ github.event.inputs.release_type == 'Dry Run' }}
uses: dawidd6/action-download-artifact@246dbf436b23d7c49e21a7ab8204ca9ecd1fe615 # v2.27.0
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e # v2.28.0
with:
workflow: build.yml
workflow_conclusion: success
branch: master
branch: main
name: com.x8bit.bitwarden-fdroid.apk
- name: Set up Node
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
with:
node-version: '16.x'

View File

@ -27,4 +27,4 @@ jobs:
If youre still working on this, please respond here after youve made the changes weve requested and our team will re-open it for further review.
Please make sure to resolve any conflicts with the master branch before requesting another review.
Please make sure to resolve any conflicts with the main branch before requesting another review.

View File

@ -14,7 +14,7 @@ jobs:
version_number: ${{ steps.version.outputs.new-version }}
steps:
- name: Checkout Branch
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Calculate bumped version
id: version
@ -37,3 +37,4 @@ jobs:
uses: ./.github/workflows/version-bump.yml
with:
version_number: ${{ needs.setup.outputs.version_number }}
secrets: inherit

View File

@ -1,28 +1,25 @@
---
name: Version Bump
run-name: Version Bump - v${{ inputs.version_number }}
on:
workflow_dispatch:
inputs:
version_number:
description: "New Version"
description: "New version (example: '2024.1.0')"
required: true
workflow_call:
inputs:
version_number:
required: true
type: string
cut_rc_branch:
description: "Cut RC branch?"
default: true
type: boolean
jobs:
bump_version:
name: "Create version_bump_${{ github.event.inputs.version_number }} branch"
runs-on: ubuntu-20.04
name: "Bump Version to v${{ inputs.version_number }}"
runs-on: ubuntu-22.04
steps:
- name: Checkout Branch
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Login to Azure - CI Subscription
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.7
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
with:
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
@ -31,7 +28,15 @@ jobs:
uses: bitwarden/gh-actions/get-keyvault-secrets@main
with:
keyvault: "bitwarden-ci"
secrets: "github-gpg-private-key, github-gpg-private-key-passphrase"
secrets: "github-gpg-private-key,
github-gpg-private-key-passphrase,
github-pat-bitwarden-devops-bot-repo-scope"
- name: Checkout Branch
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
ref: main
repository: bitwarden/mobile
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@d6f3f49f3345e29369fe57596a3ca8f94c4d2ca7 # v5.4.0
@ -42,37 +47,68 @@ jobs:
git_commit_gpgsign: true
- name: Create Version Branch
run: git switch -c version_bump_${{ github.event.inputs.version_number }}
id: create-branch
run: |
NAME=version_bump_${{ github.ref_name }}_${{ inputs.version_number }}
git switch -c $NAME
echo "name=$NAME" >> $GITHUB_OUTPUT
- name: Install xmllint
run: sudo apt install -y libxml2-utils
- name: Verify input version
env:
NEW_VERSION: ${{ inputs.version_number }}
run: |
CURRENT_VERSION=$(xmllint --xpath '
string(/manifest/@*[local-name()="versionName"
and namespace-uri()="http://schemas.android.com/apk/res/android"])
' src/Android/Properties/AndroidManifest.xml)
# Error if version has not changed.
if [[ "$NEW_VERSION" == "$CURRENT_VERSION" ]]; then
echo "Version has not changed."
exit 1
fi
# Check if version is newer.
printf '%s\n' "${CURRENT_VERSION}" "${NEW_VERSION}" | sort -C -V
if [ $? -eq 0 ]; then
echo "Version check successful."
else
echo "Version check failed."
exit 1
fi
- name: Bump Version - Android XML
uses: bitwarden/gh-actions/version-bump@main
with:
version: ${{ github.event.inputs.version_number }}
file_path: "./src/Android/Properties/AndroidManifest.xml"
version: ${{ inputs.version_number }}
file_path: "src/Android/Properties/AndroidManifest.xml"
- name: Bump Version - iOS.Autofill
uses: bitwarden/gh-actions/version-bump@main
with:
version: ${{ github.event.inputs.version_number }}
file_path: "./src/iOS.Autofill/Info.plist"
version: ${{ inputs.version_number }}
file_path: "src/iOS.Autofill/Info.plist"
- name: Bump Version - iOS.Extension
uses: bitwarden/gh-actions/version-bump@main
with:
version: ${{ github.event.inputs.version_number }}
file_path: "./src/iOS.Extension/Info.plist"
version: ${{ inputs.version_number }}
file_path: "src/iOS.Extension/Info.plist"
- name: Bump Version - iOS.ShareExtension
uses: bitwarden/gh-actions/version-bump@main
with:
version: ${{ github.event.inputs.version_number }}
file_path: "./src/iOS.ShareExtension/Info.plist"
version: ${{ inputs.version_number }}
file_path: "src/iOS.ShareExtension/Info.plist"
- name: Bump Version - iOS
uses: bitwarden/gh-actions/version-bump@main
with:
version: ${{ github.event.inputs.version_number }}
file_path: "./src/iOS/Info.plist"
version: ${{ inputs.version_number }}
file_path: "src/iOS/Info.plist"
- name: Setup git
run: |
@ -91,22 +127,24 @@ jobs:
- name: Commit files
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
run: git commit -m "Bumped version to ${{ github.event.inputs.version_number }}" -a
run: git commit -m "Bumped version to ${{ inputs.version_number }}" -a
- name: Push changes
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
run: git push -u origin version_bump_${{ github.event.inputs.version_number }}
env:
PR_BRANCH: ${{ steps.create-branch.outputs.name }}
run: git push -u origin $PR_BRANCH
- name: Create Version PR
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
id: create-pr
env:
PR_BRANCH: "version_bump_${{ github.event.inputs.version_number }}"
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
BASE_BRANCH: master
TITLE: "Bump version to ${{ github.event.inputs.version_number }}"
GH_TOKEN: ${{ steps.retrieve-secrets.outputs.github-pat-bitwarden-devops-bot-repo-scope }}
PR_BRANCH: ${{ steps.create-branch.outputs.name }}
TITLE: "Bump version to ${{ inputs.version_number }}"
run: |
gh pr create --title "$TITLE" \
--base "$BASE" \
PR_URL=$(gh pr create --title "$TITLE" \
--base "main" \
--head "$PR_BRANCH" \
--label "version update" \
--label "automated pr" \
@ -119,4 +157,42 @@ jobs:
- [X] Other
## Objective
Automated version bump to ${{ github.event.inputs.version_number }}"
Automated version bump to ${{ inputs.version_number }}")
echo "pr_number=${PR_URL##*/}" >> $GITHUB_OUTPUT
- name: Approve PR
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ steps.create-pr.outputs.pr_number }}
run: gh pr review $PR_NUMBER --approve
- name: Merge PR
env:
GH_TOKEN: ${{ steps.retrieve-secrets.outputs.github-pat-bitwarden-devops-bot-repo-scope }}
PR_NUMBER: ${{ steps.create-pr.outputs.pr_number }}
run: gh pr merge $PR_NUMBER --squash --auto --delete-branch
cut_rc:
name: Cut RC branch
needs: bump_version
if: ${{ inputs.cut_rc_branch == true }}
runs-on: ubuntu-22.04
steps:
- name: Checkout Branch
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
ref: main
- name: Check if RC branch exists
run: |
remote_rc_branch_check=$(git ls-remote --heads origin rc | wc -l)
if [[ "${remote_rc_branch_check}" -gt 0 ]]; then
echo "Remote RC branch exists."
echo "Please delete current RC branch before running again."
exit 1
fi
- name: Cut RC branch
run: |
git switch --quiet --create rc
git push --quiet --set-upstream origin rc

7
global.json Normal file
View File

@ -0,0 +1,7 @@
{
"sdk": {
"version": "7.0.400",
"rollForward": "latestPatch",
"allowPrerelease": false
}
}

2
package-lock.json generated
View File

@ -8,7 +8,7 @@
"name": "bitwarden-mobile",
"version": "0.0.0",
"devDependencies": {
"gh-pages": "^3.2.3"
"gh-pages": "3.2.3"
}
},
"node_modules/array-union": {

View File

@ -6,6 +6,6 @@
"clean:l10n": "git push origin --delete l10n_master"
},
"devDependencies": {
"gh-pages": "^3.2.3"
"gh-pages": "3.2.3"
}
}

View File

@ -107,6 +107,7 @@ namespace Bit.Droid.Accessibility
new Browser("org.bromite.chromium", "url_bar"),
new Browser("org.chromium.chrome", "url_bar"),
new Browser("org.codeaurora.swe.browser", "url_bar"),
new Browser("org.cromite.cromite", "url_bar"),
new Browser("org.gnu.icecat", "url_bar_title,mozac_browser_toolbar_url_view"), // 2nd = Anticipation
new Browser("org.mozilla.fenix", "mozac_browser_toolbar_url_view"),
new Browser("org.mozilla.fenix.nightly", "mozac_browser_toolbar_url_view"), // [DEPRECATED ENTRY]

View File

@ -128,6 +128,7 @@ namespace Bit.Droid.Autofill
"org.bromite.chromium",
"org.chromium.chrome",
"org.codeaurora.swe.browser",
"org.cromite.cromite",
"org.gnu.icecat",
"org.mozilla.fenix",
"org.mozilla.fenix.nightly",

View File

@ -157,7 +157,7 @@ namespace Bit.Droid
var autofillHandler = new AutofillHandler(stateService, messagingService, clipboardService,
platformUtilsService, new LazyResolve<IEventService>());
var cryptoFunctionService = new PclCryptoFunctionService(cryptoPrimitiveService);
var cryptoService = new CryptoService(stateService, cryptoFunctionService);
var cryptoService = new CryptoService(stateService, cryptoFunctionService, logger);
var biometricService = new BiometricService(stateService, cryptoService);
var userPinService = new UserPinService(stateService, cryptoService);
var passwordRepromptService = new MobilePasswordRepromptService(platformUtilsService, cryptoService, stateService);

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:versionCode="1" android:versionName="2023.10.1" android:installLocation="internalOnly" package="com.x8bit.bitwarden">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:versionCode="1" android:versionName="2024.1.1" android:installLocation="internalOnly" package="com.x8bit.bitwarden">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="33" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.NFC" />

View File

@ -236,6 +236,9 @@
<compatibility-package
android:name="org.codeaurora.swe.browser"
android:maxLongVersionCode="10000000000"/>
<compatibility-package
android:name="org.cromite.cromite"
android:maxLongVersionCode="10000000000"/>
<compatibility-package
android:name="org.gnu.icecat"
android:maxLongVersionCode="10000000000"/>

View File

@ -31,8 +31,8 @@
<BoxView StyleClass="box-row-separator" />
<controls:ExternalLinkItemView
Title="{u:I18n ContactBitwardenSupport}"
GoToLinkCommand="{Binding ContactBitwardenSupportCommand}"
Title="{u:I18n PrivacyPolicy}"
GoToLinkCommand="{Binding GoToPrivacyPolicyCommand}"
StyleClass="settings-external-link-item"
HorizontalOptions="FillAndExpand" />
<BoxView StyleClass="box-row-separator" />

View File

@ -36,10 +36,10 @@ namespace Bit.App.Pages
AppResources.ContinueToHelpCenter,
ExternalLinksConstants.HELP_CENTER));
ContactBitwardenSupportCommand = CreateDefaultAsyncCommnad(
() => LaunchUriAsync(AppResources.ContactSupportDescriptionLong,
AppResources.ContinueToContactSupport,
ExternalLinksConstants.CONTACT_SUPPORT));
GoToPrivacyPolicyCommand = CreateDefaultAsyncCommnad(
() => LaunchUriAsync(AppResources.PrivacyPolicyDescriptionLong,
AppResources.ContinueToPrivacyPolicy,
ExternalLinksConstants.PRIVACY_POLICY));
GoToWebVaultCommand = CreateDefaultAsyncCommnad(
() => LaunchUriAsync(AppResources.ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp,
@ -82,7 +82,7 @@ namespace Bit.App.Pages
public AsyncCommand ToggleSubmitCrashLogsCommand { get; }
public ICommand GoToHelpCenterCommand { get; }
public ICommand ContactBitwardenSupportCommand { get; }
public ICommand GoToPrivacyPolicyCommand { get; }
public ICommand GoToWebVaultCommand { get; }
public ICommand GoToLearnAboutOrgsCommand { get; }
public ICommand RateTheAppCommand { get; }

View File

@ -53,6 +53,7 @@
Title="{u:I18n AllowScreenCapture}"
IsToggled="{Binding IsScreenCaptureAllowed}"
IsEnabled="{Binding CanToggleeScreenCaptureAllowed}"
IsVisible="{OnPlatform Android=True, iOS=False}"
AutomationId="AllowScreenCaptureSwitch"
StyleClass="settings-item-view"
HorizontalOptions="FillAndExpand" />

View File

@ -40,11 +40,11 @@ namespace Bit.App.Pages
private async Task GoToImportItemsAsync()
{
var webVaultUrl = _environmentService.GetWebVaultUrl();
var body = string.Format(AppResources.YouCanImportDataToYourVaultOnX, webVaultUrl);
var toolsImportUrl = string.Format(ExternalLinksConstants.WEB_VAULT_TOOLS_IMPORT_FORMAT, _environmentService.GetWebVaultUrl());
var body = string.Format(AppResources.YouCanImportDataToYourVaultOnX, toolsImportUrl);
if (await _platformUtilsService.ShowDialogAsync(body, AppResources.ContinueToWebApp, AppResources.Continue, AppResources.Cancel))
{
_platformUtilsService.LaunchUri(webVaultUrl);
_platformUtilsService.LaunchUri(toolsImportUrl);
}
}
}

View File

@ -292,7 +292,7 @@
StyleClass="box-row-button, box-row-button-platform"
Text="{Binding Source={x:Static core:BitwardenIcons.Clone}}"
Command="{Binding CopyCommand}"
IsVisible="{Binding HasTotpValue}"
IsVisible="{Binding AllowTotpCopy}"
Grid.Row="0"
Grid.Column="1"
Grid.RowSpan="2"

View File

@ -307,6 +307,7 @@ namespace Bit.App.Pages
public bool PasswordPrompt => Cipher.Reprompt != CipherRepromptType.None;
public string PasswordVisibilityAccessibilityText => ShowPassword ? AppResources.PasswordIsVisibleTapToHide : AppResources.PasswordIsNotVisibleTapToShow;
public bool HasTotpValue => IsLogin && !string.IsNullOrEmpty(Cipher?.Login?.Totp);
public bool AllowTotpCopy => HasTotpValue && Cipher.ViewPassword;
public string SetupTotpText => $"{BitwardenIcons.Camera} {AppResources.SetupTotp}";
public bool ShowPasskeyInfo => Cipher?.HasFido2Credential == true && !CloneMode;

View File

@ -1714,6 +1714,15 @@ namespace Bit.App.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to Continue to privacy policy?.
/// </summary>
public static string ContinueToPrivacyPolicy {
get {
return ResourceManager.GetString("ContinueToPrivacyPolicy", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Continue to web app?.
/// </summary>
@ -5516,6 +5525,15 @@ namespace Bit.App.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to Check out our privacy policy on bitwarden.com..
/// </summary>
public static string PrivacyPolicyDescriptionLong {
get {
return ResourceManager.GetString("PrivacyPolicyDescriptionLong", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bitwarden keeps your vault automatically synced by using push notifications. For the best possible experience, please select &quot;Allow&quot; on the following prompt when asked to allow push notifications..
/// </summary>

View File

@ -2820,6 +2820,9 @@ Wil u na die rekening omskakel?</value>
<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>
@ -2839,6 +2842,9 @@ Wil u na die rekening omskakel?</value>
<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>

View File

@ -2821,6 +2821,9 @@
<data name="ContinueToContactSupport" xml:space="preserve">
<value>مواصلة الاتصال بالدعم؟</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Continue to privacy policy?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>هل تريد المتابعة إلى متجر التطبيقات؟</value>
</data>
@ -2840,6 +2843,9 @@
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>لا يمكن العثور على ما تبحث عنه؟ قم بالتواصل مع دعم Bitwarden على 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>استكشف المزيد من الميزات لحساب Bitwarden الخاص بك على تطبيق الويب.</value>
</data>
@ -2863,12 +2869,12 @@
<value>تم تسجيل الخروج من الحساب.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>تم تحديث أذونات مؤسستك ، مما يتطلب عليك تعيين كلمة مرور رئيسية.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>تتطلب مؤسستك تعيين كلمة مرور رئيسية.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Set up an unlock option to change your vault timeout action.</value>
<value>أعدنّ ميزة إلغاء القُفْل لتغيير إجراء مهلة المخزن الخاص بك.</value>
</data>
</root>

View File

@ -156,7 +156,7 @@
<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>İstifadəçi adını kopyalayın</value>
<value>İstifadəçi adını kopyala</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">
@ -176,7 +176,7 @@
<comment>Confirmation alert message when deleteing something.</comment>
</data>
<data name="Edit" xml:space="preserve">
<value>Redaktə edin</value>
<value>Düzəliş et</value>
</data>
<data name="EditFolder" xml:space="preserve">
<value>Qovluğa düzəliş et</value>
@ -209,7 +209,7 @@
<value>GitHub repository-də problemi bildirin.</value>
</data>
<data name="FingerprintDirection" xml:space="preserve">
<value>Təsdiqləmək üçün barmaq izinizi istifadə edin.</value>
<value>Doğrulamaq üçün barmaq izinizi istifadə edin.</value>
</data>
<data name="Folder" xml:space="preserve">
<value>Qovluq</value>
@ -236,14 +236,14 @@
<comment>The button text that allows user to launch the website to their web browser.</comment>
</data>
<data name="HelpAndFeedback" xml:space="preserve">
<value>Kömək və əks əlaqə</value>
<value>Kömək və əks-əlaqə</value>
</data>
<data name="Hide" xml:space="preserve">
<value>Gizlət</value>
<comment>Hide a secret value that is currently shown (password).</comment>
</data>
<data name="InternetConnectionRequiredMessage" xml:space="preserve">
<value>Davam etməzdən əvvəl zəhmət olmasa internetə bağlanın.</value>
<value>Davam etməzdən əvvəl lütfən internetə bağlanın.</value>
<comment>Description message for the alert when internet connection is required to continue.</comment>
</data>
<data name="InternetConnectionRequiredTitle" xml:space="preserve">
@ -300,7 +300,7 @@
<comment>The title for the vault page.</comment>
</data>
<data name="Authenticator" xml:space="preserve">
<value>Kimlik təsdiqləyici</value>
<value>Kimlik doğrulayıcı</value>
<comment>Authenticator TOTP feature</comment>
</data>
<data name="Name" xml:space="preserve">
@ -334,7 +334,7 @@
<comment>Message shown when interacting with the server</comment>
</data>
<data name="Settings" xml:space="preserve">
<value>Tənzimləmələr</value>
<value>Ayarlar</value>
<comment>The title for the settings page.</comment>
</data>
<data name="Show" xml:space="preserve">
@ -349,7 +349,7 @@
<value>Göndər</value>
</data>
<data name="Sync" xml:space="preserve">
<value>Eyniləşdirmə</value>
<value>Sinxr</value>
<comment>The title for the sync page.</comment>
</data>
<data name="ThankYou" xml:space="preserve">
@ -379,13 +379,13 @@
<comment>Confirmation message after successfully copying a value to the clipboard.</comment>
</data>
<data name="VerifyFingerprint" xml:space="preserve">
<value>Barmaq izini təsdiqlə</value>
<value>Barmaq izini doğrula</value>
</data>
<data name="VerifyMasterPassword" xml:space="preserve">
<value>Ana parolu təsdiqlə</value>
<value>Ana parolu doğrula</value>
</data>
<data name="VerifyPIN" xml:space="preserve">
<value>PIN-i təsdiqlə</value>
<value>PIN-i doğrula</value>
</data>
<data name="Version" xml:space="preserve">
<value>Versiya</value>
@ -413,10 +413,10 @@
<value>Element əlavə et</value>
</data>
<data name="AppExtension" xml:space="preserve">
<value>Tətbiq genişləndirməsi</value>
<value>Tətbiq uzantısı</value>
</data>
<data name="AutofillAccessibilityDescription" xml:space="preserve">
<value>Tətbiq və veb saytda giriş məlumatlarının avto-doldurulması üçün Bitwarden əlçatımlılıq xidmətini istifadə edin.</value>
<value>Tətbiqlərdə və vebdə giriş məlumatlarının avto-doldurulması üçün Bitwarden əlçatımlılıq xidmətini istifadə edin.</value>
</data>
<data name="AutofillService" xml:space="preserve">
<value>Avto-doldurma xidməti</value>
@ -425,10 +425,10 @@
<value>Anlaşılmaz simvollardan çəkinin</value>
</data>
<data name="BitwardenAppExtension" xml:space="preserve">
<value>Bitwarden tətbiq genişləndirməsi</value>
<value>Bitwarden tətbiq uzantısı</value>
</data>
<data name="BitwardenAppExtensionAlert2" xml:space="preserve">
<value>Anbarınıza yeni hesab əlavə etməyin ən asan yolu, Bitwarden tətbiq genişləndirməsidir. Bu genişləndirmə haqqında daha ətraflı məlumat üçün "Tənzimləmələr" ekranına gedin.</value>
<value>Anbarınıza yeni hesab əlavə etməyin ən asan yolu, Bitwarden tətbiq uzantısıdır. Bu uzantı haqqında daha ətraflı məlumat üçün "Ayarlar" ekranına gedin.</value>
</data>
<data name="BitwardenAppExtensionDescription" xml:space="preserve">
<value>Giriş məlumatlarının avto-doldurulması üçün Safari-də və digər tətbiqlərdə Bitwarden-i istifadə edin.</value>
@ -465,19 +465,19 @@
<value>Elementə düzəliş et</value>
</data>
<data name="EnableAutomaticSyncing" xml:space="preserve">
<value>Avto-eyniləşdirməni fəallaşdır</value>
<value>Avto-sinxr icazə ver</value>
</data>
<data name="EnterEmailForHint" xml:space="preserve">
<value>Ana parol məsləhətini alacağınız hesabınızın e-poçt ünvanını daxil edin.</value>
</data>
<data name="ExntesionReenable" xml:space="preserve">
<value>Tətbiq genişləndirməsini təkrar fəallaşdır</value>
<value>Tətbiq uzantısını təkrar aktivləşdir</value>
</data>
<data name="ExtensionAlmostDone" xml:space="preserve">
<value>Demək olar ki, hazırdır!</value>
</data>
<data name="ExtensionEnable" xml:space="preserve">
<value>Tətbiq genişləndirməsini fəallaşdır</value>
<value>Tətbiq uzantısını aktivləşdir</value>
</data>
<data name="ExtensionInSafari" xml:space="preserve">
<value>Safari-də paylaş nişanını istifadə edərək Bitwarden-i tapın (məsləhət: Menyunun ən alt sətrinin sağ hissəsinə baxın).</value>
@ -496,7 +496,7 @@
<value>Safari və Chrome-da paylaş nişanını istifadə edərək Bitwarden-i tapın (məsləhət: Paylaş menyusunun ən alt sətrinin sağ hissəsinə baxın).</value>
</data>
<data name="ExtensionTapIcon" xml:space="preserve">
<value>Genişləndirməni başlatmaq üçün menyudakı Bitwarden nişanına toxunun.</value>
<value>Uzantını başlatmaq üçün menyudakı Bitwarden nişanına toxunun.</value>
</data>
<data name="ExtensionTurnOn" xml:space="preserve">
<value>Safari və digər tətbiqlərdə Bitwarden-i işə salmaq üçün menyunun ən alt sətrindəki "daha çox" nişanına toxunun.</value>
@ -514,16 +514,16 @@
<value>Ana parolunuz üçün məsləhət alın</value>
</data>
<data name="ImportItems" xml:space="preserve">
<value>Elementləri idxal et</value>
<value>Elementləri daxilə köçür</value>
</data>
<data name="ImportItemsConfirmation" xml:space="preserve">
<value>bitwarden.com veb anbarından elementləri toplu formada idxal edə bilərsiniz. Veb saytı indi ziyarət etmək istəyirsiniz?</value>
<value>bitwarden.com veb anbarından elementləri toplu formada daxilə köçürə bilərsiniz. Veb saytı indi ziyarət etmək istəyirsiniz?</value>
</data>
<data name="ImportItemsDescription" xml:space="preserve">
<value>Digər parol idarəetmə tətbiqlərindəki elementləri cəld və toplu formada idxal edin.</value>
<value>Digər parol idarəetmə tətbiqlərindəki elementləri cəld və toplu formada daxilə köçürün.</value>
</data>
<data name="LastSync" xml:space="preserve">
<value>Son eyniləşdirmə:</value>
<value>Son sinxr:</value>
</data>
<data name="Length" xml:space="preserve">
<value>Uzunluq</value>
@ -553,7 +553,7 @@
<value>Anbara müraciət vaxtının bitmə əməliyyatı</value>
</data>
<data name="VaultTimeoutLogOutConfirmation" xml:space="preserve">
<value>Çıxış edəndə, anbarınıza bütün müraciətiniz dayanacaq və vaxt bitməsindən sonra onlayn kimlik təsdiqləməsi tələb olunacaq. Bu tənzimləməni istifadə etmək istədiyinizə əminsiniz?</value>
<value>Çıxış edəndə, anbarınıza bütün müraciətiniz dayanacaq və vaxt bitməsindən sonra onlayn kimlik doğrulaması tələb olunacaq. Bu ayarı istifadə etmək istədiyinizə əminsiniz?</value>
</data>
<data name="LoggingIn" xml:space="preserve">
<value>Giriş edilir...</value>
@ -589,10 +589,10 @@
<comment>Minimum special characters for password generator settings</comment>
</data>
<data name="MoreSettings" xml:space="preserve">
<value>Daha çox tənzimləmə</value>
<value>Daha çox ayar</value>
</data>
<data name="MustLogInMainApp" xml:space="preserve">
<value>Genişləndirməni istifadə edə bilmək üçün Bitwarden tətbiqində giriş etməlisiniz.</value>
<value>Uzantını istifadə edə bilmək üçün Bitwarden tətbiqində giriş etməlisiniz.</value>
</data>
<data name="Never" xml:space="preserve">
<value>Heç vaxt</value>
@ -617,7 +617,7 @@
<comment>Confirmation, like "Ok, I understand it"</comment>
</data>
<data name="OptionDefaults" xml:space="preserve">
<value>İlkin tənzimləmələr, əsas Bitwarden tətbiqinin parol yaratma alətindən tənzimlənir.</value>
<value>İlkin seçim dəyərləri, əsas Bitwarden tətbiqinin parol yaratma alətindən ayarlanır.</value>
</data>
<data name="Options" xml:space="preserve">
<value>Seçimlər</value>
@ -641,7 +641,7 @@
<value>Hazırkı parolun üzərinə yazmaq istədiyinizə əminsiniz?</value>
</data>
<data name="PushNotificationAlert" xml:space="preserve">
<value>Bitwarden, ani bildirişləri istifadə edərək anbarınızı avtomatik eyniləşdirir. Mümkün olan ən yaxşı təcrübəni təqdim etmək üçün, sizdən ani bildirişləri fəallaşdırmağı soruşanda növbəti ekranda "İcazə ver"i seçin.</value>
<value>Bitwarden, ani bildirişləri istifadə edərək anbarınızın avtomatik sinxronlaşdırılmasını təmin edir. Mümkün olan ən yaxşı təcrübəni təqdim etmək üçün, sizdən ani bildirişləri fəallaşdırmağı soruşduqda növbəti ekranda "İcazə ver"i seçin.</value>
<comment>Push notifications for apple products</comment>
</data>
<data name="RateTheApp" xml:space="preserve">
@ -682,17 +682,17 @@
<comment>Message shown when interacting with the server</comment>
</data>
<data name="Syncing" xml:space="preserve">
<value>Eyniləşdirilir...</value>
<value>Sinxronlaşdırılır...</value>
<comment>Message shown when interacting with the server</comment>
</data>
<data name="SyncingComplete" xml:space="preserve">
<value>Eyniləşdirmə tamamlandı.</value>
<value>Sinxr tamamlandı</value>
</data>
<data name="SyncingFailed" xml:space="preserve">
<value>Uğursuz eyniləşdirmə.</value>
<value>Sinxr uğursuz oldu</value>
</data>
<data name="SyncVaultNow" xml:space="preserve">
<value>Anbarı indi eyniləşdir</value>
<value>Anbarı indi sinxronlaşdır</value>
</data>
<data name="TouchID" xml:space="preserve">
<value>Touch ID</value>
@ -708,11 +708,11 @@
<value>PIN kod ilə kilidi açın</value>
</data>
<data name="Validating" xml:space="preserve">
<value>Təsdiqlənir</value>
<value>Doğrulanır</value>
<comment>Message shown when interacting with the server</comment>
</data>
<data name="VerificationCode" xml:space="preserve">
<value>Təsdiqləmə kodu</value>
<value>Doğrulama kodu</value>
</data>
<data name="ViewItem" xml:space="preserve">
<value>Elementə bax</value>
@ -721,14 +721,14 @@
<value>Bitwarden veb anbarı</value>
</data>
<data name="Lost2FAApp" xml:space="preserve">
<value>Kimlik təsdiqləyici tətbiqini itirmisiniz?</value>
<value>Kimlik doğrulayıcı tətbiqini itirmisiniz?</value>
</data>
<data name="Items" xml:space="preserve">
<value>Elementlər</value>
<comment>Screen title</comment>
</data>
<data name="ExtensionActivated" xml:space="preserve">
<value>Genişləndirmə aktivləşdirildi!</value>
<value>Uzantı aktivləşdirildi!</value>
</data>
<data name="Icons" xml:space="preserve">
<value>Nişanlar</value>
@ -745,19 +745,19 @@
<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>Bir giriş sahəsi seçəndə və Bitwarden avto-doldurma örtüyünü görəndə, avto-doldurma xidmətini başlatmaq üçün ona toxuna bilərsiniz.</value>
<value>Bir giriş xanası seçdikdə və Bitwarden avto-doldurma örtüyünü gördükdə, avto-doldurma xidmətini başlatmaq üçün buna toxuna bilərsiniz.</value>
</data>
<data name="BitwardenAutofillServiceNotificationContent" xml:space="preserve">
<value>Anbarınızdakı bir elementi avto-doldurmaq üçün bu bildirişə toxunun.</value>
</data>
<data name="BitwardenAutofillServiceOpenAccessibilitySettings" xml:space="preserve">
<value>Əlçatımlılıq tənzimləmələrini açın</value>
<value>Əlçatımlılıq Ayarlarını</value>
</data>
<data name="BitwardenAutofillServiceStep1" xml:space="preserve">
<value>1. Android əlçatımlılıq xidmətləri ekranında Xidmətlər başlığı altındakı "Bitwarden"ə toxunun.</value>
</data>
<data name="BitwardenAutofillServiceStep2" xml:space="preserve">
<value>2. Tənzimləməniın və Olduya basaraq qəbul edin.</value>
<value>2. Ayarıın və Olduya basaraq qəbul edin.</value>
</data>
<data name="Disabled" xml:space="preserve">
<value>Sıradan çıxarıldı</value>
@ -775,7 +775,7 @@
<value>Vəziyyət</value>
</data>
<data name="BitwardenAutofillServiceAlert2" xml:space="preserve">
<value>Anbarınıza yeni hesab əlavə etməyin ən asan yolu, Bitwarden avto-doldurma xidmətidir. Bu xidmət haqqında daha ətraflı məlumat üçün "Tənzimləmələr" ekranına gedin.</value>
<value>Anbarınıza yeni hesab əlavə etməyin ən asan yolu, Bitwarden avto-doldurma xidmətidir. Bu xidmət haqqında daha ətraflı məlumat üçün "Ayarlar" ekranına gedin.</value>
</data>
<data name="Autofill" xml:space="preserve">
<value>Avto-doldurma</value>
@ -784,13 +784,13 @@
<value>Avto-doldurmaq və ya bu elementə baxmaq istəyirsiniz?</value>
</data>
<data name="BitwardenAutofillServiceMatchConfirm" xml:space="preserve">
<value>Bu elementi avto-doldurmaq istədiyinizə əminsiniz? "{0}" ilə tam uyğun gəlmir.</value>
<value>Bu elementi avto-doldurmaq istədiyinizə əminsiniz? "{0}" ilə tam uyuşmur.</value>
</data>
<data name="MatchingItems" xml:space="preserve">
<value>Uyğun gələnlər</value>
<value>Uyuşan elementlər</value>
</data>
<data name="PossibleMatchingItems" xml:space="preserve">
<value>Uyğun gələ bilənlər</value>
<value>Uyuşması mümkün olan elementlər</value>
</data>
<data name="Search" xml:space="preserve">
<value>Axtar</value>
@ -806,15 +806,15 @@
<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>Kimlik təsdiqləyici tətbiqi</value>
<value>Kimlik doğrulayıcı tətbiqi</value>
<comment>For 2FA</comment>
</data>
<data name="EnterVerificationCodeApp" xml:space="preserve">
<value>Kimlik təsdiqləyici tətbiqindən 6 rəqəmli təsdiqləmə kodunu daxil edin.</value>
<value>Kimlik doğrulayıcı tətbiqindən 6 rəqəmli doğrulama kodunu daxil edin.</value>
<comment>For 2FA</comment>
</data>
<data name="EnterVerificationCodeEmail" xml:space="preserve">
<value>{0} ünvanına göndərilən e-poçtdakı 6 rəqəmli təsdiqləmə kodunu daxil edin.</value>
<value>{0} ünvanına göndərilən e-poçtdakı 6 rəqəmli doğrulama kodunu daxil edin.</value>
<comment>For 2FA</comment>
</data>
<data name="LoginUnavailable" xml:space="preserve">
@ -822,7 +822,7 @@
<comment>For 2FA whenever there are no available providers on this device.</comment>
</data>
<data name="NoTwoStepAvailable" xml:space="preserve">
<value>Bu hesabda ikir mərhələli giriş fəaldır, ancaq konfiqurasiya edilmiş iki mərhələli təchizatçıların heç biri bu cihazda dəstəklənmir. Zəhmət olmasa dəstəklənən cihaz istifadə edin və/və ya fərqli cihazda dəstəklənən yeni provayderlər əlavə edin (məs. kimlik təsdiqləyici tətbiqi).</value>
<value>Bu hesabda iki addımlı giriş qurulub, ancaq konfiqurasiya edilmiş iki addımlı provayderlərin heç biri bu cihazda dəstəklənmir. Lütfən dəstəklənən cihaz istifadə edin və/və ya fərqli cihazda dəstəklənən yeni provayderlər əlavə edin (məs. kimlik doğrulayıcı tətbiq).</value>
</data>
<data name="RecoveryCodeTitle" xml:space="preserve">
<value>Bərpa kodu</value>
@ -833,7 +833,7 @@
<comment>Remember my two-step login</comment>
</data>
<data name="SendVerificationCodeAgain" xml:space="preserve">
<value>Təsdiqləmə kodu olan e-poçtu yenidən göndər</value>
<value>Doğrulama kodu olan e-poçtu yenidən göndər</value>
<comment>For 2FA</comment>
</data>
<data name="TwoStepLoginOptions" xml:space="preserve">
@ -843,11 +843,11 @@
<value>Başqa bir iki mərhələli giriş metodu istifadə edin</value>
</data>
<data name="VerificationEmailNotSent" xml:space="preserve">
<value>Təsdiqləmə e-poçtu göndərilə bilmədi. Yenidən sınayın.</value>
<value>Doğrulama e-poçtu göndərilə bilmədi. Yenidən sınayın.</value>
<comment>For 2FA</comment>
</data>
<data name="VerificationEmailSent" xml:space="preserve">
<value>Təsdiqləmə e-poçtu göndərildi.</value>
<value>Doğrulama e-poçtu göndərildi</value>
<comment>For 2FA</comment>
</data>
<data name="YubiKeyInstruction" xml:space="preserve">
@ -878,17 +878,17 @@
<comment>The placeholder will show the file size of the attachment. Ex "25 MB"</comment>
</data>
<data name="AuthenticatorKey" xml:space="preserve">
<value>Kimlik təsdiqləyici açarı (TOTP)</value>
<value>Kimlik doğrulayıcı açarı (TOTP)</value>
</data>
<data name="VerificationCodeTotp" xml:space="preserve">
<value>Təsdiqləmə kodu (TOTP)</value>
<value>Doğrulama kodu (TOTP)</value>
<comment>Totp code label</comment>
</data>
<data name="AuthenticatorKeyAdded" xml:space="preserve">
<value>Kimlik təsdiqləyici açarı əlavə edildi.</value>
<value>Kimlik doğrulayıcı açarı əlavə edildi.</value>
</data>
<data name="AuthenticatorKeyReadError" xml:space="preserve">
<value>Kimlik təsdiqləyici açarı oxuna bilmir.</value>
<value>Kimlik doğrulayıcı açarı oxuna bilmir.</value>
</data>
<data name="PointYourCameraAtTheQRCode" xml:space="preserve">
<value>Kameranızı QR koduna yönəldin.
@ -907,7 +907,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>TOTP-ni kopyala</value>
</data>
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
<value>Bir girişin, kimlik təsdiqləyici açarı varsa, giriş məlumatları avto-doldurulanda TOTP təsdiqləmə kodunu kopyalayın.</value>
<value>Bir giriş prosesinin kimlik doğrulayıcı açarı varsa, giriş məlumatları avto-doldurulanda TOTP doğrulama kodunu kopyalayın.</value>
</data>
<data name="CopyTotpAutomatically" xml:space="preserve">
<value>TOTP-ni avtomatik kopyala</value>
@ -946,7 +946,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Şifrələmə açarınızı güncəlləyənə qədər bu özəlliyi istifadə edə bilməzsiniz.</value>
</data>
<data name="EncryptionKeyMigrationRequiredDescriptionLong" xml:space="preserve">
<value>Şifrələmə açarının daşınması tələb olunur. Şifrələmə açarınızı güncəlləmək üçün zəhmət olmasa veb anbar üzərindən giriş edin.</value>
<value>Şifrələmə açarının daşınması tələb olunur. Şifrələmə açarınızı güncəlləmək üçün lütfən veb anbar üzərindən giriş edin.</value>
</data>
<data name="LearnMore" xml:space="preserve">
<value>Daha ətraflı</value>
@ -1167,32 +1167,32 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Avto-doldurma əlçatımlılıq xidməti</value>
</data>
<data name="AutofillServiceDescription" xml:space="preserve">
<value>Bitwarden avto-doldurma xidməti, giriş məlumatlarının, kredit kartlarının və kimlik məlumatlarının cihazınızdakı digər tətbiqlərdə doldurmasına kömək etməsi üçün Android avto-doldurma sistemini istifadə edir.</value>
<value>Bitwarden avto-doldurma xidməti, giriş məlumatlarının cihazınızdakı digər tətbiqlərdə doldurmasına kömək etməsi üçün Android Avto-doldurma Çərçivəsini istifadə edir.</value>
</data>
<data name="BitwardenAutofillServiceDescription" xml:space="preserve">
<value>Digər tətbiqlərdəki giriş məlumatlarının, kredit kartlarının və kimlik məlumatlarının doldurulması üçün Bitwarden avto-doldurma xidmətini istifadə edin.</value>
<value>Giriş məlumatlarını digər tətbiqlərdə doldurmaq üçün Bitwarden avto-doldurma xidmətini istifadə edin.</value>
</data>
<data name="BitwardenAutofillServiceOpenAutofillSettings" xml:space="preserve">
<value>Avto-doldurma tənzimləmələrini açın</value>
<value>Avto-doldurma ayarlarını</value>
</data>
<data name="FaceID" xml:space="preserve">
<value>Face ID</value>
<comment>What Apple calls their facial recognition reader.</comment>
</data>
<data name="FaceIDDirection" xml:space="preserve">
<value>Təsdiqləmə üçün Face ID istifadə edin.</value>
<value>Doğrulamaq üçün Face ID istifadə edin.</value>
</data>
<data name="UseFaceIDToUnlock" xml:space="preserve">
<value>Kilidi açmaq üçün Face ID istifadə edin</value>
</data>
<data name="VerifyFaceID" xml:space="preserve">
<value>Face ID-ni təsdiqlə</value>
<value>Face ID-ni doğrula</value>
</data>
<data name="WindowsHello" xml:space="preserve">
<value>Windows Hello</value>
</data>
<data name="BitwardenAutofillGoToSettings" xml:space="preserve">
<value>Android avto-doldurma tənzimləmələri menyusunu avtomatik aça bilmədik. Bu menyunu tapmaq üçün Android Tənzimləmələri &gt; Sistem &gt; Dillər və daxiletmə &gt; Qabaqcıl &gt; "Avto-doldurma xidməti"nə gedin.</value>
<value>Android avto-doldurma ayarları menyusunu avtomatik aça bilmədik. Bu menyunu tapmaq üçün Android Ayarları &gt; Sistem &gt; Dillər və giriş &gt; Qabaqcıl &gt; "Avto-doldurma xidməti"nə gedin.</value>
</data>
<data name="CustomFieldName" xml:space="preserve">
<value>Özəl sahə adı</value>
@ -1246,10 +1246,10 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Başlayır</value>
</data>
<data name="URIMatchDetection" xml:space="preserve">
<value>URI uyğunluq aşkarlaması</value>
<value>URI uyuşma aşkarlaması</value>
</data>
<data name="MatchDetection" xml:space="preserve">
<value>Uyğunluq aşkarlaması</value>
<value>Uyuşmanı aşkarlama</value>
<comment>URI match detection for auto-fill.</comment>
</data>
<data name="YesAndSave" xml:space="preserve">
@ -1289,10 +1289,10 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Avto-doldurmanı istifadə edə bilmək üçün Bitwarden tətbiqində giriş etməlisiniz.</value>
</data>
<data name="AutofillSetup" xml:space="preserve">
<value>Tətbiqlərdə və veb saytlarda giriş edərkən giriş etmə məlumatlarınıza klaviaturadan asanlıqla müraciət edə bilərsiniz.</value>
<value>Tətbiqlərdə və veb saytlarda giriş edərkən giriş məlumatlarınıza klaviaturadan asanlıqla müraciət edə bilərsiniz.</value>
</data>
<data name="AutofillSetup2" xml:space="preserve">
<value>Digər Avto-doldurma tətbiqləriniz varssa və onları istifadə etməyi düşünmürsünüzsə, Tənzimləmələrdə sıradan çıxara bilərsiniz.</value>
<value>İstifadə etməyi düşünmürsünüzsə, digər Avto-doldurma tətbiqlərini Ayarlarda sıradan çıxartmağı tövsiyə edirik.</value>
</data>
<data name="BitwardenAutofillDescription" xml:space="preserve">
<value>Parollarınızın cəld avto-doldurulması üçün anbarınıza birbaşa klaviaturanızdan müraciət edin.</value>
@ -1301,7 +1301,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Cihazınızda parolun avto-doldurulması üçün aşağıdakı təlimatları izləyin:</value>
</data>
<data name="AutofillTurnOn1" xml:space="preserve">
<value>1. iOS "Tənzimləmələri"nə gedin</value>
<value>1. iOS "Ayarları"na gedin</value>
</data>
<data name="AutofillTurnOn2" xml:space="preserve">
<value>2. "Parollar və Hesablar"a toxunun.</value>
@ -1319,7 +1319,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Parolun avto-doldurulması</value>
</data>
<data name="BitwardenAutofillAlert2" xml:space="preserve">
<value>Anbarınıza yeni giriş məlumatlarını əlavə etməyin ən asan yolu, Bitwarden parol avto-doldurma genişləndirməsidir. Bu genişləndirmə haqqında daha ətraflı məlumat almaq üçün "Tənzimləmələr" ekranına gedin.</value>
<value>Anbarınıza yeni giriş məlumatlarını əlavə etməyin ən asan yolu, Bitwarden parol avto-doldurma uzantısıdır. Bu uzantı haqqında daha ətraflı məlumat almaq üçün "Ayarlar" ekranına gedin.</value>
</data>
<data name="InvalidEmail" xml:space="preserve">
<value>Yararsız e-poçt ünvanı.</value>
@ -1369,10 +1369,10 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Növlər</value>
</data>
<data name="NoPasswordsToList" xml:space="preserve">
<value>Siyahılanacaq parol yoxdur.</value>
<value>Sadalanacaq parol yoxdur.</value>
</data>
<data name="NoItemsToList" xml:space="preserve">
<value>Siyahılanacaq heç bir element yoxdur.</value>
<value>Sadalanacaq heç bir element yoxdur.</value>
</data>
<data name="SearchCollection" xml:space="preserve">
<value>Kolleksiya axtar</value>
@ -1406,7 +1406,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Bu elementin sahibi kimdir?</value>
</data>
<data name="NoCollectionsToList" xml:space="preserve">
<value>Siyahılanacaq heç bir kolleksiya yoxdur.</value>
<value>Sadalanacaq heç bir kolleksiya yoxdur.</value>
</data>
<data name="MovedItemToOrg" xml:space="preserve">
<value>{0}, {1} ünvanına daşındı.</value>
@ -1428,7 +1428,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Təşkilata daşı</value>
</data>
<data name="NoOrgsToList" xml:space="preserve">
<value>Siyahılanacaq heç bir təşkilat yoxdur.</value>
<value>Sadalanacaq heç bir təşkilat yoxdur.</value>
</data>
<data name="MoveToOrgDesc" xml:space="preserve">
<value>Bu elementi daşımaq istədiyiniz təşkilatı seçin. Bir təşkilata daşımaq, elementin sahibliyini də həmin təşkilata daşıyacaq. Daşıdıqdan sonra bu elementə birbaşa sahibliyiniz olmayacaq.</value>
@ -1451,7 +1451,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<comment>Short for "Password Generator"</comment>
</data>
<data name="NoFoldersToList" xml:space="preserve">
<value>Siyahılanacaq heç bir qovluq yoxdur.</value>
<value>Sadalanacaq heç bir qovluq yoxdur.</value>
</data>
<data name="FingerprintPhrase" xml:space="preserve">
<value>Barmaq izi ifadəsi</value>
@ -1465,7 +1465,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Bitwarden, bir təşkilat hesabı istifadə edərək anbar elementlərinizi başqaları ilə paylaşmağınıza icazə verər. Daha ətraflı məlumat üçün bitwarden.com saytını ziyarət etmək istəyirsiniz?</value>
</data>
<data name="ExportVault" xml:space="preserve">
<value>Anbarı ixrac et</value>
<value>Anbarı xaricə köçür</value>
</data>
<data name="LockNow" xml:space="preserve">
<value>İndi kilidlə</value>
@ -1483,20 +1483,20 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>30 dəqiqə</value>
</data>
<data name="SetPINDescription" xml:space="preserve">
<value>Bitwarden-in kilidini açmaq üçün PIN kod tənzimləyin. Hər tətbiqdən tam çıxış edəndə PIN tənzimləmələriniz sıfırlanacaq.</value>
<value>Bitwarden-in kilidini açmaq üçün PIN kodunuzu ayarlayın. Tətbiqdən tam çıxış etdikdə PIN ayarlarınız sıfırlanacaq.</value>
</data>
<data name="LoggedInAsOn" xml:space="preserve">
<value>{1} saytında {0} kimi giriş edildi.</value>
<comment>ex: Logged in as user@example.com on bitwarden.com.</comment>
</data>
<data name="VaultLockedMasterPassword" xml:space="preserve">
<value>Anbarınız kilidlənib. Davam etmək üçün ana parolunuzu təsdiqləyin.</value>
<value>Anbarınız kilidlənib. Davam etmək üçün ana parolunuzu doğrulayın.</value>
</data>
<data name="VaultLockedPIN" xml:space="preserve">
<value>Anbarınız kilidlənib. Davam etmək üçün PIN kodunuzu təsdiqləyin.</value>
<value>Anbarınız kilidlənib. Davam etmək üçün PIN kodunuzu doğrulayın.</value>
</data>
<data name="VaultLockedIdentity" xml:space="preserve">
<value>Anbarınız kilidlənib. Davam etmək üçün kimliyinizi təsdiqləyin.</value>
<value>Anbarınız kilidlənib. Davam etmək üçün kimliyinizi doğrulayın.</value>
</data>
<data name="Dark" xml:space="preserve">
<value>Tünd</value>
@ -1530,11 +1530,11 @@ Skan prosesi avtomatik baş tutacaq.</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>İlkin URI uyğunluq aşkarlaması</value>
<value>İlkin URI uyuşma aşkarlaması</value>
<comment>Default URI match detection for auto-fill.</comment>
</data>
<data name="DefaultUriMatchDetectionDescription" xml:space="preserve">
<value>Avto-doldurma kimi əməliyyatları icra edərkən giriş etmə prosesi üçün URI uyğunluq aşkarlamasının ilkin yolunu seçin.</value>
<value>Avto-doldurma kimi əməliyyatları icra edərkən giriş etmə prosesi üçün URI uyuşma aşkarlamasının idarə edliəcəyi ilkin yolu seçin.</value>
</data>
<data name="Theme" xml:space="preserve">
<value>Tema</value>
@ -1586,7 +1586,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Tətbiq yenidən başladılanda</value>
</data>
<data name="AutofillServiceNotEnabled" xml:space="preserve">
<value>Avto-doldurma, veb sayt və tətbiqlərdən Bitwarden anbarınıza güvənli şəkildə müraciət etməyinizi asanlaşdırır. Deyəsən, Bitwarden üçün avto-doldurma xidmətini fəallaşdırmamısınız. "Tənzimləmələr" ekranında Bitwarden üçün avto-doldurma xidmətini fəallaşdırın.</value>
<value>Avto-doldurma, veb sayt və tətbiqlərdən Bitwarden anbarınıza güvənli şəkildə müraciət etməyinizi asanlaşdırır. Deyəsən, Bitwarden üçün avto-doldurma xidmətini qurmamısınız. "Ayarlar" ekranında Bitwarden üçün avto-doldurma xidmətini qurun.</value>
</data>
<data name="ThemeAppliedOnRestart" xml:space="preserve">
<value>Tema dəyişiklikləriniz tətbiq yenidən başladılanda tətbiq ediləcək.</value>
@ -1611,7 +1611,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Seansın müddəti bitdi.</value>
</data>
<data name="BiometricsDirection" xml:space="preserve">
<value>Biometrik təsdiqləmə</value>
<value>Biometrik doğrulama</value>
</data>
<data name="Biometrics" xml:space="preserve">
<value>Biometrik</value>
@ -1620,19 +1620,19 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Kilidi biometriklə aç</value>
</data>
<data name="AccessibilityOverlayPermissionAlert" xml:space="preserve">
<value>Bitwarden diqqətinizi tələb edir - Bitwarden Tənzimləmələrində "Avto-doldurma əlçatımlılıq xidməti"nə baxın</value>
<value>Bitwarden diqqətinizi tələb edir - Bitwarden ayarlarında "Avto-doldurma əlçatımlılıq xidməti"nə baxın</value>
</data>
<data name="BitwardenAutofillServiceOverlayPermission" xml:space="preserve">
<value>3. Android tətbiq tənzimləmələrində Bitwarden-i tapın və "Digər tətbiqlərin üzərində göstər" seçini açın ("Qabaqcıl" seçimin altında ola bilər).</value>
<value>3. Android tətbiq ayarlarında Bitwarden-i tapın və "Digər tətbiqlərin üzərində göstər" seçiminə ("Qabaqcıl" seçimin altında ola bilər) gedin və örtük dəstəyinə icazə vermək üçün açara toxunun.</value>
</data>
<data name="OverlayPermission" xml:space="preserve">
<value>İcazə</value>
</data>
<data name="BitwardenAutofillServiceOpenOverlayPermissionSettings" xml:space="preserve">
<value>Üzərində göstərmə icazə tənzimləmələriniın</value>
<value>Üzərində göstərmə icazə ayarlarınıın</value>
</data>
<data name="BitwardenAutofillServiceStep3" xml:space="preserve">
<value>3. Android tətbiq tənzimləmələrində Bitwarden-i tapın və "Digər tətbiqlərin üzərində göstər" seçini açın ("Qabaqcıl" seçimin altında ola bilər).</value>
<value>3. Android tətbiq ayarlarında Bitwarden-i tapın və "Digər tətbiqlərin üzərində göstər" seçin ("Qabaqcıl" seçimin altında ola bilər) və örtüyə icazə vermək üçün açarıın.</value>
</data>
<data name="Denied" xml:space="preserve">
<value>Rədd edildi</value>
@ -1644,38 +1644,38 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Fayl formatı</value>
</data>
<data name="ExportVaultMasterPasswordDescription" xml:space="preserve">
<value>Anbar verilənlərinizi ixrac etmək üçün ana parolunuzu daxil edin.</value>
<value>Anbar datanızı xaricə köçürmək üçün ana parolunuzu daxil edin.</value>
</data>
<data name="SendVerificationCodeToEmail" xml:space="preserve">
<value>E-poçtunuza bir təsdiqləmə kodu göndərin</value>
<value>Doğrulama kodunu e-poçtunuza göndərin</value>
</data>
<data name="CodeSent" xml:space="preserve">
<value>Kod göndərildi!</value>
</data>
<data name="ConfirmYourIdentity" xml:space="preserve">
<value>Davam etmək üçün kimliyinizi təsdiqləyin.</value>
<value>Davam etmək üçün kimliyinizi doğrulayın.</value>
</data>
<data name="ExportVaultWarning" xml:space="preserve">
<value>Bu ixrac faylındakı anbar verilənləriniz şifrələnməmiş formatdadır. İxrac edilən faylı, güvənli olmayan kanallar üzərində saxlamamalı və ya göndərməməlisiniz (e-poçt kimi). Bu faylı işiniz bitdikdən sonra dərhal silin.</value>
<value>Xaricə köçürdüyünüz bu fayldakı datanız şifrələnməmiş formatdadır. Bu faylı güvənli olmayan kanallar (e-poçt kimi) üzərində saxlamamalı və ya göndərməməlisiniz. İşiniz bitdikdən sonra faylı dərhal silin.</value>
</data>
<data name="EncExportKeyWarning" xml:space="preserve">
<value>Bu ixrac faylı, hesabınızın şifrələmə açarını istifadə edərək verilənlərinizi şifrələyir. Hesabınızın şifrələmə açarını döndərsəniz, bu ixrac faylının şifrəsini aça bilməyəcəyiniz üçün yenidən ixrac etməli olacaqsınız.</value>
<value>Xaricə köçürdüyünüz bu fayldakı data, hesabınızın şifrələmə açarı istifadə edilərək şifrələnir. Hesabınızın şifrələmə açarını dəyişdirsəniz, bu faylın şifrəsini aça bilməyəcəksiniz və onu yenidən xaricə köçürməli olacaqsınız.</value>
</data>
<data name="EncExportAccountWarning" xml:space="preserve">
<value>Hesab şifrələmə açarları, hər Bitwarden istifadəçi hesabı üçün unikaldır, buna görə də şifrələnmiş bir ixracı, fərqli bir hesaba idxal edə bilməzsiniz.</value>
<value>Hesab şifrələmə açarları, hər Bitwarden istifadəçi hesabı üçün unikaldır, buna görə də şifrələnmiş bir xaricə köçürməni, fərqli bir hesaba köçürə bilməzsiniz.</value>
</data>
<data name="ExportVaultConfirmationTitle" xml:space="preserve">
<value>Anbarın ixracını təsdiqləyin</value>
<value>Anbarın xaricə köçürülməsini təsdiqlə</value>
<comment>Title for the alert to confirm vault exports.</comment>
</data>
<data name="Warning" xml:space="preserve">
<value>Xəbərdarlıq</value>
</data>
<data name="ExportVaultFailure" xml:space="preserve">
<value>Anbarınızın ixracında problem yarandı. Əgər problem davam edərsə, veb anbarından ixrac etməli olacaqsınız.</value>
<value>Anbarınızın xaricə köçürülməsi zamanı problem yarandı. Əgər problem davam edərsə, veb anbarından xaricə köçürməli olacaqsınız.</value>
</data>
<data name="ExportVaultSuccess" xml:space="preserve">
<value>Anbar uğurla ixrac edildi</value>
<value>Anbar uğurla xaricə köçürüldü</value>
</data>
<data name="Clone" xml:space="preserve">
<value>Klonla</value>
@ -1695,7 +1695,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Qoşma uğurla saxlanıldı</value>
</data>
<data name="AutofillTileAccessibilityRequired" xml:space="preserve">
<value>Avto-doldurma qutusunu istifadə etmək üçün zəhmət olmasa "Bitwarden" tənzimləmələrində "Avto-doldurma əlçatımlılıq xidməti"ni fəallaşdırın.</value>
<value>Avto-doldurma qutusunu istifadə etmək üçün lütfən "Bitwarden" ayarlarında "Avto-doldurma əlçatımlılıq xidməti"ni fəallaşdırın.</value>
</data>
<data name="AutofillTileUriNotFound" xml:space="preserve">
<value>Heç bir parol sahəsi aşkarlanmadı</value>
@ -1741,22 +1741,22 @@ Skan prosesi avtomatik baş tutacaq.</value>
<comment>Confirmation alert message when soft-deleting a cipher.</comment>
</data>
<data name="AccountBiometricInvalidated" xml:space="preserve">
<value>Ana parolun təsdiqlənməsi gözlənildiyi üçün bu hesab üzrə biometrik kilid açma sıradan çıxarıldı.</value>
<value>Ana parolun doğrulanması gözlənildiyi üçün bu hesab üzrə biometrik kilid açma sıradan çıxarıldı.</value>
</data>
<data name="AccountBiometricInvalidatedExtension" xml:space="preserve">
<value>Ana parolun təsdiqlənməsi gözlənildiyi üçün bu hesab üzrə avto-doldurma biometrik kilid açma sıradan çıxarıldı.</value>
<value>Ana parolun doğrulanması gözlənildiyi üçün bu hesab üzrə avto-doldurma biometrik kilid açma sıradan çıxarıldı.</value>
</data>
<data name="EnableSyncOnRefresh" xml:space="preserve">
<value>Təzələmə əsnasında eyniləşdirməni fəallaşdır</value>
<value>Təzələmə zamanı sinxr icazə ver</value>
</data>
<data name="EnableSyncOnRefreshDescription" xml:space="preserve">
<value>Barmağınızla aşağı çəkəndə anbarı eyniləşdir</value>
<value>Barmağınızla aşağı çəkdikdə anbarı sinxronlaşdır.</value>
</data>
<data name="LogInSso" xml:space="preserve">
<value>Müəssisə üçün tək daxil olma</value>
</data>
<data name="LogInSsoSummary" xml:space="preserve">
<value>Təşkilatınızın tək daxil olma portalını istifadə edərək daha tez giriş edə bilərsiniz. Başlatmaq üçün zəhmət olmasa təşkilatınızın identifikatorunu daxil edin.</value>
<value>Təşkilatınızın tək daxil olma portalını istifadə edərək daha tez giriş edə bilərsiniz. Başlatmaq üçün lütfən təşkilatınızın identifikatorunu daxil edin.</value>
</data>
<data name="OrgIdentifier" xml:space="preserve">
<value>Təşkilat identifikatoru</value>
@ -1765,10 +1765,10 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Hazırda SSO ilə giriş edilə bilmir</value>
</data>
<data name="SetMasterPassword" xml:space="preserve">
<value>Ana parolu tənzimlə</value>
<value>Ana parolu ayarla</value>
</data>
<data name="SetMasterPasswordSummary" xml:space="preserve">
<value>SSO ilə giriş prosesini tamamlamaq üçün zəhmət olmasa anbarınıza müraciət etmək və onu qorumaq üçün bir ana şifrə tənzimləyin.</value>
<value>SSO ilə giriş prosesini tamamlamaq üçün lütfən anbarınıza müraciət etmək və onu qorumaq üçün bir ana parol ayarlayın.</value>
</data>
<data name="MasterPasswordPolicyInEffect" xml:space="preserve">
<value>Bir və ya daha çox təşkilat siyasəti, aşağıdakı tələbləri qarşılamaq üçün ana parolunuzu tələb edir:</value>
@ -1795,7 +1795,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Yararsız parol</value>
</data>
<data name="MasterPasswordPolicyValidationMessage" xml:space="preserve">
<value>Parol, şirkət tələblərini qarşılamır. Zəhmət olmasa siyasət məlumatlarını yoxlayıb yenidən sınayın.</value>
<value>Parol, şirkət tələblərini qarşılamır. Lütfən siyasət məlumatlarını yoxlayıb yenidən sınayın.</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Yüklənir</value>
@ -1813,7 +1813,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Gizlilik Siyasəti</value>
</data>
<data name="AccessibilityDrawOverPermissionAlert" xml:space="preserve">
<value>Bitwarden diqqətinizi tələb edir - Bitwarden Tənzimləmələrində "Avto-doldurma xidməti"ndə "Üzərindən göstər"i fəallaşdırın</value>
<value>Bitwarden diqqətinizi tələb edir - Bitwarden Ayarlarında "Avto-doldurma xidməti"ndə "Üzərindən göstər"i işə salın</value>
</data>
<data name="AutofillServices" xml:space="preserve">
<value>Avto-doldurma xidmətləri</value>
@ -1828,10 +1828,10 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Əlçatımlılığı istifadə et</value>
</data>
<data name="AccessibilityDescription" xml:space="preserve">
<value>Saytda və tətbiqlərdə giriş məlumatlarınızın avto-doldurulması üçün Bitwarden əlçatımlılıq xidmətini istifadə edə bilərsiniz. Fəal olanda, giriş məlumatlarını daxil edərkən açılan pəncərə görünəcək.</value>
<value>Saytda və vebdə giriş məlumatlarınızı avto-doldurmaq üçün Bitwarden Əlçatımlılıq Xidmətini istifadə edin. Qurulanda, giriş xanalarını seçərkən açılan pəncərə göstərəcəyik.</value>
</data>
<data name="AccessibilityDescription2" xml:space="preserve">
<value>Saytda və tətbiqlərdə giriş məlumatlarınızın avto-doldurulması üçün Bitwarden əlçatımlılıq xidmətini istifadə edə bilərsiniz. ("Üzərində göstər" seçiminin fəal olması lazımdır)</value>
<value>Saytda və vebdə giriş məlumatlarınızı avto-doldurmaq üçün Bitwarden Əlçatımlılıq Xidmətini istifadə edin. ("Üzərində göstər" seçimi açıq olmalıdır)</value>
</data>
<data name="AccessibilityDescription3" xml:space="preserve">
<value>Avto-doldurma cəld əməliyyat qutusunu istifadə etmək üçün Bitwarden əlçatımlılıq xidmətini istifadə edin və/və ya "Üzərində göstər"i (əgər fəaldırsa) istifadə edərək açılan bir pəncərə göstərə bilərsiniz.</value>
@ -1843,13 +1843,13 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>"Üzərində göstər"i istifadə edin</value>
</data>
<data name="DrawOverDescription" xml:space="preserve">
<value>Fəal olsa, giriş məlumatları daxil ediləndə Bitwarden əlçatımlılıq xidmətinə açılan pəncərə görüntüləməsinə icazə verilər.</value>
<value>Giriş xanalarını seçdikdə Bitwarden Əlçatımlılıq Xidmətinin açılan pəncərə göstərməsinə icazə verir.</value>
</data>
<data name="DrawOverDescription2" xml:space="preserve">
<value>Fəal olsa, giriş məlumatlarının avto-doldurmasına köməkçi olması üçün giriş sahələri seçiləndə Bitwarden əlçatımlılıq xidməti açılan bir pəncərə görüntüləyəcək.</value>
<value>İşə salındıqda Bitwarden Əlçatımlılıq Xidməti, giriş məlumatlarınızın avto-doldurmasına kömək etmək üçün giriş xanaları seçildikdə açılan pəncərə göstərəcək.</value>
</data>
<data name="DrawOverDescription3" xml:space="preserve">
<value>Fəal olsa, əlçatımlılıq, Android-in avto-doldurma sistemini dəstəkləməyən köhnə tətbiqlər üçün Avto-doldurma xidmətini təqlid etməsi üçün açılan bir pəncərə göstərəcək.</value>
<value>Fəal olsa, əlçatımlılıq, Android Avto-doldurma Çərçivəsini dəstəkləməyən köhnə tətbiqlərdə Avto-doldurma Xidmətini təqlid etməsi üçün açılan bir pəncərə göstərəcək.</value>
</data>
<data name="PersonalOwnershipSubmitError" xml:space="preserve">
<value>Müəssisə Siyasətinə görə, elementləri şəxsi anbarınızda saxlamağınız məhdudlaşdırılıb. Sahiblik seçimini təşkilat olaraq dəyişdirin və mövcud kolleksiyalar arasından seçim edin.</value>
@ -1924,7 +1924,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Bitmə vaxtı</value>
</data>
<data name="ExpirationDateInfo" xml:space="preserve">
<value>Əgər tənzimlənsə, göstərilən tarix və vaxtda "Send"ə müraciət başa çatacaq.</value>
<value>Əgər ayarlanıbsa, göstərilən tarix və vaxtda "Send"ə müraciət başa çatacaq.</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">
@ -1934,7 +1934,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Maksimal müraciət sayı</value>
</data>
<data name="MaximumAccessCountInfo" xml:space="preserve">
<value>Əgər tənzimlənsə, istifadəçilər maksimal müraciət sayına çatdıqdan sonra bu "Send"ə müraciət edə bilməyəcək.</value>
<value>Əgər ayarlanıbsa, istifadəçilər maksimal müraciət sayına çatdıqdan sonra bu "Send"ə müraciət edə bilməyəcək.</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">
@ -2058,7 +2058,7 @@ Skan prosesi avtomatik baş tutacaq.</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>"Send" ilə faylları istifadə etmək üçün e-poçtunuzu təsdiqləməlisiniz. E-poçtunuzu veb anbarında təsdiqləyə bilərsiniz.</value>
<value>Faylları "Send" ilə istifadə etmək üçün e-poçtunuzu doğrulamalısınız. E-poçtunuzu veb anbarında doğrulaya bilərsiniz.</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">
@ -2068,13 +2068,13 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Ana parol təsdiqi</value>
</data>
<data name="PasswordConfirmationDesc" xml:space="preserve">
<value>Bu əməliyyat qorumalıdır, davam etmək üçün zəhmət olmasa kimliyinizi təsdiqləmək üçün ana parolunuzu təkrar daxil edin.</value>
<value>Bu əməliyyat qorumalıdır, davam etmək üçün lütfən kimliyinizi doğrulamaq üçün ana parolunuzu təkrar daxil edin.</value>
</data>
<data name="CaptchaRequired" xml:space="preserve">
<value>Captcha tələb olunur</value>
</data>
<data name="CaptchaFailed" xml:space="preserve">
<value>Captcha uğursuz oldu. Zəhmət olmasa yenidən sınayın.</value>
<value>Captcha uğursuz oldu. Lütfən yenidən sınayın.</value>
</data>
<data name="UpdatedMasterPassword" xml:space="preserve">
<value>Güncəllənmiş ana parol</value>
@ -2110,19 +2110,19 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>FIDO2 WebAuthn</value>
</data>
<data name="Fido2Instruction" xml:space="preserve">
<value>Davam etmək üçün FIDO2 WebAuthn fəal güvənlik açarınızı hazır saxlayın, daha sonra növbəti ekranda "WebAuthn-u təsdiqlə"yə kliklədikdən sonra təlimatları izləyin.</value>
<value>Davam etmək üçün FIDO2 WebAuthn üçün fəal olan güvənlik açarınızı hazır saxlayın, daha sonra növbəti ekranda "WebAuthn-u doğrula"ya kliklədikdən sonra təlimatları izləyin.</value>
</data>
<data name="Fido2Desc" xml:space="preserve">
<value>Kimlik təsdiqləmə, FIDO2 WebAuthn istifadə edir, xarici güvənlik açarı istifadə edərək kimliyi təsdiqləyə bilərsiniz.</value>
<value>Kimlik doğrulama, FIDO2 WebAuthn istifadə edir, xarici güvənlik açarı istifadə edərək kimliyi doğrulaya bilərsiniz.</value>
</data>
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
<value>WebAuthn-u təsdiqlə</value>
<value>WebAuthn kimlik doğrulama</value>
</data>
<data name="Fido2ReturnToApp" xml:space="preserve">
<value>Tətbiqə qayıt</value>
</data>
<data name="Fido2CheckBrowser" xml:space="preserve">
<value>Zəhmət olmasa ilkin brauzerinizin WebAuthn-u təsdiqlədiyinə əmin olub yenidən sınayın.</value>
<value>Lütfən ilkin brauzerinizin WebAuthn-u dəstəklədiyinə əmin olub yenidən sınayın.</value>
</data>
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
<value>Bu təşkilat, sizi "parol sıfırlama"da avtomatik olaraq qeydiyyata alan müəssisə siyasətinə sahibdir. Qeydiyyat, təşkilat administratorlarına ana parolunuzu dəyişdirmə icazəsi verəcək.</value>
@ -2131,16 +2131,16 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Təşkilatınızın siyasətləri, anbarınızın vaxt bitişinə təsir edir. Anbar vaxt bitişi üçün icazə verilən maksimum vaxt {0} saat {1} dəqiqədir</value>
</data>
<data name="VaultTimeoutPolicyWithActionInEffect" xml:space="preserve">
<value>Təşkilatınızın siyasətləri, anbarınızın vaxt bitişinə təsir edir. Anbar vaxt bitişi üçün icazə verilən maksimum vaxt {0} saat {1} dəqiqədir. Anbar vaxt bitişi əməliyyatı {2} olaraq tənzimləndi.</value>
<value>Təşkilatınızın siyasətləri, anbarınızın vaxt bitişinə təsir edir. Anbar vaxt bitişi üçün icazə verilən maksimum vaxt {0} saat {1} dəqiqədir. Anbar vaxt bitişi əməliyyatı {2} olaraq ayarlandı.</value>
</data>
<data name="VaultTimeoutActionPolicyInEffect" xml:space="preserve">
<value>Təşkilatınızın siyasətləri, anbar vaxt bitişi əməliyyatınızı {0} olaraq tənzimlədi.</value>
<value>Təşkilatınızın siyasətləri, anbar vaxt bitişi əməliyyatınızı {0} olaraq ayarladı.</value>
</data>
<data name="VaultTimeoutToLarge" xml:space="preserve">
<value>Anbar vaxt bitişi, təşkilatınız tərəfindən tənzimlənən məhdudiyyətləri aşır.</value>
<value>Anbar vaxt bitişi, təşkilatınız tərəfindən ayarlanan məhdudiyyətləri aşır.</value>
</data>
<data name="DisablePersonalVaultExportPolicyInEffect" xml:space="preserve">
<value>Bir və ya daha çox təşkilat siyasəti, fərdi anbarınızı ixrac etməyinizin qarşısını alır.</value>
<value>Bir və ya daha çox təşkilat siyasəti, fərdi anbarınızı xaricə köçürməyinizi əngəlləyir.</value>
</data>
<data name="AddAccount" xml:space="preserve">
<value>Hesab əlavə et</value>
@ -2173,7 +2173,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Hesabınız birdəfəlik silinəcək</value>
</data>
<data name="DeleteAccountExplanation" xml:space="preserve">
<value>Hesabınız və əlaqəli bütün verilənlər silinəcək və bərpa oluna bilməyəcək. Davam etmək istədiyinizə əminsiniz?</value>
<value>Hesabınız və əlaqəli bütün datalar silinəcək və bərpa oluna bilməyəcək. Davam etmək istədiyinizə əminsiniz?</value>
</data>
<data name="DeletingYourAccount" xml:space="preserve">
<value>Hesabınız silinir</value>
@ -2182,7 +2182,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Hesabınız birdəfəlik silindi</value>
</data>
<data name="InvalidVerificationCode" xml:space="preserve">
<value>Yararsız təsdiqləmə kodu.</value>
<value>Yararsız doğrulama kodu</value>
</data>
<data name="RequestOTP" xml:space="preserve">
<value>Tək istifadəlik parol tələb et</value>
@ -2200,19 +2200,19 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Kod göndərilir</value>
</data>
<data name="Verifying" xml:space="preserve">
<value>Təsdiqlənir</value>
<value>Doğrulanır</value>
</data>
<data name="ResendCode" xml:space="preserve">
<value>Kodu təkrar göndər</value>
</data>
<data name="AVerificationCodeWasSentToYourEmail" xml:space="preserve">
<value>Təsdiqləmə kodu e-poçtunuza göndərildi</value>
<value>Doğrulama kodu e-poçtunuza göndərildi</value>
</data>
<data name="AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain" xml:space="preserve">
<value>E-poçtunuza təsdiqləmə kodu göndərilərkən bir xəta baş verdi. Zəhmət olmasa yenidən sınayın</value>
<value>E-poçtunuza doğrulama kodu göndərilərkən bir xəta baş verdi. Lütfən yenidən sınayın</value>
</data>
<data name="EnterTheVerificationCodeThatWasSentToYourEmail" xml:space="preserve">
<value>E-poçtunuza göndərilmiş təsdiqləmə kodunu daxil edin</value>
<value>E-poçtunuza göndərilmiş doğrulama kodunu daxil edin</value>
</data>
<data name="SubmitCrashLogs" xml:space="preserve">
<value>Çökmə jurnallarını göndər</value>
@ -2266,13 +2266,13 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>TOTP</value>
</data>
<data name="VerificationCodes" xml:space="preserve">
<value>Təsdiqləmə kodları</value>
<value>Doğrulama kodları</value>
</data>
<data name="PremiumSubscriptionRequired" xml:space="preserve">
<value>Premium abunəlik tələb olunur</value>
</data>
<data name="CannotAddAuthenticatorKey" xml:space="preserve">
<value>Kimlik təsdiqləyici açarı oxuna bilmir? </value>
<value>Kimlik doğrulayıcı açarı oxuna bilmir? </value>
</data>
<data name="ScanQRCode" xml:space="preserve">
<value>QR kodu skan edin</value>
@ -2281,7 +2281,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>QR kodunu skan edə bilmədiniz? </value>
</data>
<data name="AuthenticatorKeyScanner" xml:space="preserve">
<value>Kimlik təsdiqləyici açarı</value>
<value>Kimlik doğrulayıcı açarı</value>
</data>
<data name="EnterKeyManually" xml:space="preserve">
<value>Kodu əllə daxil et</value>
@ -2296,13 +2296,13 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Açar uğurla daxil edildikdən sonra, açarı güvənli şəkildə saxlamaq üçün "TOTP əlavə et"i seçin</value>
</data>
<data name="NeverLockWarning" xml:space="preserve">
<value>Kilid seçimlərini "Heç vaxt" olaraq tənzimləmək, anbarınızı cihazınıza müraciəti olan hər kəsə əlçatan edir. Bu seçimi istifadə etsəniz, cihazınızı düzgün qoruduğunuza əmin olmalısınız.</value>
<value>Kilid seçimlərini "Heç vaxt" olaraq ayarlamaq, anbarınızı cihazınıza müraciəti olan hər kəsə əlçatan edir. Bu seçimi istifadə etsəniz, cihazınızı düzgün qoruduğunuza əmin olmalısınız.</value>
</data>
<data name="EnvironmentPageUrlsError" xml:space="preserve">
<value>Daxil edilən bir və ya daha çox URL yararsızdır. Zəhmət olmasa nəzər salın və yenidən saxlamağa çalışın.</value>
<value>Daxil edilən bir və ya daha çox URL yararsızdır. Lütfən nəzər salın və yenidən saxlamağa çalışın.</value>
</data>
<data name="GenericErrorMessage" xml:space="preserve">
<value>Tələbinizi emal edə bilmədik. Zəhmət olmasa yenidən sınayın və ya bizimlə əlaqə saxlayın.</value>
<value>Tələbinizi emal edə bilmədik. Lütfən yenidən sınayın və ya bizimlə əlaqə saxlayın.</value>
</data>
<data name="AllowScreenCapture" xml:space="preserve">
<value>Ekranı çəkməyə icazə ver</value>
@ -2353,7 +2353,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Giriş tələblərini təsdiqlə</value>
</data>
<data name="UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices" xml:space="preserve">
<value>Digər cihazlardan edilən giriş tələblərini təsdiqləmək üçün bu cihazı istifadə edin.</value>
<value>Digər cihazlardan edilən giriş tələblərini təsdiqləmək üçün bu cihazı istifadə edin</value>
</data>
<data name="AllowNotifications" xml:space="preserve">
<value>Bildirişlərə icazə ver</value>
@ -2464,7 +2464,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
<value>Əlçatımlılıq Xidməti açıqlaması</value>
</data>
<data name="AccessibilityDisclosureText" xml:space="preserve">
<value>Bitwarden, tətbiqlərdə və veb saytlarda giriş sahələrini axtarmaq üçün Əlçatımlılıq Xidmətini istifadə edir, daha sonra tətbiq və ya sayt üçün uyğunluq aşkar etdikdə istifadəçi adı və parolun daxil edilməsi üçün müvafiq sahə kimliklərini yaradır. Xidmət tərəfindən bizə təqdim edilən məlumatların heç birini saxlamırıq, kimlik məlumatlarının daxil edilməsindən kənar ekrandakı hər hansısa elementə nəzarət etməyə cəhd etmirik.</value>
<value>Bitwarden, tətbiqlərdə və veb saytlarda giriş xanalarını axtarmaq üçün Əlçatımlılıq Xidmətini istifadə edir, daha sonra tətbiq və ya sayt üçün uyuşma tapdıqda istifadəçi adı və parolun daxil edilməsi üçün müvafiq sahə kimliklərini yaradır. Xidmət tərəfindən bizə təqdim edilən məlumatların heç birini saxlamırıq, kimlik məlumatlarının daxil edilməsindən kənar ekrandakı hər hansısa elementə nəzarət etməyə cəhd etmirik.</value>
</data>
<data name="Accept" xml:space="preserve">
<value>Qəbul et</value>
@ -2505,7 +2505,7 @@ Bu hesaba keçmək istəyirsiniz?</value>
<value>Cihazınıza bir bildiriş göndərildi.</value>
</data>
<data name="PleaseMakeSureYourVaultIsUnlockedAndTheFingerprintPhraseMatchesOnTheOtherDevice" xml:space="preserve">
<value>Zəhmət olmasa anbarınızın kilidinin açıq olduğuna və Barmaq izi ifadəsinin digər cihazda uyğun gəldiyinə əmin olun.</value>
<value>Lütfən anbarınızın kilidinin açıq olduğuna və Barmaq izi ifadəsinin digər cihazla uyuşduğuna əmin olun.</value>
</data>
<data name="ResendNotification" xml:space="preserve">
<value>Bildirişi təkrar göndər</value>
@ -2541,7 +2541,7 @@ Bu hesaba keçmək istəyirsiniz?</value>
<value>Dil</value>
</data>
<data name="LanguageChangeXDescription" xml:space="preserve">
<value>Dil, {0} olaraq dəyişdirildi. Dəyişiklikləri görmək üçün zəhmət olmasa tətbiqi yenidən başladın</value>
<value>Dil, {0} olaraq dəyişdirildi. Dəyişiklikləri görmək üçün lütfən tətbiqi yenidən başladın</value>
</data>
<data name="LanguageChangeRequiresAppRestart" xml:space="preserve">
<value>Dil dəyişikliyi, tətbiqin yenidən başladılmasını tələb edir</value>
@ -2592,13 +2592,13 @@ Bu hesaba keçmək istəyirsiniz?</value>
<value>Açarı, mövcud və ya yeni bir elementə əlavə edin</value>
</data>
<data name="ThereAreNoItemsInYourVaultThatMatchX" xml:space="preserve">
<value>Anbarınızda {0} ilə uyğunlaşan heç bir element yoxdur</value>
<value>Anbarınızda {0} ilə uyuşan heç bir element yoxdur</value>
</data>
<data name="SearchForAnItemOrAddANewItem" xml:space="preserve">
<value>Bir element axtarın və ya yenisini əlavə edin</value>
</data>
<data name="ThereAreNoItemsThatMatchTheSearch" xml:space="preserve">
<value>Axtarışa uyğun gələn heç bir element yoxdur</value>
<value>Axtarışla uyuşan heç bir element yoxdur</value>
</data>
<data name="US" xml:space="preserve">
<value>ABŞ</value>
@ -2667,7 +2667,7 @@ Bu hesaba keçmək istəyirsiniz?</value>
<value>Ana parolu təkrar soruş köməyi</value>
</data>
<data name="UnlockingMayFailDueToInsufficientMemoryDecreaseYourKDFMemorySettingsToResolve" xml:space="preserve">
<value>Yetərsiz yaddaşa görə kilid açma uğursuz ola bilər. Həll etmək üçün KDF yaddaş tənzimləmələrinizi azaldın və ya biometrik kilid açmanı quraşdırın.</value>
<value>Yetərsiz yaddaşa görə kilid açma uğursuz ola bilər. Həll etmək üçün KDF yaddaş ayarlarınızı azaldın və ya biometrik kilid açmanı quraşdırın.</value>
</data>
<data name="InvalidAPIKey" xml:space="preserve">
<value>Yararsız API açarı</value>
@ -2740,7 +2740,7 @@ Bu hesaba keçmək istəyirsiniz?</value>
<value>Giriş təsdiqləndi</value>
</data>
<data name="LogInWithDeviceMustBeSetUpInTheSettingsOfTheBitwardenAppNeedAnotherOption" xml:space="preserve">
<value>Cihazla giriş etmə, Bitwarden tətbiqinin tənzimləmələrində quraşdırılmalıdır. Başqa bir seçimə ehtiyacınız var?</value>
<value>Cihazla giriş etmə, Bitwarden tətbiqinin ayarlarında qurulmalıdır. Başqa bir seçimə ehtiyacınız var?</value>
</data>
<data name="LogInWithDevice" xml:space="preserve">
<value>Cihazla giriş et</value>
@ -2801,7 +2801,7 @@ Bu hesaba keçmək istəyirsiniz?</value>
<value>Android Avto-doldurma Çərçivəsi, giriş məlumatlarını cihazınızdakı digər tətbiqlərə doldurmağa kömək etmək üçün istifadə olunur.</value>
</data>
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
<value>Seçdiyiniz klaviatura dəstəkləyirsə sətir daxili avto-doldurmani istifadə edin. Əks halda, ilkin örtük istifadə edin.</value>
<value>Seçdiyiniz klaviatura dəstəkləyirsə sətir daxili avto-doldurmanı istifadə edin. Əks halda, ilkin örtük istifadə edin.</value>
</data>
<data name="AdditionalOptions" xml:space="preserve">
<value>Əlavə seçimlər</value>
@ -2819,6 +2819,9 @@ Bu hesaba keçmək istəyirsiniz?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Dəstək komandası ilə əlaqə qurmağa davam edilsin?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Gizlilik Siyasətinə davam edirsiniz?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Tətbiq mağazası ilə davam edilsin?</value>
</data>
@ -2838,6 +2841,9 @@ Bu hesaba keçmək istəyirsiniz?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Axtardığınızı tapa bilmirsiniz? bitwarden.com üzərindən Bitwarden dəstəyinə müraciət edin.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>bitwarden.com saytında gizlilik siyasətimizi nəzərdən keçirin.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Veb tətbiqində Bitwarden hesabınızın daha çox özəlliyini kəşf edin.</value>
</data>
@ -2861,10 +2867,10 @@ Bu hesaba keçmək istəyirsiniz?</value>
<value>Hesabdan çıxış edildi.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>Təşkilatınızın icazələri güncəlləndi və bir ana parol ayarlamağınızı tələb edir.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>Təşkilatınız bir ana parol ayarlamağı tələb edir.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Anbar vaxt bitməsi əməliyyatınızı dəyişdirmək üçün bir kilid açma seçimi qurun.</value>

View File

@ -2820,6 +2820,9 @@
<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>
@ -2839,6 +2842,9 @@
<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>

View File

@ -2110,7 +2110,7 @@
<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>
<value>За да продължите, пригответе своето устройство за удостоверяване съвместимо с FIDO2 WebAuthn, натиснете „Идентификация WebAuthn“ на следващия екран и следвайте инструкциите.</value>
</data>
<data name="Fido2Desc" xml:space="preserve">
<value>Идентификация чрез FIDO2 WebAuthn можете да се идентифицирате чрез външен ключ за сигурност.</value>
@ -2293,8 +2293,8 @@
<value>Настройка на 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>
<value>След като ключът бъде въведен успешно,
изберете „Добавяне на код за потвърждаване“, за да запазите ключа</value>
</data>
<data name="NeverLockWarning" xml:space="preserve">
<value>Ако изберете „Никога“ като настройка за заключването, трезорът Ви ще бъде достъпен за всеки, който има досег с устройството. Ако използвате тази настройка, трябва да се уверите, че устройството Ви е удачно защитено.</value>
@ -2820,6 +2820,9 @@ select Add TOTP to store the key safely</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Продължаване към връзка с поддръжката?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Продължаване към Политиката за поверителност?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Продължаване към магазина за приложения?</value>
</data>
@ -2839,6 +2842,9 @@ select Add TOTP to store the key safely</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Не намирате това, което търсите? Свържете се с поддръжката на Битуорден на bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Прегледайте нашата Политика за поверителност на bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Разгледайте още от възможностите на регистрацията си в Битуорден в уеб приложението.</value>
</data>
@ -2862,10 +2868,10 @@ select Add TOTP to store the key safely</value>
<value>Акаунтът е отписан.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>Правата Ви в организацията бяха променени, необходимо е да зададете главна парола.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>Организацията Ви изисква да зададете главна парола.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Задайте начин за отключване, за да може да промените действието при изтичане на времето за достъп до трезора.</value>

View File

@ -2821,6 +2821,9 @@ Do you want to switch to this account?</value>
<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>
@ -2840,6 +2843,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2819,6 +2819,9 @@ Skeniranje će biti izvršeno automatski.</value>
<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>
@ -2838,6 +2841,9 @@ Skeniranje će biti izvršeno automatski.</value>
<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>

View File

@ -2820,6 +2820,9 @@ Voleu canviar a aquest compte?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Voleu continuar per contactar amb l'assistència?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Voleu continuar amb la política de privadesa?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Voleu continuar cap a l'app store?</value>
</data>
@ -2839,6 +2842,9 @@ Voleu canviar a aquest compte?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>No trobeu el que esteu buscant? Poseu-vos en contacte amb l'assistència de Bitwarden a bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Consulteu la nostra política de privadesa a bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Exploreu més característiques del vostre compte Bitwarden a l'aplicació web.</value>
</data>

View File

@ -2819,6 +2819,9 @@ Chcete se přepnout na tento účet?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Pokračovat v kontaktování podpory?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Pokračovat na Zásady ochrany osobních údajů?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Pokračovat do obchodu s aplikacemi?</value>
</data>
@ -2838,6 +2841,9 @@ Chcete se přepnout na tento účet?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Nenašli jste to, co jste hledali? Na bitwarden.com získejte podporu.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Podívejte se na naše Zásady ochrany osobních údajů na bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Prozkoumejte další funkce Vašeho účtu Bitwarden ve webové aplikaci.</value>
</data>

View File

@ -144,7 +144,7 @@
<comment>App name. Shouldn't ever change.</comment>
</data>
<data name="Cancel" xml:space="preserve">
<value>Cancel</value>
<value>Yn ôl</value>
<comment>Cancel an operation.</comment>
</data>
<data name="Copy" xml:space="preserve">
@ -152,11 +152,11 @@
<comment>Copy some value to your clipboard.</comment>
</data>
<data name="CopyPassword" xml:space="preserve">
<value>Copy password</value>
<value>Copïo'r cyfrinair</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>Copy username</value>
<value>Copïo'r enw defnyddiwr</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">
@ -265,7 +265,7 @@
<comment>The login button text (verb).</comment>
</data>
<data name="LogInNoun" xml:space="preserve">
<value>Login</value>
<value>Mewngofnodi</value>
<comment>Title for login page. (noun)</comment>
</data>
<data name="LogOut" xml:space="preserve">
@ -282,7 +282,7 @@
<value>Are you sure you want to remove this account?</value>
</data>
<data name="AccountAlreadyAdded" xml:space="preserve">
<value>Account already added</value>
<value>Wedi'i ychwanegu eisoes</value>
</data>
<data name="SwitchToAlreadyAddedAccountConfirmation" xml:space="preserve">
<value>Would you like to switch to it now?</value>
@ -308,7 +308,7 @@
<comment>Label for an entity name.</comment>
</data>
<data name="No" xml:space="preserve">
<value>No</value>
<value>Na</value>
</data>
<data name="Notes" xml:space="preserve">
<value>Nodiadau</value>
@ -327,7 +327,7 @@
<comment>Button text for a save operation (verb).</comment>
</data>
<data name="Move" xml:space="preserve">
<value>Move</value>
<value>Symud</value>
</data>
<data name="Saving" xml:space="preserve">
<value>Yn cadw...</value>
@ -391,7 +391,7 @@
<value>Fersiwn</value>
</data>
<data name="View" xml:space="preserve">
<value>View</value>
<value>Gweld</value>
</data>
<data name="VisitOurWebsite" xml:space="preserve">
<value>Visit our website</value>
@ -401,7 +401,7 @@
<comment>Label for a website.</comment>
</data>
<data name="Yes" xml:space="preserve">
<value>Yes</value>
<value>Ydw</value>
</data>
<data name="Account" xml:space="preserve">
<value>Cyfrif</value>
@ -455,7 +455,7 @@
<value>Parhau</value>
</data>
<data name="CreateAccount" xml:space="preserve">
<value>Creu cyfrif</value>
<value>Crëwch gyfrif</value>
</data>
<data name="CreatingAccount" xml:space="preserve">
<value>Wrthi'n creu cyfrif...</value>
@ -484,13 +484,13 @@
<comment>Safari is the name of apple's web browser</comment>
</data>
<data name="ExtensionInstantAccess" xml:space="preserve">
<value>Get instant access to your passwords!</value>
<value>Mynnwch fynediad i'ch cyfrineiriau ar unwaith!</value>
</data>
<data name="ExtensionReady" xml:space="preserve">
<value>Rydych chi'n barod i fewngofnodi!</value>
</data>
<data name="ExtensionSetup" xml:space="preserve">
<value>Your logins are now easily accessible from Safari, Chrome, and other supported apps.</value>
<value>Mae eich manylion mewngofnodi bellach yn hawdd i'w canfod o Safari, Chrome, ac apiau eraill.</value>
</data>
<data name="ExtensionSetup2" xml:space="preserve">
<value>In Safari and Chrome, find Bitwarden using the share icon (hint: scroll to the right on the bottom row of the share menu).</value>
@ -502,7 +502,7 @@
<value>To turn on Bitwarden in Safari and other apps, tap the "more" icon on the bottom row of the menu.</value>
</data>
<data name="Favorite" xml:space="preserve">
<value>Favorite</value>
<value>Ffefryn</value>
</data>
<data name="Fingerprint" xml:space="preserve">
<value>Ôl bys</value>
@ -511,7 +511,7 @@
<value>Cynhyrchu cyfrinair</value>
</data>
<data name="GetPasswordHint" xml:space="preserve">
<value>Get your master password hint</value>
<value>Anfon awgrym o'ch prif gyfrinair</value>
</data>
<data name="ImportItems" xml:space="preserve">
<value>Mewnforio eitemau</value>
@ -572,27 +572,27 @@
<value>The master password is the password you use to access your vault. It is very important that you do not forget your master password. There is no way to recover the password in the event that you forget it.</value>
</data>
<data name="MasterPasswordHint" xml:space="preserve">
<value>Master password hint (optional)</value>
<value>Awgrym o'ch prif gyfrinair (dewisol)</value>
</data>
<data name="MasterPasswordHintDescription" xml:space="preserve">
<value>Gall awgrym o'ch prif gyfrinair eich helpu i'w gofio os ydych chi'n ei anghofio.</value>
</data>
<data name="MasterPasswordLengthValMessageX" xml:space="preserve">
<value>Master password must be at least {0} characters long.</value>
<value>Rhaid i'ch prif gyfrinair gynnwys o leiaf {0} nod.</value>
</data>
<data name="MinNumbers" xml:space="preserve">
<value>Isafswm rhifau</value>
<comment>Minimum numeric characters for password generator settings</comment>
</data>
<data name="MinSpecial" xml:space="preserve">
<value>Isafswm arbennig</value>
<value>Isafswm nodau arbennig</value>
<comment>Minimum special characters for password generator settings</comment>
</data>
<data name="MoreSettings" xml:space="preserve">
<value>Mwy o osodiadau</value>
</data>
<data name="MustLogInMainApp" xml:space="preserve">
<value>You must log into the main Bitwarden app before you can use the extension.</value>
<value>Rhaid i chi fewngofnodi i brif ap Bitwarden cyn defnyddio'r estyniad.</value>
</data>
<data name="Never" xml:space="preserve">
<value>byth</value>
@ -610,7 +610,7 @@
<value>There are no items in your vault for this website/app. Tap to add one.</value>
</data>
<data name="NoUsernamePasswordConfigured" xml:space="preserve">
<value>This login does not have a username or password configured.</value>
<value>Does dim enw defnyddiwr na chyfrinair i'r manylyn mewngofnodi hwn.</value>
</data>
<data name="OkGotIt" xml:space="preserve">
<value>Iawn, deall!</value>
@ -623,7 +623,7 @@
<value>Dewisiadau</value>
</data>
<data name="Other" xml:space="preserve">
<value>Other</value>
<value>Gosodiadau eraill</value>
</data>
<data name="PasswordGenerated" xml:space="preserve">
<value>Password generated</value>
@ -632,7 +632,7 @@
<value>Cynhyrchydd cyfrineiriau</value>
</data>
<data name="PasswordHint" xml:space="preserve">
<value>Password hint</value>
<value>Awgrym o'r cyfrinair</value>
</data>
<data name="PasswordHintAlert" xml:space="preserve">
<value>Rydym ni wedi anfon ebost atoch gydag awgrym ar gyfer eich prif gyfrinair.</value>
@ -654,7 +654,7 @@
<value>Ailgynhyrchu cyfrinair</value>
</data>
<data name="RetypeMasterPassword" xml:space="preserve">
<value>Re-type master password</value>
<value>Aildeipio'r prif gyfrinair</value>
</data>
<data name="SearchVault" xml:space="preserve">
<value>Chwilio'r gell</value>
@ -672,7 +672,7 @@
<value>Rhowch god PIN 4 nod i'w ddefnyddio i ddatgloi'r ap.</value>
</data>
<data name="ItemInformation" xml:space="preserve">
<value>Item information</value>
<value>Gwybodaeth am yr eitem</value>
</data>
<data name="ItemUpdated" xml:space="preserve">
<value>Eitem wedi'i chadw</value>
@ -699,7 +699,7 @@
<comment>What Apple calls their fingerprint reader.</comment>
</data>
<data name="TwoStepLogin" xml:space="preserve">
<value>Two-step login</value>
<value>Mewngofnodi dau agm</value>
</data>
<data name="UnlockWith" xml:space="preserve">
<value>Datgloi â {0}</value>
@ -715,7 +715,7 @@
<value>Verification code</value>
</data>
<data name="ViewItem" xml:space="preserve">
<value>View item</value>
<value>Gweld yr eitem</value>
</data>
<data name="WebVault" xml:space="preserve">
<value>Cell we Bitwarden</value>
@ -837,10 +837,10 @@
<comment>For 2FA</comment>
</data>
<data name="TwoStepLoginOptions" xml:space="preserve">
<value>Two-step login options</value>
<value>Dewisiadau mewngofnodi dau gam</value>
</data>
<data name="UseAnotherTwoStepMethod" xml:space="preserve">
<value>Use another two-step login method</value>
<value>Defnyddio dull mewngofnodi dau gam arall</value>
</data>
<data name="VerificationEmailNotSent" xml:space="preserve">
<value>Could not send verification email. Try again.</value>
@ -1005,10 +1005,10 @@ Scanning will happen automatically.</value>
<value>Cerdyn</value>
</data>
<data name="TypeIdentity" xml:space="preserve">
<value>Hunaniaeth</value>
<value>Eitem hunaniaeth</value>
</data>
<data name="TypeLogin" xml:space="preserve">
<value>Login</value>
<value>Manylyn mewngofnodi</value>
</data>
<data name="TypeSecureNote" xml:space="preserve">
<value>Nodyn diogel</value>
@ -1083,10 +1083,10 @@ Scanning will happen automatically.</value>
<value>Mawrth</value>
</data>
<data name="May" xml:space="preserve">
<value>May</value>
<value>Mai</value>
</data>
<data name="MiddleName" xml:space="preserve">
<value>Middle name</value>
<value>Enw canol</value>
</data>
<data name="Mr" xml:space="preserve">
<value>Mr</value>
@ -1104,13 +1104,13 @@ Scanning will happen automatically.</value>
<value>Tachwedd</value>
</data>
<data name="October" xml:space="preserve">
<value>October</value>
<value>Hydref</value>
</data>
<data name="PassportNumber" xml:space="preserve">
<value>Rhif pasbort</value>
</data>
<data name="Phone" xml:space="preserve">
<value>Phone</value>
<value>Ffôn</value>
</data>
<data name="September" xml:space="preserve">
<value>Medi</value>
@ -1137,7 +1137,7 @@ Scanning will happen automatically.</value>
<value>Dangos eiconau gwefannau</value>
</data>
<data name="ShowWebsiteIconsDescription" xml:space="preserve">
<value>Show a recognizable image next to each login.</value>
<value>Dangos delwedd adnabyddadwy wrth ymyl pob eitem.</value>
</data>
<data name="IconsUrl" xml:space="preserve">
<value>Icons server URL</value>
@ -1158,10 +1158,10 @@ Scanning will happen automatically.</value>
<value>There are no items in this collection.</value>
</data>
<data name="NoItemsFolder" xml:space="preserve">
<value>There are no items in this folder.</value>
<value>Does dim eitemau yn y ffolder hon.</value>
</data>
<data name="NoItemsTrash" xml:space="preserve">
<value>There are no items in the trash.</value>
<value>Does dim eitemau yn y bin sbwriel.</value>
</data>
<data name="AutofillAccessibilityService" xml:space="preserve">
<value>Auto-fill Accessibility Service</value>
@ -1266,7 +1266,7 @@ Scanning will happen automatically.</value>
<value>Hold your Yubikey near the top of the device.</value>
</data>
<data name="TryAgain" xml:space="preserve">
<value>Try again</value>
<value>Ceisio eto</value>
</data>
<data name="YubiKeyInstructionIos" xml:space="preserve">
<value>To continue, hold your YubiKey NEO against the back of the device.</value>
@ -1351,10 +1351,10 @@ Scanning will happen automatically.</value>
<value>Gwirio a ydy'r cyfrinair wedi'i ddatgelu.</value>
</data>
<data name="PasswordExposed" xml:space="preserve">
<value>Mae'r cyfrinair hwn wedi cael ei ddatgelu {0} o weithiau mewn achosion o dorri data. Dylech chi ei newid.</value>
<value>Mae'r cyfrinair hwn wedi cael ei ddatgelu {0} o weithiau mewn achosion o ddatgelu data. Dylech chi ei newid.</value>
</data>
<data name="PasswordSafe" xml:space="preserve">
<value>This password was not found in any known data breaches. It should be safe to use.</value>
<value>Chafodd y cyfrinair hwn mo'i ganfod mewn unrhyw achos hysbys o ddatgelu data. Dylai fod yn iawn i'w ddefnyddio.</value>
</data>
<data name="IdentityName" xml:space="preserve">
<value>Identity name</value>
@ -1366,13 +1366,13 @@ Scanning will happen automatically.</value>
<value>Password history</value>
</data>
<data name="Types" xml:space="preserve">
<value>Types</value>
<value>Mathau</value>
</data>
<data name="NoPasswordsToList" xml:space="preserve">
<value>No passwords to list.</value>
<value>Dim cyfrineiriau i'w rhestru.</value>
</data>
<data name="NoItemsToList" xml:space="preserve">
<value>There are no items to list.</value>
<value>Does dim eitemau i'w rhestu.</value>
</data>
<data name="SearchCollection" xml:space="preserve">
<value>Search collection</value>
@ -1384,7 +1384,7 @@ Scanning will happen automatically.</value>
<value>Search text Sends</value>
</data>
<data name="SearchGroup" xml:space="preserve">
<value>Search {0}</value>
<value>Chwilio {0}</value>
<comment>ex: Search Logins</comment>
</data>
<data name="Type" xml:space="preserve">
@ -1451,7 +1451,7 @@ Scanning will happen automatically.</value>
<comment>Short for "Password Generator"</comment>
</data>
<data name="NoFoldersToList" xml:space="preserve">
<value>There are no folders to list.</value>
<value>Does dim ffolderi i'w rhestru.</value>
</data>
<data name="FingerprintPhrase" xml:space="preserve">
<value>Fingerprint phrase</value>
@ -1522,11 +1522,11 @@ Scanning will happen automatically.</value>
<value>ar ôl 2 funud</value>
</data>
<data name="ClearClipboard" xml:space="preserve">
<value>Clear clipboard</value>
<value>Clirio'r clipfwrdd</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>Automatically clear copied values from your clipboard.</value>
<value>Clirio eitemau a gopïwyd o'ch clipfwrdd yn awtomatig.</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">
@ -1541,7 +1541,7 @@ Scanning will happen automatically.</value>
<comment>Color theme</comment>
</data>
<data name="ThemeDescription" xml:space="preserve">
<value>Change the application's color theme.</value>
<value>Newid thema liwiau'r ap.</value>
</data>
<data name="ThemeDefault" xml:space="preserve">
<value>Rhagosodiad (system)</value>
@ -1550,13 +1550,13 @@ Scanning will happen automatically.</value>
<value>Default dark theme</value>
</data>
<data name="CopyNotes" xml:space="preserve">
<value>Copy note</value>
<value>Copïo'r nodyn</value>
</data>
<data name="Exit" xml:space="preserve">
<value>Exit</value>
<value>Gadael</value>
</data>
<data name="ExitConfirmation" xml:space="preserve">
<value>Are you sure you want to exit Bitwarden?</value>
<value>Ydych chi'n siŵr eich bod am adael Bitwarden?</value>
</data>
<data name="PINRequireMasterPasswordRestart" xml:space="preserve">
<value>Do you want to require unlocking with your master password when the application is restarted?</value>
@ -1599,7 +1599,7 @@ Scanning will happen automatically.</value>
<value>Cynnwys rhif</value>
</data>
<data name="Download" xml:space="preserve">
<value>Download</value>
<value>Lawrlwytho</value>
</data>
<data name="Shared" xml:space="preserve">
<value>Shared</value>
@ -1614,10 +1614,10 @@ Scanning will happen automatically.</value>
<value>Biometric verification</value>
</data>
<data name="Biometrics" xml:space="preserve">
<value>Biometrics</value>
<value>biometreg</value>
</data>
<data name="UseBiometricsToUnlock" xml:space="preserve">
<value>Use biometrics to unlock</value>
<value>Defnyddio biometreg i ddatgloi</value>
</data>
<data name="AccessibilityOverlayPermissionAlert" xml:space="preserve">
<value>Bitwarden needs attention - See "Auto-fill Accessibility Service" from Bitwarden settings</value>
@ -1641,7 +1641,7 @@ Scanning will happen automatically.</value>
<value>Granted</value>
</data>
<data name="FileFormat" xml:space="preserve">
<value>File format</value>
<value>Fformat y ffeil</value>
</data>
<data name="ExportVaultMasterPasswordDescription" xml:space="preserve">
<value>Rhowch eich prif gyfrinair i allforio data eich cell.</value>
@ -1692,7 +1692,7 @@ Scanning will happen automatically.</value>
<value>There was a problem saving this attachment. If the problem persists, you can save it from the web vault.</value>
</data>
<data name="SaveAttachmentSuccess" xml:space="preserve">
<value>Attachment saved successfully</value>
<value>Cadwyd yr atodiad yn llwyddiannus</value>
</data>
<data name="AutofillTileAccessibilityRequired" xml:space="preserve">
<value>Please turn on "Auto-fill Accessibility Service" from Bitwarden Settings to use the Auto-fill tile.</value>
@ -1701,11 +1701,11 @@ Scanning will happen automatically.</value>
<value>No password fields detected</value>
</data>
<data name="SoftDeleting" xml:space="preserve">
<value>Sending to trash...</value>
<value>Yn anfon i'r bin sbwriel...</value>
<comment>Message shown when interacting with the server</comment>
</data>
<data name="ItemSoftDeleted" xml:space="preserve">
<value>Item has been sent to trash.</value>
<value>Anfonwyd yr eitem i'r bin sbwriel.</value>
<comment>Confirmation message after successfully soft-deleting a login</comment>
</data>
<data name="Restore" xml:space="preserve">
@ -1713,7 +1713,7 @@ Scanning will happen automatically.</value>
<comment>Restores an entity (verb).</comment>
</data>
<data name="Restoring" xml:space="preserve">
<value>Restoring...</value>
<value>Yn adfer...</value>
<comment>Message shown when interacting with the server</comment>
</data>
<data name="ItemRestored" xml:space="preserve">
@ -1721,15 +1721,15 @@ Scanning will happen automatically.</value>
<comment>Confirmation message after successfully restoring a soft-deleted item</comment>
</data>
<data name="Trash" xml:space="preserve">
<value>Trash</value>
<value>Bin sbwriel</value>
<comment>(noun) Location of deleted items which have not yet been permanently deleted</comment>
</data>
<data name="SearchTrash" xml:space="preserve">
<value>Search trash</value>
<value>Chwilio drwy'r bin sbwriel</value>
<comment>(action prompt) Label for the search text field when viewing the trash folder</comment>
</data>
<data name="DoYouReallyWantToPermanentlyDeleteCipher" xml:space="preserve">
<value>Do you really want to permanently delete? This cannot be undone.</value>
<value>Ydych chi wir eisiau dileu'r eitem hon? Allwch chi ddim dadwneud hyn.</value>
<comment>Confirmation alert message when permanently deleteing a cipher.</comment>
</data>
<data name="DoYouReallyWantToRestoreCipher" xml:space="preserve">
@ -1737,7 +1737,7 @@ Scanning will happen automatically.</value>
<comment>Confirmation alert message when restoring a soft-deleted cipher.</comment>
</data>
<data name="DoYouReallyWantToSoftDeleteCipher" xml:space="preserve">
<value>Do you really want to send to the trash?</value>
<value>Ydych chi wir eisiau anfon yr eitem hon i'r bin sbwriel?</value>
<comment>Confirmation alert message when soft-deleting a cipher.</comment>
</data>
<data name="AccountBiometricInvalidated" xml:space="preserve">
@ -1747,10 +1747,10 @@ Scanning will happen automatically.</value>
<value>Autofill biometric unlock for this account is disabled pending verification of master password.</value>
</data>
<data name="EnableSyncOnRefresh" xml:space="preserve">
<value>Allow sync on refresh</value>
<value>Caniatáu cysoni wrth adnewyddu</value>
</data>
<data name="EnableSyncOnRefreshDescription" xml:space="preserve">
<value>Syncing vault with pull down gesture.</value>
<value>Cysoni'r gell drwy dynnu i lawr.</value>
</data>
<data name="LogInSso" xml:space="preserve">
<value>Enterprise single sign-on</value>
@ -1765,7 +1765,7 @@ Scanning will happen automatically.</value>
<value>Currently unable to login with SSO</value>
</data>
<data name="SetMasterPassword" xml:space="preserve">
<value>Set master password</value>
<value>Gosod prif gyfrinair</value>
</data>
<data name="SetMasterPasswordSummary" xml:space="preserve">
<value>In order to complete logging in with SSO, please set a master password to access and protect your vault.</value>
@ -1798,7 +1798,7 @@ Scanning will happen automatically.</value>
<value>Password does not meet organization requirements. Please check the policy information and try again.</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Loading</value>
<value>Llwytho</value>
</data>
<data name="AcceptPolicies" xml:space="preserve">
<value>By activating this switch you agree to the following:
@ -1808,16 +1808,16 @@ Scanning will happen automatically.</value>
<value>Terms of Service and Privacy Policy have not been acknowledged.</value>
</data>
<data name="TermsOfService" xml:space="preserve">
<value>Terms of Service</value>
<value>Telerau gwasanaeth</value>
</data>
<data name="PrivacyPolicy" xml:space="preserve">
<value>Privacy Policy</value>
<value>Polisi preifatrwydd</value>
</data>
<data name="AccessibilityDrawOverPermissionAlert" xml:space="preserve">
<value>Bitwarden needs attention - Turn on "Draw-Over" in "Auto-fill Services" from Bitwarden Settings</value>
</data>
<data name="AutofillServices" xml:space="preserve">
<value>Auto-fill services</value>
<value>Gwasanaethau llenwi awtomatig</value>
</data>
<data name="InlineAutofill" xml:space="preserve">
<value>Use inline autofill</value>
@ -2044,11 +2044,11 @@ Scanning will happen automatically.</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>About Send</value>
<value>Ynghylch 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="HideEmail" xml:space="preserve">
<value>Hide my email address from recipients</value>
<value>Cuddio fy nghyfeiriad ebost rhag derbynwyr</value>
</data>
<data name="SendOptionsPolicyInEffect" xml:space="preserve">
<value>One or more organization policies are affecting your Send options.</value>
@ -2063,7 +2063,7 @@ Scanning will happen automatically.</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>Master password re-prompt</value>
<value>Ailofyn am y prif gyfrinair</value>
</data>
<data name="PasswordConfirmation" xml:space="preserve">
<value>Master password confirmation</value>
@ -2078,16 +2078,16 @@ Scanning will happen automatically.</value>
<value>Captcha failed. Please try again.</value>
</data>
<data name="UpdatedMasterPassword" xml:space="preserve">
<value>Updated master password</value>
<value>Diweddarwyd y prif gyfrinair</value>
</data>
<data name="UpdateMasterPassword" xml:space="preserve">
<value>Update master password</value>
<value>Diweddaru'r prif gyfrinair</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>
<value>Yn diweddaru'r cyfrinair</value>
</data>
<data name="UpdatePasswordError" xml:space="preserve">
<value>Currently unable to update password</value>
@ -2105,7 +2105,7 @@ Scanning will happen automatically.</value>
<value>Leave organization</value>
</data>
<data name="LeaveOrganizationName" xml:space="preserve">
<value>Leave {0}?</value>
<value>Gadael {0}?</value>
</data>
<data name="Fido2Title" xml:space="preserve">
<value>FIDO2 WebAuthn</value>
@ -2120,7 +2120,7 @@ Scanning will happen automatically.</value>
<value>Authenticate WebAuthn</value>
</data>
<data name="Fido2ReturnToApp" xml:space="preserve">
<value>Return to app</value>
<value>Dychwelyd i'r ap</value>
</data>
<data name="Fido2CheckBrowser" xml:space="preserve">
<value>Please make sure your default browser supports WebAuthn and try again.</value>
@ -2144,7 +2144,7 @@ Scanning will happen automatically.</value>
<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>
<value>Ychwanegu cyfrif</value>
</data>
<data name="AccountUnlocked" xml:space="preserve">
<value>Unlocked</value>
@ -2168,19 +2168,19 @@ Scanning will happen automatically.</value>
<value>Account removed successfully</value>
</data>
<data name="DeleteAccount" xml:space="preserve">
<value>Delete account</value>
<value>Dileu eich cyfrif</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>
<value>Caiff eich cyfrif a holl ddata'ch cell eu dileu mewn ffordd anadferadwy. Ydych chi'n siŵr yr hoffech chi barhau?</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>
<value>Mae eich cyfrif wedi cael ei ddileu'n barhaol</value>
</data>
<data name="InvalidVerificationCode" xml:space="preserve">
<value>Invalid verification code</value>
@ -2249,7 +2249,7 @@ Scanning will happen automatically.</value>
<value>Password is not visible, tap to show.</value>
</data>
<data name="FilterByVault" xml:space="preserve">
<value>Filter items by vault</value>
<value>Hidlo eitemau yn ôl cell</value>
</data>
<data name="AllVaults" xml:space="preserve">
<value>Pob cell</value>
@ -2307,7 +2307,7 @@ select Add TOTP to store the key safely</value>
<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>
<value>Caniatáu sgrinluniau</value>
</data>
<data name="AreYouSureYouWantToEnableScreenCapture" xml:space="preserve">
<value>Are you sure you want to turn on screen capture?</value>
@ -2316,46 +2316,46 @@ select Add TOTP to store the key safely</value>
<value>Login requested</value>
</data>
<data name="AreYouTryingToLogIn" xml:space="preserve">
<value>Are you trying to log in?</value>
<value>Ydych chi'n ceisio mewngofnodi?</value>
</data>
<data name="LogInAttemptByXOnY" xml:space="preserve">
<value>Login attempt by {0} on {1}</value>
<value>Cais mewngofnodi gan {0} ar {1}</value>
</data>
<data name="DeviceType" xml:space="preserve">
<value>Device type</value>
<value>Math o ddyfais</value>
</data>
<data name="IpAddress" xml:space="preserve">
<value>Cyfeiriad IP</value>
</data>
<data name="Time" xml:space="preserve">
<value>Time</value>
<value>Amser</value>
</data>
<data name="Near" xml:space="preserve">
<value>Near</value>
<value>Gerllaw</value>
</data>
<data name="ConfirmLogIn" xml:space="preserve">
<value>Confirm login</value>
<value>Cadarnhau'r mewngofnodi</value>
</data>
<data name="DenyLogIn" xml:space="preserve">
<value>Deny login</value>
<value>Gwrthod y mewngofnodi</value>
</data>
<data name="JustNow" xml:space="preserve">
<value>Just now</value>
<value>Ychydig yn ôl</value>
</data>
<data name="XMinutesAgo" xml:space="preserve">
<value>{0} minutes ago</value>
<value>{0} o funudau yn ôl</value>
</data>
<data name="LogInAccepted" xml:space="preserve">
<value>Login confirmed</value>
<value>Cadarnhawyd y mewngofnodi</value>
</data>
<data name="LogInDenied" xml:space="preserve">
<value>Login denied</value>
<value>Gwrthodwyd y mewngofnodi</value>
</data>
<data name="ApproveLoginRequests" xml:space="preserve">
<value>Approve login requests</value>
<value>Cymeradwyo ceisiadau mewngofnodi</value>
</data>
<data name="UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices" xml:space="preserve">
<value>Use this device to approve login requests made from other devices</value>
<value>Defnyddio'r ddyfais hon i gymeradwyo ceisiadau mewngofnodi gan ddyfeisiau eraill</value>
</data>
<data name="AllowNotifications" xml:space="preserve">
<value>Caniatáu hysbysiadau</value>
@ -2373,16 +2373,16 @@ select Add TOTP to store the key safely</value>
<value>All notifications</value>
</data>
<data name="PasswordType" xml:space="preserve">
<value>Password type</value>
<value>Math o gyfrinair</value>
</data>
<data name="WhatWouldYouLikeToGenerate" xml:space="preserve">
<value>What would you like to generate?</value>
<value>Beth hoffech chi ei gynhyrchu?</value>
</data>
<data name="UsernameType" xml:space="preserve">
<value>Math o enw defnyddiwr</value>
</data>
<data name="PlusAddressedEmail" xml:space="preserve">
<value>Plus addressed email</value>
<value>Is-gyfeiriad ebost</value>
</data>
<data name="CatchAllEmail" xml:space="preserve">
<value>Catch-all email</value>
@ -2391,13 +2391,13 @@ select Add TOTP to store the key safely</value>
<value>Forwarded email alias</value>
</data>
<data name="RandomWord" xml:space="preserve">
<value>Random word</value>
<value>Gair ar hap</value>
</data>
<data name="EmailRequiredParenthesis" xml:space="preserve">
<value>Email (required)</value>
</data>
<data name="DomainNameRequiredParenthesis" xml:space="preserve">
<value>Domain name (required)</value>
<value>Enw parth (gofynnol)</value>
</data>
<data name="APIKeyRequiredParenthesis" xml:space="preserve">
<value>API key (required)</value>
@ -2442,13 +2442,13 @@ select Add TOTP to store the key safely</value>
<value>Math o ebost</value>
</data>
<data name="WebsiteRequired" xml:space="preserve">
<value>Website (required)</value>
<value>Gwefan (gofynnol)</value>
</data>
<data name="UnknownXErrorMessage" xml:space="preserve">
<value>Unknown {0} error occurred.</value>
<value>Bu gwall anhysbys {0}.</value>
</data>
<data name="PlusAddressedEmailDescription" xml:space="preserve">
<value>Use your email provider's subaddress capabilities</value>
<value>Defnyddio galluoedd is-gyfeirio darparwr eich cyfeiriad ebost ('plus addressing')</value>
</data>
<data name="CatchAllEmailDescription" xml:space="preserve">
<value>Use your domain's configured catch-all inbox.</value>
@ -2457,7 +2457,7 @@ select Add TOTP to store the key safely</value>
<value>Generate an email alias with an external forwarding service.</value>
</data>
<data name="Random" xml:space="preserve">
<value>Random</value>
<value>Hap</value>
</data>
<data name="ConnectToWatch" xml:space="preserve">
<value>Connect to Watch</value>
@ -2469,10 +2469,10 @@ select Add TOTP to store the key safely</value>
<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>
<value>Derbyn</value>
</data>
<data name="Decline" xml:space="preserve">
<value>Decline</value>
<value>Gwrthod</value>
</data>
<data name="LoginRequestHasAlreadyExpired" xml:space="preserve">
<value>Login request has already expired.</value>
@ -2483,22 +2483,22 @@ select Add TOTP to store the key safely</value>
Do you want to switch to this account?</value>
</data>
<data name="NewAroundHere" xml:space="preserve">
<value>New around here?</value>
<value>Ydych chi'n newydd?</value>
</data>
<data name="GetMasterPasswordwordHint" xml:space="preserve">
<value>Get master password hint</value>
<value>Anfon awgrym o'ch prif gyfrinair</value>
</data>
<data name="LoggingInAsXOnY" xml:space="preserve">
<value>Logging in as {0} on {1}</value>
<value>Yn mewngofnodi fel {0} ar {1}</value>
</data>
<data name="NotYou" xml:space="preserve">
<value>Not you?</value>
<value>Nid chi?</value>
</data>
<data name="LogInWithMasterPassword" xml:space="preserve">
<value>Log in with master password</value>
<value>Mewngofnodi â'ch prif gyfrinair</value>
</data>
<data name="LogInWithAnotherDevice" xml:space="preserve">
<value>Log in with device</value>
<value>Mewngofnodi â dyfais</value>
</data>
<data name="LogInInitiated" xml:space="preserve">
<value>Login initiated</value>
@ -2513,13 +2513,13 @@ Do you want to switch to this account?</value>
<value>Resend notification</value>
</data>
<data name="NeedAnotherOption" xml:space="preserve">
<value>Need another option?</value>
<value>Angen opsiwn arall?</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>
<value>Dyw'r cais hwn ddim yn ddilys bellach</value>
</data>
<data name="PendingLogInRequests" xml:space="preserve">
<value>Pending login requests</value>
@ -2540,13 +2540,13 @@ Do you want to switch to this account?</value>
<value>Enable camera permission to use the scanner</value>
</data>
<data name="Language" xml:space="preserve">
<value>Language</value>
<value>Iaith</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>
<value>Cafodd yr iaith ei newid i {0}. Ailgychwynnwch yr ap i weld newidiadau</value>
</data>
<data name="LanguageChangeRequiresAppRestart" xml:space="preserve">
<value>Language change requires app restart</value>
<value>Bydd angen ailgychwyn yr ap</value>
</data>
<data name="DefaultSystem" xml:space="preserve">
<value>Default (System)</value>
@ -2573,7 +2573,7 @@ Do you want to switch to this account?</value>
<value>Cryf</value>
</data>
<data name="CheckKnownDataBreachesForThisPassword" xml:space="preserve">
<value>Check known data breaches for this password</value>
<value>Chwilio am achosion o ddatgelu data sy'n cynnwys y cyfrinair hwn</value>
</data>
<data name="ExposedMasterPassword" xml:space="preserve">
<value>Prif gyfrinair wedi'i ddatgelu</value>
@ -2609,7 +2609,7 @@ Do you want to switch to this account?</value>
<value>UE</value>
</data>
<data name="SelfHosted" xml:space="preserve">
<value>Hunangynhaliol</value>
<value>Gweinydd hunangynhaliol</value>
</data>
<data name="DataRegion" xml:space="preserve">
<value>Lleoliad y data</value>
@ -2639,7 +2639,7 @@ Do you want to switch to this account?</value>
<value>Turn off using a public device</value>
</data>
<data name="RememberThisDevice" xml:space="preserve">
<value>Remember this device</value>
<value>Cofio'r ddyfais hon</value>
</data>
<data name="Passkey" xml:space="preserve">
<value>Passkey</value>
@ -2690,7 +2690,7 @@ Do you want to switch to this account?</value>
<value>Trouble logging in?</value>
</data>
<data name="LoggingInAsX" xml:space="preserve">
<value>Logging in as {0}</value>
<value>Yn mewngofnodi fel {0}</value>
</data>
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
<value>Vault timeout action changed to log out</value>
@ -2745,19 +2745,19 @@ Do you want to switch to this account?</value>
<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>
<value>Mewngofnodi â dyfais</value>
</data>
<data name="LoggingInOn" xml:space="preserve">
<value>Logging in on</value>
<value>Mewngofnodi ar</value>
</data>
<data name="Vault" xml:space="preserve">
<value>Vault</value>
<value>Cell</value>
</data>
<data name="Appearance" xml:space="preserve">
<value>Appearance</value>
<value>Golwg</value>
</data>
<data name="AccountSecurity" xml:space="preserve">
<value>Account security</value>
<value>Diogelwch eich cyfrif</value>
</data>
<data name="BitwardenHelpCenter" xml:space="preserve">
<value>Bitwarden Help Center</value>
@ -2769,10 +2769,10 @@ Do you want to switch to this account?</value>
<value>Copy app information</value>
</data>
<data name="SyncNow" xml:space="preserve">
<value>Sync now</value>
<value>Cysoni nawr</value>
</data>
<data name="UnlockOptions" xml:space="preserve">
<value>Unlock options</value>
<value>Dewisiadau datgloi</value>
</data>
<data name="SessionTimeout" xml:space="preserve">
<value>Session timeout</value>
@ -2806,10 +2806,10 @@ Do you want to switch to this account?</value>
<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>
<value>Dewisiadau ychwanegol</value>
</data>
<data name="ContinueToWebApp" xml:space="preserve">
<value>Continue to web app?</value>
<value>Parhau i'r ap gwe?</value>
</data>
<data name="ContinueToX" xml:space="preserve">
<value>Continue to {0}?</value>
@ -2821,11 +2821,14 @@ Do you want to switch to this account?</value>
<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>
<value>Gallwch wneud eich cyfrif yn fwy diogel drwy alluogi mewngofnodi dau gam yn ap gwe Bitwarden.</value>
</data>
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
<value>You can change your master password on the Bitwarden web app.</value>
@ -2840,6 +2843,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2820,6 +2820,9 @@ Vil du skifte til denne konto?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Fortsæt med at kontakte support?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Fortsæt til Fortrolighedspolitik?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Fortsæt til app-butik?</value>
</data>
@ -2839,6 +2842,9 @@ Vil du skifte til denne konto?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Kan ikke finde det, der søges efter? Kontakt Bitwarden-supporten via bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Tjek vores Fortrolighedspolitik på bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Tjek flere funktioner ud i Bitwarden-kontoen på web-appen.</value>
</data>

View File

@ -946,7 +946,7 @@ Das Scannen erfolgt automatisch.</value>
<value>Du kannst diese Funktion nicht nutzen, solange du deinen Verschlüsselungsschlüssel nicht aktualisiert hast.</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>
<value>Verschlüsselungscode-Migration erforderlich. Bitte melde dich über den Web-Tresor an, um deinen Verschlüsselungscode zu aktualisieren.</value>
</data>
<data name="LearnMore" xml:space="preserve">
<value>Mehr erfahren</value>
@ -2819,6 +2819,9 @@ Möchtest du zu diesem Konto wechseln?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Weiter, um den Support zu kontaktieren?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Weiter zur Datenschutzerklärung?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Weiter zum App Store?</value>
</data>
@ -2838,6 +2841,9 @@ Möchtest du zu diesem Konto wechseln?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Du findest nicht, was du suchst? Kontaktiere den Bitwarden Support auf bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Lies unsere Datenschutzerklärung auf bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Entdecke mehr Funktionen deines Bitwarden-Kontos in der Web-App.</value>
</data>
@ -2861,10 +2867,10 @@ Möchtest du zu diesem Konto wechseln?</value>
<value>Konto abgemeldet.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>Deine Organisationsberechtigungen wurden aktualisiert und verlangen, dass du ein Master-Passwort festlegen musst.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>Deine Organisation verlangt, dass du ein Master-Passwort festlegen musst.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Richte eine Entsperroption ein, um deine Aktion bei Tresor-Timeout zu ändern.</value>

View File

@ -2819,6 +2819,9 @@
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Συνέχεια στην επικοινωνία με την υποστήριξη;</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Continue to privacy policy?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Συνέχεια στο κατάστημα εφαρμογών;</value>
</data>
@ -2838,6 +2841,9 @@
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Δεν μπορείτε να βρείτε αυτό που ψάχνετε; Επικοινωνήστε με την υποστήριξη Bitwarden στο 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>Εξερευνήστε περισσότερες δυνατότητες του Bitwarden λογαριασμού σας, στην εφαρμογή διαδικτύου.</value>
</data>

View File

@ -2820,6 +2820,9 @@ Do you want to switch to this account?</value>
<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>
@ -2839,6 +2842,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2834,6 +2834,9 @@ Do you want to switch to this account?</value>
<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>
@ -2853,6 +2856,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -156,7 +156,7 @@
<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>Copiar usuario</value>
<value>Copiar nombre de usuario</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">
@ -186,11 +186,11 @@
<comment>Short label for an email address.</comment>
</data>
<data name="EmailAddress" xml:space="preserve">
<value>Correo electrónico</value>
<value>Dirección de correo electrónico</value>
<comment>Full label for a email address.</comment>
</data>
<data name="EmailUs" xml:space="preserve">
<value>Envíanos un correo</value>
<value>Envíanos correo electrónico</value>
</data>
<data name="EmailUsDescription" xml:space="preserve">
<value>Envíanos un correo directamente para obtener ayuda o dejar tus comentarios.</value>
@ -203,7 +203,7 @@
<comment>Title for your favorite items in the vault.</comment>
</data>
<data name="FileBugReport" xml:space="preserve">
<value>Reportar un fallo</value>
<value>Enviar un informe de error</value>
</data>
<data name="FileBugReportDescription" xml:space="preserve">
<value>Abrir una incidencia en el repositorio de GitHub.</value>
@ -229,10 +229,10 @@
<value>Carpetas</value>
</data>
<data name="FolderUpdated" xml:space="preserve">
<value>Carpeta actualizada.</value>
<value>Carpeta guardada</value>
</data>
<data name="GoToWebsite" xml:space="preserve">
<value>Ir a la web</value>
<value>Ir al sitio web</value>
<comment>The button text that allows user to launch the website to their web browser.</comment>
</data>
<data name="HelpAndFeedback" xml:space="preserve">
@ -285,7 +285,7 @@
<value>Cuenta ya añadida</value>
</data>
<data name="SwitchToAlreadyAddedAccountConfirmation" xml:space="preserve">
<value>¿Quieres cambiarlo ahora?</value>
<value>¿Te gustaría cambiar a esa cuenta ahora?</value>
</data>
<data name="MasterPassword" xml:space="preserve">
<value>Contraseña maestra</value>
@ -342,7 +342,7 @@
<comment>Reveal a hidden value (password).</comment>
</data>
<data name="ItemDeleted" xml:space="preserve">
<value>El elemento ha sido eliminado.</value>
<value>Elemento eliminado</value>
<comment>Confirmation message after successfully deleting a login.</comment>
</data>
<data name="Submit" xml:space="preserve">
@ -375,7 +375,7 @@
<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} ha sido copiado.</value>
<value>{0} copiado</value>
<comment>Confirmation message after successfully copying a value to the clipboard.</comment>
</data>
<data name="VerifyFingerprint" xml:space="preserve">
@ -419,16 +419,16 @@
<value>Utiliza el servicio de accesibilidad de Bitwarden para autorellenar entradas entre aplicaciones y sitios web.</value>
</data>
<data name="AutofillService" xml:space="preserve">
<value>Servicio de autorrellenado</value>
<value>Servicio de autocompletado</value>
</data>
<data name="AvoidAmbiguousCharacters" xml:space="preserve">
<value>Evitar caracteres ambiguos</value>
</data>
<data name="BitwardenAppExtension" xml:space="preserve">
<value>Extensión de Aplicación de Bitwarden</value>
<value>Extensión de Aplicación Bitwarden</value>
</data>
<data name="BitwardenAppExtensionAlert2" xml:space="preserve">
<value>La forma más fácil de añadir nuevas entradas a su caja fuerte es utilizando la extensión de navegador de Bitwarden. Aprenda más sobre cómo utilizar este servicio en la sección de "Ajustes".</value>
<value>La manera más fácil de añadir nuevos inicios de sesión a tu caja fuerte es utilizando la extensión de la aplicación de Bitwarden. Aprenda más sobre cómo utilizar la extensión de la aplicación de Bitwarden accediendo al menú de "Ajustes".</value>
</data>
<data name="BitwardenAppExtensionDescription" xml:space="preserve">
<value>Utiliza Bitwarden en Safari y otras aplicaciones para autorellenar tus entradas.</value>
@ -471,13 +471,13 @@
<value>Introduce el correo electrónico de tu cuenta para recibir la pista de tu contraseña maestra.</value>
</data>
<data name="ExntesionReenable" xml:space="preserve">
<value>Re-activar Extension de Aplicación</value>
<value>Reactivar extensión de la aplicación</value>
</data>
<data name="ExtensionAlmostDone" xml:space="preserve">
<value>¡Casi estamos!</value>
</data>
<data name="ExtensionEnable" xml:space="preserve">
<value>Activar Extensión de Aplicación</value>
<value>Activar extensión de la aplicación</value>
</data>
<data name="ExtensionInSafari" xml:space="preserve">
<value>En Safari, busca Bitwarden en el icono compartir (pista: desplazate a la derecha en la última fila del menú).</value>
@ -490,7 +490,7 @@
<value>¡Ya estás identificado!</value>
</data>
<data name="ExtensionSetup" xml:space="preserve">
<value>Sus entradas son ahora fácilmente accesibles desde Safari, Chrome y otras aplicaciones soportadas.</value>
<value>Sus inicios de sesión son ahora fácilmente accesibles desde Safari, Chrome y otras aplicaciones soportadas.</value>
</data>
<data name="ExtensionSetup2" xml:space="preserve">
<value>En Safari y Chrome, busca Bitwarden en el icono compartir (pista: desplazate a la derecha en la última fila del menú).</value>
@ -553,7 +553,7 @@
<value>Acción de tiempo de espera de la caja fuerte</value>
</data>
<data name="VaultTimeoutLogOutConfirmation" xml:space="preserve">
<value>Cerrar sesión eliminará todo el acceso a su caja fuerte y requiere autenticación en línea después del período de espera. ¿Está seguro de que quiere usar esta configuración?</value>
<value>Cerrar sesión quitará todo el acceso a su caja fuerte y requiere autenticación en línea después del tiempo de espera. ¿Está seguro de que quiere usar este ajuste?</value>
</data>
<data name="LoggingIn" xml:space="preserve">
<value>Iniciando sesión...</value>
@ -598,7 +598,7 @@
<value>Nunca</value>
</data>
<data name="NewItemCreated" xml:space="preserve">
<value>Nuevo elemento creado.</value>
<value>Elemento agregado</value>
</data>
<data name="NoFavorites" xml:space="preserve">
<value>No hay favoritos en tu caja fuerte.</value>
@ -626,7 +626,7 @@
<value>Otro</value>
</data>
<data name="PasswordGenerated" xml:space="preserve">
<value>Contraseña generada.</value>
<value>Contraseña generada</value>
</data>
<data name="PasswordGenerator" xml:space="preserve">
<value>Generador de contraseñas</value>
@ -641,7 +641,7 @@
<value>¿Estás seguro de que quieres sobreescribir la contraseña actual?</value>
</data>
<data name="PushNotificationAlert" xml:space="preserve">
<value>Bitwarden mantiene tu caja fuerte automáticamente sincronizada utilizando notificaciones push. Para tener la mejor experiencia posible, por favor, pulsa "Permitir" en la próxima notificación donde se te pregunta si quieres habilitar las notificaciones push.</value>
<value>Bitwarden mantiene tu caja fuerte automáticamente sincronizada utilizando notificaciones automáticas. Para tener la mejor experiencia posible, por favor, selecciona "Permitir" en la próxima notificación donde se te pregunta si quieres permitir las notificaciones automáticas.</value>
<comment>Push notifications for apple products</comment>
</data>
<data name="RateTheApp" xml:space="preserve">
@ -654,7 +654,7 @@
<value>Regenerar contraseña</value>
</data>
<data name="RetypeMasterPassword" xml:space="preserve">
<value>Vuelve a escribir tu contraseña maestra</value>
<value>Reescribir contraseña maestra</value>
</data>
<data name="SearchVault" xml:space="preserve">
<value>Buscar en caja fuerte</value>
@ -675,7 +675,7 @@
<value>Información del elemento</value>
</data>
<data name="ItemUpdated" xml:space="preserve">
<value>Elemento actualizado.</value>
<value>Elemento guardado</value>
</data>
<data name="Submitting" xml:space="preserve">
<value>Enviando...</value>
@ -686,10 +686,10 @@
<comment>Message shown when interacting with the server</comment>
</data>
<data name="SyncingComplete" xml:space="preserve">
<value>Sincronización completada.</value>
<value>Sincronización completada</value>
</data>
<data name="SyncingFailed" xml:space="preserve">
<value>Sincronizado fallida.</value>
<value>Error en la Sincronización</value>
</data>
<data name="SyncVaultNow" xml:space="preserve">
<value>Sincronizar caja fuerte ahora</value>
@ -745,7 +745,7 @@
<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>Cuando seleccione un campo de entrada y vea un recuadro flotante de autorellenado de Bitwarden, puede pulsarlo para iniciar el servicio de autorellenado.</value>
<value>Cuando seleccione un campo de entrada y vea una superposición de autocompletado de Bitwarden, puede pulsarla para iniciar el servicio de autocompletado.</value>
</data>
<data name="BitwardenAutofillServiceNotificationContent" xml:space="preserve">
<value>Pulsa en esta notificación para autorellenar una entrada desde tu caja fuerte.</value>
@ -775,7 +775,7 @@
<value>Estado</value>
</data>
<data name="BitwardenAutofillServiceAlert2" xml:space="preserve">
<value>La forma más fácil de añadir nuevas entradas a su caja fuerte es utilizando el Servicio de Autorellenado de Bitwarden. Aprenda más sobre cómo utilizar este servicio en la sección de "Ajustes".</value>
<value>La forma más fácil de añadir nuevos inicios de sesión a tu caja fuerte es utilizando el Servicio de Autocompletar de Bitwarden. Aprenda más sobre cómo utilizar el Servicio de Autocompletar de Bitwarden en el menú "Ajustes".</value>
</data>
<data name="Autofill" xml:space="preserve">
<value>Autorellenar</value>
@ -787,10 +787,10 @@
<value>¿Estás seguro de que quieres autorellenar esta entrada? No es una coincidencia completa para "{0}".</value>
</data>
<data name="MatchingItems" xml:space="preserve">
<value>Elementos coincidientes</value>
<value>Elementos que coinciden</value>
</data>
<data name="PossibleMatchingItems" xml:space="preserve">
<value>Posibles elementos coincidientes</value>
<value>Posibles elementos que coinciden</value>
</data>
<data name="Search" xml:space="preserve">
<value>Buscar</value>
@ -799,7 +799,7 @@
<value>Estás buscando una entrada para autorellenar "{0}".</value>
</data>
<data name="LearnOrg" xml:space="preserve">
<value>Aprenda sobre Organizaciones</value>
<value>Aprende sobre organizaciones</value>
</data>
<data name="CannotOpenApp" xml:space="preserve">
<value>No se puede abrir la aplicación "{0}".</value>
@ -818,11 +818,11 @@
<comment>For 2FA</comment>
</data>
<data name="LoginUnavailable" xml:space="preserve">
<value>Entrada no disponible</value>
<value>Inicio de sesión no disponible</value>
<comment>For 2FA whenever there are no available providers on this device.</comment>
</data>
<data name="NoTwoStepAvailable" xml:space="preserve">
<value>Esta cuenta tiene habilitada la autenticación en dos pasos, pero ninguna de los métodos configurados es soportado por este dispositivo. Por favor, utiliza un dispositivo soportado o/y añade proveedores adicionales que tengan un mejor soporte entre dispositivos (como una aplicación autenticadora).</value>
<value>Esta cuenta tiene configuración de inicio de sesión en dos pasos, sin embargo, ninguno de los proveedores de dos pasos configurados son soportados en este dispositivo. Por favor, utilice un dispositivo soportado y/o añada proveedores adicionales que sean mejor soportados entre los dispositivos (como una aplicación de autenticación).</value>
</data>
<data name="RecoveryCodeTitle" xml:space="preserve">
<value>Código de recuperación</value>
@ -837,7 +837,7 @@
<comment>For 2FA</comment>
</data>
<data name="TwoStepLoginOptions" xml:space="preserve">
<value>Opciones de la autenticación en dos pasos</value>
<value>Opciones de inicio de sesión en dos pasos</value>
</data>
<data name="UseAnotherTwoStepMethod" xml:space="preserve">
<value>Utilizar otro método de autenticación en dos pasos</value>
@ -847,18 +847,18 @@
<comment>For 2FA</comment>
</data>
<data name="VerificationEmailSent" xml:space="preserve">
<value>Correo de verificación enviado.</value>
<value>Correo de verificación enviado</value>
<comment>For 2FA</comment>
</data>
<data name="YubiKeyInstruction" xml:space="preserve">
<value>Para continuar, mantén tu YubiKey NEO contra la parte trasera de tu dispositivo o inserta tu YubiKey en el puerto USB de tu dispositivo y luego pulsa su butón.</value>
</data>
<data name="YubiKeyTitle" xml:space="preserve">
<value>Llave de Seguridad YubiKey</value>
<value>Clave de seguridad YubiKey</value>
<comment>"YubiKey" is the product name and should not be translated.</comment>
</data>
<data name="AddNewAttachment" xml:space="preserve">
<value>Añadir nuevo adjunto</value>
<value>Añadir nuevo archivo adjunto</value>
</data>
<data name="Attachments" xml:space="preserve">
<value>Adjuntos</value>
@ -907,10 +907,10 @@ El escaneo se realizará automáticamente.</value>
<value>Copiar código TOTP</value>
</data>
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
<value>Si un inicio de sesión tiene una clave de autenticador, copie el código de verificación TOTP a su portapapeles cuando autorrellene el inicio de sesión.</value>
<value>Si un inicio de sesión tiene una clave de autenticador, copie el código de verificación TOTP a su portapapeles cuando autocomplete el inicio de sesión.</value>
</data>
<data name="CopyTotpAutomatically" xml:space="preserve">
<value>Copiar automáticamente TOTP</value>
<value>Copiar TOTP automáticamente</value>
</data>
<data name="PremiumRequired" xml:space="preserve">
<value>Se quiere membrasía Premium para poder utilizar esta característica.</value>
@ -922,7 +922,7 @@ El escaneo se realizará automáticamente.</value>
<value>Adjunto eliminado</value>
</data>
<data name="ChooseFile" xml:space="preserve">
<value>Seleccionar archivo</value>
<value>Elegir archivo</value>
</data>
<data name="File" xml:space="preserve">
<value>Archivo</value>
@ -937,7 +937,7 @@ El escaneo se realizará automáticamente.</value>
<value>Fuente de archivo</value>
</data>
<data name="FeatureUnavailable" xml:space="preserve">
<value>Característica no disponible</value>
<value>Funcionalidad no disponible</value>
</data>
<data name="MaxFileSize" xml:space="preserve">
<value>El tamaño máximo de archivo es de 100MB.</value>
@ -946,10 +946,10 @@ El escaneo se realizará automáticamente.</value>
<value>No puedes usar esta característica hasta que actualices tu clave de cifrado.</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>
<value>Se requiere migración de la clave de cifrado. Por favor, inicie sesión a través de la caja fuerte web para actualizar su clave de cifrado.</value>
</data>
<data name="LearnMore" xml:space="preserve">
<value>Aprender más</value>
<value>Aprende más</value>
</data>
<data name="ApiUrl" xml:space="preserve">
<value>URL del servidor de la API</value>
@ -1032,7 +1032,7 @@ El escaneo se realizará automáticamente.</value>
<value>Marca</value>
</data>
<data name="CardholderName" xml:space="preserve">
<value>Nombre en la tarjeta</value>
<value>Nombre del propietario de la tarjeta</value>
</data>
<data name="CityTown" xml:space="preserve">
<value>Ciudad / Pueblo</value>
@ -1077,7 +1077,7 @@ El escaneo se realizará automáticamente.</value>
<value>Nombre completo</value>
</data>
<data name="LicenseNumber" xml:space="preserve">
<value>Nº de licencia</value>
<value>Número de licencia</value>
</data>
<data name="March" xml:space="preserve">
<value>Marzo</value>
@ -1086,7 +1086,7 @@ El escaneo se realizará automáticamente.</value>
<value>Mayo</value>
</data>
<data name="MiddleName" xml:space="preserve">
<value> nombre</value>
<value>Segundo nombre</value>
</data>
<data name="Mr" xml:space="preserve">
<value>Sr</value>
@ -1098,7 +1098,7 @@ El escaneo se realizará automáticamente.</value>
<value>Srta</value>
</data>
<data name="Mx" xml:space="preserve">
<value>"Mx" = "Sr./Sra</value>
<value>Mx</value>
</data>
<data name="November" xml:space="preserve">
<value>Noviembre</value>
@ -1107,7 +1107,7 @@ El escaneo se realizará automáticamente.</value>
<value>Octubre</value>
</data>
<data name="PassportNumber" xml:space="preserve">
<value>Nº de pasaporte</value>
<value>Número de pasaporte</value>
</data>
<data name="Phone" xml:space="preserve">
<value>Teléfono</value>
@ -1116,7 +1116,7 @@ El escaneo se realizará automáticamente.</value>
<value>Septiembre</value>
</data>
<data name="SSN" xml:space="preserve">
<value>Nº de la seguridad social</value>
<value>Número de Seguro Social</value>
</data>
<data name="StateProvince" xml:space="preserve">
<value>Estado / Provincia</value>
@ -1167,7 +1167,7 @@ El escaneo se realizará automáticamente.</value>
<value>Servicio de accesibilidad de autorellenado</value>
</data>
<data name="AutofillServiceDescription" xml:space="preserve">
<value>El servicio de autorellenado de Bitwarden utiliza el marco de autocompletado de Android para ayudarte a rellenar entradas, tarjetas de crédito e identidades en otras aplicaciones de tu dispositivo.</value>
<value>El servicio de autocompletar de Bitwarden utiliza el Marco de Autocompletar de Android para ayudarte a completar información de inicios de sesión en otras aplicaciones en tu dispositivo.</value>
</data>
<data name="BitwardenAutofillServiceDescription" xml:space="preserve">
<value>Utiliza el servicio de accesibilidad de Bitwarden para autorrellenar entradas.</value>
@ -1246,14 +1246,14 @@ El escaneo se realizará automáticamente.</value>
<value>Empieza con</value>
</data>
<data name="URIMatchDetection" xml:space="preserve">
<value>Tipo de detección de URI</value>
<value>Detección de coincidencia URI</value>
</data>
<data name="MatchDetection" xml:space="preserve">
<value>Tipo de detección</value>
<value>Detección de coincidencia</value>
<comment>URI match detection for auto-fill.</comment>
</data>
<data name="YesAndSave" xml:space="preserve">
<value>Sí y guardar</value>
<value>Sí, y guardar</value>
</data>
<data name="AutofillAndSave" xml:space="preserve">
<value>Autorellenar y guardar</value>
@ -1289,7 +1289,7 @@ El escaneo se realizará automáticamente.</value>
<value>Debes identificarte en la aplicación principal de Bitwarden antes de poder utilizar Autorellenado.</value>
</data>
<data name="AutofillSetup" xml:space="preserve">
<value>Sus entradas son ahora fácilmente accesibles desde su teclado mientras se identifica en aplicaciones y sitios web.</value>
<value>Sus inicios de sesión ahora son fácilmente accesibles directamente desde su teclado mientras inician sesión en aplicaciones y sitios web.</value>
</data>
<data name="AutofillSetup2" xml:space="preserve">
<value>Te recomendamos deshabilitar cualquier otra aplicación de Autorellenado desde Ajustes si no piensas utilizarlas.</value>
@ -1298,13 +1298,13 @@ El escaneo se realizará automáticamente.</value>
<value>Accede a tu caja fuerte directamente desde tu teclado para autorellenar contraseñas rápidamente.</value>
</data>
<data name="AutofillTurnOn" xml:space="preserve">
<value>Para habilitar el Autorellenado de contraseña en su dispositivo, sigue estas instrucciones:</value>
<value>Para configurar autocompletar contraseña en tu dispositivo, sigue estas instrucciones:</value>
</data>
<data name="AutofillTurnOn1" xml:space="preserve">
<value>1. Ve a la aplicación "Ajustes" de iOS</value>
</data>
<data name="AutofillTurnOn2" xml:space="preserve">
<value>2. Pulsa en "Contraseñas y Cuentas"</value>
<value>2. Pulse "Contraseñas"</value>
</data>
<data name="AutofillTurnOn3" xml:space="preserve">
<value>3. Pulsa en "Autorellenado de contraseñas"</value>
@ -1316,10 +1316,10 @@ El escaneo se realizará automáticamente.</value>
<value>5. Selecciona "Bitwarden"</value>
</data>
<data name="PasswordAutofill" xml:space="preserve">
<value>Autorellenado de contraseña</value>
<value>Autocompletar contraseña</value>
</data>
<data name="BitwardenAutofillAlert2" xml:space="preserve">
<value>La forma más fácil de añadir nuevas entradas a su caja fuerte es utilizando la extensión de Autorellenado de contraseñas de Bitwarden. Aprenda más sobre cómo utilizar la extensión de Autorellenado de contraseñas de Bitwarden en la sección de "Ajustes".</value>
<value>La manera más fácil de añadir nuevos inicios de sesión a tu caja fuerte es utilizando la extensión Autocompletar Contraseña de la aplicación Bitwarden. Aprenda más sobre cómo utilizar la extensión Autocompletar Contraseña de la aplicación de Bitwarden accediendo al menú de "Ajustes".</value>
</data>
<data name="InvalidEmail" xml:space="preserve">
<value>Dirección de correo electrónico inválida.</value>
@ -1522,11 +1522,11 @@ El escaneo se realizará automáticamente.</value>
<value>2 minutos</value>
</data>
<data name="ClearClipboard" xml:space="preserve">
<value>Limpiar el Portapapeles</value>
<value>Limpiar el portapapeles</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>Borrar automáticamente los valores copiados de su portapapeles.</value>
<value>Borrar automáticamente los valores copiados de tu portapapeles.</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">
@ -1534,14 +1534,14 @@ El escaneo se realizará automáticamente.</value>
<comment>Default URI match detection for auto-fill.</comment>
</data>
<data name="DefaultUriMatchDetectionDescription" xml:space="preserve">
<value>Elija el método de detección por defecto de coincidencia de URI que se utilizará para acciones de inicio de sesión como autorrellenado.</value>
<value>Elija la forma por defecto en la que se maneja la detección de coincidencias URI para inicios de sesión cuando se realizan acciones tales como autocompletar.</value>
</data>
<data name="Theme" xml:space="preserve">
<value>Tema</value>
<comment>Color theme</comment>
</data>
<data name="ThemeDescription" xml:space="preserve">
<value>Cambiar el tema de la aplicación.</value>
<value>Cambiar el color de la aplicación.</value>
</data>
<data name="ThemeDefault" xml:space="preserve">
<value>Por defecto (Sistema)</value>
@ -1550,7 +1550,7 @@ El escaneo se realizará automáticamente.</value>
<value>Tema oscuro por defecto</value>
</data>
<data name="CopyNotes" xml:space="preserve">
<value>Copiar notas</value>
<value>Copiar nota</value>
</data>
<data name="Exit" xml:space="preserve">
<value>Salir</value>
@ -2630,16 +2630,16 @@ seleccione Agregar TOTP para almacenar la clave de forma segura</value>
<value>Aprobar con mi otro dispositivo</value>
</data>
<data name="RequestAdminApproval" xml:space="preserve">
<value>Request admin approval</value>
<value>Solicitar aprobación del administrador</value>
</data>
<data name="ApproveWithMasterPassword" xml:space="preserve">
<value>Approve with master password</value>
<value>Aprobar con contraseña maestra</value>
</data>
<data name="TurnOffUsingPublicDevice" xml:space="preserve">
<value>Turn off using a public device</value>
<value>Deshabilitar usando un dispositivo público</value>
</data>
<data name="RememberThisDevice" xml:space="preserve">
<value>Remember this device</value>
<value>Recordar este dispositivo</value>
</data>
<data name="Passkey" xml:space="preserve">
<value>Passkey</value>
@ -2648,28 +2648,29 @@ seleccione Agregar TOTP para almacenar la clave de forma segura</value>
<value>Passkeys</value>
</data>
<data name="Application" xml:space="preserve">
<value>Application</value>
<value>Aplicación</value>
</data>
<data name="YouCannotEditPasskeyApplicationBecauseItWouldInvalidateThePasskey" xml:space="preserve">
<value>You cannot edit passkey application because it would invalidate the passkey</value>
<value>No puedes editar la aplicación de contraseñas maestras porque podría invalidar la contraseña maestra</value>
</data>
<data name="PasskeyWillNotBeCopied" xml:space="preserve">
<value>Passkey will not be copied</value>
<value>La contraseña maestra no será copiada</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>
<value>La contraseña maestra no será copiada al elemento clonado.
¿Deseas continuar clonando este elemento?</value>
</data>
<data name="CopyApplication" xml:space="preserve">
<value>Copy application</value>
<value>Copiar aplicación</value>
</data>
<data name="AvailableForTwoStepLogin" xml:space="preserve">
<value>Available for two-step login</value>
<value>Disponible para inicio de sesión en dos pasos</value>
</data>
<data name="MasterPasswordRePromptHelp" xml:space="preserve">
<value>Ayuda de volver a pedir contraseña maestra</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>
<value>El desbloqueo puede fallar por falta de memoria. Disminuye los ajustes de memoria KDF o configura el desbloqueo biométrico para resolverlo.</value>
</data>
<data name="InvalidAPIKey" xml:space="preserve">
<value>Clave API no válida</value>
@ -2678,197 +2679,203 @@ seleccione Agregar TOTP para almacenar la clave de forma segura</value>
<value>Token de API no válido</value>
</data>
<data name="AdminApprovalRequested" xml:space="preserve">
<value>Admin approval requested</value>
<value>Aprobación del administrador solicitada</value>
</data>
<data name="YourRequestHasBeenSentToYourAdmin" xml:space="preserve">
<value>Your request has been sent to your admin.</value>
<value>Tu solicitud ha sido enviada a tu administrador.</value>
</data>
<data name="YouWillBeNotifiedOnceApproved" xml:space="preserve">
<value>You will be notified once approved. </value>
<value>Se te notificará una vez aprobada. </value>
</data>
<data name="TroubleLoggingIn" xml:space="preserve">
<value>Trouble logging in?</value>
<value>¿Problema para iniciar sesión?</value>
</data>
<data name="LoggingInAsX" xml:space="preserve">
<value>Logging in as {0}</value>
<value>Iniciando sesión como {0}</value>
</data>
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
<value>Vault timeout action changed to log out</value>
<value>Acción después del tiempo de espera de la caja fuerte cambiado a cerrar sesión</value>
</data>
<data name="BlockAutoFill" xml:space="preserve">
<value>Block auto-fill</value>
<value>Bloquear autocompletar</value>
</data>
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
<value>Auto-fill will not be offered for these URIs.</value>
<value>Autocompletar no se ofrecerá para estas URLs.</value>
</data>
<data name="NewBlockedURI" xml:space="preserve">
<value>New blocked URI</value>
<value>Nueva URI bloqueada</value>
</data>
<data name="URISaved" xml:space="preserve">
<value>URI saved</value>
<value>URI guardada</value>
</data>
<data name="InvalidFormatUseHttpsHttpOrAndroidApp" xml:space="preserve">
<value>Invalid format. Use https://, http://, or androidapp://</value>
<value>Formato no válido. Use https://, http://, o androidapp://</value>
<comment>https://, http://, androidapp:// should not be translated</comment>
</data>
<data name="EditURI" xml:space="preserve">
<value>Edit URI</value>
<value>Editar URI</value>
</data>
<data name="EnterURI" xml:space="preserve">
<value>Enter URI</value>
<value>Escribir URI</value>
</data>
<data name="FormatXSeparateMultipleURIsWithAComma" xml:space="preserve">
<value>Format: {0}. Separate multiple URIs with a comma.</value>
<value>Formato: {0}. Separar múltiples URIs con una coma.</value>
</data>
<data name="FormatX" xml:space="preserve">
<value>Format: {0}</value>
<value>Formato: {0}</value>
</data>
<data name="InvalidURI" xml:space="preserve">
<value>Invalid URI</value>
<value>URI no válida</value>
</data>
<data name="URIRemoved" xml:space="preserve">
<value>URI removed</value>
<value>URI eliminada</value>
</data>
<data name="ThereAreNoBlockedURIs" xml:space="preserve">
<value>There are no blocked URIs</value>
<value>No hay URIs bloqueadas</value>
</data>
<data name="TheURIXIsAlreadyBlocked" xml:space="preserve">
<value>The URI {0} is already blocked</value>
<value>El URI {0} ya está bloqueada</value>
</data>
<data name="CannotEditMultipleURIsAtOnce" xml:space="preserve">
<value>Cannot edit multiple URIs at once</value>
<value>No se pueden editar múltiples URIs a la vez</value>
</data>
<data name="LoginApproved" xml:space="preserve">
<value>Login approved</value>
<value>Inicio de sesión aprobado</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>
<value>Iniciar sesión con el dispositivo debe configurarse en los ajustes de la aplicación Bitwarden. ¿Necesitas otra opción?</value>
</data>
<data name="LogInWithDevice" xml:space="preserve">
<value>Log in with device</value>
<value>Iniciar sesión con el dispositivo</value>
</data>
<data name="LoggingInOn" xml:space="preserve">
<value>Logging in on</value>
<value>Iniciando sesión en</value>
</data>
<data name="Vault" xml:space="preserve">
<value>Vault</value>
<value>Caja fuerte</value>
</data>
<data name="Appearance" xml:space="preserve">
<value>Appearance</value>
<value>Apariencia</value>
</data>
<data name="AccountSecurity" xml:space="preserve">
<value>Account security</value>
<value>Seguridad de la cuenta</value>
</data>
<data name="BitwardenHelpCenter" xml:space="preserve">
<value>Bitwarden Help Center</value>
<value>Centro de ayuda de Bitwarden</value>
</data>
<data name="ContactBitwardenSupport" xml:space="preserve">
<value>Contact Bitwarden support</value>
<value>Contactar al soporte de Bitwarden</value>
</data>
<data name="CopyAppInformation" xml:space="preserve">
<value>Copy app information</value>
<value>Copiar información de la aplicación</value>
</data>
<data name="SyncNow" xml:space="preserve">
<value>Sync now</value>
<value>Sincronizar ahora</value>
</data>
<data name="UnlockOptions" xml:space="preserve">
<value>Unlock options</value>
<value>Opciónes de desbloqueo</value>
</data>
<data name="SessionTimeout" xml:space="preserve">
<value>Session timeout</value>
<value>Tiempo de espera de sesión</value>
</data>
<data name="SessionTimeoutAction" xml:space="preserve">
<value>Session timeout action</value>
<value>Acción de tiempo de espera de sesión</value>
</data>
<data name="AccountFingerprintPhrase" xml:space="preserve">
<value>Account fingerprint phrase</value>
<value>Frase de huella digital de su cuenta</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>
<value>Una hora y un minuto</value>
</data>
<data name="OneHourAndXMinute" xml:space="preserve">
<value>One hour and {0} minutes</value>
<value>Una hora y {0} minutos</value>
</data>
<data name="XHoursAndOneMinute" xml:space="preserve">
<value>{0} hours and one minute</value>
<value>{0} horas y un minuto</value>
</data>
<data name="XHoursAndYMinutes" xml:space="preserve">
<value>{0} hours and {1} minutes</value>
<value>{0} horas y {1} minutos</value>
</data>
<data name="XHours" xml:space="preserve">
<value>{0} hours</value>
<value>{0} horas</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>
<value>El Framework de Autofill de Android se utiliza para ayudar a rellenar información de inicio de sesión en otras aplicaciones en tu dispositivo.</value>
</data>
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
<value>Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay.</value>
<value>Utilice el autocompletado en línea si tu teclado seleccionado lo soporta. De otra manera, utilice la superposición por defecto.</value>
</data>
<data name="AdditionalOptions" xml:space="preserve">
<value>Additional options</value>
<value>Opciones adicionales</value>
</data>
<data name="ContinueToWebApp" xml:space="preserve">
<value>Continue to web app?</value>
<value>¿Continuar a la aplicación web?</value>
</data>
<data name="ContinueToX" xml:space="preserve">
<value>Continue to {0}?</value>
<value>¿Continuar a {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>
<value>¿Continuar al centro de ayuda?</value>
</data>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Continue to contact support?</value>
<value>¿Continuar con el servicio de asistencia?</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>
<value>¿Continuar a la 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>
<value>Haz tu cuenta más segura al configurar el inicio de sesión en dos pasos en la aplicación web de Bitwarden.</value>
</data>
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
<value>You can change your master password on the Bitwarden web app.</value>
<value>Puedes cambiar tu contraseña maestra en la aplicación web de Bitwarden.</value>
</data>
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
<value>You can import data to your vault on {0}.</value>
<value>Puedes importar datos a tu caja fuerte en {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>
<value>Más información sobre cómo usar Bitwarden en el centro de Ayuda.</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>
<value>¿No encuentras lo que estás buscando? Contacta con el soporte de Bitwarden en 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>
<value>Explora más características de tu cuenta de Bitwarden en la aplicación web.</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>
<value>Bitwarden te permite compartir tus elementos de la caja fuerte con otros utilizando una organización. Más información en el sitio web de bitwarden.com.</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>
<value>Ayuda a otros a averiguar si Bitwarden es correcto para ellos. Visita la tienda de aplicaciones y deja una calificación ahora.</value>
</data>
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
<value>Choose the dark theme to use when your devices dark mode is in use</value>
<value>Elige el tema oscuro a usar cuando el modo oscuro de tu dispositivo esté en uso</value>
</data>
<data name="CreatedXY" xml:space="preserve">
<value>Creado {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>
<value>Demasiados intentos</value>
</data>
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
<value>Account logged out.</value>
<value>Sesión de la cuenta cerrada.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>Los permisos de su organización han sido actualizados, requiriendo que establezca una contraseña maestra.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>Tu organización requiere que establezcas una contraseña maestra.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Set up an unlock option to change your vault timeout action.</value>
<value>Configura una opción de desbloqueo para cambiar tu acción de tiempo de espera de tu caja fuerte.</value>
</data>
</root>

View File

@ -2820,6 +2820,9 @@ Soovid selle konto peale lülituda?</value>
<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>
@ -2839,6 +2842,9 @@ Soovid selle konto peale lülituda?</value>
<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>

View File

@ -416,10 +416,10 @@
<value>Aplikazioaren gehigarria</value>
</data>
<data name="AutofillAccessibilityDescription" xml:space="preserve">
<value>Erabili Bitwarden-en erabilerraztasun zerbitzua zure saio hasierak auto-betetzeko aplikazio eta webguneetan zehar.</value>
<value>Erabili Bitwarden-en erabilerraztasun zerbitzua zure saio hasierak automatikoki betetzeko aplikazio eta webguneetan zehar.</value>
</data>
<data name="AutofillService" xml:space="preserve">
<value>Auto-betetze zerbitzua</value>
<value>Automatikoki betetzeko zerbitzua</value>
</data>
<data name="AvoidAmbiguousCharacters" xml:space="preserve">
<value>Saihestu karaktere anbiguoak</value>
@ -431,13 +431,13 @@
<value>Zure kutxa gotorrean saio hasiera berriak gehitzeko modurik errazena Bitwarden aplikazioaren gehigarria zabaltzea da. Eskuratu informazio gehiago "Ezarpenak" eremuan.</value>
</data>
<data name="BitwardenAppExtensionDescription" xml:space="preserve">
<value>Erabili Bitwarden Safari-n eta beste aplikazio batzuetan zure saio hasierak auto-betetzeko.</value>
<value>Erabili Bitwarden Safari-n eta beste aplikazio batzuetan zure saio hasierak automatikoki betetzeko.</value>
</data>
<data name="BitwardenAutofillService" xml:space="preserve">
<value>Bitwarden auto-betetze zerbitzua</value>
<value>Bitwardenen automatikoki betetzeko zerbitzua</value>
</data>
<data name="BitwardenAutofillAccessibilityServiceDescription" xml:space="preserve">
<value>Erabili Bitwarden-en erabilerraztasun zerbitzua zure saio hasierak auto-betetzeko.</value>
<value>Erabili Bitwardenen erabilerraztasun zerbitzua zure saio hasierak automatikoki betetzeko.</value>
</data>
<data name="ChangeEmail" xml:space="preserve">
<value>Aldatu emaila</value>
@ -745,10 +745,10 @@
<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>Sarrera-eremu bat hautatu eta Bitwarden auto-betetzerako gainjartze bat ikusten duzunean, bere kasa betetzeko erabil dezakezu.</value>
<value>Sarrera-eremu bat hautatu eta Bitwardenen automatikoki betetzerako gainjartze bat ikusten duzunean, bere kasa betetzeko erabil dezakezu.</value>
</data>
<data name="BitwardenAutofillServiceNotificationContent" xml:space="preserve">
<value>Sakatu jakinarazpen hau kutxa gotorreko elementu bat auto-betetzeko.</value>
<value>Sakatu jakinarazpen hau kutxa gotorreko elementu bat automatikoki betetzeko.</value>
</data>
<data name="BitwardenAutofillServiceOpenAccessibilitySettings" xml:space="preserve">
<value>Ireki erabilerraztasun ezarpenak</value>
@ -775,16 +775,16 @@
<value>Egoera</value>
</data>
<data name="BitwardenAutofillServiceAlert2" xml:space="preserve">
<value>Zure kutxa gotorrean saio hasiera berriak gehitzeko modurik errazena Bitwarden auto-betetze zerbitzua erabiltzea da. Eskuratu informazio gehiago "Ezarpenak" eremuan.</value>
<value>Zure kutxa gotorrean saio hasiera berriak gehitzeko modurik errazena Bitwardenen automatikoki betetzeko zerbitzua erabiltzea da. Eskuratu informazio gehiago "Ezarpenak" eremuan.</value>
</data>
<data name="Autofill" xml:space="preserve">
<value>Auto-betetzea</value>
<value>Automatikoki betetzea</value>
</data>
<data name="AutofillOrView" xml:space="preserve">
<value>Elementu hau ikusi edo auto-bete nahi duzu?</value>
<value>Elementu hau ikusi edo automatikoki bete nahi duzu?</value>
</data>
<data name="BitwardenAutofillServiceMatchConfirm" xml:space="preserve">
<value>Ziur al zaude elementu hau auto-bete nahi duzula? Ez dago kointzidentzia osorik “{0}"-entzat.</value>
<value>Ziur al zaude elementu hau automatikoki bete nahi duzula? Ez dago kointzidentzia osorik “{0}"-entzat.</value>
</data>
<data name="MatchingItems" xml:space="preserve">
<value>Kointzidentzia duten elementuak</value>
@ -796,7 +796,7 @@
<value>Bilatu</value>
</data>
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
<value>"{0}"-entzat auto-betetzeko elementu baten bila zabiltza.</value>
<value>"{0}"-entzat automatikoki betetzeko elementu baten bila zabiltza.</value>
</data>
<data name="LearnOrg" xml:space="preserve">
<value>Erakundeak ezagutu</value>
@ -906,7 +906,7 @@
<value>Kopiatu TOTP-a</value>
</data>
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
<value>Saio hasiera batek autentifikazio-gakoa badu, TOTP egiaztatze-kodea arbelean automatikoki kopiatuko da saio hasiera bat auto-betetzean.</value>
<value>Saio hasiera batek autentifikazio-gakoa badu, TOTP egiaztatze-kodea arbelean automatikoki kopiatuko da saio hasiera bat automatikoki betetzean.</value>
</data>
<data name="CopyTotpAutomatically" xml:space="preserve">
<value>Kopiatu TOTP automatikoki</value>
@ -1142,7 +1142,7 @@
<value>Ikonoen zerbitzariaren URL-a</value>
</data>
<data name="AutofillWithBitwarden" xml:space="preserve">
<value>Bitwardenekin auto-bete</value>
<value>Bitwardenekin automatikoki bete</value>
</data>
<data name="VaultIsLocked" xml:space="preserve">
<value>Kutxa gotorra blokeatuta dago</value>
@ -1163,13 +1163,13 @@
<value>Zakarrontzian ez dago elementurik.</value>
</data>
<data name="AutofillAccessibilityService" xml:space="preserve">
<value>Auto-betetze erabilerraztasun zerbitzua</value>
<value>Automatikoki betetzeko erabilerraztasun zerbitzua</value>
</data>
<data name="AutofillServiceDescription" xml:space="preserve">
<value>Bitwarden auto-betetze zerbitzuak Android Autofill Framework erabiltzen du zure gailuko beste aplikazio batzuetan saio-hasierako informazioa betetzen laguntzeko.</value>
<value>Bitwardenen automatikoki betetzeko zerbitzuak Android Autofill Framework erabiltzen du zure gailuko beste aplikazio batzuetan saio-hasierako informazioa betetzen laguntzeko.</value>
</data>
<data name="BitwardenAutofillServiceDescription" xml:space="preserve">
<value>Erabili Bitwarden auto-betetze zerbitzua saio-hasierako informazioa beste aplikazio batzuetan betetzeko.</value>
<value>Erabili Bitwarden automatikoki betetzeko zerbitzua saio-hasierako informazioa beste aplikazio batzuetan betetzeko.</value>
</data>
<data name="BitwardenAutofillServiceOpenAutofillSettings" xml:space="preserve">
<value>Ireki auto-betetze ezarpenak</value>
@ -1255,7 +1255,7 @@
<value>Bai, eta gorde</value>
</data>
<data name="AutofillAndSave" xml:space="preserve">
<value>Auto-bete eta gorde</value>
<value>Automatikoki bete eta gorde</value>
</data>
<data name="Organization" xml:space="preserve">
<value>Erakundea</value>
@ -1271,7 +1271,7 @@
<value>Aurrera egiteko, mantendu YubiKey NEO gailuaren atzeko aldean.</value>
</data>
<data name="BitwardenAutofillAccessibilityServiceDescription2" xml:space="preserve">
<value>Erabilerraztasun zerbitzua erabilgarria izan daiteke aplikazioak bere kabuz auto-betetzeko zerbitzu estandarra jasaten ez dutenean.</value>
<value>Erabilerraztasun zerbitzua erabilgarria izan daiteke aplikazioak bere kabuz automatikoki betetzeko zerbitzu estandarra jasaten ez dutenean.</value>
</data>
<data name="DatePasswordUpdated" xml:space="preserve">
<value>Pasahitza eguneratu da</value>
@ -1297,7 +1297,7 @@
<value>Sartu kutxa gotorrera zuzenean teklatutik, pasahitzak azkar auto-betetzeko.</value>
</data>
<data name="AutofillTurnOn" xml:space="preserve">
<value>Zure gailuan pasahitza auto-betetzeko aukera gaitzeko, jarraitu jarraibide hauei:</value>
<value>Zure gailuan pasahitza automatikoki betetzeko aukera gaitzeko, jarraitu jarraibide hauei:</value>
</data>
<data name="AutofillTurnOn1" xml:space="preserve">
<value>1. Joan iOS "Ezarpenak" aplikaziora</value>
@ -1315,7 +1315,7 @@
<value>5. Hautatu "Bitwarden"</value>
</data>
<data name="PasswordAutofill" xml:space="preserve">
<value>Pasahitza auto-bete</value>
<value>Pasahitza automatikoki bete</value>
</data>
<data name="BitwardenAutofillAlert2" xml:space="preserve">
<value>Zure kutxa gotorrean saio hasiera berriak gehitzeko modurik errazena Bitwarden pasahitzak auto-betetzea gehigarria erabiltzea da. Eskuratu Bitwarden pasahitzak auto-betetzea gehigarriaren erabilerari buruzko informazio gehiago "Ezarpenak" eremuan.</value>
@ -1457,7 +1457,7 @@
<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>Zure kontuaren hatz-marka esaldia</value>
<value>Zure kontuaren hatz-marka digitalaren esaldia</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">
@ -1533,7 +1533,7 @@
<comment>Default URI match detection for auto-fill.</comment>
</data>
<data name="DefaultUriMatchDetectionDescription" xml:space="preserve">
<value>Hautatu auto-betetzea bezalako saio-hasierako ekintzetarako erabiliko den URI kointzidentzia detektatzeko modu lehenetsia.</value>
<value>Hautatu automatikoki betetzean erabiliko den URI kointzidentzia detektatzeko modu lehenetsia.</value>
</data>
<data name="Theme" xml:space="preserve">
<value>Gaia</value>
@ -1573,7 +1573,7 @@
<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-bete blokeatutako URI-ak</value>
<value>Automatikoki bete blokeatutako URI-ak</value>
</data>
<data name="AskToAddLogin" xml:space="preserve">
<value>Galdetu saio-hasiera gehitzeko</value>
@ -1585,7 +1585,7 @@
<value>Aplikazioa berrabiarazten denean</value>
</data>
<data name="AutofillServiceNotEnabled" xml:space="preserve">
<value>Auto-betetzeak Bitwarden-en kutxa gotorra segurtasunez erabiltzeko aukera ematen du beste webgune eta aplikazio batzuetatik. Badirudi ez duzula Bitwardenentzat auto-betetzeko zerbitzurik jarri. "Ezarpenak" atalean gaitu dezakezu.</value>
<value>Automatikoki betetzeak Bitwardenen kutxa gotorra segurtasunez erabiltzeko aukera ematen du beste webgune eta aplikazio batzuetatik. Badirudi ez duzula Bitwardenentzat automatikoki betetzeko zerbitzurik jarri. "Ezarpenak" atalean gaitu dezakezu.</value>
</data>
<data name="ThemeAppliedOnRestart" xml:space="preserve">
<value>Aplikazioa berrabiarazten denean aplikatuko dira gai aldaketak.</value>
@ -1619,7 +1619,7 @@
<value>Erabili biometria desblokeatzeko</value>
</data>
<data name="AccessibilityOverlayPermissionAlert" xml:space="preserve">
<value>Bitwardenek laguntza behar du - Kontsultatu Bitwarden ezarpenetann "auto-betetzerako erabilerraztasun zerbitzua"</value>
<value>Bitwardenek laguntza behar du - Kontsultatu Bitwarden ezarpenetan "automatikoki betetzeko erabilerraztasun zerbitzua"</value>
</data>
<data name="BitwardenAutofillServiceOverlayPermission" xml:space="preserve">
<value>3. Bitwarden aplikazioko Androiden konfigurazioa pantailan, joan "Erakutsi beste aplikazio batzuetan" aukerara (Aurreratua) eta gaitu gainjartzea.</value>
@ -1694,7 +1694,7 @@
<value>Eranskina ondo atxiki da</value>
</data>
<data name="AutofillTileAccessibilityRequired" xml:space="preserve">
<value>Mesedez, gaitu Bitwardeneko ezarpenetan "auto-betetze erabilerraztasun zerbitzua", auto-betetzea erabiltzeko.</value>
<value>Mesedez, gaitu Bitwardeneko ezarpenetan "automatikoki betetzeko erabilerraztasun zerbitzua", automatikoki betetzea erabiltzeko.</value>
</data>
<data name="AutofillTileUriNotFound" xml:space="preserve">
<value>Ez da pasahitz eremurik detektatu</value>
@ -1813,25 +1813,25 @@
<value>Pribatutasun politika</value>
</data>
<data name="AccessibilityDrawOverPermissionAlert" xml:space="preserve">
<value>Bitwardenek laguntza behar du - Gainjartzea gaitu behar duzu Bitwarden ezarpenetako "auto-betetze zerbitzua"-n</value>
<value>Bitwardenek laguntza behar du - Gainjartzea gaitu behar duzu Bitwarden ezarpenetako "automatikoki betetzeko zerbitzua"-n</value>
</data>
<data name="AutofillServices" xml:space="preserve">
<value>Auto-betetze zerbitzuak</value>
<value>Automatikoki betetzeko zerbitzuak</value>
</data>
<data name="InlineAutofill" xml:space="preserve">
<value>Erabili lineako auto-betetzea</value>
</data>
<data name="InlineAutofillDescription" xml:space="preserve">
<value>Erabili lineako auto-betetzea, hautatutako IME-ak (teklatua) onartzen badu. Ezarpenak ez badira bateragarriak (edo aukera hau desgaituta badago), auto-betetze gainjartzea erabiliko da lehenespenez.</value>
<value>Erabili teklatuko lerroko automatikoki betetzea, hautatutako IME-ak (teklatua) onartzen badu. Ezarpenak ez badira bateragarriak (edo aukera hau desgaituta badago), automatikoki betetzeko gainjartzea erabiliko da lehenespenez.</value>
</data>
<data name="Accessibility" xml:space="preserve">
<value>Erabili erabilerraztasuna</value>
</data>
<data name="AccessibilityDescription" xml:space="preserve">
<value>Erabili Bitwarden erabilerraztasun zerbitzua zure saio hasierak aplikazioen eta webgunearen bidez automatizatzeko. Gaituta dagoenean, popup bat agertuko da saio-hasierako eremuak hautatzean.</value>
<value>Erabili Bitwarden erabilerraztasun zerbitzua zure saio hasierak aplikazioen eta webgunearen bidez automatikoki betetzeko. Gaituta dagoenean, popup bat agertuko da saio-hasierako eremuak hautatzean.</value>
</data>
<data name="AccessibilityDescription2" xml:space="preserve">
<value>Erabili Bitwarden erabilerraztasun zerbitzua zure saio hasierak aplikazioen eta webgunearen bidez automatizatzeko. (Gainjartzea gaituta egotea behar du)</value>
<value>Erabili Bitwarden erabilerraztasun zerbitzua zure saio hasierak aplikazioen eta webgunearen bidez automatikoki betetzeko. (Gainjartzeak gaituta egon behar du)</value>
</data>
<data name="AccessibilityDescription3" xml:space="preserve">
<value>Erabili Bitwarden erabilerraztasun zerbitzua auto-betetze ekintza azkarreko mosaikoa erabiltzeko eta/edo erakutsi popup bat gainjartzea erabiliz (gaituta badago).</value>
@ -1846,7 +1846,7 @@
<value>Gaituta dagoenean, Bitwarden erabilerraztasun zerbitzuari popup bat erakusteko aukera ematen dio sarbide eremuak hautatzean.</value>
</data>
<data name="DrawOverDescription2" xml:space="preserve">
<value>Gaituta badago, Bitwarden erabilerraztasun zerbitzuak popup bat erakutsiko du saio-hasierako eremuak hautatzen direnean, saio hasierak bere kasa betetzen laguntzeko.</value>
<value>Gaituta badago, Bitwarden erabilerraztasun zerbitzuak popup bat erakutsiko du saio-hasierako eremuak hautatzen direnean, saio hasierak automatikoki betetzen laguntzeko.</value>
</data>
<data name="DrawOverDescription3" xml:space="preserve">
<value>Gaituz gero, Android-en auto-betetze Framework-arekin bateragarri ez diren aplikazio zaharragoen auto-betetze zerbitzua handitzeko popup bat erakutsiko du erabilerraztasunak.</value>
@ -2694,10 +2694,10 @@ Kontu honetara aldatu nahi duzu?</value>
<value>Vault timeout action changed to log out</value>
</data>
<data name="BlockAutoFill" xml:space="preserve">
<value>Block auto-fill</value>
<value>Blokeatu automatikoki betetzea</value>
</data>
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
<value>Auto-fill will not be offered for these URIs.</value>
<value>Automatikoki betetzea ez da URL hauetan erabilgarri egongo.</value>
</data>
<data name="NewBlockedURI" xml:space="preserve">
<value>New blocked URI</value>
@ -2779,7 +2779,7 @@ Kontu honetara aldatu nahi duzu?</value>
<value>Session timeout action</value>
</data>
<data name="AccountFingerprintPhrase" xml:space="preserve">
<value>Account fingerprint phrase</value>
<value>Kontuaren hatz-marka digitalaren esaldia</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">
@ -2801,7 +2801,7 @@ Kontu honetara aldatu nahi duzu?</value>
<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>
<value>Erabili teklatuko lerroko atomatikoki betetzea, zure teklatuak ahalbidetzen badu. Horrela ez bada, automatikoki betetzeko gainjartzea erabiliko da lehenespenez.</value>
</data>
<data name="AdditionalOptions" xml:space="preserve">
<value>Additional options</value>
@ -2819,6 +2819,9 @@ Kontu honetara aldatu nahi duzu?</value>
<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>
@ -2838,6 +2841,9 @@ Kontu honetara aldatu nahi duzu?</value>
<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>

View File

@ -2821,6 +2821,9 @@
<data name="ContinueToContactSupport" xml:space="preserve">
<value>می‌خواهید با پشتیبانی تماس بگیرید؟</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Continue to privacy policy?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>به فروشگاه برنامه ادامه می‌دهید؟</value>
</data>
@ -2840,6 +2843,9 @@
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>چیزی را که به دنبالش هستید پیدا نمی‌کنید؟ با پشتیبانی Bitwarden در 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>ویژگی‌های بیشتر حساب Bitwarden خود را در برنامه وب کاوش کنید.</value>
</data>

View File

@ -416,10 +416,10 @@
<value>Sovelluslaajennus</value>
</data>
<data name="AutofillAccessibilityDescription" xml:space="preserve">
<value>Käytä Bitwardenin esteettömyyspalvelua kirjautumistietojesi automaattiseen täyttöön sovelluksissa ja verkossa.</value>
<value>Käytä Bitwardenin esteettömyyspalvelua kirjautumistietojen automaattiseen täyttöön sovelluksissa ja verkkosivuilla.</value>
</data>
<data name="AutofillService" xml:space="preserve">
<value>Automaattisen täytön palvelu</value>
<value>Automaattitäytön palvelu</value>
</data>
<data name="AvoidAmbiguousCharacters" xml:space="preserve">
<value>Vältä epäselviä merkkejä</value>
@ -434,7 +434,7 @@
<value>Käytä Bitwardenia kirjautumistietojesi automaattiseen täyttöön Safarissa ja muissa sovelluksissa.</value>
</data>
<data name="BitwardenAutofillService" xml:space="preserve">
<value>Bitwardenin automaattisen täytön palvelu</value>
<value>Bitwardenin automaattitäytön palvelu</value>
</data>
<data name="BitwardenAutofillAccessibilityServiceDescription" xml:space="preserve">
<value>Käytä Bitwardenin esteettömyyspalvelua kirjautumistietojen automaattiseen täyttöön.</value>
@ -560,7 +560,7 @@
<comment>Message shown when interacting with the server</comment>
</data>
<data name="LoginOrCreateNewAccount" xml:space="preserve">
<value>Kirjaudu tai luo uusi tili käyttääksesi salattua holviasi.</value>
<value>Käytä salattua holviasi kirjautumalla sisään tai tai luo uusi tili.</value>
</data>
<data name="Manage" xml:space="preserve">
<value>Hallinta</value>
@ -745,10 +745,10 @@
<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>Kun valitset syöttökentän ja näet Bitwardenin ponnahdusvalinnan, voit napauttaa sitä avataksesi automaattisen täytön palvelun.</value>
<value>Kun valitset syöttökentän ja näet Bitwardenin ponnahdusvalinnan, voit sitä napauttamalla avata automaattitäytön palvelun.</value>
</data>
<data name="BitwardenAutofillServiceNotificationContent" xml:space="preserve">
<value>Napauta tätä ilmoitusta täyttääksesi kohteen holvistasi automaattisesti.</value>
<value>Täytä kohde holvistasi automaattisesti napauttamalla tätä ilmoitusta.</value>
</data>
<data name="BitwardenAutofillServiceOpenAccessibilitySettings" xml:space="preserve">
<value>Avaa "Esteettömyys" -asetukset</value>
@ -775,16 +775,16 @@
<value>Tila</value>
</data>
<data name="BitwardenAutofillServiceAlert2" xml:space="preserve">
<value>Helpoin tapa lisätä holviisi uusia kirjautumistietoja on Bitwardenin automaattisen täytön palvelu. Asetuksista löydät lisätietoja palvelun käytöstä.</value>
<value>Holviin on helpoin lisätä uusia kirjautumistietoja Bitwardenin automaattitäytön palvelun avulla. Asetuksista löydät lisätietoja sen käytöstä.</value>
</data>
<data name="Autofill" xml:space="preserve">
<value>Automaattinen täyttö</value>
<value>Automaattitäyttö</value>
</data>
<data name="AutofillOrView" xml:space="preserve">
<value>Täytetäänkö automaatisesti vai näytetäänkö tiedot?</value>
<value>Haluatko täyttää kohteen automaattisesti vai tarkastella sitä?</value>
</data>
<data name="BitwardenAutofillServiceMatchConfirm" xml:space="preserve">
<value>Haluatko varmasti täyttää automaattisesti tällä kohteella? Se ei täsmää täysin osoitteen "{0}" kanssa.</value>
<value>Haluatko varmasti täyttää kohteen automaattisesti? Se ei vastaa osoitetta "{0}" täysin.</value>
</data>
<data name="MatchingItems" xml:space="preserve">
<value>Tunnistetut kohteet</value>
@ -878,17 +878,17 @@
<comment>The placeholder will show the file size of the attachment. Ex "25 MB"</comment>
</data>
<data name="AuthenticatorKey" xml:space="preserve">
<value>Todennusmenetelmän avain (TOTP)</value>
<value>Todennusavain (TOTP)</value>
</data>
<data name="VerificationCodeTotp" xml:space="preserve">
<value>Todennuskoodi (TOTP)</value>
<comment>Totp code label</comment>
</data>
<data name="AuthenticatorKeyAdded" xml:space="preserve">
<value>Todennusmenetelmän avain lisätty.</value>
<value>Todennusavain on lisätty.</value>
</data>
<data name="AuthenticatorKeyReadError" xml:space="preserve">
<value>Todennusavaimen luku epäonnistui.</value>
<value>Todennusavaimen lukeminen ei onnistu.</value>
</data>
<data name="PointYourCameraAtTheQRCode" xml:space="preserve">
<value>Kohdista kamera QR-koodiin.
@ -907,7 +907,7 @@ Koodi skannataan automaattisesti.</value>
<value>Kopioi TOTP-todennuskoodi</value>
</data>
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
<value>Jos kirjautumistieto sisältää kaksivaiheisen TOTP-todennusavaimen, kopioidaan todennuskoodi automaattisesti leikepöydälle automaattisen täytön yhteydessä.</value>
<value>Jos kirjautumistieto sisältää kaksivaiheisen todennuksen avaimen, kopioidaan TOTP-todennuskoodi leikepöydälle kohteen automaattisen täytön yhteydessä.</value>
</data>
<data name="CopyTotpAutomatically" xml:space="preserve">
<value>TOTP-koodin kopiointi</value>
@ -1143,7 +1143,7 @@ Koodi skannataan automaattisesti.</value>
<value>Kuvakepalvelimen URL</value>
</data>
<data name="AutofillWithBitwarden" xml:space="preserve">
<value>Täytä automaattisesti Bitwardenilla</value>
<value>Automaattitäytä Bitwardenilla</value>
</data>
<data name="VaultIsLocked" xml:space="preserve">
<value>Holvi on lukittu</value>
@ -1164,13 +1164,13 @@ Koodi skannataan automaattisesti.</value>
<value>Roskakorissa ei ole kohteita.</value>
</data>
<data name="AutofillAccessibilityService" xml:space="preserve">
<value>Automaattisen täytön esteettömyyspalvelu</value>
<value>Automaattitäytön esteettömyyspalvelu</value>
</data>
<data name="AutofillServiceDescription" xml:space="preserve">
<value>Bitwardenin automaattisen täytön palvelu käyttää Android Autofill Framework -rajapintaa kirjautumistietojen täyttöön laitteen sovelluksissa.</value>
<value>Bitwardenin automaattitäytön palvelu käyttää Android Autofill Framework -rajapintaa kirjautumistietojen täyttöön laitteen muissa sovelluksissa.</value>
</data>
<data name="BitwardenAutofillServiceDescription" xml:space="preserve">
<value>Käytä Bitwardenin automaattisen täytön palvelua kirjautumistietojen täyttöön sovelluksissa.</value>
<value>Käytä Bitwardenin automaattitäytön palvelua kirjautumistietojen täyttöön muissa sovelluksissa.</value>
</data>
<data name="BitwardenAutofillServiceOpenAutofillSettings" xml:space="preserve">
<value>Avaa "Automaattinen täyttö -palvelu" -asetukset</value>
@ -1256,7 +1256,7 @@ Koodi skannataan automaattisesti.</value>
<value>Kyllä, ja tallenna</value>
</data>
<data name="AutofillAndSave" xml:space="preserve">
<value>Täytä automaattisesti ja tallenna</value>
<value>Automaattitäytä ja tallenna</value>
</data>
<data name="Organization" xml:space="preserve">
<value>Organisaatio</value>
@ -1272,7 +1272,7 @@ Koodi skannataan automaattisesti.</value>
<value>Jatka pitämällä YubiKey NEO -todennuslaitetta laitteen taustaa vasten.</value>
</data>
<data name="BitwardenAutofillAccessibilityServiceDescription2" xml:space="preserve">
<value>Esteettömyyspalvelu voi olla hyödyllinen sellaisten sovellusten kanssa, jotka eivät tue tavallista automaattisen täytön palvelua.</value>
<value>Esteettömyyspalvelu voi olla hyödyllinen sellaisten sovellusten kanssa, jotka eivät tue tavallista automaattitäytön palvelua.</value>
</data>
<data name="DatePasswordUpdated" xml:space="preserve">
<value>Salasana vaihdettiin</value>
@ -1316,7 +1316,7 @@ Koodi skannataan automaattisesti.</value>
<value>5. Valitse "Bitwarden"</value>
</data>
<data name="PasswordAutofill" xml:space="preserve">
<value>Salasanojen automaattinen täyttö</value>
<value>Salasanojen automaattitäyttö</value>
</data>
<data name="BitwardenAutofillAlert2" xml:space="preserve">
<value>Helpoin tapa lisätä uusia kirjautumistietoja holviisi on Bitwardenin automaattisen täytön laajennus. Asetuksista löydät lisätietoja laajennuksen käytöstä.</value>
@ -1530,11 +1530,11 @@ Koodi skannataan automaattisesti.</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>URI:n tunnistuksen oletustapa</value>
<value>URI:n oletuarvoinen tunnistustapa</value>
<comment>Default URI match detection for auto-fill.</comment>
</data>
<data name="DefaultUriMatchDetectionDescription" xml:space="preserve">
<value>Valitse oletustapa, jolla kirjautumistietojen URI tunnistetaan kun suoritetaan toimintoja kuten automaattinen täyttö.</value>
<value>Valitse kirjautumistietojen URI:en oletusarvoinen tunnistustapa suoritettaessa automaattisen täytön kaltaisia toimintoja.</value>
</data>
<data name="Theme" xml:space="preserve">
<value>Teema</value>
@ -1574,7 +1574,7 @@ Koodi skannataan automaattisesti.</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>Täytä estetyt URI:t automaattisesti</value>
<value>Automaattitäytä estetyt URI:t</value>
</data>
<data name="AskToAddLogin" xml:space="preserve">
<value>Kysy lisätäänkö kirjautumistieto</value>
@ -1586,7 +1586,7 @@ Koodi skannataan automaattisesti.</value>
<value>Kun sovellus käynnistetään uudelleen</value>
</data>
<data name="AutofillServiceNotEnabled" xml:space="preserve">
<value>Automaattinen täyttö tekee Bitwarden-holvisi käytöstä sivustoilla ja muissa sovelluksissa helppoa. Näyttää siltä, ettei Bitwardenille ole määritetty automaattisen täytön palvelua. Määritys onnistuu "Asetukset" -ruudusta.</value>
<value>Automaattisen täytön avulla Bitwarden-holviasi on helppo käyttää sivustoilla ja muissa sovelluksissa. Näyttää siltä, ettei Bitwardenia ole määritetty automaattitäytön palveluksi. Määritys onnistuu "Asetukset"-ruudusta.</value>
</data>
<data name="ThemeAppliedOnRestart" xml:space="preserve">
<value>Teema vaihtuu kun sovellus käynnistetään uudelleen.</value>
@ -1620,7 +1620,7 @@ Koodi skannataan automaattisesti.</value>
<value>Avaa biometrialla</value>
</data>
<data name="AccessibilityOverlayPermissionAlert" xml:space="preserve">
<value>Bitwarden vaatii huomiota - Katso Bitwardenin asetuksista "Automaattisen täytön esteettömyyspalvelu"</value>
<value>Bitwarden vaatii huomiota - Katso Bitwardenin asetuksista "Automaattitäytön esteettömyyspalvelu"</value>
</data>
<data name="BitwardenAutofillServiceOverlayPermission" xml:space="preserve">
<value>3. Siirry Android-sovellusasetuksien Bitwarden-ruudulta "Näkyminen muiden päällä" -asetukseen (lisäasetusten alla) ja ota ominaisuus kytkinvalinnasta käyttöön.</value>
@ -1695,7 +1695,7 @@ Koodi skannataan automaattisesti.</value>
<value>Tiedostoliite tallennettiin</value>
</data>
<data name="AutofillTileAccessibilityRequired" xml:space="preserve">
<value>Ota "Automaattisen täytön esteettömyyspalvelu" käyttöön Bitwardenin asetuksista käyttääksesi automaattisen täytön pikavalintapalkkia.</value>
<value>Ota "Automaattitäytön esteettömyyspalvelu" käyttöön Bitwardenin asetuksista käyttääksesi automaattitäytön pikavalintapalkkia.</value>
</data>
<data name="AutofillTileUriNotFound" xml:space="preserve">
<value>Salasanakenttiä ei havaittu</value>
@ -1814,10 +1814,10 @@ Koodi skannataan automaattisesti.</value>
<value>Tietosuojakäytäntö</value>
</data>
<data name="AccessibilityDrawOverPermissionAlert" xml:space="preserve">
<value>Bitwarden edellyttää toimenpiteitä - Kytke "Näkyminen muiden päällä" -asetus käyttöön Bitwardenin asetusten kohdasta "Automaattisen täytön palvelut"</value>
<value>Bitwarden edellyttää toimenpiteitä - Kytke "Näkyminen muiden päällä" -asetus käyttöön Bitwardenin asetusten kohdasta "Automaattitäytön palvelut"</value>
</data>
<data name="AutofillServices" xml:space="preserve">
<value>Automaattisen täytön palvelut</value>
<value>Automaattitäytön palvelut</value>
</data>
<data name="InlineAutofill" xml:space="preserve">
<value>Tekstinsisäinen täyttö</value>
@ -1853,7 +1853,7 @@ Koodi skannataan automaattisesti.</value>
<value>Jos käytössä, esteettömyyspalvelu näyttää pikavalintapalkin laajentaakseen automaattisen täytön palvelun toiminnan kattamaan myös vanhemmat sovellukset, jotka eivät tue Android Autofill Framework -rajapintaa.</value>
</data>
<data name="PersonalOwnershipSubmitError" xml:space="preserve">
<value>Yrityskäytännön johdosta kohteiden tallennus henkilökohtaiseen holviin ei ole mahdollista. Muuta omistusasetus organisaatiolle ja valitse käytettävissä olevista kokoelmista.</value>
<value>Yrityskäytännön vuoksi kohteiden tallennus henkilökohtaiseen holviin ei ole mahdollista. Muuta omistusasetus organisaatiolle ja valitse käytettävissä olevista kokoelmista.</value>
</data>
<data name="PersonalOwnershipPolicyInEffect" xml:space="preserve">
<value>Organisaatiokäytäntö vaikuttaa omistajuusvalintoihisi.</value>
@ -2126,7 +2126,7 @@ Koodi skannataan automaattisesti.</value>
<value>Varmista, että oletusselaimesi sisältää WebAuthn-tuen ja yritä uudelleen.</value>
</data>
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
<value>Organisaatiolla on käytäntö, joka liittää tilisi automaattisesti salasanan palautusapuun. Liitos sallii organisaation ylläpitäjien vaihtaa pääsalasanasi.</value>
<value>Organisaatiolla on yrityskäytäntö, joka liittää tilisi automaattisesti salasanan palautusapuun. Liitos sallii organisaation ylläpitäjien vaihtaa pääsalasanasi.</value>
</data>
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
<value>Organisaatiokäytännöt ovat määrittäneet holvisi aikakatkaisun enimmäisajaksi {0} tunti(a) {1} minuutti(a).</value>
@ -2273,7 +2273,7 @@ Koodi skannataan automaattisesti.</value>
<value>Premium-tilaus vaaditaan</value>
</data>
<data name="CannotAddAuthenticatorKey" xml:space="preserve">
<value>Etkö voi lisätä todennusavainta? </value>
<value>Eikä todennusavaimen lisääminen onnistu?</value>
</data>
<data name="ScanQRCode" xml:space="preserve">
<value>Skannaa QR-koodi</value>
@ -2282,7 +2282,7 @@ Koodi skannataan automaattisesti.</value>
<value>Eikö QR-koodin skannaus onnistu? </value>
</data>
<data name="AuthenticatorKeyScanner" xml:space="preserve">
<value>Todentajan avain</value>
<value>Todennusavain</value>
</data>
<data name="EnterKeyManually" xml:space="preserve">
<value>Syötä se manuaalisesti</value>
@ -2426,7 +2426,7 @@ turvallisesti valitsemalla "Lisää TOTP"</value>
<comment>"Fastmail" is the product name and should not be translated.</comment>
</data>
<data name="ForwardEmail" xml:space="preserve">
<value>ForwardEmail</value>
<value>Forward Email</value>
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
</data>
<data name="APIAccessToken" xml:space="preserve">
@ -2696,7 +2696,7 @@ Haluatko vaihtaa tähän tiliin?</value>
<value>Holvin aikakatkaisutoiminnoksi vaihdettiin uloskirjaus</value>
</data>
<data name="BlockAutoFill" xml:space="preserve">
<value>Estä automaattinen täyttö</value>
<value>Estä automaattitäyttö</value>
</data>
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
<value>Automaattista täyttöä ei tarjota näille URI-osoitteille.</value>
@ -2821,6 +2821,9 @@ Haluatko vaihtaa tähän tiliin?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Siirrytäänkö asiakaspalveluun?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Jatketaanko tietosuojakäytäntöön?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Avataanko sovelluskauppa?</value>
</data>
@ -2840,6 +2843,9 @@ Haluatko vaihtaa tähän tiliin?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Etkö löydä etsimääsi? Tavoitat Bitwardenin asiakaspalvelun osoitteesta bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Tutustu tietosuojakäytäntöömme osoitteessa bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Tutustu Bitwarden-tilisi muihin omimaisuuksiin verkkosovelluksessa.</value>
</data>

View File

@ -2821,6 +2821,9 @@ Gusto mo bang pumunta sa account na ito?</value>
<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>
@ -2840,6 +2843,9 @@ Gusto mo bang pumunta sa account na ito?</value>
<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>

View File

@ -2821,6 +2821,9 @@ Voulez-vous basculer vers ce compte ?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Continuer vers le contact du support ?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Poursuivre vers la politique de confidentialité ?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Continuer vers la boutique des applications ?</value>
</data>
@ -2840,6 +2843,9 @@ Voulez-vous basculer vers ce compte ?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Vous ne trouvez pas ce que vous cherchez ? Contactez le support de Bitwarden sur 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>Explorez plus de fonctionnalités de votre compte Bitwarden sur l'application Web.</value>
</data>

View File

@ -2821,6 +2821,9 @@ Do you want to switch to this account?</value>
<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>
@ -2840,6 +2843,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2823,6 +2823,9 @@ Do you want to switch to this account?</value>
<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>
@ -2842,6 +2845,9 @@ Do you want to switch to this account?</value>
<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>

File diff suppressed because it is too large Load Diff

View File

@ -2748,106 +2748,112 @@
<value>Prijava na</value>
</data>
<data name="Vault" xml:space="preserve">
<value>Vault</value>
<value>Trezor</value>
</data>
<data name="Appearance" xml:space="preserve">
<value>Appearance</value>
<value>Izgled</value>
</data>
<data name="AccountSecurity" xml:space="preserve">
<value>Account security</value>
<value>Sigurnost računa</value>
</data>
<data name="BitwardenHelpCenter" xml:space="preserve">
<value>Bitwarden Help Center</value>
<value>Bitwarden centar za pomoć</value>
</data>
<data name="ContactBitwardenSupport" xml:space="preserve">
<value>Contact Bitwarden support</value>
<value>Kontaktiraj Bitwarden pomoć</value>
</data>
<data name="CopyAppInformation" xml:space="preserve">
<value>Copy app information</value>
<value>Kopiraj podake o aplikaciji</value>
</data>
<data name="SyncNow" xml:space="preserve">
<value>Sync now</value>
<value>Sinkroniziraj</value>
</data>
<data name="UnlockOptions" xml:space="preserve">
<value>Unlock options</value>
<value>Otključaj mogućnosti</value>
</data>
<data name="SessionTimeout" xml:space="preserve">
<value>Session timeout</value>
<value>Istek sesije</value>
</data>
<data name="SessionTimeoutAction" xml:space="preserve">
<value>Session timeout action</value>
<value>Radnja kod isteka sesije</value>
</data>
<data name="AccountFingerprintPhrase" xml:space="preserve">
<value>Account fingerprint phrase</value>
<value>Jedinstvena fraza računa</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>
<value>Jedan sat i jedna minuta</value>
</data>
<data name="OneHourAndXMinute" xml:space="preserve">
<value>One hour and {0} minutes</value>
<value>Jedan sat i {0} minuta</value>
</data>
<data name="XHoursAndOneMinute" xml:space="preserve">
<value>{0} hours and one minute</value>
<value>{0} sat/i i jedna minuta</value>
</data>
<data name="XHoursAndYMinutes" xml:space="preserve">
<value>{0} hours and {1} minutes</value>
<value>{0} sat/i {1} minuta</value>
</data>
<data name="XHours" xml:space="preserve">
<value>{0} hours</value>
<value>{0} sat/i</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>
<value>Android Autofill Framework se koristi za pomoć pri ispunjavanju prijava, platnih kartica i identifikacijskih podataka u drugim aplikacijama na tvojem uređaju.</value>
</data>
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
<value>Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay.</value>
<value>Koristi izravnu auto-ispunu ako ga tvoja odabrana tipkovnica podržava. U suprotnom, koristit će se zadana usluga auto-ispune.</value>
</data>
<data name="AdditionalOptions" xml:space="preserve">
<value>Additional options</value>
<value>Dodatne mogućnosti</value>
</data>
<data name="ContinueToWebApp" xml:space="preserve">
<value>Continue to web app?</value>
<value>Nastavi na web aplikaciju?</value>
</data>
<data name="ContinueToX" xml:space="preserve">
<value>Continue to {0}?</value>
<value>Nastavi na {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>
<value>Nastavi u centar za pomoć?</value>
</data>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Continue to contact support?</value>
<value>Kontaktiraj podršku?</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>
<value>Nastavi u trgovinu aplikacijama?</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>
<value>Učini svoj račun sigurnijim uključivanjem prijave dvofaktorskom autentifikacijom u Bitwarden web aplikaciji.</value>
</data>
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
<value>You can change your master password on the Bitwarden web app.</value>
<value>Svoju lozinku možeš promijeniti u Bitwarden web aplikaciji.</value>
</data>
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
<value>You can import data to your vault on {0}.</value>
<value>Svoje podatke možeš uvesti u trezor na {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>
<value>Za pomoć oko korištenja Bitwardena posjeti centar za pomoć.</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>
<value>Ne možeš naći što te zanima? Kontaktiraj Bitwarden podršku na 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>
<value>Pronađi viđe značajki svojeg Bitwarden računa u web aplikaciji.</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>
<value>Bitwarden omogućuje dijeljenje trezora s drugima pomoću organizacijskog računa. Za više informacija posjeti bitwarden.com.</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>
<value>Želiš preporučiti Bitwarden drugima? Posjeti app store i ostavi recenziju.</value>
</data>
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
<value>Choose the dark theme to use when your devices dark mode is in use</value>
<value>Odaberi tamnu temu kada se tvoj uređaj nalazi u tamnom načinu rada</value>
</data>
<data name="CreatedXY" xml:space="preserve">
<value>Stvoreno {0}, {1}</value>
@ -2860,12 +2866,12 @@
<value>Račun odjavljen.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>Moraš postaviti glavnu lozinku jer su dopuštenja tvoje organizacije ažurirana.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>Tvoja organizacija zahtijeva da postaviš glavnu lozinku.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Set up an unlock option to change your vault timeout action.</value>
<value>Za promjenu vremena isteka trezora, odredi način otključavanja.</value>
</data>
</root>

View File

@ -2819,6 +2819,9 @@ Szeretnénk átváltani erre a fiókra?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Tovább az ügyfélszolgálathoz?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Tovább az adatvédelmi szabályzathoz?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Tovább az alkalmazásboltba?</value>
</data>
@ -2838,6 +2841,9 @@ Szeretnénk átváltani erre a fiókra?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Nem találjuk, amit keresünk? Lépjünk kapcsolatba a Bitwarden ügyfélszolgálatával a bitwarden.com oldalon.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Az adatvédelmi szabályzat megtekintése a bitwarden.com webhelyen.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Fedezzük fel a Bitwarden-fiók további funkcióit a webalkalmazásban.</value>
</data>
@ -2861,10 +2867,10 @@ Szeretnénk átváltani erre a fiókra?</value>
<value>A fiók kijelentkezett.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>A szervezeti jogosultságok frissítésre kerültek, ezért be kell állítani egy mesterjelszót.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>A szervezet megköveteli egy mesterjelszó beállítását.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Állítsunk be egy feloldási módot a széf időkifutási műveletének módosításához.</value>

View File

@ -2820,6 +2820,9 @@ Do you want to switch to this account?</value>
<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>
@ -2839,6 +2842,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2695,7 +2695,7 @@ Vuoi passare a questo account?</value>
<value>Azione timeout cassaforte impostata su uscire</value>
</data>
<data name="BlockAutoFill" xml:space="preserve">
<value>Bocca riempimento automatico</value>
<value>Blocca riempimento automatico</value>
</data>
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
<value>Il riempimento automatico non sarà offerto per questi URI.</value>
@ -2820,6 +2820,9 @@ Vuoi passare a questo account?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Continua per contattare l'assistenza?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Continuare alla privacy policy?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Continuare sull'App Store?</value>
</data>
@ -2839,6 +2842,9 @@ Vuoi passare a questo account?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Non riesci a trovare quello che stai cercando? Contatta il supporto Bitwarden su bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Consulta la nostra privacy policy su bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Esplora altre funzionalità del tuo account Bitwarden sul sito web.</value>
</data>

View File

@ -425,7 +425,7 @@
<value>あいまいな文字を避ける</value>
</data>
<data name="BitwardenAppExtension" xml:space="preserve">
<value>Bitwarden App Extension</value>
<value>Bitwarden アプリ拡張機能</value>
</data>
<data name="BitwardenAppExtensionAlert2" xml:space="preserve">
<value>ログイン情報を保管庫に追加する一番簡単な方法はApp Extensionを使うことです。詳しくは「設定」画面に進んでください。</value>
@ -2820,6 +2820,9 @@
<data name="ContinueToContactSupport" xml:space="preserve">
<value>サポートに連絡しますか?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>プライバシーポリシーを確認しますか?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>アプリストアに進みますか?</value>
</data>
@ -2839,6 +2842,9 @@
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>お探しのものが見つかりませんか? bitwarden.com で Bitwarden のサポートにご連絡ください。</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>bitwarden.com でプライバシーポリシーをご覧ください。</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Bitwarden アカウントの機能をウェブアプリでご確認ください。</value>
</data>
@ -2862,10 +2868,10 @@
<value>アカウントからログアウトしました。</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>組織の権限が更新され、マスターパスワードの設定が必要になりました。</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>あなたの組織では、マスターパスワードの設定が義務付けられています。</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>保管庫のタイムアウト動作を変更するには、ロック解除方法を設定してください。</value>

View File

@ -2821,6 +2821,9 @@ Do you want to switch to this account?</value>
<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>
@ -2840,6 +2843,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2821,6 +2821,9 @@ Do you want to switch to this account?</value>
<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>
@ -2840,6 +2843,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2820,6 +2820,9 @@ Do you want to switch to this account?</value>
<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>
@ -2839,6 +2842,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2821,6 +2821,9 @@ Ar norite pereiti prie šios paskyros?</value>
<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>
@ -2840,6 +2843,9 @@ Ar norite pereiti prie šios paskyros?</value>
<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>

View File

@ -2821,6 +2821,9 @@ Vai pārslēgties uz šo kontu?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Pāriet uz sazināšanos ar atbalstu?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Pāriet uz privātuma nosacījumiem?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Pāriet uz lietotņu veikalu?</value>
</data>
@ -2840,6 +2843,9 @@ Vai pārslēgties uz šo kontu?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Meklējamais nav atrodams? Ir iespēja sazināties ar Bitwarden atbalstu bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Mūsu privātuma nosacījumi ir pārskatāmi bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Vairāk sava Bitwarden konta iespēju var izpētīt tīmekļa vietnē.</value>
</data>
@ -2863,10 +2869,10 @@ Vai pārslēgties uz šo kontu?</value>
<value>Konts tika izrakstīts.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>Apvienības atļaujas tika atjauninātas, un tās pieprasa iestatīt galveno paroli.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>Apvienība pieprasa iestatīt galveno paroli.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Jāuzstāda atslēgšanas iespēja, lai mainītu glabātavas noildzes darbību.</value>

View File

@ -2820,6 +2820,9 @@ Do you want to switch to this account?</value>
<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>
@ -2839,6 +2842,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2821,6 +2821,9 @@ Do you want to switch to this account?</value>
<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>
@ -2840,6 +2843,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2821,6 +2821,9 @@ Do you want to switch to this account?</value>
<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>
@ -2840,6 +2843,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2821,6 +2821,9 @@ Vil du bytte til denne kontoen?</value>
<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>
@ -2840,6 +2843,9 @@ Vil du bytte til denne kontoen?</value>
<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>

View File

@ -2821,6 +2821,9 @@ Do you want to switch to this account?</value>
<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>
@ -2840,6 +2843,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2820,6 +2820,9 @@ Wilt u naar dit account wisselen?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Doorgaan met het contact opnemen met support?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Doorgaan naar privacybeleid?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Doorgaan naar de app store?</value>
</data>
@ -2839,6 +2842,9 @@ Wilt u naar dit account wisselen?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Kan je niet vinden wat je zoekt? Neem contact op met Bitwarden-ondersteuning via bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Bekijk ons privacybeleid op bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Ontdek meer functies van je Bitwarden-account in de webapp.</value>
</data>

View File

@ -2821,6 +2821,9 @@ Do you want to switch to this account?</value>
<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>
@ -2840,6 +2843,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2821,6 +2821,9 @@ Do you want to switch to this account?</value>
<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>
@ -2840,6 +2843,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2820,6 +2820,9 @@ Czy chcesz przełączyć się na to konto?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Kontynuować kontakt z pomocą techniczną?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Kontynuować do polityki prywatności?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Kontynuować do sklepu aplikacji?</value>
</data>
@ -2839,6 +2842,9 @@ Czy chcesz przełączyć się na to konto?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Nie możesz znaleźć tego, czego szukasz? Skontaktuj się z pomocą na bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Sprawdź naszą politykę prywatności na bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Odkryj więcej funkcji swojego konta Bitwarden w aplikacji internetowej.</value>
</data>

View File

@ -2821,6 +2821,9 @@ Você deseja mudar para esta conta?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Continuar e contatar o suporte?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Continue to privacy policy?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Continuar para a loja de apps?</value>
</data>
@ -2840,6 +2843,9 @@ Você deseja mudar para esta conta?</value>
<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>

View File

@ -885,7 +885,7 @@
<comment>Totp code label</comment>
</data>
<data name="AuthenticatorKeyAdded" xml:space="preserve">
<value>Chave de autenticador adicionada.</value>
<value>Chave de autenticação adicionada.</value>
</data>
<data name="AuthenticatorKeyReadError" xml:space="preserve">
<value>Não é possível ler a chave de autenticação.</value>
@ -2819,6 +2819,9 @@ Deseja mudar para esta conta?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Continuar a contactar o apoio ao cliente?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Continuar para a política de privacidade?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Continuar para a loja de aplicações?</value>
</data>
@ -2838,6 +2841,9 @@ Deseja mudar para esta conta?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Não consegue encontrar o que está a procurar? Entre em contacto com o suporte da Bitwarden em bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Consulte a nossa política de privacidade em bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Explore mais funcionalidades da sua conta Bitwarden na aplicação web.</value>
</data>

View File

@ -2821,6 +2821,9 @@ Do you want to switch to this account?</value>
<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>
@ -2840,6 +2843,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2820,6 +2820,9 @@ Doriți să comutați la acest cont?</value>
<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>
@ -2839,6 +2842,9 @@ Doriți să comutați la acest cont?</value>
<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>

View File

@ -885,10 +885,10 @@
<comment>Totp code label</comment>
</data>
<data name="AuthenticatorKeyAdded" xml:space="preserve">
<value>Ключ проверки подлинности добавлен.</value>
<value>Ключ аутентификатора добавлен.</value>
</data>
<data name="AuthenticatorKeyReadError" xml:space="preserve">
<value>Не удается прочитать ключ проверки подлинности.</value>
<value>Не удается прочитать ключ аутентификатора.</value>
</data>
<data name="PointYourCameraAtTheQRCode" xml:space="preserve">
<value>Наведите камеру на QR-код.
@ -2272,7 +2272,7 @@
<value>Требуется подписка Премиум</value>
</data>
<data name="CannotAddAuthenticatorKey" xml:space="preserve">
<value>Не удается добавить ключ проверки подлинности? </value>
<value>Не удается добавить ключ аутентификатора? </value>
</data>
<data name="ScanQRCode" xml:space="preserve">
<value>Сканировать QR-код</value>
@ -2822,6 +2822,9 @@
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Обратиться в службу поддержки?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Перейти к политике конфиденциальности?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Перейти в магазин приложений?</value>
</data>
@ -2841,6 +2844,9 @@
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Не можете найти то, что ищете? Обратитесь в службу поддержки Bitwarden на сайте bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Ознакомьтесь с нашей политикой конфиденциальности на сайте bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Изучите дополнительные возможности вашего аккаунта Bitwarden в веб-приложении.</value>
</data>
@ -2864,10 +2870,10 @@
<value>Аккаунт не авторизован.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>Права доступа организации были обновлены, требуется установить мастер-пароль.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>Необходимо установить мастер-пароль для организации.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Настройте опцию разблокировки для изменения действия по тайм-ауту хранилища.</value>

View File

@ -2821,6 +2821,9 @@ Do you want to switch to this account?</value>
<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>
@ -2840,6 +2843,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2820,6 +2820,9 @@ Chcete prepnúť na toto konto?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Pokračovať v kontaktovaní podpory?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Pokračovať na zásady ochrany osobných údajov?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Pokračovať v obchode s aplikáciami?</value>
</data>
@ -2839,6 +2842,9 @@ Chcete prepnúť na toto konto?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Nemôžete nájsť, čo hľadáte? Obráťte sa na podporu Bitwarden na stránke bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Pozrite si naše zásady ochrany osobných údajov na bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Preskúmajte ďalšie funkcie svojho účtu na Bitwarden vo webovej aplikácii.</value>
</data>

View File

@ -2820,6 +2820,9 @@ Do you want to switch to this account?</value>
<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>
@ -2839,6 +2842,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2670,7 +2670,7 @@
<value>Помоћ поновно тражење главне лозинке</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>
<value>Откључавање можда неће успети због недовољне меморије. Умањите подешавање KDF меморије или подесите биометрију за решење.</value>
</data>
<data name="InvalidAPIKey" xml:space="preserve">
<value>Неисправан API кључ</value>
@ -2749,7 +2749,7 @@
<value>Пријавите се са уређајем</value>
</data>
<data name="LoggingInOn" xml:space="preserve">
<value>Logging in on</value>
<value>Пријављено на</value>
</data>
<data name="Vault" xml:space="preserve">
<value>Сеф</value>
@ -2822,6 +2822,9 @@
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Настави на подршку?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Желите ли да наставите са политиком приватности?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Настави на радњу апликације?</value>
</data>
@ -2841,6 +2844,9 @@
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Не можете да пронађете оно што тражите? Контактирајте Bitwarden подршку на bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Погледајте нашу политику приватности на bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Истражите више својстава на Bitwarden налогу на веб апликаији.</value>
</data>
@ -2864,10 +2870,10 @@
<value>Налог је одјављен.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>Дозволе за вашу организацију су ажуриране, што захтева да поставите главну лозинку.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>Ваша организација захтева да поставите главну лозинку.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Подесите опцију откључавања да бисте променили радњу временског ограничења сефа.</value>

View File

@ -360,7 +360,7 @@
<comment>The title for the tools page.</comment>
</data>
<data name="URI" xml:space="preserve">
<value>URI (länk)</value>
<value>URI</value>
<comment>Label for a uri/url.</comment>
</data>
<data name="UseFingerprintToUnlock" xml:space="preserve">
@ -862,7 +862,7 @@ Vänligen använd en enhet som stöds och/eller lägg till fler metoder som har
<value>Lägg till ny bilaga</value>
</data>
<data name="Attachments" xml:space="preserve">
<value>Bifogade filer</value>
<value>Bilagor</value>
</data>
<data name="UnableToDownloadFile" xml:space="preserve">
<value>Kunde ej hämta fil.</value>
@ -1742,7 +1742,7 @@ Skanningen sker automatiskt.</value>
<comment>Confirmation alert message when soft-deleting a cipher.</comment>
</data>
<data name="AccountBiometricInvalidated" xml:space="preserve">
<value>Biometrisk upplåsning för automatisk ifyllnad är inaktiverad i väntan på bekräftelse av huvudlösenordet.</value>
<value>Biometrisk upplåsning har inaktiverats för det här kontot tills huvudlösenordet har angetts.</value>
</data>
<data name="AccountBiometricInvalidatedExtension" xml:space="preserve">
<value>Den biometriska upplåsningen av automatisk ifyllning för detta konto är inaktiverat i väntan på verifiering av huvudlösenordet.</value>
@ -2613,10 +2613,10 @@ Vill du byta till detta konto?</value>
<value>Lokalt installerad</value>
</data>
<data name="DataRegion" xml:space="preserve">
<value>Dataområde</value>
<value>Dataregion</value>
</data>
<data name="Region" xml:space="preserve">
<value>Område</value>
<value>Region</value>
</data>
<data name="UpdateWeakMasterPasswordWarning" xml:space="preserve">
<value>Ditt huvudlösenord följer inte ett eller flera av din organisations regler. För att komma åt ditt valv så måste du ändra ditt huvudlösenord nu. Om du gör det kommer du att loggas du ut ur din nuvarande session så du måste logga in på nytt. Aktiva sessioner på andra enheter kommer fortsatt vara aktiva i upp till en timme.</value>
@ -2631,7 +2631,7 @@ Vill du byta till detta konto?</value>
<value>Godkänn med min andra enhet</value>
</data>
<data name="RequestAdminApproval" xml:space="preserve">
<value>Request admin approval</value>
<value>Be om godkännande från administratör</value>
</data>
<data name="ApproveWithMasterPassword" xml:space="preserve">
<value>Godkänn med huvudlösenord</value>
@ -2643,34 +2643,34 @@ Vill du byta till detta konto?</value>
<value>Kom ihåg denna enhet</value>
</data>
<data name="Passkey" xml:space="preserve">
<value>Passkey</value>
<value>Nyckel</value>
</data>
<data name="Passkeys" xml:space="preserve">
<value>Passkeys</value>
<value>Nycklar</value>
</data>
<data name="Application" xml:space="preserve">
<value>Application</value>
<value>Applikation</value>
</data>
<data name="YouCannotEditPasskeyApplicationBecauseItWouldInvalidateThePasskey" xml:space="preserve">
<value>You cannot edit passkey application because it would invalidate the passkey</value>
<value>Du kan inte ändra nyckelns applikation eftersom det skulle göra nyckeln ogiltig</value>
</data>
<data name="PasskeyWillNotBeCopied" xml:space="preserve">
<value>Passkey will not be copied</value>
<value>Nyckel kommer inte kopieras</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>
<value>Nyckeln kommer inte att kopieras till det klonade objektet. Vill du klona det här objektet?</value>
</data>
<data name="CopyApplication" xml:space="preserve">
<value>Copy application</value>
<value>Kopiera applikation</value>
</data>
<data name="AvailableForTwoStepLogin" xml:space="preserve">
<value>Available for two-step login</value>
<value>Tillgänglig för tvåstegsverifiering</value>
</data>
<data name="MasterPasswordRePromptHelp" xml:space="preserve">
<value>Återupprepa huvudlösenord hjälp</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>
<value>Upplåsning kan misslyckas på grund av otillräckligt minne. Minska dina KDF-minnesinställningar för att lösa detta.</value>
</data>
<data name="InvalidAPIKey" xml:space="preserve">
<value>Ogiltig API-nyckel</value>
@ -2679,10 +2679,10 @@ Vill du byta till detta konto?</value>
<value>Ogiltig API-token</value>
</data>
<data name="AdminApprovalRequested" xml:space="preserve">
<value>Admin approval requested</value>
<value>Godkännande från administratör har begärts</value>
</data>
<data name="YourRequestHasBeenSentToYourAdmin" xml:space="preserve">
<value>Your request has been sent to your admin.</value>
<value>Din begäran har skickats till din administratör.</value>
</data>
<data name="YouWillBeNotifiedOnceApproved" xml:space="preserve">
<value>Du kommer att meddelas vid godkännande. </value>
@ -2694,10 +2694,10 @@ Vill du byta till detta konto?</value>
<value>Loggar in som {0}</value>
</data>
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
<value>Vault timeout action changed to log out</value>
<value>Tidsgränsåtgärd har ändrats till utloggning</value>
</data>
<data name="BlockAutoFill" xml:space="preserve">
<value>Block auto-fill</value>
<value>Blockera autofyll</value>
</data>
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
<value>Autofyll kommer inte att erbjudas för dessa URI:er.</value>
@ -2740,10 +2740,10 @@ Vill du byta till detta konto?</value>
<value>Det går inte att redigera flera URI:er samtidigt</value>
</data>
<data name="LoginApproved" xml:space="preserve">
<value>Login approved</value>
<value>Inloggning godkänd</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>
<value>"Logga in med enhet" måste ställas in i inställningarna i Bitwardens app. Behöver du ett annat alternativ?</value>
</data>
<data name="LogInWithDevice" xml:space="preserve">
<value>Logga in med enhet</value>
@ -2758,31 +2758,31 @@ Vill du byta till detta konto?</value>
<value>Utseende</value>
</data>
<data name="AccountSecurity" xml:space="preserve">
<value>Account security</value>
<value>Kontosäkerhet</value>
</data>
<data name="BitwardenHelpCenter" xml:space="preserve">
<value>Bitwarden Hjälpcenter</value>
</data>
<data name="ContactBitwardenSupport" xml:space="preserve">
<value>Contact Bitwarden support</value>
<value>Kontakta Bitwarden support</value>
</data>
<data name="CopyAppInformation" xml:space="preserve">
<value>Copy app information</value>
<value>Kopiera appinformation</value>
</data>
<data name="SyncNow" xml:space="preserve">
<value>Synkronisera nu</value>
</data>
<data name="UnlockOptions" xml:space="preserve">
<value>Unlock options</value>
<value>Upplåsning</value>
</data>
<data name="SessionTimeout" xml:space="preserve">
<value>Session timeout</value>
<value>Tidsgräns för session</value>
</data>
<data name="SessionTimeoutAction" xml:space="preserve">
<value>Session timeout action</value>
<value>Åtgärd när tidsgränsen uppnås</value>
</data>
<data name="AccountFingerprintPhrase" xml:space="preserve">
<value>Account fingerprint phrase</value>
<value>Kontots fingeravtrycksfras</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">
@ -2801,13 +2801,13 @@ Vill du byta till detta konto?</value>
<value>{0} timmar</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>
<value>Androids autofyll-ramverk används för att fylla i inloggningsuppgifter i appar på din enhet.</value>
</data>
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
<value>Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay.</value>
<value>Använd autofyll inbyggt i tangentbordet om ditt tangentbord stöder det. Annars, använd popup-fönstret.</value>
</data>
<data name="AdditionalOptions" xml:space="preserve">
<value>Additional options</value>
<value>Ytterligare alternativ</value>
</data>
<data name="ContinueToWebApp" xml:space="preserve">
<value>Fortsätt till webbapp?</value>
@ -2820,56 +2820,62 @@ Vill du byta till detta konto?</value>
<value>Fortsätt till Hjälpcenter?</value>
</data>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Continue to contact support?</value>
<value>Fortsätt att kontakta supporten?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Fortsätt till integritetspolicy?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Continue to app store?</value>
<value>Fortsätt till appbutiken?</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>
<value>Gör ditt konto säkrare genom att konfigurera tvåstegsverifiering i Bitwardens webbapp.</value>
</data>
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
<value>You can change your master password on the Bitwarden web app.</value>
<value>Du kan ändra ditt huvudlösenord i Bitwardens webbapp.</value>
</data>
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
<value>You can import data to your vault on {0}.</value>
<value>Du kan importera data till ditt valv på {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>
<value>Läs mer om hur du använder Bitwarden i hjälpcentret.</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>
<value>Hittar du inte det du söker? Hör av dig till Bitwardens support på bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Kolla in vår integritetspolicy på bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Explore more features of your Bitwarden account on the web app.</value>
<value>Utforska fler funktioner i ditt Bitwarden-konto i webbappen.</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>
<value>Bitwarden låter dig dela objekt i ditt valv med andra med hjälp av en organisation. Läs mer på webbplatsen bitwarden.com.</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>
<value>Hjälp andra att ta reda på om Bitwarden är rätt för dem. Besök appbutiken och lämna en recension nu.</value>
</data>
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
<value>Choose the dark theme to use when your devices dark mode is in use</value>
<value>Välj vilket tema som ska användas när enheten är i mörkt läge</value>
</data>
<data name="CreatedXY" xml:space="preserve">
<value>Created {0}, {1}</value>
<value>Skapad {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>För många försök</value>
</data>
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
<value>Account logged out.</value>
<value>Kontot har loggats ut.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>Din organisations behörigheter uppdaterades, vilket kräver att du anger ett huvudlösenord.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>Din organisation kräver att du anger ett huvudlösenord.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Set up an unlock option to change your vault timeout action.</value>
<value>Ställ in ett upplåsningsalternativ för att ändra vad som händer när tidsgränsen uppnås.</value>
</data>
</root>

View File

@ -858,7 +858,7 @@
<comment>"YubiKey" is the product name and should not be translated.</comment>
</data>
<data name="AddNewAttachment" xml:space="preserve">
<value>புதிய இணைப்பை சேர்</value>
<value>புதிய இணைப்பைச் சேர்</value>
</data>
<data name="Attachments" xml:space="preserve">
<value>இணைப்புகள்</value>
@ -2331,7 +2331,7 @@
<value>நேரம்</value>
</data>
<data name="Near" xml:space="preserve">
<value>Near</value>
<value>இதற்கருகில்</value>
</data>
<data name="ConfirmLogIn" xml:space="preserve">
<value>உள்நுழைவை உறுதிபடுத்து</value>
@ -2772,7 +2772,7 @@
<value>இப்போது ஒத்திசை</value>
</data>
<data name="UnlockOptions" xml:space="preserve">
<value>Unlock options</value>
<value>பூட்டவிழ்ப்பு விருப்பங்கள்</value>
</data>
<data name="SessionTimeout" xml:space="preserve">
<value>அமர்வு நேரமுடிவு</value>
@ -2785,16 +2785,16 @@
<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>
<value>ஒரு மணிநேரம் மற்றும் ஒரு நிமிடம்</value>
</data>
<data name="OneHourAndXMinute" xml:space="preserve">
<value>One hour and {0} minutes</value>
<value>ஒரு மணிநேரம் மற்றும் {0} நிமிடங்கள்</value>
</data>
<data name="XHoursAndOneMinute" xml:space="preserve">
<value>{0} hours and one minute</value>
<value>{0} மணிநேரம் மற்றும் ஒரு நிமிடம்</value>
</data>
<data name="XHoursAndYMinutes" xml:space="preserve">
<value>{0} hours and {1} minutes</value>
<value>{0} மணிநேரம் மற்றும் {1} நிமிடங்கள்</value>
</data>
<data name="XHours" xml:space="preserve">
<value>{0} மணிநேரம்</value>
@ -2809,29 +2809,32 @@
<value>கூடுதல் தேர்வுகள்</value>
</data>
<data name="ContinueToWebApp" xml:space="preserve">
<value>Continue to web app?</value>
<value>வலைச்செயலிக்குத் தொடரவா?</value>
</data>
<data name="ContinueToX" xml:space="preserve">
<value>Continue to {0}?</value>
<value>{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>
<value>உதவி மையத்திற்குத் தொடரவா?</value>
</data>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Continue to contact support?</value>
<value>ஆதரவைத் தொடர்புகொள்ளத் தொடரவா?</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>
<value>Bitwarden வலைச்செயலியில் இரு-படி உள்நுழைவை அமைத்து உமது கணக்கின் பாதுகாப்பை அதிகரி.</value>
</data>
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
<value>You can change your master password on the Bitwarden web app.</value>
<value>Bitwarden வலைச்செயலியில் உமது பிரதான கடவுச்சொல்லை மாற்றலாம்.</value>
</data>
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
<value>You can import data to your vault on {0}.</value>
<value>{0}-இல் உமது பெட்டகத்திற்குத் தரவை இறக்குமதி செய்யலாம்.</value>
<comment>The parameter is an URL, like vault.bitwarden.com.</comment>
</data>
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
@ -2840,6 +2843,9 @@
<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>

View File

@ -2821,6 +2821,9 @@ Do you want to switch to this account?</value>
<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>
@ -2840,6 +2843,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2828,6 +2828,9 @@ Do you want to switch to this account?</value>
<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>
@ -2847,6 +2850,9 @@ Do you want to switch to this account?</value>
<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>

View File

@ -2819,6 +2819,9 @@ Bu hesaba geçmek ister misiniz?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Destek ekibiyle iletişim kurmak ister misiniz?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Continue to privacy policy?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>App Store'a gitmek ister misiniz?</value>
</data>
@ -2838,6 +2841,9 @@ Bu hesaba geçmek ister misiniz?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Aradığınızı bulamadınız mı? bitwarden.com sitesinden Bitwarden destek ekibine ulaşabilirsiniz.</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>Web uygulamasında Bitwarden hesabınızın diğer özelliklerini keşfedin.</value>
</data>

View File

@ -553,7 +553,7 @@
<value>Дія після часу очікування сховища</value>
</data>
<data name="VaultTimeoutLogOutConfirmation" xml:space="preserve">
<value>Вихід скасує всі права доступу до вашого сховища і вимагатиме авторизації після завершення часу очікування. Ви дійсно хочете використати цей параметр?</value>
<value>Вихід скасує всі права доступу до вашого сховища і вимагатиме автентифікацію після завершення часу очікування. Ви дійсно хочете використати цей параметр?</value>
</data>
<data name="LoggingIn" xml:space="preserve">
<value>Вхід...</value>
@ -721,7 +721,7 @@
<value>Веб сховище Bitwarden</value>
</data>
<data name="Lost2FAApp" xml:space="preserve">
<value>Втратили доступ до програми перевірки?</value>
<value>Втратили доступ до програми автентифікації?</value>
</data>
<data name="Items" xml:space="preserve">
<value>Записи</value>
@ -806,11 +806,11 @@
<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>
<value>Програма автентифікації</value>
<comment>For 2FA</comment>
</data>
<data name="EnterVerificationCodeApp" xml:space="preserve">
<value>Введіть 6-значний код підтвердження з програми авторизації.</value>
<value>Введіть 6-значний код підтвердження з програми автентифікації.</value>
<comment>For 2FA</comment>
</data>
<data name="EnterVerificationCodeEmail" xml:space="preserve">
@ -822,7 +822,7 @@
<comment>For 2FA whenever there are no available providers on this device.</comment>
</data>
<data name="NoTwoStepAvailable" xml:space="preserve">
<value>Цей обліковий запис має увімкнену двоетапну перевірку, однак, жоден із налаштованих провайдерів не підтримується на цьому пристрої. Будь ласка, скористайтеся підтримуваним пристроєм або додайте інших провайдерів, які мають кращу підтримку різних пристроїв (наприклад, програму авторизації).</value>
<value>Цей обліковий запис має увімкнену двоетапну перевірку, однак жоден із налаштованих провайдерів не підтримується на цьому пристрої. Будь ласка, скористайтеся підтримуваним пристроєм або додайте інших провайдерів, які мають кращу підтримку різних пристроїв (наприклад, програму автентифікації).</value>
</data>
<data name="RecoveryCodeTitle" xml:space="preserve">
<value>Код відновлення</value>
@ -878,17 +878,17 @@
<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>
<value>Ключ автентифікації (TOTP)</value>
</data>
<data name="VerificationCodeTotp" xml:space="preserve">
<value>Код підтвердження (TOTP)</value>
<comment>Totp code label</comment>
</data>
<data name="AuthenticatorKeyAdded" xml:space="preserve">
<value>Ключ авторизації додано.</value>
<value>Ключ автентифікації додано.</value>
</data>
<data name="AuthenticatorKeyReadError" xml:space="preserve">
<value>Не вдається прочитати ключ авторизації.</value>
<value>Не вдається прочитати ключ автентифікації.</value>
</data>
<data name="PointYourCameraAtTheQRCode" xml:space="preserve">
<value>Наведіть свою камеру на QR-код.
@ -907,7 +907,7 @@
<value>Копіювати TOTP</value>
</data>
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
<value>Якщо запис має ключ авторизації, копіювати код підтвердження TOTP до буфера обміну під час автозаповнення.</value>
<value>Якщо запис має ключ автентифікації, копіювати код підтвердження TOTP до буфера обміну під час автозаповнення.</value>
</data>
<data name="CopyTotpAutomatically" xml:space="preserve">
<value>Автоматично копіювати коди TOTP</value>
@ -1176,17 +1176,17 @@
<value>Відкрити налаштування автозаповнення</value>
</data>
<data name="FaceID" xml:space="preserve">
<value>Розпізнавання обличчя</value>
<value>Face ID</value>
<comment>What Apple calls their facial recognition reader.</comment>
</data>
<data name="FaceIDDirection" xml:space="preserve">
<value>Використовувати розпізнавання обличчя для підтвердження.</value>
<value>Використовувати Face ID для підтвердження.</value>
</data>
<data name="UseFaceIDToUnlock" xml:space="preserve">
<value>Розблокування з Face ID</value>
</data>
<data name="VerifyFaceID" xml:space="preserve">
<value>Підтвердження розпізнавання обличчя</value>
<value>Підтвердження Face ID</value>
</data>
<data name="WindowsHello" xml:space="preserve">
<value>Windows Hello</value>
@ -2110,13 +2110,13 @@
<value>FIDO2 WebAuthn</value>
</data>
<data name="Fido2Instruction" xml:space="preserve">
<value>Щоб продовжити, приготуйте свій увімкнений ключ безпеки FIDO2 WebAuthn, потім дотримуйтесь настанов після натискання "Авторизація WebAuthn" на наступному екрані.</value>
<value>Щоб продовжити, приготуйте свій ключ безпеки FIDO2 WebAuthn, потім дотримуйтесь настанов після натискання "Автентифікація WebAuthn" на наступному екрані.</value>
</data>
<data name="Fido2Desc" xml:space="preserve">
<value>Авторизація з використанням FIDO2 WebAuthn. Ви можете авторизуватися за допомогою зовнішнього ключа безпеки.</value>
<value>Автентифікація з використанням FIDO2 WebAuthn. Ви можете пройти автентифікацію за допомогою зовнішнього ключа безпеки.</value>
</data>
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
<value>Авторизація WebAuthn</value>
<value>Автентифікація WebAuthn</value>
</data>
<data name="Fido2ReturnToApp" xml:space="preserve">
<value>Повернутися до програми</value>
@ -2272,7 +2272,7 @@
<value>Необхідна передплата преміум</value>
</data>
<data name="CannotAddAuthenticatorKey" xml:space="preserve">
<value>Не вдається додати ключ авторизації? </value>
<value>Не вдається додати ключ автентифікації? </value>
</data>
<data name="ScanQRCode" xml:space="preserve">
<value>Сканувати QR-код</value>
@ -2281,7 +2281,7 @@
<value>Не вдається сканувати QR-код? </value>
</data>
<data name="AuthenticatorKeyScanner" xml:space="preserve">
<value>Ключ авторизації</value>
<value>Ключ автентифікації</value>
</data>
<data name="EnterKeyManually" xml:space="preserve">
<value>Введіть ключ вручну</value>
@ -2354,7 +2354,7 @@
<value>Схвалювати запити на вхід</value>
</data>
<data name="UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices" xml:space="preserve">
<value>Використовувати цей пристрій для схвалення запитів на вхід, виконаних з інших пристроїв</value>
<value>Схвалювати запити на вхід, виконані з інших пристроїв</value>
</data>
<data name="AllowNotifications" xml:space="preserve">
<value>Дозволити сповіщення</value>
@ -2820,6 +2820,9 @@
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Перейти до зв'язку зі службою підтримки?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Перейти до політики приватності?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Продовжити в App Store?</value>
</data>
@ -2839,6 +2842,9 @@
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Не вдалося знайти те, що шукаєте? Зверніться до служби підтримки на bitwarden.com.</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>Ознайомтеся з нашою політикою приватності на bitwarden.com.</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>Ознайомтеся з іншими функціями вашого облікового запису Bitwarden у вебпрограмі.</value>
</data>
@ -2862,10 +2868,10 @@
<value>Ви вийшли з облікового запису.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>Оновлено дозволи вашої організації вимагається встановлення головного пароля.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>Ваша організація вимагає, щоб ви встановили головний пароль.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Налаштуйте спосіб розблокування, щоб змінити час очікування сховища.</value>

View File

@ -2821,6 +2821,9 @@ Bạn có muốn chuyển sang tài khoản này không?</value>
<data name="ContinueToContactSupport" xml:space="preserve">
<value>Vẫn liên hệ hỗ trợ?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Continue to privacy policy?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>Vẫn tiếp tục đến cửa hàng ứng dụng?</value>
</data>
@ -2840,6 +2843,9 @@ Bạn có muốn chuyển sang tài khoản này không?</value>
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>Không tìm thấy? Hãy liên hệ với bộ phận hỗ trợ của Bitwarden trên bitwarden.com.</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>Khám phá thêm các tính năng của tài khoản Bitwarden của bạn trên bản web.</value>
</data>
@ -2863,10 +2869,10 @@ Bạn có muốn chuyển sang tài khoản này không?</value>
<value>Đã đăng xuất tài khoản.</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>Quyền tổ chức của bạn đã được cập nhật, yêu cầu bạn đặt mật khẩu chính.</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>Tổ chức của bạn yêu cầu bạn đặt mật khẩu chính.</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Thiết lập khóa khi hết thời gian chờ kho.</value>

View File

@ -273,13 +273,13 @@
<comment>The log out button text (verb).</comment>
</data>
<data name="LogoutConfirmation" xml:space="preserve">
<value>确定要注销吗?</value>
<value>确定要注销吗?</value>
</data>
<data name="RemoveAccount" xml:space="preserve">
<value>移除账户</value>
</data>
<data name="RemoveAccountConfirmation" xml:space="preserve">
<value>确定要移除此账户吗?</value>
<value>确定要移除此账户吗?</value>
</data>
<data name="AccountAlreadyAdded" xml:space="preserve">
<value>账户已添加</value>
@ -638,7 +638,7 @@
<value>我们已经为您发送了包含主密码提示的邮件。</value>
</data>
<data name="PasswordOverrideAlert" xml:space="preserve">
<value>确定要覆盖当前密码吗?</value>
<value>确定要覆盖当前密码吗?</value>
</data>
<data name="PushNotificationAlert" xml:space="preserve">
<value>Bitwarden 使用推送通知来自动同步您的密码库。为了获得最佳体验,接下来询问是否开启通知时,请选择「允许」。</value>
@ -784,7 +784,7 @@
<value>您想自动填充还是查看此项目?</value>
</data>
<data name="BitwardenAutofillServiceMatchConfirm" xml:space="preserve">
<value>确定要自动填充吗?它与「{0}」并不完全匹配。</value>
<value>确定要自动填充此项目吗?它与「{0}」并不完全匹配。</value>
</data>
<data name="MatchingItems" xml:space="preserve">
<value>匹配项目</value>
@ -874,7 +874,7 @@
<comment>Message shown when downloading a file</comment>
</data>
<data name="AttachmentLargeWarning" xml:space="preserve">
<value>此附件大小是 {0} 。您确定要下载到设备吗?</value>
<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">
@ -885,17 +885,17 @@
<comment>Totp code label</comment>
</data>
<data name="AuthenticatorKeyAdded" xml:space="preserve">
<value>验证器密钥已添加。</value>
<value>已添加验证器密钥。</value>
</data>
<data name="AuthenticatorKeyReadError" xml:space="preserve">
<value>无法读取验证器密钥。</value>
</data>
<data name="PointYourCameraAtTheQRCode" xml:space="preserve">
<value>将您的摄像头对准 QR 码。
<value>将您的摄像头对准二维码。
扫描将自动完成。</value>
</data>
<data name="ScanQrTitle" xml:space="preserve">
<value>扫描 QR 码</value>
<value>扫描二维码</value>
</data>
<data name="Camera" xml:space="preserve">
<value>相机</value>
@ -1556,7 +1556,7 @@
<value>退出</value>
</data>
<data name="ExitConfirmation" xml:space="preserve">
<value>确定要退出 Bitwarden 吗?</value>
<value>确定要退出 Bitwarden 吗?</value>
</data>
<data name="PINRequireMasterPasswordRestart" xml:space="preserve">
<value>当应用程序重启时,要求使用主密码解锁吗?</value>
@ -2098,7 +2098,7 @@
<value>{0} 正在使用客户管理加密的 SSO。继续操作将删除您的账户主密码并要求 SSO 登录。</value>
</data>
<data name="RemoveMasterPasswordWarning2" xml:space="preserve">
<value>如果您不想移除您的主密码,您可以退出这个组织。</value>
<value>如果您不想移除您的主密码,您可以退出组织。</value>
</data>
<data name="LeaveOrganization" xml:space="preserve">
<value>退出组织</value>
@ -2185,7 +2185,7 @@
<value>无效的验证码</value>
</data>
<data name="RequestOTP" xml:space="preserve">
<value>求一次性密码</value>
<value>求一次性密码</value>
</data>
<data name="SendCode" xml:space="preserve">
<value>发送验证码</value>
@ -2275,10 +2275,10 @@
<value>无法添加验证器密钥?</value>
</data>
<data name="ScanQRCode" xml:space="preserve">
<value>扫描 QR 码</value>
<value>扫描二维码</value>
</data>
<data name="CannotScanQRCode" xml:space="preserve">
<value>无法扫描 QR 码吗? </value>
<value>无法扫描二维码吗? </value>
</data>
<data name="AuthenticatorKeyScanner" xml:space="preserve">
<value>验证器密钥</value>
@ -2432,7 +2432,7 @@
<value>API 访问令牌</value>
</data>
<data name="AreYouSureYouWantToOverwriteTheCurrentUsername" xml:space="preserve">
<value>确定要覆盖当前用户名吗?</value>
<value>确定要覆盖当前用户名吗?</value>
</data>
<data name="GenerateUsername" xml:space="preserve">
<value>生成用户名</value>
@ -2527,7 +2527,7 @@
<value>拒绝所有请求</value>
</data>
<data name="AreYouSureYouWantToDeclineAllPendingLogInRequests" xml:space="preserve">
<value>确定要拒绝所有待处理的登录请求吗?</value>
<value>确定要拒绝所有待处理的登录请求吗?</value>
</data>
<data name="RequestsDeclined" xml:space="preserve">
<value>请求被拒绝</value>
@ -2780,7 +2780,7 @@
<value>会话超时动作</value>
</data>
<data name="AccountFingerprintPhrase" xml:space="preserve">
<value>账户指纹短语</value>
<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="OneHourAndOneMinute" xml:space="preserve">
@ -2820,6 +2820,9 @@
<data name="ContinueToContactSupport" xml:space="preserve">
<value>接下来要联系支持吗?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>接下来查看隐私政策吗?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>接下来前往 App Store 吗?</value>
</data>
@ -2839,6 +2842,9 @@
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>找不到您想要的吗?请在 bitwarden.com 上联系 Bitwarden 支持。</value>
</data>
<data name="PrivacyPolicyDescriptionLong" xml:space="preserve">
<value>在 bitwarden.com 上查看我们的隐私政策。</value>
</data>
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
<value>在网页应用上探索您的 Bitwarden 账户的更多功能。</value>
</data>
@ -2862,10 +2868,10 @@
<value>账户已注销。</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>您的组织权限已更新,要求您设置主密码。</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>您的组织要求您设置主密码。</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>设置解锁选项以更改您的密码库超时操作。</value>

View File

@ -2820,6 +2820,9 @@
<data name="ContinueToContactSupport" xml:space="preserve">
<value>接下來聯絡支援嗎?</value>
</data>
<data name="ContinueToPrivacyPolicy" xml:space="preserve">
<value>Continue to privacy policy?</value>
</data>
<data name="ContinueToAppStore" xml:space="preserve">
<value>接下來造訪 App Store 嗎?</value>
</data>
@ -2839,6 +2842,9 @@
<data name="ContactSupportDescriptionLong" xml:space="preserve">
<value>不能找到你想要的?請在 bitwarden.com 上聯絡 Bitwarden 支援。</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>在 Web 應用程式上探索 Bitwarden 帳戶的更多功能。</value>
</data>
@ -2862,12 +2868,12 @@
<value>帳戶已登出。</value>
</data>
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization permissions were updated, requiring you to set a master password.</value>
<value>您的組織權限已更新,需要您設定主密碼。</value>
</data>
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
<value>Your organization requires you to set a master password.</value>
<value>您的組織要求您設定主密碼。</value>
</data>
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
<value>Set up an unlock option to change your vault timeout action.</value>
<value>設定一個解鎖方式來變更您的密碼庫逾時動作。</value>
</data>
</root>

View File

@ -63,5 +63,7 @@ namespace Bit.Core.Abstractions
Task<UserKey> DecryptAndMigrateOldPinKeyAsync(bool masterPasswordOnRestart, string pin, string email, KdfConfig kdfConfig, EncString oldPinKey);
Task<MasterKey> GetOrDeriveMasterKeyAsync(string password, string userId = null);
Task UpdateMasterKeyAndUserKeyAsync(MasterKey masterKey);
Task<string> HashAsync(string value, CryptoHashAlgorithm hashAlgorithm);
Task<bool> ValidateUriChecksumAsync(EncString remoteUriChecksum, string rawUri, string orgId, SymmetricCryptoKey key);
}
}

View File

@ -70,7 +70,7 @@ namespace Bit.Core
public const int Argon2Parallelism = 4;
public const int MasterPasswordMinimumChars = 12;
public const int CipherKeyRandomBytesLength = 64;
public const string CipherKeyEncryptionMinServerVersion = "2023.9.1";
public const string CipherKeyEncryptionMinServerVersion = "2024.1.3";
public const string DefaultFido2CredentialType = "public-key";
public const string DefaultFido2CredentialAlgorithm = "ECDSA";
public const string DefaultFido2CredentialCurve = "P-256";

View File

@ -6,13 +6,18 @@
public const string HELP_ABOUT_ORGANIZATIONS = "https://bitwarden.com/help/about-organizations/";
public const string HELP_FINGERPRINT_PHRASE = "https://bitwarden.com/help/fingerprint-phrase/";
public const string CONTACT_SUPPORT = "https://bitwarden.com/contact/";
public const string PRIVACY_POLICY = "https://bitwarden.com/privacy/";
/// <summary>
/// Link to go to settings website. Requires to pass website URL as parameter.
/// </summary>
public const string WEB_VAULT_SETTINGS_FORMAT = "{0}/#/settings";
/// <summary>
/// Link to go to individual vault import page. Requires to pass vault URL as parameter.
/// </summary>
public const string WEB_VAULT_TOOLS_IMPORT_FORMAT = "{0}/#/tools/import";
/// <summary>
/// General website, not in the full format of a URL given that this is used as parameter of string resources to be shown to the user.
/// </summary>

View File

@ -6,5 +6,6 @@ namespace Bit.Core.Models.Api
{
public string Uri { get; set; }
public UriMatchType? Match { get; set; }
public string UriChecksum { get; set; }
}
}

View File

@ -11,9 +11,11 @@ namespace Bit.Core.Models.Data
{
Uri = data.Uri;
Match = data.Match;
UriChecksum = data.UriChecksum;
}
public string Uri { get; set; }
public UriMatchType? Match { get; set; }
public string UriChecksum { get; set; }
}
}

View File

@ -115,7 +115,7 @@ namespace Bit.Core.Models.Domain
switch (Type)
{
case Enums.CipherType.Login:
model.Login = await Login.DecryptAsync(OrganizationId, model.Key);
model.Login = await Login.DecryptAsync(OrganizationId, Key == null, model.Key);
break;
case Enums.CipherType.SecureNote:
model.SecureNote = await SecureNote.DecryptAsync(OrganizationId, model.Key);

View File

@ -2,8 +2,10 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Bit.Core.Abstractions;
using Bit.Core.Models.Data;
using Bit.Core.Models.View;
using Bit.Core.Utilities;
namespace Bit.Core.Models.Domain
{
@ -31,7 +33,7 @@ namespace Bit.Core.Models.Domain
public EncString Totp { get; set; }
public List<Fido2Credential> Fido2Credentials { get; set; }
public async Task<LoginView> DecryptAsync(string orgId, SymmetricCryptoKey key = null)
public async Task<LoginView> DecryptAsync(string orgId, bool bypassUriChecksumValidation, SymmetricCryptoKey key = null)
{
var view = await DecryptObjAsync(new LoginView(this), this, new HashSet<string>
{
@ -41,10 +43,15 @@ namespace Bit.Core.Models.Domain
}, orgId, key);
if (Uris != null)
{
var cryptoService = ServiceContainer.Resolve<ICryptoService>();
view.Uris = new List<LoginUriView>();
foreach (var uri in Uris)
{
view.Uris.Add(await uri.DecryptAsync(orgId, key));
var loginUriView = await uri.DecryptAsync(orgId, key);
if (bypassUriChecksumValidation || await cryptoService.ValidateUriChecksumAsync(uri.UriChecksum, loginUriView.Uri, orgId, key))
{
view.Uris.Add(loginUriView);
}
}
}
if (Fido2Credentials != null)

View File

@ -1,4 +1,5 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
@ -10,7 +11,8 @@ namespace Bit.Core.Models.Domain
{
private HashSet<string> _map = new HashSet<string>
{
"Uri"
nameof(Uri),
nameof(UriChecksum)
};
public LoginUri() { }
@ -23,10 +25,11 @@ namespace Bit.Core.Models.Domain
public EncString Uri { get; set; }
public UriMatchType? Match { get; set; }
public EncString UriChecksum { get; set; }
public Task<LoginUriView> DecryptAsync(string orgId, SymmetricCryptoKey key = null)
{
return DecryptObjAsync(new LoginUriView(this), this, _map, orgId, key);
return DecryptObjAsync(new LoginUriView(this), this, _map.Where(m => m != nameof(UriChecksum)).ToHashSet<string>(), orgId, key);
}
public LoginUriData ToLoginUriData()

View File

@ -46,7 +46,11 @@ namespace Bit.Core.Models.Domain
case ForwardedEmailServiceType.DuckDuckGo:
return new ForwarderOptions { ApiKey = DuckDuckGoApiKey };
case ForwardedEmailServiceType.Fastmail:
return new ForwarderOptions { ApiKey = FastMailApiKey };
return new FastmailForwarderOptions
{
ApiKey = FastMailApiKey,
Website = EmailWebsite
};
case ForwardedEmailServiceType.FirefoxRelay:
return new ForwarderOptions { ApiKey = FirefoxRelayApiAccessToken };
case ForwardedEmailServiceType.SimpleLogin:

View File

@ -17,10 +17,12 @@ namespace Bit.Core.Models.Export
{
Match = obj.Match;
Uri = obj.Uri?.EncryptedString;
UriChecksum = obj.UriChecksum?.EncryptedString;
}
public UriMatchType? Match { get; set; }
public string Uri { get; set; }
public string UriChecksum { get; set; }
public static LoginUriView ToView(LoginUri req, LoginUriView view = null)
{

View File

@ -27,7 +27,7 @@ namespace Bit.Core.Models.Request
Login = new LoginApi
{
Uris = cipher.Login.Uris?.Select(
u => new LoginUriApi { Match = u.Match, Uri = u.Uri?.EncryptedString }).ToList(),
u => new LoginUriApi { Match = u.Match, Uri = u.Uri?.EncryptedString, UriChecksum = u.UriChecksum?.EncryptedString }).ToList(),
Username = cipher.Login.Username?.EncryptedString,
Password = cipher.Login.Password?.EncryptedString,
PasswordRevisionDate = cipher.Login.PasswordRevisionDate,

View File

@ -593,7 +593,8 @@ namespace Bit.Core.Services
public Task<PasswordlessLoginResponse> PostCreateRequestAsync(PasswordlessCreateLoginRequest passwordlessCreateLoginRequest, AuthRequestType authRequestType)
{
return SendAsync<object, PasswordlessLoginResponse>(HttpMethod.Post, authRequestType == AuthRequestType.AdminApproval ? "/auth-requests/admin-request" : "/auth-requests", passwordlessCreateLoginRequest, authRequestType == AuthRequestType.AdminApproval, true);
return SendAsync<object, PasswordlessLoginResponse>(HttpMethod.Post, authRequestType == AuthRequestType.AdminApproval ? "/auth-requests/admin-request" : "/auth-requests", passwordlessCreateLoginRequest, authRequestType == AuthRequestType.AdminApproval, true,
(message) => message.Headers.Add("Device-Identifier", passwordlessCreateLoginRequest.DeviceIdentifier));
}
public Task<PasswordlessLoginResponse> PutAuthRequestAsync(string id, string encKey, string encMasterPasswordHash, string deviceIdentifier, bool requestApproved)
@ -629,7 +630,7 @@ namespace Bit.Core.Services
public async Task<SsoPrevalidateResponse> PreValidateSsoAsync(string identifier)
{
var path = "/account/prevalidate?domainHint=" + WebUtility.UrlEncode(identifier);
var path = "/sso/prevalidate?domainHint=" + WebUtility.UrlEncode(identifier);
using (var requestMessage = new HttpRequestMessage())
{
requestMessage.Version = new Version(1, 0);

View File

@ -1146,13 +1146,15 @@ namespace Bit.Core.Services
if (model.Login.Uris != null)
{
cipher.Login.Uris = new List<LoginUri>();
foreach (var uri in model.Login.Uris)
foreach (var uri in model.Login.Uris.Where(u => u.Uri != null))
{
var loginUri = new LoginUri
{
Match = uri.Match
};
await EncryptObjPropertyAsync(uri, loginUri, new HashSet<string> { "Uri" }, key);
var uriHash = await _cryptoService.HashAsync(uri.Uri, CryptoHashAlgorithm.Sha256);
loginUri.UriChecksum = await _cryptoService.EncryptAsync(uriHash, key);
cipher.Login.Uris.Add(loginUri);
}
}

View File

@ -19,6 +19,7 @@ namespace Bit.Core.Services
private readonly IStateService _stateService;
private readonly ICryptoFunctionService _cryptoFunctionService;
private readonly ILogger _logger;
private SymmetricCryptoKey _legacyEtmKey;
private string _masterKeyHash;
@ -29,10 +30,12 @@ namespace Bit.Core.Services
public CryptoService(
IStateService stateService,
ICryptoFunctionService cryptoFunctionService)
ICryptoFunctionService cryptoFunctionService,
ILogger logger)
{
_stateService = stateService;
_cryptoFunctionService = cryptoFunctionService;
_logger = logger;
}
public void ClearCache()
@ -730,6 +733,33 @@ namespace Bit.Core.Services
}
}
public async Task<string> HashAsync(string value, CryptoHashAlgorithm hashAlgorithm)
{
var hashArray = await _cryptoFunctionService.HashAsync(value, hashAlgorithm);
return Convert.ToBase64String(hashArray);
}
public async Task<bool> ValidateUriChecksumAsync(EncString remoteUriChecksum, string rawUri, string orgId, SymmetricCryptoKey key)
{
try
{
if (remoteUriChecksum == null)
{
return false;
}
var localChecksum = await HashAsync(rawUri, CryptoHashAlgorithm.Sha256);
var remoteChecksum = await remoteUriChecksum.DecryptAsync(orgId, key);
return remoteChecksum == localChecksum;
}
catch (Exception ex)
{
_logger.Exception(ex);
return false;
}
}
// --HELPER METHODS--
private async Task StoreAdditionalKeysAsync(UserKey userKey, string userId = null)

View File

@ -9,16 +9,21 @@ using Newtonsoft.Json.Linq;
namespace Bit.Core.Services.EmailForwarders
{
public class FastmailForwarder : BaseForwarder<ForwarderOptions>
public class FastmailForwarderOptions : ForwarderOptions
{
public string Website { get; set; }
}
public class FastmailForwarder : BaseForwarder<FastmailForwarderOptions>
{
protected override string RequestUri => "https://api.fastmail.com/jmap/api/";
protected override void ConfigureHeaders(HttpRequestHeaders headers, ForwarderOptions options)
protected override void ConfigureHeaders(HttpRequestHeaders headers, FastmailForwarderOptions options)
{
headers.Add("Authorization", $"Bearer {options.ApiKey}");
}
protected override async Task<HttpContent> GetContentAsync(IApiService apiService, ForwarderOptions options)
protected override async Task<HttpContent> GetContentAsync(IApiService apiService, FastmailForwarderOptions options)
{
string accountId = null;
try
@ -55,7 +60,8 @@ namespace Bit.Core.Services.EmailForwarders
["state"] = "enabled",
["description"] = "",
["url"] = "",
["emailPrefix"] = ""
["emailPrefix"] = "",
["forDomain"] = options.Website ?? ""
}
}
},

Some files were not shown because too many files have changed in this diff Show More