mirror of
https://github.com/bitwarden/mobile
synced 2025-12-11 13:53:29 +00:00
Compare commits
43 Commits
iOS
...
vault/pm-5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
621bf76db8 | ||
|
|
f14be2a3a2 | ||
|
|
8ee744b746 | ||
|
|
15a03ba573 | ||
|
|
82711a0235 | ||
|
|
e6635564aa | ||
|
|
6c078fe343 | ||
|
|
743e71ff92 | ||
|
|
7b579b7aa5 | ||
|
|
fe10fd7766 | ||
|
|
3c0de8aacc | ||
|
|
18d9a77f25 | ||
|
|
9eca82a62b | ||
|
|
b90e030b8f | ||
|
|
9a28419a4e | ||
|
|
f4c468e6a1 | ||
|
|
2c346eb710 | ||
|
|
9c0908f7b7 | ||
|
|
827fbbc9ce | ||
|
|
5b249bed67 | ||
|
|
afbcb212f6 | ||
|
|
a71c28536d | ||
|
|
ba5fa8a518 | ||
|
|
65ea5574de | ||
|
|
f013f69669 | ||
|
|
f98dfa6581 | ||
|
|
0723999652 | ||
|
|
96343eccf7 | ||
|
|
793c5fef6f | ||
|
|
3a13ba4efa | ||
|
|
c5288d3921 | ||
|
|
9506595fdd | ||
|
|
7a65bf7fd7 | ||
|
|
d0ce89fedb | ||
|
|
3c94ea4579 | ||
|
|
658c1eaf64 | ||
|
|
02b0265767 | ||
|
|
bd2481b3e4 | ||
|
|
12c72b2833 | ||
|
|
2e5fb414b5 | ||
|
|
4dda7a6634 | ||
|
|
a1808f64b3 | ||
|
|
142c3145f0 |
12
.github/CODEOWNERS
vendored
12
.github/CODEOWNERS
vendored
@@ -20,12 +20,18 @@ src/watchOS @bitwarden/team-vault-dev
|
|||||||
## Tools team files ##
|
## Tools team files ##
|
||||||
src/Core/Services/EmailForwarders @bitwarden/team-tools-dev
|
src/Core/Services/EmailForwarders @bitwarden/team-tools-dev
|
||||||
|
|
||||||
|
|
||||||
## Crowdin Sync files ##
|
## Crowdin Sync files ##
|
||||||
src/App/Resources @bitwarden/tech-leads
|
src/App/Resources @bitwarden/team-tools-dev
|
||||||
src/watchOS/bitwarden/bitwarden\ WatchKit\ Extension/Localization @bitwarden/tech-leads
|
src/watchOS/bitwarden/bitwarden\ WatchKit\ Extension/Localization @bitwarden/team-tools-dev
|
||||||
|
store/apple @bitwarden/team-tools-dev
|
||||||
|
store/google @bitwarden/team-tools-dev
|
||||||
|
|
||||||
## Locales ##
|
## Locales ##
|
||||||
src/App/Resources/AppResources.Designer.cs
|
src/App/Resources/AppResources.Designer.cs
|
||||||
src/App/Resources/AppResources.resx
|
src/App/Resources/AppResources.resx
|
||||||
src/watchOS/bitwarden/bitwarden\ WatchKit\ Extension/Localization/en.lproj
|
src/watchOS/bitwarden/bitwarden\ WatchKit\ Extension/Localization/en.lproj
|
||||||
|
store/apple/en
|
||||||
|
store/google/en
|
||||||
|
|
||||||
|
## Utils ##
|
||||||
|
store/google/Publisher
|
||||||
|
|||||||
173
.github/workflows/build.yml
vendored
173
.github/workflows/build.yml
vendored
@@ -9,15 +9,14 @@ on:
|
|||||||
paths-ignore:
|
paths-ignore:
|
||||||
- ".github/workflows/**"
|
- ".github/workflows/**"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs: {}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cloc:
|
cloc:
|
||||||
name: CLOC
|
name: CLOC
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||||
|
|
||||||
- name: Set up CLOC
|
- name: Set up CLOC
|
||||||
run: |
|
run: |
|
||||||
@@ -30,13 +29,13 @@ jobs:
|
|||||||
|
|
||||||
setup:
|
setup:
|
||||||
name: Setup
|
name: Setup
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
outputs:
|
outputs:
|
||||||
rc_branch_exists: ${{ steps.branch-check.outputs.rc_branch_exists }}
|
rc_branch_exists: ${{ steps.branch-check.outputs.rc_branch_exists }}
|
||||||
hotfix_branch_exists: ${{ steps.branch-check.outputs.hotfix_branch_exists }}
|
hotfix_branch_exists: ${{ steps.branch-check.outputs.hotfix_branch_exists }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||||
with:
|
with:
|
||||||
submodules: 'true'
|
submodules: 'true'
|
||||||
|
|
||||||
@@ -54,7 +53,6 @@ jobs:
|
|||||||
else
|
else
|
||||||
echo "hotfix_branch_exists=0" >> $GITHUB_OUTPUT
|
echo "hotfix_branch_exists=0" >> $GITHUB_OUTPUT
|
||||||
fi
|
fi
|
||||||
shell: bash
|
|
||||||
|
|
||||||
|
|
||||||
android:
|
android:
|
||||||
@@ -82,25 +80,12 @@ jobs:
|
|||||||
- name: Setup Windows builder
|
- name: Setup Windows builder
|
||||||
run: choco install checksum --no-progress
|
run: choco install checksum --no-progress
|
||||||
|
|
||||||
- name: Work Around for broken Windows 2022 Runner Image
|
- name: Install Microsoft OpenJDK 11
|
||||||
run: |
|
run: |
|
||||||
Set-Location "C:\Program Files (x86)\Microsoft Visual Studio\Installer\"
|
choco install microsoft-openjdk11 --no-progress
|
||||||
$InstallPath = "C:\Program Files\Microsoft Visual Studio\2022\Enterprise"
|
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
|
||||||
$componentsToAdd = @(
|
Write-Output "Java Home: $env:JAVA_HOME"
|
||||||
"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
|
|
||||||
}
|
|
||||||
- name: Print environment
|
- name: Print environment
|
||||||
run: |
|
run: |
|
||||||
nuget help | grep Version
|
nuget help | grep Version
|
||||||
@@ -110,9 +95,10 @@ jobs:
|
|||||||
echo "GitHub event: $GITHUB_EVENT"
|
echo "GitHub event: $GITHUB_EVENT"
|
||||||
|
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Decrypt secrets
|
- name: Decrypt secrets
|
||||||
env:
|
env:
|
||||||
DECRYPT_FILE_PASSWORD: ${{ secrets.DECRYPT_FILE_PASSWORD }}
|
DECRYPT_FILE_PASSWORD: ${{ secrets.DECRYPT_FILE_PASSWORD }}
|
||||||
@@ -126,6 +112,7 @@ jobs:
|
|||||||
gpg --quiet --batch --yes --decrypt --passphrase="$DECRYPT_FILE_PASSWORD" \
|
gpg --quiet --batch --yes --decrypt --passphrase="$DECRYPT_FILE_PASSWORD" \
|
||||||
--output $HOME/secrets/play_creds.json ./.github/secrets/play_creds.json.gpg
|
--output $HOME/secrets/play_creds.json ./.github/secrets/play_creds.json.gpg
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Decrypt secrets - Google Services
|
- name: Decrypt secrets - Google Services
|
||||||
if: ${{ matrix.variant == 'prod' }}
|
if: ${{ matrix.variant == 'prod' }}
|
||||||
env:
|
env:
|
||||||
@@ -134,6 +121,7 @@ jobs:
|
|||||||
gpg --quiet --batch --yes --decrypt --passphrase="$DECRYPT_FILE_PASSWORD" \
|
gpg --quiet --batch --yes --decrypt --passphrase="$DECRYPT_FILE_PASSWORD" \
|
||||||
--output ./src/Android/google-services.json ./.github/secrets/google-services.json.gpg
|
--output ./src/Android/google-services.json ./.github/secrets/google-services.json.gpg
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Increment version
|
- name: Increment version
|
||||||
run: |
|
run: |
|
||||||
BUILD_NUMBER=$((3000 + $GITHUB_RUN_NUMBER))
|
BUILD_NUMBER=$((3000 + $GITHUB_RUN_NUMBER))
|
||||||
@@ -151,15 +139,12 @@ jobs:
|
|||||||
|
|
||||||
- name: Restore tools
|
- name: Restore tools
|
||||||
run: dotnet tool restore
|
run: dotnet tool restore
|
||||||
shell: pwsh
|
|
||||||
|
|
||||||
- name: Verify Format
|
- name: Verify Format
|
||||||
run: dotnet tool run dotnet-format --check
|
run: dotnet tool run dotnet-format --check
|
||||||
shell: pwsh
|
|
||||||
|
|
||||||
- name: Run Core tests
|
- name: Run Core tests
|
||||||
run: dotnet test test/Core.Test/Core.Test.csproj --logger "trx;LogFileName=test-results.trx"
|
run: dotnet test test/Core.Test/Core.Test.csproj --logger "trx;LogFileName=test-results.trx"
|
||||||
shell: pwsh
|
|
||||||
|
|
||||||
- name: Report test results
|
- name: Report test results
|
||||||
uses: dorny/test-reporter@c9b3d0e2bd2a4e96aaf424dbaa31c46b42318226 # v1.6.0
|
uses: dorny/test-reporter@c9b3d0e2bd2a4e96aaf424dbaa31c46b42318226 # v1.6.0
|
||||||
@@ -186,8 +171,6 @@ jobs:
|
|||||||
Write-Output "########################################"
|
Write-Output "########################################"
|
||||||
msbuild "$($env:GITHUB_WORKSPACE + "/src/Android/Android.csproj")" "/p:Configuration=$configuration"
|
msbuild "$($env:GITHUB_WORKSPACE + "/src/Android/Android.csproj")" "/p:Configuration=$configuration"
|
||||||
|
|
||||||
shell: pwsh
|
|
||||||
|
|
||||||
- name: Sign Android Build
|
- name: Sign Android Build
|
||||||
env:
|
env:
|
||||||
PLAY_KEYSTORE_PASSWORD: ${{ secrets.PLAY_KEYSTORE_PASSWORD }}
|
PLAY_KEYSTORE_PASSWORD: ${{ secrets.PLAY_KEYSTORE_PASSWORD }}
|
||||||
@@ -234,10 +217,10 @@ jobs:
|
|||||||
$signedApkDestPath = $($env:GITHUB_WORKSPACE + "/$($packageName).apk");
|
$signedApkDestPath = $($env:GITHUB_WORKSPACE + "/$($packageName).apk");
|
||||||
|
|
||||||
Copy-Item $signedApkPath $signedApkDestPath
|
Copy-Item $signedApkPath $signedApkDestPath
|
||||||
shell: pwsh
|
|
||||||
- name: Upload Prod .aab artifact
|
- name: Upload Prod .aab artifact
|
||||||
if: ${{ matrix.variant == 'prod' }}
|
if: ${{ matrix.variant == 'prod' }}
|
||||||
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||||
with:
|
with:
|
||||||
name: com.x8bit.bitwarden.aab
|
name: com.x8bit.bitwarden.aab
|
||||||
path: ./com.x8bit.bitwarden.aab
|
path: ./com.x8bit.bitwarden.aab
|
||||||
@@ -245,7 +228,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload Prod .apk artifact
|
- name: Upload Prod .apk artifact
|
||||||
if: ${{ matrix.variant == 'prod' }}
|
if: ${{ matrix.variant == 'prod' }}
|
||||||
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||||
with:
|
with:
|
||||||
name: com.x8bit.bitwarden.apk
|
name: com.x8bit.bitwarden.apk
|
||||||
path: ./com.x8bit.bitwarden.apk
|
path: ./com.x8bit.bitwarden.apk
|
||||||
@@ -253,7 +236,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload Other .apk artifact
|
- name: Upload Other .apk artifact
|
||||||
if: ${{ matrix.variant != 'prod' }}
|
if: ${{ matrix.variant != 'prod' }}
|
||||||
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||||
with:
|
with:
|
||||||
name: com.x8bit.bitwarden.${{ matrix.variant }}.apk
|
name: com.x8bit.bitwarden.${{ matrix.variant }}.apk
|
||||||
path: ./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
|
- name: Upload .apk sha file for prod
|
||||||
if: ${{ matrix.variant == 'prod' }}
|
if: ${{ matrix.variant == 'prod' }}
|
||||||
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||||
with:
|
with:
|
||||||
name: bw-android-apk-sha256.txt
|
name: bw-android-apk-sha256.txt
|
||||||
path: ./bw-android-apk-sha256.txt
|
path: ./bw-android-apk-sha256.txt
|
||||||
@@ -281,14 +264,14 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload .apk sha file for other
|
- name: Upload .apk sha file for other
|
||||||
if: ${{ matrix.variant != 'prod' }}
|
if: ${{ matrix.variant != 'prod' }}
|
||||||
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||||
with:
|
with:
|
||||||
name: bw-android-${{ matrix.variant }}-apk-sha256.txt
|
name: bw-android-${{ matrix.variant }}-apk-sha256.txt
|
||||||
path: ./bw-android-${{ matrix.variant }}-apk-sha256.txt
|
path: ./bw-android-${{ matrix.variant }}-apk-sha256.txt
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Deploy to Play Store
|
- 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.rc_branch_exists == 0
|
||||||
&& needs.setup.outputs.hotfix_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/rc' && needs.setup.outputs.hotfix_branch_exists == 0)
|
||||||
@@ -318,25 +301,11 @@ jobs:
|
|||||||
- name: Setup Windows builder
|
- name: Setup Windows builder
|
||||||
run: choco install checksum --no-progress
|
run: choco install checksum --no-progress
|
||||||
|
|
||||||
- name: Work Around for broken Windows 2022 Runner Image
|
- name: Install Microsoft OpenJDK 11
|
||||||
run: |
|
run: |
|
||||||
Set-Location "C:\Program Files (x86)\Microsoft Visual Studio\Installer\"
|
choco install microsoft-openjdk11 --no-progress
|
||||||
$InstallPath = "C:\Program Files\Microsoft Visual Studio\2022\Enterprise"
|
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
|
||||||
$componentsToAdd = @(
|
Write-Output "Java Home: $env:JAVA_HOME"
|
||||||
"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
|
|
||||||
}
|
|
||||||
|
|
||||||
- name: Print environment
|
- name: Print environment
|
||||||
run: |
|
run: |
|
||||||
@@ -347,7 +316,7 @@ jobs:
|
|||||||
echo "GitHub event: $GITHUB_EVENT"
|
echo "GitHub event: $GITHUB_EVENT"
|
||||||
|
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||||
|
|
||||||
- name: Decrypt secrets
|
- name: Decrypt secrets
|
||||||
env:
|
env:
|
||||||
@@ -441,7 +410,6 @@ jobs:
|
|||||||
$appCenterNode.ParentNode.RemoveChild($appCenterNode);
|
$appCenterNode.ParentNode.RemoveChild($appCenterNode);
|
||||||
|
|
||||||
$xml.Save($corePath);
|
$xml.Save($corePath);
|
||||||
shell: pwsh
|
|
||||||
|
|
||||||
- name: Restore packages
|
- name: Restore packages
|
||||||
run: nuget restore
|
run: nuget restore
|
||||||
@@ -455,7 +423,6 @@ jobs:
|
|||||||
Write-Output "########################################"
|
Write-Output "########################################"
|
||||||
|
|
||||||
msbuild "$($env:GITHUB_WORKSPACE + "/src/Android/Android.csproj")" "/p:Configuration=$configuration"
|
msbuild "$($env:GITHUB_WORKSPACE + "/src/Android/Android.csproj")" "/p:Configuration=$configuration"
|
||||||
shell: pwsh
|
|
||||||
|
|
||||||
- name: Sign for F-Droid
|
- name: Sign for F-Droid
|
||||||
env:
|
env:
|
||||||
@@ -479,10 +446,9 @@ jobs:
|
|||||||
$signedApkDestPath = $($env:GITHUB_WORKSPACE + "/com.x8bit.bitwarden-fdroid.apk");
|
$signedApkDestPath = $($env:GITHUB_WORKSPACE + "/com.x8bit.bitwarden-fdroid.apk");
|
||||||
|
|
||||||
Copy-Item $signedApkPath $signedApkDestPath
|
Copy-Item $signedApkPath $signedApkDestPath
|
||||||
shell: pwsh
|
|
||||||
|
|
||||||
- name: Upload F-Droid .apk artifact
|
- name: Upload F-Droid .apk artifact
|
||||||
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||||
with:
|
with:
|
||||||
name: com.x8bit.bitwarden-fdroid.apk
|
name: com.x8bit.bitwarden-fdroid.apk
|
||||||
path: ./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
|
-t sha256 | Out-File -Encoding ASCII ./bw-fdroid-apk-sha256.txt
|
||||||
|
|
||||||
- name: Upload F-Droid sha file
|
- name: Upload F-Droid sha file
|
||||||
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||||
with:
|
with:
|
||||||
name: bw-fdroid-apk-sha256.txt
|
name: bw-fdroid-apk-sha256.txt
|
||||||
path: ./bw-fdroid-apk-sha256.txt
|
path: ./bw-fdroid-apk-sha256.txt
|
||||||
@@ -520,7 +486,7 @@ jobs:
|
|||||||
echo "GitHub event: $GITHUB_EVENT"
|
echo "GitHub event: $GITHUB_EVENT"
|
||||||
|
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||||
with:
|
with:
|
||||||
submodules: 'true'
|
submodules: 'true'
|
||||||
|
|
||||||
@@ -531,17 +497,10 @@ jobs:
|
|||||||
|
|
||||||
- name: Retrieve secrets
|
- name: Retrieve secrets
|
||||||
id: retrieve-secrets
|
id: retrieve-secrets
|
||||||
env:
|
uses: bitwarden/gh-actions/get-keyvault-secrets@main
|
||||||
KEYVAULT: bitwarden-ci
|
with:
|
||||||
SECRETS: |
|
keyvault: "bitwarden-ci"
|
||||||
appcenter-ios-token
|
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
|
|
||||||
|
|
||||||
- name: Decrypt secrets
|
- name: Decrypt secrets
|
||||||
env:
|
env:
|
||||||
@@ -570,7 +529,6 @@ jobs:
|
|||||||
./.github/secrets/dist_watch_app_extension.mobileprovision.gpg
|
./.github/secrets/dist_watch_app_extension.mobileprovision.gpg
|
||||||
gpg --quiet --batch --yes --decrypt --passphrase="$DECRYPT_FILE_PASSWORD" \
|
gpg --quiet --batch --yes --decrypt --passphrase="$DECRYPT_FILE_PASSWORD" \
|
||||||
--output ./src/watchOS/bitwarden/GoogleService-Info.plist ./.github/secrets/GoogleService-Info.plist.gpg
|
--output ./src/watchOS/bitwarden/GoogleService-Info.plist ./.github/secrets/GoogleService-Info.plist.gpg
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Increment version
|
- name: Increment version
|
||||||
run: |
|
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
|
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
|
cd src/watchOS/bitwarden
|
||||||
agvtool new-version -all $BUILD_NUMBER
|
agvtool new-version -all $BUILD_NUMBER
|
||||||
cd ../../..
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Update Entitlements
|
- name: Update Entitlements
|
||||||
run: |
|
run: |
|
||||||
@@ -596,7 +552,6 @@ jobs:
|
|||||||
echo "########################################"
|
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
|
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
|
- name: Set up Keychain
|
||||||
env:
|
env:
|
||||||
@@ -613,7 +568,6 @@ jobs:
|
|||||||
security import ~/secrets/iphone-distribution-cert.p12 -k build.keychain -P $DIST_CERT_PASSWORD \
|
security import ~/secrets/iphone-distribution-cert.p12 -k build.keychain -P $DIST_CERT_PASSWORD \
|
||||||
-T /usr/bin/codesign -T /usr/bin/security
|
-T /usr/bin/codesign -T /usr/bin/security
|
||||||
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k $KEYCHAIN_PASSWORD build.keychain
|
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k $KEYCHAIN_PASSWORD build.keychain
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Set up provisioning profiles
|
- name: Set up provisioning profiles
|
||||||
run: |
|
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\}")
|
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"
|
cp $WATCH_APP_EXTENSION_PROFILE_PATH "$PROFILES_DIR_PATH/$WATCH_APP_EXTENSION_UUID.mobileprovision"
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Bulid WatchApp
|
- name: Bulid WatchApp
|
||||||
run: |
|
run: |
|
||||||
@@ -657,7 +610,6 @@ jobs:
|
|||||||
echo "########################################"
|
echo "########################################"
|
||||||
echo "##### Done"
|
echo "##### Done"
|
||||||
echo "########################################"
|
echo "########################################"
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Restore packages
|
- name: Restore packages
|
||||||
run: nuget restore
|
run: nuget restore
|
||||||
@@ -703,7 +655,6 @@ jobs:
|
|||||||
|
|
||||||
xcodebuild -exportArchive -archivePath $ARCHIVE_PATH -exportPath $EXPORT_PATH \
|
xcodebuild -exportArchive -archivePath $ARCHIVE_PATH -exportPath $EXPORT_PATH \
|
||||||
-exportOptionsPlist $EXPORT_OPTIONS_PATH
|
-exportOptionsPlist $EXPORT_OPTIONS_PATH
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Export .app for Automation CI
|
- name: Export .app for Automation CI
|
||||||
run: |
|
run: |
|
||||||
@@ -712,7 +663,6 @@ jobs:
|
|||||||
|
|
||||||
zip -r -q BitwardeniOS.app.zip $ARCHIVE_PATH
|
zip -r -q BitwardeniOS.app.zip $ARCHIVE_PATH
|
||||||
mv BitwardeniOS.app.zip $EXPORT_PATH
|
mv BitwardeniOS.app.zip $EXPORT_PATH
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Copy all dSYMs files to upload
|
- name: Copy all dSYMs files to upload
|
||||||
run: |
|
run: |
|
||||||
@@ -725,10 +675,9 @@ jobs:
|
|||||||
cp -r -v $ARCHIVE_DSYMS_PATH $EXPORT_PATH
|
cp -r -v $ARCHIVE_DSYMS_PATH $EXPORT_PATH
|
||||||
mkdir $WATCH_DSYMS_EXPORT_PATH
|
mkdir $WATCH_DSYMS_EXPORT_PATH
|
||||||
cp -r -v $WATCH_ARCHIVE_DSYMS_PATH $WATCH_DSYMS_EXPORT_PATH
|
cp -r -v $WATCH_ARCHIVE_DSYMS_PATH $WATCH_DSYMS_EXPORT_PATH
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Upload App Store .ipa & dSYMs artifacts
|
- name: Upload App Store .ipa & dSYMs artifacts
|
||||||
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||||
with:
|
with:
|
||||||
name: Bitwarden iOS
|
name: Bitwarden iOS
|
||||||
path: |
|
path: |
|
||||||
@@ -737,7 +686,7 @@ jobs:
|
|||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Upload .app file for Automation CI
|
- name: Upload .app file for Automation CI
|
||||||
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||||
with:
|
with:
|
||||||
name: BitwardeniOS.app.zip
|
name: BitwardeniOS.app.zip
|
||||||
path: ./bitwarden-export/BitwardeniOS.app.zip
|
path: ./bitwarden-export/BitwardeniOS.app.zip
|
||||||
@@ -745,7 +694,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Install AppCenter CLI
|
- name: Install AppCenter CLI
|
||||||
if: |
|
if: |
|
||||||
(github.ref == 'refs/heads/master'
|
(github.ref == 'refs/heads/main'
|
||||||
&& needs.setup.outputs.rc_branch_exists == 0
|
&& needs.setup.outputs.rc_branch_exists == 0
|
||||||
&& needs.setup.outputs.hotfix_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/rc' && needs.setup.outputs.hotfix_branch_exists == 0)
|
||||||
@@ -754,7 +703,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload dSYMs to App Center
|
- name: Upload dSYMs to App Center
|
||||||
if: |
|
if: |
|
||||||
(github.ref == 'refs/heads/master'
|
(github.ref == 'refs/heads/main'
|
||||||
&& needs.setup.outputs.rc_branch_exists == 0
|
&& needs.setup.outputs.rc_branch_exists == 0
|
||||||
&& needs.setup.outputs.hotfix_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/rc' && needs.setup.outputs.hotfix_branch_exists == 0)
|
||||||
@@ -762,27 +711,24 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
APPCENTER_IOS_TOKEN: ${{ steps.retrieve-secrets.outputs.appcenter-ios-token }}
|
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
|
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
|
- name: Upload Watch dSYMs to Firebase Crashlytics
|
||||||
if: |
|
if: |
|
||||||
(github.ref == 'refs/heads/master'
|
(github.ref == 'refs/heads/main'
|
||||||
&& needs.setup.outputs.rc_branch_exists == 0
|
&& needs.setup.outputs.rc_branch_exists == 0
|
||||||
&& needs.setup.outputs.hotfix_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/rc' && needs.setup.outputs.hotfix_branch_exists == 0)
|
||||||
|| github.ref == 'refs/heads/hotfix-rc'
|
|| github.ref == 'refs/heads/hotfix-rc'
|
||||||
run: |
|
run: |
|
||||||
|
|
||||||
echo "########################################"
|
echo "########################################"
|
||||||
echo "##### Uploading Watch dSYMs to Firebase"
|
echo "##### Uploading Watch dSYMs to Firebase"
|
||||||
echo "########################################"
|
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" \;
|
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
|
- name: Deploy to App Store
|
||||||
if: |
|
if: |
|
||||||
(github.ref == 'refs/heads/master'
|
(github.ref == 'refs/heads/main'
|
||||||
&& needs.setup.outputs.rc_branch_exists == 0
|
&& needs.setup.outputs.rc_branch_exists == 0
|
||||||
&& needs.setup.outputs.hotfix_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/rc' && needs.setup.outputs.hotfix_branch_exists == 0)
|
||||||
@@ -793,22 +739,21 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
xcrun altool --upload-app --type ios --file "./bitwarden-export/Bitwarden.ipa" \
|
xcrun altool --upload-app --type ios --file "./bitwarden-export/Bitwarden.ipa" \
|
||||||
--username "$APPLE_ID_USERNAME" --password "$APPLE_ID_PASSWORD"
|
--username "$APPLE_ID_USERNAME" --password "$APPLE_ID_PASSWORD"
|
||||||
shell: bash
|
|
||||||
|
|
||||||
|
|
||||||
crowdin-push:
|
crowdin-push:
|
||||||
name: Crowdin Push
|
name: Crowdin Push
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/main'
|
||||||
needs:
|
needs:
|
||||||
- android
|
- android
|
||||||
- f-droid
|
- f-droid
|
||||||
- ios
|
- ios
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
env:
|
env:
|
||||||
_CROWDIN_PROJECT_ID: "269690"
|
_CROWDIN_PROJECT_ID: "269690"
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||||
|
|
||||||
- name: Login to Azure - CI Subscription
|
- name: Login to Azure - CI Subscription
|
||||||
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.6
|
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.6
|
||||||
@@ -817,17 +762,10 @@ jobs:
|
|||||||
|
|
||||||
- name: Retrieve secrets
|
- name: Retrieve secrets
|
||||||
id: retrieve-secrets
|
id: retrieve-secrets
|
||||||
env:
|
uses: bitwarden/gh-actions/get-keyvault-secrets@main
|
||||||
KEYVAULT: bitwarden-ci
|
with:
|
||||||
SECRETS: |
|
keyvault: "bitwarden-ci"
|
||||||
crowdin-api-token
|
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
|
|
||||||
|
|
||||||
- name: Upload Sources
|
- name: Upload Sources
|
||||||
uses: crowdin/github-action@965d501f160af7b1f88aed4c29154b0caf1e94b9 # v1.9.0
|
uses: crowdin/github-action@965d501f160af7b1f88aed4c29154b0caf1e94b9 # v1.9.0
|
||||||
@@ -836,7 +774,7 @@ jobs:
|
|||||||
CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }}
|
CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }}
|
||||||
with:
|
with:
|
||||||
config: crowdin.yml
|
config: crowdin.yml
|
||||||
crowdin_branch_name: master
|
crowdin_branch_name: main
|
||||||
upload_sources: true
|
upload_sources: true
|
||||||
upload_translations: false
|
upload_translations: false
|
||||||
|
|
||||||
@@ -844,7 +782,7 @@ jobs:
|
|||||||
check-failures:
|
check-failures:
|
||||||
name: Check for failures
|
name: Check for failures
|
||||||
if: always()
|
if: always()
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
needs:
|
needs:
|
||||||
- cloc
|
- cloc
|
||||||
- android
|
- android
|
||||||
@@ -854,7 +792,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Check if any job failed
|
- name: Check if any job failed
|
||||||
if: |
|
if: |
|
||||||
(github.ref == 'refs/heads/master')
|
(github.ref == 'refs/heads/main')
|
||||||
|| (github.ref == 'refs/heads/rc')
|
|| (github.ref == 'refs/heads/rc')
|
||||||
|| (github.ref == 'refs/heads/hotfix-rc')
|
|| (github.ref == 'refs/heads/hotfix-rc')
|
||||||
env:
|
env:
|
||||||
@@ -884,18 +822,11 @@ jobs:
|
|||||||
|
|
||||||
- name: Retrieve secrets
|
- name: Retrieve secrets
|
||||||
id: retrieve-secrets
|
id: retrieve-secrets
|
||||||
|
uses: bitwarden/gh-actions/get-keyvault-secrets@main
|
||||||
if: failure()
|
if: failure()
|
||||||
env:
|
with:
|
||||||
KEYVAULT: bitwarden-ci
|
keyvault: "bitwarden-ci"
|
||||||
SECRETS: |
|
secrets: "devops-alerts-slack-webhook-url"
|
||||||
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
|
|
||||||
|
|
||||||
- name: Notify Slack on failure
|
- name: Notify Slack on failure
|
||||||
uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f # v2.0.0
|
uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f # v2.0.0
|
||||||
|
|||||||
4
.github/workflows/crowdin-pull.yml
vendored
4
.github/workflows/crowdin-pull.yml
vendored
@@ -24,7 +24,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Retrieve secrets
|
- name: Retrieve secrets
|
||||||
id: retrieve-secrets
|
id: retrieve-secrets
|
||||||
uses: bitwarden/gh-actions/get-keyvault-secrets@4a7ddc1b38ca5cb4e3e43578f4df5cabe4f55a67
|
uses: bitwarden/gh-actions/get-keyvault-secrets@main
|
||||||
with:
|
with:
|
||||||
keyvault: "bitwarden-ci"
|
keyvault: "bitwarden-ci"
|
||||||
secrets: "crowdin-api-token, github-gpg-private-key, github-gpg-private-key-passphrase"
|
secrets: "crowdin-api-token, github-gpg-private-key, github-gpg-private-key-passphrase"
|
||||||
@@ -36,7 +36,7 @@ jobs:
|
|||||||
CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }}
|
CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }}
|
||||||
with:
|
with:
|
||||||
config: crowdin.yml
|
config: crowdin.yml
|
||||||
crowdin_branch_name: master
|
crowdin_branch_name: main
|
||||||
upload_sources: false
|
upload_sources: false
|
||||||
upload_translations: false
|
upload_translations: false
|
||||||
download_translations: true
|
download_translations: true
|
||||||
|
|||||||
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
@@ -42,7 +42,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Check Release Version
|
- name: Check Release Version
|
||||||
id: version
|
id: version
|
||||||
uses: bitwarden/gh-actions/release-version-check@4a7ddc1b38ca5cb4e3e43578f4df5cabe4f55a67
|
uses: bitwarden/gh-actions/release-version-check@main
|
||||||
with:
|
with:
|
||||||
release-type: ${{ github.event.inputs.release_type }}
|
release-type: ${{ github.event.inputs.release_type }}
|
||||||
project-type: xamarin
|
project-type: xamarin
|
||||||
@@ -80,7 +80,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
workflow: build.yml
|
workflow: build.yml
|
||||||
workflow_conclusion: success
|
workflow_conclusion: success
|
||||||
branch: master
|
branch: main
|
||||||
|
|
||||||
- name: Prep Bitwarden iOS release asset
|
- name: Prep Bitwarden iOS release asset
|
||||||
run: zip -r Bitwarden\ iOS.zip Bitwarden\ iOS
|
run: zip -r Bitwarden\ iOS.zip Bitwarden\ iOS
|
||||||
@@ -143,7 +143,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
workflow: build.yml
|
workflow: build.yml
|
||||||
workflow_conclusion: success
|
workflow_conclusion: success
|
||||||
branch: master
|
branch: main
|
||||||
name: com.x8bit.bitwarden-fdroid.apk
|
name: com.x8bit.bitwarden-fdroid.apk
|
||||||
|
|
||||||
- name: Set up Node
|
- name: Set up Node
|
||||||
|
|||||||
2
.github/workflows/stale-bot.yml
vendored
2
.github/workflows/stale-bot.yml
vendored
@@ -27,4 +27,4 @@ jobs:
|
|||||||
|
|
||||||
If you’re still working on this, please respond here after you’ve made the changes we’ve requested and our team will re-open it for further review.
|
If you’re still working on this, please respond here after you’ve made the changes we’ve 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.
|
||||||
|
|||||||
1
.github/workflows/version-auto-bump.yml
vendored
1
.github/workflows/version-auto-bump.yml
vendored
@@ -37,3 +37,4 @@ jobs:
|
|||||||
uses: ./.github/workflows/version-bump.yml
|
uses: ./.github/workflows/version-bump.yml
|
||||||
with:
|
with:
|
||||||
version_number: ${{ needs.setup.outputs.version_number }}
|
version_number: ${{ needs.setup.outputs.version_number }}
|
||||||
|
secrets: inherit
|
||||||
152
.github/workflows/version-bump.yml
vendored
152
.github/workflows/version-bump.yml
vendored
@@ -1,26 +1,23 @@
|
|||||||
---
|
---
|
||||||
name: Version Bump
|
name: Version Bump
|
||||||
|
run-name: Version Bump - v${{ inputs.version_number }}
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
version_number:
|
version_number:
|
||||||
description: "New Version"
|
description: "New version (example: '2024.1.0')"
|
||||||
required: true
|
required: true
|
||||||
workflow_call:
|
cut_rc_branch:
|
||||||
inputs:
|
description: "Cut RC branch?"
|
||||||
version_number:
|
default: true
|
||||||
required: true
|
type: boolean
|
||||||
type: string
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
bump_version:
|
bump_version:
|
||||||
name: "Create version_bump_${{ github.event.inputs.version_number }} branch"
|
name: "Bump Version to v${{ inputs.version_number }}"
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Branch
|
|
||||||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
|
||||||
|
|
||||||
- name: Login to Azure - CI Subscription
|
- name: Login to Azure - CI Subscription
|
||||||
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.7
|
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.7
|
||||||
with:
|
with:
|
||||||
@@ -28,10 +25,18 @@ jobs:
|
|||||||
|
|
||||||
- name: Retrieve secrets
|
- name: Retrieve secrets
|
||||||
id: retrieve-secrets
|
id: retrieve-secrets
|
||||||
uses: bitwarden/gh-actions/get-keyvault-secrets@4a7ddc1b38ca5cb4e3e43578f4df5cabe4f55a67
|
uses: bitwarden/gh-actions/get-keyvault-secrets@main
|
||||||
with:
|
with:
|
||||||
keyvault: "bitwarden-ci"
|
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@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
|
||||||
|
with:
|
||||||
|
ref: main
|
||||||
|
repository: bitwarden/mobile
|
||||||
|
|
||||||
- name: Import GPG key
|
- name: Import GPG key
|
||||||
uses: crazy-max/ghaction-import-gpg@d6f3f49f3345e29369fe57596a3ca8f94c4d2ca7 # v5.4.0
|
uses: crazy-max/ghaction-import-gpg@d6f3f49f3345e29369fe57596a3ca8f94c4d2ca7 # v5.4.0
|
||||||
@@ -42,37 +47,68 @@ jobs:
|
|||||||
git_commit_gpgsign: true
|
git_commit_gpgsign: true
|
||||||
|
|
||||||
- name: Create Version Branch
|
- 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
|
- name: Bump Version - Android XML
|
||||||
uses: bitwarden/gh-actions/version-bump@4a7ddc1b38ca5cb4e3e43578f4df5cabe4f55a67
|
uses: bitwarden/gh-actions/version-bump@main
|
||||||
with:
|
with:
|
||||||
version: ${{ github.event.inputs.version_number }}
|
version: ${{ inputs.version_number }}
|
||||||
file_path: "./src/Android/Properties/AndroidManifest.xml"
|
file_path: "src/Android/Properties/AndroidManifest.xml"
|
||||||
|
|
||||||
- name: Bump Version - iOS.Autofill
|
- name: Bump Version - iOS.Autofill
|
||||||
uses: bitwarden/gh-actions/version-bump@4a7ddc1b38ca5cb4e3e43578f4df5cabe4f55a67
|
uses: bitwarden/gh-actions/version-bump@main
|
||||||
with:
|
with:
|
||||||
version: ${{ github.event.inputs.version_number }}
|
version: ${{ inputs.version_number }}
|
||||||
file_path: "./src/iOS.Autofill/Info.plist"
|
file_path: "src/iOS.Autofill/Info.plist"
|
||||||
|
|
||||||
- name: Bump Version - iOS.Extension
|
- name: Bump Version - iOS.Extension
|
||||||
uses: bitwarden/gh-actions/version-bump@4a7ddc1b38ca5cb4e3e43578f4df5cabe4f55a67
|
uses: bitwarden/gh-actions/version-bump@main
|
||||||
with:
|
with:
|
||||||
version: ${{ github.event.inputs.version_number }}
|
version: ${{ inputs.version_number }}
|
||||||
file_path: "./src/iOS.Extension/Info.plist"
|
file_path: "src/iOS.Extension/Info.plist"
|
||||||
|
|
||||||
- name: Bump Version - iOS.ShareExtension
|
- name: Bump Version - iOS.ShareExtension
|
||||||
uses: bitwarden/gh-actions/version-bump@4a7ddc1b38ca5cb4e3e43578f4df5cabe4f55a67
|
uses: bitwarden/gh-actions/version-bump@main
|
||||||
with:
|
with:
|
||||||
version: ${{ github.event.inputs.version_number }}
|
version: ${{ inputs.version_number }}
|
||||||
file_path: "./src/iOS.ShareExtension/Info.plist"
|
file_path: "src/iOS.ShareExtension/Info.plist"
|
||||||
|
|
||||||
- name: Bump Version - iOS
|
- name: Bump Version - iOS
|
||||||
uses: bitwarden/gh-actions/version-bump@4a7ddc1b38ca5cb4e3e43578f4df5cabe4f55a67
|
uses: bitwarden/gh-actions/version-bump@main
|
||||||
with:
|
with:
|
||||||
version: ${{ github.event.inputs.version_number }}
|
version: ${{ inputs.version_number }}
|
||||||
file_path: "./src/iOS/Info.plist"
|
file_path: "src/iOS/Info.plist"
|
||||||
|
|
||||||
- name: Setup git
|
- name: Setup git
|
||||||
run: |
|
run: |
|
||||||
@@ -91,22 +127,24 @@ jobs:
|
|||||||
|
|
||||||
- name: Commit files
|
- name: Commit files
|
||||||
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
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
|
- name: Push changes
|
||||||
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
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
|
- name: Create Version PR
|
||||||
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
||||||
|
id: create-pr
|
||||||
env:
|
env:
|
||||||
PR_BRANCH: "version_bump_${{ github.event.inputs.version_number }}"
|
GH_TOKEN: ${{ steps.retrieve-secrets.outputs.github-pat-bitwarden-devops-bot-repo-scope }}
|
||||||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
PR_BRANCH: ${{ steps.create-branch.outputs.name }}
|
||||||
BASE_BRANCH: master
|
TITLE: "Bump version to ${{ inputs.version_number }}"
|
||||||
TITLE: "Bump version to ${{ github.event.inputs.version_number }}"
|
|
||||||
run: |
|
run: |
|
||||||
gh pr create --title "$TITLE" \
|
PR_URL=$(gh pr create --title "$TITLE" \
|
||||||
--base "$BASE" \
|
--base "main" \
|
||||||
--head "$PR_BRANCH" \
|
--head "$PR_BRANCH" \
|
||||||
--label "version update" \
|
--label "version update" \
|
||||||
--label "automated pr" \
|
--label "automated pr" \
|
||||||
@@ -119,4 +157,42 @@ jobs:
|
|||||||
- [X] Other
|
- [X] Other
|
||||||
|
|
||||||
## Objective
|
## 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
|
||||||
|
|||||||
2
.github/workflows/workflow-linter.yml
vendored
2
.github/workflows/workflow-linter.yml
vendored
@@ -8,4 +8,4 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
call-workflow:
|
call-workflow:
|
||||||
uses: bitwarden/gh-actions/.github/workflows/workflow-linter.yml@4a7ddc1b38ca5cb4e3e43578f4df5cabe4f55a67
|
uses: bitwarden/gh-actions/.github/workflows/workflow-linter.yml@main
|
||||||
|
|||||||
7
global.json
Normal file
7
global.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"sdk": {
|
||||||
|
"version": "7.0.400",
|
||||||
|
"rollForward": "latestPatch",
|
||||||
|
"allowPrerelease": false
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -107,6 +107,7 @@ namespace Bit.Droid.Accessibility
|
|||||||
new Browser("org.bromite.chromium", "url_bar"),
|
new Browser("org.bromite.chromium", "url_bar"),
|
||||||
new Browser("org.chromium.chrome", "url_bar"),
|
new Browser("org.chromium.chrome", "url_bar"),
|
||||||
new Browser("org.codeaurora.swe.browser", "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.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", "mozac_browser_toolbar_url_view"),
|
||||||
new Browser("org.mozilla.fenix.nightly", "mozac_browser_toolbar_url_view"), // [DEPRECATED ENTRY]
|
new Browser("org.mozilla.fenix.nightly", "mozac_browser_toolbar_url_view"), // [DEPRECATED ENTRY]
|
||||||
|
|||||||
@@ -128,6 +128,7 @@ namespace Bit.Droid.Autofill
|
|||||||
"org.bromite.chromium",
|
"org.bromite.chromium",
|
||||||
"org.chromium.chrome",
|
"org.chromium.chrome",
|
||||||
"org.codeaurora.swe.browser",
|
"org.codeaurora.swe.browser",
|
||||||
|
"org.cromite.cromite",
|
||||||
"org.gnu.icecat",
|
"org.gnu.icecat",
|
||||||
"org.mozilla.fenix",
|
"org.mozilla.fenix",
|
||||||
"org.mozilla.fenix.nightly",
|
"org.mozilla.fenix.nightly",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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.9.3" 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="2023.12.1" android:installLocation="internalOnly" package="com.x8bit.bitwarden">
|
||||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="33" />
|
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="33" />
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
<uses-permission android:name="android.permission.NFC" />
|
<uses-permission android:name="android.permission.NFC" />
|
||||||
|
|||||||
@@ -236,6 +236,9 @@
|
|||||||
<compatibility-package
|
<compatibility-package
|
||||||
android:name="org.codeaurora.swe.browser"
|
android:name="org.codeaurora.swe.browser"
|
||||||
android:maxLongVersionCode="10000000000"/>
|
android:maxLongVersionCode="10000000000"/>
|
||||||
|
<compatibility-package
|
||||||
|
android:name="org.cromite.cromite"
|
||||||
|
android:maxLongVersionCode="10000000000"/>
|
||||||
<compatibility-package
|
<compatibility-package
|
||||||
android:name="org.gnu.icecat"
|
android:name="org.gnu.icecat"
|
||||||
android:maxLongVersionCode="10000000000"/>
|
android:maxLongVersionCode="10000000000"/>
|
||||||
|
|||||||
@@ -171,6 +171,11 @@ namespace Bit.App
|
|||||||
new NavigationPage(new UpdateTempPasswordPage()));
|
new NavigationPage(new UpdateTempPasswordPage()));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
else if (message.Command == Constants.ForceSetPassword)
|
||||||
|
{
|
||||||
|
await Device.InvokeOnMainThreadAsync(() => Application.Current.MainPage.Navigation.PushModalAsync(
|
||||||
|
new NavigationPage(new SetPasswordPage(orgIdentifier: (string)message.Data))));
|
||||||
|
}
|
||||||
else if (message.Command == "syncCompleted")
|
else if (message.Command == "syncCompleted")
|
||||||
{
|
{
|
||||||
await _configService.GetAsync(true);
|
await _configService.GetAsync(true);
|
||||||
|
|||||||
@@ -1,14 +1,16 @@
|
|||||||
using Xamarin.Forms;
|
using System.Runtime.CompilerServices;
|
||||||
|
using Bit.App.Utilities;
|
||||||
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace Bit.App.Controls
|
namespace Bit.App.Controls
|
||||||
{
|
{
|
||||||
public class BaseSettingItemView : ContentView
|
public class BaseSettingItemView : ContentView
|
||||||
{
|
{
|
||||||
public static readonly BindableProperty TitleProperty = BindableProperty.Create(
|
public static readonly BindableProperty TitleProperty = BindableProperty.Create(
|
||||||
nameof(Title), typeof(string), typeof(SwitchItemView), null, BindingMode.OneWay);
|
nameof(Title), typeof(string), typeof(SwitchItemView), null);
|
||||||
|
|
||||||
public static readonly BindableProperty SubtitleProperty = BindableProperty.Create(
|
public static readonly BindableProperty SubtitleProperty = BindableProperty.Create(
|
||||||
nameof(Subtitle), typeof(string), typeof(SwitchItemView), null, BindingMode.OneWay);
|
nameof(Subtitle), typeof(string), typeof(SwitchItemView), null);
|
||||||
|
|
||||||
public string Title
|
public string Title
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ namespace Bit.App.Controls
|
|||||||
public partial class SettingChooserItemView : BaseSettingItemView
|
public partial class SettingChooserItemView : BaseSettingItemView
|
||||||
{
|
{
|
||||||
public static readonly BindableProperty DisplayValueProperty = BindableProperty.Create(
|
public static readonly BindableProperty DisplayValueProperty = BindableProperty.Create(
|
||||||
nameof(DisplayValue), typeof(string), typeof(SettingChooserItemView), null, BindingMode.OneWay);
|
nameof(DisplayValue), typeof(string), typeof(SettingChooserItemView), null);
|
||||||
|
|
||||||
public static readonly BindableProperty ChooseCommandProperty = BindableProperty.Create(
|
public static readonly BindableProperty ChooseCommandProperty = BindableProperty.Create(
|
||||||
nameof(ChooseCommand), typeof(ICommand), typeof(ExternalLinkItemView));
|
nameof(ChooseCommand), typeof(ICommand), typeof(ExternalLinkItemView));
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ using System.Threading.Tasks;
|
|||||||
using System.Windows.Input;
|
using System.Windows.Input;
|
||||||
using Bit.App.Resources;
|
using Bit.App.Resources;
|
||||||
using Bit.Core.Abstractions;
|
using Bit.Core.Abstractions;
|
||||||
using Bit.Core.Models.Data;
|
using Bit.Core.Enums;
|
||||||
using Bit.Core.Utilities;
|
using Bit.Core.Utilities;
|
||||||
using Xamarin.CommunityToolkit.ObjectModel;
|
using Xamarin.CommunityToolkit.ObjectModel;
|
||||||
|
|
||||||
@@ -19,14 +19,25 @@ namespace Bit.App.Pages
|
|||||||
_environmentService = ServiceContainer.Resolve<IEnvironmentService>("environmentService");
|
_environmentService = ServiceContainer.Resolve<IEnvironmentService>("environmentService");
|
||||||
|
|
||||||
PageTitle = AppResources.Settings;
|
PageTitle = AppResources.Settings;
|
||||||
BaseUrl = _environmentService.BaseUrl == EnvironmentUrlData.DefaultEU.Base || EnvironmentUrlData.DefaultUS.Base == _environmentService.BaseUrl ?
|
SubmitCommand = new AsyncCommand(SubmitAsync, onException: ex => OnSubmitException(ex), allowsMultipleExecutions: false);
|
||||||
string.Empty : _environmentService.BaseUrl;
|
Init();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Init()
|
||||||
|
{
|
||||||
|
if (_environmentService.SelectedRegion != Region.SelfHosted ||
|
||||||
|
_environmentService.BaseUrl == Region.US.BaseUrl() ||
|
||||||
|
_environmentService.BaseUrl == Region.EU.BaseUrl())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
BaseUrl = _environmentService.BaseUrl;
|
||||||
WebVaultUrl = _environmentService.WebVaultUrl;
|
WebVaultUrl = _environmentService.WebVaultUrl;
|
||||||
ApiUrl = _environmentService.ApiUrl;
|
ApiUrl = _environmentService.ApiUrl;
|
||||||
IdentityUrl = _environmentService.IdentityUrl;
|
IdentityUrl = _environmentService.IdentityUrl;
|
||||||
IconsUrl = _environmentService.IconsUrl;
|
IconsUrl = _environmentService.IconsUrl;
|
||||||
NotificationsUrls = _environmentService.NotificationsUrl;
|
NotificationsUrls = _environmentService.NotificationsUrl;
|
||||||
SubmitCommand = new AsyncCommand(SubmitAsync, onException: ex => OnSubmitException(ex), allowsMultipleExecutions: false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public ICommand SubmitCommand { get; }
|
public ICommand SubmitCommand { get; }
|
||||||
@@ -46,8 +57,7 @@ namespace Bit.App.Pages
|
|||||||
await Page.DisplayAlert(AppResources.AnErrorHasOccurred, AppResources.EnvironmentPageUrlsError, AppResources.Ok);
|
await Page.DisplayAlert(AppResources.AnErrorHasOccurred, AppResources.EnvironmentPageUrlsError, AppResources.Ok);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
var urls = new Core.Models.Data.EnvironmentUrlData
|
||||||
var resUrls = await _environmentService.SetUrlsAsync(new Core.Models.Data.EnvironmentUrlData
|
|
||||||
{
|
{
|
||||||
Base = BaseUrl,
|
Base = BaseUrl,
|
||||||
Api = ApiUrl,
|
Api = ApiUrl,
|
||||||
@@ -55,7 +65,8 @@ namespace Bit.App.Pages
|
|||||||
WebVault = WebVaultUrl,
|
WebVault = WebVaultUrl,
|
||||||
Icons = IconsUrl,
|
Icons = IconsUrl,
|
||||||
Notifications = NotificationsUrls
|
Notifications = NotificationsUrls
|
||||||
});
|
};
|
||||||
|
var resUrls = await _environmentService.SetRegionAsync(urls.Region, urls);
|
||||||
|
|
||||||
// re-set urls since service can change them, ex: prefixing https://
|
// re-set urls since service can change them, ex: prefixing https://
|
||||||
BaseUrl = resUrls.Base;
|
BaseUrl = resUrls.Base;
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ namespace Bit.App.Pages
|
|||||||
});
|
});
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
await _vm.UpdateEnvironment();
|
await _vm.UpdateEnvironmentAsync();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ using System.Threading.Tasks;
|
|||||||
using Bit.App.Abstractions;
|
using Bit.App.Abstractions;
|
||||||
using Bit.App.Controls;
|
using Bit.App.Controls;
|
||||||
using Bit.App.Resources;
|
using Bit.App.Resources;
|
||||||
|
using Bit.App.Styles;
|
||||||
using Bit.App.Utilities;
|
using Bit.App.Utilities;
|
||||||
using Bit.Core;
|
using Bit.Core;
|
||||||
using Bit.Core.Abstractions;
|
using Bit.Core.Abstractions;
|
||||||
@@ -10,13 +11,12 @@ using Bit.Core.Models.Data;
|
|||||||
using Bit.Core.Utilities;
|
using Bit.Core.Utilities;
|
||||||
using Xamarin.CommunityToolkit.ObjectModel;
|
using Xamarin.CommunityToolkit.ObjectModel;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
using BwRegion = Bit.Core.Enums.Region;
|
||||||
|
|
||||||
namespace Bit.App.Pages
|
namespace Bit.App.Pages
|
||||||
{
|
{
|
||||||
public class HomeViewModel : BaseViewModel
|
public class HomeViewModel : BaseViewModel
|
||||||
{
|
{
|
||||||
private const string LOGGING_IN_ON_US = "bitwarden.com";
|
|
||||||
private const string LOGGING_IN_ON_EU = "bitwarden.eu";
|
|
||||||
|
|
||||||
private readonly IStateService _stateService;
|
private readonly IStateService _stateService;
|
||||||
private readonly IMessagingService _messagingService;
|
private readonly IMessagingService _messagingService;
|
||||||
@@ -165,8 +165,8 @@ namespace Bit.App.Pages
|
|||||||
{
|
{
|
||||||
_displayEuEnvironment = await _configService.GetFeatureFlagBoolAsync(Constants.DisplayEuEnvironmentFlag);
|
_displayEuEnvironment = await _configService.GetFeatureFlagBoolAsync(Constants.DisplayEuEnvironmentFlag);
|
||||||
var options = _displayEuEnvironment
|
var options = _displayEuEnvironment
|
||||||
? new string[] { LOGGING_IN_ON_US, LOGGING_IN_ON_EU, AppResources.SelfHosted }
|
? new string[] { BwRegion.US.Domain(), BwRegion.EU.Domain(), AppResources.SelfHosted }
|
||||||
: new string[] { LOGGING_IN_ON_US, AppResources.SelfHosted };
|
: new string[] { BwRegion.US.Domain(), AppResources.SelfHosted };
|
||||||
|
|
||||||
await Device.InvokeOnMainThreadAsync(async () =>
|
await Device.InvokeOnMainThreadAsync(async () =>
|
||||||
{
|
{
|
||||||
@@ -183,35 +183,23 @@ namespace Bit.App.Pages
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
await _environmentService.SetUrlsAsync(result == LOGGING_IN_ON_EU ? EnvironmentUrlData.DefaultEU : EnvironmentUrlData.DefaultUS);
|
await _environmentService.SetRegionAsync(result == BwRegion.EU.Domain() ? BwRegion.EU : BwRegion.US);
|
||||||
await _configService.GetAsync(true);
|
await _configService.GetAsync(true);
|
||||||
SelectedEnvironmentName = result;
|
SelectedEnvironmentName = result;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task UpdateEnvironment()
|
public async Task UpdateEnvironmentAsync()
|
||||||
{
|
{
|
||||||
var environmentsSaved = await _stateService.GetPreAuthEnvironmentUrlsAsync();
|
var region = _environmentService.SelectedRegion;
|
||||||
if (environmentsSaved == null || environmentsSaved.IsEmpty)
|
if (region == BwRegion.SelfHosted)
|
||||||
{
|
{
|
||||||
await _environmentService.SetUrlsAsync(EnvironmentUrlData.DefaultUS);
|
SelectedEnvironmentName = AppResources.SelfHosted;
|
||||||
environmentsSaved = EnvironmentUrlData.DefaultUS;
|
await _configService.GetAsync(true);
|
||||||
SelectedEnvironmentName = LOGGING_IN_ON_US;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (environmentsSaved.Base == EnvironmentUrlData.DefaultUS.Base)
|
|
||||||
{
|
|
||||||
SelectedEnvironmentName = LOGGING_IN_ON_US;
|
|
||||||
}
|
|
||||||
else if (environmentsSaved.Base == EnvironmentUrlData.DefaultEU.Base)
|
|
||||||
{
|
|
||||||
SelectedEnvironmentName = LOGGING_IN_ON_EU;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
await _configService.GetAsync(true);
|
SelectedEnvironmentName = region.Domain();
|
||||||
SelectedEnvironmentName = AppResources.SelfHosted;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -206,13 +206,8 @@ namespace Bit.App.Pages
|
|||||||
_logger.Exception(new NullReferenceException("Email not found in storage"));
|
_logger.Exception(new NullReferenceException("Email not found in storage"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var webVault = _environmentService.GetWebVaultUrl(true);
|
|
||||||
if (string.IsNullOrWhiteSpace(webVault))
|
LoggedInAsText = string.Format(AppResources.LoggedInAsOn, _email, _environmentService.GetCurrentDomain());
|
||||||
{
|
|
||||||
webVault = "https://bitwarden.com";
|
|
||||||
}
|
|
||||||
var webVaultHostname = CoreHelpers.GetHostname(webVault);
|
|
||||||
LoggedInAsText = string.Format(AppResources.LoggedInAsOn, _email, webVaultHostname);
|
|
||||||
if (PinEnabled)
|
if (PinEnabled)
|
||||||
{
|
{
|
||||||
PageTitle = AppResources.VerifyPIN;
|
PageTitle = AppResources.VerifyPIN;
|
||||||
|
|||||||
@@ -162,7 +162,7 @@ namespace Bit.App.Pages
|
|||||||
Email = await _stateService.GetRememberedEmailAsync();
|
Email = await _stateService.GetRememberedEmailAsync();
|
||||||
}
|
}
|
||||||
CanRemoveAccount = await _stateService.GetActiveUserEmailAsync() != Email;
|
CanRemoveAccount = await _stateService.GetActiveUserEmailAsync() != Email;
|
||||||
EnvironmentDomainName = CoreHelpers.GetDomain((await _stateService.GetPreAuthEnvironmentUrlsAsync())?.Base);
|
EnvironmentDomainName = _environmentService.GetCurrentDomain();
|
||||||
IsKnownDevice = await _apiService.GetKnownDeviceAsync(Email, await _appIdService.GetAppIdAsync());
|
IsKnownDevice = await _apiService.GetKnownDeviceAsync(Email, await _appIdService.GetAppIdAsync());
|
||||||
}
|
}
|
||||||
catch (ApiException apiEx) when (apiEx.Error.StatusCode == System.Net.HttpStatusCode.Unauthorized)
|
catch (ApiException apiEx) when (apiEx.Error.StatusCode == System.Net.HttpStatusCode.Unauthorized)
|
||||||
|
|||||||
@@ -230,19 +230,18 @@ namespace Bit.App.Pages
|
|||||||
StartDeviceApprovalOptionsAction?.Invoke();
|
StartDeviceApprovalOptionsAction?.Invoke();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// If user doesn't have a MP, but has reset password permission, they must set a MP
|
|
||||||
if (!decryptOptions.HasMasterPassword &&
|
|
||||||
decryptOptions.TrustedDeviceOption.HasManageResetPasswordPermission)
|
|
||||||
{
|
|
||||||
StartSetPasswordAction?.Invoke();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Update temp password only if the device is trusted and therefore has a decrypted User Key set
|
// Update temp password only if the device is trusted and therefore has a decrypted User Key set
|
||||||
if (response.ForcePasswordReset)
|
if (response.ForcePasswordReset)
|
||||||
{
|
{
|
||||||
UpdateTempPasswordAction?.Invoke();
|
UpdateTempPasswordAction?.Invoke();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
// If user doesn't have a MP, but has reset password permission, they must set a MP
|
||||||
|
if (!decryptOptions.HasMasterPassword &&
|
||||||
|
decryptOptions.TrustedDeviceOption.HasManageResetPasswordPermission)
|
||||||
|
{
|
||||||
|
await _stateService.SetForcePasswordResetReasonAsync(ForcePasswordResetReason.TdeUserWithoutPasswordHasPasswordResetPermission);
|
||||||
|
}
|
||||||
// Device is trusted and has keys, so we can decrypt
|
// Device is trusted and has keys, so we can decrypt
|
||||||
_syncService.FullSyncAsync(true).FireAndForget();
|
_syncService.FullSyncAsync(true).FireAndForget();
|
||||||
SsoAuthSuccessAction?.Invoke();
|
SsoAuthSuccessAction?.Invoke();
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
<StackLayout Spacing="20">
|
<StackLayout Spacing="20">
|
||||||
<StackLayout StyleClass="box">
|
<StackLayout StyleClass="box">
|
||||||
<StackLayout StyleClass="box-row">
|
<StackLayout StyleClass="box-row">
|
||||||
<Label Text="{u:I18n SetMasterPasswordSummary}"
|
<Label Text="{Binding SetMasterPasswordSummary}"
|
||||||
StyleClass="text-md"
|
StyleClass="text-md"
|
||||||
HorizontalTextAlignment="Start"></Label>
|
HorizontalTextAlignment="Start"></Label>
|
||||||
</StackLayout>
|
</StackLayout>
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ using System.Text.RegularExpressions;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Bit.App.Abstractions;
|
using Bit.App.Abstractions;
|
||||||
using Bit.App.Resources;
|
using Bit.App.Resources;
|
||||||
using Bit.App.Utilities;
|
|
||||||
using Bit.Core;
|
using Bit.Core;
|
||||||
using Bit.Core.Abstractions;
|
using Bit.Core.Abstractions;
|
||||||
using Bit.Core.Enums;
|
using Bit.Core.Enums;
|
||||||
@@ -28,6 +27,7 @@ namespace Bit.App.Pages
|
|||||||
private readonly IPolicyService _policyService;
|
private readonly IPolicyService _policyService;
|
||||||
private readonly IPasswordGenerationService _passwordGenerationService;
|
private readonly IPasswordGenerationService _passwordGenerationService;
|
||||||
private readonly II18nService _i18nService;
|
private readonly II18nService _i18nService;
|
||||||
|
private readonly ISyncService _syncService;
|
||||||
|
|
||||||
private bool _showPassword;
|
private bool _showPassword;
|
||||||
private bool _isPolicyInEffect;
|
private bool _isPolicyInEffect;
|
||||||
@@ -46,6 +46,7 @@ namespace Bit.App.Pages
|
|||||||
_passwordGenerationService =
|
_passwordGenerationService =
|
||||||
ServiceContainer.Resolve<IPasswordGenerationService>("passwordGenerationService");
|
ServiceContainer.Resolve<IPasswordGenerationService>("passwordGenerationService");
|
||||||
_i18nService = ServiceContainer.Resolve<II18nService>("i18nService");
|
_i18nService = ServiceContainer.Resolve<II18nService>("i18nService");
|
||||||
|
_syncService = ServiceContainer.Resolve<ISyncService>();
|
||||||
|
|
||||||
PageTitle = AppResources.SetMasterPassword;
|
PageTitle = AppResources.SetMasterPassword;
|
||||||
TogglePasswordCommand = new Command(TogglePassword);
|
TogglePasswordCommand = new Command(TogglePassword);
|
||||||
@@ -100,11 +101,17 @@ namespace Bit.App.Pages
|
|||||||
public Action CloseAction { get; set; }
|
public Action CloseAction { get; set; }
|
||||||
public string OrgIdentifier { get; set; }
|
public string OrgIdentifier { get; set; }
|
||||||
public string OrgId { get; set; }
|
public string OrgId { get; set; }
|
||||||
|
public ForcePasswordResetReason? ForceSetPasswordReason { get; private set; }
|
||||||
|
|
||||||
|
public string SetMasterPasswordSummary => ForceSetPasswordReason == ForcePasswordResetReason.TdeUserWithoutPasswordHasPasswordResetPermission
|
||||||
|
? AppResources.YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword
|
||||||
|
: AppResources.YourOrganizationRequiresYouToSetAMasterPassword;
|
||||||
|
|
||||||
public async Task InitAsync()
|
public async Task InitAsync()
|
||||||
{
|
{
|
||||||
await CheckPasswordPolicy();
|
await CheckPasswordPolicy();
|
||||||
|
ForceSetPasswordReason = await _stateService.GetForcePasswordResetReasonAsync();
|
||||||
|
TriggerPropertyChanged(nameof(SetMasterPasswordSummary));
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var response = await _apiService.GetOrganizationAutoEnrollStatusAsync(OrgIdentifier);
|
var response = await _apiService.GetOrganizationAutoEnrollStatusAsync(OrgIdentifier);
|
||||||
@@ -171,8 +178,7 @@ namespace Bit.App.Pages
|
|||||||
|
|
||||||
var (newUserKey, newProtectedUserKey) = await _cryptoService.EncryptUserKeyWithMasterKeyAsync(newMasterKey,
|
var (newUserKey, newProtectedUserKey) = await _cryptoService.EncryptUserKeyWithMasterKeyAsync(newMasterKey,
|
||||||
await _cryptoService.GetUserKeyAsync() ?? await _cryptoService.MakeUserKeyAsync());
|
await _cryptoService.GetUserKeyAsync() ?? await _cryptoService.MakeUserKeyAsync());
|
||||||
|
var keysRequest = await GetKeysForSetPasswordRequestAsync(newUserKey);
|
||||||
var (newPublicKey, newProtectedPrivateKey) = await _cryptoService.MakeKeyPairAsync(newUserKey);
|
|
||||||
var request = new SetPasswordRequest
|
var request = new SetPasswordRequest
|
||||||
{
|
{
|
||||||
MasterPasswordHash = masterPasswordHash,
|
MasterPasswordHash = masterPasswordHash,
|
||||||
@@ -183,16 +189,12 @@ namespace Bit.App.Pages
|
|||||||
KdfMemory = kdfConfig.Memory,
|
KdfMemory = kdfConfig.Memory,
|
||||||
KdfParallelism = kdfConfig.Parallelism,
|
KdfParallelism = kdfConfig.Parallelism,
|
||||||
OrgIdentifier = OrgIdentifier,
|
OrgIdentifier = OrgIdentifier,
|
||||||
Keys = new KeysRequest
|
Keys = keysRequest
|
||||||
{
|
|
||||||
PublicKey = newPublicKey,
|
|
||||||
EncryptedPrivateKey = newProtectedPrivateKey.EncryptedString
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
await _deviceActionService.ShowLoadingAsync(AppResources.CreatingAccount);
|
await _deviceActionService.ShowLoadingAsync(AppResources.Loading);
|
||||||
// Set Password and relevant information
|
// Set Password and relevant information
|
||||||
await _apiService.SetPasswordAsync(request);
|
await _apiService.SetPasswordAsync(request);
|
||||||
await _stateService.SetKdfConfigurationAsync(kdfConfig);
|
await _stateService.SetKdfConfigurationAsync(kdfConfig);
|
||||||
@@ -200,7 +202,13 @@ namespace Bit.App.Pages
|
|||||||
await _cryptoService.SetMasterKeyAsync(newMasterKey);
|
await _cryptoService.SetMasterKeyAsync(newMasterKey);
|
||||||
await _cryptoService.SetMasterKeyHashAsync(localMasterPasswordHash);
|
await _cryptoService.SetMasterKeyHashAsync(localMasterPasswordHash);
|
||||||
await _cryptoService.SetMasterKeyEncryptedUserKeyAsync(newProtectedUserKey.EncryptedString);
|
await _cryptoService.SetMasterKeyEncryptedUserKeyAsync(newProtectedUserKey.EncryptedString);
|
||||||
await _cryptoService.SetUserPrivateKeyAsync(newProtectedPrivateKey.EncryptedString);
|
|
||||||
|
// Set private key only for new JIT provisioned users in MP encryption orgs
|
||||||
|
// Existing TDE users will have private key set on sync or on login
|
||||||
|
if (keysRequest != null)
|
||||||
|
{
|
||||||
|
await _cryptoService.SetUserPrivateKeyAsync(keysRequest.EncryptedPrivateKey);
|
||||||
|
}
|
||||||
|
|
||||||
if (ResetPasswordAutoEnroll)
|
if (ResetPasswordAutoEnroll)
|
||||||
{
|
{
|
||||||
@@ -221,6 +229,9 @@ namespace Bit.App.Pages
|
|||||||
await _apiService.PutOrganizationUserResetPasswordEnrollmentAsync(OrgId, userId, resetRequest);
|
await _apiService.PutOrganizationUserResetPasswordEnrollmentAsync(OrgId, userId, resetRequest);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await _stateService.SetForcePasswordResetReasonAsync(null);
|
||||||
|
await _stateService.SetUserHasMasterPasswordAsync(true);
|
||||||
|
await _syncService.FullSyncAsync(true);
|
||||||
await _deviceActionService.HideLoadingAsync();
|
await _deviceActionService.HideLoadingAsync();
|
||||||
SetPasswordSuccessAction?.Invoke();
|
SetPasswordSuccessAction?.Invoke();
|
||||||
}
|
}
|
||||||
@@ -235,6 +246,21 @@ namespace Bit.App.Pages
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private async Task<KeysRequest> GetKeysForSetPasswordRequestAsync(UserKey newUserKey)
|
||||||
|
{
|
||||||
|
if (ForceSetPasswordReason == ForcePasswordResetReason.TdeUserWithoutPasswordHasPasswordResetPermission)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
var (newPublicKey, newProtectedPrivateKey) = await _cryptoService.MakeKeyPairAsync(newUserKey);
|
||||||
|
return new KeysRequest
|
||||||
|
{
|
||||||
|
PublicKey = newPublicKey,
|
||||||
|
EncryptedPrivateKey = newProtectedPrivateKey.EncryptedString
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
public void TogglePassword()
|
public void TogglePassword()
|
||||||
{
|
{
|
||||||
ShowPassword = !ShowPassword;
|
ShowPassword = !ShowPassword;
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ using Bit.App.Utilities;
|
|||||||
using Bit.Core.Abstractions;
|
using Bit.Core.Abstractions;
|
||||||
using Bit.Core.Enums;
|
using Bit.Core.Enums;
|
||||||
using Bit.Core.Exceptions;
|
using Bit.Core.Exceptions;
|
||||||
|
using Bit.Core.Models.Domain;
|
||||||
using Bit.Core.Models.Request;
|
using Bit.Core.Models.Request;
|
||||||
using Bit.Core.Services;
|
using Bit.Core.Services;
|
||||||
using Bit.Core.Utilities;
|
using Bit.Core.Utilities;
|
||||||
@@ -335,20 +336,18 @@ namespace Bit.App.Pages
|
|||||||
StartDeviceApprovalOptionsAction?.Invoke();
|
StartDeviceApprovalOptionsAction?.Invoke();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// If user doesn't have a MP, but has reset password permission, they must set a MP
|
|
||||||
if (!decryptOptions.HasMasterPassword &&
|
|
||||||
decryptOptions.TrustedDeviceOption.HasManageResetPasswordPermission)
|
|
||||||
{
|
|
||||||
StartSetPasswordAction?.Invoke();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Update temp password only if the device is trusted and therefore has a decrypted User Key set
|
// Update temp password only if the device is trusted and therefore has a decrypted User Key set
|
||||||
if (result.ForcePasswordReset)
|
if (result.ForcePasswordReset)
|
||||||
{
|
{
|
||||||
UpdateTempPasswordAction?.Invoke();
|
UpdateTempPasswordAction?.Invoke();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
// If user doesn't have a MP, but has reset password permission, they must set a MP
|
||||||
|
if (!decryptOptions.HasMasterPassword &&
|
||||||
|
decryptOptions.TrustedDeviceOption.HasManageResetPasswordPermission)
|
||||||
|
{
|
||||||
|
await _stateService.SetForcePasswordResetReasonAsync(ForcePasswordResetReason.TdeUserWithoutPasswordHasPasswordResetPermission);
|
||||||
|
}
|
||||||
// Device is trusted and has keys, so we can decrypt
|
// Device is trusted and has keys, so we can decrypt
|
||||||
_syncService.FullSyncAsync(true).FireAndForget();
|
_syncService.FullSyncAsync(true).FireAndForget();
|
||||||
await TwoFactorAuthSuccessAsync();
|
await TwoFactorAuthSuccessAsync();
|
||||||
|
|||||||
@@ -278,6 +278,15 @@
|
|||||||
Text="{Binding AddyIoDomainName}"
|
Text="{Binding AddyIoDomainName}"
|
||||||
StyleClass="box-value"
|
StyleClass="box-value"
|
||||||
AutomationId="AnonAddyDomainNameEntry" />
|
AutomationId="AnonAddyDomainNameEntry" />
|
||||||
|
<Label IsVisible="{Binding ForwardedEmailServiceSelected, Converter={StaticResource enumToBool}, ConverterParameter={x:Static enums:ForwardedEmailServiceType.ForwardEmail}}"
|
||||||
|
Text="{u:I18n DomainNameRequiredParenthesis}"
|
||||||
|
StyleClass="box-label"
|
||||||
|
Margin="0,10,0,0"/>
|
||||||
|
<Entry IsVisible="{Binding ForwardedEmailServiceSelected, Converter={StaticResource enumToBool}, ConverterParameter={x:Static enums:ForwardedEmailServiceType.ForwardEmail}}"
|
||||||
|
x:Name="_forwardEmailDomainNameEntry"
|
||||||
|
Text="{Binding ForwardEmailDomainName}"
|
||||||
|
StyleClass="box-value"
|
||||||
|
AutomationId="ForwardEmailDomainNameEntry" />
|
||||||
</StackLayout>
|
</StackLayout>
|
||||||
<!--RANDOM WORD OPTIONS-->
|
<!--RANDOM WORD OPTIONS-->
|
||||||
<Grid IsVisible="{Binding UsernameTypeSelected, Converter={StaticResource enumToBool}, ConverterParameter={x:Static enums:UsernameType.RandomWord}}">
|
<Grid IsVisible="{Binding UsernameTypeSelected, Converter={StaticResource enumToBool}, ConverterParameter={x:Static enums:UsernameType.RandomWord}}">
|
||||||
|
|||||||
@@ -81,6 +81,7 @@ namespace Bit.App.Pages
|
|||||||
ForwardedEmailServiceType.DuckDuckGo,
|
ForwardedEmailServiceType.DuckDuckGo,
|
||||||
ForwardedEmailServiceType.Fastmail,
|
ForwardedEmailServiceType.Fastmail,
|
||||||
ForwardedEmailServiceType.FirefoxRelay,
|
ForwardedEmailServiceType.FirefoxRelay,
|
||||||
|
ForwardedEmailServiceType.ForwardEmail,
|
||||||
ForwardedEmailServiceType.SimpleLogin
|
ForwardedEmailServiceType.SimpleLogin
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -461,6 +462,8 @@ namespace Bit.App.Pages
|
|||||||
return _usernameOptions.FirefoxRelayApiAccessToken;
|
return _usernameOptions.FirefoxRelayApiAccessToken;
|
||||||
case ForwardedEmailServiceType.SimpleLogin:
|
case ForwardedEmailServiceType.SimpleLogin:
|
||||||
return _usernameOptions.SimpleLoginApiKey;
|
return _usernameOptions.SimpleLoginApiKey;
|
||||||
|
case ForwardedEmailServiceType.ForwardEmail:
|
||||||
|
return _usernameOptions.ForwardEmailApiAccessToken;
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -505,6 +508,14 @@ namespace Bit.App.Pages
|
|||||||
changed = true;
|
changed = true;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case ForwardedEmailServiceType.ForwardEmail:
|
||||||
|
if (_usernameOptions.ForwardEmailApiAccessToken != value)
|
||||||
|
{
|
||||||
|
_usernameOptions.ForwardEmailApiAccessToken = value;
|
||||||
|
changed = true;
|
||||||
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -529,6 +540,7 @@ namespace Bit.App.Pages
|
|||||||
case ForwardedEmailServiceType.DuckDuckGo:
|
case ForwardedEmailServiceType.DuckDuckGo:
|
||||||
case ForwardedEmailServiceType.Fastmail:
|
case ForwardedEmailServiceType.Fastmail:
|
||||||
case ForwardedEmailServiceType.SimpleLogin:
|
case ForwardedEmailServiceType.SimpleLogin:
|
||||||
|
case ForwardedEmailServiceType.ForwardEmail:
|
||||||
return AppResources.APIKeyRequiredParenthesis;
|
return AppResources.APIKeyRequiredParenthesis;
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
@@ -559,6 +571,20 @@ namespace Bit.App.Pages
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public string ForwardEmailDomainName
|
||||||
|
{
|
||||||
|
get => _usernameOptions.ForwardEmailDomainName;
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if (_usernameOptions.ForwardEmailDomainName != value)
|
||||||
|
{
|
||||||
|
_usernameOptions.ForwardEmailDomainName = value;
|
||||||
|
TriggerPropertyChanged(nameof(ForwardEmailDomainName));
|
||||||
|
SaveUsernameOptionsAsync(false).FireAndForget();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public bool CapitalizeRandomWordUsername
|
public bool CapitalizeRandomWordUsername
|
||||||
{
|
{
|
||||||
get => _usernameOptions.CapitalizeRandomWordUsername;
|
get => _usernameOptions.CapitalizeRandomWordUsername;
|
||||||
@@ -803,6 +829,7 @@ namespace Bit.App.Pages
|
|||||||
TriggerPropertyChanged(nameof(GeneratorTypeSelected));
|
TriggerPropertyChanged(nameof(GeneratorTypeSelected));
|
||||||
TriggerPropertyChanged(nameof(UsernameTypeDescriptionLabel));
|
TriggerPropertyChanged(nameof(UsernameTypeDescriptionLabel));
|
||||||
TriggerPropertyChanged(nameof(EmailWebsite));
|
TriggerPropertyChanged(nameof(EmailWebsite));
|
||||||
|
TriggerPropertyChanged(nameof(ForwardEmailDomainName));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SetOptions()
|
private void SetOptions()
|
||||||
|
|||||||
@@ -53,6 +53,7 @@
|
|||||||
Title="{u:I18n AllowScreenCapture}"
|
Title="{u:I18n AllowScreenCapture}"
|
||||||
IsToggled="{Binding IsScreenCaptureAllowed}"
|
IsToggled="{Binding IsScreenCaptureAllowed}"
|
||||||
IsEnabled="{Binding CanToggleeScreenCaptureAllowed}"
|
IsEnabled="{Binding CanToggleeScreenCaptureAllowed}"
|
||||||
|
IsVisible="{OnPlatform Android=True, iOS=False}"
|
||||||
AutomationId="AllowScreenCaptureSwitch"
|
AutomationId="AllowScreenCaptureSwitch"
|
||||||
StyleClass="settings-item-view"
|
StyleClass="settings-item-view"
|
||||||
HorizontalOptions="FillAndExpand" />
|
HorizontalOptions="FillAndExpand" />
|
||||||
|
|||||||
@@ -110,8 +110,10 @@
|
|||||||
|
|
||||||
<controls:SettingChooserItemView
|
<controls:SettingChooserItemView
|
||||||
Title="{u:I18n SessionTimeoutAction}"
|
Title="{u:I18n SessionTimeoutAction}"
|
||||||
|
Subtitle="{Binding SetUpUnlockMethodLabel}"
|
||||||
DisplayValue="{Binding VaultTimeoutActionPickerViewModel.SelectedValue}"
|
DisplayValue="{Binding VaultTimeoutActionPickerViewModel.SelectedValue}"
|
||||||
ChooseCommand="{Binding VaultTimeoutActionPickerViewModel.SelectOptionCommand}"
|
ChooseCommand="{Binding VaultTimeoutActionPickerViewModel.SelectOptionCommand}"
|
||||||
|
IsEnabled="{Binding IsVaultTimeoutActionLockAllowed}"
|
||||||
AutomationId="VaultTimeoutActionChooser"
|
AutomationId="VaultTimeoutActionChooser"
|
||||||
StyleClass="settings-item-view"
|
StyleClass="settings-item-view"
|
||||||
HorizontalOptions="FillAndExpand"/>
|
HorizontalOptions="FillAndExpand"/>
|
||||||
@@ -148,6 +150,7 @@
|
|||||||
|
|
||||||
<controls:CustomLabel
|
<controls:CustomLabel
|
||||||
Text="{u:I18n LockNow}"
|
Text="{u:I18n LockNow}"
|
||||||
|
IsVisible="{Binding IsVaultTimeoutActionLockAllowed}"
|
||||||
StyleClass="settings-navigatable-label"
|
StyleClass="settings-navigatable-label"
|
||||||
AutomationId="LockNowLabel">
|
AutomationId="LockNowLabel">
|
||||||
<Label.GestureRecognizers>
|
<Label.GestureRecognizers>
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ namespace Bit.App.Pages
|
|||||||
_logger,
|
_logger,
|
||||||
OnVaultTimeoutActionChangingAsync,
|
OnVaultTimeoutActionChangingAsync,
|
||||||
AppResources.SessionTimeoutAction,
|
AppResources.SessionTimeoutAction,
|
||||||
_ => _inited && !HasVaultTimeoutActionPolicy,
|
_ => _inited && !HasVaultTimeoutActionPolicy && IsVaultTimeoutActionLockAllowed,
|
||||||
ex => HandleException(ex));
|
ex => HandleException(ex));
|
||||||
|
|
||||||
ToggleUseThisDeviceToApproveLoginRequestsCommand = CreateDefaultAsyncCommnad(ToggleUseThisDeviceToApproveLoginRequestsAsync, _ => _inited);
|
ToggleUseThisDeviceToApproveLoginRequestsCommand = CreateDefaultAsyncCommnad(ToggleUseThisDeviceToApproveLoginRequestsAsync, _ => _inited);
|
||||||
@@ -129,6 +129,7 @@ namespace Bit.App.Pages
|
|||||||
get => _canUnlockWithBiometrics;
|
get => _canUnlockWithBiometrics;
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
|
TriggerVaultTimeoutActionLockAllowedPropertyChanged();
|
||||||
if (SetProperty(ref _canUnlockWithBiometrics, value))
|
if (SetProperty(ref _canUnlockWithBiometrics, value))
|
||||||
{
|
{
|
||||||
((ICommand)ToggleCanUnlockWithBiometricsCommand).Execute(null);
|
((ICommand)ToggleCanUnlockWithBiometricsCommand).Execute(null);
|
||||||
@@ -141,6 +142,7 @@ namespace Bit.App.Pages
|
|||||||
get => _canUnlockWithPin;
|
get => _canUnlockWithPin;
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
|
TriggerVaultTimeoutActionLockAllowedPropertyChanged();
|
||||||
if (SetProperty(ref _canUnlockWithPin, value))
|
if (SetProperty(ref _canUnlockWithPin, value))
|
||||||
{
|
{
|
||||||
((ICommand)ToggleCanUnlockWithPinCommand).Execute(null);
|
((ICommand)ToggleCanUnlockWithPinCommand).Execute(null);
|
||||||
@@ -148,6 +150,10 @@ namespace Bit.App.Pages
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool IsVaultTimeoutActionLockAllowed => _hasMasterPassword || _canUnlockWithBiometrics || _canUnlockWithPin;
|
||||||
|
|
||||||
|
public string SetUpUnlockMethodLabel => IsVaultTimeoutActionLockAllowed ? null : AppResources.SetUpAnUnlockOptionToChangeYourVaultTimeoutAction;
|
||||||
|
|
||||||
public TimeSpan? CustomVaultTimeoutTime
|
public TimeSpan? CustomVaultTimeoutTime
|
||||||
{
|
{
|
||||||
get => _customVaultTimeoutTime;
|
get => _customVaultTimeoutTime;
|
||||||
@@ -164,6 +170,7 @@ namespace Bit.App.Pages
|
|||||||
MainThread.BeginInvokeOnMainThread(() => SetProperty(ref _customVaultTimeoutTime, oldValue));
|
MainThread.BeginInvokeOnMainThread(() => SetProperty(ref _customVaultTimeoutTime, oldValue));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
TriggerVaultTimeoutActionLockAllowedPropertyChanged();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -203,8 +210,6 @@ namespace Bit.App.Pages
|
|||||||
|
|
||||||
public bool ShowChangeMasterPassword { get; private set; }
|
public bool ShowChangeMasterPassword { get; private set; }
|
||||||
|
|
||||||
private bool IsVaultTimeoutActionLockAllowed => _hasMasterPassword || _canUnlockWithBiometrics || _canUnlockWithPin;
|
|
||||||
|
|
||||||
private int? CurrentVaultTimeout => GetRawVaultTimeoutFrom(VaultTimeoutPickerViewModel.SelectedKey);
|
private int? CurrentVaultTimeout => GetRawVaultTimeoutFrom(VaultTimeoutPickerViewModel.SelectedKey);
|
||||||
|
|
||||||
private bool IncludeLinksWithSubscriptionInfo => Device.RuntimePlatform != Device.iOS;
|
private bool IncludeLinksWithSubscriptionInfo => Device.RuntimePlatform != Device.iOS;
|
||||||
@@ -253,6 +258,7 @@ namespace Bit.App.Pages
|
|||||||
TriggerPropertyChanged(nameof(VaultTimeoutPolicyDescription));
|
TriggerPropertyChanged(nameof(VaultTimeoutPolicyDescription));
|
||||||
TriggerPropertyChanged(nameof(ShowChangeMasterPassword));
|
TriggerPropertyChanged(nameof(ShowChangeMasterPassword));
|
||||||
TriggerUpdateCustomVaultTimeoutPicker();
|
TriggerUpdateCustomVaultTimeoutPicker();
|
||||||
|
TriggerVaultTimeoutActionLockAllowedPropertyChanged();
|
||||||
ToggleUseThisDeviceToApproveLoginRequestsCommand.RaiseCanExecuteChanged();
|
ToggleUseThisDeviceToApproveLoginRequestsCommand.RaiseCanExecuteChanged();
|
||||||
ToggleCanUnlockWithBiometricsCommand.RaiseCanExecuteChanged();
|
ToggleCanUnlockWithBiometricsCommand.RaiseCanExecuteChanged();
|
||||||
ToggleCanUnlockWithPinCommand.RaiseCanExecuteChanged();
|
ToggleCanUnlockWithPinCommand.RaiseCanExecuteChanged();
|
||||||
@@ -305,6 +311,7 @@ namespace Bit.App.Pages
|
|||||||
{
|
{
|
||||||
_customVaultTimeoutTime = TimeSpan.FromMinutes(vaultTimeout);
|
_customVaultTimeoutTime = TimeSpan.FromMinutes(vaultTimeout);
|
||||||
}
|
}
|
||||||
|
TriggerVaultTimeoutActionLockAllowedPropertyChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task InitVaultTimeoutActionPickerAsync()
|
private async Task InitVaultTimeoutActionPickerAsync()
|
||||||
@@ -324,6 +331,7 @@ namespace Bit.App.Pages
|
|||||||
}
|
}
|
||||||
|
|
||||||
VaultTimeoutActionPickerViewModel.Init(options, timeoutAction, IsVaultTimeoutActionLockAllowed ? VaultTimeoutAction.Lock : VaultTimeoutAction.Logout);
|
VaultTimeoutActionPickerViewModel.Init(options, timeoutAction, IsVaultTimeoutActionLockAllowed ? VaultTimeoutAction.Lock : VaultTimeoutAction.Logout);
|
||||||
|
TriggerVaultTimeoutActionLockAllowedPropertyChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task ToggleUseThisDeviceToApproveLoginRequestsAsync()
|
private async Task ToggleUseThisDeviceToApproveLoginRequestsAsync()
|
||||||
@@ -360,6 +368,7 @@ namespace Bit.App.Pages
|
|||||||
{
|
{
|
||||||
if (!_canUnlockWithBiometrics)
|
if (!_canUnlockWithBiometrics)
|
||||||
{
|
{
|
||||||
|
MainThread.BeginInvokeOnMainThread(() => TriggerPropertyChanged(nameof(CanUnlockWithBiometrics)));
|
||||||
await UpdateVaultTimeoutActionIfNeededAsync();
|
await UpdateVaultTimeoutActionIfNeededAsync();
|
||||||
await _biometricsService.SetCanUnlockWithBiometricsAsync(CanUnlockWithBiometrics);
|
await _biometricsService.SetCanUnlockWithBiometricsAsync(CanUnlockWithBiometrics);
|
||||||
return;
|
return;
|
||||||
@@ -375,11 +384,12 @@ namespace Bit.App.Pages
|
|||||||
}
|
}
|
||||||
|
|
||||||
await _biometricsService.SetCanUnlockWithBiometricsAsync(CanUnlockWithBiometrics);
|
await _biometricsService.SetCanUnlockWithBiometricsAsync(CanUnlockWithBiometrics);
|
||||||
|
await InitVaultTimeoutActionPickerAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task ToggleCanUnlockWithPinAsync()
|
public async Task ToggleCanUnlockWithPinAsync()
|
||||||
{
|
{
|
||||||
if (!CanUnlockWithPin)
|
if (!_canUnlockWithPin)
|
||||||
{
|
{
|
||||||
await _vaultTimeoutService.ClearAsync();
|
await _vaultTimeoutService.ClearAsync();
|
||||||
await UpdateVaultTimeoutActionIfNeededAsync();
|
await UpdateVaultTimeoutActionIfNeededAsync();
|
||||||
@@ -403,10 +413,12 @@ namespace Bit.App.Pages
|
|||||||
AppResources.No);
|
AppResources.No);
|
||||||
|
|
||||||
await _userPinService.SetupPinAsync(newPin, requireMasterPasswordOnRestart);
|
await _userPinService.SetupPinAsync(newPin, requireMasterPasswordOnRestart);
|
||||||
|
await InitVaultTimeoutActionPickerAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task UpdateVaultTimeoutActionIfNeededAsync()
|
private async Task UpdateVaultTimeoutActionIfNeededAsync()
|
||||||
{
|
{
|
||||||
|
TriggerVaultTimeoutActionLockAllowedPropertyChanged();
|
||||||
if (IsVaultTimeoutActionLockAllowed)
|
if (IsVaultTimeoutActionLockAllowed)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
@@ -467,6 +479,16 @@ namespace Bit.App.Pages
|
|||||||
TriggerPropertyChanged(nameof(CustomVaultTimeoutTime));
|
TriggerPropertyChanged(nameof(CustomVaultTimeoutTime));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void TriggerVaultTimeoutActionLockAllowedPropertyChanged()
|
||||||
|
{
|
||||||
|
MainThread.BeginInvokeOnMainThread(() =>
|
||||||
|
{
|
||||||
|
TriggerPropertyChanged(nameof(IsVaultTimeoutActionLockAllowed));
|
||||||
|
TriggerPropertyChanged(nameof(SetUpUnlockMethodLabel));
|
||||||
|
VaultTimeoutActionPickerViewModel.SelectOptionCommand.RaiseCanExecuteChanged();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
private int? GetRawVaultTimeoutFrom(int vaultTimeoutPickerKey)
|
private int? GetRawVaultTimeoutFrom(int vaultTimeoutPickerKey)
|
||||||
{
|
{
|
||||||
if (vaultTimeoutPickerKey == NEVER_SESSION_TIMEOUT_VALUE)
|
if (vaultTimeoutPickerKey == NEVER_SESSION_TIMEOUT_VALUE)
|
||||||
@@ -501,7 +523,7 @@ namespace Bit.App.Pages
|
|||||||
|
|
||||||
await _vaultTimeoutService.SetVaultTimeoutOptionsAsync(CurrentVaultTimeout, timeoutActionKey);
|
await _vaultTimeoutService.SetVaultTimeoutOptionsAsync(CurrentVaultTimeout, timeoutActionKey);
|
||||||
_messagingService.Send(AppHelpers.VAULT_TIMEOUT_ACTION_CHANGED_MESSAGE_COMMAND);
|
_messagingService.Send(AppHelpers.VAULT_TIMEOUT_ACTION_CHANGED_MESSAGE_COMMAND);
|
||||||
|
TriggerVaultTimeoutActionLockAllowedPropertyChanged();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Bit.App.Effects;
|
using Bit.App.Effects;
|
||||||
using Bit.App.Models;
|
using Bit.App.Models;
|
||||||
@@ -7,6 +8,7 @@ using Bit.App.Utilities;
|
|||||||
using Bit.Core;
|
using Bit.Core;
|
||||||
using Bit.Core.Abstractions;
|
using Bit.Core.Abstractions;
|
||||||
using Bit.Core.Models.Data;
|
using Bit.Core.Models.Data;
|
||||||
|
using Bit.Core.Models.Domain;
|
||||||
using Bit.Core.Utilities;
|
using Bit.Core.Utilities;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
@@ -100,11 +102,38 @@ namespace Bit.App.Pages
|
|||||||
_messagingService.Send("convertAccountToKeyConnector");
|
_messagingService.Send("convertAccountToKeyConnector");
|
||||||
}
|
}
|
||||||
|
|
||||||
var forcePasswordResetReason = await _stateService.GetForcePasswordResetReasonAsync();
|
await ForcePasswordResetIfNeededAsync();
|
||||||
|
}
|
||||||
|
|
||||||
if (forcePasswordResetReason.HasValue)
|
private async Task ForcePasswordResetIfNeededAsync()
|
||||||
|
{
|
||||||
|
var forcePasswordResetReason = await _stateService.GetForcePasswordResetReasonAsync();
|
||||||
|
switch (forcePasswordResetReason)
|
||||||
{
|
{
|
||||||
_messagingService.Send(Constants.ForceUpdatePassword);
|
case ForcePasswordResetReason.TdeUserWithoutPasswordHasPasswordResetPermission:
|
||||||
|
// TDE users should only have one org
|
||||||
|
var userOrgs = await _stateService.GetOrganizationsAsync();
|
||||||
|
if (userOrgs != null && userOrgs.Any())
|
||||||
|
{
|
||||||
|
_messagingService.Send(Constants.ForceSetPassword, userOrgs.First().Value.Identifier);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_logger.Value.Error("TDE user needs to set password but has no organizations.");
|
||||||
|
|
||||||
|
var rememberedOrg = _stateService.GetRememberedOrgIdentifierAsync();
|
||||||
|
if (rememberedOrg == null)
|
||||||
|
{
|
||||||
|
_logger.Value.Error("TDE user needs to set password but has no organizations or remembered org identifier.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_messagingService.Send(Constants.ForceSetPassword, rememberedOrg);
|
||||||
|
return;
|
||||||
|
case ForcePasswordResetReason.AdminForcePasswordReset:
|
||||||
|
case ForcePasswordResetReason.WeakMasterPasswordOnLogin:
|
||||||
|
_messagingService.Send(Constants.ForceUpdatePassword);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
xmlns:dts="clr-namespace:Bit.App.Lists.DataTemplateSelectors"
|
xmlns:dts="clr-namespace:Bit.App.Lists.DataTemplateSelectors"
|
||||||
xmlns:il="clr-namespace:Bit.App.Lists.ItemLayouts.CustomFields"
|
xmlns:il="clr-namespace:Bit.App.Lists.ItemLayouts.CustomFields"
|
||||||
xmlns:core="clr-namespace:Bit.Core;assembly=BitwardenCore"
|
xmlns:core="clr-namespace:Bit.Core;assembly=BitwardenCore"
|
||||||
|
xmlns:appResources="clr-namespace:Bit.App.Resources"
|
||||||
x:DataType="pages:CipherAddEditPageViewModel"
|
x:DataType="pages:CipherAddEditPageViewModel"
|
||||||
x:Name="_page"
|
x:Name="_page"
|
||||||
Title="{Binding PageTitle}">
|
Title="{Binding PageTitle}">
|
||||||
@@ -28,6 +29,8 @@
|
|||||||
<u:InverseBoolConverter x:Key="inverseBool" />
|
<u:InverseBoolConverter x:Key="inverseBool" />
|
||||||
<u:StringHasValueConverter x:Key="stringHasValue" />
|
<u:StringHasValueConverter x:Key="stringHasValue" />
|
||||||
<u:IsNotNullConverter x:Key="notNull" />
|
<u:IsNotNullConverter x:Key="notNull" />
|
||||||
|
<u:DateTimeConverter x:Key="dateTime" Format="{x:Static appResources:AppResources.CreatedXY}" />
|
||||||
|
|
||||||
<ToolbarItem Text="{u:I18n Cancel}" Clicked="Close_Clicked" Order="Primary" Priority="-1"
|
<ToolbarItem Text="{u:I18n Cancel}" Clicked="Close_Clicked" Order="Primary" Priority="-1"
|
||||||
x:Key="closeItem" x:Name="_closeItem" />
|
x:Key="closeItem" x:Name="_closeItem" />
|
||||||
<ToolbarItem Text="{u:I18n Collections}"
|
<ToolbarItem Text="{u:I18n Collections}"
|
||||||
@@ -229,7 +232,7 @@
|
|||||||
Margin="0,10,0,0"
|
Margin="0,10,0,0"
|
||||||
IsVisible="{Binding ShowPasskeyInfo}"/>
|
IsVisible="{Binding ShowPasskeyInfo}"/>
|
||||||
<Entry
|
<Entry
|
||||||
Text="{Binding CreationDate}"
|
Text="{Binding Cipher.Login.MainFido2Credential.CreationDate, Mode=OneWay, Converter={StaticResource dateTime}, FallbackValue=''}"
|
||||||
IsEnabled="False"
|
IsEnabled="False"
|
||||||
StyleClass="box-value,text-muted"
|
StyleClass="box-value,text-muted"
|
||||||
IsVisible="{Binding ShowPasskeyInfo}" />
|
IsVisible="{Binding ShowPasskeyInfo}" />
|
||||||
@@ -289,7 +292,7 @@
|
|||||||
StyleClass="box-row-button, box-row-button-platform"
|
StyleClass="box-row-button, box-row-button-platform"
|
||||||
Text="{Binding Source={x:Static core:BitwardenIcons.Clone}}"
|
Text="{Binding Source={x:Static core:BitwardenIcons.Clone}}"
|
||||||
Command="{Binding CopyCommand}"
|
Command="{Binding CopyCommand}"
|
||||||
IsVisible="{Binding HasTotpValue}"
|
IsVisible="{Binding AllowTotpCopy}"
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
Grid.RowSpan="2"
|
Grid.RowSpan="2"
|
||||||
|
|||||||
@@ -307,6 +307,7 @@ namespace Bit.App.Pages
|
|||||||
public bool PasswordPrompt => Cipher.Reprompt != CipherRepromptType.None;
|
public bool PasswordPrompt => Cipher.Reprompt != CipherRepromptType.None;
|
||||||
public string PasswordVisibilityAccessibilityText => ShowPassword ? AppResources.PasswordIsVisibleTapToHide : AppResources.PasswordIsNotVisibleTapToShow;
|
public string PasswordVisibilityAccessibilityText => ShowPassword ? AppResources.PasswordIsVisibleTapToHide : AppResources.PasswordIsNotVisibleTapToShow;
|
||||||
public bool HasTotpValue => IsLogin && !string.IsNullOrEmpty(Cipher?.Login?.Totp);
|
public bool HasTotpValue => IsLogin && !string.IsNullOrEmpty(Cipher?.Login?.Totp);
|
||||||
|
public bool AllowTotpCopy => HasTotpValue && Cipher.ViewPassword;
|
||||||
public string SetupTotpText => $"{BitwardenIcons.Camera} {AppResources.SetupTotp}";
|
public string SetupTotpText => $"{BitwardenIcons.Camera} {AppResources.SetupTotp}";
|
||||||
public bool ShowPasskeyInfo => Cipher?.HasFido2Credential == true && !CloneMode;
|
public bool ShowPasskeyInfo => Cipher?.HasFido2Credential == true && !CloneMode;
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
xmlns:dts="clr-namespace:Bit.App.Lists.DataTemplateSelectors"
|
xmlns:dts="clr-namespace:Bit.App.Lists.DataTemplateSelectors"
|
||||||
xmlns:il="clr-namespace:Bit.App.Lists.ItemLayouts.CustomFields"
|
xmlns:il="clr-namespace:Bit.App.Lists.ItemLayouts.CustomFields"
|
||||||
xmlns:core="clr-namespace:Bit.Core;assembly=BitwardenCore"
|
xmlns:core="clr-namespace:Bit.Core;assembly=BitwardenCore"
|
||||||
|
xmlns:appResources="clr-namespace:Bit.App.Resources"
|
||||||
x:DataType="pages:CipherDetailsPageViewModel"
|
x:DataType="pages:CipherDetailsPageViewModel"
|
||||||
x:Name="_page"
|
x:Name="_page"
|
||||||
Title="{Binding PageTitle}">
|
Title="{Binding PageTitle}">
|
||||||
@@ -23,6 +24,7 @@
|
|||||||
<u:InverseBoolConverter x:Key="inverseBool" />
|
<u:InverseBoolConverter x:Key="inverseBool" />
|
||||||
<u:StringHasValueConverter x:Key="stringHasValue" />
|
<u:StringHasValueConverter x:Key="stringHasValue" />
|
||||||
<u:IsNotNullConverter x:Key="notNull" />
|
<u:IsNotNullConverter x:Key="notNull" />
|
||||||
|
<u:DateTimeConverter x:Key="dateTime" Format="{x:Static appResources:AppResources.CreatedXY}" />
|
||||||
<ToolbarItem Text="{u:I18n Collections}"
|
<ToolbarItem Text="{u:I18n Collections}"
|
||||||
x:Key="collectionsItem"
|
x:Key="collectionsItem"
|
||||||
x:Name="_collectionsItem"
|
x:Name="_collectionsItem"
|
||||||
@@ -201,10 +203,10 @@
|
|||||||
Margin="0,10,0,0"
|
Margin="0,10,0,0"
|
||||||
IsVisible="{Binding Cipher.Login.MainFido2Credential, Converter={StaticResource notNull}}"/>
|
IsVisible="{Binding Cipher.Login.MainFido2Credential, Converter={StaticResource notNull}}"/>
|
||||||
<Entry
|
<Entry
|
||||||
Text="{Binding CreationDate}"
|
Text="{Binding Cipher.Login.MainFido2Credential.CreationDate, Mode=OneWay, Converter={StaticResource dateTime}, FallbackValue=''}"
|
||||||
IsEnabled="False"
|
IsEnabled="False"
|
||||||
StyleClass="box-value,text-muted"
|
StyleClass="box-value,text-muted"
|
||||||
IsVisible="{Binding Cipher.Login.MainFido2Credential, Converter={StaticResource notNull}}" />
|
IsVisible="{Binding Cipher.Login.MainFido2Credential, Converter={StaticResource notNull}, FallbackValue=False}" />
|
||||||
<Grid StyleClass="box-row"
|
<Grid StyleClass="box-row"
|
||||||
IsVisible="{Binding ShowTotp}"
|
IsVisible="{Binding ShowTotp}"
|
||||||
AutomationId="ItemRow">
|
AutomationId="ItemRow">
|
||||||
|
|||||||
36
src/App/Resources/AppResources.Designer.cs
generated
36
src/App/Resources/AppResources.Designer.cs
generated
@@ -3235,6 +3235,15 @@ namespace Bit.App.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to ForwardEmail.
|
||||||
|
/// </summary>
|
||||||
|
public static string ForwardEmail {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ForwardEmail", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to 4 hours.
|
/// Looks up a localized string similar to 4 hours.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -6218,6 +6227,15 @@ namespace Bit.App.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Set up an unlock option to change your vault timeout action..
|
||||||
|
/// </summary>
|
||||||
|
public static string SetUpAnUnlockOptionToChangeYourVaultTimeoutAction {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("SetUpAnUnlockOptionToChangeYourVaultTimeoutAction", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Set up TOTP.
|
/// Looks up a localized string similar to Set up TOTP.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -7757,6 +7775,24 @@ namespace Bit.App.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Your organization permissions were updated, requiring you to set a master password..
|
||||||
|
/// </summary>
|
||||||
|
public static string YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Your organization requires you to set a master password..
|
||||||
|
/// </summary>
|
||||||
|
public static string YourOrganizationRequiresYouToSetAMasterPassword {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("YourOrganizationRequiresYouToSetAMasterPassword", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Your request has been sent to your admin..
|
/// Looks up a localized string similar to Your request has been sent to your admin..
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -2424,6 +2424,10 @@ kies u Voeg TOTP toe om die sleutel veilig te bewaar</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API-toegangsteken</value>
|
<value>API-toegangsteken</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,9 +2694,6 @@ Wil u na die rekening omskakel?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2860,4 +2861,13 @@ Wil u na die rekening omskakel?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>رمز الوصول API</value>
|
<value>رمز الوصول API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>تَغيير إجراء مهلة المخزن لتسجيل الخروج</value>
|
<value>تَغيير إجراء مهلة المخزن لتسجيل الخروج</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>لا يمكن مشاركة هذا العنصر مع المؤسسة لأنه يوجد بالفعل واحد مع نفس مفتاح المرور.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>حظر التعبئة التلقائية</value>
|
<value>حظر التعبئة التلقائية</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2750,109 +2751,109 @@
|
|||||||
<value>جارٍ تسجيل الدخول</value>
|
<value>جارٍ تسجيل الدخول</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Vault" xml:space="preserve">
|
<data name="Vault" xml:space="preserve">
|
||||||
<value>Vault</value>
|
<value>الخزنة</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Appearance" xml:space="preserve">
|
<data name="Appearance" xml:space="preserve">
|
||||||
<value>Appearance</value>
|
<value>المظهر</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountSecurity" xml:space="preserve">
|
<data name="AccountSecurity" xml:space="preserve">
|
||||||
<value>Account security</value>
|
<value>أمان الحساب</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenHelpCenter" xml:space="preserve">
|
<data name="BitwardenHelpCenter" xml:space="preserve">
|
||||||
<value>Bitwarden Help Center</value>
|
<value>مركز المساعدة Bitwarden</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContactBitwardenSupport" xml:space="preserve">
|
<data name="ContactBitwardenSupport" xml:space="preserve">
|
||||||
<value>Contact Bitwarden support</value>
|
<value>اتصل بالدعم Bitwarden</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyAppInformation" xml:space="preserve">
|
<data name="CopyAppInformation" xml:space="preserve">
|
||||||
<value>Copy app information</value>
|
<value>نسخ معلومات التطبيق</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncNow" xml:space="preserve">
|
<data name="SyncNow" xml:space="preserve">
|
||||||
<value>Sync now</value>
|
<value>المزامنة الآن</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockOptions" xml:space="preserve">
|
<data name="UnlockOptions" xml:space="preserve">
|
||||||
<value>Unlock options</value>
|
<value>خيارات فتح القفل</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SessionTimeout" xml:space="preserve">
|
<data name="SessionTimeout" xml:space="preserve">
|
||||||
<value>Session timeout</value>
|
<value>مهلة الجلسة</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SessionTimeoutAction" xml:space="preserve">
|
<data name="SessionTimeoutAction" xml:space="preserve">
|
||||||
<value>Session timeout action</value>
|
<value>إجراء مهلة الجلسة</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountFingerprintPhrase" xml:space="preserve">
|
<data name="AccountFingerprintPhrase" xml:space="preserve">
|
||||||
<value>Account fingerprint phrase</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>
|
<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>
|
||||||
<data name="OneHourAndOneMinute" xml:space="preserve">
|
<data name="OneHourAndOneMinute" xml:space="preserve">
|
||||||
<value>One hour and one minute</value>
|
<value>ساعة واحدة ودقيقة واحدة</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="OneHourAndXMinute" xml:space="preserve">
|
<data name="OneHourAndXMinute" xml:space="preserve">
|
||||||
<value>One hour and {0} minutes</value>
|
<value>ساعة واحدة و {0} دقيقة</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHoursAndOneMinute" xml:space="preserve">
|
<data name="XHoursAndOneMinute" xml:space="preserve">
|
||||||
<value>{0} hours and one minute</value>
|
<value>{0} ساعات ودقيقة واحدة</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHoursAndYMinutes" xml:space="preserve">
|
<data name="XHoursAndYMinutes" xml:space="preserve">
|
||||||
<value>{0} hours and {1} minutes</value>
|
<value>{0} ساعات و {1} دقيقة</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHours" xml:space="preserve">
|
<data name="XHours" xml:space="preserve">
|
||||||
<value>{0} hours</value>
|
<value>{0} ساعات</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServicesExplanationLong" xml:space="preserve">
|
<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>يتم استخدام إطار التعبئة التلقائية لأندرويد للمساعدة في ملء معلومات تسجيل الدخول في تطبيقات أخرى على جهازك.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
|
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
|
||||||
<value>Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay.</value>
|
<value>استخدم التعبئة التلقائية المضمنة إذا كانت لوحة المفاتيح المحددة تدعمها. وإلا استخدم التراكب الافتراضي.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AdditionalOptions" xml:space="preserve">
|
<data name="AdditionalOptions" xml:space="preserve">
|
||||||
<value>Additional options</value>
|
<value>خيارات إضافية</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToWebApp" xml:space="preserve">
|
<data name="ContinueToWebApp" xml:space="preserve">
|
||||||
<value>Continue to web app?</value>
|
<value>متابعة إلى تطبيق الويب؟</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToX" xml:space="preserve">
|
<data name="ContinueToX" xml:space="preserve">
|
||||||
<value>Continue to {0}?</value>
|
<value>الإستمرار إلى {0}؟</value>
|
||||||
<comment>The parameter is an URL, like bitwarden.com.</comment>
|
<comment>The parameter is an URL, like bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToHelpCenter" xml:space="preserve">
|
<data name="ContinueToHelpCenter" xml:space="preserve">
|
||||||
<value>Continue to Help center?</value>
|
<value>هل تريد المتابعة إلى مركز المساعدة؟</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToContactSupport" xml:space="preserve">
|
<data name="ContinueToContactSupport" xml:space="preserve">
|
||||||
<value>Continue to contact support?</value>
|
<value>مواصلة الاتصال بالدعم؟</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToAppStore" xml:space="preserve">
|
<data name="ContinueToAppStore" xml:space="preserve">
|
||||||
<value>Continue to app store?</value>
|
<value>هل تريد المتابعة إلى متجر التطبيقات؟</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TwoStepLoginDescriptionLong" xml:space="preserve">
|
<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>
|
||||||
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
|
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
|
||||||
<value>You can change your master password on the Bitwarden web app.</value>
|
<value>يمكنك تغيير كلمة المرور الرئيسية الخاصة بك على تطبيق ويب Bitwarden.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
|
<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>
|
<comment>The parameter is an URL, like vault.bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
|
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
|
||||||
<value>Learn more about how to use Bitwarden on the Help center.</value>
|
<value>تعرف على المزيد حول كيفية استخدام Bitwarden في مركز المساعدة.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
||||||
<value>Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com.</value>
|
<value>لا يمكن العثور على ما تبحث عنه؟ قم بالتواصل مع دعم Bitwarden على bitwarden.com.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
|
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
|
||||||
<value>Explore more features of your Bitwarden account on the web app.</value>
|
<value>استكشف المزيد من الميزات لحساب Bitwarden الخاص بك على تطبيق الويب.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnAboutOrganizationsDescriptionLong" xml:space="preserve">
|
<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 مشاركة عناصر خزنتك مع الآخرين باستخدام حساب المؤسسة. تعرف على المزيد على موقع bitwarden.com على شبكة الإنترنت.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RateAppDescriptionLong" xml:space="preserve">
|
<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>ساعد الآخرين في معرفة ما إذا كان Bitwarden مناسبا لهم. قم بزيارة متجر التطبيقات وترك التقييم الآن.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
||||||
<value>Choose the dark theme to use when your device’s dark mode is in use</value>
|
<value>اختر السمة المظلمة لاستخدامها عند استخدام الوضع المظلم لجهازك</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CreatedXY" xml:space="preserve">
|
<data name="CreatedXY" xml:space="preserve">
|
||||||
<value>Created {0}, {1}</value>
|
<value>أنشئ {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>
|
<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>
|
||||||
<data name="TooManyAttempts" xml:space="preserve">
|
<data name="TooManyAttempts" xml:space="preserve">
|
||||||
@@ -2861,4 +2862,13 @@
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>تم تسجيل الخروج من الحساب.</value>
|
<value>تم تسجيل الخروج من الحساب.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>تم تحديث أذونات مؤسستك ، مما يتطلب عليك تعيين كلمة مرور رئيسية.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>تتطلب مؤسستك تعيين كلمة مرور رئيسية.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>أعدنّ ميزة إلغاء القُفْل لتغيير إجراء مهلة المخزن الخاص بك.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -209,7 +209,7 @@
|
|||||||
<value>GitHub repository-də problemi bildirin.</value>
|
<value>GitHub repository-də problemi bildirin.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FingerprintDirection" xml:space="preserve">
|
<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>
|
||||||
<data name="Folder" xml:space="preserve">
|
<data name="Folder" xml:space="preserve">
|
||||||
<value>Qovluq</value>
|
<value>Qovluq</value>
|
||||||
@@ -236,14 +236,14 @@
|
|||||||
<comment>The button text that allows user to launch the website to their web browser.</comment>
|
<comment>The button text that allows user to launch the website to their web browser.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="HelpAndFeedback" xml:space="preserve">
|
<data name="HelpAndFeedback" xml:space="preserve">
|
||||||
<value>Kömək və əks əlaqə</value>
|
<value>Kömək və əks-əlaqə</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Hide" xml:space="preserve">
|
<data name="Hide" xml:space="preserve">
|
||||||
<value>Gizlət</value>
|
<value>Gizlət</value>
|
||||||
<comment>Hide a secret value that is currently shown (password).</comment>
|
<comment>Hide a secret value that is currently shown (password).</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="InternetConnectionRequiredMessage" xml:space="preserve">
|
<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>
|
<comment>Description message for the alert when internet connection is required to continue.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="InternetConnectionRequiredTitle" xml:space="preserve">
|
<data name="InternetConnectionRequiredTitle" xml:space="preserve">
|
||||||
@@ -300,7 +300,7 @@
|
|||||||
<comment>The title for the vault page.</comment>
|
<comment>The title for the vault page.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Authenticator" xml:space="preserve">
|
<data name="Authenticator" xml:space="preserve">
|
||||||
<value>Kimlik təsdiqləyici</value>
|
<value>Kimlik doğrulayıcı</value>
|
||||||
<comment>Authenticator TOTP feature</comment>
|
<comment>Authenticator TOTP feature</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Name" xml:space="preserve">
|
<data name="Name" xml:space="preserve">
|
||||||
@@ -334,7 +334,7 @@
|
|||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Settings" xml:space="preserve">
|
<data name="Settings" xml:space="preserve">
|
||||||
<value>Tənzimləmələr</value>
|
<value>Ayarlar</value>
|
||||||
<comment>The title for the settings page.</comment>
|
<comment>The title for the settings page.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Show" xml:space="preserve">
|
<data name="Show" xml:space="preserve">
|
||||||
@@ -379,13 +379,13 @@
|
|||||||
<comment>Confirmation message after successfully copying a value to the clipboard.</comment>
|
<comment>Confirmation message after successfully copying a value to the clipboard.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerifyFingerprint" xml:space="preserve">
|
<data name="VerifyFingerprint" xml:space="preserve">
|
||||||
<value>Barmaq izini təsdiqlə</value>
|
<value>Barmaq izini doğrula</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerifyMasterPassword" xml:space="preserve">
|
<data name="VerifyMasterPassword" xml:space="preserve">
|
||||||
<value>Ana parolu təsdiqlə</value>
|
<value>Ana parolu doğrula</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerifyPIN" xml:space="preserve">
|
<data name="VerifyPIN" xml:space="preserve">
|
||||||
<value>PIN-i təsdiqlə</value>
|
<value>PIN-i doğrula</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Version" xml:space="preserve">
|
<data name="Version" xml:space="preserve">
|
||||||
<value>Versiya</value>
|
<value>Versiya</value>
|
||||||
@@ -413,7 +413,7 @@
|
|||||||
<value>Element əlavə et</value>
|
<value>Element əlavə et</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AppExtension" xml:space="preserve">
|
<data name="AppExtension" xml:space="preserve">
|
||||||
<value>Tətbiq genişləndirməsi</value>
|
<value>Tətbiq uzantısı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillAccessibilityDescription" xml:space="preserve">
|
<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ətbiq və veb saytda giriş məlumatlarının avto-doldurulması üçün Bitwarden əlçatımlılıq xidmətini istifadə edin.</value>
|
||||||
@@ -425,10 +425,10 @@
|
|||||||
<value>Anlaşılmaz simvollardan çəkinin</value>
|
<value>Anlaşılmaz simvollardan çəkinin</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAppExtension" xml:space="preserve">
|
<data name="BitwardenAppExtension" xml:space="preserve">
|
||||||
<value>Bitwarden tətbiq genişləndirməsi</value>
|
<value>Bitwarden tətbiq uzantısı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAppExtensionAlert2" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAppExtensionDescription" xml:space="preserve">
|
<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>
|
<value>Giriş məlumatlarının avto-doldurulması üçün Safari-də və digər tətbiqlərdə Bitwarden-i istifadə edin.</value>
|
||||||
@@ -471,13 +471,13 @@
|
|||||||
<value>Ana parol məsləhətini alacağınız hesabınızın e-poçt ünvanını daxil edin.</value>
|
<value>Ana parol məsləhətini alacağınız hesabınızın e-poçt ünvanını daxil edin.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExntesionReenable" xml:space="preserve">
|
<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>
|
||||||
<data name="ExtensionAlmostDone" xml:space="preserve">
|
<data name="ExtensionAlmostDone" xml:space="preserve">
|
||||||
<value>Demək olar ki, hazırdır!</value>
|
<value>Demək olar ki, hazırdır!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionEnable" xml:space="preserve">
|
<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>
|
||||||
<data name="ExtensionInSafari" xml:space="preserve">
|
<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>
|
<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>
|
<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>
|
||||||
<data name="ExtensionTapIcon" xml:space="preserve">
|
<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>
|
||||||
<data name="ExtensionTurnOn" xml:space="preserve">
|
<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>
|
<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,13 +514,13 @@
|
|||||||
<value>Ana parolunuz üçün məsləhət alın</value>
|
<value>Ana parolunuz üçün məsləhət alın</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ImportItems" xml:space="preserve">
|
<data name="ImportItems" xml:space="preserve">
|
||||||
<value>Elementləri idxal et</value>
|
<value>Elementləri daxilə köçür</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ImportItemsConfirmation" xml:space="preserve">
|
<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>
|
||||||
<data name="ImportItemsDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="LastSync" xml:space="preserve">
|
<data name="LastSync" xml:space="preserve">
|
||||||
<value>Son eyniləşdirmə:</value>
|
<value>Son eyniləşdirmə:</value>
|
||||||
@@ -553,7 +553,7 @@
|
|||||||
<value>Anbara müraciət vaxtının bitmə əməliyyatı</value>
|
<value>Anbara müraciət vaxtının bitmə əməliyyatı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VaultTimeoutLogOutConfirmation" xml:space="preserve">
|
<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>
|
||||||
<data name="LoggingIn" xml:space="preserve">
|
<data name="LoggingIn" xml:space="preserve">
|
||||||
<value>Giriş edilir...</value>
|
<value>Giriş edilir...</value>
|
||||||
@@ -589,10 +589,10 @@
|
|||||||
<comment>Minimum special characters for password generator settings</comment>
|
<comment>Minimum special characters for password generator settings</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="MoreSettings" xml:space="preserve">
|
<data name="MoreSettings" xml:space="preserve">
|
||||||
<value>Daha çox tənzimləmə</value>
|
<value>Daha çox ayar</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MustLogInMainApp" xml:space="preserve">
|
<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>
|
||||||
<data name="Never" xml:space="preserve">
|
<data name="Never" xml:space="preserve">
|
||||||
<value>Heç vaxt</value>
|
<value>Heç vaxt</value>
|
||||||
@@ -617,7 +617,7 @@
|
|||||||
<comment>Confirmation, like "Ok, I understand it"</comment>
|
<comment>Confirmation, like "Ok, I understand it"</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="OptionDefaults" xml:space="preserve">
|
<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>
|
||||||
<data name="Options" xml:space="preserve">
|
<data name="Options" xml:space="preserve">
|
||||||
<value>Seçimlər</value>
|
<value>Seçimlər</value>
|
||||||
@@ -708,11 +708,11 @@
|
|||||||
<value>PIN kod ilə kilidi açın</value>
|
<value>PIN kod ilə kilidi açın</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Validating" xml:space="preserve">
|
<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>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerificationCode" xml:space="preserve">
|
<data name="VerificationCode" xml:space="preserve">
|
||||||
<value>Təsdiqləmə kodu</value>
|
<value>Doğrulama kodu</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ViewItem" xml:space="preserve">
|
<data name="ViewItem" xml:space="preserve">
|
||||||
<value>Elementə bax</value>
|
<value>Elementə bax</value>
|
||||||
@@ -721,14 +721,14 @@
|
|||||||
<value>Bitwarden veb anbarı</value>
|
<value>Bitwarden veb anbarı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Lost2FAApp" xml:space="preserve">
|
<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>
|
||||||
<data name="Items" xml:space="preserve">
|
<data name="Items" xml:space="preserve">
|
||||||
<value>Elementlər</value>
|
<value>Elementlər</value>
|
||||||
<comment>Screen title</comment>
|
<comment>Screen title</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionActivated" xml:space="preserve">
|
<data name="ExtensionActivated" xml:space="preserve">
|
||||||
<value>Genişləndirmə aktivləşdirildi!</value>
|
<value>Uzantı aktivləşdirildi!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Icons" xml:space="preserve">
|
<data name="Icons" xml:space="preserve">
|
||||||
<value>Nişanlar</value>
|
<value>Nişanlar</value>
|
||||||
@@ -751,13 +751,13 @@
|
|||||||
<value>Anbarınızdakı bir elementi avto-doldurmaq üçün bu bildirişə toxunun.</value>
|
<value>Anbarınızdakı bir elementi avto-doldurmaq üçün bu bildirişə toxunun.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceOpenAccessibilitySettings" xml:space="preserve">
|
<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ı aç</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceStep1" xml:space="preserve">
|
<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>
|
<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>
|
||||||
<data name="BitwardenAutofillServiceStep2" xml:space="preserve">
|
<data name="BitwardenAutofillServiceStep2" xml:space="preserve">
|
||||||
<value>2. Tənzimləməni açın və Olduya basaraq qəbul edin.</value>
|
<value>2. Ayarı açın və Olduya basaraq qəbul edin.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Disabled" xml:space="preserve">
|
<data name="Disabled" xml:space="preserve">
|
||||||
<value>Sıradan çıxarıldı</value>
|
<value>Sıradan çıxarıldı</value>
|
||||||
@@ -775,7 +775,7 @@
|
|||||||
<value>Vəziyyət</value>
|
<value>Vəziyyət</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceAlert2" xml:space="preserve">
|
<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>
|
||||||
<data name="Autofill" xml:space="preserve">
|
<data name="Autofill" xml:space="preserve">
|
||||||
<value>Avto-doldurma</value>
|
<value>Avto-doldurma</value>
|
||||||
@@ -806,15 +806,15 @@
|
|||||||
<comment>Message shown when trying to launch an app that does not exist on the user's device.</comment>
|
<comment>Message shown when trying to launch an app that does not exist on the user's device.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuthenticatorAppTitle" xml:space="preserve">
|
<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>
|
<comment>For 2FA</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnterVerificationCodeApp" xml:space="preserve">
|
<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>
|
<comment>For 2FA</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnterVerificationCodeEmail" xml:space="preserve">
|
<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>
|
<comment>For 2FA</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoginUnavailable" xml:space="preserve">
|
<data name="LoginUnavailable" xml:space="preserve">
|
||||||
@@ -822,7 +822,7 @@
|
|||||||
<comment>For 2FA whenever there are no available providers on this device.</comment>
|
<comment>For 2FA whenever there are no available providers on this device.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoTwoStepAvailable" xml:space="preserve">
|
<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>
|
||||||
<data name="RecoveryCodeTitle" xml:space="preserve">
|
<data name="RecoveryCodeTitle" xml:space="preserve">
|
||||||
<value>Bərpa kodu</value>
|
<value>Bərpa kodu</value>
|
||||||
@@ -833,7 +833,7 @@
|
|||||||
<comment>Remember my two-step login</comment>
|
<comment>Remember my two-step login</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="SendVerificationCodeAgain" xml:space="preserve">
|
<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>
|
<comment>For 2FA</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="TwoStepLoginOptions" xml:space="preserve">
|
<data name="TwoStepLoginOptions" xml:space="preserve">
|
||||||
@@ -843,11 +843,11 @@
|
|||||||
<value>Başqa bir iki mərhələli giriş metodu istifadə edin</value>
|
<value>Başqa bir iki mərhələli giriş metodu istifadə edin</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerificationEmailNotSent" xml:space="preserve">
|
<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>
|
<comment>For 2FA</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerificationEmailSent" xml:space="preserve">
|
<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>
|
<comment>For 2FA</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="YubiKeyInstruction" xml:space="preserve">
|
<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>
|
<comment>The placeholder will show the file size of the attachment. Ex "25 MB"</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuthenticatorKey" xml:space="preserve">
|
<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>
|
||||||
<data name="VerificationCodeTotp" xml:space="preserve">
|
<data name="VerificationCodeTotp" xml:space="preserve">
|
||||||
<value>Təsdiqləmə kodu (TOTP)</value>
|
<value>Doğrulama kodu (TOTP)</value>
|
||||||
<comment>Totp code label</comment>
|
<comment>Totp code label</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuthenticatorKeyAdded" xml:space="preserve">
|
<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>
|
||||||
<data name="AuthenticatorKeyReadError" xml:space="preserve">
|
<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>
|
||||||
<data name="PointYourCameraAtTheQRCode" xml:space="preserve">
|
<data name="PointYourCameraAtTheQRCode" xml:space="preserve">
|
||||||
<value>Kameranızı QR koduna yönəldin.
|
<value>Kameranızı QR koduna yönəldin.
|
||||||
@@ -907,7 +907,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>TOTP-ni kopyala</value>
|
<value>TOTP-ni kopyala</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="CopyTotpAutomatically" xml:space="preserve">
|
<data name="CopyTotpAutomatically" xml:space="preserve">
|
||||||
<value>TOTP-ni avtomatik kopyala</value>
|
<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>
|
<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>
|
||||||
<data name="EncryptionKeyMigrationRequiredDescriptionLong" xml:space="preserve">
|
<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>
|
||||||
<data name="LearnMore" xml:space="preserve">
|
<data name="LearnMore" xml:space="preserve">
|
||||||
<value>Daha ətraflı</value>
|
<value>Daha ətraflı</value>
|
||||||
@@ -1173,26 +1173,26 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<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>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>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceOpenAutofillSettings" xml:space="preserve">
|
<data name="BitwardenAutofillServiceOpenAutofillSettings" xml:space="preserve">
|
||||||
<value>Avto-doldurma tənzimləmələrini açın</value>
|
<value>Avto-doldurma ayarlarını aç</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FaceID" xml:space="preserve">
|
<data name="FaceID" xml:space="preserve">
|
||||||
<value>Face ID</value>
|
<value>Face ID</value>
|
||||||
<comment>What Apple calls their facial recognition reader.</comment>
|
<comment>What Apple calls their facial recognition reader.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FaceIDDirection" xml:space="preserve">
|
<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>
|
||||||
<data name="UseFaceIDToUnlock" xml:space="preserve">
|
<data name="UseFaceIDToUnlock" xml:space="preserve">
|
||||||
<value>Kilidi açmaq üçün Face ID istifadə edin</value>
|
<value>Kilidi açmaq üçün Face ID istifadə edin</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerifyFaceID" xml:space="preserve">
|
<data name="VerifyFaceID" xml:space="preserve">
|
||||||
<value>Face ID-ni təsdiqlə</value>
|
<value>Face ID-ni doğrula</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="WindowsHello" xml:space="preserve">
|
<data name="WindowsHello" xml:space="preserve">
|
||||||
<value>Windows Hello</value>
|
<value>Windows Hello</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillGoToSettings" xml:space="preserve">
|
<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 > Sistem > Dillər və daxiletmə > Qabaqcıl > "Avto-doldurma xidməti"nə gedin.</value>
|
<value>Android avto-doldurma ayarları menyusunu avtomatik aça bilmədik. Bu menyunu tapmaq üçün Android Ayarları > Sistem > Dillər və giriş > Qabaqcıl > "Avto-doldurma xidməti"nə gedin.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CustomFieldName" xml:space="preserve">
|
<data name="CustomFieldName" xml:space="preserve">
|
||||||
<value>Özəl sahə adı</value>
|
<value>Özəl sahə adı</value>
|
||||||
@@ -1292,7 +1292,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<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ş etmə məlumatlarınıza klaviaturadan asanlıqla müraciət edə bilərsiniz.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillSetup2" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAutofillDescription" xml:space="preserve">
|
<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>
|
<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>
|
<value>Cihazınızda parolun avto-doldurulması üçün aşağıdakı təlimatları izləyin:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn1" xml:space="preserve">
|
<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>
|
||||||
<data name="AutofillTurnOn2" xml:space="preserve">
|
<data name="AutofillTurnOn2" xml:space="preserve">
|
||||||
<value>2. "Parollar və Hesablar"a toxunun.</value>
|
<value>2. "Parollar və Hesablar"a toxunun.</value>
|
||||||
@@ -1319,7 +1319,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>Parolun avto-doldurulması</value>
|
<value>Parolun avto-doldurulması</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillAlert2" xml:space="preserve">
|
<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>
|
||||||
<data name="InvalidEmail" xml:space="preserve">
|
<data name="InvalidEmail" xml:space="preserve">
|
||||||
<value>Yararsız e-poçt ünvanı.</value>
|
<value>Yararsız e-poçt ünvanı.</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>
|
<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>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Anbarı ixrac et</value>
|
<value>Anbarı xaricə köçür</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LockNow" xml:space="preserve">
|
<data name="LockNow" xml:space="preserve">
|
||||||
<value>İndi kilidlə</value>
|
<value>İndi kilidlə</value>
|
||||||
@@ -1483,20 +1483,20 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>30 dəqiqə</value>
|
<value>30 dəqiqə</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SetPINDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="LoggedInAsOn" xml:space="preserve">
|
<data name="LoggedInAsOn" xml:space="preserve">
|
||||||
<value>{1} saytında {0} kimi giriş edildi.</value>
|
<value>{1} saytında {0} kimi giriş edildi.</value>
|
||||||
<comment>ex: Logged in as user@example.com on bitwarden.com.</comment>
|
<comment>ex: Logged in as user@example.com on bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="VaultLockedMasterPassword" xml:space="preserve">
|
<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>
|
||||||
<data name="VaultLockedPIN" xml:space="preserve">
|
<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>
|
||||||
<data name="VaultLockedIdentity" xml:space="preserve">
|
<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>
|
||||||
<data name="Dark" xml:space="preserve">
|
<data name="Dark" xml:space="preserve">
|
||||||
<value>Tünd</value>
|
<value>Tünd</value>
|
||||||
@@ -1586,7 +1586,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>Tətbiq yenidən başladılanda</value>
|
<value>Tətbiq yenidən başladılanda</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServiceNotEnabled" xml:space="preserve">
|
<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>
|
||||||
<data name="ThemeAppliedOnRestart" xml:space="preserve">
|
<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>
|
<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>
|
<value>Seansın müddəti bitdi.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BiometricsDirection" xml:space="preserve">
|
<data name="BiometricsDirection" xml:space="preserve">
|
||||||
<value>Biometrik təsdiqləmə</value>
|
<value>Biometrik doğrulama</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Biometrics" xml:space="preserve">
|
<data name="Biometrics" xml:space="preserve">
|
||||||
<value>Biometrik</value>
|
<value>Biometrik</value>
|
||||||
@@ -1620,19 +1620,19 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>Kilidi biometriklə aç</value>
|
<value>Kilidi biometriklə aç</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityOverlayPermissionAlert" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAutofillServiceOverlayPermission" xml:space="preserve">
|
<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>
|
||||||
<data name="OverlayPermission" xml:space="preserve">
|
<data name="OverlayPermission" xml:space="preserve">
|
||||||
<value>İcazə</value>
|
<value>İcazə</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceOpenOverlayPermissionSettings" xml:space="preserve">
|
<data name="BitwardenAutofillServiceOpenOverlayPermissionSettings" xml:space="preserve">
|
||||||
<value>Üzərində göstərmə icazə tənzimləmələrini açın</value>
|
<value>Üzərində göstərmə icazə ayarlarını açın</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceStep3" xml:space="preserve">
|
<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ı açın.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Denied" xml:space="preserve">
|
<data name="Denied" xml:space="preserve">
|
||||||
<value>Rədd edildi</value>
|
<value>Rədd edildi</value>
|
||||||
@@ -1644,38 +1644,38 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>Fayl formatı</value>
|
<value>Fayl formatı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVaultMasterPasswordDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="SendVerificationCodeToEmail" xml:space="preserve">
|
<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>
|
||||||
<data name="CodeSent" xml:space="preserve">
|
<data name="CodeSent" xml:space="preserve">
|
||||||
<value>Kod göndərildi!</value>
|
<value>Kod göndərildi!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ConfirmYourIdentity" xml:space="preserve">
|
<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>
|
||||||
<data name="ExportVaultWarning" xml:space="preserve">
|
<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>
|
||||||
<data name="EncExportKeyWarning" xml:space="preserve">
|
<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>
|
||||||
<data name="EncExportAccountWarning" xml:space="preserve">
|
<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>
|
||||||
<data name="ExportVaultConfirmationTitle" xml:space="preserve">
|
<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>
|
<comment>Title for the alert to confirm vault exports.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Warning" xml:space="preserve">
|
<data name="Warning" xml:space="preserve">
|
||||||
<value>Xəbərdarlıq</value>
|
<value>Xəbərdarlıq</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVaultFailure" xml:space="preserve">
|
<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>
|
||||||
<data name="ExportVaultSuccess" xml:space="preserve">
|
<data name="ExportVaultSuccess" xml:space="preserve">
|
||||||
<value>Anbar uğurla ixrac edildi</value>
|
<value>Anbar uğurla xaricə köçürüldü</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Clone" xml:space="preserve">
|
<data name="Clone" xml:space="preserve">
|
||||||
<value>Klonla</value>
|
<value>Klonla</value>
|
||||||
@@ -1695,7 +1695,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>Qoşma uğurla saxlanıldı</value>
|
<value>Qoşma uğurla saxlanıldı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTileAccessibilityRequired" xml:space="preserve">
|
<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>
|
||||||
<data name="AutofillTileUriNotFound" xml:space="preserve">
|
<data name="AutofillTileUriNotFound" xml:space="preserve">
|
||||||
<value>Heç bir parol sahəsi aşkarlanmadı</value>
|
<value>Heç bir parol sahəsi aşkarlanmadı</value>
|
||||||
@@ -1741,10 +1741,10 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<comment>Confirmation alert message when soft-deleting a cipher.</comment>
|
<comment>Confirmation alert message when soft-deleting a cipher.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountBiometricInvalidated" xml:space="preserve">
|
<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>
|
||||||
<data name="AccountBiometricInvalidatedExtension" xml:space="preserve">
|
<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>
|
||||||
<data name="EnableSyncOnRefresh" xml:space="preserve">
|
<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ə əsnasında eyniləşdirməni fəallaşdır</value>
|
||||||
@@ -1756,7 +1756,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>Müəssisə üçün tək daxil olma</value>
|
<value>Müəssisə üçün tək daxil olma</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LogInSsoSummary" xml:space="preserve">
|
<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>
|
||||||
<data name="OrgIdentifier" xml:space="preserve">
|
<data name="OrgIdentifier" xml:space="preserve">
|
||||||
<value>Təşkilat identifikatoru</value>
|
<value>Təşkilat identifikatoru</value>
|
||||||
@@ -1765,10 +1765,10 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>Hazırda SSO ilə giriş edilə bilmir</value>
|
<value>Hazırda SSO ilə giriş edilə bilmir</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SetMasterPassword" xml:space="preserve">
|
<data name="SetMasterPassword" xml:space="preserve">
|
||||||
<value>Ana parolu tənzimlə</value>
|
<value>Ana parolu ayarla</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SetMasterPasswordSummary" xml:space="preserve">
|
<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>
|
||||||
<data name="MasterPasswordPolicyInEffect" xml:space="preserve">
|
<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>
|
<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>
|
<value>Yararsız parol</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordPolicyValidationMessage" xml:space="preserve">
|
<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>
|
||||||
<data name="Loading" xml:space="preserve">
|
<data name="Loading" xml:space="preserve">
|
||||||
<value>Yüklənir</value>
|
<value>Yüklənir</value>
|
||||||
@@ -1813,7 +1813,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>Gizlilik Siyasəti</value>
|
<value>Gizlilik Siyasəti</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityDrawOverPermissionAlert" xml:space="preserve">
|
<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>
|
||||||
<data name="AutofillServices" xml:space="preserve">
|
<data name="AutofillServices" xml:space="preserve">
|
||||||
<value>Avto-doldurma xidmətləri</value>
|
<value>Avto-doldurma xidmətləri</value>
|
||||||
@@ -1924,7 +1924,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>Bitmə vaxtı</value>
|
<value>Bitmə vaxtı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExpirationDateInfo" xml:space="preserve">
|
<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>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Expired" xml:space="preserve">
|
<data name="Expired" xml:space="preserve">
|
||||||
@@ -1934,7 +1934,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>Maksimal müraciət sayı</value>
|
<value>Maksimal müraciət sayı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<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>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountReached" xml:space="preserve">
|
<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>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="SendFileEmailVerificationRequired" xml:space="preserve">
|
<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>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordPrompt" xml:space="preserve">
|
<data name="PasswordPrompt" xml:space="preserve">
|
||||||
@@ -2068,13 +2068,13 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>Ana parol təsdiqi</value>
|
<value>Ana parol təsdiqi</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<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>
|
||||||
<data name="CaptchaRequired" xml:space="preserve">
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
<value>Captcha tələb olunur</value>
|
<value>Captcha tələb olunur</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CaptchaFailed" xml:space="preserve">
|
<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>
|
||||||
<data name="UpdatedMasterPassword" xml:space="preserve">
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
<value>Güncəllənmiş ana parol</value>
|
<value>Güncəllənmiş ana parol</value>
|
||||||
@@ -2110,19 +2110,19 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>FIDO2 WebAuthn</value>
|
<value>FIDO2 WebAuthn</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Fido2Instruction" xml:space="preserve">
|
<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>
|
||||||
<data name="Fido2Desc" xml:space="preserve">
|
<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>
|
||||||
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
<value>WebAuthn-u təsdiqlə</value>
|
<value>WebAuthn kimlik doğrulama</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Fido2ReturnToApp" xml:space="preserve">
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
<value>Tətbiqə qayıt</value>
|
<value>Tətbiqə qayıt</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Fido2CheckBrowser" xml:space="preserve">
|
<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>
|
||||||
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
<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>
|
<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>
|
<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>
|
||||||
<data name="VaultTimeoutPolicyWithActionInEffect" xml:space="preserve">
|
<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>
|
||||||
<data name="VaultTimeoutActionPolicyInEffect" xml:space="preserve">
|
<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>
|
||||||
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
<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>
|
||||||
<data name="DisablePersonalVaultExportPolicyInEffect" xml:space="preserve">
|
<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>
|
||||||
<data name="AddAccount" xml:space="preserve">
|
<data name="AddAccount" xml:space="preserve">
|
||||||
<value>Hesab əlavə et</value>
|
<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>
|
<value>Hesabınız birdəfəlik silinəcək</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DeleteAccountExplanation" xml:space="preserve">
|
<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>
|
||||||
<data name="DeletingYourAccount" xml:space="preserve">
|
<data name="DeletingYourAccount" xml:space="preserve">
|
||||||
<value>Hesabınız silinir</value>
|
<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>
|
<value>Hesabınız birdəfəlik silindi</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="InvalidVerificationCode" xml:space="preserve">
|
<data name="InvalidVerificationCode" xml:space="preserve">
|
||||||
<value>Yararsız təsdiqləmə kodu.</value>
|
<value>Yararsız doğrulama kodu</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RequestOTP" xml:space="preserve">
|
<data name="RequestOTP" xml:space="preserve">
|
||||||
<value>Tək istifadəlik parol tələb et</value>
|
<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>
|
<value>Kod göndərilir</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Verifying" xml:space="preserve">
|
<data name="Verifying" xml:space="preserve">
|
||||||
<value>Təsdiqlənir</value>
|
<value>Doğrulanır</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ResendCode" xml:space="preserve">
|
<data name="ResendCode" xml:space="preserve">
|
||||||
<value>Kodu təkrar göndər</value>
|
<value>Kodu təkrar göndər</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AVerificationCodeWasSentToYourEmail" xml:space="preserve">
|
<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>
|
||||||
<data name="AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain" xml:space="preserve">
|
<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>
|
||||||
<data name="EnterTheVerificationCodeThatWasSentToYourEmail" xml:space="preserve">
|
<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>
|
||||||
<data name="SubmitCrashLogs" xml:space="preserve">
|
<data name="SubmitCrashLogs" xml:space="preserve">
|
||||||
<value>Çökmə jurnallarını göndər</value>
|
<value>Çökmə jurnallarını göndər</value>
|
||||||
@@ -2266,13 +2266,13 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>TOTP</value>
|
<value>TOTP</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerificationCodes" xml:space="preserve">
|
<data name="VerificationCodes" xml:space="preserve">
|
||||||
<value>Təsdiqləmə kodları</value>
|
<value>Doğrulama kodları</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PremiumSubscriptionRequired" xml:space="preserve">
|
<data name="PremiumSubscriptionRequired" xml:space="preserve">
|
||||||
<value>Premium abunəlik tələb olunur</value>
|
<value>Premium abunəlik tələb olunur</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotAddAuthenticatorKey" xml:space="preserve">
|
<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>
|
||||||
<data name="ScanQRCode" xml:space="preserve">
|
<data name="ScanQRCode" xml:space="preserve">
|
||||||
<value>QR kodu skan edin</value>
|
<value>QR kodu skan edin</value>
|
||||||
@@ -2281,7 +2281,7 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>QR kodunu skan edə bilmədiniz? </value>
|
<value>QR kodunu skan edə bilmədiniz? </value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuthenticatorKeyScanner" xml:space="preserve">
|
<data name="AuthenticatorKeyScanner" xml:space="preserve">
|
||||||
<value>Kimlik təsdiqləyici açarı</value>
|
<value>Kimlik doğrulayıcı açarı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnterKeyManually" xml:space="preserve">
|
<data name="EnterKeyManually" xml:space="preserve">
|
||||||
<value>Kodu əllə daxil et</value>
|
<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>
|
<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>
|
||||||
<data name="NeverLockWarning" xml:space="preserve">
|
<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>
|
||||||
<data name="EnvironmentPageUrlsError" xml:space="preserve">
|
<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>
|
||||||
<data name="GenericErrorMessage" xml:space="preserve">
|
<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>
|
||||||
<data name="AllowScreenCapture" xml:space="preserve">
|
<data name="AllowScreenCapture" xml:space="preserve">
|
||||||
<value>Ekranı çəkməyə icazə ver</value>
|
<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>
|
<value>Giriş tələblərini təsdiqlə</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices" xml:space="preserve">
|
<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>
|
||||||
<data name="AllowNotifications" xml:space="preserve">
|
<data name="AllowNotifications" xml:space="preserve">
|
||||||
<value>Bildirişlərə icazə ver</value>
|
<value>Bildirişlərə icazə ver</value>
|
||||||
@@ -2423,6 +2423,10 @@ Skan prosesi avtomatik baş tutacaq.</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API müraciət tokeni</value>
|
<value>API müraciət tokeni</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2501,7 +2505,7 @@ Bu hesaba keçmək istəyirsiniz?</value>
|
|||||||
<value>Cihazınıza bir bildiriş göndərildi.</value>
|
<value>Cihazınıza bir bildiriş göndərildi.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PleaseMakeSureYourVaultIsUnlockedAndTheFingerprintPhraseMatchesOnTheOtherDevice" xml:space="preserve">
|
<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 cihazda uyğun gəldiyinə əmin olun.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ResendNotification" xml:space="preserve">
|
<data name="ResendNotification" xml:space="preserve">
|
||||||
<value>Bildirişi təkrar göndər</value>
|
<value>Bildirişi təkrar göndər</value>
|
||||||
@@ -2537,7 +2541,7 @@ Bu hesaba keçmək istəyirsiniz?</value>
|
|||||||
<value>Dil</value>
|
<value>Dil</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LanguageChangeXDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="LanguageChangeRequiresAppRestart" xml:space="preserve">
|
<data name="LanguageChangeRequiresAppRestart" xml:space="preserve">
|
||||||
<value>Dil dəyişikliyi, tətbiqin yenidən başladılmasını tələb edir</value>
|
<value>Dil dəyişikliyi, tətbiqin yenidən başladılmasını tələb edir</value>
|
||||||
@@ -2663,7 +2667,7 @@ Bu hesaba keçmək istəyirsiniz?</value>
|
|||||||
<value>Ana parolu təkrar soruş köməyi</value>
|
<value>Ana parolu təkrar soruş köməyi</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockingMayFailDueToInsufficientMemoryDecreaseYourKDFMemorySettingsToResolve" xml:space="preserve">
|
<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>
|
||||||
<data name="InvalidAPIKey" xml:space="preserve">
|
<data name="InvalidAPIKey" xml:space="preserve">
|
||||||
<value>Yararsız API açarı</value>
|
<value>Yararsız API açarı</value>
|
||||||
@@ -2689,9 +2693,6 @@ Bu hesaba keçmək istəyirsiniz?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Anbar vaxt bitməsi əməliyyatı "çıxış et" olaraq dəyişdirildi</value>
|
<value>Anbar vaxt bitməsi əməliyyatı "çıxış et" olaraq dəyişdirildi</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Bu element təşkilatla paylaşıla bilmir, çünki eyni keçid açarına sahib bir element artıq mövcuddur.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Avto-doldurmanı əngəllə</value>
|
<value>Avto-doldurmanı əngəllə</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2739,7 +2740,7 @@ Bu hesaba keçmək istəyirsiniz?</value>
|
|||||||
<value>Giriş təsdiqləndi</value>
|
<value>Giriş təsdiqləndi</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LogInWithDeviceMustBeSetUpInTheSettingsOfTheBitwardenAppNeedAnotherOption" xml:space="preserve">
|
<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>
|
||||||
<data name="LogInWithDevice" xml:space="preserve">
|
<data name="LogInWithDevice" xml:space="preserve">
|
||||||
<value>Cihazla giriş et</value>
|
<value>Cihazla giriş et</value>
|
||||||
@@ -2859,4 +2860,13 @@ Bu hesaba keçmək istəyirsiniz?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Hesabdan çıxış edildi.</value>
|
<value>Hesabdan çıxış edildi.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<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>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>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2424,6 +2424,10 @@
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Токен доступу да API</value>
|
<value>Токен доступу да API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,9 +2694,6 @@
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Блакіраваць аўтазапаўненне</value>
|
<value>Блакіраваць аўтазапаўненне</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2860,4 +2861,13 @@
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2110,7 +2110,7 @@
|
|||||||
<value>FIDO2 WebAuthn</value>
|
<value>FIDO2 WebAuthn</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Fido2Instruction" xml:space="preserve">
|
<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>
|
||||||
<data name="Fido2Desc" xml:space="preserve">
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
<value>Идентификация чрез FIDO2 WebAuthn – можете да се идентифицирате чрез външен ключ за сигурност.</value>
|
<value>Идентификация чрез FIDO2 WebAuthn – можете да се идентифицирате чрез външен ключ за сигурност.</value>
|
||||||
@@ -2293,8 +2293,8 @@
|
|||||||
<value>Настройка на TOTP</value>
|
<value>Настройка на TOTP</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="OnceTheKeyIsSuccessfullyEntered" xml:space="preserve">
|
<data name="OnceTheKeyIsSuccessfullyEntered" xml:space="preserve">
|
||||||
<value>Once the key is successfully entered,
|
<value>След като ключът бъде въведен успешно,
|
||||||
select Add TOTP to store the key safely</value>
|
изберете „Добавяне на код за потвърждаване“, за да запазите ключа</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NeverLockWarning" xml:space="preserve">
|
<data name="NeverLockWarning" xml:space="preserve">
|
||||||
<value>Ако изберете „Никога“ като настройка за заключването, трезорът Ви ще бъде достъпен за всеки, който има досег с устройството. Ако използвате тази настройка, трябва да се уверите, че устройството Ви е удачно защитено.</value>
|
<value>Ако изберете „Никога“ като настройка за заключването, трезорът Ви ще бъде достъпен за всеки, който има досег с устройството. Ако използвате тази настройка, трябва да се уверите, че устройството Ви е удачно защитено.</value>
|
||||||
@@ -2424,6 +2424,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Идентификатор за достъп до API</value>
|
<value>Идентификатор за достъп до API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2637,22 +2641,22 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Запомняне на това устройство</value>
|
<value>Запомняне на това устройство</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Passkey" xml:space="preserve">
|
<data name="Passkey" xml:space="preserve">
|
||||||
<value>Passkey</value>
|
<value>Секретен ключ</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Passkeys" xml:space="preserve">
|
<data name="Passkeys" xml:space="preserve">
|
||||||
<value>Passkeys</value>
|
<value>Секретни ключове</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Application" xml:space="preserve">
|
<data name="Application" xml:space="preserve">
|
||||||
<value>Приложение</value>
|
<value>Приложение</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="YouCannotEditPasskeyApplicationBecauseItWouldInvalidateThePasskey" xml:space="preserve">
|
<data name="YouCannotEditPasskeyApplicationBecauseItWouldInvalidateThePasskey" xml:space="preserve">
|
||||||
<value>You cannot edit passkey application because it would invalidate the passkey</value>
|
<value>Не може да редактирате приложението за секретни ключове, защото секретният ключ ще спре да работи</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasskeyWillNotBeCopied" xml:space="preserve">
|
<data name="PasskeyWillNotBeCopied" xml:space="preserve">
|
||||||
<value>Passkey will not be copied</value>
|
<value>Секретният ключ няма да бъде копиран</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThePasskeyWillNotBeCopiedToTheClonedItemDoYouWantToContinueCloningThisItem" xml:space="preserve">
|
<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>Секретният ключ няма да бъде копиран в клонирания елемент. Искате ли да продължите с клонирането на елемента?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyApplication" xml:space="preserve">
|
<data name="CopyApplication" xml:space="preserve">
|
||||||
<value>Копиране на приложението</value>
|
<value>Копиране на приложението</value>
|
||||||
@@ -2690,9 +2694,6 @@ select Add TOTP to store the key safely</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Действието при изтичане на времето за достъп до трезора е променено на отписване</value>
|
<value>Действието при изтичане на времето за достъп до трезора е променено на отписване</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Блокиране на авт. попълване</value>
|
<value>Блокиране на авт. попълване</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2770,7 +2771,7 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Синхронизиране сега</value>
|
<value>Синхронизиране сега</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockOptions" xml:space="preserve">
|
<data name="UnlockOptions" xml:space="preserve">
|
||||||
<value>Unlock options</value>
|
<value>Настройки за отключване</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SessionTimeout" xml:space="preserve">
|
<data name="SessionTimeout" xml:space="preserve">
|
||||||
<value>Изтичане на времето за сесията</value>
|
<value>Изтичане на времето за сесията</value>
|
||||||
@@ -2860,4 +2861,13 @@ select Add TOTP to store the key safely</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Акаунтът е отписан.</value>
|
<value>Акаунтът е отписан.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Правата Ви в организацията бяха променени, необходимо е да зададете главна парола.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Организацията Ви изисква да зададете главна парола.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Задайте начин за отключване, за да може да промените действието при изтичане на времето за достъп до трезора.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2423,6 +2423,10 @@ Skeniranje će biti izvršeno automatski.</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2689,9 +2693,6 @@ Skeniranje će biti izvršeno automatski.</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2859,4 +2860,13 @@ Skeniranje će biti izvršeno automatski.</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -946,7 +946,7 @@ L'escaneig es farà automàticament.</value>
|
|||||||
<value>No podeu utilitzar aquesta característica fins que no actualitzeu la vostra clau de xifratge.</value>
|
<value>No podeu utilitzar aquesta característica fins que no actualitzeu la vostra clau de xifratge.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EncryptionKeyMigrationRequiredDescriptionLong" xml:space="preserve">
|
<data name="EncryptionKeyMigrationRequiredDescriptionLong" xml:space="preserve">
|
||||||
<value>Encryption key migration required. Please login through the web vault to update your encryption key.</value>
|
<value>Cal migrar la clau de xifratge. Inicieu la sessió a la caixa forta web per actualitzar la clau de xifratge.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnMore" xml:space="preserve">
|
<data name="LearnMore" xml:space="preserve">
|
||||||
<value>Més informació</value>
|
<value>Més informació</value>
|
||||||
@@ -2424,6 +2424,10 @@ seleccioneu Afegeix TOTP per emmagatzemar la clau de manera segura</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Token d'accés a l'API</value>
|
<value>Token d'accés a l'API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,9 +2694,6 @@ Voleu canviar a aquest compte?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>L'acció de temps d'espera de la caixa forta ha canviat per tancar la sessió</value>
|
<value>L'acció de temps d'espera de la caixa forta ha canviat per tancar la sessió</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Aquest element no es pot compartir amb l'organització perquè ja n'hi ha un amb la mateixa clau de pas.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Bloqueja l'emplenament automàtic</value>
|
<value>Bloqueja l'emplenament automàtic</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2749,115 +2750,124 @@ Voleu canviar a aquest compte?</value>
|
|||||||
<value>Inici de sessió en</value>
|
<value>Inici de sessió en</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Vault" xml:space="preserve">
|
<data name="Vault" xml:space="preserve">
|
||||||
<value>Vault</value>
|
<value>Caixa forta</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Appearance" xml:space="preserve">
|
<data name="Appearance" xml:space="preserve">
|
||||||
<value>Appearance</value>
|
<value>Aparença</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountSecurity" xml:space="preserve">
|
<data name="AccountSecurity" xml:space="preserve">
|
||||||
<value>Account security</value>
|
<value>Seguretat del compte</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenHelpCenter" xml:space="preserve">
|
<data name="BitwardenHelpCenter" xml:space="preserve">
|
||||||
<value>Bitwarden Help Center</value>
|
<value>Centre d'ajuda de Bitwarden</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContactBitwardenSupport" xml:space="preserve">
|
<data name="ContactBitwardenSupport" xml:space="preserve">
|
||||||
<value>Contact Bitwarden support</value>
|
<value>Contacta amb l'assistència de Bitwarden</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyAppInformation" xml:space="preserve">
|
<data name="CopyAppInformation" xml:space="preserve">
|
||||||
<value>Copy app information</value>
|
<value>Copia la informació de l'aplicació</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncNow" xml:space="preserve">
|
<data name="SyncNow" xml:space="preserve">
|
||||||
<value>Sync now</value>
|
<value>Sincronitza ara</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockOptions" xml:space="preserve">
|
<data name="UnlockOptions" xml:space="preserve">
|
||||||
<value>Unlock options</value>
|
<value>Opcions de desbloqueig</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SessionTimeout" xml:space="preserve">
|
<data name="SessionTimeout" xml:space="preserve">
|
||||||
<value>Session timeout</value>
|
<value>Temps de sessió</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SessionTimeoutAction" xml:space="preserve">
|
<data name="SessionTimeoutAction" xml:space="preserve">
|
||||||
<value>Session timeout action</value>
|
<value>Acció de temps d'espera de la sessió</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountFingerprintPhrase" xml:space="preserve">
|
<data name="AccountFingerprintPhrase" xml:space="preserve">
|
||||||
<value>Account fingerprint phrase</value>
|
<value>Frase d'empremta digital</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>
|
<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>
|
||||||
<data name="OneHourAndOneMinute" xml:space="preserve">
|
<data name="OneHourAndOneMinute" xml:space="preserve">
|
||||||
<value>One hour and one minute</value>
|
<value>Una hora i un minut</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="OneHourAndXMinute" xml:space="preserve">
|
<data name="OneHourAndXMinute" xml:space="preserve">
|
||||||
<value>One hour and {0} minutes</value>
|
<value>Una hora i {0} minuts</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHoursAndOneMinute" xml:space="preserve">
|
<data name="XHoursAndOneMinute" xml:space="preserve">
|
||||||
<value>{0} hours and one minute</value>
|
<value>{0} hores i un minut</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHoursAndYMinutes" xml:space="preserve">
|
<data name="XHoursAndYMinutes" xml:space="preserve">
|
||||||
<value>{0} hours and {1} minutes</value>
|
<value>{0} hores i {1} minuts</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHours" xml:space="preserve">
|
<data name="XHours" xml:space="preserve">
|
||||||
<value>{0} hours</value>
|
<value>{0} hores</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServicesExplanationLong" xml:space="preserve">
|
<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 marc d'emplenament automàtic d'Android s'utilitza per ajudar a omplir la informació d'inici de sessió a altres aplicacions del vostre dispositiu.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
|
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
|
||||||
<value>Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay.</value>
|
<value>Utilitzeu l'emplenament automàtic en línia si el vostre teclat seleccionat ho admet. En cas contrari, utilitzeu la superposició predeterminada.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AdditionalOptions" xml:space="preserve">
|
<data name="AdditionalOptions" xml:space="preserve">
|
||||||
<value>Additional options</value>
|
<value>Opcions addicionals</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToWebApp" xml:space="preserve">
|
<data name="ContinueToWebApp" xml:space="preserve">
|
||||||
<value>Continue to web app?</value>
|
<value>Continua cap a l'aplicació web?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToX" xml:space="preserve">
|
<data name="ContinueToX" xml:space="preserve">
|
||||||
<value>Continue to {0}?</value>
|
<value>Voleu continuar cap a {0}?</value>
|
||||||
<comment>The parameter is an URL, like bitwarden.com.</comment>
|
<comment>The parameter is an URL, like bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToHelpCenter" xml:space="preserve">
|
<data name="ContinueToHelpCenter" xml:space="preserve">
|
||||||
<value>Continue to Help center?</value>
|
<value>Voleu continuar cap al Centre d'ajuda?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToContactSupport" xml:space="preserve">
|
<data name="ContinueToContactSupport" xml:space="preserve">
|
||||||
<value>Continue to contact support?</value>
|
<value>Voleu continuar per contactar amb l'assistència?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToAppStore" xml:space="preserve">
|
<data name="ContinueToAppStore" xml:space="preserve">
|
||||||
<value>Continue to app store?</value>
|
<value>Voleu continuar cap a l'app store?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TwoStepLoginDescriptionLong" xml:space="preserve">
|
<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>Fes que el vostre compte siga més segur configurant l'inici de sessió en dos passos a l'aplicació web de Bitwarden.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
|
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
|
||||||
<value>You can change your master password on the Bitwarden web app.</value>
|
<value>Podeu canviar la vostra contrasenya mestra a l'aplicació web de Bitwarden.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
|
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
|
||||||
<value>You can import data to your vault on {0}.</value>
|
<value>Podeu importar dades a la vostra caixa forta a {0}.</value>
|
||||||
<comment>The parameter is an URL, like vault.bitwarden.com.</comment>
|
<comment>The parameter is an URL, like vault.bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
|
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
|
||||||
<value>Learn more about how to use Bitwarden on the Help center.</value>
|
<value>Obteniu més informació sobre com utilitzar Bitwarden al Centre d'ajuda.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
||||||
<value>Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com.</value>
|
<value>No trobeu el que esteu buscant? Poseu-vos en contacte amb l'assistència de Bitwarden a bitwarden.com.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
|
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
|
||||||
<value>Explore more features of your Bitwarden account on the web app.</value>
|
<value>Exploreu més característiques del vostre compte Bitwarden a l'aplicació web.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnAboutOrganizationsDescriptionLong" xml:space="preserve">
|
<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 us permet compartir els elements de la vostra caixa forta amb altres usuaris mitjançant una organització. Més informació al lloc web bitwarden.com.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RateAppDescriptionLong" xml:space="preserve">
|
<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>Ajudeu els altres a descobrir si Bitwarden és adequat per a ells. Visiteu la botiga d'aplicacions i deixeu-nos una valoració.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
||||||
<value>Choose the dark theme to use when your device’s dark mode is in use</value>
|
<value>Tria el tema fosc quan el mode fosc del vostre dispositiu estiga en ús</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CreatedXY" xml:space="preserve">
|
<data name="CreatedXY" xml:space="preserve">
|
||||||
<value>Created {0}, {1}</value>
|
<value>Creat {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>
|
<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>
|
||||||
<data name="TooManyAttempts" xml:space="preserve">
|
<data name="TooManyAttempts" xml:space="preserve">
|
||||||
<value>Too many attempts</value>
|
<value>Ha hagut massa intents</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>S'ha tancat la sessió del compte.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Els permisos de la vostra organització s'han actualitzat, cal que establiu una contrasenya mestra.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>La vostra organització requereix que establiu una contrasenya mestra.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Configura una opció de desbloqueig per canviar l'acció de temps d'espera de la caixa forta.</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7821
src/App/Resources/AppResources.cs.Designer.cs
generated
7821
src/App/Resources/AppResources.cs.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -375,7 +375,7 @@
|
|||||||
<comment>Validation message for when a form field is left blank and is required to be entered.</comment>
|
<comment>Validation message for when a form field is left blank and is required to be entered.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ValueHasBeenCopied" xml:space="preserve">
|
<data name="ValueHasBeenCopied" xml:space="preserve">
|
||||||
<value>{0} bylo zkopírováno.</value>
|
<value>{0}: zkopírováno</value>
|
||||||
<comment>Confirmation message after successfully copying a value to the clipboard.</comment>
|
<comment>Confirmation message after successfully copying a value to the clipboard.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerifyFingerprint" xml:space="preserve">
|
<data name="VerifyFingerprint" xml:space="preserve">
|
||||||
@@ -499,7 +499,7 @@
|
|||||||
<value>Pro spuštění rozšíření klepněte na ikonu Bitwardenu v menu.</value>
|
<value>Pro spuštění rozšíření klepněte na ikonu Bitwardenu v menu.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionTurnOn" xml:space="preserve">
|
<data name="ExtensionTurnOn" xml:space="preserve">
|
||||||
<value>Pro zapnutí Bitwardenu v prohlížeči Safari a dalších aplikacích klepněte na ikonu „Další“ v dolní části menu.</value>
|
<value>Pro zapnutí Bitwardenu v prohlížeči Safari a dalších aplikacích klepněte na ikonu "Další“ v dolní části menu.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Favorite" xml:space="preserve">
|
<data name="Favorite" xml:space="preserve">
|
||||||
<value>Oblíbené</value>
|
<value>Oblíbené</value>
|
||||||
@@ -958,10 +958,10 @@ Načtení proběhne automaticky.</value>
|
|||||||
<value>Vlastní prostředí</value>
|
<value>Vlastní prostředí</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CustomEnvironmentFooter" xml:space="preserve">
|
<data name="CustomEnvironmentFooter" xml:space="preserve">
|
||||||
<value>Pro pokročilé uživatele. Můžete zadat základní URL adresu každé služby zvlášť.</value>
|
<value>Pro pokročilé uživatele. Můžete zadat základní URL každé služby zvlášť.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnvironmentSaved" xml:space="preserve">
|
<data name="EnvironmentSaved" xml:space="preserve">
|
||||||
<value>URL adresy vlastního prostředí byly uloženy.</value>
|
<value>URL vlastního prostředí byly uloženy.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FormattedIncorrectly" xml:space="preserve">
|
<data name="FormattedIncorrectly" xml:space="preserve">
|
||||||
<value>{0} nemá správný formát.</value>
|
<value>{0} nemá správný formát.</value>
|
||||||
@@ -975,7 +975,7 @@ Načtení proběhne automaticky.</value>
|
|||||||
<value>Vlastní hostované prostředí</value>
|
<value>Vlastní hostované prostředí</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SelfHostedEnvironmentFooter" xml:space="preserve">
|
<data name="SelfHostedEnvironmentFooter" xml:space="preserve">
|
||||||
<value>Zadejte základní URL adresu vlastní hostované aplikace Bitwarden.</value>
|
<value>Zadejte základní URL vlastní hostované aplikace Bitwarden.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ServerUrl" xml:space="preserve">
|
<data name="ServerUrl" xml:space="preserve">
|
||||||
<value>URL serveru</value>
|
<value>URL serveru</value>
|
||||||
@@ -1023,13 +1023,13 @@ Načtení proběhne automaticky.</value>
|
|||||||
<value>Adresa 3</value>
|
<value>Adresa 3</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="April" xml:space="preserve">
|
<data name="April" xml:space="preserve">
|
||||||
<value>Duben</value>
|
<value>duben</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="August" xml:space="preserve">
|
<data name="August" xml:space="preserve">
|
||||||
<value>Srpen</value>
|
<value>srpen</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Brand" xml:space="preserve">
|
<data name="Brand" xml:space="preserve">
|
||||||
<value>Značka</value>
|
<value>Vydavatel</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CardholderName" xml:space="preserve">
|
<data name="CardholderName" xml:space="preserve">
|
||||||
<value>Jméno držitele karty</value>
|
<value>Jméno držitele karty</value>
|
||||||
@@ -1044,10 +1044,10 @@ Načtení proběhne automaticky.</value>
|
|||||||
<value>Stát</value>
|
<value>Stát</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="December" xml:space="preserve">
|
<data name="December" xml:space="preserve">
|
||||||
<value>Prosinec</value>
|
<value>prosinec</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Dr" xml:space="preserve">
|
<data name="Dr" xml:space="preserve">
|
||||||
<value>MUDr.</value>
|
<value>Dr.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExpirationMonth" xml:space="preserve">
|
<data name="ExpirationMonth" xml:space="preserve">
|
||||||
<value>Měsíc expirace</value>
|
<value>Měsíc expirace</value>
|
||||||
@@ -1056,19 +1056,19 @@ Načtení proběhne automaticky.</value>
|
|||||||
<value>Rok expirace</value>
|
<value>Rok expirace</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="February" xml:space="preserve">
|
<data name="February" xml:space="preserve">
|
||||||
<value>Únor</value>
|
<value>únor</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FirstName" xml:space="preserve">
|
<data name="FirstName" xml:space="preserve">
|
||||||
<value>Křestní jméno</value>
|
<value>Křestní jméno</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="January" xml:space="preserve">
|
<data name="January" xml:space="preserve">
|
||||||
<value>Leden</value>
|
<value>leden</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="July" xml:space="preserve">
|
<data name="July" xml:space="preserve">
|
||||||
<value>Červenec</value>
|
<value>červenec</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="June" xml:space="preserve">
|
<data name="June" xml:space="preserve">
|
||||||
<value>Červen</value>
|
<value>červen</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LastName" xml:space="preserve">
|
<data name="LastName" xml:space="preserve">
|
||||||
<value>Příjmení</value>
|
<value>Příjmení</value>
|
||||||
@@ -1080,10 +1080,10 @@ Načtení proběhne automaticky.</value>
|
|||||||
<value>Číslo dokladu totožnosti</value>
|
<value>Číslo dokladu totožnosti</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="March" xml:space="preserve">
|
<data name="March" xml:space="preserve">
|
||||||
<value>Březen</value>
|
<value>březen</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="May" xml:space="preserve">
|
<data name="May" xml:space="preserve">
|
||||||
<value>Květen</value>
|
<value>květen</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MiddleName" xml:space="preserve">
|
<data name="MiddleName" xml:space="preserve">
|
||||||
<value>Prostřední jméno</value>
|
<value>Prostřední jméno</value>
|
||||||
@@ -1101,10 +1101,10 @@ Načtení proběhne automaticky.</value>
|
|||||||
<value>Neutrální</value>
|
<value>Neutrální</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="November" xml:space="preserve">
|
<data name="November" xml:space="preserve">
|
||||||
<value>Listopad</value>
|
<value>listopad</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="October" xml:space="preserve">
|
<data name="October" xml:space="preserve">
|
||||||
<value>Říjen</value>
|
<value>říjen</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PassportNumber" xml:space="preserve">
|
<data name="PassportNumber" xml:space="preserve">
|
||||||
<value>Číslo cestovního pasu</value>
|
<value>Číslo cestovního pasu</value>
|
||||||
@@ -1113,10 +1113,10 @@ Načtení proběhne automaticky.</value>
|
|||||||
<value>Telefon</value>
|
<value>Telefon</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="September" xml:space="preserve">
|
<data name="September" xml:space="preserve">
|
||||||
<value>Září</value>
|
<value>září</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SSN" xml:space="preserve">
|
<data name="SSN" xml:space="preserve">
|
||||||
<value>Číslo sociálního pojištění</value>
|
<value>Rodné číslo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="StateProvince" xml:space="preserve">
|
<data name="StateProvince" xml:space="preserve">
|
||||||
<value>Kraj / Provincie</value>
|
<value>Kraj / Provincie</value>
|
||||||
@@ -1298,22 +1298,22 @@ Načtení proběhne automaticky.</value>
|
|||||||
<value>Přistupujte k Vašemu trezoru přímo z Vaší klávesnice pro rychlejší automatické vyplnění hesel.</value>
|
<value>Přistupujte k Vašemu trezoru přímo z Vaší klávesnice pro rychlejší automatické vyplnění hesel.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn" xml:space="preserve">
|
<data name="AutofillTurnOn" xml:space="preserve">
|
||||||
<value>Pokyny pro zapnutí automatického vyplňování hesel na vašem zařízení:</value>
|
<value>Pokyny pro zapnutí automatického vyplňování hesel na Vašem zařízení:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn1" xml:space="preserve">
|
<data name="AutofillTurnOn1" xml:space="preserve">
|
||||||
<value>1. Přejděte do aplikace "Nastavení" v iOS</value>
|
<value>1. Přejděte do aplikace "Nastavení" v iOS</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn2" xml:space="preserve">
|
<data name="AutofillTurnOn2" xml:space="preserve">
|
||||||
<value>2. Klepněte na „Hesla“ > „Volby hesla“</value>
|
<value>2. Klepněte na "Hesla" > "Volby hesla"</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn3" xml:space="preserve">
|
<data name="AutofillTurnOn3" xml:space="preserve">
|
||||||
<value>3. Povolte „Automatické vyplnění hesel“</value>
|
<value>3. Zapněte přepínač u položky "Automatické vyplnění hesel"</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn4" xml:space="preserve">
|
<data name="AutofillTurnOn4" xml:space="preserve">
|
||||||
<value>4. Najděte sekci „Povolit vyplňování z“</value>
|
<value>4. Najděte sekci "Povolit vyplňování z:"</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn5" xml:space="preserve">
|
<data name="AutofillTurnOn5" xml:space="preserve">
|
||||||
<value>5. Zvolte „Bitwarden“</value>
|
<value>5. Zvolte "Bitwarden"</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordAutofill" xml:space="preserve">
|
<data name="PasswordAutofill" xml:space="preserve">
|
||||||
<value>Automatické vyplňování hesel</value>
|
<value>Automatické vyplňování hesel</value>
|
||||||
@@ -1562,7 +1562,7 @@ Načtení proběhne automaticky.</value>
|
|||||||
<value>Chcete po restartování aplikace vyžadovat hlavní heslo pro odemknutí trezoru?</value>
|
<value>Chcete po restartování aplikace vyžadovat hlavní heslo pro odemknutí trezoru?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Black" xml:space="preserve">
|
<data name="Black" xml:space="preserve">
|
||||||
<value>Černá</value>
|
<value>Černý</value>
|
||||||
<comment>The color black</comment>
|
<comment>The color black</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Nord" xml:space="preserve">
|
<data name="Nord" xml:space="preserve">
|
||||||
@@ -1570,7 +1570,7 @@ Načtení proběhne automaticky.</value>
|
|||||||
<comment>'Nord' is the name of a specific color scheme. It should not be translated.</comment>
|
<comment>'Nord' is the name of a specific color scheme. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="SolarizedDark" xml:space="preserve">
|
<data name="SolarizedDark" xml:space="preserve">
|
||||||
<value>Tmavý – Solarized</value>
|
<value>Tmavý (solární)</value>
|
||||||
<comment>'Solarized Dark' is the name of a specific color scheme. It should not be translated.</comment>
|
<comment>'Solarized Dark' is the name of a specific color scheme. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillBlockedUris" xml:space="preserve">
|
<data name="AutofillBlockedUris" xml:space="preserve">
|
||||||
@@ -1947,7 +1947,7 @@ Načtení proběhne automaticky.</value>
|
|||||||
<value>Nové heslo</value>
|
<value>Nové heslo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordInfo" xml:space="preserve">
|
<data name="PasswordInfo" xml:space="preserve">
|
||||||
<value>Volitelně vyžadovat heslo pro přístup k tomuto Send.</value>
|
<value>Volitelně bude vyžadovat heslo pro přístup k tomuto Send.</value>
|
||||||
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="RemovePassword" xml:space="preserve">
|
<data name="RemovePassword" xml:space="preserve">
|
||||||
@@ -1967,7 +1967,7 @@ Načtení proběhne automaticky.</value>
|
|||||||
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="DisableSend" xml:space="preserve">
|
<data name="DisableSend" xml:space="preserve">
|
||||||
<value>Deaktivuje tento Send, díky čemuž k němu nebude moci nikdo přistoupit</value>
|
<value>Deaktivovat tento Send (nikdo k němu nebude mít přístup)</value>
|
||||||
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoSends" xml:space="preserve">
|
<data name="NoSends" xml:space="preserve">
|
||||||
@@ -2299,13 +2299,13 @@ Načtení proběhne automaticky.</value>
|
|||||||
<value>Nastavení zámku na "Nikdy" ponechá Váš trezor k dispozici komukoli s přístupem k Vašemu zařízení. Používáte-li tuto možnost, měli byste zajistit, aby Vaše zařízení bylo náležitě chráněno.</value>
|
<value>Nastavení zámku na "Nikdy" ponechá Váš trezor k dispozici komukoli s přístupem k Vašemu zařízení. Používáte-li tuto možnost, měli byste zajistit, aby Vaše zařízení bylo náležitě chráněno.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnvironmentPageUrlsError" xml:space="preserve">
|
<data name="EnvironmentPageUrlsError" xml:space="preserve">
|
||||||
<value>Jedna nebo více zadaných adres URL jsou neplatné. Zkontrolujte je a opakujte akci znovu.</value>
|
<value>Jedna nebo více zadaných URL jsou neplatné. Zkontrolujte je a opakujte akci znovu.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GenericErrorMessage" xml:space="preserve">
|
<data name="GenericErrorMessage" xml:space="preserve">
|
||||||
<value>Nepodařilo se nám zpracovat Váš požadavek. Zkuste to znovu nebo nás kontaktujte.</value>
|
<value>Nepodařilo se nám zpracovat Váš požadavek. Zkuste to znovu nebo nás kontaktujte.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AllowScreenCapture" xml:space="preserve">
|
<data name="AllowScreenCapture" xml:space="preserve">
|
||||||
<value>Povolit záznam obrazovky</value>
|
<value>Zapnout záznam obrazovky</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AreYouSureYouWantToEnableScreenCapture" xml:space="preserve">
|
<data name="AreYouSureYouWantToEnableScreenCapture" xml:space="preserve">
|
||||||
<value>Opravdu chcete zapnout záznam obrazovky?</value>
|
<value>Opravdu chcete zapnout záznam obrazovky?</value>
|
||||||
@@ -2423,6 +2423,10 @@ Načtení proběhne automaticky.</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Přístupový token API</value>
|
<value>Přístupový token API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2540,7 +2544,7 @@ Chcete se přepnout na tento účet?</value>
|
|||||||
<value>Jazyk byl změněn na {0}. Pro zobrazení změn restartujte aplikaci.</value>
|
<value>Jazyk byl změněn na {0}. Pro zobrazení změn restartujte aplikaci.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LanguageChangeRequiresAppRestart" xml:space="preserve">
|
<data name="LanguageChangeRequiresAppRestart" xml:space="preserve">
|
||||||
<value>Změna jazyku vyžaduje restart aplikace</value>
|
<value>Změna jazyka vyžaduje restart aplikace.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultSystem" xml:space="preserve">
|
<data name="DefaultSystem" xml:space="preserve">
|
||||||
<value>Výchozí (Systémový)</value>
|
<value>Výchozí (Systémový)</value>
|
||||||
@@ -2689,9 +2693,6 @@ Chcete se přepnout na tento účet?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Akce časového limitu trezoru byla změněna na odhlášení</value>
|
<value>Akce časového limitu trezoru byla změněna na odhlášení</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Tuto položku nelze sdílet s organizací, protože již existuje jedna se stejným přístupovým klíčem.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Blokovat automatické vyplňování</value>
|
<value>Blokovat automatické vyplňování</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2859,4 +2860,13 @@ Chcete se přepnout na tento účet?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Účet byl odhlášen.</value>
|
<value>Účet byl odhlášen.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Oprávnění Vaší organizace byla aktualizována. To vyžaduje nastavení hlavního hesla.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Vaše organizace vyžaduje nastavení hlavního hesla.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Nastavte volbu odemknutí, abyste změnili časový limit Vašeho trezoru.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Rhwystro llenwi awtomatig</value>
|
<value>Rhwystro llenwi awtomatig</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7822
src/App/Resources/AppResources.da.Designer.cs
generated
7822
src/App/Resources/AppResources.da.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -2424,6 +2424,10 @@ vælg Tilføj TOTP for at gemme nøglen sikkert</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API-adgangstoken</value>
|
<value>API-adgangstoken</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,9 +2694,6 @@ Vil du skifte til denne konto?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Boks-timeouthandling ændret til udlogning</value>
|
<value>Boks-timeouthandling ændret til udlogning</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Dette emne kan ikke deles med organisationen, da der allerede er et med den samme adgangsnøgle.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Blokér autoudfyldning</value>
|
<value>Blokér autoudfyldning</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2770,7 +2771,7 @@ Vil du skifte til denne konto?</value>
|
|||||||
<value>Synk nu</value>
|
<value>Synk nu</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockOptions" xml:space="preserve">
|
<data name="UnlockOptions" xml:space="preserve">
|
||||||
<value>Oplås muligheder</value>
|
<value>Oplåsningsmuligheder</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SessionTimeout" xml:space="preserve">
|
<data name="SessionTimeout" xml:space="preserve">
|
||||||
<value>Sessionstimeout</value>
|
<value>Sessionstimeout</value>
|
||||||
@@ -2820,7 +2821,7 @@ Vil du skifte til denne konto?</value>
|
|||||||
<value>Fortsæt med at kontakte support?</value>
|
<value>Fortsæt med at kontakte support?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToAppStore" xml:space="preserve">
|
<data name="ContinueToAppStore" xml:space="preserve">
|
||||||
<value>Fortsæt til App Store?</value>
|
<value>Fortsæt til app-butik?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TwoStepLoginDescriptionLong" xml:space="preserve">
|
<data name="TwoStepLoginDescriptionLong" xml:space="preserve">
|
||||||
<value>Øg kontosikkerheden ved at oprette totrins-indlogning i Bitwarden web-appen.</value>
|
<value>Øg kontosikkerheden ved at oprette totrins-indlogning i Bitwarden web-appen.</value>
|
||||||
@@ -2860,4 +2861,13 @@ Vil du skifte til denne konto?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Konto logget ud.</value>
|
<value>Konto logget ud.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Organisationstilladelserne er blevet opdateret, og der kræves nu oprettelse af en hovedadgangskode.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Organisationen kræver, at der oprettes en hovedadgangskode.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Opsæt en oplåsningsmetode for at ændre Bokstimeouthandlingen.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7821
src/App/Resources/AppResources.de.Designer.cs
generated
7821
src/App/Resources/AppResources.de.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -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>
|
<value>Du kannst diese Funktion nicht nutzen, solange du deinen Verschlüsselungsschlüssel nicht aktualisiert hast.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EncryptionKeyMigrationRequiredDescriptionLong" xml:space="preserve">
|
<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>
|
||||||
<data name="LearnMore" xml:space="preserve">
|
<data name="LearnMore" xml:space="preserve">
|
||||||
<value>Mehr erfahren</value>
|
<value>Mehr erfahren</value>
|
||||||
@@ -2423,6 +2423,10 @@ Das Scannen erfolgt automatisch.</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API-Zugriffstoken</value>
|
<value>API-Zugriffstoken</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2689,9 +2693,6 @@ Möchtest du zu diesem Konto wechseln?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Tresor-Timeoutaktion auf "Abmelden" geändert</value>
|
<value>Tresor-Timeoutaktion auf "Abmelden" geändert</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Dieser Eintrag kann nicht mit der Organisation geteilt werden, da bereits einer mit dem gleichen Passkey existiert.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Auto-Ausfüllen blockieren</value>
|
<value>Auto-Ausfüllen blockieren</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2859,4 +2860,13 @@ Möchtest du zu diesem Konto wechseln?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Konto abgemeldet.</value>
|
<value>Konto abgemeldet.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Deine Organisationsberechtigungen wurden aktualisiert und verlangen, dass du ein Master-Passwort festlegen musst.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<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>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -247,8 +247,7 @@
|
|||||||
<comment>Description message for the alert when internet connection is required to continue.</comment>
|
<comment>Description message for the alert when internet connection is required to continue.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="InternetConnectionRequiredTitle" xml:space="preserve">
|
<data name="InternetConnectionRequiredTitle" xml:space="preserve">
|
||||||
<value>28/5000
|
<value>Απαιτείται σύνδεση στο διαδίκτυο</value>
|
||||||
Απαιτείται σύνδεση στο διαδίκτυο</value>
|
|
||||||
<comment>Title for the alert when internet connection is required to continue.</comment>
|
<comment>Title for the alert when internet connection is required to continue.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="InvalidMasterPassword" xml:space="preserve">
|
<data name="InvalidMasterPassword" xml:space="preserve">
|
||||||
@@ -946,7 +945,7 @@
|
|||||||
<value>Δεν μπορείτε να χρησιμοποιήσετε αυτήν τη δυνατότητα μέχρι να ενημερώσετε το κλειδί κρυπτογράφησης.</value>
|
<value>Δεν μπορείτε να χρησιμοποιήσετε αυτήν τη δυνατότητα μέχρι να ενημερώσετε το κλειδί κρυπτογράφησης.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EncryptionKeyMigrationRequiredDescriptionLong" xml:space="preserve">
|
<data name="EncryptionKeyMigrationRequiredDescriptionLong" xml:space="preserve">
|
||||||
<value>Encryption key migration required. Please login through the web vault to update your encryption key.</value>
|
<value>Απαιτείται μεταφορά του κλειδιού κρυπτογράφησης. Παρακαλούμε συνδεθείτε μέσω του web vault για να ενημερώσετε το κλειδί κρυπτογράφησης.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnMore" xml:space="preserve">
|
<data name="LearnMore" xml:space="preserve">
|
||||||
<value>Μάθετε Περισσότερα</value>
|
<value>Μάθετε Περισσότερα</value>
|
||||||
@@ -2424,6 +2423,10 @@
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API Access Token</value>
|
<value>API Access Token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2619,28 +2622,28 @@
|
|||||||
<value>Τρέχων κύριος κωδικός</value>
|
<value>Τρέχων κύριος κωδικός</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoggedIn" xml:space="preserve">
|
<data name="LoggedIn" xml:space="preserve">
|
||||||
<value>Logged in!</value>
|
<value>Έχετε συνδεθεί!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ApproveWithMyOtherDevice" xml:space="preserve">
|
<data name="ApproveWithMyOtherDevice" xml:space="preserve">
|
||||||
<value>Approve with my other device</value>
|
<value>Έγκριση μέσω άλλης συσκευής μου</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RequestAdminApproval" xml:space="preserve">
|
<data name="RequestAdminApproval" xml:space="preserve">
|
||||||
<value>Request admin approval</value>
|
<value>Αίτηση έγκρισης από διαχειριστή</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ApproveWithMasterPassword" xml:space="preserve">
|
<data name="ApproveWithMasterPassword" xml:space="preserve">
|
||||||
<value>Approve with master password</value>
|
<value>Έγκριση με τον κύριο κωδικό πρόσβασης</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TurnOffUsingPublicDevice" xml:space="preserve">
|
<data name="TurnOffUsingPublicDevice" xml:space="preserve">
|
||||||
<value>Turn off using a public device</value>
|
<value>Απενεργοποίηση με χρήση δημόσιας συσκευής</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RememberThisDevice" xml:space="preserve">
|
<data name="RememberThisDevice" xml:space="preserve">
|
||||||
<value>Remember this device</value>
|
<value>Απομνημόνευση αυτής της συσκευής</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Passkey" xml:space="preserve">
|
<data name="Passkey" xml:space="preserve">
|
||||||
<value>Συνθηματικό</value>
|
<value>Κλειδί πρόσβασης</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Passkeys" xml:space="preserve">
|
<data name="Passkeys" xml:space="preserve">
|
||||||
<value>Συνθηματικά</value>
|
<value>Κλειδιά πρόσβασης</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Application" xml:space="preserve">
|
<data name="Application" xml:space="preserve">
|
||||||
<value>Εφαρμογή</value>
|
<value>Εφαρμογή</value>
|
||||||
@@ -2655,13 +2658,13 @@
|
|||||||
<value>Το κλειδί πρόσβασης δεν θα αντιγραφεί στο κλωνοποιημένο στοιχείο. Θέλετε να συνεχίσετε την κλωνοποίηση αυτού του στοιχείου;</value>
|
<value>Το κλειδί πρόσβασης δεν θα αντιγραφεί στο κλωνοποιημένο στοιχείο. Θέλετε να συνεχίσετε την κλωνοποίηση αυτού του στοιχείου;</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyApplication" xml:space="preserve">
|
<data name="CopyApplication" xml:space="preserve">
|
||||||
<value>Copy application</value>
|
<value>Αντιγραφή εφαρμογής</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AvailableForTwoStepLogin" xml:space="preserve">
|
<data name="AvailableForTwoStepLogin" xml:space="preserve">
|
||||||
<value>Διαθέσιμο για σύνδεση με δύο βήματα</value>
|
<value>Διαθέσιμο για σύνδεση με δύο βήματα</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordRePromptHelp" xml:space="preserve">
|
<data name="MasterPasswordRePromptHelp" xml:space="preserve">
|
||||||
<value>Master password re-prompt help</value>
|
<value>Βοήθεια προτροπής κύριου κωδικού πρόσβασης</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockingMayFailDueToInsufficientMemoryDecreaseYourKDFMemorySettingsToResolve" xml:space="preserve">
|
<data name="UnlockingMayFailDueToInsufficientMemoryDecreaseYourKDFMemorySettingsToResolve" xml:space="preserve">
|
||||||
<value>Το ξεκλείδωμα μπορεί να αποτύχει λόγω ανεπαρκούς μνήμης. Μειώστε τις ρυθμίσεις μνήμης KDF ή ρυθμίστε το βιομετρικό ξεκλείδωμα για επίλυση.</value>
|
<value>Το ξεκλείδωμα μπορεί να αποτύχει λόγω ανεπαρκούς μνήμης. Μειώστε τις ρυθμίσεις μνήμης KDF ή ρυθμίστε το βιομετρικό ξεκλείδωμα για επίλυση.</value>
|
||||||
@@ -2673,191 +2676,197 @@
|
|||||||
<value>Μη έγκυρο API token</value>
|
<value>Μη έγκυρο API token</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AdminApprovalRequested" xml:space="preserve">
|
<data name="AdminApprovalRequested" xml:space="preserve">
|
||||||
<value>Admin approval requested</value>
|
<value>Ζητήθηκε έγκριση διαχειριστή</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="YourRequestHasBeenSentToYourAdmin" xml:space="preserve">
|
<data name="YourRequestHasBeenSentToYourAdmin" xml:space="preserve">
|
||||||
<value>Your request has been sent to your admin.</value>
|
<value>Το αίτημά σας έχει σταλεί στον διαχειριστή σας.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="YouWillBeNotifiedOnceApproved" xml:space="preserve">
|
<data name="YouWillBeNotifiedOnceApproved" xml:space="preserve">
|
||||||
<value>You will be notified once approved. </value>
|
<value>Θα ειδοποιηθείτε μόλις εγκριθεί. </value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TroubleLoggingIn" xml:space="preserve">
|
<data name="TroubleLoggingIn" xml:space="preserve">
|
||||||
<value>Trouble logging in?</value>
|
<value>Δεν μπορείτε να συνδεθείτε;</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoggingInAsX" xml:space="preserve">
|
<data name="LoggingInAsX" xml:space="preserve">
|
||||||
<value>Logging in as {0}</value>
|
<value>Σύνδεση ως {0}</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Η ενέργεια στη λήξη χρόνου του vault άλλαξε σε αποσύνδεση</value>
|
||||||
</data>
|
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Αποκλείστε την αυτόματη συμπλήρωση</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
|
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
|
||||||
<value>Auto-fill will not be offered for these URIs.</value>
|
<value>Η αυτόματη συμπλήρωση δε θα προσφέρεται για αυτά τα URI.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NewBlockedURI" xml:space="preserve">
|
<data name="NewBlockedURI" xml:space="preserve">
|
||||||
<value>New blocked URI</value>
|
<value>Νέο αποκλεισμένο URI</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="URISaved" xml:space="preserve">
|
<data name="URISaved" xml:space="preserve">
|
||||||
<value>URI saved</value>
|
<value>URI αποθηκεύτηκε</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="InvalidFormatUseHttpsHttpOrAndroidApp" xml:space="preserve">
|
<data name="InvalidFormatUseHttpsHttpOrAndroidApp" xml:space="preserve">
|
||||||
<value>Invalid format. Use https://, http://, or androidapp://</value>
|
<value>Μη έγκυρη μορφή. Χρησιμοποιήστε https://, http://, ή androidapp://</value>
|
||||||
<comment>https://, http://, androidapp:// should not be translated</comment>
|
<comment>https://, http://, androidapp:// should not be translated</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="EditURI" xml:space="preserve">
|
<data name="EditURI" xml:space="preserve">
|
||||||
<value>Edit URI</value>
|
<value>Επεξεργασία του URI</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnterURI" xml:space="preserve">
|
<data name="EnterURI" xml:space="preserve">
|
||||||
<value>Enter URI</value>
|
<value>Καταχωρήστε URI</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FormatXSeparateMultipleURIsWithAComma" xml:space="preserve">
|
<data name="FormatXSeparateMultipleURIsWithAComma" xml:space="preserve">
|
||||||
<value>Format: {0}. Separate multiple URIs with a comma.</value>
|
<value>Μορφή: {0}. Διαχωρίστε τα πολλαπλά URI με κόμμα.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FormatX" xml:space="preserve">
|
<data name="FormatX" xml:space="preserve">
|
||||||
<value>Format: {0}</value>
|
<value>Μορφή: {0}</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="InvalidURI" xml:space="preserve">
|
<data name="InvalidURI" xml:space="preserve">
|
||||||
<value>Invalid URI</value>
|
<value>Μη έγκυρο URI</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="URIRemoved" xml:space="preserve">
|
<data name="URIRemoved" xml:space="preserve">
|
||||||
<value>URI removed</value>
|
<value>Το URI αφαιρέθηκε</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThereAreNoBlockedURIs" xml:space="preserve">
|
<data name="ThereAreNoBlockedURIs" xml:space="preserve">
|
||||||
<value>There are no blocked URIs</value>
|
<value>Δεν υπάρχουν αποκλεισμένα URI</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TheURIXIsAlreadyBlocked" xml:space="preserve">
|
<data name="TheURIXIsAlreadyBlocked" xml:space="preserve">
|
||||||
<value>The URI {0} is already blocked</value>
|
<value>Το URI {0} είναι ήδη αποκλεισμένο</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotEditMultipleURIsAtOnce" xml:space="preserve">
|
<data name="CannotEditMultipleURIsAtOnce" xml:space="preserve">
|
||||||
<value>Cannot edit multiple URIs at once</value>
|
<value>Αδυναμία επεξεργασίας πολλαπλών URI ταυτόχρονα</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoginApproved" xml:space="preserve">
|
<data name="LoginApproved" xml:space="preserve">
|
||||||
<value>Login approved</value>
|
<value>Η σύνδεση εγκρίθηκε</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LogInWithDeviceMustBeSetUpInTheSettingsOfTheBitwardenAppNeedAnotherOption" xml:space="preserve">
|
<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>Η σύνδεση με χρήση συσκευής πρέπει να ρυθμιστεί στις ρυθμίσεις της εφαρμογής Bitwarden. Χρειάζεστε άλλη επιλογή;</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LogInWithDevice" xml:space="preserve">
|
<data name="LogInWithDevice" xml:space="preserve">
|
||||||
<value>Log in with device</value>
|
<value>Σύνδεση με χρήση συσκευής</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoggingInOn" xml:space="preserve">
|
<data name="LoggingInOn" xml:space="preserve">
|
||||||
<value>Logging in on</value>
|
<value>Σύνδεση στο</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Vault" xml:space="preserve">
|
<data name="Vault" xml:space="preserve">
|
||||||
<value>Vault</value>
|
<value>Vault</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Appearance" xml:space="preserve">
|
<data name="Appearance" xml:space="preserve">
|
||||||
<value>Appearance</value>
|
<value>Εμφάνιση</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountSecurity" xml:space="preserve">
|
<data name="AccountSecurity" xml:space="preserve">
|
||||||
<value>Account security</value>
|
<value>Ασφάλεια λογαριασμού</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenHelpCenter" xml:space="preserve">
|
<data name="BitwardenHelpCenter" xml:space="preserve">
|
||||||
<value>Bitwarden Help Center</value>
|
<value>Κέντρο Βοήθειας Bitwarden</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContactBitwardenSupport" xml:space="preserve">
|
<data name="ContactBitwardenSupport" xml:space="preserve">
|
||||||
<value>Contact Bitwarden support</value>
|
<value>Επικοινωνία με την υποστήριξη του Bitwarden</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyAppInformation" xml:space="preserve">
|
<data name="CopyAppInformation" xml:space="preserve">
|
||||||
<value>Copy app information</value>
|
<value>Αντιγραφή πληροφοριών εφαρμογής</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncNow" xml:space="preserve">
|
<data name="SyncNow" xml:space="preserve">
|
||||||
<value>Sync now</value>
|
<value>Συγχρονισμός τώρα</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockOptions" xml:space="preserve">
|
<data name="UnlockOptions" xml:space="preserve">
|
||||||
<value>Unlock options</value>
|
<value>Επιλογές Κλειδώματος</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SessionTimeout" xml:space="preserve">
|
<data name="SessionTimeout" xml:space="preserve">
|
||||||
<value>Session timeout</value>
|
<value>Χρονικό όριο συνεδρίας</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SessionTimeoutAction" xml:space="preserve">
|
<data name="SessionTimeoutAction" xml:space="preserve">
|
||||||
<value>Session timeout action</value>
|
<value>Ενέργεια στη λήξη χρόνου συνεδρίας</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountFingerprintPhrase" xml:space="preserve">
|
<data name="AccountFingerprintPhrase" xml:space="preserve">
|
||||||
<value>Account fingerprint phrase</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>
|
<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>
|
||||||
<data name="OneHourAndOneMinute" xml:space="preserve">
|
<data name="OneHourAndOneMinute" xml:space="preserve">
|
||||||
<value>One hour and one minute</value>
|
<value>Μία ώρα και ένα λεπτό</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="OneHourAndXMinute" xml:space="preserve">
|
<data name="OneHourAndXMinute" xml:space="preserve">
|
||||||
<value>One hour and {0} minutes</value>
|
<value>Μία ώρα και {0} λεπτά</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHoursAndOneMinute" xml:space="preserve">
|
<data name="XHoursAndOneMinute" xml:space="preserve">
|
||||||
<value>{0} hours and one minute</value>
|
<value>{0} ώρες και ένα λεπτό</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHoursAndYMinutes" xml:space="preserve">
|
<data name="XHoursAndYMinutes" xml:space="preserve">
|
||||||
<value>{0} hours and {1} minutes</value>
|
<value>{0} ώρες και {1} λεπτά</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHours" xml:space="preserve">
|
<data name="XHours" xml:space="preserve">
|
||||||
<value>{0} hours</value>
|
<value>{0} ώρες</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServicesExplanationLong" xml:space="preserve">
|
<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 χρησιμοποιείται για να προσφέρει αυτόματη συμπλήρωση στοιχείων σύνδεσης σε άλλες εφαρμογές στη συσκευή σας.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
|
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
|
||||||
<value>Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay.</value>
|
<value>Χρησιμοποιήστε την ενσωματωμένη αυτόματη συμπλήρωση αν το πληκτρολόγιο σας την υποστηρίζει. Διαφορετικά, χρησιμοποιήστε την προεπιλεγμένη επικάλυψη.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AdditionalOptions" xml:space="preserve">
|
<data name="AdditionalOptions" xml:space="preserve">
|
||||||
<value>Additional options</value>
|
<value>Πρόσθετες επιλογές</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToWebApp" xml:space="preserve">
|
<data name="ContinueToWebApp" xml:space="preserve">
|
||||||
<value>Continue to web app?</value>
|
<value>Συνέχεια στην εφαρμογή διαδικτύου;</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToX" xml:space="preserve">
|
<data name="ContinueToX" xml:space="preserve">
|
||||||
<value>Continue to {0}?</value>
|
<value>Συνέχεια στο {0};</value>
|
||||||
<comment>The parameter is an URL, like bitwarden.com.</comment>
|
<comment>The parameter is an URL, like bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToHelpCenter" xml:space="preserve">
|
<data name="ContinueToHelpCenter" xml:space="preserve">
|
||||||
<value>Continue to Help center?</value>
|
<value>Συνέχεια στο κέντρο βοήθειας;</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToContactSupport" xml:space="preserve">
|
<data name="ContinueToContactSupport" xml:space="preserve">
|
||||||
<value>Continue to contact support?</value>
|
<value>Συνέχεια στην επικοινωνία με την υποστήριξη;</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToAppStore" xml:space="preserve">
|
<data name="ContinueToAppStore" xml:space="preserve">
|
||||||
<value>Continue to app store?</value>
|
<value>Συνέχεια στο κατάστημα εφαρμογών;</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TwoStepLoginDescriptionLong" xml:space="preserve">
|
<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>
|
||||||
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
|
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
|
||||||
<value>You can change your master password on the Bitwarden web app.</value>
|
<value>Μπορείτε να αλλάξετε τον κύριο κωδικό πρόσβασης στην εφαρμογή διαδικτύου Bitwarden.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
|
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
|
||||||
<value>You can import data to your vault on {0}.</value>
|
<value>Μπορείτε να εισαγάγετε δεδομένα στο vault σας στο {0}.</value>
|
||||||
<comment>The parameter is an URL, like vault.bitwarden.com.</comment>
|
<comment>The parameter is an URL, like vault.bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
|
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
|
||||||
<value>Learn more about how to use Bitwarden on the Help center.</value>
|
<value>Μάθετε περισσότερα για το πώς να χρησιμοποιήσετε το Bitwarden στο κέντρο βοήθειας.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
||||||
<value>Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com.</value>
|
<value>Δεν μπορείτε να βρείτε αυτό που ψάχνετε; Επικοινωνήστε με την υποστήριξη Bitwarden στο bitwarden.com.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
|
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
|
||||||
<value>Explore more features of your Bitwarden account on the web app.</value>
|
<value>Εξερευνήστε περισσότερες δυνατότητες του Bitwarden λογαριασμού σας, στην εφαρμογή διαδικτύου.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnAboutOrganizationsDescriptionLong" xml:space="preserve">
|
<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 σας επιτρέπει να μοιράζεστε τα στοιχεία του vault σας με άλλους, χρησιμοποιώντας έναν λογαριασμό οργανισμού. Μάθετε περισσότερα στην ιστοσελίδα bitwarden.com.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RateAppDescriptionLong" xml:space="preserve">
|
<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>Βοηθήστε άλλους να μάθουν αν το Bitwarden είναι κατάλληλο για αυτούς. Επισκεφθείτε το κατάστημα εφαρμογών και αφήστε τώρα μια βαθμολογία.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
||||||
<value>Choose the dark theme to use when your device’s dark mode is in use</value>
|
<value>Επιλέξτε να χρησιμοποιείται το σκούρο θέμα όταν η συσκευή σας βρίσκεται σε σκοτεινή λειτουργία</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CreatedXY" xml:space="preserve">
|
<data name="CreatedXY" xml:space="preserve">
|
||||||
<value>Created {0}, {1}</value>
|
<value>Δημιουργήθηκε {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>
|
<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>
|
||||||
<data name="TooManyAttempts" xml:space="preserve">
|
<data name="TooManyAttempts" xml:space="preserve">
|
||||||
<value>Too many attempts</value>
|
<value>Πάρα πολλές προσπάθειες</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Ο λογαριασμός αποσυνδέθηκε.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Τα δικαιώματα του οργανισμού σας ενημερώθηκαν, απαιτώντας από εσάς να ορίσετε έναν κύριο κωδικό πρόσβασης.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Ο οργανισμός σας απαιτεί να ορίσετε έναν κύριο κωδικό πρόσβασης.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Ρυθμίστε μια επιλογή κλειδώματος για να αλλάξετε την ενέργεια στη λήξη χρόνου του vault σας.</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2424,6 +2424,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,9 +2694,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2860,4 +2861,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2438,6 +2438,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2704,9 +2708,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2874,4 +2875,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7823
src/App/Resources/AppResources.es.Designer.cs
generated
7823
src/App/Resources/AppResources.es.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -156,7 +156,7 @@
|
|||||||
<comment>The button text that allows a user to copy the login's password to their clipboard.</comment>
|
<comment>The button text that allows a user to copy the login's password to their clipboard.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyUsername" xml:space="preserve">
|
<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>
|
<comment>The button text that allows a user to copy the login's username to their clipboard.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Credits" xml:space="preserve">
|
<data name="Credits" xml:space="preserve">
|
||||||
@@ -186,11 +186,11 @@
|
|||||||
<comment>Short label for an email address.</comment>
|
<comment>Short label for an email address.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="EmailAddress" xml:space="preserve">
|
<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>
|
<comment>Full label for a email address.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="EmailUs" xml:space="preserve">
|
<data name="EmailUs" xml:space="preserve">
|
||||||
<value>Envíanos un correo</value>
|
<value>Envíanos correo electrónico</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EmailUsDescription" xml:space="preserve">
|
<data name="EmailUsDescription" xml:space="preserve">
|
||||||
<value>Envíanos un correo directamente para obtener ayuda o dejar tus comentarios.</value>
|
<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>
|
<comment>Title for your favorite items in the vault.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FileBugReport" xml:space="preserve">
|
<data name="FileBugReport" xml:space="preserve">
|
||||||
<value>Reportar un fallo</value>
|
<value>Enviar un informe de error</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FileBugReportDescription" xml:space="preserve">
|
<data name="FileBugReportDescription" xml:space="preserve">
|
||||||
<value>Abrir una incidencia en el repositorio de GitHub.</value>
|
<value>Abrir una incidencia en el repositorio de GitHub.</value>
|
||||||
@@ -229,10 +229,10 @@
|
|||||||
<value>Carpetas</value>
|
<value>Carpetas</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FolderUpdated" xml:space="preserve">
|
<data name="FolderUpdated" xml:space="preserve">
|
||||||
<value>Carpeta actualizada.</value>
|
<value>Carpeta guardada</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GoToWebsite" xml:space="preserve">
|
<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>
|
<comment>The button text that allows user to launch the website to their web browser.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="HelpAndFeedback" xml:space="preserve">
|
<data name="HelpAndFeedback" xml:space="preserve">
|
||||||
@@ -285,7 +285,7 @@
|
|||||||
<value>Cuenta ya añadida</value>
|
<value>Cuenta ya añadida</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SwitchToAlreadyAddedAccountConfirmation" xml:space="preserve">
|
<data name="SwitchToAlreadyAddedAccountConfirmation" xml:space="preserve">
|
||||||
<value>¿Quieres cambiarlo ahora?</value>
|
<value>¿Te gustaría cambiar a esa cuenta ahora?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPassword" xml:space="preserve">
|
<data name="MasterPassword" xml:space="preserve">
|
||||||
<value>Contraseña maestra</value>
|
<value>Contraseña maestra</value>
|
||||||
@@ -342,7 +342,7 @@
|
|||||||
<comment>Reveal a hidden value (password).</comment>
|
<comment>Reveal a hidden value (password).</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ItemDeleted" xml:space="preserve">
|
<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>
|
<comment>Confirmation message after successfully deleting a login.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Submit" xml:space="preserve">
|
<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>
|
<comment>Validation message for when a form field is left blank and is required to be entered.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ValueHasBeenCopied" xml:space="preserve">
|
<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>
|
<comment>Confirmation message after successfully copying a value to the clipboard.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerifyFingerprint" xml:space="preserve">
|
<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>
|
<value>Utiliza el servicio de accesibilidad de Bitwarden para autorellenar entradas entre aplicaciones y sitios web.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillService" xml:space="preserve">
|
<data name="AutofillService" xml:space="preserve">
|
||||||
<value>Servicio de autorrellenado</value>
|
<value>Servicio de autocompletado</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AvoidAmbiguousCharacters" xml:space="preserve">
|
<data name="AvoidAmbiguousCharacters" xml:space="preserve">
|
||||||
<value>Evitar caracteres ambiguos</value>
|
<value>Evitar caracteres ambiguos</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAppExtension" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAppExtensionAlert2" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAppExtensionDescription" xml:space="preserve">
|
<data name="BitwardenAppExtensionDescription" xml:space="preserve">
|
||||||
<value>Utiliza Bitwarden en Safari y otras aplicaciones para autorellenar tus entradas.</value>
|
<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>
|
<value>Introduce el correo electrónico de tu cuenta para recibir la pista de tu contraseña maestra.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExntesionReenable" xml:space="preserve">
|
<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>
|
||||||
<data name="ExtensionAlmostDone" xml:space="preserve">
|
<data name="ExtensionAlmostDone" xml:space="preserve">
|
||||||
<value>¡Casi estamos!</value>
|
<value>¡Casi estamos!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionEnable" xml:space="preserve">
|
<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>
|
||||||
<data name="ExtensionInSafari" xml:space="preserve">
|
<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>
|
<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>
|
<value>¡Ya estás identificado!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionSetup" xml:space="preserve">
|
<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>
|
||||||
<data name="ExtensionSetup2" xml:space="preserve">
|
<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>
|
<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>
|
<value>Acción de tiempo de espera de la caja fuerte</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VaultTimeoutLogOutConfirmation" xml:space="preserve">
|
<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>
|
||||||
<data name="LoggingIn" xml:space="preserve">
|
<data name="LoggingIn" xml:space="preserve">
|
||||||
<value>Iniciando sesión...</value>
|
<value>Iniciando sesión...</value>
|
||||||
@@ -598,7 +598,7 @@
|
|||||||
<value>Nunca</value>
|
<value>Nunca</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NewItemCreated" xml:space="preserve">
|
<data name="NewItemCreated" xml:space="preserve">
|
||||||
<value>Nuevo elemento creado.</value>
|
<value>Elemento agregado</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoFavorites" xml:space="preserve">
|
<data name="NoFavorites" xml:space="preserve">
|
||||||
<value>No hay favoritos en tu caja fuerte.</value>
|
<value>No hay favoritos en tu caja fuerte.</value>
|
||||||
@@ -626,7 +626,7 @@
|
|||||||
<value>Otro</value>
|
<value>Otro</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordGenerated" xml:space="preserve">
|
<data name="PasswordGenerated" xml:space="preserve">
|
||||||
<value>Contraseña generada.</value>
|
<value>Contraseña generada</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordGenerator" xml:space="preserve">
|
<data name="PasswordGenerator" xml:space="preserve">
|
||||||
<value>Generador de contraseñas</value>
|
<value>Generador de contraseñas</value>
|
||||||
@@ -641,7 +641,7 @@
|
|||||||
<value>¿Estás seguro de que quieres sobreescribir la contraseña actual?</value>
|
<value>¿Estás seguro de que quieres sobreescribir la contraseña actual?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PushNotificationAlert" xml:space="preserve">
|
<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>
|
<comment>Push notifications for apple products</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="RateTheApp" xml:space="preserve">
|
<data name="RateTheApp" xml:space="preserve">
|
||||||
@@ -654,7 +654,7 @@
|
|||||||
<value>Regenerar contraseña</value>
|
<value>Regenerar contraseña</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RetypeMasterPassword" xml:space="preserve">
|
<data name="RetypeMasterPassword" xml:space="preserve">
|
||||||
<value>Vuelve a escribir tu contraseña maestra</value>
|
<value>Reescribir contraseña maestra</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SearchVault" xml:space="preserve">
|
<data name="SearchVault" xml:space="preserve">
|
||||||
<value>Buscar en caja fuerte</value>
|
<value>Buscar en caja fuerte</value>
|
||||||
@@ -675,7 +675,7 @@
|
|||||||
<value>Información del elemento</value>
|
<value>Información del elemento</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ItemUpdated" xml:space="preserve">
|
<data name="ItemUpdated" xml:space="preserve">
|
||||||
<value>Elemento actualizado.</value>
|
<value>Elemento guardado</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Submitting" xml:space="preserve">
|
<data name="Submitting" xml:space="preserve">
|
||||||
<value>Enviando...</value>
|
<value>Enviando...</value>
|
||||||
@@ -686,10 +686,10 @@
|
|||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncingComplete" xml:space="preserve">
|
<data name="SyncingComplete" xml:space="preserve">
|
||||||
<value>Sincronización completada.</value>
|
<value>Sincronización completada</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncingFailed" xml:space="preserve">
|
<data name="SyncingFailed" xml:space="preserve">
|
||||||
<value>Sincronizado fallida.</value>
|
<value>Error en la Sincronización</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncVaultNow" xml:space="preserve">
|
<data name="SyncVaultNow" xml:space="preserve">
|
||||||
<value>Sincronizar caja fuerte ahora</value>
|
<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>
|
<comment>This is used for the autofill service. ex. "There are no items in your vault for twitter.com".</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceOverlay" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAutofillServiceNotificationContent" xml:space="preserve">
|
<data name="BitwardenAutofillServiceNotificationContent" xml:space="preserve">
|
||||||
<value>Pulsa en esta notificación para autorellenar una entrada desde tu caja fuerte.</value>
|
<value>Pulsa en esta notificación para autorellenar una entrada desde tu caja fuerte.</value>
|
||||||
@@ -775,7 +775,7 @@
|
|||||||
<value>Estado</value>
|
<value>Estado</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceAlert2" xml:space="preserve">
|
<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>
|
||||||
<data name="Autofill" xml:space="preserve">
|
<data name="Autofill" xml:space="preserve">
|
||||||
<value>Autorellenar</value>
|
<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>
|
<value>¿Estás seguro de que quieres autorellenar esta entrada? No es una coincidencia completa para "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MatchingItems" xml:space="preserve">
|
<data name="MatchingItems" xml:space="preserve">
|
||||||
<value>Elementos coincidientes</value>
|
<value>Elementos que coinciden</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PossibleMatchingItems" xml:space="preserve">
|
<data name="PossibleMatchingItems" xml:space="preserve">
|
||||||
<value>Posibles elementos coincidientes</value>
|
<value>Posibles elementos que coinciden</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Search" xml:space="preserve">
|
<data name="Search" xml:space="preserve">
|
||||||
<value>Buscar</value>
|
<value>Buscar</value>
|
||||||
@@ -799,7 +799,7 @@
|
|||||||
<value>Estás buscando una entrada para autorellenar "{0}".</value>
|
<value>Estás buscando una entrada para autorellenar "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnOrg" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Aprenda sobre Organizaciones</value>
|
<value>Aprende sobre organizaciones</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>No se puede abrir la aplicación "{0}".</value>
|
<value>No se puede abrir la aplicación "{0}".</value>
|
||||||
@@ -818,11 +818,11 @@
|
|||||||
<comment>For 2FA</comment>
|
<comment>For 2FA</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoginUnavailable" xml:space="preserve">
|
<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>
|
<comment>For 2FA whenever there are no available providers on this device.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoTwoStepAvailable" xml:space="preserve">
|
<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>
|
||||||
<data name="RecoveryCodeTitle" xml:space="preserve">
|
<data name="RecoveryCodeTitle" xml:space="preserve">
|
||||||
<value>Código de recuperación</value>
|
<value>Código de recuperación</value>
|
||||||
@@ -837,7 +837,7 @@
|
|||||||
<comment>For 2FA</comment>
|
<comment>For 2FA</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="TwoStepLoginOptions" xml:space="preserve">
|
<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>
|
||||||
<data name="UseAnotherTwoStepMethod" xml:space="preserve">
|
<data name="UseAnotherTwoStepMethod" xml:space="preserve">
|
||||||
<value>Utilizar otro método de autenticación en dos pasos</value>
|
<value>Utilizar otro método de autenticación en dos pasos</value>
|
||||||
@@ -847,18 +847,18 @@
|
|||||||
<comment>For 2FA</comment>
|
<comment>For 2FA</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerificationEmailSent" xml:space="preserve">
|
<data name="VerificationEmailSent" xml:space="preserve">
|
||||||
<value>Correo de verificación enviado.</value>
|
<value>Correo de verificación enviado</value>
|
||||||
<comment>For 2FA</comment>
|
<comment>For 2FA</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="YubiKeyInstruction" xml:space="preserve">
|
<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>
|
<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>
|
||||||
<data name="YubiKeyTitle" xml:space="preserve">
|
<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>
|
<comment>"YubiKey" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AddNewAttachment" xml:space="preserve">
|
<data name="AddNewAttachment" xml:space="preserve">
|
||||||
<value>Añadir nuevo adjunto</value>
|
<value>Añadir nuevo archivo adjunto</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Attachments" xml:space="preserve">
|
<data name="Attachments" xml:space="preserve">
|
||||||
<value>Adjuntos</value>
|
<value>Adjuntos</value>
|
||||||
@@ -907,10 +907,10 @@ El escaneo se realizará automáticamente.</value>
|
|||||||
<value>Copiar código TOTP</value>
|
<value>Copiar código TOTP</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="CopyTotpAutomatically" xml:space="preserve">
|
<data name="CopyTotpAutomatically" xml:space="preserve">
|
||||||
<value>Copiar automáticamente TOTP</value>
|
<value>Copiar TOTP automáticamente</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PremiumRequired" xml:space="preserve">
|
<data name="PremiumRequired" xml:space="preserve">
|
||||||
<value>Se quiere membrasía Premium para poder utilizar esta característica.</value>
|
<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>
|
<value>Adjunto eliminado</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ChooseFile" xml:space="preserve">
|
<data name="ChooseFile" xml:space="preserve">
|
||||||
<value>Seleccionar archivo</value>
|
<value>Elegir archivo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="File" xml:space="preserve">
|
<data name="File" xml:space="preserve">
|
||||||
<value>Archivo</value>
|
<value>Archivo</value>
|
||||||
@@ -937,7 +937,7 @@ El escaneo se realizará automáticamente.</value>
|
|||||||
<value>Fuente de archivo</value>
|
<value>Fuente de archivo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FeatureUnavailable" xml:space="preserve">
|
<data name="FeatureUnavailable" xml:space="preserve">
|
||||||
<value>Característica no disponible</value>
|
<value>Funcionalidad no disponible</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaxFileSize" xml:space="preserve">
|
<data name="MaxFileSize" xml:space="preserve">
|
||||||
<value>El tamaño máximo de archivo es de 100MB.</value>
|
<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>
|
<value>No puedes usar esta característica hasta que actualices tu clave de cifrado.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EncryptionKeyMigrationRequiredDescriptionLong" xml:space="preserve">
|
<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>
|
||||||
<data name="LearnMore" xml:space="preserve">
|
<data name="LearnMore" xml:space="preserve">
|
||||||
<value>Aprender más</value>
|
<value>Aprende más</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ApiUrl" xml:space="preserve">
|
<data name="ApiUrl" xml:space="preserve">
|
||||||
<value>URL del servidor de la API</value>
|
<value>URL del servidor de la API</value>
|
||||||
@@ -1032,7 +1032,7 @@ El escaneo se realizará automáticamente.</value>
|
|||||||
<value>Marca</value>
|
<value>Marca</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CardholderName" xml:space="preserve">
|
<data name="CardholderName" xml:space="preserve">
|
||||||
<value>Nombre en la tarjeta</value>
|
<value>Nombre del propietario de la tarjeta</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CityTown" xml:space="preserve">
|
<data name="CityTown" xml:space="preserve">
|
||||||
<value>Ciudad / Pueblo</value>
|
<value>Ciudad / Pueblo</value>
|
||||||
@@ -1077,7 +1077,7 @@ El escaneo se realizará automáticamente.</value>
|
|||||||
<value>Nombre completo</value>
|
<value>Nombre completo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LicenseNumber" xml:space="preserve">
|
<data name="LicenseNumber" xml:space="preserve">
|
||||||
<value>Nº de licencia</value>
|
<value>Número de licencia</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="March" xml:space="preserve">
|
<data name="March" xml:space="preserve">
|
||||||
<value>Marzo</value>
|
<value>Marzo</value>
|
||||||
@@ -1086,7 +1086,7 @@ El escaneo se realizará automáticamente.</value>
|
|||||||
<value>Mayo</value>
|
<value>Mayo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MiddleName" xml:space="preserve">
|
<data name="MiddleName" xml:space="preserve">
|
||||||
<value>2º nombre</value>
|
<value>Segundo nombre</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Mr" xml:space="preserve">
|
<data name="Mr" xml:space="preserve">
|
||||||
<value>Sr</value>
|
<value>Sr</value>
|
||||||
@@ -1098,7 +1098,7 @@ El escaneo se realizará automáticamente.</value>
|
|||||||
<value>Srta</value>
|
<value>Srta</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Mx" xml:space="preserve">
|
<data name="Mx" xml:space="preserve">
|
||||||
<value>"Mx" = "Sr./Sra</value>
|
<value>Mx</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="November" xml:space="preserve">
|
<data name="November" xml:space="preserve">
|
||||||
<value>Noviembre</value>
|
<value>Noviembre</value>
|
||||||
@@ -1107,7 +1107,7 @@ El escaneo se realizará automáticamente.</value>
|
|||||||
<value>Octubre</value>
|
<value>Octubre</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PassportNumber" xml:space="preserve">
|
<data name="PassportNumber" xml:space="preserve">
|
||||||
<value>Nº de pasaporte</value>
|
<value>Número de pasaporte</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Phone" xml:space="preserve">
|
<data name="Phone" xml:space="preserve">
|
||||||
<value>Teléfono</value>
|
<value>Teléfono</value>
|
||||||
@@ -1116,7 +1116,7 @@ El escaneo se realizará automáticamente.</value>
|
|||||||
<value>Septiembre</value>
|
<value>Septiembre</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SSN" xml:space="preserve">
|
<data name="SSN" xml:space="preserve">
|
||||||
<value>Nº de la seguridad social</value>
|
<value>Número de Seguro Social</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="StateProvince" xml:space="preserve">
|
<data name="StateProvince" xml:space="preserve">
|
||||||
<value>Estado / Provincia</value>
|
<value>Estado / Provincia</value>
|
||||||
@@ -1167,7 +1167,7 @@ El escaneo se realizará automáticamente.</value>
|
|||||||
<value>Servicio de accesibilidad de autorellenado</value>
|
<value>Servicio de accesibilidad de autorellenado</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServiceDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAutofillServiceDescription" xml:space="preserve">
|
<data name="BitwardenAutofillServiceDescription" xml:space="preserve">
|
||||||
<value>Utiliza el servicio de accesibilidad de Bitwarden para autorrellenar entradas.</value>
|
<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>
|
<value>Empieza con</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="URIMatchDetection" xml:space="preserve">
|
<data name="URIMatchDetection" xml:space="preserve">
|
||||||
<value>Tipo de detección de URI</value>
|
<value>Detección de coincidencia URI</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MatchDetection" xml:space="preserve">
|
<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>
|
<comment>URI match detection for auto-fill.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="YesAndSave" xml:space="preserve">
|
<data name="YesAndSave" xml:space="preserve">
|
||||||
<value>Sí y guardar</value>
|
<value>Sí, y guardar</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillAndSave" xml:space="preserve">
|
<data name="AutofillAndSave" xml:space="preserve">
|
||||||
<value>Autorellenar y guardar</value>
|
<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>
|
<value>Debes identificarte en la aplicación principal de Bitwarden antes de poder utilizar Autorellenado.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillSetup" xml:space="preserve">
|
<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>
|
||||||
<data name="AutofillSetup2" xml:space="preserve">
|
<data name="AutofillSetup2" xml:space="preserve">
|
||||||
<value>Te recomendamos deshabilitar cualquier otra aplicación de Autorellenado desde Ajustes si no piensas utilizarlas.</value>
|
<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>
|
<value>Accede a tu caja fuerte directamente desde tu teclado para autorellenar contraseñas rápidamente.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn" xml:space="preserve">
|
<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>
|
||||||
<data name="AutofillTurnOn1" xml:space="preserve">
|
<data name="AutofillTurnOn1" xml:space="preserve">
|
||||||
<value>1. Ve a la aplicación "Ajustes" de iOS</value>
|
<value>1. Ve a la aplicación "Ajustes" de iOS</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn2" xml:space="preserve">
|
<data name="AutofillTurnOn2" xml:space="preserve">
|
||||||
<value>2. Pulsa en "Contraseñas y Cuentas"</value>
|
<value>2. Pulse "Contraseñas"</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn3" xml:space="preserve">
|
<data name="AutofillTurnOn3" xml:space="preserve">
|
||||||
<value>3. Pulsa en "Autorellenado de contraseñas"</value>
|
<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>
|
<value>5. Selecciona "Bitwarden"</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordAutofill" xml:space="preserve">
|
<data name="PasswordAutofill" xml:space="preserve">
|
||||||
<value>Autorellenado de contraseña</value>
|
<value>Autocompletar contraseña</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillAlert2" xml:space="preserve">
|
<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>
|
||||||
<data name="InvalidEmail" xml:space="preserve">
|
<data name="InvalidEmail" xml:space="preserve">
|
||||||
<value>Dirección de correo electrónico inválida.</value>
|
<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>
|
<value>2 minutos</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ClearClipboard" xml:space="preserve">
|
<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>
|
<comment>Clipboard is the operating system thing where you copy/paste data to on your device.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ClearClipboardDescription" xml:space="preserve">
|
<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>
|
<comment>Clipboard is the operating system thing where you copy/paste data to on your device.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultUriMatchDetection" xml:space="preserve">
|
<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>
|
<comment>Default URI match detection for auto-fill.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultUriMatchDetectionDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="Theme" xml:space="preserve">
|
<data name="Theme" xml:space="preserve">
|
||||||
<value>Tema</value>
|
<value>Tema</value>
|
||||||
<comment>Color theme</comment>
|
<comment>Color theme</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThemeDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="ThemeDefault" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Por defecto (Sistema)</value>
|
<value>Por defecto (Sistema)</value>
|
||||||
@@ -1550,7 +1550,7 @@ El escaneo se realizará automáticamente.</value>
|
|||||||
<value>Tema oscuro por defecto</value>
|
<value>Tema oscuro por defecto</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copiar notas</value>
|
<value>Copiar nota</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Exit" xml:space="preserve">
|
<data name="Exit" xml:space="preserve">
|
||||||
<value>Salir</value>
|
<value>Salir</value>
|
||||||
@@ -2425,6 +2425,10 @@ seleccione Agregar TOTP para almacenar la clave de forma segura</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Token de acceso API</value>
|
<value>Token de acceso API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2626,16 +2630,16 @@ seleccione Agregar TOTP para almacenar la clave de forma segura</value>
|
|||||||
<value>Aprobar con mi otro dispositivo</value>
|
<value>Aprobar con mi otro dispositivo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RequestAdminApproval" xml:space="preserve">
|
<data name="RequestAdminApproval" xml:space="preserve">
|
||||||
<value>Request admin approval</value>
|
<value>Solicitar aprobación del administrador</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ApproveWithMasterPassword" xml:space="preserve">
|
<data name="ApproveWithMasterPassword" xml:space="preserve">
|
||||||
<value>Approve with master password</value>
|
<value>Aprobar con contraseña maestra</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TurnOffUsingPublicDevice" xml:space="preserve">
|
<data name="TurnOffUsingPublicDevice" xml:space="preserve">
|
||||||
<value>Turn off using a public device</value>
|
<value>Deshabilitar usando un dispositivo público</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RememberThisDevice" xml:space="preserve">
|
<data name="RememberThisDevice" xml:space="preserve">
|
||||||
<value>Remember this device</value>
|
<value>Recordar este dispositivo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Passkey" xml:space="preserve">
|
<data name="Passkey" xml:space="preserve">
|
||||||
<value>Passkey</value>
|
<value>Passkey</value>
|
||||||
@@ -2644,28 +2648,29 @@ seleccione Agregar TOTP para almacenar la clave de forma segura</value>
|
|||||||
<value>Passkeys</value>
|
<value>Passkeys</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Application" xml:space="preserve">
|
<data name="Application" xml:space="preserve">
|
||||||
<value>Application</value>
|
<value>Aplicación</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="YouCannotEditPasskeyApplicationBecauseItWouldInvalidateThePasskey" xml:space="preserve">
|
<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>
|
||||||
<data name="PasskeyWillNotBeCopied" xml:space="preserve">
|
<data name="PasskeyWillNotBeCopied" xml:space="preserve">
|
||||||
<value>Passkey will not be copied</value>
|
<value>La contraseña maestra no será copiada</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThePasskeyWillNotBeCopiedToTheClonedItemDoYouWantToContinueCloningThisItem" xml:space="preserve">
|
<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>
|
||||||
<data name="CopyApplication" xml:space="preserve">
|
<data name="CopyApplication" xml:space="preserve">
|
||||||
<value>Copy application</value>
|
<value>Copiar aplicación</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AvailableForTwoStepLogin" xml:space="preserve">
|
<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>
|
||||||
<data name="MasterPasswordRePromptHelp" xml:space="preserve">
|
<data name="MasterPasswordRePromptHelp" xml:space="preserve">
|
||||||
<value>Ayuda de volver a pedir contraseña maestra</value>
|
<value>Ayuda de volver a pedir contraseña maestra</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockingMayFailDueToInsufficientMemoryDecreaseYourKDFMemorySettingsToResolve" xml:space="preserve">
|
<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>
|
||||||
<data name="InvalidAPIKey" xml:space="preserve">
|
<data name="InvalidAPIKey" xml:space="preserve">
|
||||||
<value>Clave API no válida</value>
|
<value>Clave API no válida</value>
|
||||||
@@ -2674,191 +2679,197 @@ seleccione Agregar TOTP para almacenar la clave de forma segura</value>
|
|||||||
<value>Token de API no válido</value>
|
<value>Token de API no válido</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AdminApprovalRequested" xml:space="preserve">
|
<data name="AdminApprovalRequested" xml:space="preserve">
|
||||||
<value>Admin approval requested</value>
|
<value>Aprobación del administrador solicitada</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="YourRequestHasBeenSentToYourAdmin" xml:space="preserve">
|
<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>
|
||||||
<data name="YouWillBeNotifiedOnceApproved" xml:space="preserve">
|
<data name="YouWillBeNotifiedOnceApproved" xml:space="preserve">
|
||||||
<value>You will be notified once approved. </value>
|
<value>Se te notificará una vez aprobada. </value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TroubleLoggingIn" xml:space="preserve">
|
<data name="TroubleLoggingIn" xml:space="preserve">
|
||||||
<value>Trouble logging in?</value>
|
<value>¿Problema para iniciar sesión?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoggingInAsX" xml:space="preserve">
|
<data name="LoggingInAsX" xml:space="preserve">
|
||||||
<value>Logging in as {0}</value>
|
<value>Iniciando sesión como {0}</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<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="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Bloquear autocompletar</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
|
<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>
|
||||||
<data name="NewBlockedURI" xml:space="preserve">
|
<data name="NewBlockedURI" xml:space="preserve">
|
||||||
<value>New blocked URI</value>
|
<value>Nueva URI bloqueada</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="URISaved" xml:space="preserve">
|
<data name="URISaved" xml:space="preserve">
|
||||||
<value>URI saved</value>
|
<value>URI guardada</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="InvalidFormatUseHttpsHttpOrAndroidApp" xml:space="preserve">
|
<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>
|
<comment>https://, http://, androidapp:// should not be translated</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="EditURI" xml:space="preserve">
|
<data name="EditURI" xml:space="preserve">
|
||||||
<value>Edit URI</value>
|
<value>Editar URI</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnterURI" xml:space="preserve">
|
<data name="EnterURI" xml:space="preserve">
|
||||||
<value>Enter URI</value>
|
<value>Escribir URI</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FormatXSeparateMultipleURIsWithAComma" xml:space="preserve">
|
<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>
|
||||||
<data name="FormatX" xml:space="preserve">
|
<data name="FormatX" xml:space="preserve">
|
||||||
<value>Format: {0}</value>
|
<value>Formato: {0}</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="InvalidURI" xml:space="preserve">
|
<data name="InvalidURI" xml:space="preserve">
|
||||||
<value>Invalid URI</value>
|
<value>URI no válida</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="URIRemoved" xml:space="preserve">
|
<data name="URIRemoved" xml:space="preserve">
|
||||||
<value>URI removed</value>
|
<value>URI eliminada</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThereAreNoBlockedURIs" xml:space="preserve">
|
<data name="ThereAreNoBlockedURIs" xml:space="preserve">
|
||||||
<value>There are no blocked URIs</value>
|
<value>No hay URIs bloqueadas</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TheURIXIsAlreadyBlocked" xml:space="preserve">
|
<data name="TheURIXIsAlreadyBlocked" xml:space="preserve">
|
||||||
<value>The URI {0} is already blocked</value>
|
<value>El URI {0} ya está bloqueada</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotEditMultipleURIsAtOnce" xml:space="preserve">
|
<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>
|
||||||
<data name="LoginApproved" xml:space="preserve">
|
<data name="LoginApproved" xml:space="preserve">
|
||||||
<value>Login approved</value>
|
<value>Inicio de sesión aprobado</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LogInWithDeviceMustBeSetUpInTheSettingsOfTheBitwardenAppNeedAnotherOption" xml:space="preserve">
|
<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>
|
||||||
<data name="LogInWithDevice" xml:space="preserve">
|
<data name="LogInWithDevice" xml:space="preserve">
|
||||||
<value>Log in with device</value>
|
<value>Iniciar sesión con el dispositivo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoggingInOn" xml:space="preserve">
|
<data name="LoggingInOn" xml:space="preserve">
|
||||||
<value>Logging in on</value>
|
<value>Iniciando sesión en</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Vault" xml:space="preserve">
|
<data name="Vault" xml:space="preserve">
|
||||||
<value>Vault</value>
|
<value>Caja fuerte</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Appearance" xml:space="preserve">
|
<data name="Appearance" xml:space="preserve">
|
||||||
<value>Appearance</value>
|
<value>Apariencia</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountSecurity" xml:space="preserve">
|
<data name="AccountSecurity" xml:space="preserve">
|
||||||
<value>Account security</value>
|
<value>Seguridad de la cuenta</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenHelpCenter" xml:space="preserve">
|
<data name="BitwardenHelpCenter" xml:space="preserve">
|
||||||
<value>Bitwarden Help Center</value>
|
<value>Centro de ayuda de Bitwarden</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContactBitwardenSupport" xml:space="preserve">
|
<data name="ContactBitwardenSupport" xml:space="preserve">
|
||||||
<value>Contact Bitwarden support</value>
|
<value>Contactar al soporte de Bitwarden</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyAppInformation" xml:space="preserve">
|
<data name="CopyAppInformation" xml:space="preserve">
|
||||||
<value>Copy app information</value>
|
<value>Copiar información de la aplicación</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncNow" xml:space="preserve">
|
<data name="SyncNow" xml:space="preserve">
|
||||||
<value>Sync now</value>
|
<value>Sincronizar ahora</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockOptions" xml:space="preserve">
|
<data name="UnlockOptions" xml:space="preserve">
|
||||||
<value>Unlock options</value>
|
<value>Opciónes de desbloqueo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SessionTimeout" xml:space="preserve">
|
<data name="SessionTimeout" xml:space="preserve">
|
||||||
<value>Session timeout</value>
|
<value>Tiempo de espera de sesión</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SessionTimeoutAction" xml:space="preserve">
|
<data name="SessionTimeoutAction" xml:space="preserve">
|
||||||
<value>Session timeout action</value>
|
<value>Acción de tiempo de espera de sesión</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountFingerprintPhrase" xml:space="preserve">
|
<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>
|
<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>
|
||||||
<data name="OneHourAndOneMinute" xml:space="preserve">
|
<data name="OneHourAndOneMinute" xml:space="preserve">
|
||||||
<value>One hour and one minute</value>
|
<value>Una hora y un minuto</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="OneHourAndXMinute" xml:space="preserve">
|
<data name="OneHourAndXMinute" xml:space="preserve">
|
||||||
<value>One hour and {0} minutes</value>
|
<value>Una hora y {0} minutos</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHoursAndOneMinute" xml:space="preserve">
|
<data name="XHoursAndOneMinute" xml:space="preserve">
|
||||||
<value>{0} hours and one minute</value>
|
<value>{0} horas y un minuto</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHoursAndYMinutes" xml:space="preserve">
|
<data name="XHoursAndYMinutes" xml:space="preserve">
|
||||||
<value>{0} hours and {1} minutes</value>
|
<value>{0} horas y {1} minutos</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHours" xml:space="preserve">
|
<data name="XHours" xml:space="preserve">
|
||||||
<value>{0} hours</value>
|
<value>{0} horas</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServicesExplanationLong" xml:space="preserve">
|
<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>
|
||||||
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
|
<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>
|
||||||
<data name="AdditionalOptions" xml:space="preserve">
|
<data name="AdditionalOptions" xml:space="preserve">
|
||||||
<value>Additional options</value>
|
<value>Opciones adicionales</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToWebApp" xml:space="preserve">
|
<data name="ContinueToWebApp" xml:space="preserve">
|
||||||
<value>Continue to web app?</value>
|
<value>¿Continuar a la aplicación web?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToX" xml:space="preserve">
|
<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>
|
<comment>The parameter is an URL, like bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToHelpCenter" xml:space="preserve">
|
<data name="ContinueToHelpCenter" xml:space="preserve">
|
||||||
<value>Continue to Help center?</value>
|
<value>¿Continuar al centro de ayuda?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToContactSupport" xml:space="preserve">
|
<data name="ContinueToContactSupport" xml:space="preserve">
|
||||||
<value>Continue to contact support?</value>
|
<value>¿Continuar con el servicio de asistencia?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToAppStore" xml:space="preserve">
|
<data name="ContinueToAppStore" xml:space="preserve">
|
||||||
<value>Continue to app store?</value>
|
<value>¿Continuar a la App Store?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TwoStepLoginDescriptionLong" xml:space="preserve">
|
<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>
|
||||||
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
|
<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>
|
||||||
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
|
<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>
|
<comment>The parameter is an URL, like vault.bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
|
<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>
|
||||||
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
||||||
<value>Can’t 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>
|
||||||
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
|
<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>
|
||||||
<data name="LearnAboutOrganizationsDescriptionLong" xml:space="preserve">
|
<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>
|
||||||
<data name="RateAppDescriptionLong" xml:space="preserve">
|
<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>
|
||||||
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
||||||
<value>Choose the dark theme to use when your device’s 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>
|
||||||
<data name="CreatedXY" xml:space="preserve">
|
<data name="CreatedXY" xml:space="preserve">
|
||||||
<value>Creado {0}, {1}</value>
|
<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>
|
<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>
|
||||||
<data name="TooManyAttempts" xml:space="preserve">
|
<data name="TooManyAttempts" xml:space="preserve">
|
||||||
<value>Too many attempts</value>
|
<value>Demasiados intentos</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<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>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>Tu organización requiere que establezcas una contraseña maestra.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Configura una opción de desbloqueo para cambiar tu acción de tiempo de espera de tu caja fuerte.</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2424,6 +2424,10 @@ Skaneerimine toimub automaatselt.</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API ligipääsu võti</value>
|
<value>API ligipääsu võti</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,9 +2694,6 @@ Soovid selle konto peale lülituda?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Seda kirjet ei saa organisatsiooniga jagada, sest sama pääsukoodiga kirje juba eksisteerib.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Automaatse täitmise keelamine</value>
|
<value>Automaatse täitmise keelamine</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2860,4 +2861,13 @@ Soovid selle konto peale lülituda?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -416,10 +416,10 @@
|
|||||||
<value>Aplikazioaren gehigarria</value>
|
<value>Aplikazioaren gehigarria</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillAccessibilityDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="AutofillService" xml:space="preserve">
|
<data name="AutofillService" xml:space="preserve">
|
||||||
<value>Auto-betetze zerbitzua</value>
|
<value>Automatikoki betetzeko zerbitzua</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AvoidAmbiguousCharacters" xml:space="preserve">
|
<data name="AvoidAmbiguousCharacters" xml:space="preserve">
|
||||||
<value>Saihestu karaktere anbiguoak</value>
|
<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>
|
<value>Zure kutxa gotorrean saio hasiera berriak gehitzeko modurik errazena Bitwarden aplikazioaren gehigarria zabaltzea da. Eskuratu informazio gehiago "Ezarpenak" eremuan.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAppExtensionDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAutofillService" xml:space="preserve">
|
<data name="BitwardenAutofillService" xml:space="preserve">
|
||||||
<value>Bitwarden auto-betetze zerbitzua</value>
|
<value>Bitwardenen automatikoki betetzeko zerbitzua</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillAccessibilityServiceDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="ChangeEmail" xml:space="preserve">
|
<data name="ChangeEmail" xml:space="preserve">
|
||||||
<value>Aldatu emaila</value>
|
<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>
|
<comment>This is used for the autofill service. ex. "There are no items in your vault for twitter.com".</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceOverlay" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAutofillServiceNotificationContent" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAutofillServiceOpenAccessibilitySettings" xml:space="preserve">
|
<data name="BitwardenAutofillServiceOpenAccessibilitySettings" xml:space="preserve">
|
||||||
<value>Ireki erabilerraztasun ezarpenak</value>
|
<value>Ireki erabilerraztasun ezarpenak</value>
|
||||||
@@ -775,16 +775,16 @@
|
|||||||
<value>Egoera</value>
|
<value>Egoera</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceAlert2" xml:space="preserve">
|
<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>
|
||||||
<data name="Autofill" xml:space="preserve">
|
<data name="Autofill" xml:space="preserve">
|
||||||
<value>Auto-betetzea</value>
|
<value>Automatikoki betetzea</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillOrView" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAutofillServiceMatchConfirm" xml:space="preserve">
|
<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>
|
||||||
<data name="MatchingItems" xml:space="preserve">
|
<data name="MatchingItems" xml:space="preserve">
|
||||||
<value>Kointzidentzia duten elementuak</value>
|
<value>Kointzidentzia duten elementuak</value>
|
||||||
@@ -796,7 +796,7 @@
|
|||||||
<value>Bilatu</value>
|
<value>Bilatu</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<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>
|
||||||
<data name="LearnOrg" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Erakundeak ezagutu</value>
|
<value>Erakundeak ezagutu</value>
|
||||||
@@ -906,7 +906,7 @@
|
|||||||
<value>Kopiatu TOTP-a</value>
|
<value>Kopiatu TOTP-a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="CopyTotpAutomatically" xml:space="preserve">
|
<data name="CopyTotpAutomatically" xml:space="preserve">
|
||||||
<value>Kopiatu TOTP automatikoki</value>
|
<value>Kopiatu TOTP automatikoki</value>
|
||||||
@@ -1142,7 +1142,7 @@
|
|||||||
<value>Ikonoen zerbitzariaren URL-a</value>
|
<value>Ikonoen zerbitzariaren URL-a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillWithBitwarden" xml:space="preserve">
|
<data name="AutofillWithBitwarden" xml:space="preserve">
|
||||||
<value>Bitwardenekin auto-bete</value>
|
<value>Bitwardenekin automatikoki bete</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VaultIsLocked" xml:space="preserve">
|
<data name="VaultIsLocked" xml:space="preserve">
|
||||||
<value>Kutxa gotorra blokeatuta dago</value>
|
<value>Kutxa gotorra blokeatuta dago</value>
|
||||||
@@ -1163,13 +1163,13 @@
|
|||||||
<value>Zakarrontzian ez dago elementurik.</value>
|
<value>Zakarrontzian ez dago elementurik.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillAccessibilityService" xml:space="preserve">
|
<data name="AutofillAccessibilityService" xml:space="preserve">
|
||||||
<value>Auto-betetze erabilerraztasun zerbitzua</value>
|
<value>Automatikoki betetzeko erabilerraztasun zerbitzua</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServiceDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAutofillServiceDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAutofillServiceOpenAutofillSettings" xml:space="preserve">
|
<data name="BitwardenAutofillServiceOpenAutofillSettings" xml:space="preserve">
|
||||||
<value>Ireki auto-betetze ezarpenak</value>
|
<value>Ireki auto-betetze ezarpenak</value>
|
||||||
@@ -1255,7 +1255,7 @@
|
|||||||
<value>Bai, eta gorde</value>
|
<value>Bai, eta gorde</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillAndSave" xml:space="preserve">
|
<data name="AutofillAndSave" xml:space="preserve">
|
||||||
<value>Auto-bete eta gorde</value>
|
<value>Automatikoki bete eta gorde</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Organization" xml:space="preserve">
|
<data name="Organization" xml:space="preserve">
|
||||||
<value>Erakundea</value>
|
<value>Erakundea</value>
|
||||||
@@ -1271,7 +1271,7 @@
|
|||||||
<value>Aurrera egiteko, mantendu YubiKey NEO gailuaren atzeko aldean.</value>
|
<value>Aurrera egiteko, mantendu YubiKey NEO gailuaren atzeko aldean.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillAccessibilityServiceDescription2" xml:space="preserve">
|
<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>
|
||||||
<data name="DatePasswordUpdated" xml:space="preserve">
|
<data name="DatePasswordUpdated" xml:space="preserve">
|
||||||
<value>Pasahitza eguneratu da</value>
|
<value>Pasahitza eguneratu da</value>
|
||||||
@@ -1297,7 +1297,7 @@
|
|||||||
<value>Sartu kutxa gotorrera zuzenean teklatutik, pasahitzak azkar auto-betetzeko.</value>
|
<value>Sartu kutxa gotorrera zuzenean teklatutik, pasahitzak azkar auto-betetzeko.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn" xml:space="preserve">
|
<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>
|
||||||
<data name="AutofillTurnOn1" xml:space="preserve">
|
<data name="AutofillTurnOn1" xml:space="preserve">
|
||||||
<value>1. Joan iOS "Ezarpenak" aplikaziora</value>
|
<value>1. Joan iOS "Ezarpenak" aplikaziora</value>
|
||||||
@@ -1315,7 +1315,7 @@
|
|||||||
<value>5. Hautatu "Bitwarden"</value>
|
<value>5. Hautatu "Bitwarden"</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordAutofill" xml:space="preserve">
|
<data name="PasswordAutofill" xml:space="preserve">
|
||||||
<value>Pasahitza auto-bete</value>
|
<value>Pasahitza automatikoki bete</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillAlert2" xml:space="preserve">
|
<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>
|
<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>
|
<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>
|
||||||
<data name="YourAccountsFingerprint" xml:space="preserve">
|
<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>
|
<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>
|
||||||
<data name="LearnOrgConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
@@ -1533,7 +1533,7 @@
|
|||||||
<comment>Default URI match detection for auto-fill.</comment>
|
<comment>Default URI match detection for auto-fill.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultUriMatchDetectionDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="Theme" xml:space="preserve">
|
<data name="Theme" xml:space="preserve">
|
||||||
<value>Gaia</value>
|
<value>Gaia</value>
|
||||||
@@ -1573,7 +1573,7 @@
|
|||||||
<comment>'Solarized Dark' is the name of a specific color scheme. It should not be translated.</comment>
|
<comment>'Solarized Dark' is the name of a specific color scheme. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillBlockedUris" xml:space="preserve">
|
<data name="AutofillBlockedUris" xml:space="preserve">
|
||||||
<value>Auto-bete blokeatutako URI-ak</value>
|
<value>Automatikoki bete blokeatutako URI-ak</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AskToAddLogin" xml:space="preserve">
|
<data name="AskToAddLogin" xml:space="preserve">
|
||||||
<value>Galdetu saio-hasiera gehitzeko</value>
|
<value>Galdetu saio-hasiera gehitzeko</value>
|
||||||
@@ -1585,7 +1585,7 @@
|
|||||||
<value>Aplikazioa berrabiarazten denean</value>
|
<value>Aplikazioa berrabiarazten denean</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServiceNotEnabled" xml:space="preserve">
|
<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>
|
||||||
<data name="ThemeAppliedOnRestart" xml:space="preserve">
|
<data name="ThemeAppliedOnRestart" xml:space="preserve">
|
||||||
<value>Aplikazioa berrabiarazten denean aplikatuko dira gai aldaketak.</value>
|
<value>Aplikazioa berrabiarazten denean aplikatuko dira gai aldaketak.</value>
|
||||||
@@ -1619,7 +1619,7 @@
|
|||||||
<value>Erabili biometria desblokeatzeko</value>
|
<value>Erabili biometria desblokeatzeko</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityOverlayPermissionAlert" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAutofillServiceOverlayPermission" xml:space="preserve">
|
<data name="BitwardenAutofillServiceOverlayPermission" xml:space="preserve">
|
||||||
<value>3. Bitwarden aplikazioko Androiden konfigurazioa pantailan, joan "Erakutsi beste aplikazio batzuetan" aukerara (Aurreratua) eta gaitu gainjartzea.</value>
|
<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>
|
<value>Eranskina ondo atxiki da</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTileAccessibilityRequired" xml:space="preserve">
|
<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>
|
||||||
<data name="AutofillTileUriNotFound" xml:space="preserve">
|
<data name="AutofillTileUriNotFound" xml:space="preserve">
|
||||||
<value>Ez da pasahitz eremurik detektatu</value>
|
<value>Ez da pasahitz eremurik detektatu</value>
|
||||||
@@ -1813,25 +1813,25 @@
|
|||||||
<value>Pribatutasun politika</value>
|
<value>Pribatutasun politika</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityDrawOverPermissionAlert" xml:space="preserve">
|
<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>
|
||||||
<data name="AutofillServices" xml:space="preserve">
|
<data name="AutofillServices" xml:space="preserve">
|
||||||
<value>Auto-betetze zerbitzuak</value>
|
<value>Automatikoki betetzeko zerbitzuak</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="InlineAutofill" xml:space="preserve">
|
<data name="InlineAutofill" xml:space="preserve">
|
||||||
<value>Erabili lineako auto-betetzea</value>
|
<value>Erabili lineako auto-betetzea</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="InlineAutofillDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="Accessibility" xml:space="preserve">
|
<data name="Accessibility" xml:space="preserve">
|
||||||
<value>Erabili erabilerraztasuna</value>
|
<value>Erabili erabilerraztasuna</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityDescription" xml:space="preserve">
|
<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>
|
||||||
<data name="AccessibilityDescription2" xml:space="preserve">
|
<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>
|
||||||
<data name="AccessibilityDescription3" xml:space="preserve">
|
<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>
|
<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>
|
<value>Gaituta dagoenean, Bitwarden erabilerraztasun zerbitzuari popup bat erakusteko aukera ematen dio sarbide eremuak hautatzean.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DrawOverDescription2" xml:space="preserve">
|
<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>
|
||||||
<data name="DrawOverDescription3" xml:space="preserve">
|
<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>
|
<value>Gaituz gero, Android-en auto-betetze Framework-arekin bateragarri ez diren aplikazio zaharragoen auto-betetze zerbitzua handitzeko popup bat erakutsiko du erabilerraztasunak.</value>
|
||||||
@@ -2423,6 +2423,10 @@
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Token sarbide API-a</value>
|
<value>Token sarbide API-a</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2689,14 +2693,11 @@ Kontu honetara aldatu nahi duzu?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Blokeatu automatikoki betetzea</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
|
<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>
|
||||||
<data name="NewBlockedURI" xml:space="preserve">
|
<data name="NewBlockedURI" xml:space="preserve">
|
||||||
<value>New blocked URI</value>
|
<value>New blocked URI</value>
|
||||||
@@ -2778,7 +2779,7 @@ Kontu honetara aldatu nahi duzu?</value>
|
|||||||
<value>Session timeout action</value>
|
<value>Session timeout action</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountFingerprintPhrase" xml:space="preserve">
|
<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>
|
<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>
|
||||||
<data name="OneHourAndOneMinute" xml:space="preserve">
|
<data name="OneHourAndOneMinute" xml:space="preserve">
|
||||||
@@ -2800,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>
|
<value>The Android Autofill Framework is used to assist in filling login information into other apps on your device.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
|
<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>
|
||||||
<data name="AdditionalOptions" xml:space="preserve">
|
<data name="AdditionalOptions" xml:space="preserve">
|
||||||
<value>Additional options</value>
|
<value>Additional options</value>
|
||||||
@@ -2859,4 +2860,13 @@ Kontu honetara aldatu nahi duzu?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -560,7 +560,7 @@
|
|||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoginOrCreateNewAccount" xml:space="preserve">
|
<data name="LoginOrCreateNewAccount" xml:space="preserve">
|
||||||
<value>وارد شوید یا یک حساب کاربری بسازید تا به گاوصندوق امنتان دسترسی یابید.</value>
|
<value>وارد شوید یا یک حساب کاربری بسازید تا به گاوصندوق امنتان دسترسی یابید.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Manage" xml:space="preserve">
|
<data name="Manage" xml:space="preserve">
|
||||||
<value>مدیریت</value>
|
<value>مدیریت</value>
|
||||||
@@ -2425,6 +2425,10 @@
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>توکن دسترسی API</value>
|
<value>توکن دسترسی API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2479,7 +2483,7 @@
|
|||||||
آیا میخواهید به این حساب تغییر دهید؟</value>
|
آیا میخواهید به این حساب تغییر دهید؟</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NewAroundHere" xml:space="preserve">
|
<data name="NewAroundHere" xml:space="preserve">
|
||||||
<value>اینجا جدیده؟</value>
|
<value>اینجا تازه واردی؟</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GetMasterPasswordwordHint" xml:space="preserve">
|
<data name="GetMasterPasswordwordHint" xml:space="preserve">
|
||||||
<value>دریافت یادآور کلمه عبور اصلی</value>
|
<value>دریافت یادآور کلمه عبور اصلی</value>
|
||||||
@@ -2691,9 +2695,6 @@
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>اقدام پایان زمان گاوصندوق به خروج تغییر کرد</value>
|
<value>اقدام پایان زمان گاوصندوق به خروج تغییر کرد</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>این مورد را نمیتوان با سازمان به اشتراک گذاشت زیرا قبلاً موردی با کلید عبور یکسان وجود دارد.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>پر کردن خودکار را مسدود کنید</value>
|
<value>پر کردن خودکار را مسدود کنید</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>حساب از سیستم خارج شد.</value>
|
<value>حساب از سیستم خارج شد.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7823
src/App/Resources/AppResources.fi.Designer.cs
generated
7823
src/App/Resources/AppResources.fi.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -416,10 +416,10 @@
|
|||||||
<value>Sovelluslaajennus</value>
|
<value>Sovelluslaajennus</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillAccessibilityDescription" xml:space="preserve">
|
<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 kirjautumistietojesi automaattitäyttöön sovelluksissa ja verkossa.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillService" xml:space="preserve">
|
<data name="AutofillService" xml:space="preserve">
|
||||||
<value>Automaattisen täytön palvelu</value>
|
<value>Automaattitäytön palvelu</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AvoidAmbiguousCharacters" xml:space="preserve">
|
<data name="AvoidAmbiguousCharacters" xml:space="preserve">
|
||||||
<value>Vältä epäselviä merkkejä</value>
|
<value>Vältä epäselviä merkkejä</value>
|
||||||
@@ -431,13 +431,13 @@
|
|||||||
<value>Helpoin tapa lisätä holviisi uusia kirjautumistietoja on käyttää Bitwardenin sovelluslaajennusta. "Asetukset" -osiosta löydät lisätietoja laajennuksen käytöstä.</value>
|
<value>Helpoin tapa lisätä holviisi uusia kirjautumistietoja on käyttää Bitwardenin sovelluslaajennusta. "Asetukset" -osiosta löydät lisätietoja laajennuksen käytöstä.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAppExtensionDescription" xml:space="preserve">
|
<data name="BitwardenAppExtensionDescription" xml:space="preserve">
|
||||||
<value>Käytä Bitwardenia kirjautumistietojesi automaattiseen täyttöön Safarissa ja muissa sovelluksissa.</value>
|
<value>Käytä Bitwardenia kirjautumistietojesi automaattitäyttöön Safarissa ja muissa sovelluksissa.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillService" xml:space="preserve">
|
<data name="BitwardenAutofillService" xml:space="preserve">
|
||||||
<value>Bitwardenin automaattisen täytön palvelu</value>
|
<value>Bitwardenin automaattitäytön palvelu</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillAccessibilityServiceDescription" xml:space="preserve">
|
<data name="BitwardenAutofillAccessibilityServiceDescription" xml:space="preserve">
|
||||||
<value>Käytä Bitwardenin esteettömyyspalvelua kirjautumistietojen automaattiseen täyttöön.</value>
|
<value>Käytä Bitwardenin esteettömyyspalvelua kirjautumistietojen automaattitäyttöön.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ChangeEmail" xml:space="preserve">
|
<data name="ChangeEmail" xml:space="preserve">
|
||||||
<value>Vaihda sähköpostiosoite</value>
|
<value>Vaihda sähköpostiosoite</value>
|
||||||
@@ -721,7 +721,7 @@
|
|||||||
<value>Bitwarden Verkkoholvi</value>
|
<value>Bitwarden Verkkoholvi</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Lost2FAApp" xml:space="preserve">
|
<data name="Lost2FAApp" xml:space="preserve">
|
||||||
<value>Etkö pysty käyttämään todennussovellustasi?</value>
|
<value>Etkö voi käyttää todennussovellustasi?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Items" xml:space="preserve">
|
<data name="Items" xml:space="preserve">
|
||||||
<value>Kohteet</value>
|
<value>Kohteet</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>
|
<comment>This is used for the autofill service. ex. "There are no items in your vault for twitter.com".</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceOverlay" xml:space="preserve">
|
<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 napauttaa sitä avataksesi automaattitäytön palvelun.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceNotificationContent" xml:space="preserve">
|
<data name="BitwardenAutofillServiceNotificationContent" xml:space="preserve">
|
||||||
<value>Napauta tätä ilmoitusta täyttääksesi kohteen holvistasi automaattisesti.</value>
|
<value>Automaattitäytä holvisi kohde automaattisesti napauttamalla tätä ilmoitusta.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceOpenAccessibilitySettings" xml:space="preserve">
|
<data name="BitwardenAutofillServiceOpenAccessibilitySettings" xml:space="preserve">
|
||||||
<value>Avaa "Esteettömyys" -asetukset</value>
|
<value>Avaa "Esteettömyys" -asetukset</value>
|
||||||
@@ -775,16 +775,16 @@
|
|||||||
<value>Tila</value>
|
<value>Tila</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceAlert2" xml:space="preserve">
|
<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>Helpoin tapa lisätä holviisi uusia kirjautumistietoja on Bitwardenin automaattitäytön palvelu. Asetuksista löydät lisätietoja sen käytöstä.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Autofill" xml:space="preserve">
|
<data name="Autofill" xml:space="preserve">
|
||||||
<value>Automaattinen täyttö</value>
|
<value>Automaattitäyttö</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillOrView" xml:space="preserve">
|
<data name="AutofillOrView" xml:space="preserve">
|
||||||
<value>Täytetäänkö automaatisesti vai näytetäänkö tiedot?</value>
|
<value>Haluatko automaattitäyttää vai tarkastella kohdetta?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceMatchConfirm" xml:space="preserve">
|
<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 automaattitäyttää tällä kohteella? Se ei ole täysin osoitetta "{0}" vastaava.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MatchingItems" xml:space="preserve">
|
<data name="MatchingItems" xml:space="preserve">
|
||||||
<value>Tunnistetut kohteet</value>
|
<value>Tunnistetut kohteet</value>
|
||||||
@@ -796,7 +796,7 @@
|
|||||||
<value>Etsi</value>
|
<value>Etsi</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Etsit automaattisesti täytettävää kohdetta osoitteelle ”{0}”.</value>
|
<value>Etsit automaattitäyttöön kohdetta osoitteelle ”{0}”.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnOrg" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Lisätietoja organisaatioista</value>
|
<value>Lisätietoja organisaatioista</value>
|
||||||
@@ -892,10 +892,10 @@
|
|||||||
</data>
|
</data>
|
||||||
<data name="PointYourCameraAtTheQRCode" xml:space="preserve">
|
<data name="PointYourCameraAtTheQRCode" xml:space="preserve">
|
||||||
<value>Kohdista kamera QR-koodiin.
|
<value>Kohdista kamera QR-koodiin.
|
||||||
Koodi luetaan automaattisesti.</value>
|
Koodi skannataan automaattisesti.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ScanQrTitle" xml:space="preserve">
|
<data name="ScanQrTitle" xml:space="preserve">
|
||||||
<value>Lue QR-koodi</value>
|
<value>Skannaa QR-koodi</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Camera" xml:space="preserve">
|
<data name="Camera" xml:space="preserve">
|
||||||
<value>Kamera</value>
|
<value>Kamera</value>
|
||||||
@@ -907,7 +907,7 @@ Koodi luetaan automaattisesti.</value>
|
|||||||
<value>Kopioi TOTP-todennuskoodi</value>
|
<value>Kopioi TOTP-todennuskoodi</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
|
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
|
||||||
<value>TOTP-todennuskoodi kopioidaan automaattisesti leikepöydälle automaattisen täytön yhteydessä, jos kirjautumistieto sisältää kaksivaiheisen todennusmenetelmän avaimen.</value>
|
<value>Jos kirjautumistieto sisältää kaksivaiheisen TOTP-todennusavaimen, kopioidaan todennuskoodi automaattitäytön yhteydessä automaattisesti leikepöydälle.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyTotpAutomatically" xml:space="preserve">
|
<data name="CopyTotpAutomatically" xml:space="preserve">
|
||||||
<value>TOTP-koodin kopiointi</value>
|
<value>TOTP-koodin kopiointi</value>
|
||||||
@@ -1143,7 +1143,7 @@ Koodi luetaan automaattisesti.</value>
|
|||||||
<value>Kuvakepalvelimen URL</value>
|
<value>Kuvakepalvelimen URL</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillWithBitwarden" xml:space="preserve">
|
<data name="AutofillWithBitwarden" xml:space="preserve">
|
||||||
<value>Täytä automaattisesti Bitwardenilla</value>
|
<value>Automaattitäytä Bitwardenilla</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VaultIsLocked" xml:space="preserve">
|
<data name="VaultIsLocked" xml:space="preserve">
|
||||||
<value>Holvi on lukittu</value>
|
<value>Holvi on lukittu</value>
|
||||||
@@ -1164,13 +1164,13 @@ Koodi luetaan automaattisesti.</value>
|
|||||||
<value>Roskakorissa ei ole kohteita.</value>
|
<value>Roskakorissa ei ole kohteita.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillAccessibilityService" xml:space="preserve">
|
<data name="AutofillAccessibilityService" xml:space="preserve">
|
||||||
<value>Automaattisen täytön esteettömyyspalvelu</value>
|
<value>Automaattitäytön esteettömyyspalvelu</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServiceDescription" xml:space="preserve">
|
<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 sovelluksissa.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceDescription" xml:space="preserve">
|
<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 sovelluksissa.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceOpenAutofillSettings" xml:space="preserve">
|
<data name="BitwardenAutofillServiceOpenAutofillSettings" xml:space="preserve">
|
||||||
<value>Avaa "Automaattinen täyttö -palvelu" -asetukset</value>
|
<value>Avaa "Automaattinen täyttö -palvelu" -asetukset</value>
|
||||||
@@ -1256,7 +1256,7 @@ Koodi luetaan automaattisesti.</value>
|
|||||||
<value>Kyllä, ja tallenna</value>
|
<value>Kyllä, ja tallenna</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillAndSave" xml:space="preserve">
|
<data name="AutofillAndSave" xml:space="preserve">
|
||||||
<value>Täytä automaattisesti ja tallenna</value>
|
<value>Automaattitäytä ja tallenna</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Organization" xml:space="preserve">
|
<data name="Organization" xml:space="preserve">
|
||||||
<value>Organisaatio</value>
|
<value>Organisaatio</value>
|
||||||
@@ -1272,7 +1272,7 @@ Koodi luetaan automaattisesti.</value>
|
|||||||
<value>Jatka pitämällä YubiKey NEO -todennuslaitetta laitteen taustaa vasten.</value>
|
<value>Jatka pitämällä YubiKey NEO -todennuslaitetta laitteen taustaa vasten.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillAccessibilityServiceDescription2" xml:space="preserve">
|
<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>
|
||||||
<data name="DatePasswordUpdated" xml:space="preserve">
|
<data name="DatePasswordUpdated" xml:space="preserve">
|
||||||
<value>Salasana vaihdettiin</value>
|
<value>Salasana vaihdettiin</value>
|
||||||
@@ -1298,7 +1298,7 @@ Koodi luetaan automaattisesti.</value>
|
|||||||
<value>Käytä holviasi suoraan näppäimistöltä nopeaa salasanojen automaattista täyttöä varten.</value>
|
<value>Käytä holviasi suoraan näppäimistöltä nopeaa salasanojen automaattista täyttöä varten.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn" xml:space="preserve">
|
<data name="AutofillTurnOn" xml:space="preserve">
|
||||||
<value>Ota salasanojen automaattinen täyttö laitteellasi käyttöön seuraavilla ohjeilla:</value>
|
<value>Ota salasanojen automaattitäyttö käyttöön laitteellasi seuraavilla ohjeilla:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn1" xml:space="preserve">
|
<data name="AutofillTurnOn1" xml:space="preserve">
|
||||||
<value>1. Siirry iOS:n "Asetukset" -sovellukseen</value>
|
<value>1. Siirry iOS:n "Asetukset" -sovellukseen</value>
|
||||||
@@ -1316,7 +1316,7 @@ Koodi luetaan automaattisesti.</value>
|
|||||||
<value>5. Valitse "Bitwarden"</value>
|
<value>5. Valitse "Bitwarden"</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordAutofill" xml:space="preserve">
|
<data name="PasswordAutofill" xml:space="preserve">
|
||||||
<value>Salasanojen automaattinen täyttö</value>
|
<value>Salasanojen automaattitäyttö</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillAlert2" xml:space="preserve">
|
<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>
|
<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 luetaan automaattisesti.</value>
|
|||||||
<comment>Clipboard is the operating system thing where you copy/paste data to on your device.</comment>
|
<comment>Clipboard is the operating system thing where you copy/paste data to on your device.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultUriMatchDetection" xml:space="preserve">
|
<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>
|
<comment>Default URI match detection for auto-fill.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultUriMatchDetectionDescription" xml:space="preserve">
|
<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 automaattitäytön kaltaisia toimintoja.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Theme" xml:space="preserve">
|
<data name="Theme" xml:space="preserve">
|
||||||
<value>Teema</value>
|
<value>Teema</value>
|
||||||
@@ -1586,7 +1586,7 @@ Koodi luetaan automaattisesti.</value>
|
|||||||
<value>Kun sovellus käynnistetään uudelleen</value>
|
<value>Kun sovellus käynnistetään uudelleen</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServiceNotEnabled" xml:space="preserve">
|
<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>Automaattitä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>
|
||||||
<data name="ThemeAppliedOnRestart" xml:space="preserve">
|
<data name="ThemeAppliedOnRestart" xml:space="preserve">
|
||||||
<value>Teema vaihtuu kun sovellus käynnistetään uudelleen.</value>
|
<value>Teema vaihtuu kun sovellus käynnistetään uudelleen.</value>
|
||||||
@@ -1620,7 +1620,7 @@ Koodi luetaan automaattisesti.</value>
|
|||||||
<value>Avaa biometrialla</value>
|
<value>Avaa biometrialla</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityOverlayPermissionAlert" xml:space="preserve">
|
<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>
|
||||||
<data name="BitwardenAutofillServiceOverlayPermission" xml:space="preserve">
|
<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>
|
<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 luetaan automaattisesti.</value>
|
|||||||
<value>Tiedostoliite tallennettiin</value>
|
<value>Tiedostoliite tallennettiin</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTileAccessibilityRequired" xml:space="preserve">
|
<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>
|
||||||
<data name="AutofillTileUriNotFound" xml:space="preserve">
|
<data name="AutofillTileUriNotFound" xml:space="preserve">
|
||||||
<value>Salasanakenttiä ei havaittu</value>
|
<value>Salasanakenttiä ei havaittu</value>
|
||||||
@@ -1814,10 +1814,10 @@ Koodi luetaan automaattisesti.</value>
|
|||||||
<value>Tietosuojakäytäntö</value>
|
<value>Tietosuojakäytäntö</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityDrawOverPermissionAlert" xml:space="preserve">
|
<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>
|
||||||
<data name="AutofillServices" xml:space="preserve">
|
<data name="AutofillServices" xml:space="preserve">
|
||||||
<value>Automaattisen täytön palvelut</value>
|
<value>Automaattitäytön palvelut</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="InlineAutofill" xml:space="preserve">
|
<data name="InlineAutofill" xml:space="preserve">
|
||||||
<value>Tekstinsisäinen täyttö</value>
|
<value>Tekstinsisäinen täyttö</value>
|
||||||
@@ -1829,10 +1829,10 @@ Koodi luetaan automaattisesti.</value>
|
|||||||
<value>Esteettömyyspalvelu</value>
|
<value>Esteettömyyspalvelu</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityDescription" xml:space="preserve">
|
<data name="AccessibilityDescription" xml:space="preserve">
|
||||||
<value>Käytä Bitwardenin esteettömyyspalvelua kirjautumistietojen automaattiseen täyttöön sovelluksissa ja verkkosivustoilla. Kun määritetty, näytetään aktiivisten kirjautumiskenttien ohessa pikavalintapalkki.</value>
|
<value>Käytä Bitwardenin esteettömyyspalvelua kirjautumistietojen automaattitäyttöön sovelluksissa ja verkkosivustoilla. Kun määritetty, näytetään aktiivisten kirjautumiskenttien ohessa pikavalintapalkki.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityDescription2" xml:space="preserve">
|
<data name="AccessibilityDescription2" xml:space="preserve">
|
||||||
<value>Käytä Bitwardenin esteettömyyspalvelua kirjautumistietojen automaattiseen täyttöön sovelluksissa ja verkkosivustoilla (myös "Näkyminen muiden päällä" -asetuksen on oltava käytössä).</value>
|
<value>Käytä Bitwardenin esteettömyyspalvelua kirjautumistietojen automaattitäyttöön sovelluksissa ja verkkosivustoilla (myös "Näkyminen muiden päällä" -asetuksen on oltava käytössä).</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityDescription3" xml:space="preserve">
|
<data name="AccessibilityDescription3" xml:space="preserve">
|
||||||
<value>Käytä Bitwardenin esteettömyyspalvelua käyttääksesi Automaattisen täytön pikavalintapalkkia ja/tai näytä palkki käyttäen "Näkyminen muiden päällä" -asetusta.</value>
|
<value>Käytä Bitwardenin esteettömyyspalvelua käyttääksesi Automaattisen täytön pikavalintapalkkia ja/tai näytä palkki käyttäen "Näkyminen muiden päällä" -asetusta.</value>
|
||||||
@@ -1847,7 +1847,7 @@ Koodi luetaan automaattisesti.</value>
|
|||||||
<value>Sallii Bitwardenin esteettömyyspalvelun näyttää pikavalintapalkin aktiivisten kirjautumiskenttien ohessa.</value>
|
<value>Sallii Bitwardenin esteettömyyspalvelun näyttää pikavalintapalkin aktiivisten kirjautumiskenttien ohessa.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DrawOverDescription2" xml:space="preserve">
|
<data name="DrawOverDescription2" xml:space="preserve">
|
||||||
<value>Kun käytössä, Bitwardenin esteettömyyspalvelu näyttää aktiivisten kirjautumiskenttien ohessa pikavalintapalkin helpottaakseen kirjautumistietojen automaattista täyttöä.</value>
|
<value>Kun käytössä, Bitwardenin esteettömyyspalvelu näyttää aktiivisten kirjautumiskenttien ohessa pikavalintapalkin helpottaakseen kirjautumistietojen automaattitäyttöä.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DrawOverDescription3" xml:space="preserve">
|
<data name="DrawOverDescription3" xml:space="preserve">
|
||||||
<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>
|
<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>
|
||||||
@@ -2276,16 +2276,16 @@ Koodi luetaan automaattisesti.</value>
|
|||||||
<value>Etkö voi lisätä todennusavainta? </value>
|
<value>Etkö voi lisätä todennusavainta? </value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ScanQRCode" xml:space="preserve">
|
<data name="ScanQRCode" xml:space="preserve">
|
||||||
<value>Lue QR-koodi</value>
|
<value>Skannaa QR-koodi</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotScanQRCode" xml:space="preserve">
|
<data name="CannotScanQRCode" xml:space="preserve">
|
||||||
<value>Etkö voi lukea QR-koodia? </value>
|
<value>Eikö QR-koodin skannaus onnistu? </value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuthenticatorKeyScanner" xml:space="preserve">
|
<data name="AuthenticatorKeyScanner" xml:space="preserve">
|
||||||
<value>Todentajan avain</value>
|
<value>Todentajan avain</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnterKeyManually" xml:space="preserve">
|
<data name="EnterKeyManually" xml:space="preserve">
|
||||||
<value>Syötä koodi manuaalisesti</value>
|
<value>Syötä se manuaalisesti</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AddTotp" xml:space="preserve">
|
<data name="AddTotp" xml:space="preserve">
|
||||||
<value>Lisää TOTP</value>
|
<value>Lisää TOTP</value>
|
||||||
@@ -2307,7 +2307,7 @@ turvallisesti valitsemalla "Lisää TOTP"</value>
|
|||||||
<value>Pyyntöäsi ei voitu käsitellä. Yritä uudelleen tai ota meihin yhteyttä.</value>
|
<value>Pyyntöäsi ei voitu käsitellä. Yritä uudelleen tai ota meihin yhteyttä.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AllowScreenCapture" xml:space="preserve">
|
<data name="AllowScreenCapture" xml:space="preserve">
|
||||||
<value>Salli kuvakaappaus</value>
|
<value>Salli kuvankaappaus</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AreYouSureYouWantToEnableScreenCapture" xml:space="preserve">
|
<data name="AreYouSureYouWantToEnableScreenCapture" xml:space="preserve">
|
||||||
<value>Haluatko varmasti sallia kuvankaappauksen?</value>
|
<value>Haluatko varmasti sallia kuvankaappauksen?</value>
|
||||||
@@ -2319,7 +2319,7 @@ turvallisesti valitsemalla "Lisää TOTP"</value>
|
|||||||
<value>Yritätkö kirjautua sisään?</value>
|
<value>Yritätkö kirjautua sisään?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LogInAttemptByXOnY" xml:space="preserve">
|
<data name="LogInAttemptByXOnY" xml:space="preserve">
|
||||||
<value>Kirjautumisyritys tunnuksella {0} laitteella {1}</value>
|
<value>Kirjautumisyritys tunnuksella {0} kohteessa {1}.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DeviceType" xml:space="preserve">
|
<data name="DeviceType" xml:space="preserve">
|
||||||
<value>Laitteen tyyppi</value>
|
<value>Laitteen tyyppi</value>
|
||||||
@@ -2337,7 +2337,7 @@ turvallisesti valitsemalla "Lisää TOTP"</value>
|
|||||||
<value>Vahvista kirjautuminen</value>
|
<value>Vahvista kirjautuminen</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DenyLogIn" xml:space="preserve">
|
<data name="DenyLogIn" xml:space="preserve">
|
||||||
<value>Estä kirjautuminen</value>
|
<value>Hylkää kirjautuminen</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="JustNow" xml:space="preserve">
|
<data name="JustNow" xml:space="preserve">
|
||||||
<value>Juuri nyt</value>
|
<value>Juuri nyt</value>
|
||||||
@@ -2355,7 +2355,7 @@ turvallisesti valitsemalla "Lisää TOTP"</value>
|
|||||||
<value>Hyväksy kirjautumispyyntöjä</value>
|
<value>Hyväksy kirjautumispyyntöjä</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices" xml:space="preserve">
|
<data name="UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices" xml:space="preserve">
|
||||||
<value>Hyväksy kirjautumispyyntöjä tällä laitteella</value>
|
<value>Hyväksy muiden laitteiden kirjautumispyyntöjä tällä laitteella</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AllowNotifications" xml:space="preserve">
|
<data name="AllowNotifications" xml:space="preserve">
|
||||||
<value>Salli ilmoitukset</value>
|
<value>Salli ilmoitukset</value>
|
||||||
@@ -2425,6 +2425,10 @@ turvallisesti valitsemalla "Lisää TOTP"</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>Forward Email</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API-käyttötunniste</value>
|
<value>API-käyttötunniste</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2533,7 +2537,7 @@ Haluatko vaihtaa tähän tiliin?</value>
|
|||||||
<value>Odottavia pyyntöjä ei ole</value>
|
<value>Odottavia pyyntöjä ei ole</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnableCamerPermissionToUseTheScanner" xml:space="preserve">
|
<data name="EnableCamerPermissionToUseTheScanner" xml:space="preserve">
|
||||||
<value>Myönnä kameran käyttöoikeus skannerin käyttämiseksi</value>
|
<value>Myönnä kameran käyttöoikeus käyttääksesi skannausta</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Language" xml:space="preserve">
|
<data name="Language" xml:space="preserve">
|
||||||
<value>Kieli</value>
|
<value>Kieli</value>
|
||||||
@@ -2620,10 +2624,10 @@ Haluatko vaihtaa tähän tiliin?</value>
|
|||||||
<value>Nykyinen pääsalasana</value>
|
<value>Nykyinen pääsalasana</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoggedIn" xml:space="preserve">
|
<data name="LoggedIn" xml:space="preserve">
|
||||||
<value>Kirjautuminen onnistui!</value>
|
<value>Kirjautuminen onnistui</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ApproveWithMyOtherDevice" xml:space="preserve">
|
<data name="ApproveWithMyOtherDevice" xml:space="preserve">
|
||||||
<value>Hyväksy muilta laitteiltasi</value>
|
<value>Hyväksy toisella laitteellani</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RequestAdminApproval" xml:space="preserve">
|
<data name="RequestAdminApproval" xml:space="preserve">
|
||||||
<value>Pyydä hyväksyntää ylläpidolta</value>
|
<value>Pyydä hyväksyntää ylläpidolta</value>
|
||||||
@@ -2691,14 +2695,11 @@ Haluatko vaihtaa tähän tiliin?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Holvin aikakatkaisutoiminnoksi vaihdettiin uloskirjaus</value>
|
<value>Holvin aikakatkaisutoiminnoksi vaihdettiin uloskirjaus</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Kohdetta ei voida jakaa organisaatiolle, koska siellä on jo samaa suojausavainta käyttävä kohde.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Estä automaattinen täyttö</value>
|
<value>Estä automaattitäyttö</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
|
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
|
||||||
<value>Automaattista täyttöä ei tarjota näille URI-osoitteille.</value>
|
<value>Automaattitäyttöä ei tarjota näille URI-osoitteille.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NewBlockedURI" xml:space="preserve">
|
<data name="NewBlockedURI" xml:space="preserve">
|
||||||
<value>Uusi estetty URI</value>
|
<value>Uusi estetty URI</value>
|
||||||
@@ -2771,7 +2772,7 @@ Haluatko vaihtaa tähän tiliin?</value>
|
|||||||
<value>Synkronoi nyt</value>
|
<value>Synkronoi nyt</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockOptions" xml:space="preserve">
|
<data name="UnlockOptions" xml:space="preserve">
|
||||||
<value>Lukitseminen</value>
|
<value>Avausasetukset</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SessionTimeout" xml:space="preserve">
|
<data name="SessionTimeout" xml:space="preserve">
|
||||||
<value>Istunnon aikakatkaisu</value>
|
<value>Istunnon aikakatkaisu</value>
|
||||||
@@ -2780,17 +2781,17 @@ Haluatko vaihtaa tähän tiliin?</value>
|
|||||||
<value>Istunnon aikakatkaisutoiminto</value>
|
<value>Istunnon aikakatkaisutoiminto</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountFingerprintPhrase" xml:space="preserve">
|
<data name="AccountFingerprintPhrase" xml:space="preserve">
|
||||||
<value>Tilisi tunnistelauseke</value>
|
<value>Tilin tunnistelauseke</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>
|
<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>
|
||||||
<data name="OneHourAndOneMinute" xml:space="preserve">
|
<data name="OneHourAndOneMinute" xml:space="preserve">
|
||||||
<value>Tunti ja minuutti</value>
|
<value>1 tunti 1 minuutti</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="OneHourAndXMinute" xml:space="preserve">
|
<data name="OneHourAndXMinute" xml:space="preserve">
|
||||||
<value>Tunti ja {0} minuuttia</value>
|
<value>1 tunti {0} minuuttia</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHoursAndOneMinute" xml:space="preserve">
|
<data name="XHoursAndOneMinute" xml:space="preserve">
|
||||||
<value>{0} tuntia yksi minuutti</value>
|
<value>{0} tuntia 1 minuutti</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHoursAndYMinutes" xml:space="preserve">
|
<data name="XHoursAndYMinutes" xml:space="preserve">
|
||||||
<value>{0} tuntia {1} minuuttia</value>
|
<value>{0} tuntia {1} minuuttia</value>
|
||||||
@@ -2799,10 +2800,10 @@ Haluatko vaihtaa tähän tiliin?</value>
|
|||||||
<value>{0} tuntia</value>
|
<value>{0} tuntia</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServicesExplanationLong" xml:space="preserve">
|
<data name="AutofillServicesExplanationLong" xml:space="preserve">
|
||||||
<value>Android Autofill Framework -rajapintaa käytetään kirjautumistietojen täyttöön laitteen muihin sovelluksiin.</value>
|
<value>Android Autofill Framework -rajapintaa käytetään täytettäessä kirjautumistietoja laitteen muihin sovelluksiin.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
|
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
|
||||||
<value>Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay.</value>
|
<value>Tekstinsisäistä automattitäyttöä käytetään, jos aktiivinen näppäimistö tukee sitä. Muussa tapauksessa käytetään ponnahdusvalintaa.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AdditionalOptions" xml:space="preserve">
|
<data name="AdditionalOptions" xml:space="preserve">
|
||||||
<value>Lisäasetukset</value>
|
<value>Lisäasetukset</value>
|
||||||
@@ -2818,23 +2819,23 @@ Haluatko vaihtaa tähän tiliin?</value>
|
|||||||
<value>Avataanko Tukikeskus?</value>
|
<value>Avataanko Tukikeskus?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToContactSupport" xml:space="preserve">
|
<data name="ContinueToContactSupport" xml:space="preserve">
|
||||||
<value>Avataanko asiakaspalvelu?</value>
|
<value>Siirrytäänkö asiakaspalveluun?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToAppStore" xml:space="preserve">
|
<data name="ContinueToAppStore" xml:space="preserve">
|
||||||
<value>Avataanko sovelluskauppa?</value>
|
<value>Avataanko sovelluskauppa?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TwoStepLoginDescriptionLong" xml:space="preserve">
|
<data name="TwoStepLoginDescriptionLong" xml:space="preserve">
|
||||||
<value>Paranna tilisi suojausta määrittämällä kaksivaiheinen kirjautuminen Bitwarden-verkkosovelluksesta.</value>
|
<value>Paranna tilisi suojausta määrittämällä kaksivaiheinen kirjautuminen Bitwardenin verkkosovelluksessa.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
|
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
|
||||||
<value>Voit vaihtaa pääsalasanasi Bitwarden-verkkosovelluksesta.</value>
|
<value>Voit vaihtaa pääsalasanasi Bitwardenin verkkosovelluksessa.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
|
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
|
||||||
<value>Voit tuoda tietoja holviisi osoitteessa {0}.</value>
|
<value>Voit tuoda tietoja holviisi osoitteessa {0}.</value>
|
||||||
<comment>The parameter is an URL, like vault.bitwarden.com.</comment>
|
<comment>The parameter is an URL, like vault.bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
|
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
|
||||||
<value>Opi käyttämään Bitwardenia Tukikeskuksessa.</value>
|
<value>Tutustu Bitwardeniin ja opettele käyttämään sitä Tukikeskuksessa.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
||||||
<value>Etkö löydä etsimääsi? Tavoitat Bitwardenin asiakaspalvelun osoitteesta bitwarden.com.</value>
|
<value>Etkö löydä etsimääsi? Tavoitat Bitwardenin asiakaspalvelun osoitteesta bitwarden.com.</value>
|
||||||
@@ -2843,13 +2844,13 @@ Haluatko vaihtaa tähän tiliin?</value>
|
|||||||
<value>Tutustu Bitwarden-tilisi muihin omimaisuuksiin verkkosovelluksessa.</value>
|
<value>Tutustu Bitwarden-tilisi muihin omimaisuuksiin verkkosovelluksessa.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnAboutOrganizationsDescriptionLong" xml:space="preserve">
|
<data name="LearnAboutOrganizationsDescriptionLong" xml:space="preserve">
|
||||||
<value>Bitwarden mahdollistaa holvisi sisällön jakamisen organisaation avulla. Lisätietoja saat bitwarden.com-sivustolta.</value>
|
<value>Bitwarden mahdollistaa holvisi sisällön jakamisen organisaation avulla. Lue lisää osoitteesta bitwarden.com.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RateAppDescriptionLong" xml:space="preserve">
|
<data name="RateAppDescriptionLong" xml:space="preserve">
|
||||||
<value>Auta muita selvittämään sopiiko Bitwarden heille. Arvioi se sovelluskaupassa nyt.</value>
|
<value>Auta muita selvittämään sopiiko Bitwarden heille. Arvioi se sovelluskaupassa nyt.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
||||||
<value>Valitse tumma teema kun laitteesi tumma tila on käytössä.</value>
|
<value>Valitse tumma teema kun laitteesi tumma tila on aktiivinen.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CreatedXY" xml:space="preserve">
|
<data name="CreatedXY" xml:space="preserve">
|
||||||
<value>Luotu {0} - {1}</value>
|
<value>Luotu {0} - {1}</value>
|
||||||
@@ -2861,4 +2862,13 @@ Haluatko vaihtaa tähän tiliin?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Tili kirjattiin ulos.</value>
|
<value>Tili kirjattiin ulos.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Organisaatiosi käyttöoikeuksia muutettiin ja tämän seurauksena sinun on asetettava pääsalasana.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Organisaatiosi edellyttää, että asetat pääsalasanan.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Muuta holvisi aikakatkaisutoimintoa määrittämällä lukituksen avaustapa.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@ pindutin ang Magdagdag ng TOTP para ligtas na mai-store ang key</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Token pang-access sa API</value>
|
<value>Token pang-access sa API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Gusto mo bang pumunta sa account na ito?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Gusto mo bang pumunta sa account na ito?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7823
src/App/Resources/AppResources.fr.Designer.cs
generated
7823
src/App/Resources/AppResources.fr.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -455,7 +455,7 @@
|
|||||||
<value>Continuer</value>
|
<value>Continuer</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CreateAccount" xml:space="preserve">
|
<data name="CreateAccount" xml:space="preserve">
|
||||||
<value>Créer un compte</value>
|
<value>Créez un compte</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CreatingAccount" xml:space="preserve">
|
<data name="CreatingAccount" xml:space="preserve">
|
||||||
<value>Création du compte...</value>
|
<value>Création du compte...</value>
|
||||||
@@ -686,10 +686,10 @@
|
|||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncingComplete" xml:space="preserve">
|
<data name="SyncingComplete" xml:space="preserve">
|
||||||
<value>Synchronisation terminée</value>
|
<value>Synchronisation achevée</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncingFailed" xml:space="preserve">
|
<data name="SyncingFailed" xml:space="preserve">
|
||||||
<value>Échec de la synchronisation</value>
|
<value>Synchronisation échouée</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncVaultNow" xml:space="preserve">
|
<data name="SyncVaultNow" xml:space="preserve">
|
||||||
<value>Synchroniser le coffre maintenant</value>
|
<value>Synchroniser le coffre maintenant</value>
|
||||||
@@ -778,7 +778,7 @@
|
|||||||
<value>Le moyen le plus simple d'ajouter de nouveaux identifiants à votre coffre est d'utiliser le service de saisie automatique Bitwarden. Pour en savoir davantage sur l'utilisation du service de saisie automatique Bitwarden, naviguez jusqu'à l'écran "Paramètres".</value>
|
<value>Le moyen le plus simple d'ajouter de nouveaux identifiants à votre coffre est d'utiliser le service de saisie automatique Bitwarden. Pour en savoir davantage sur l'utilisation du service de saisie automatique Bitwarden, naviguez jusqu'à l'écran "Paramètres".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Autofill" xml:space="preserve">
|
<data name="Autofill" xml:space="preserve">
|
||||||
<value>Saisir automatiquement</value>
|
<value>Saisie automatique</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillOrView" xml:space="preserve">
|
<data name="AutofillOrView" xml:space="preserve">
|
||||||
<value>Voulez-vous saisir automatiquement ou afficher cet élément ?</value>
|
<value>Voulez-vous saisir automatiquement ou afficher cet élément ?</value>
|
||||||
@@ -907,7 +907,7 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<value>Copier le TOTP</value>
|
<value>Copier le TOTP</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
|
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
|
||||||
<value>Si un identifiant a une clé d'authentification, copier le code de vérification TOTP dans votre presse-papier quand vous remplissez automatiquement l'identifiant.</value>
|
<value>Si un identifiant possède une clé d'authentification, copiez le code de vérification TOTP dans votre presse-papiers lorsque vous saisissez automatiquement l'identifiant.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyTotpAutomatically" xml:space="preserve">
|
<data name="CopyTotpAutomatically" xml:space="preserve">
|
||||||
<value>Copier TOTP automatiquement</value>
|
<value>Copier TOTP automatiquement</value>
|
||||||
@@ -1134,7 +1134,7 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<value>Expiration</value>
|
<value>Expiration</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShowWebsiteIcons" xml:space="preserve">
|
<data name="ShowWebsiteIcons" xml:space="preserve">
|
||||||
<value>Afficher les icônes du site web</value>
|
<value>Afficher les icônes des sites web</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShowWebsiteIconsDescription" xml:space="preserve">
|
<data name="ShowWebsiteIconsDescription" xml:space="preserve">
|
||||||
<value>Affichez une image reconnaissable à côté de chaque identifiant.</value>
|
<value>Affichez une image reconnaissable à côté de chaque identifiant.</value>
|
||||||
@@ -1304,13 +1304,13 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<value>1. Allez dans l'application "Réglages" d'iOS</value>
|
<value>1. Allez dans l'application "Réglages" d'iOS</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn2" xml:space="preserve">
|
<data name="AutofillTurnOn2" xml:space="preserve">
|
||||||
<value>2. Appuyez sur "Mots de passe et comptes"</value>
|
<value>2. Appuyez sur "Mots de passe"</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn3" xml:space="preserve">
|
<data name="AutofillTurnOn3" xml:space="preserve">
|
||||||
<value>3. Appuyez sur "Préremplir mots de passe"</value>
|
<value>3. Appuyez sur "Options des mots de passe"</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn4" xml:space="preserve">
|
<data name="AutofillTurnOn4" xml:space="preserve">
|
||||||
<value>4. Activez "Préremplir mots de passe"</value>
|
<value>4. Activez "Remplir automatiquement les mots de passe et les clés d'identification"</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn5" xml:space="preserve">
|
<data name="AutofillTurnOn5" xml:space="preserve">
|
||||||
<value>5. Sélectionnez "Bitwarden"</value>
|
<value>5. Sélectionnez "Bitwarden"</value>
|
||||||
@@ -1378,10 +1378,10 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<value>Rechercher dans la collection</value>
|
<value>Rechercher dans la collection</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SearchFileSends" xml:space="preserve">
|
<data name="SearchFileSends" xml:space="preserve">
|
||||||
<value>Rechercher des fichiers Sends</value>
|
<value>Rechercher des Send fichier</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SearchTextSends" xml:space="preserve">
|
<data name="SearchTextSends" xml:space="preserve">
|
||||||
<value>Rechercher des textes Sends</value>
|
<value>Rechercher des Sends texte</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SearchGroup" xml:space="preserve">
|
<data name="SearchGroup" xml:space="preserve">
|
||||||
<value>Rechercher {0} :</value>
|
<value>Rechercher {0} :</value>
|
||||||
@@ -1400,7 +1400,7 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<value>Divers</value>
|
<value>Divers</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Ownership" xml:space="preserve">
|
<data name="Ownership" xml:space="preserve">
|
||||||
<value>Propriété</value>
|
<value>Propriétaire</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="WhoOwnsThisItem" xml:space="preserve">
|
<data name="WhoOwnsThisItem" xml:space="preserve">
|
||||||
<value>À qui appartient cet élément ?</value>
|
<value>À qui appartient cet élément ?</value>
|
||||||
@@ -1431,7 +1431,7 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<value>Aucune organisation à lister.</value>
|
<value>Aucune organisation à lister.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MoveToOrgDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Choisissez une organisation vers laquelle vous souhaitez déplacer cet élément. Déplacer un élément vers une organisation transfère la propriété de l'élément à cette organisation. Vous ne serez plus le propriétaire direct de cet élément une fois qu'il aura été déplacé.</value>
|
<value>Choisissez une organisation vers laquelle vous souhaitez déplacer cet élément. Le déplacement vers une organisation transfère le Propriétaire de l'élément à cette organisation. Vous ne serez plus le propriétaire direct de cet élément une fois qu'il aura été déplacé.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Nombre de mots</value>
|
<value>Nombre de mots</value>
|
||||||
@@ -1526,7 +1526,7 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<comment>Clipboard is the operating system thing where you copy/paste data to on your device.</comment>
|
<comment>Clipboard is the operating system thing where you copy/paste data to on your device.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ClearClipboardDescription" xml:space="preserve">
|
<data name="ClearClipboardDescription" xml:space="preserve">
|
||||||
<value>Effacer automatiquement de votre presse-papiers les valeurs copiées.</value>
|
<value>Effacez automatiquement les valeurs copiées de votre presse-papiers.</value>
|
||||||
<comment>Clipboard is the operating system thing where you copy/paste data to on your device.</comment>
|
<comment>Clipboard is the operating system thing where you copy/paste data to on your device.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultUriMatchDetection" xml:space="preserve">
|
<data name="DefaultUriMatchDetection" xml:space="preserve">
|
||||||
@@ -1750,7 +1750,7 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<value>Autoriser la synchronisation au rafraîchissement</value>
|
<value>Autoriser la synchronisation au rafraîchissement</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnableSyncOnRefreshDescription" xml:space="preserve">
|
<data name="EnableSyncOnRefreshDescription" xml:space="preserve">
|
||||||
<value>Synchronisation du coffre avec un geste vers le bas</value>
|
<value>Synchronisez le coffre avec un geste vers le bas.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LogInSso" xml:space="preserve">
|
<data name="LogInSso" xml:space="preserve">
|
||||||
<value>Portail de connexion unique d'entreprise</value>
|
<value>Portail de connexion unique d'entreprise</value>
|
||||||
@@ -1853,10 +1853,10 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<value>Si cette option est activée, l'accessibilité affichera une popup pour améliorer le service de remplissage automatique pour les anciennes applications qui ne prennent pas en charge les outils de remplissage automatique d'Android.</value>
|
<value>Si cette option est activée, l'accessibilité affichera une popup pour améliorer le service de remplissage automatique pour les anciennes applications qui ne prennent pas en charge les outils de remplissage automatique d'Android.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PersonalOwnershipSubmitError" xml:space="preserve">
|
<data name="PersonalOwnershipSubmitError" xml:space="preserve">
|
||||||
<value>En raison d'une Politique d'Entreprise, il vous est interdit d'enregistrer des objets dans votre coffre personnel. Changez l'option Propriété pour une organisation et choisissez parmi les Collections disponibles.</value>
|
<value>En raison d'une politique d'entreprise, il vous est interdit d'enregistrer des éléments dans votre coffre personnel. Changez l'option Propriétaire au profit d'une organisation et choisissez parmi les collections disponibles.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PersonalOwnershipPolicyInEffect" xml:space="preserve">
|
<data name="PersonalOwnershipPolicyInEffect" xml:space="preserve">
|
||||||
<value>Une politique d'organisation affecte vos options de propriété.</value>
|
<value>Une politique d'organisation affecte vos options de Propriétaire.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Send" xml:space="preserve">
|
<data name="Send" xml:space="preserve">
|
||||||
<value>Send</value>
|
<value>Send</value>
|
||||||
@@ -1968,7 +1968,7 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="DisableSend" xml:space="preserve">
|
<data name="DisableSend" xml:space="preserve">
|
||||||
<value>Désactiver cet envoi pour que personne ne puisse y accéder.</value>
|
<value>Désactiver ce Send pour que personne ne puisse y accéder</value>
|
||||||
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoSends" xml:space="preserve">
|
<data name="NoSends" xml:space="preserve">
|
||||||
@@ -1998,7 +1998,7 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AddSend" xml:space="preserve">
|
<data name="AddSend" xml:space="preserve">
|
||||||
<value>Ajouter un Send</value>
|
<value>Nouveau Send</value>
|
||||||
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AreYouSureDeleteSend" xml:space="preserve">
|
<data name="AreYouSureDeleteSend" xml:space="preserve">
|
||||||
@@ -2006,7 +2006,7 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="SendDeleted" xml:space="preserve">
|
<data name="SendDeleted" xml:space="preserve">
|
||||||
<value>Le Send a été supprimé.</value>
|
<value>Send supprimé</value>
|
||||||
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="SendUpdated" xml:space="preserve">
|
<data name="SendUpdated" xml:space="preserve">
|
||||||
@@ -2014,7 +2014,7 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="NewSendCreated" xml:space="preserve">
|
<data name="NewSendCreated" xml:space="preserve">
|
||||||
<value>Nouveau Send créé.</value>
|
<value>Send créé</value>
|
||||||
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="OneDay" xml:space="preserve">
|
<data name="OneDay" xml:space="preserve">
|
||||||
@@ -2036,7 +2036,7 @@ La numérisation se fera automatiquement.</value>
|
|||||||
<value>Personnalisé</value>
|
<value>Personnalisé</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareOnSave" xml:space="preserve">
|
<data name="ShareOnSave" xml:space="preserve">
|
||||||
<value>Partager ce Send lors de l'enregistrement.</value>
|
<value>Partagez ce Send au moment de l'enregistrement</value>
|
||||||
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
<comment>'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="SendDisabledWarning" xml:space="preserve">
|
<data name="SendDisabledWarning" xml:space="preserve">
|
||||||
@@ -2355,7 +2355,7 @@ sélectionnez Ajouter TOTP pour stocker la clé en toute sécurité</value>
|
|||||||
<value>Approuver les demandes de connexion</value>
|
<value>Approuver les demandes de connexion</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices" xml:space="preserve">
|
<data name="UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices" xml:space="preserve">
|
||||||
<value>Utiliser cet appareil pour approuver les demandes de connexion faites à partir d'autres appareils.</value>
|
<value>Utiliser cet appareil pour approuver les demandes de connexion faites à partir d'autres appareils</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AllowNotifications" xml:space="preserve">
|
<data name="AllowNotifications" xml:space="preserve">
|
||||||
<value>Autoriser les notifications</value>
|
<value>Autoriser les notifications</value>
|
||||||
@@ -2425,6 +2425,10 @@ sélectionnez Ajouter TOTP pour stocker la clé en toute sécurité</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Jeton d'accès API</value>
|
<value>Jeton d'accès API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2542,7 +2546,7 @@ Voulez-vous basculer vers ce compte ?</value>
|
|||||||
<value>La langue a été changée en {0}. Veuillez redémarrer l'application pour voir le changement</value>
|
<value>La langue a été changée en {0}. Veuillez redémarrer l'application pour voir le changement</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LanguageChangeRequiresAppRestart" xml:space="preserve">
|
<data name="LanguageChangeRequiresAppRestart" xml:space="preserve">
|
||||||
<value>Le changement de langue nécessite le redémarrage de l'application</value>
|
<value>Le changement de la langue nécessite le redémarrage de l'application.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultSystem" xml:space="preserve">
|
<data name="DefaultSystem" xml:space="preserve">
|
||||||
<value>Par défaut (système)</value>
|
<value>Par défaut (système)</value>
|
||||||
@@ -2691,9 +2695,6 @@ Voulez-vous basculer vers ce compte ?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Délai d'expiration du coffre a été changé pour se déconnecter</value>
|
<value>Délai d'expiration du coffre a été changé pour se déconnecter</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Cet élément ne peut pas être déplacé vers l'organisation, car celle-ci dispose déjà d'un élément avec la même clé d'accès.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Bloquer la saisie automatique</value>
|
<value>Bloquer la saisie automatique</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2780,7 +2781,7 @@ Voulez-vous basculer vers ce compte ?</value>
|
|||||||
<value>Action après délai d'expiration de la session</value>
|
<value>Action après délai d'expiration de la session</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountFingerprintPhrase" xml:space="preserve">
|
<data name="AccountFingerprintPhrase" xml:space="preserve">
|
||||||
<value>La phrase d'empreinte du compte</value>
|
<value>Phrase d'empreinte du compte</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>
|
<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>
|
||||||
<data name="OneHourAndOneMinute" xml:space="preserve">
|
<data name="OneHourAndOneMinute" xml:space="preserve">
|
||||||
@@ -2861,4 +2862,13 @@ Voulez-vous basculer vers ce compte ?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Compte déconnecté.</value>
|
<value>Compte déconnecté.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Les autorisations de votre organisation ont été mises à jour, vous obligeant à définir un mot de passe principal.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Votre organisation vous demande de définir un mot de passe principal.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Configurez une méthode de déverrouillage pour modifier l'action après délai d'expiration de votre coffre.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2427,6 +2427,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2693,9 +2697,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2863,4 +2864,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7823
src/App/Resources/AppResources.hi.Designer.cs
generated
7823
src/App/Resources/AppResources.hi.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -121,14 +121,14 @@
|
|||||||
<value>हमारे बारे में</value>
|
<value>हमारे बारे में</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Add" xml:space="preserve">
|
<data name="Add" xml:space="preserve">
|
||||||
<value>जोड़ें</value>
|
<value>बनाएं</value>
|
||||||
<comment>Add/create a new entity (verb).</comment>
|
<comment>Add/create a new entity (verb).</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AddFolder" xml:space="preserve">
|
<data name="AddFolder" xml:space="preserve">
|
||||||
<value>फोल्डर जोड़ें</value>
|
<value>फोल्डर बनाएं</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AddItem" xml:space="preserve">
|
<data name="AddItem" xml:space="preserve">
|
||||||
<value>चीज़ जोड़ें</value>
|
<value>आइटम बनाएं</value>
|
||||||
<comment>The title for the add item page.</comment>
|
<comment>The title for the add item page.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AnErrorHasOccurred" xml:space="preserve">
|
<data name="AnErrorHasOccurred" xml:space="preserve">
|
||||||
@@ -144,7 +144,7 @@
|
|||||||
<comment>App name. Shouldn't ever change.</comment>
|
<comment>App name. Shouldn't ever change.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Cancel" xml:space="preserve">
|
<data name="Cancel" xml:space="preserve">
|
||||||
<value>रद्द करें</value>
|
<value>कैंसिल करें</value>
|
||||||
<comment>Cancel an operation.</comment>
|
<comment>Cancel an operation.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Copy" xml:space="preserve">
|
<data name="Copy" xml:space="preserve">
|
||||||
@@ -156,7 +156,7 @@
|
|||||||
<comment>The button text that allows a user to copy the login's password to their clipboard.</comment>
|
<comment>The button text that allows a user to copy the login's password to their clipboard.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyUsername" xml:space="preserve">
|
<data name="CopyUsername" xml:space="preserve">
|
||||||
<value>यूज़रनाम कॉपी करें</value>
|
<value>यूज़रनेम कॉपी करें</value>
|
||||||
<comment>The button text that allows a user to copy the login's username to their clipboard.</comment>
|
<comment>The button text that allows a user to copy the login's username to their clipboard.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Credits" xml:space="preserve">
|
<data name="Credits" xml:space="preserve">
|
||||||
@@ -164,22 +164,22 @@
|
|||||||
<comment>Title for page that we use to give credit to resources that we use.</comment>
|
<comment>Title for page that we use to give credit to resources that we use.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Delete" xml:space="preserve">
|
<data name="Delete" xml:space="preserve">
|
||||||
<value>मिटाएं</value>
|
<value>हटाएं</value>
|
||||||
<comment>Delete an entity (verb).</comment>
|
<comment>Delete an entity (verb).</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Deleting" xml:space="preserve">
|
<data name="Deleting" xml:space="preserve">
|
||||||
<value>मिटा रहे है...</value>
|
<value>हटा रहे है...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="DoYouReallyWantToDelete" xml:space="preserve">
|
<data name="DoYouReallyWantToDelete" xml:space="preserve">
|
||||||
<value>पक्का मिटाएं? इसे अंडू नहीं किया जा सकता।</value>
|
<value>पक्का हटाएं? इसे अंडू नहीं किया जा सकता।</value>
|
||||||
<comment>Confirmation alert message when deleteing something.</comment>
|
<comment>Confirmation alert message when deleteing something.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Edit" xml:space="preserve">
|
<data name="Edit" xml:space="preserve">
|
||||||
<value>बदलाव करें</value>
|
<value>बदलें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EditFolder" xml:space="preserve">
|
<data name="EditFolder" xml:space="preserve">
|
||||||
<value>फोल्डर बदलाव करें</value>
|
<value>फोल्डर बदलें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Email" xml:space="preserve">
|
<data name="Email" xml:space="preserve">
|
||||||
<value>ईमेल</value>
|
<value>ईमेल</value>
|
||||||
@@ -206,10 +206,10 @@
|
|||||||
<value>बग रिपोर्ट भेजें</value>
|
<value>बग रिपोर्ट भेजें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FileBugReportDescription" xml:space="preserve">
|
<data name="FileBugReportDescription" xml:space="preserve">
|
||||||
<value>हमारे गिटहब रिपॉज़िटरी में समस्या बताएं।</value>
|
<value>हमारे गिटहब रिपॉज़िटरी में दिक्कत बताएं।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FingerprintDirection" xml:space="preserve">
|
<data name="FingerprintDirection" xml:space="preserve">
|
||||||
<value>फिंगरप्रिंट से सत्यापन करें।</value>
|
<value>फिंगरप्रिंट से खोलें।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Folder" xml:space="preserve">
|
<data name="Folder" xml:space="preserve">
|
||||||
<value>फोल्डर</value>
|
<value>फोल्डर</value>
|
||||||
@@ -219,7 +219,7 @@
|
|||||||
<value>नया फोल्डर बनाया गया।</value>
|
<value>नया फोल्डर बनाया गया।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FolderDeleted" xml:space="preserve">
|
<data name="FolderDeleted" xml:space="preserve">
|
||||||
<value>फोल्डर मिटाया गया।</value>
|
<value>फोल्डर हटाया गया।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FolderNone" xml:space="preserve">
|
<data name="FolderNone" xml:space="preserve">
|
||||||
<value>कोई फोल्डर नहीं है</value>
|
<value>कोई फोल्डर नहीं है</value>
|
||||||
@@ -243,7 +243,7 @@
|
|||||||
<comment>Hide a secret value that is currently shown (password).</comment>
|
<comment>Hide a secret value that is currently shown (password).</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="InternetConnectionRequiredMessage" xml:space="preserve">
|
<data name="InternetConnectionRequiredMessage" xml:space="preserve">
|
||||||
<value>जारी रखने से पहले इंटरनेट से जुड़ें।</value>
|
<value>आगे बढ़ने से पहले इंटरनेट से कनेक्ट करें।</value>
|
||||||
<comment>Description message for the alert when internet connection is required to continue.</comment>
|
<comment>Description message for the alert when internet connection is required to continue.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="InternetConnectionRequiredTitle" xml:space="preserve">
|
<data name="InternetConnectionRequiredTitle" xml:space="preserve">
|
||||||
@@ -251,7 +251,7 @@
|
|||||||
<comment>Title for the alert when internet connection is required to continue.</comment>
|
<comment>Title for the alert when internet connection is required to continue.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="InvalidMasterPassword" xml:space="preserve">
|
<data name="InvalidMasterPassword" xml:space="preserve">
|
||||||
<value>मुख्य पासवर्ड गलत है। वापस कोशिश करें।</value>
|
<value>मास्टर पासवर्ड गलत है। वापस कोशिश करें।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="InvalidPIN" xml:space="preserve">
|
<data name="InvalidPIN" xml:space="preserve">
|
||||||
<value>पिन गलत है। वापस कोशिश करें।</value>
|
<value>पिन गलत है। वापस कोशिश करें।</value>
|
||||||
@@ -265,7 +265,7 @@
|
|||||||
<comment>The login button text (verb).</comment>
|
<comment>The login button text (verb).</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LogInNoun" xml:space="preserve">
|
<data name="LogInNoun" xml:space="preserve">
|
||||||
<value>लॉगइन करें</value>
|
<value>लॉगइन</value>
|
||||||
<comment>Title for login page. (noun)</comment>
|
<comment>Title for login page. (noun)</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LogOut" xml:space="preserve">
|
<data name="LogOut" xml:space="preserve">
|
||||||
@@ -276,19 +276,19 @@
|
|||||||
<value>पक्का लॉगआउट करें?</value>
|
<value>पक्का लॉगआउट करें?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RemoveAccount" xml:space="preserve">
|
<data name="RemoveAccount" xml:space="preserve">
|
||||||
<value>खाता हटाएं</value>
|
<value>अकाउंट हटाएं</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RemoveAccountConfirmation" xml:space="preserve">
|
<data name="RemoveAccountConfirmation" xml:space="preserve">
|
||||||
<value>पक्का खाता हटाएं?</value>
|
<value>अकाउंट पक्का हटाएं?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountAlreadyAdded" xml:space="preserve">
|
<data name="AccountAlreadyAdded" xml:space="preserve">
|
||||||
<value>खाता पहले से जोड़ा गया</value>
|
<value>अकाउंट पहले से है</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SwitchToAlreadyAddedAccountConfirmation" xml:space="preserve">
|
<data name="SwitchToAlreadyAddedAccountConfirmation" xml:space="preserve">
|
||||||
<value>खाता अभी इस्तेमाल करें?</value>
|
<value>अकाउंट अभी इस्तेमाल करें?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPassword" xml:space="preserve">
|
<data name="MasterPassword" xml:space="preserve">
|
||||||
<value>मुख्य पासवर्ड</value>
|
<value>मास्टर पासवर्ड</value>
|
||||||
<comment>Label for a master password.</comment>
|
<comment>Label for a master password.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="More" xml:space="preserve">
|
<data name="More" xml:space="preserve">
|
||||||
@@ -296,11 +296,11 @@
|
|||||||
<comment>Text to define that there are more options things to see.</comment>
|
<comment>Text to define that there are more options things to see.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="MyVault" xml:space="preserve">
|
<data name="MyVault" xml:space="preserve">
|
||||||
<value>मेरा तिजोरी</value>
|
<value>मेरी तिजोरी</value>
|
||||||
<comment>The title for the vault page.</comment>
|
<comment>The title for the vault page.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Authenticator" xml:space="preserve">
|
<data name="Authenticator" xml:space="preserve">
|
||||||
<value>सत्यापन करनेवाला</value>
|
<value>ऑथेंटिकेटर</value>
|
||||||
<comment>Authenticator TOTP feature</comment>
|
<comment>Authenticator TOTP feature</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Name" xml:space="preserve">
|
<data name="Name" xml:space="preserve">
|
||||||
@@ -327,7 +327,7 @@
|
|||||||
<comment>Button text for a save operation (verb).</comment>
|
<comment>Button text for a save operation (verb).</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Move" xml:space="preserve">
|
<data name="Move" xml:space="preserve">
|
||||||
<value>ले जाएं</value>
|
<value>ट्रांस्फर करें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>सेव कर रहे है...</value>
|
<value>सेव कर रहे है...</value>
|
||||||
@@ -342,21 +342,21 @@
|
|||||||
<comment>Reveal a hidden value (password).</comment>
|
<comment>Reveal a hidden value (password).</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ItemDeleted" xml:space="preserve">
|
<data name="ItemDeleted" xml:space="preserve">
|
||||||
<value>चीज़ मिटाया गया।</value>
|
<value>आइटम हटाया गया</value>
|
||||||
<comment>Confirmation message after successfully deleting a login.</comment>
|
<comment>Confirmation message after successfully deleting a login.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Submit" xml:space="preserve">
|
<data name="Submit" xml:space="preserve">
|
||||||
<value>जमा करें</value>
|
<value>भेजें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Sync" xml:space="preserve">
|
<data name="Sync" xml:space="preserve">
|
||||||
<value>सिंक</value>
|
<value>सिंक</value>
|
||||||
<comment>The title for the sync page.</comment>
|
<comment>The title for the sync page.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThankYou" xml:space="preserve">
|
<data name="ThankYou" xml:space="preserve">
|
||||||
<value>शुक्रिया</value>
|
<value>थैंक यू</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Tools" xml:space="preserve">
|
<data name="Tools" xml:space="preserve">
|
||||||
<value>औज़ार</value>
|
<value>टूल्स</value>
|
||||||
<comment>The title for the tools page.</comment>
|
<comment>The title for the tools page.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="URI" xml:space="preserve">
|
<data name="URI" xml:space="preserve">
|
||||||
@@ -367,11 +367,11 @@
|
|||||||
<value>फिंगरप्रिंट से खोलें</value>
|
<value>फिंगरप्रिंट से खोलें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Username" xml:space="preserve">
|
<data name="Username" xml:space="preserve">
|
||||||
<value>यूज़रनाम</value>
|
<value>यूज़रनेम</value>
|
||||||
<comment>Label for a username.</comment>
|
<comment>Label for a username.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ValidationFieldRequired" xml:space="preserve">
|
<data name="ValidationFieldRequired" xml:space="preserve">
|
||||||
<value>{0} फील्ड चाहिए।</value>
|
<value>{0} चाहिए।</value>
|
||||||
<comment>Validation message for when a form field is left blank and is required to be entered.</comment>
|
<comment>Validation message for when a form field is left blank and is required to be entered.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ValueHasBeenCopied" xml:space="preserve">
|
<data name="ValueHasBeenCopied" xml:space="preserve">
|
||||||
@@ -379,13 +379,13 @@
|
|||||||
<comment>Confirmation message after successfully copying a value to the clipboard.</comment>
|
<comment>Confirmation message after successfully copying a value to the clipboard.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerifyFingerprint" xml:space="preserve">
|
<data name="VerifyFingerprint" xml:space="preserve">
|
||||||
<value>फिंगरप्रिंट सत्यापित करें</value>
|
<value>फिंगरप्रिंट दें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerifyMasterPassword" xml:space="preserve">
|
<data name="VerifyMasterPassword" xml:space="preserve">
|
||||||
<value>मुख्य पासवर्ड सत्यापित करें</value>
|
<value>मास्टर पासवर्ड दें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerifyPIN" xml:space="preserve">
|
<data name="VerifyPIN" xml:space="preserve">
|
||||||
<value>पिन सत्यापित करें।</value>
|
<value>पिन दें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Version" xml:space="preserve">
|
<data name="Version" xml:space="preserve">
|
||||||
<value>संस्करण</value>
|
<value>संस्करण</value>
|
||||||
@@ -404,40 +404,40 @@
|
|||||||
<value>हां</value>
|
<value>हां</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Account" xml:space="preserve">
|
<data name="Account" xml:space="preserve">
|
||||||
<value>खाता</value>
|
<value>अकाउंट</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountCreated" xml:space="preserve">
|
<data name="AccountCreated" xml:space="preserve">
|
||||||
<value>आपका नया खाता बनाया गया! अब लॉगइन कर सकते हैं।</value>
|
<value>आपका नया अकाउंट बनाया गया! अब लॉगइन कर सकते हैं।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AddAnItem" xml:space="preserve">
|
<data name="AddAnItem" xml:space="preserve">
|
||||||
<value>चीज़ जोड़ें</value>
|
<value>आइटम बनाएं</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AppExtension" xml:space="preserve">
|
<data name="AppExtension" xml:space="preserve">
|
||||||
<value>ऐप एक्सटेंशन</value>
|
<value>ऐप एक्सटेंशन</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillAccessibilityDescription" xml:space="preserve">
|
<data name="AutofillAccessibilityDescription" xml:space="preserve">
|
||||||
<value>दूसरे ऐप और वेबसाइट पर अपनेआप लॉगइन भरने के लिए बिटवार्डन सुलभता सेवा इस्तेमाल करें।</value>
|
<value>दूसरे ऐप और वेबसाइट पर अपनेआप लॉगइन करने के लिए बिटवार्डन एक्सेसिबिलिटी सर्विस इस्तेमाल करें।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillService" xml:space="preserve">
|
<data name="AutofillService" xml:space="preserve">
|
||||||
<value>अपनेआप-भर सेवा</value>
|
<value>ऑटो-फिल सर्विस</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AvoidAmbiguousCharacters" xml:space="preserve">
|
<data name="AvoidAmbiguousCharacters" xml:space="preserve">
|
||||||
<value>अस्पष्ट अक्षर से बचें</value>
|
<value>कई मतलबवाले अक्षर ना इस्तेमाल करें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAppExtension" xml:space="preserve">
|
<data name="BitwardenAppExtension" xml:space="preserve">
|
||||||
<value>बिटवार्डन ऐप एक्सटेंशन</value>
|
<value>बिटवार्डन ऐप एक्सटेंशन</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAppExtensionAlert2" xml:space="preserve">
|
<data name="BitwardenAppExtensionAlert2" xml:space="preserve">
|
||||||
<value>बिटवार्डन ऐप एक्सटेंशन तिजोरी में नए चीज़ डालने का सबसे आसात तरीका है। बिटवार्डन ऐप एक्सटेंशन के इस्तेमाल से जुड़ी जानकारी लेने के लिए "सेटिंग" में जाएं।</value>
|
<value>बिटवार्डन ऐप एक्सटेंशन तिजोरी में नए आइटम डालने का सबसे आसात तरीका है। बिटवार्डन ऐप एक्सटेंशन के इस्तेमाल से जुड़ी जानकारी लेने के लिए "सेटिंग" में जाएं।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAppExtensionDescription" xml:space="preserve">
|
<data name="BitwardenAppExtensionDescription" xml:space="preserve">
|
||||||
<value>सफारी और दूसरे ऐप में अपने लॉगइन अपनेआप भरने के लिए बिटवार्डन इस्तेमाल करें।</value>
|
<value>सफारी और दूसरे ऐप में अपनेआप लॉगइन करने के लिए बिटवार्डन इस्तेमाल करें।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillService" xml:space="preserve">
|
<data name="BitwardenAutofillService" xml:space="preserve">
|
||||||
<value>बिटवार्डन अपनेआप-भर सेवा</value>
|
<value>बिटवार्डन ऑटो-फिल सर्विस</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillAccessibilityServiceDescription" xml:space="preserve">
|
<data name="BitwardenAutofillAccessibilityServiceDescription" xml:space="preserve">
|
||||||
<value>अपने लॉगइन अपनेआप भरने के लिए बिटवार्डन सुलभता सेवा इस्तेमाल करें।</value>
|
<value>अपनेआप लॉगइन करने के लिए बिटवार्डन एक्सेसिबिलिटी सर्विस इस्तेमाल करें।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ChangeEmail" xml:space="preserve">
|
<data name="ChangeEmail" xml:space="preserve">
|
||||||
<value>ईमेल बदलें</value>
|
<value>ईमेल बदलें</value>
|
||||||
@@ -446,41 +446,41 @@
|
|||||||
<value>Bitwarden.com वेब तिजोरी पर ईमेल पता बदला जा सकता है। इस वेबसाइट पर अभी जाएं?</value>
|
<value>Bitwarden.com वेब तिजोरी पर ईमेल पता बदला जा सकता है। इस वेबसाइट पर अभी जाएं?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ChangeMasterPassword" xml:space="preserve">
|
<data name="ChangeMasterPassword" xml:space="preserve">
|
||||||
<value>मुख्य पासवर्ड बदलें</value>
|
<value>मास्टर पासवर्ड बदलें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Close" xml:space="preserve">
|
<data name="Close" xml:space="preserve">
|
||||||
<value>बंद करें</value>
|
<value>बंद करें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Continue" xml:space="preserve">
|
<data name="Continue" xml:space="preserve">
|
||||||
<value>जारी रखें</value>
|
<value>आगे बढ़ें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CreateAccount" xml:space="preserve">
|
<data name="CreateAccount" xml:space="preserve">
|
||||||
<value>खाता बनाएं</value>
|
<value>अकाउंट बनाएं</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CreatingAccount" xml:space="preserve">
|
<data name="CreatingAccount" xml:space="preserve">
|
||||||
<value>खाता बना रहे है...</value>
|
<value>अकाउंट बना रहे है...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="EditItem" xml:space="preserve">
|
<data name="EditItem" xml:space="preserve">
|
||||||
<value>चीज़ बदलाव करें</value>
|
<value>आइटम बदलें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnableAutomaticSyncing" xml:space="preserve">
|
<data name="EnableAutomaticSyncing" xml:space="preserve">
|
||||||
<value>अपनेआप-सिंक की अनुमति दें</value>
|
<value>ऑटो-सिंक ऑन करें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnterEmailForHint" xml:space="preserve">
|
<data name="EnterEmailForHint" xml:space="preserve">
|
||||||
<value>मुख्य पासवर्ड इशारा लेने के लिए अपने खाते का ईमेल पता डालें।</value>
|
<value>मास्टर पासवर्ड हिंट लेने के लिए अपने अकाउंट का ईमेल पता डालें।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExntesionReenable" xml:space="preserve">
|
<data name="ExntesionReenable" xml:space="preserve">
|
||||||
<value>ऐप एक्सटेंशन वापस चालू करें</value>
|
<value>ऐप एक्सटेंशन वापस ऑन करें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionAlmostDone" xml:space="preserve">
|
<data name="ExtensionAlmostDone" xml:space="preserve">
|
||||||
<value>करीब-करीब खत्म!</value>
|
<value>खत्म होने ही वाला है!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionEnable" xml:space="preserve">
|
<data name="ExtensionEnable" xml:space="preserve">
|
||||||
<value>ऐप एक्सटेंशन चालू करें</value>
|
<value>ऐप एक्सटेंशन ऑन करें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionInSafari" xml:space="preserve">
|
<data name="ExtensionInSafari" xml:space="preserve">
|
||||||
<value>सफारी में, शेयर आइकन से बिटवार्डन का पता लगाएं (इशारा: मेन्यू के सबसे निचले पट्टी पर दाएं तरफ जाएं)।</value>
|
<value>सफारी में, शेयर आइकन से बिटवार्डन को ढूंढें (हिंट: मेन्यू के सबसे निचले पट्टी पर राइट में जाएं)।</value>
|
||||||
<comment>Safari is the name of apple's web browser</comment>
|
<comment>Safari is the name of apple's web browser</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionInstantAccess" xml:space="preserve">
|
<data name="ExtensionInstantAccess" xml:space="preserve">
|
||||||
@@ -490,16 +490,16 @@
|
|||||||
<value>आप लॉगइन करने के लिए तैयार हैं!</value>
|
<value>आप लॉगइन करने के लिए तैयार हैं!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionSetup" xml:space="preserve">
|
<data name="ExtensionSetup" xml:space="preserve">
|
||||||
<value>अब सफारी, क्रोम, और दूसरे सपोर्ट किए गए ऐप से लॉगइन आसानी से एक्सेस किए जा सकते है।</value>
|
<value>अब सफारी, क्रोम, और दूसरे सपोर्ट किए गए ऐप से सारे लॉगइन आसानी से एक्सेस किए जा सकते है।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionSetup2" xml:space="preserve">
|
<data name="ExtensionSetup2" xml:space="preserve">
|
||||||
<value>सफारी और क्रोम में, शेयर आइकन से बिटवार्डन का पता लगाएं (इशारा: मेन्यू के सबसे निचले पट्टी पर दाएं तरफ जाएं)</value>
|
<value>सफारी और क्रोम में, शेयर आइकन से बिटवार्डन को ढूंढें (हिंट: शेयर मेन्यू के सबसे निचले पट्टी पर राइट में जाएं)।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionTapIcon" xml:space="preserve">
|
<data name="ExtensionTapIcon" xml:space="preserve">
|
||||||
<value>एक्सटेंशन खोलने के लिए मेन्यू में बिटवार्डन आइकन पर दबाएं।</value>
|
<value>एक्सटेंशन खोलने के लिए मेन्यू में बिटवार्डन आइकन पर दबाएं।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionTurnOn" xml:space="preserve">
|
<data name="ExtensionTurnOn" xml:space="preserve">
|
||||||
<value>सफारी और दूसरे ऐप में बिटवार्डन चालू करने के लिए, मेन्यू के सबसे निचले पट्टी में "ज़्यादा" आइकन दबाएं।</value>
|
<value>सफारी और दूसरे ऐप में बिटवार्डन ऑन करने के लिए, मेन्यू के सबसे निचले पट्टी में "ज़्यादा" आइकन दबाएं।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Favorite" xml:space="preserve">
|
<data name="Favorite" xml:space="preserve">
|
||||||
<value>मनपसंद</value>
|
<value>मनपसंद</value>
|
||||||
@@ -511,16 +511,16 @@
|
|||||||
<value>पासवर्ड बनाएं</value>
|
<value>पासवर्ड बनाएं</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GetPasswordHint" xml:space="preserve">
|
<data name="GetPasswordHint" xml:space="preserve">
|
||||||
<value>मुख्य पासवर्ड इशारा लें</value>
|
<value>अपना मास्टम पासवर्ड हिंट लें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ImportItems" xml:space="preserve">
|
<data name="ImportItems" xml:space="preserve">
|
||||||
<value>चीज़ आयात करें</value>
|
<value>आइटम इंपोर्ट करें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ImportItemsConfirmation" xml:space="preserve">
|
<data name="ImportItemsConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden.com वेब तिजोरी से थोक में चीज़ आयात किए जा सकते हैं। वेबसाइट पर अभी जाएं?</value>
|
<value>Bitwarden.com वेब तिजोरी से थोक में आइटम इंपोर्ट किए जा सकते हैं। वेबसाइट पर अभी जाएं?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ImportItemsDescription" xml:space="preserve">
|
<data name="ImportItemsDescription" xml:space="preserve">
|
||||||
<value>दूसरे पासवर्ड मैनेजमेंट ऐप से थोक में चीज़ जल्दी आयात करें।</value>
|
<value>दूसरे पासवर्ड मैनेजमेंट ऐप से अपने आइटम जल्दी इंपोर्ट करें।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LastSync" xml:space="preserve">
|
<data name="LastSync" xml:space="preserve">
|
||||||
<value>आखिरी सिंक:</value>
|
<value>आखिरी सिंक:</value>
|
||||||
@@ -529,7 +529,7 @@
|
|||||||
<value>लंबाई</value>
|
<value>लंबाई</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Lock" xml:space="preserve">
|
<data name="Lock" xml:space="preserve">
|
||||||
<value>लॉक</value>
|
<value>लॉक करें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FifteenMinutes" xml:space="preserve">
|
<data name="FifteenMinutes" xml:space="preserve">
|
||||||
<value>15 मिनट</value>
|
<value>15 मिनट</value>
|
||||||
@@ -547,20 +547,20 @@
|
|||||||
<value>तुरंत</value>
|
<value>तुरंत</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VaultTimeout" xml:space="preserve">
|
<data name="VaultTimeout" xml:space="preserve">
|
||||||
<value>तिजोरी वक्त खत्म</value>
|
<value>तिजोरी टाइमआउट</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VaultTimeoutAction" xml:space="preserve">
|
<data name="VaultTimeoutAction" xml:space="preserve">
|
||||||
<value>तिजोरी वक्त खत्म</value>
|
<value>तिजोरी टाइमआउट एक्शन</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VaultTimeoutLogOutConfirmation" xml:space="preserve">
|
<data name="VaultTimeoutLogOutConfirmation" xml:space="preserve">
|
||||||
<value>लॉगआउट करने के बाद तिजोरी में जाना मुमकिन नहीं होगा और वक्त खत्म होने के बाद ऑनलाइन सत्यापन की ज़रूरत होगी। इस सेटिंग को पक्का इस्तेमाल करें?</value>
|
<value>लॉगआउट करने के बाद तिजोरी में जाना मुमकिन नहीं होगा और टाइमआउट के बाद ऑनलाइन ऑथेंटिकेशन की ज़रूरत होगी। इस सेटिंग का इस्तेमाल करें?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoggingIn" xml:space="preserve">
|
<data name="LoggingIn" xml:space="preserve">
|
||||||
<value>लॉगइन कर रहे है...</value>
|
<value>लॉगइन कर रहे है...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoginOrCreateNewAccount" xml:space="preserve">
|
<data name="LoginOrCreateNewAccount" xml:space="preserve">
|
||||||
<value>अपनी महफूज़ तिजोरी एक्सेस करने के लिए नया खाता बनाएं या लॉगइन करें।</value>
|
<value>अपनी महफूज़ तिजोरी एक्सेस करने के लिए नया अकाउंट बनाएं या लॉगइन करें।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Manage" xml:space="preserve">
|
<data name="Manage" xml:space="preserve">
|
||||||
<value>मैनेज करें</value>
|
<value>मैनेज करें</value>
|
||||||
@@ -569,116 +569,116 @@
|
|||||||
<value>पासवर्ड गलत है।</value>
|
<value>पासवर्ड गलत है।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordDescription" xml:space="preserve">
|
<data name="MasterPasswordDescription" xml:space="preserve">
|
||||||
<value>मुख्य पासवर्ड वो पासवर्ड है जो तिजोरी एक्सेस करने के लिए इस्तेमाल होता है। मुख्य पासवर्ड ना भूलना बहुत ज़रूरी है। भूलने के बाद पासवर्ड वापस पाना मुमकिन नहीं होगा।</value>
|
<value>मास्टर पासवर्ड वो पासवर्ड है जो तिजोरी एक्सेस करने के लिए इस्तेमाल होता है। मास्टर पासवर्ड ना भूलना बहुत ज़रूरी है। भूलने के बाद पासवर्ड वापस पाना मुमकिन नहीं है।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordHint" xml:space="preserve">
|
<data name="MasterPasswordHint" xml:space="preserve">
|
||||||
<value>मुख्य पासवर्ड इशारा (ज़रूरी नहीं)</value>
|
<value>मास्टर पासवर्ड हिंट (ज़रूरी नहीं)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordHintDescription" xml:space="preserve">
|
<data name="MasterPasswordHintDescription" xml:space="preserve">
|
||||||
<value>मुख्य पासवर्ड इशारा आपको पासवर्ड भूल जाने के स्थिति में उसको याद करने में मदद करता है।</value>
|
<value>मास्टर पासवर्ड हिंट पासवर्ड भूल जाने के हालत में उसको याद करने में मदद करता है।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordLengthValMessageX" xml:space="preserve">
|
<data name="MasterPasswordLengthValMessageX" xml:space="preserve">
|
||||||
<value>मुख्य पासवर्ड कम-से-कम {0} अक्षर लंबा होना चाहिए।</value>
|
<value>मास्टर पासवर्ड कम-से-कम {0} अक्षर लंबा होना चाहिए।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MinNumbers" xml:space="preserve">
|
<data name="MinNumbers" xml:space="preserve">
|
||||||
<value>कम-से-कम अंक</value>
|
<value>कम-से-कम इतने नंबर</value>
|
||||||
<comment>Minimum numeric characters for password generator settings</comment>
|
<comment>Minimum numeric characters for password generator settings</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="MinSpecial" xml:space="preserve">
|
<data name="MinSpecial" xml:space="preserve">
|
||||||
<value>कम-से-कम खास अक्षर</value>
|
<value>कम-से-कम इतने खास</value>
|
||||||
<comment>Minimum special characters for password generator settings</comment>
|
<comment>Minimum special characters for password generator settings</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="MoreSettings" xml:space="preserve">
|
<data name="MoreSettings" xml:space="preserve">
|
||||||
<value>ज़्यादा सेटिंग</value>
|
<value>ज़्यादा सेटिंग</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MustLogInMainApp" xml:space="preserve">
|
<data name="MustLogInMainApp" xml:space="preserve">
|
||||||
<value>एक्सटेशन इस्तेमाल करने से पहले मुख्य बिटवार्डन ऐप में लॉगइन करना पड़ेगा।</value>
|
<value>एक्सटेंशन इस्तेमाल करने से पहले मेन बिटवार्डन ऐप में लॉगइन करना पड़ेगा।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Never" xml:space="preserve">
|
<data name="Never" xml:space="preserve">
|
||||||
<value>कभी नहीं</value>
|
<value>कभी नहीं</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NewItemCreated" xml:space="preserve">
|
<data name="NewItemCreated" xml:space="preserve">
|
||||||
<value>नया चीज़ बनाया गया</value>
|
<value>नया आइटम बनाया गया</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoFavorites" xml:space="preserve">
|
<data name="NoFavorites" xml:space="preserve">
|
||||||
<value>तिजोरी में कोई मनपसंद चीज़ नहीं है।</value>
|
<value>तिजोरी में कोई मनपसंद आइटम नहीं है।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoItems" xml:space="preserve">
|
<data name="NoItems" xml:space="preserve">
|
||||||
<value>तिजोरी में कोई चीज़ नहीं है।</value>
|
<value>तिजोरी में कोई आइटम नहीं है।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoItemsTap" xml:space="preserve">
|
<data name="NoItemsTap" xml:space="preserve">
|
||||||
<value>इस वेबसाइट/ऐप के लिए तिजोरी में कोई चीज़ नहीं है। चीज़ जोड़ने के लिए दबाएं।</value>
|
<value>इस वेबसाइट/ऐप के लिए तिजोरी में कोई आइटम नहीं है। आइटम बनाने के लिए दबाएं।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoUsernamePasswordConfigured" xml:space="preserve">
|
<data name="NoUsernamePasswordConfigured" xml:space="preserve">
|
||||||
<value>इस लॉगइन में कोई यूजरनाम या पासवर्ड नहीं है।</value>
|
<value>इस लॉगइन में कोई यूजरनेम या पासवर्ड नहीं है।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="OkGotIt" xml:space="preserve">
|
<data name="OkGotIt" xml:space="preserve">
|
||||||
<value>ठीक है, समझ गए!</value>
|
<value>ठीक है, समझ गए!</value>
|
||||||
<comment>Confirmation, like "Ok, I understand it"</comment>
|
<comment>Confirmation, like "Ok, I understand it"</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="OptionDefaults" xml:space="preserve">
|
<data name="OptionDefaults" xml:space="preserve">
|
||||||
<value>विकल्प डिफॉल्ट मुख्य बिटवार्डन ऐप के पासवर्ड जनरेटर औज़ार से सेट होता है।</value>
|
<value>ऑप्शन के डिफॉल्ट मेन बिटवार्डन ऐप के पासवर्ड जेनरेटर टूल से सेट होते है।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Options" xml:space="preserve">
|
<data name="Options" xml:space="preserve">
|
||||||
<value>विकल्प</value>
|
<value>ऑप्शन</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Other" xml:space="preserve">
|
<data name="Other" xml:space="preserve">
|
||||||
<value>दूसरे</value>
|
<value>बाकी</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordGenerated" xml:space="preserve">
|
<data name="PasswordGenerated" xml:space="preserve">
|
||||||
<value>पासवर्ड बनाया गया</value>
|
<value>पासवर्ड बनाया गया</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordGenerator" xml:space="preserve">
|
<data name="PasswordGenerator" xml:space="preserve">
|
||||||
<value>पासवर्ड जनरेटर</value>
|
<value>पासवर्ड जेनरेटर</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordHint" xml:space="preserve">
|
<data name="PasswordHint" xml:space="preserve">
|
||||||
<value>पासवर्ड इशारा</value>
|
<value>पासवर्ड हिंट</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordHintAlert" xml:space="preserve">
|
<data name="PasswordHintAlert" xml:space="preserve">
|
||||||
<value>हमने आपको मुख्य पासवर्ड इशारा एक ईमेल के साथ भेजा है।</value>
|
<value>हमने आपको मास्टर पासवर्ड हिंट एक ईमेल में भेजा है।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordOverrideAlert" xml:space="preserve">
|
<data name="PasswordOverrideAlert" xml:space="preserve">
|
||||||
<value>चालू पासवर्ड पक्का ओवरराइट करें?</value>
|
<value>चालू पासवर्ड पक्का ओवरराइट करें?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PushNotificationAlert" xml:space="preserve">
|
<data name="PushNotificationAlert" xml:space="preserve">
|
||||||
<value>bitwarden keeps your vault automatically synced by using push notifications. For the best possible experience, please select "Ok" on the following prompt when asked to enable push notifications.</value>
|
<value>बिटवार्डन पुश नोटिफिकेशन इस्तेमाल करके आपकी तिजोरी अपनेआप सिंक करके रखता है। पुश नोटिफिकेशन की इजाज़त मांगने वाले अगले स्क्रीन पर "दें" चुनें।</value>
|
||||||
<comment>Push notifications for apple products</comment>
|
<comment>Push notifications for apple products</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="RateTheApp" xml:space="preserve">
|
<data name="RateTheApp" xml:space="preserve">
|
||||||
<value>इस एप्प का मूल्यांकन करें</value>
|
<value>ऐप को रेटिंग दें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RateTheAppDescription" xml:space="preserve">
|
<data name="RateTheAppDescription" xml:space="preserve">
|
||||||
<value>कृपया हमें एक अच्छी समीक्षा के साथ बाहर की मदद करने पर विचार करें!</value>
|
<value>एक अच्छा रिव्यू लिखकर हमारी मदद करें!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RegeneratePassword" xml:space="preserve">
|
<data name="RegeneratePassword" xml:space="preserve">
|
||||||
<value>पासवर्ड पुन: जनरेट करें</value>
|
<value>पासवर्ड वापस बनाएं</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RetypeMasterPassword" xml:space="preserve">
|
<data name="RetypeMasterPassword" xml:space="preserve">
|
||||||
<value>मास्टर पासवर्ड पुनः टाइप करें</value>
|
<value>मास्टर पासवर्ड वापस लिखें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SearchVault" xml:space="preserve">
|
<data name="SearchVault" xml:space="preserve">
|
||||||
<value>Search vault</value>
|
<value>तिजोरी सर्च करें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Security" xml:space="preserve">
|
<data name="Security" xml:space="preserve">
|
||||||
<value>सुरक्षा</value>
|
<value>सेक्योरिटी</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Select" xml:space="preserve">
|
<data name="Select" xml:space="preserve">
|
||||||
<value>चयन करें</value>
|
<value>चुनें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SetPIN" xml:space="preserve">
|
<data name="SetPIN" xml:space="preserve">
|
||||||
<value>पिन सेट करें</value>
|
<value>पिन सेट करें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SetPINDirection" xml:space="preserve">
|
<data name="SetPINDirection" xml:space="preserve">
|
||||||
<value>एप्लिकेशन को अनलॉक करने के लिए 4 अंकों का पिन कोड दर्ज करें।</value>
|
<value>ऐप खोलने के लिए एक पिन कोड डालें।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ItemInformation" xml:space="preserve">
|
<data name="ItemInformation" xml:space="preserve">
|
||||||
<value>आइटम सूचना</value>
|
<value>आइटम जानकारी</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ItemUpdated" xml:space="preserve">
|
<data name="ItemUpdated" xml:space="preserve">
|
||||||
<value>आइटम अपडेट किया गया।</value>
|
<value>आइटम सेव किया गया</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Submitting" xml:space="preserve">
|
<data name="Submitting" xml:space="preserve">
|
||||||
<value>सबमिट हो रहा हैं...</value>
|
<value>भेज रहे है...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Syncing" xml:space="preserve">
|
<data name="Syncing" xml:space="preserve">
|
||||||
@@ -686,29 +686,29 @@
|
|||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncingComplete" xml:space="preserve">
|
<data name="SyncingComplete" xml:space="preserve">
|
||||||
<value>सिंकिंग पूर्ण</value>
|
<value>सिंक हो गया</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncingFailed" xml:space="preserve">
|
<data name="SyncingFailed" xml:space="preserve">
|
||||||
<value>सिंकिंग असफल।</value>
|
<value>सिंक नहीं हुआ</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncVaultNow" xml:space="preserve">
|
<data name="SyncVaultNow" xml:space="preserve">
|
||||||
<value>तिजोरी अभी सिंक करें।</value>
|
<value>तिजोरी अभी सिंक करें।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TouchID" xml:space="preserve">
|
<data name="TouchID" xml:space="preserve">
|
||||||
<value>Touch ID</value>
|
<value>टच आईडी</value>
|
||||||
<comment>What Apple calls their fingerprint reader.</comment>
|
<comment>What Apple calls their fingerprint reader.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="TwoStepLogin" xml:space="preserve">
|
<data name="TwoStepLogin" xml:space="preserve">
|
||||||
<value>द्वि-चरणीय लॉगिन</value>
|
<value>टू-स्टेप लॉगइन</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockWith" xml:space="preserve">
|
<data name="UnlockWith" xml:space="preserve">
|
||||||
<value>{0} से अनलॉक करें</value>
|
<value>{0} से खोलें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockWithPIN" xml:space="preserve">
|
<data name="UnlockWithPIN" xml:space="preserve">
|
||||||
<value>पिन कोड के साथ अनलॉक करें</value>
|
<value>पिन कोड से खोलें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Validating" xml:space="preserve">
|
<data name="Validating" xml:space="preserve">
|
||||||
<value>सत्यापित किया जा रहा</value>
|
<value>चेक कर रहे</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerificationCode" xml:space="preserve">
|
<data name="VerificationCode" xml:space="preserve">
|
||||||
@@ -718,20 +718,20 @@
|
|||||||
<value>आइटम देखें</value>
|
<value>आइटम देखें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="WebVault" xml:space="preserve">
|
<data name="WebVault" xml:space="preserve">
|
||||||
<value>bitwarden Web Vault</value>
|
<value>बिटवार्डन वेब तिजोरी</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Lost2FAApp" xml:space="preserve">
|
<data name="Lost2FAApp" xml:space="preserve">
|
||||||
<value>प्रमाणिक एप खो गया?</value>
|
<value>ऑथेंटिकेटर ऐप गुम हो गया?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Items" xml:space="preserve">
|
<data name="Items" xml:space="preserve">
|
||||||
<value>आइटम</value>
|
<value>आइटम</value>
|
||||||
<comment>Screen title</comment>
|
<comment>Screen title</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionActivated" xml:space="preserve">
|
<data name="ExtensionActivated" xml:space="preserve">
|
||||||
<value>एक्सटेंशन सक्रिय!</value>
|
<value>एक्सटेंशन चल रहा!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Icons" xml:space="preserve">
|
<data name="Icons" xml:space="preserve">
|
||||||
<value>आइकॉन</value>
|
<value>आइकन</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Translations" xml:space="preserve">
|
<data name="Translations" xml:space="preserve">
|
||||||
<value>अनुवाद</value>
|
<value>अनुवाद</value>
|
||||||
@@ -745,37 +745,37 @@
|
|||||||
<comment>This is used for the autofill service. ex. "There are no items in your vault for twitter.com".</comment>
|
<comment>This is used for the autofill service. ex. "There are no items in your vault for twitter.com".</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceOverlay" xml:space="preserve">
|
<data name="BitwardenAutofillServiceOverlay" xml:space="preserve">
|
||||||
<value>जब आप एक इनपुट फ़ील्ड का चयन करते हैं और एक बिटवर्डेन ऑटो-फिल ओवरले देखते हैं, तो आप इसे ऑटो-फिल सेवा लॉन्च करने के लिए टैप कर सकते हैं।</value>
|
<value>इनपुट फील्ड को चुनने पर अगर एक बिटवार्डन ऑटो-फिल स्क्रीन दिखता हैं, तो उसपर टैप करके ऑटो-फिल सर्विस लॉन्च किया जा सकता है।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceNotificationContent" xml:space="preserve">
|
<data name="BitwardenAutofillServiceNotificationContent" xml:space="preserve">
|
||||||
<value>Tap this notification to auto-fill a login from your vault.</value>
|
<value>अपने तिजोरी से आइटम ऑटो-फिल करने के लिए इस नोटिफिकेशन पर टैप करें।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceOpenAccessibilitySettings" xml:space="preserve">
|
<data name="BitwardenAutofillServiceOpenAccessibilitySettings" xml:space="preserve">
|
||||||
<value>पहुँच क्षमता सेटिंग्स</value>
|
<value>एक्सेसिबिलिटी सेटिंग खोलें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceStep1" xml:space="preserve">
|
<data name="BitwardenAutofillServiceStep1" xml:space="preserve">
|
||||||
<value>1. On the Android Accessibility Settings screen, touch "bitwarden" under the Services heading.</value>
|
<value>1. एंड्रॉइड एक्सेसिबिलिटी सेटिंग में, सर्विस टाइटल के अंदर "बिटवार्डन" पर टैप करें।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceStep2" xml:space="preserve">
|
<data name="BitwardenAutofillServiceStep2" xml:space="preserve">
|
||||||
<value>2. टॉगल स्विच करें और स्वीकार करने के लिए ठीक दबाएँ।</value>
|
<value>2. स्विच ऑन करें और "ठीक है" दबाएं।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Disabled" xml:space="preserve">
|
<data name="Disabled" xml:space="preserve">
|
||||||
<value>अक्षम कर दिया गया</value>
|
|
||||||
</data>
|
|
||||||
<data name="Enabled" xml:space="preserve">
|
|
||||||
<value>सक्षम</value>
|
|
||||||
</data>
|
|
||||||
<data name="Off" xml:space="preserve">
|
|
||||||
<value>बंद</value>
|
<value>बंद</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="On" xml:space="preserve">
|
<data name="Enabled" xml:space="preserve">
|
||||||
<value>चालू</value>
|
<value>चालू</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Off" xml:space="preserve">
|
||||||
|
<value>ऑफ</value>
|
||||||
|
</data>
|
||||||
|
<data name="On" xml:space="preserve">
|
||||||
|
<value>ऑन</value>
|
||||||
|
</data>
|
||||||
<data name="Status" xml:space="preserve">
|
<data name="Status" xml:space="preserve">
|
||||||
<value>स्थिति</value>
|
<value>स्टेटस</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceAlert2" xml:space="preserve">
|
<data name="BitwardenAutofillServiceAlert2" xml:space="preserve">
|
||||||
<value>अपनी तिजोरी में नए लॉगिन जोड़ने का सबसे आसान तरीका बिटवर्डन ऑटो-फिल सर्विस है। "सेटिंग्स" स्क्रीन पर नेविगेट करके बिटवर्डेन ऑटो-फिल सेवा का उपयोग करने के बारे में अधिक जानें।</value>
|
<value>बिटवार्डन ऑटो-फिल सर्विस अपने तिजोरी में नए लॉगइन जोड़ने का सबसे आसान तरीका है। "सेटिंग" स्क्रीन पर जाकर बिटवार्डन ऑटो-फिल सर्विस के बारे में ज़्यादा जानें।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Autofill" xml:space="preserve">
|
<data name="Autofill" xml:space="preserve">
|
||||||
<value>स्वत:भरण</value>
|
<value>स्वत:भरण</value>
|
||||||
@@ -843,11 +843,11 @@
|
|||||||
<value>कोई दूसरा दो-कदम लॉगइन तरीका इस्तेमाल करें</value>
|
<value>कोई दूसरा दो-कदम लॉगइन तरीका इस्तेमाल करें</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerificationEmailNotSent" xml:space="preserve">
|
<data name="VerificationEmailNotSent" xml:space="preserve">
|
||||||
<value>Could not send verification email. Try again.</value>
|
<value>जांच के लिए मेईल भेजने में असमर्थ। फिर से प्रयास करें ।</value>
|
||||||
<comment>For 2FA</comment>
|
<comment>For 2FA</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerificationEmailSent" xml:space="preserve">
|
<data name="VerificationEmailSent" xml:space="preserve">
|
||||||
<value>Verification email sent</value>
|
<value>जांच के लिए मेईल भेजा गया है</value>
|
||||||
<comment>For 2FA</comment>
|
<comment>For 2FA</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="YubiKeyInstruction" xml:space="preserve">
|
<data name="YubiKeyInstruction" xml:space="preserve">
|
||||||
@@ -858,23 +858,23 @@
|
|||||||
<comment>"YubiKey" is the product name and should not be translated.</comment>
|
<comment>"YubiKey" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AddNewAttachment" xml:space="preserve">
|
<data name="AddNewAttachment" xml:space="preserve">
|
||||||
<value>Add new attachment</value>
|
<value>नई अटैचमेंट जोडे</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Attachments" xml:space="preserve">
|
<data name="Attachments" xml:space="preserve">
|
||||||
<value>अटॅचमेंट्स</value>
|
<value>अटॅचमेंट्स</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnableToDownloadFile" xml:space="preserve">
|
<data name="UnableToDownloadFile" xml:space="preserve">
|
||||||
<value>Unable to download file.</value>
|
<value>फाइल डाउनलोड करने में असफल</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnableToOpenFile" xml:space="preserve">
|
<data name="UnableToOpenFile" xml:space="preserve">
|
||||||
<value>Your device cannot open this type of file.</value>
|
<value>आपका उपकरण इस तरह की फाइल नहीं खोल सकता</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Downloading" xml:space="preserve">
|
<data name="Downloading" xml:space="preserve">
|
||||||
<value>डाउनलोड कर रहा है...</value>
|
<value>डाउनलोड कर रहा है...</value>
|
||||||
<comment>Message shown when downloading a file</comment>
|
<comment>Message shown when downloading a file</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AttachmentLargeWarning" xml:space="preserve">
|
<data name="AttachmentLargeWarning" xml:space="preserve">
|
||||||
<value>This attachment is {0} in size. Are you sure you want to download it onto your device?</value>
|
<value>इस अटैचमेंट की साईज {0} है. क्या आप निश्चित रूप से उसे अपने उपकरण में डाउनलोड करना चाहते हैं?</value>
|
||||||
<comment>The placeholder will show the file size of the attachment. Ex "25 MB"</comment>
|
<comment>The placeholder will show the file size of the attachment. Ex "25 MB"</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuthenticatorKey" xml:space="preserve">
|
<data name="AuthenticatorKey" xml:space="preserve">
|
||||||
@@ -891,8 +891,7 @@
|
|||||||
<value>Cannot read authenticator key.</value>
|
<value>Cannot read authenticator key.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PointYourCameraAtTheQRCode" xml:space="preserve">
|
<data name="PointYourCameraAtTheQRCode" xml:space="preserve">
|
||||||
<value>Point your camera at the QR Code.
|
<value>अपने कैमरे को QR CODE कि और रखें। स्कैन अपने आप होगा।</value>
|
||||||
Scanning will happen automatically.</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="ScanQrTitle" xml:space="preserve">
|
<data name="ScanQrTitle" xml:space="preserve">
|
||||||
<value>QR कोड को स्कैन करें</value>
|
<value>QR कोड को स्कैन करें</value>
|
||||||
@@ -913,10 +912,10 @@ Scanning will happen automatically.</value>
|
|||||||
<value>Copy TOTP automatically</value>
|
<value>Copy TOTP automatically</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PremiumRequired" xml:space="preserve">
|
<data name="PremiumRequired" xml:space="preserve">
|
||||||
<value>A premium membership is required to use this feature.</value>
|
<value>इस सुविधा का उपयोग करने के लिए प्रीमियम सदस्यता की आवश्यकता होती है।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AttachementAdded" xml:space="preserve">
|
<data name="AttachementAdded" xml:space="preserve">
|
||||||
<value>Attachment added</value>
|
<value>अटैचमेंट डालि गई।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AttachmentDeleted" xml:space="preserve">
|
<data name="AttachmentDeleted" xml:space="preserve">
|
||||||
<value>संग्लित वस्तु डिलीट करी गई</value>
|
<value>संग्लित वस्तु डिलीट करी गई</value>
|
||||||
@@ -2425,6 +2424,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>फास्टमेल</value>
|
<value>फास्टमेल</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>एपीआई एक्सेस टोकन</value>
|
<value>एपीआई एक्सेस टोकन</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2694,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2861,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7820
src/App/Resources/AppResources.hr.Designer.cs
generated
7820
src/App/Resources/AppResources.hr.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -2422,6 +2422,10 @@
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Token za API pristup</value>
|
<value>Token za API pristup</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2688,9 +2692,6 @@
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Radnja isteka trezora promijenjena je u odjavu</value>
|
<value>Radnja isteka trezora promijenjena je u odjavu</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Ova se stavka ne može dijeliti s organizacijom jer već postoji stavka s istim pristupnim ključem.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Blokiraj auto-ispunu</value>
|
<value>Blokiraj auto-ispunu</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2747,106 +2748,106 @@
|
|||||||
<value>Prijava na</value>
|
<value>Prijava na</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Vault" xml:space="preserve">
|
<data name="Vault" xml:space="preserve">
|
||||||
<value>Vault</value>
|
<value>Trezor</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Appearance" xml:space="preserve">
|
<data name="Appearance" xml:space="preserve">
|
||||||
<value>Appearance</value>
|
<value>Izgled</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountSecurity" xml:space="preserve">
|
<data name="AccountSecurity" xml:space="preserve">
|
||||||
<value>Account security</value>
|
<value>Sigurnost računa</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenHelpCenter" xml:space="preserve">
|
<data name="BitwardenHelpCenter" xml:space="preserve">
|
||||||
<value>Bitwarden Help Center</value>
|
<value>Bitwarden centar za pomoć</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContactBitwardenSupport" xml:space="preserve">
|
<data name="ContactBitwardenSupport" xml:space="preserve">
|
||||||
<value>Contact Bitwarden support</value>
|
<value>Kontaktiraj Bitwarden pomoć</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyAppInformation" xml:space="preserve">
|
<data name="CopyAppInformation" xml:space="preserve">
|
||||||
<value>Copy app information</value>
|
<value>Kopiraj podake o aplikaciji</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SyncNow" xml:space="preserve">
|
<data name="SyncNow" xml:space="preserve">
|
||||||
<value>Sync now</value>
|
<value>Sinkroniziraj</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockOptions" xml:space="preserve">
|
<data name="UnlockOptions" xml:space="preserve">
|
||||||
<value>Unlock options</value>
|
<value>Otključaj mogućnosti</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SessionTimeout" xml:space="preserve">
|
<data name="SessionTimeout" xml:space="preserve">
|
||||||
<value>Session timeout</value>
|
<value>Istek sesije</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SessionTimeoutAction" xml:space="preserve">
|
<data name="SessionTimeoutAction" xml:space="preserve">
|
||||||
<value>Session timeout action</value>
|
<value>Radnja kod isteka sesije</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccountFingerprintPhrase" xml:space="preserve">
|
<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>
|
<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>
|
||||||
<data name="OneHourAndOneMinute" xml:space="preserve">
|
<data name="OneHourAndOneMinute" xml:space="preserve">
|
||||||
<value>One hour and one minute</value>
|
<value>Jedan sat i jedna minuta</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="OneHourAndXMinute" xml:space="preserve">
|
<data name="OneHourAndXMinute" xml:space="preserve">
|
||||||
<value>One hour and {0} minutes</value>
|
<value>Jedan sat i {0} minuta</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHoursAndOneMinute" xml:space="preserve">
|
<data name="XHoursAndOneMinute" xml:space="preserve">
|
||||||
<value>{0} hours and one minute</value>
|
<value>{0} sat/i i jedna minuta</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHoursAndYMinutes" xml:space="preserve">
|
<data name="XHoursAndYMinutes" xml:space="preserve">
|
||||||
<value>{0} hours and {1} minutes</value>
|
<value>{0} sat/i {1} minuta</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="XHours" xml:space="preserve">
|
<data name="XHours" xml:space="preserve">
|
||||||
<value>{0} hours</value>
|
<value>{0} sat/i</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServicesExplanationLong" xml:space="preserve">
|
<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>
|
||||||
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
|
<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>
|
||||||
<data name="AdditionalOptions" xml:space="preserve">
|
<data name="AdditionalOptions" xml:space="preserve">
|
||||||
<value>Additional options</value>
|
<value>Dodatne mogućnosti</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToWebApp" xml:space="preserve">
|
<data name="ContinueToWebApp" xml:space="preserve">
|
||||||
<value>Continue to web app?</value>
|
<value>Nastavi na web aplikaciju?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToX" xml:space="preserve">
|
<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>
|
<comment>The parameter is an URL, like bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToHelpCenter" xml:space="preserve">
|
<data name="ContinueToHelpCenter" xml:space="preserve">
|
||||||
<value>Continue to Help center?</value>
|
<value>Nastavi u centar za pomoć?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToContactSupport" xml:space="preserve">
|
<data name="ContinueToContactSupport" xml:space="preserve">
|
||||||
<value>Continue to contact support?</value>
|
<value>Kontaktiraj podršku?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToAppStore" xml:space="preserve">
|
<data name="ContinueToAppStore" xml:space="preserve">
|
||||||
<value>Continue to app store?</value>
|
<value>Nastavi u trgovinu aplikacijama?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TwoStepLoginDescriptionLong" xml:space="preserve">
|
<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>
|
||||||
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
|
<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>
|
||||||
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
|
<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>
|
<comment>The parameter is an URL, like vault.bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
|
<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>
|
||||||
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
||||||
<value>Can’t 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>
|
||||||
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
|
<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>
|
||||||
<data name="LearnAboutOrganizationsDescriptionLong" xml:space="preserve">
|
<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>
|
||||||
<data name="RateAppDescriptionLong" xml:space="preserve">
|
<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>
|
||||||
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
||||||
<value>Choose the dark theme to use when your device’s dark mode is in use</value>
|
<value>Odaberi tamnu temu kada se tvoj uređaj nalazi u tamnom načinu rada</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CreatedXY" xml:space="preserve">
|
<data name="CreatedXY" xml:space="preserve">
|
||||||
<value>Stvoreno {0}, {1}</value>
|
<value>Stvoreno {0}, {1}</value>
|
||||||
@@ -2858,4 +2859,13 @@
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Račun odjavljen.</value>
|
<value>Račun odjavljen.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Moraš postaviti glavnu lozinku jer su dopuštenja tvoje organizacije ažurirana.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Tvoja organizacija zahtijeva da postaviš glavnu lozinku.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Za promjenu vremena isteka trezora, odredi način otključavanja.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7821
src/App/Resources/AppResources.hu.Designer.cs
generated
7821
src/App/Resources/AppResources.hu.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -2423,6 +2423,10 @@ TOTP hozzáadása a kulcs biztonságos tárolásához lehetőséget.</value>
|
|||||||
<value>FastMail</value>
|
<value>FastMail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API hozzáférési vezérjel</value>
|
<value>API hozzáférési vezérjel</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2689,9 +2693,6 @@ Szeretnénk átváltani erre a fiókra?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>A széf időkifutási művelete kijelentkezésre módosult.</value>
|
<value>A széf időkifutási művelete kijelentkezésre módosult.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Ez az elem nem osztható meg a szervezettel, mert már van egy ugyanezzel a hozzáférési kulccsal.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Automatikus kitöltés blokkolása</value>
|
<value>Automatikus kitöltés blokkolása</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2859,4 +2860,13 @@ Szeretnénk átváltani erre a fiókra?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>A fiók kijelentkezett.</value>
|
<value>A fiók kijelentkezett.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<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>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>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7822
src/App/Resources/AppResources.id.Designer.cs
generated
7822
src/App/Resources/AppResources.id.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -2424,6 +2424,10 @@ pilih Tambahkan TOTP untuk menyimpan kunci dengan aman</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,9 +2694,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2860,4 +2861,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7822
src/App/Resources/AppResources.it.Designer.cs
generated
7822
src/App/Resources/AppResources.it.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -942,10 +942,10 @@
|
|||||||
<value>La dimensione massima del file è 100 MB.</value>
|
<value>La dimensione massima del file è 100 MB.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UpdateKey" xml:space="preserve">
|
<data name="UpdateKey" xml:space="preserve">
|
||||||
<value>Non puoi utilizzare questa funzione finché non aggiorni la tua chiave di criptografia.</value>
|
<value>Non puoi utilizzare questa funzione finché non aggiorni la tua chiave di crittografia.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EncryptionKeyMigrationRequiredDescriptionLong" xml:space="preserve">
|
<data name="EncryptionKeyMigrationRequiredDescriptionLong" xml:space="preserve">
|
||||||
<value>Migrazione della chiave di criptografia obbligatoria. Accedi tramite la cassaforte web per aggiornare la tua chiave di criptografia.</value>
|
<value>Migrazione della chiave di crittografia obbligatoria. Accedi tramite la cassaforte web per aggiornare la tua chiave di crittografia.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnMore" xml:space="preserve">
|
<data name="LearnMore" xml:space="preserve">
|
||||||
<value>Ulteriori informazioni</value>
|
<value>Ulteriori informazioni</value>
|
||||||
@@ -1655,13 +1655,13 @@
|
|||||||
<value>Conferma la tua identità per continuare.</value>
|
<value>Conferma la tua identità per continuare.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVaultWarning" xml:space="preserve">
|
<data name="ExportVaultWarning" xml:space="preserve">
|
||||||
<value>Questa esportazione contiene i dati della tua cassaforte in un formato non criptato. Non salvare o inviare il file esportato attraverso canali non protetti (come le email). Eliminalo immediatamente dopo l'utilizzo.</value>
|
<value>Questa esportazione contiene i dati della tua cassaforte in un formato non crittografato. Non salvare o inviare il file esportato attraverso canali non protetti (come le email). Eliminalo immediatamente dopo l'utilizzo.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EncExportKeyWarning" xml:space="preserve">
|
<data name="EncExportKeyWarning" xml:space="preserve">
|
||||||
<value>Questa esportazione cripta i tuoi dati usando la chiave di criptografia del tuo account. Se cambi la chiave di criptografia del tuo account, non potrai più decifrare il file esportato e dovrai eseguire una nuova esportazione.</value>
|
<value>Questa esportazione crittografa i tuoi dati usando la chiave di crittografia del tuo account. Se cambi la chiave di crittografia del tuo account, non potrai più decifrare il file esportato e dovrai eseguire una nuova esportazione.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EncExportAccountWarning" xml:space="preserve">
|
<data name="EncExportAccountWarning" xml:space="preserve">
|
||||||
<value>Le chiavi di criptografia dell'account sono uniche per ogni account Bitwarden, quindi non puoi importare un file di esportazione criptato in un account diverso.</value>
|
<value>Le chiavi di crittografia dell'account sono uniche per ogni account Bitwarden, quindi non puoi importare un file di esportazione crittato in un account diverso.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVaultConfirmationTitle" xml:space="preserve">
|
<data name="ExportVaultConfirmationTitle" xml:space="preserve">
|
||||||
<value>Conferma esportazione della cassaforte</value>
|
<value>Conferma esportazione della cassaforte</value>
|
||||||
@@ -2095,7 +2095,7 @@
|
|||||||
<value>Rimuovi password principale</value>
|
<value>Rimuovi password principale</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RemoveMasterPasswordWarning" xml:space="preserve">
|
<data name="RemoveMasterPasswordWarning" xml:space="preserve">
|
||||||
<value>{0} sta usando SSO con criptografia gestita dal cliente. Continuare rimuoverà la tua password principale dal tuo profilo e richiederà SSO per accedere.</value>
|
<value>{0} sta usando SSO con crittografia gestita dal cliente. Continuare rimuoverà la tua password principale dal tuo profilo e richiederà SSO per accedere.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RemoveMasterPasswordWarning2" xml:space="preserve">
|
<data name="RemoveMasterPasswordWarning2" xml:space="preserve">
|
||||||
<value>Se non vuoi rimuovere la tua password principale, puoi lasciare questa organizzazione.</value>
|
<value>Se non vuoi rimuovere la tua password principale, puoi lasciare questa organizzazione.</value>
|
||||||
@@ -2297,7 +2297,7 @@
|
|||||||
clicca Aggiungi TOTP per salvare la chiave in modo sicuro</value>
|
clicca Aggiungi TOTP per salvare la chiave in modo sicuro</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NeverLockWarning" xml:space="preserve">
|
<data name="NeverLockWarning" xml:space="preserve">
|
||||||
<value>Sei sicuro di voler usare l'opzione "Mai"? Impostare le opzioni di blocco su "Mai" salverà la chiave di criptografia della cassaforte sul tuo dispositivo. Se utilizzi questa opzione, assicurati di mantenere il tuo dispositivo adeguatamente protetto.</value>
|
<value>Sei sicuro di voler usare l'opzione "Mai"? Impostare le opzioni di blocco su "Mai" salverà la chiave di crittografia della cassaforte sul tuo dispositivo. Se utilizzi questa opzione, assicurati di mantenere il tuo dispositivo adeguatamente protetto.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnvironmentPageUrlsError" xml:space="preserve">
|
<data name="EnvironmentPageUrlsError" xml:space="preserve">
|
||||||
<value>L'URL inserito non è valido, controllalo e prova a salvarlo di nuovo.</value>
|
<value>L'URL inserito non è valido, controllalo e prova a salvarlo di nuovo.</value>
|
||||||
@@ -2354,7 +2354,7 @@ clicca Aggiungi TOTP per salvare la chiave in modo sicuro</value>
|
|||||||
<value>Approva richieste di accesso</value>
|
<value>Approva richieste di accesso</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices" xml:space="preserve">
|
<data name="UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices" xml:space="preserve">
|
||||||
<value>Usa questo dispositivo per approvare le richieste di accesso fatte da altri dispositivi.</value>
|
<value>Usa questo dispositivo per approvare le richieste di accesso fatte da altri dispositivi</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AllowNotifications" xml:space="preserve">
|
<data name="AllowNotifications" xml:space="preserve">
|
||||||
<value>Consenti notifiche</value>
|
<value>Consenti notifiche</value>
|
||||||
@@ -2424,6 +2424,10 @@ clicca Aggiungi TOTP per salvare la chiave in modo sicuro</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Token di accesso API</value>
|
<value>Token di accesso API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,11 +2694,8 @@ Vuoi passare a questo account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Azione timeout cassaforte impostata su uscire</value>
|
<value>Azione timeout cassaforte impostata su uscire</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Questo elemento non può essere condiviso con l'organizzazione perché ne esiste già uno con la stessa passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Bocca riempimento automatico</value>
|
<value>Blocca riempimento automatico</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
|
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
|
||||||
<value>Il riempimento automatico non sarà offerto per questi URI.</value>
|
<value>Il riempimento automatico non sarà offerto per questi URI.</value>
|
||||||
@@ -2820,35 +2821,35 @@ Vuoi passare a questo account?</value>
|
|||||||
<value>Continua per contattare l'assistenza?</value>
|
<value>Continua per contattare l'assistenza?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToAppStore" xml:space="preserve">
|
<data name="ContinueToAppStore" xml:space="preserve">
|
||||||
<value>Continue to app store?</value>
|
<value>Continuare sull'App Store?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TwoStepLoginDescriptionLong" xml:space="preserve">
|
<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>Rendi il tuo account più sicuro impostando la verifica in due passaggi sul sito web di Bitwarden.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
|
<data name="ChangeMasterPasswordDescriptionLong" xml:space="preserve">
|
||||||
<value>You can change your master password on the Bitwarden web app.</value>
|
<value>Puoi modificare la tua password principale sul sito web di Bitwarden.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
|
<data name="YouCanImportDataToYourVaultOnX" xml:space="preserve">
|
||||||
<value>You can import data to your vault on {0}.</value>
|
<value>Puoi importare i dati nella tua cassaforte su {0}.</value>
|
||||||
<comment>The parameter is an URL, like vault.bitwarden.com.</comment>
|
<comment>The parameter is an URL, like vault.bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
|
<data name="LearnMoreAboutHowToUseBitwardenOnTheHelpCenter" xml:space="preserve">
|
||||||
<value>Learn more about how to use Bitwarden on the Help center.</value>
|
<value>Scopri di più su come usare Bitwarden nel centro assistenza.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
<data name="ContactSupportDescriptionLong" xml:space="preserve">
|
||||||
<value>Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com.</value>
|
<value>Non riesci a trovare quello che stai cercando? Contatta il supporto Bitwarden su bitwarden.com.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
|
<data name="ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp" xml:space="preserve">
|
||||||
<value>Explore more features of your Bitwarden account on the web app.</value>
|
<value>Esplora altre funzionalità del tuo account Bitwarden sul sito web.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnAboutOrganizationsDescriptionLong" xml:space="preserve">
|
<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 ti consente di condividere gli elementi della tua cassaforte con altri usando un'organizzazione. Scopri di più su bitwarden.com.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RateAppDescriptionLong" xml:space="preserve">
|
<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>Aiuta gli altri a decidere se Bitwarden è adatto a loro. Visita l'App Store e lascia una recensione.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
||||||
<value>Choose the dark theme to use when your device’s dark mode is in use</value>
|
<value>Scegli il tema scuro da usare quando il tuo dispositivo è in modalità scura</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CreatedXY" xml:space="preserve">
|
<data name="CreatedXY" xml:space="preserve">
|
||||||
<value>Creato il {0} alle {1}</value>
|
<value>Creato il {0} alle {1}</value>
|
||||||
@@ -2860,4 +2861,13 @@ Vuoi passare a questo account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account uscito.</value>
|
<value>Account uscito.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Le autorizzazioni della tua organizzazione sono state aggiornate, obbligandoti a impostare una password principale.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>La tua organizzazione ti obbliga di impostare di una password principale.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Imposta un metodo di sblocco per modificare l'azione timeout cassaforte.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7822
src/App/Resources/AppResources.ja.Designer.cs
generated
7822
src/App/Resources/AppResources.ja.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -425,7 +425,7 @@
|
|||||||
<value>あいまいな文字を避ける</value>
|
<value>あいまいな文字を避ける</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAppExtension" xml:space="preserve">
|
<data name="BitwardenAppExtension" xml:space="preserve">
|
||||||
<value>Bitwarden App Extension</value>
|
<value>Bitwarden アプリ拡張機能</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAppExtensionAlert2" xml:space="preserve">
|
<data name="BitwardenAppExtensionAlert2" xml:space="preserve">
|
||||||
<value>ログイン情報を保管庫に追加する一番簡単な方法はApp Extensionを使うことです。詳しくは「設定」画面に進んでください。</value>
|
<value>ログイン情報を保管庫に追加する一番簡単な方法はApp Extensionを使うことです。詳しくは「設定」画面に進んでください。</value>
|
||||||
@@ -2424,6 +2424,10 @@
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API アクセストークン</value>
|
<value>API アクセストークン</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,9 +2694,6 @@
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>保管庫のタイムアウトアクションがログアウトに変更されました</value>
|
<value>保管庫のタイムアウトアクションがログアウトに変更されました</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>すでに同じパスキーを持つものがあるため、このアイテムは組織と共有することはできません。</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>自動入力をブロック</value>
|
<value>自動入力をブロック</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2860,4 +2861,13 @@
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>アカウントからログアウトしました。</value>
|
<value>アカウントからログアウトしました。</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>組織の権限が更新され、マスターパスワードの設定が必要になりました。</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>あなたの組織では、マスターパスワードの設定が義務付けられています。</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>保管庫のタイムアウト動作を変更するには、ロック解除方法を設定してください。</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2424,6 +2424,10 @@
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API 액세스 토큰</value>
|
<value>API 액세스 토큰</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,9 +2694,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2860,4 +2861,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@ pasirinkite Pridėti TOTP, kad raktas būtų saugiai išsaugotas</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API prieigos raktas</value>
|
<value>API prieigos raktas</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Ar norite pereiti prie šios paskyros?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Ar norite pereiti prie šios paskyros?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -375,7 +375,7 @@
|
|||||||
<comment>Validation message for when a form field is left blank and is required to be entered.</comment>
|
<comment>Validation message for when a form field is left blank and is required to be entered.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ValueHasBeenCopied" xml:space="preserve">
|
<data name="ValueHasBeenCopied" xml:space="preserve">
|
||||||
<value>{0} ir ievietots starpliktuvē.</value>
|
<value>{0} ir starpliktuvē</value>
|
||||||
<comment>Confirmation message after successfully copying a value to the clipboard.</comment>
|
<comment>Confirmation message after successfully copying a value to the clipboard.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerifyFingerprint" xml:space="preserve">
|
<data name="VerifyFingerprint" xml:space="preserve">
|
||||||
@@ -907,7 +907,7 @@ Nolasīšana notiks automātiski.</value>
|
|||||||
<value>Ievietot TOTP starpliktuvē</value>
|
<value>Ievietot TOTP starpliktuvē</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
|
<data name="CopyTotpAutomaticallyDescription" xml:space="preserve">
|
||||||
<value>Ja pieteikšanās vienumam ir pievienota autentificētāja atslēga, TOTP apstiprinājuma kods tiks automātiski pārkopēts uz starpliktuvi, kad vien tiks automātiski aizpildīta pieteikšanās veidne.</value>
|
<value>Ja pieteikšanās vienumam ir pievienota autentificētāja atslēga, TOTP apstiprinājuma kods tiks automātiski ievietots starpliktuvē, kad vien tiks automātiski aizpildīta pieteikšanās veidne.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyTotpAutomatically" xml:space="preserve">
|
<data name="CopyTotpAutomatically" xml:space="preserve">
|
||||||
<value>Automātiski ievietot TOTP starpliktuvē</value>
|
<value>Automātiski ievietot TOTP starpliktuvē</value>
|
||||||
@@ -2425,6 +2425,10 @@ jāizvēlas "Pievienot TOTP", lai droši glabātu atslēgu.</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API piekļuves pilnvara</value>
|
<value>API piekļuves pilnvara</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2638,22 +2642,22 @@ Vai pārslēgties uz šo kontu?</value>
|
|||||||
<value>Atcerēties šo ierīci</value>
|
<value>Atcerēties šo ierīci</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Passkey" xml:space="preserve">
|
<data name="Passkey" xml:space="preserve">
|
||||||
<value>Paroļatslēga</value>
|
<value>Piekļuves atslēga</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Passkeys" xml:space="preserve">
|
<data name="Passkeys" xml:space="preserve">
|
||||||
<value>Paroļatslēgas</value>
|
<value>Piekļuves atslēgas</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Application" xml:space="preserve">
|
<data name="Application" xml:space="preserve">
|
||||||
<value>Lietotne</value>
|
<value>Lietotne</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="YouCannotEditPasskeyApplicationBecauseItWouldInvalidateThePasskey" xml:space="preserve">
|
<data name="YouCannotEditPasskeyApplicationBecauseItWouldInvalidateThePasskey" xml:space="preserve">
|
||||||
<value>Paroļatslēgas lietotni nevar labot, jo tas paroļatslēgu padarītu nederīgu</value>
|
<value>Piekļuves atslēgas lietotni nevar labot, jo tas piekļuves atslēgu padarītu nederīgu</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasskeyWillNotBeCopied" xml:space="preserve">
|
<data name="PasskeyWillNotBeCopied" xml:space="preserve">
|
||||||
<value>Paroļatslēga netiks kopēta</value>
|
<value>Piekļuves atslēga netiks ievietota starpliktuvē</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThePasskeyWillNotBeCopiedToTheClonedItemDoYouWantToContinueCloningThisItem" xml:space="preserve">
|
<data name="ThePasskeyWillNotBeCopiedToTheClonedItemDoYouWantToContinueCloningThisItem" xml:space="preserve">
|
||||||
<value>Paroļatslēga netiks kopēta klonētajā vienumā. Vai turpināt šī vienuma klonēšanu?</value>
|
<value>Piekļuves atslēga netiks ievietota klonētajā vienumā. Vai turpināt šī vienuma klonēšanu?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyApplication" xml:space="preserve">
|
<data name="CopyApplication" xml:space="preserve">
|
||||||
<value>Kopēt lietotni</value>
|
<value>Kopēt lietotni</value>
|
||||||
@@ -2691,9 +2695,6 @@ Vai pārslēgties uz šo kontu?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Glabātavas noildzes darbība nomainīta uz atteikšanos</value>
|
<value>Glabātavas noildzes darbība nomainīta uz atteikšanos</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Šo vienumu nevar kopīgot ar apvienību, jo tur jau ir tāds ar to pašu paroļatslēgu.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Neļaut automātisko aizpildīšanu</value>
|
<value>Neļaut automātisko aizpildīšanu</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Vai pārslēgties uz šo kontu?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Konts tika izrakstīts.</value>
|
<value>Konts tika izrakstīts.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<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>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>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2424,6 +2424,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,9 +2694,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2860,4 +2861,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -946,7 +946,7 @@ Skanning skjer automatisk.</value>
|
|||||||
<value>Du kan ikke bruke denne funksjonen før du oppdaterer krypteringsnøkkelen din.</value>
|
<value>Du kan ikke bruke denne funksjonen før du oppdaterer krypteringsnøkkelen din.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EncryptionKeyMigrationRequiredDescriptionLong" xml:space="preserve">
|
<data name="EncryptionKeyMigrationRequiredDescriptionLong" xml:space="preserve">
|
||||||
<value>Encryption key migration required. Please login through the web vault to update your encryption key.</value>
|
<value>Krypteringsnøkkelmigrasjon kreves. Logg inn gjennom web-hvelvet ditt for å oppdatere krypteringsnøkkelen din.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LearnMore" xml:space="preserve">
|
<data name="LearnMore" xml:space="preserve">
|
||||||
<value>Lær mer</value>
|
<value>Lær mer</value>
|
||||||
@@ -2425,6 +2425,10 @@ velg Legg til TOTP for å lagre nøkkelen sikkert</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API tilgangstoken</value>
|
<value>API tilgangstoken</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Vil du bytte til denne kontoen?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Vil du bytte til denne kontoen?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Konto logget ut.</value>
|
<value>Konto logget ut.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7822
src/App/Resources/AppResources.nl.Designer.cs
generated
7822
src/App/Resources/AppResources.nl.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -2424,6 +2424,10 @@ kies je TOTP toevoegen om de sleutel veilig op te slaan</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API-toegangstoken</value>
|
<value>API-toegangstoken</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,9 +2694,6 @@ Wilt u naar dit account wisselen?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Je kunt dit item niet delen met de organisatie omdat er al een met dezelfde passkey is.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Automatisch aanvullen blokkeren</value>
|
<value>Automatisch aanvullen blokkeren</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2860,4 +2861,13 @@ Wilt u naar dit account wisselen?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Stel een ontgrendelingsmethode in om je kluis time-out actie te wijzigen.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Denne gjenstanden kan ikkje delast med organisasjonen fordi det allereie finst ein med same passnøkkel.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2861,4 +2862,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7822
src/App/Resources/AppResources.pl.Designer.cs
generated
7822
src/App/Resources/AppResources.pl.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -2424,6 +2424,10 @@ wybierz Dodaj TOTP, aby bezpiecznie przechowywać klucz</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Token dostępu API</value>
|
<value>Token dostępu API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,9 +2694,6 @@ Czy chcesz przełączyć się na to konto?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Sposób blokowania sejfu został zmieniony na wylogowanie</value>
|
<value>Sposób blokowania sejfu został zmieniony na wylogowanie</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Ten element nie może być współdzielony z organizacją, ponieważ jest już z tym samym passkey'em.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Blokuj autouzupełnianie</value>
|
<value>Blokuj autouzupełnianie</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2860,4 +2861,13 @@ Czy chcesz przełączyć się na to konto?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Konto wylogowane.</value>
|
<value>Konto wylogowane.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Uprawnienia w Twojej organizacji zostały zaktualizowane, musisz teraz ustawić hasło główne.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Twoja organizacja wymaga ustawienia hasła głównego.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Ustaw opcje odblokowania, aby zmienić czas blokowania sejfu.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7823
src/App/Resources/AppResources.pt-BR.Designer.cs
generated
7823
src/App/Resources/AppResources.pt-BR.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -1116,7 +1116,7 @@ A leitura será feita automaticamente.</value>
|
|||||||
<value>Setembro</value>
|
<value>Setembro</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SSN" xml:space="preserve">
|
<data name="SSN" xml:space="preserve">
|
||||||
<value>Número de Segurança Social</value>
|
<value>Cadastro de Pessoas Físicas (CPF)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="StateProvince" xml:space="preserve">
|
<data name="StateProvince" xml:space="preserve">
|
||||||
<value>Estado / Província</value>
|
<value>Estado / Província</value>
|
||||||
@@ -2425,6 +2425,10 @@ selecione Adicionar TOTP para armazenar a chave de forma segura</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Token de Acesso à API</value>
|
<value>Token de Acesso à API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2691,9 +2695,6 @@ Você deseja mudar para esta conta?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>A ação ao acabar o tempo do Cofre mudada para encerrar a sessão</value>
|
<value>A ação ao acabar o tempo do Cofre mudada para encerrar a sessão</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Este item não pode ser compartilhado com a organização porque já existe um com a mesma senha.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Bloquear preenchimento automático</value>
|
<value>Bloquear preenchimento automático</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2799,29 +2800,29 @@ Você deseja mudar para esta conta?</value>
|
|||||||
<value>{0} horas</value>
|
<value>{0} horas</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServicesExplanationLong" xml:space="preserve">
|
<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>O Framework de Preenchimento Automático do Android é usado para ajudar a preencher informações de login em outros aplicativos do seu dispositivo.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
|
<data name="UseInlineAutofillExplanationLong" xml:space="preserve">
|
||||||
<value>Use inline autofill if your selected keyboard supports it. Otherwise, use the default overlay.</value>
|
<value>Use o autopreenchimento interno se o teclado selecionado o suporta. Caso contrário, use a sobreposição padrão.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AdditionalOptions" xml:space="preserve">
|
<data name="AdditionalOptions" xml:space="preserve">
|
||||||
<value>Opções adicionais</value>
|
<value>Opções adicionais</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToWebApp" xml:space="preserve">
|
<data name="ContinueToWebApp" xml:space="preserve">
|
||||||
<value>Continue to web app?</value>
|
<value>Continuar no aplicativo web?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToX" xml:space="preserve">
|
<data name="ContinueToX" xml:space="preserve">
|
||||||
<value>Continue to {0}?</value>
|
<value>Continuar para {0}?</value>
|
||||||
<comment>The parameter is an URL, like bitwarden.com.</comment>
|
<comment>The parameter is an URL, like bitwarden.com.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToHelpCenter" xml:space="preserve">
|
<data name="ContinueToHelpCenter" xml:space="preserve">
|
||||||
<value>Continue to Help center?</value>
|
<value>Continuar para o centro de ajuda?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToContactSupport" xml:space="preserve">
|
<data name="ContinueToContactSupport" xml:space="preserve">
|
||||||
<value>Continue to contact support?</value>
|
<value>Continuar e contatar o suporte?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ContinueToAppStore" xml:space="preserve">
|
<data name="ContinueToAppStore" xml:space="preserve">
|
||||||
<value>Continue to app store?</value>
|
<value>Continuar para a loja de apps?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TwoStepLoginDescriptionLong" xml:space="preserve">
|
<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>Make your account more secure by setting up two-step login in the Bitwarden web app.</value>
|
||||||
@@ -2849,7 +2850,7 @@ Você deseja mudar para esta conta?</value>
|
|||||||
<value>Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now.</value>
|
<value>Help others find out if Bitwarden is right for them. Visit the app store and leave a rating now.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
<data name="DefaultDarkThemeDescriptionLong" xml:space="preserve">
|
||||||
<value>Choose the dark theme to use when your device’s dark mode is in use</value>
|
<value>Usar o tema escuro quando o modo escuro do seu dispositivo estiver ativado</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CreatedXY" xml:space="preserve">
|
<data name="CreatedXY" xml:space="preserve">
|
||||||
<value>Criado em {0}, {1}</value>
|
<value>Criado em {0}, {1}</value>
|
||||||
@@ -2861,4 +2862,13 @@ Você deseja mudar para esta conta?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Conta desconectada.</value>
|
<value>Conta desconectada.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7821
src/App/Resources/AppResources.pt-PT.Designer.cs
generated
7821
src/App/Resources/AppResources.pt-PT.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -1813,7 +1813,7 @@ A leitura será efetuada automaticamente.</value>
|
|||||||
<value>Política de privacidade</value>
|
<value>Política de privacidade</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityDrawOverPermissionAlert" xml:space="preserve">
|
<data name="AccessibilityDrawOverPermissionAlert" xml:space="preserve">
|
||||||
<value>O Bitwarden precisa de atenção - Ative "Aparecer sobre outras" em "Serviços de preenchimento automático" nas definições do Bitwarden</value>
|
<value>O Bitwarden precisa de atenção - Ative a definição "Aparecer sobre outras" em "Serviços de preenchimento automático" nas definições do Bitwarden</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillServices" xml:space="preserve">
|
<data name="AutofillServices" xml:space="preserve">
|
||||||
<value>Serviços de preenchimento automático</value>
|
<value>Serviços de preenchimento automático</value>
|
||||||
@@ -1831,16 +1831,16 @@ A leitura será efetuada automaticamente.</value>
|
|||||||
<value>Utilize o Serviço de acessibilidade do Bitwarden para preencher automaticamente as suas credenciais em aplicações e na web. Quando configurado, exibiremos um pop-up quando os campos de início de sessão forem selecionados.</value>
|
<value>Utilize o Serviço de acessibilidade do Bitwarden para preencher automaticamente as suas credenciais em aplicações e na web. Quando configurado, exibiremos um pop-up quando os campos de início de sessão forem selecionados.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityDescription2" xml:space="preserve">
|
<data name="AccessibilityDescription2" xml:space="preserve">
|
||||||
<value>Utilize o Serviço de acessibilidade do Bitwarden para preencher automaticamente as suas credenciais em aplicações e na web. (Requer que a definição Aparecer sobre outras também esteja ativada)</value>
|
<value>Utilize o Serviço de acessibilidade do Bitwarden para preencher automaticamente as suas credenciais em aplicações e na Web. (Requer que a definição "Aparecer sobre outras" também esteja ativada)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityDescription3" xml:space="preserve">
|
<data name="AccessibilityDescription3" xml:space="preserve">
|
||||||
<value>Utilize o Serviço de acessibilidade do Bitwarden para utilizar o botão de preenchimento automático do Painel instantâneo e/ou mostrar um pop-up utilizando a definição Aparecer sobre outras (se estiver ativada).</value>
|
<value>Utilize o Serviço de acessibilidade do Bitwarden para utilizar o botão de preenchimento automático do Painel instantâneo e/ou mostrar um pop-up utilizando a definição "Aparecer sobre outras" (se estiver ativada).</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityDescription4" xml:space="preserve">
|
<data name="AccessibilityDescription4" xml:space="preserve">
|
||||||
<value>Necessário para utilizar o botão de preenchimento automático do Painel instantâneo, ou para aumentar o serviço de preenchimento automático utilizando a definição Aparecer sobre outras (se estiver ativada).</value>
|
<value>Necessário para utilizar o botão de preenchimento automático do Painel instantâneo, ou para aumentar o serviço de preenchimento automático utilizando a definição "Aparecer sobre outras" (se estiver ativada).</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DrawOver" xml:space="preserve">
|
<data name="DrawOver" xml:space="preserve">
|
||||||
<value>Utilizar definição Aparecer sobre outras</value>
|
<value>Utilizar a definição "Aparecer sobre outras"</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DrawOverDescription" xml:space="preserve">
|
<data name="DrawOverDescription" xml:space="preserve">
|
||||||
<value>Permite que o Serviço de acessibilidade do Bitwarden apresente um pop-up quando os campos de início de sessão são selecionados.</value>
|
<value>Permite que o Serviço de acessibilidade do Bitwarden apresente um pop-up quando os campos de início de sessão são selecionados.</value>
|
||||||
@@ -2423,6 +2423,10 @@ A leitura será efetuada automaticamente.</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Token de acesso à API</value>
|
<value>Token de acesso à API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2689,11 +2693,8 @@ Deseja mudar para esta conta?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Ação de tempo limite do cofre alterada para terminar sessão</value>
|
<value>Ação de tempo limite do cofre alterada para terminar sessão</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>Este item não pode ser partilhado com a organização porque já existe um com a mesma chave de acesso.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Bloquear preenchimento automático</value>
|
<value>Bloquear o preenchimento automático</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
|
<data name="AutoFillWillNotBeOfferedForTheseURIs" xml:space="preserve">
|
||||||
<value>O preenchimento automático não será oferecido para estes URIs.</value>
|
<value>O preenchimento automático não será oferecido para estes URIs.</value>
|
||||||
@@ -2859,4 +2860,13 @@ Deseja mudar para esta conta?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Conta com sessão terminada.</value>
|
<value>Conta com sessão terminada.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>As permissões da sua organização foram atualizadas, exigindo a definição de uma palavra-passe mestra.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>A sua organização exige a definição de uma palavra-passe mestra.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Configure uma opção de desbloqueio para alterar a ação de tempo limite do seu cofre.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2425,6 +2425,10 @@ select Add TOTP to store the key safely</value>
|
|||||||
<value>Fastmail</value>
|
<value>Fastmail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>API access token</value>
|
<value>API access token</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2858,4 +2862,13 @@ Do you want to switch to this account?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
7822
src/App/Resources/AppResources.ro.Designer.cs
generated
7822
src/App/Resources/AppResources.ro.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -2424,6 +2424,10 @@ selectați „Adăugare TOTP” pentru a stoca cheia în siguranță</value>
|
|||||||
<value>FastMail</value>
|
<value>FastMail</value>
|
||||||
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
<comment>"Fastmail" is the product name and should not be translated.</comment>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ForwardEmail" xml:space="preserve">
|
||||||
|
<value>ForwardEmail</value>
|
||||||
|
<comment>"ForwardEmail" is the product name and should not be translated.</comment>
|
||||||
|
</data>
|
||||||
<data name="APIAccessToken" xml:space="preserve">
|
<data name="APIAccessToken" xml:space="preserve">
|
||||||
<value>Token de acces API</value>
|
<value>Token de acces API</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2690,9 +2694,6 @@ Doriți să comutați la acest cont?</value>
|
|||||||
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
<data name="VaultTimeoutActionChangedToLogOut" xml:space="preserve">
|
||||||
<value>Vault timeout action changed to log out</value>
|
<value>Vault timeout action changed to log out</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThisItemCannotBeSharedWithTheOrganizationBecauseThereIsOneAlreadyWithTheSamePasskey" xml:space="preserve">
|
|
||||||
<value>This item cannot be shared with the organization because there is one already with the same passkey.</value>
|
|
||||||
</data>
|
|
||||||
<data name="BlockAutoFill" xml:space="preserve">
|
<data name="BlockAutoFill" xml:space="preserve">
|
||||||
<value>Block auto-fill</value>
|
<value>Block auto-fill</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -2860,4 +2861,13 @@ Doriți să comutați la acest cont?</value>
|
|||||||
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
<data name="AccountLoggedOutBiometricExceeded" xml:space="preserve">
|
||||||
<value>Account logged out.</value>
|
<value>Account logged out.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="YourOrganizationPermissionsWereUpdatedRequeringYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization permissions were updated, requiring you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="YourOrganizationRequiresYouToSetAMasterPassword" xml:space="preserve">
|
||||||
|
<value>Your organization requires you to set a master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="SetUpAnUnlockOptionToChangeYourVaultTimeoutAction" xml:space="preserve">
|
||||||
|
<value>Set up an unlock option to change your vault timeout action.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user