mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
Compare commits
24 Commits
beeep/envi
...
v2.14.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a2bb490fc4 | ||
|
|
97c21cd666 | ||
|
|
2318f3b357 | ||
|
|
5a8918cf0d | ||
|
|
38c5f19da1 | ||
|
|
b9c7a63d55 | ||
|
|
56664ae981 | ||
|
|
9a83877cbb | ||
|
|
35e801aa3e | ||
|
|
dcc840b598 | ||
|
|
d6cd83349a | ||
|
|
82098ab6a1 | ||
|
|
ac75b14ec4 | ||
|
|
166c5eb779 | ||
|
|
6f3c5be598 | ||
|
|
8c4f5c3378 | ||
|
|
c2657cf93e | ||
|
|
1b93131a1f | ||
|
|
b9fc72d436 | ||
|
|
5d02ed78f0 | ||
|
|
ab80c3d4c7 | ||
|
|
6a6764394d | ||
|
|
4509feb16a | ||
|
|
8bc7ed916c |
66
.github/workflows/build.yml
vendored
66
.github/workflows/build.yml
vendored
@@ -23,9 +23,38 @@ jobs:
|
|||||||
- name: Print lines of code
|
- name: Print lines of code
|
||||||
run: cloc --vcs git --exclude-dir Resources,store,test,Properties --include-lang C#,XAML
|
run: cloc --vcs git --exclude-dir Resources,store,test,Properties --include-lang C#,XAML
|
||||||
|
|
||||||
|
|
||||||
|
setup:
|
||||||
|
name: Setup
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
outputs:
|
||||||
|
rc_branch_exists: ${{ steps.branch-check.outputs.rc_branch_exists }}
|
||||||
|
release_branch_exists: ${{ steps.branch-check.outputs.release_branch_exists }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout repo
|
||||||
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
|
||||||
|
|
||||||
|
- name: Check if special branches exist
|
||||||
|
id: branch-check
|
||||||
|
run: |
|
||||||
|
if [[ $(git ls-remote --heads origin rc) ]]; then
|
||||||
|
echo "::set-output name=rc_branch_exists::1"
|
||||||
|
else
|
||||||
|
echo "::set-output name=rc_branch_exists::0"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $(git ls-remote --heads origin release) ]]; then
|
||||||
|
echo "::set-output name=release_branch_exists::1"
|
||||||
|
else
|
||||||
|
echo "::set-output name=release_branch_exists::0"
|
||||||
|
fi
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
|
||||||
android:
|
android:
|
||||||
name: Android
|
name: Android
|
||||||
runs-on: windows-2019
|
runs-on: windows-2019
|
||||||
|
needs: setup
|
||||||
steps:
|
steps:
|
||||||
- name: Set up MSBuild
|
- name: Set up MSBuild
|
||||||
uses: microsoft/setup-msbuild@c26a08ba26249b81327e26f6ef381897b6a8754d # v1
|
uses: microsoft/setup-msbuild@c26a08ba26249b81327e26f6ef381897b6a8754d # v1
|
||||||
@@ -147,20 +176,13 @@ jobs:
|
|||||||
path: ./com.x8bit.bitwarden.apk
|
path: ./com.x8bit.bitwarden.apk
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Check if RC branch exists
|
|
||||||
id: rc-branch-check
|
|
||||||
run: |
|
|
||||||
if [[ $(git ls-remote --heads origin rc) ]]; then
|
|
||||||
echo "::set-output name=branch_exists::1"
|
|
||||||
else
|
|
||||||
echo "::set-output name=branch_exists::0"
|
|
||||||
fi
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Deploy to Play Store
|
- name: Deploy to Play Store
|
||||||
if: |
|
if: |
|
||||||
(github.ref == 'refs/heads/master' && steps.rc-branch-check.outputs.branch_exists == 0)
|
(github.ref == 'refs/heads/master'
|
||||||
|| github.ref == 'refs/heads/rc'
|
&& needs.setup.outputs.rc_branch_exists == 0
|
||||||
|
&& needs.setup.outputs.release_branch_exists == 0)
|
||||||
|
|| (github.ref == 'refs/heads/rc' && needs.setup.outputs.release_branch_exists == 0)
|
||||||
|
|| github.ref == 'refs/heads/release'
|
||||||
run: |
|
run: |
|
||||||
PUBLISHER_PATH="$GITHUB_WORKSPACE/store/google/Publisher/bin/Release/netcoreapp2.0/Publisher.dll"
|
PUBLISHER_PATH="$GITHUB_WORKSPACE/store/google/Publisher/bin/Release/netcoreapp2.0/Publisher.dll"
|
||||||
CREDS_PATH="$HOME/secrets/play_creds.json"
|
CREDS_PATH="$HOME/secrets/play_creds.json"
|
||||||
@@ -207,7 +229,7 @@ jobs:
|
|||||||
echo "##### Setting Version Code $BUILD_NUMBER"
|
echo "##### Setting Version Code $BUILD_NUMBER"
|
||||||
echo "########################################"
|
echo "########################################"
|
||||||
|
|
||||||
sed "s/android:versionCode=\"1\"/android:versionCode=\"$BUILD_NUMBER\"/" \
|
sed -i "s/android:versionCode=\"1\"/android:versionCode=\"$BUILD_NUMBER\"/" \
|
||||||
./src/Android/Properties/AndroidManifest.xml
|
./src/Android/Properties/AndroidManifest.xml
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
@@ -331,6 +353,7 @@ jobs:
|
|||||||
ios:
|
ios:
|
||||||
name: Apple iOS
|
name: Apple iOS
|
||||||
runs-on: macos-11
|
runs-on: macos-11
|
||||||
|
needs: setup
|
||||||
steps:
|
steps:
|
||||||
- name: Print environment
|
- name: Print environment
|
||||||
run: |
|
run: |
|
||||||
@@ -447,20 +470,13 @@ jobs:
|
|||||||
path: ./bitwarden-export/Bitwarden.ipa
|
path: ./bitwarden-export/Bitwarden.ipa
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Check if RC branch exists
|
|
||||||
id: rc-branch-check
|
|
||||||
run: |
|
|
||||||
if [[ $(git ls-remote --heads origin rc) ]]; then
|
|
||||||
echo "::set-output name=branch_exists::1"
|
|
||||||
else
|
|
||||||
echo "::set-output name=branch_exists::0"
|
|
||||||
fi
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Deploy to App Store
|
- name: Deploy to App Store
|
||||||
if: |
|
if: |
|
||||||
(github.ref == 'refs/heads/master' && steps.rc-branch-check.outputs.branch_exists == 0)
|
(github.ref == 'refs/heads/master'
|
||||||
|| github.ref == 'refs/heads/rc'
|
&& needs.setup.outputs.rc_branch_exists == 0
|
||||||
|
&& needs.setup.outputs.release_branch_exists == 0)
|
||||||
|
|| (github.ref == 'refs/heads/rc' && needs.setup.outputs.release_branch_exists == 0)
|
||||||
|
|| github.ref == 'refs/heads/release'
|
||||||
env:
|
env:
|
||||||
APPLE_ID_USERNAME: ${{ secrets.APPLE_ID_USERNAME }}
|
APPLE_ID_USERNAME: ${{ secrets.APPLE_ID_USERNAME }}
|
||||||
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
|
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
|
||||||
|
|||||||
17
.github/workflows/release.yml
vendored
17
.github/workflows/release.yml
vendored
@@ -9,10 +9,19 @@ jobs:
|
|||||||
name: Create Release
|
name: Create Release
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
|
- name: Branch check
|
||||||
|
run: |
|
||||||
|
if [[ "$GITHUB_REF" != "refs/heads/release" ]]; then
|
||||||
|
echo "==================================="
|
||||||
|
echo "[!] Can only release from the 'release' branch"
|
||||||
|
echo "==================================="
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
|
||||||
with:
|
with:
|
||||||
ref: rc
|
ref: release
|
||||||
|
|
||||||
- name: Retrieve Mobile release version
|
- name: Retrieve Mobile release version
|
||||||
id: retrieve-mobile-version
|
id: retrieve-mobile-version
|
||||||
@@ -41,7 +50,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
workflow: build.yml
|
workflow: build.yml
|
||||||
workflow_conclusion: success
|
workflow_conclusion: success
|
||||||
branch: rc
|
branch: release
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
uses: ncipollo/release-action@95215a3cb6e6a1908b3c44e00b4fdb15548b1e09 # v2.8.5
|
uses: ncipollo/release-action@95215a3cb6e6a1908b3c44e00b4fdb15548b1e09 # v2.8.5
|
||||||
@@ -66,14 +75,14 @@ jobs:
|
|||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
|
||||||
with:
|
with:
|
||||||
ref: rc
|
ref: release
|
||||||
|
|
||||||
- name: Download F-Droid .apk artifact
|
- name: Download F-Droid .apk artifact
|
||||||
uses: dawidd6/action-download-artifact@b9571484721e8187f1fd08147b497129f8972c74 # v2.14.0
|
uses: dawidd6/action-download-artifact@b9571484721e8187f1fd08147b497129f8972c74 # v2.14.0
|
||||||
with:
|
with:
|
||||||
workflow: build.yml
|
workflow: build.yml
|
||||||
workflow_conclusion: success
|
workflow_conclusion: success
|
||||||
branch: rc
|
branch: release
|
||||||
name: com.x8bit.bitwarden-fdroid.apk
|
name: com.x8bit.bitwarden-fdroid.apk
|
||||||
|
|
||||||
- name: Set up Node
|
- name: Set up Node
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ namespace Bit.Droid.Autofill
|
|||||||
public static HashSet<string> TrustedBrowsers = new HashSet<string>
|
public static HashSet<string> TrustedBrowsers = new HashSet<string>
|
||||||
{
|
{
|
||||||
"com.duckduckgo.mobile.android",
|
"com.duckduckgo.mobile.android",
|
||||||
|
"com.google.android.googlequicksearchbox",
|
||||||
"org.mozilla.focus",
|
"org.mozilla.focus",
|
||||||
"org.mozilla.klar",
|
"org.mozilla.klar",
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -385,6 +385,7 @@ namespace Bit.Droid
|
|||||||
private void AppearanceAdjustments()
|
private void AppearanceAdjustments()
|
||||||
{
|
{
|
||||||
Window?.SetStatusBarColor(ThemeHelpers.NavBarBackgroundColor);
|
Window?.SetStatusBarColor(ThemeHelpers.NavBarBackgroundColor);
|
||||||
|
Window?.DecorView.SetBackgroundColor(ThemeHelpers.BackgroundColor);
|
||||||
ThemeHelpers.SetAppearance(ThemeManager.GetTheme(true), ThemeManager.OsDarkModeEnabled());
|
ThemeHelpers.SetAppearance(ThemeManager.GetTheme(true), ThemeManager.OsDarkModeEnabled());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:versionCode="1"
|
android:versionCode="1"
|
||||||
android:versionName="2.13.1"
|
android:versionName="2.14.1"
|
||||||
android:installLocation="internalOnly"
|
android:installLocation="internalOnly"
|
||||||
package="com.x8bit.bitwarden">
|
package="com.x8bit.bitwarden">
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
using Android.Content;
|
using Android.Content;
|
||||||
using Android.Content.Res;
|
using Android.Content.Res;
|
||||||
using Android.Graphics.Drawables;
|
using Android.Graphics.Drawables;
|
||||||
|
using Android.OS;
|
||||||
using AndroidX.Core.Content.Resources;
|
using AndroidX.Core.Content.Resources;
|
||||||
using Bit.Droid.Renderers;
|
using Bit.Droid.Renderers;
|
||||||
using Bit.Droid.Utilities;
|
using Bit.Droid.Utilities;
|
||||||
@@ -35,6 +36,12 @@ namespace Bit.Droid.Renderers
|
|||||||
|
|
||||||
private void UpdateColors()
|
private void UpdateColors()
|
||||||
{
|
{
|
||||||
|
if (Build.VERSION.SdkInt <= BuildVersionCodes.LollipopMr1)
|
||||||
|
{
|
||||||
|
// Android 5.x doesn't support ThumbTintList, and using SwitchCompat on every version after 5.x
|
||||||
|
// doesn't apply tinting the way we want. Let 5.x to do its own thing here.
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (Control != null)
|
if (Control != null)
|
||||||
{
|
{
|
||||||
var t = ResourcesCompat.GetDrawable(Resources, Resource.Drawable.switch_thumb, null);
|
var t = ResourcesCompat.GetDrawable(Resources, Resource.Drawable.switch_thumb, null);
|
||||||
|
|||||||
@@ -640,8 +640,7 @@ namespace Bit.Droid.Services
|
|||||||
|
|
||||||
public bool AutofillAccessibilityServiceRunning()
|
public bool AutofillAccessibilityServiceRunning()
|
||||||
{
|
{
|
||||||
var activity = (MainActivity)CrossCurrentActivity.Current.Activity;
|
var enabledServices = Settings.Secure.GetString(Application.Context.ContentResolver,
|
||||||
var enabledServices = Settings.Secure.GetString(activity.ContentResolver,
|
|
||||||
Settings.Secure.EnabledAccessibilityServices);
|
Settings.Secure.EnabledAccessibilityServices);
|
||||||
return Application.Context.PackageName != null &&
|
return Application.Context.PackageName != null &&
|
||||||
(enabledServices?.Contains(Application.Context.PackageName) ?? false);
|
(enabledServices?.Contains(Application.Context.PackageName) ?? false);
|
||||||
|
|||||||
@@ -16,6 +16,10 @@ namespace Bit.Droid.Utilities
|
|||||||
{
|
{
|
||||||
get => ThemeManager.GetResourceColor("MutedColor").ToAndroid();
|
get => ThemeManager.GetResourceColor("MutedColor").ToAndroid();
|
||||||
}
|
}
|
||||||
|
public static Color BackgroundColor
|
||||||
|
{
|
||||||
|
get => ThemeManager.GetResourceColor("BackgroundColor").ToAndroid();
|
||||||
|
}
|
||||||
public static Color NavBarBackgroundColor
|
public static Color NavBarBackgroundColor
|
||||||
{
|
{
|
||||||
get => ThemeManager.GetResourceColor("NavigationBarBackgroundColor").ToAndroid();
|
get => ThemeManager.GetResourceColor("NavigationBarBackgroundColor").ToAndroid();
|
||||||
|
|||||||
@@ -317,8 +317,9 @@ namespace Bit.App.Pages
|
|||||||
ShowPassword = !ShowPassword;
|
ShowPassword = !ShowPassword;
|
||||||
var page = (Page as LockPage);
|
var page = (Page as LockPage);
|
||||||
var entry = PinLock ? page.PinEntry : page.MasterPasswordEntry;
|
var entry = PinLock ? page.PinEntry : page.MasterPasswordEntry;
|
||||||
|
var str = PinLock ? Pin : MasterPassword;
|
||||||
entry.Focus();
|
entry.Focus();
|
||||||
entry.CursorPosition = PinLock ? Pin.Length : MasterPassword.Length;
|
entry.CursorPosition = String.IsNullOrEmpty(str) ? 0 : str.Length;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task PromptBiometricAsync()
|
public async Task PromptBiometricAsync()
|
||||||
|
|||||||
@@ -187,7 +187,7 @@ namespace Bit.App.Pages
|
|||||||
ShowPassword = !ShowPassword;
|
ShowPassword = !ShowPassword;
|
||||||
var entry = (Page as LoginPage).MasterPasswordEntry;
|
var entry = (Page as LoginPage).MasterPasswordEntry;
|
||||||
entry.Focus();
|
entry.Focus();
|
||||||
entry.CursorPosition = MasterPassword.Length;
|
entry.CursorPosition = String.IsNullOrEmpty(MasterPassword) ? 0 : MasterPassword.Length;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -203,7 +203,7 @@ namespace Bit.App.Pages
|
|||||||
ShowPassword = !ShowPassword;
|
ShowPassword = !ShowPassword;
|
||||||
var entry = (Page as RegisterPage).MasterPasswordEntry;
|
var entry = (Page as RegisterPage).MasterPasswordEntry;
|
||||||
entry.Focus();
|
entry.Focus();
|
||||||
entry.CursorPosition = MasterPassword.Length;
|
entry.CursorPosition = String.IsNullOrEmpty(MasterPassword) ? 0 : MasterPassword.Length;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ToggleConfirmPassword()
|
public void ToggleConfirmPassword()
|
||||||
@@ -211,7 +211,7 @@ namespace Bit.App.Pages
|
|||||||
ShowPassword = !ShowPassword;
|
ShowPassword = !ShowPassword;
|
||||||
var entry = (Page as RegisterPage).ConfirmMasterPasswordEntry;
|
var entry = (Page as RegisterPage).ConfirmMasterPasswordEntry;
|
||||||
entry.Focus();
|
entry.Focus();
|
||||||
entry.CursorPosition = ConfirmMasterPassword.Length;
|
entry.CursorPosition = String.IsNullOrEmpty(ConfirmMasterPassword) ? 0 : ConfirmMasterPassword.Length;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -204,7 +204,9 @@ namespace Bit.App.Pages
|
|||||||
{
|
{
|
||||||
callbackUri = callbackUri,
|
callbackUri = callbackUri,
|
||||||
data = JsonConvert.SerializeObject(providerData),
|
data = JsonConvert.SerializeObject(providerData),
|
||||||
|
headerText = AppResources.Fido2Title,
|
||||||
btnText = AppResources.Fido2AuthenticateWebAuthn,
|
btnText = AppResources.Fido2AuthenticateWebAuthn,
|
||||||
|
btnReturnText = AppResources.Fido2ReturnToApp,
|
||||||
});
|
});
|
||||||
|
|
||||||
var url = _webVaultUrl + "/webauthn-mobile-connector.html?" + "data=" + data +
|
var url = _webVaultUrl + "/webauthn-mobile-connector.html?" + "data=" + data +
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ namespace Bit.App.Pages
|
|||||||
{
|
{
|
||||||
if (Device.RuntimePlatform == Device.iOS)
|
if (Device.RuntimePlatform == Device.iOS)
|
||||||
{
|
{
|
||||||
|
On<iOS>().SetUseSafeArea(true);
|
||||||
On<iOS>().SetModalPresentationStyle(UIModalPresentationStyle.FullScreen);
|
On<iOS>().SetModalPresentationStyle(UIModalPresentationStyle.FullScreen);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,12 @@ namespace Bit.App.Pages
|
|||||||
captchaRequiredText = AppResources.CaptchaRequired,
|
captchaRequiredText = AppResources.CaptchaRequired,
|
||||||
});
|
});
|
||||||
|
|
||||||
var url = environmentService.GetWebVaultUrl() + "/captcha-mobile-connector.html?" + "data=" + data +
|
var url = environmentService.GetWebVaultUrl();
|
||||||
|
if (url == null)
|
||||||
|
{
|
||||||
|
url = "https://vault.bitwarden.com";
|
||||||
|
}
|
||||||
|
url += "/captcha-mobile-connector.html?" + "data=" + data +
|
||||||
"&parent=" + Uri.EscapeDataString(callbackUri) + "&v=1";
|
"&parent=" + Uri.EscapeDataString(callbackUri) + "&v=1";
|
||||||
|
|
||||||
WebAuthenticatorResult authResult = null;
|
WebAuthenticatorResult authResult = null;
|
||||||
|
|||||||
@@ -161,7 +161,7 @@ namespace Bit.App.Pages
|
|||||||
if (DoOnce())
|
if (DoOnce())
|
||||||
{
|
{
|
||||||
var page = new SendsPage(_vm.Filter, _vm.Type != null);
|
var page = new SendsPage(_vm.Filter, _vm.Type != null);
|
||||||
await Navigation.PushModalAsync(new NavigationPage(page), false);
|
await Navigation.PushModalAsync(new NavigationPage(page));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -418,25 +418,6 @@ namespace Bit.App.Pages
|
|||||||
new SettingsPageListItem { Name = AppResources.LockNow },
|
new SettingsPageListItem { Name = AppResources.LockNow },
|
||||||
new SettingsPageListItem { Name = AppResources.TwoStepLogin }
|
new SettingsPageListItem { Name = AppResources.TwoStepLogin }
|
||||||
};
|
};
|
||||||
if (_vaultTimeoutDisplayValue == AppResources.Custom)
|
|
||||||
{
|
|
||||||
securityItems.Insert(1, new SettingsPageListItem
|
|
||||||
{
|
|
||||||
Name = AppResources.Custom,
|
|
||||||
Time = TimeSpan.FromMinutes(Math.Abs((double) _vaultTimeout)),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (_vaultTimeoutPolicy != null)
|
|
||||||
{
|
|
||||||
var maximumTimeout = _policyService.GetPolicyInt(_vaultTimeoutPolicy, "minutes").GetValueOrDefault();
|
|
||||||
securityItems.Insert(0, new SettingsPageListItem
|
|
||||||
{
|
|
||||||
Name = string.Format(AppResources.VaultTimeoutPolicyInEffect,
|
|
||||||
Math.Floor((float) maximumTimeout / 60),
|
|
||||||
maximumTimeout % 60),
|
|
||||||
UseFrame = true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (_supportsBiometric || _biometric)
|
if (_supportsBiometric || _biometric)
|
||||||
{
|
{
|
||||||
var biometricName = AppResources.Biometrics;
|
var biometricName = AppResources.Biometrics;
|
||||||
@@ -452,6 +433,25 @@ namespace Bit.App.Pages
|
|||||||
};
|
};
|
||||||
securityItems.Insert(2, item);
|
securityItems.Insert(2, item);
|
||||||
}
|
}
|
||||||
|
if (_vaultTimeoutDisplayValue == AppResources.Custom)
|
||||||
|
{
|
||||||
|
securityItems.Insert(1, new SettingsPageListItem
|
||||||
|
{
|
||||||
|
Name = AppResources.Custom,
|
||||||
|
Time = TimeSpan.FromMinutes(Math.Abs((double)_vaultTimeout)),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (_vaultTimeoutPolicy != null)
|
||||||
|
{
|
||||||
|
var maximumTimeout = _policyService.GetPolicyInt(_vaultTimeoutPolicy, "minutes").GetValueOrDefault();
|
||||||
|
securityItems.Insert(0, new SettingsPageListItem
|
||||||
|
{
|
||||||
|
Name = string.Format(AppResources.VaultTimeoutPolicyInEffect,
|
||||||
|
Math.Floor((float)maximumTimeout / 60),
|
||||||
|
maximumTimeout % 60),
|
||||||
|
UseFrame = true,
|
||||||
|
});
|
||||||
|
}
|
||||||
var accountItems = new List<SettingsPageListItem>
|
var accountItems = new List<SettingsPageListItem>
|
||||||
{
|
{
|
||||||
new SettingsPageListItem { Name = AppResources.FingerprintPhrase },
|
new SettingsPageListItem { Name = AppResources.FingerprintPhrase },
|
||||||
|
|||||||
@@ -234,7 +234,7 @@ namespace Bit.App.Pages
|
|||||||
{
|
{
|
||||||
var page = new CiphersPage(_vm.Filter, _vm.FolderId != null, _vm.CollectionId != null,
|
var page = new CiphersPage(_vm.Filter, _vm.FolderId != null, _vm.CollectionId != null,
|
||||||
_vm.Type != null, deleted: _vm.Deleted);
|
_vm.Type != null, deleted: _vm.Deleted);
|
||||||
await Navigation.PushModalAsync(new NavigationPage(page), false);
|
await Navigation.PushModalAsync(new NavigationPage(page));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
6
src/App/Resources/AppResources.Designer.cs
generated
6
src/App/Resources/AppResources.Designer.cs
generated
@@ -3609,6 +3609,12 @@ namespace Bit.App.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static string Fido2ReturnToApp {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static string Fido2CheckBrowser {
|
public static string Fido2CheckBrowser {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture);
|
return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture);
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Bewaar</value>
|
<value>Bewaar</value>
|
||||||
<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">
|
||||||
|
<value>Skuif</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Bewaar tans…</value>
|
<value>Bewaar tans…</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>U soek na ’n outovulitem vir “{0}”.</value>
|
<value>U soek na ’n outovulitem vir “{0}”.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Deel u kluis</value>
|
<value>Meer oor organisasies</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Kan nie die toep “{0}” open nie.</value>
|
<value>Kan nie die toep “{0}” open nie.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Daar is geen versamelings om te lys nie.</value>
|
<value>Daar is geen versamelings om te lys nie.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} geskuif na {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Item is gedeel.</value>
|
<value>Item is gedeel.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Deel Item</value>
|
<value>Deel Item</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Skuif na organisasie</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Geen organisasies om te lys nie.</value>
|
<value>Geen organisasies om te lys nie.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Kies ’n organisasie waarmee u hierdie item wil deel. Deur te deel kry die organisasie die einaarskap van die item. U is dan nie meer die direkte eienaar van die item wanneer dit gedeel is nie.</value>
|
<value>Kies ’n organisasie waarheen u hierdie item wil skuif. Deur te skuif kry die organisasie die einaarskap van die item. U is dan nie meer die direkte eienaar van die item wanneer dit geskuif is nie.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Aantal woorde</value>
|
<value>Aantal woorde</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>U rekening se vingerafdrukfrase</value>
|
<value>U rekening se vingerafdrukfrase</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Met ’n organisasierekening kan u ’n Bitwarden-kluis met ander deel. Wil u na bitwarden.com se webwerf gaan om meer hieroor te leer?</value>
|
<value>Met ’n organisasierekening kan u u Bitwarden-kluisitems met ander deel. Wil u na bitwarden.com se webwerf gaan om meer hieroor te leer?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Stuur kluis uit</value>
|
<value>Stuur kluis uit</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Verander die toepassing se kleurtema.</value>
|
<value>Verander die toepassing se kleurtema.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Vereis herbegin.</value>
|
<value>Verstek (Stelsel)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Herbegin…</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Kopieer notas</value>
|
<value>Kopieer notas</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Hierdie aksie is beskerm. Voer u hoofwagwoord in om u identiteit te bevestig om voort te gaan.</value>
|
<value>Hierdie aksie is beskerm. Voer u hoofwagwoord in om u identiteit te bevestig om voort te gaan.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha vereis</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha het misluk. Probeer weer.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Hoofwagwoord bygewerk</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Werk hoofwagwoord by</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>U hoofwagwoord is onlangs deur ’n administrateur in u organisasie verander. Om toegang tot u kluis te verkry moet u u hoofwagwoord nóú bywerk. Deur voort te gaan word u uit u huidige sessie geteken, waarna u weer sal moet aanteken. Aktiewe sessies op ander toestelle kan vir tot ’n uur steeds aktief bly.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Wagwoord word bygewerk</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Kan nie tans u wagwoord bywerk nie</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Om voort te gaan moet u FIDO2 WebAuthn-geaktiveerde sekerheidsleutel gereed wees, volg dan die instruksies nadat u op ‘Waarmerk Webauthn’ op die volgende skerm geklik het.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Waarmerking m.b.v. FIDO2 WebAuthn, u kan waarmerk m.b.v. ’n eksterne sekerheidsleutel.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Waarmerk WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Terug na die toep</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Maak seker u verstekwebblaaier ondersteun WebAuthn en probeer weer.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Hierdie organisasie het ’n ondernemingsbeleid wat u outomaties inskryf in die terugstel van u wagwoord. Inskrywing stel organisasiebeheerders in staat om u hoofwagwoord te wysig.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>U organisasiebeleide beïnvloed u kluisuitelling. Maksimum toegelate kluisuittelling is {0} uur en {1} minuut(e).</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>U kluisuittelling oorskry die beperkinge wat deur u organisasie daargestel is.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Een of meer organisasiebeleide verhoed u om u persoonlike kluis uit te stuur.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -128,7 +128,7 @@
|
|||||||
<value>Qovluq əlavə et</value>
|
<value>Qovluq əlavə et</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AddItem" xml:space="preserve">
|
<data name="AddItem" xml:space="preserve">
|
||||||
<value>Element əlavə et</value>
|
<value>Maddə əlavə edin</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>İmtina</value>
|
<value>Ləğv et</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">
|
||||||
@@ -152,11 +152,11 @@
|
|||||||
<comment>Copy some value to your clipboard.</comment>
|
<comment>Copy some value to your clipboard.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyPassword" xml:space="preserve">
|
<data name="CopyPassword" xml:space="preserve">
|
||||||
<value>Şifrəni kopyala</value>
|
<value>Parolu kopyala</value>
|
||||||
<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>İstifadəçi adını kopyala</value>
|
<value>İstifadəçi adını kopyalayın</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">
|
||||||
@@ -176,7 +176,7 @@
|
|||||||
<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>Düzəliş et</value>
|
<value>Redaktə edin</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EditFolder" xml:space="preserve">
|
<data name="EditFolder" xml:space="preserve">
|
||||||
<value>Qovluğa düzəliş et</value>
|
<value>Qovluğa düzəliş et</value>
|
||||||
@@ -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>Etibarsız ana şifrə. Yenidən sınayın.</value>
|
<value>Etibarsız ana parol. Yenidən sınayın.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="InvalidPIN" xml:space="preserve">
|
<data name="InvalidPIN" xml:space="preserve">
|
||||||
<value>Etibarsız PIN. Yenidən sınayın.</value>
|
<value>Etibarsız PIN. Yenidən sınayın.</value>
|
||||||
@@ -276,7 +276,7 @@
|
|||||||
<value>Çıxış etmək istədiyinizə əminsiniz?</value>
|
<value>Çıxış etmək istədiyinizə əminsiniz?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPassword" xml:space="preserve">
|
<data name="MasterPassword" xml:space="preserve">
|
||||||
<value>Ana şifrə</value>
|
<value>Ana parol</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">
|
||||||
@@ -303,13 +303,16 @@
|
|||||||
<comment>Acknowledgement.</comment>
|
<comment>Acknowledgement.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Password" xml:space="preserve">
|
<data name="Password" xml:space="preserve">
|
||||||
<value>Şifrə</value>
|
<value>Parol</value>
|
||||||
<comment>Label for a password.</comment>
|
<comment>Label for a password.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Save" xml:space="preserve">
|
<data name="Save" xml:space="preserve">
|
||||||
<value>Saxla</value>
|
<value>Saxla</value>
|
||||||
<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">
|
||||||
|
<value>Daşı</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Saxlanılır...</value>
|
<value>Saxlanılır...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -363,7 +366,7 @@
|
|||||||
<value>Barmaq izini təsdiqlə</value>
|
<value>Barmaq izini təsdiqlə</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerifyMasterPassword" xml:space="preserve">
|
<data name="VerifyMasterPassword" xml:space="preserve">
|
||||||
<value>Ana şifrəni təsdiqlə</value>
|
<value>Ana parolu təsdiqlə</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerifyPIN" xml:space="preserve">
|
<data name="VerifyPIN" xml:space="preserve">
|
||||||
<value>PIN-i təsdiqlə</value>
|
<value>PIN-i təsdiqlə</value>
|
||||||
@@ -430,10 +433,10 @@
|
|||||||
<value>E-poçt ünvanınızı bitwarden.com veb anbarında dəyişdirə bilərsiniz. İndi saytı ziyarət etmək istəyirsiniz?</value>
|
<value>E-poçt ünvanınızı bitwarden.com veb anbarında dəyişdirə bilərsiniz. İndi saytı ziyarət etmək istəyirsiniz?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ChangeMasterPassword" xml:space="preserve">
|
<data name="ChangeMasterPassword" xml:space="preserve">
|
||||||
<value>Ana şifrəni dəyişdir</value>
|
<value>Ana parolu dəyişdir</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ChangePasswordConfirmation" xml:space="preserve">
|
<data name="ChangePasswordConfirmation" xml:space="preserve">
|
||||||
<value>Ana şifrənizi bitwarden.com veb anbarında dəyişdirə bilərsiniz. İndi saytı ziyarət etmək istəyirsiniz?</value>
|
<value>Ana parolunuzu bitwarden.com veb anbarında dəyişdirə bilərsiniz. İndi saytı ziyarət etmək istəyirsiniz?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Close" xml:space="preserve">
|
<data name="Close" xml:space="preserve">
|
||||||
<value>Bağla</value>
|
<value>Bağla</value>
|
||||||
@@ -455,7 +458,7 @@
|
|||||||
<value>Avto-eyniləşdirməni fəallaşdır</value>
|
<value>Avto-eyniləşdirməni fəallaşdır</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnterEmailForHint" xml:space="preserve">
|
<data name="EnterEmailForHint" xml:space="preserve">
|
||||||
<value>Ana şifrə 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 genişləndirməsini təkrar fəallaşdır</value>
|
||||||
@@ -471,7 +474,7 @@
|
|||||||
<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">
|
||||||
<value>Şifrələrinizə dərhal müraciət edin!</value>
|
<value>Parollarınıza dərhal müraciət edin!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionReady" xml:space="preserve">
|
<data name="ExtensionReady" xml:space="preserve">
|
||||||
<value>Giriş etmək üçün hazırsınız!</value>
|
<value>Giriş etmək üçün hazırsınız!</value>
|
||||||
@@ -495,10 +498,10 @@
|
|||||||
<value>Barmaq izi</value>
|
<value>Barmaq izi</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GeneratePassword" xml:space="preserve">
|
<data name="GeneratePassword" xml:space="preserve">
|
||||||
<value>Şifrə yarat</value>
|
<value>Parol yarat</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GetPasswordHint" xml:space="preserve">
|
<data name="GetPasswordHint" xml:space="preserve">
|
||||||
<value>Ana şifrə üçü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 idxal et</value>
|
||||||
@@ -507,7 +510,7 @@
|
|||||||
<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 idxal edə 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 şifrə 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 idxal edin.</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,19 +556,19 @@
|
|||||||
<value>İdarə et</value>
|
<value>İdarə et</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordConfirmationValMessage" xml:space="preserve">
|
<data name="MasterPasswordConfirmationValMessage" xml:space="preserve">
|
||||||
<value>Şifrə təsdiqləmə doğru deyil.</value>
|
<value>Parol təsdiqləmə doğru deyil.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordDescription" xml:space="preserve">
|
<data name="MasterPasswordDescription" xml:space="preserve">
|
||||||
<value>Ana şifrə, anbarınıza müraciət etmək üçün istifadə edəcəyiniz şifrədir. Ana şifrəni yadda saxlamaq çox vacibdir. Unutsanız, şifrəni bərpa etməyin heç bir yolu yoxdur.</value>
|
<value>Ana parol, anbarınıza müraciət etmək üçün istifadə edəcəyiniz şifrədir. Ana parolu yadda saxlamaq çox vacibdir. Unutsanız, parolu bərpa etməyin heç bir yolu yoxdur.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordHint" xml:space="preserve">
|
<data name="MasterPasswordHint" xml:space="preserve">
|
||||||
<value>Ana şifrə məsləhəti (ixtiyari)</value>
|
<value>Ana parol məsləhəti (ixtiyari)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordHintDescription" xml:space="preserve">
|
<data name="MasterPasswordHintDescription" xml:space="preserve">
|
||||||
<value>Ana şifrə məsləhəti, unutduğunuz şifrənizi xatırlamağınıza kömək edir.</value>
|
<value>Ana parol məsləhəti, unutduğunuz parolu xatırlamağınıza kömək edir.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordLengthValMessage" xml:space="preserve">
|
<data name="MasterPasswordLengthValMessage" xml:space="preserve">
|
||||||
<value>Ana şifrə ən azı 8 simvol uzunluğunda olmalıdır.</value>
|
<value>Ana parol ən azı 8 simvol uzunluğunda olmalıdır.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MinNumbers" xml:space="preserve">
|
<data name="MinNumbers" xml:space="preserve">
|
||||||
<value>Minimum rəqəm</value>
|
<value>Minimum rəqəm</value>
|
||||||
@@ -597,14 +600,14 @@
|
|||||||
<value>Anbarınızda bu veb sayt/tətbiq üçün heç bir element yoxdur. Əlavə etmək üçün toxunun.</value>
|
<value>Anbarınızda bu veb sayt/tətbiq üçün heç bir element yoxdur. Əlavə etmək üçün toxunun.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoUsernamePasswordConfigured" xml:space="preserve">
|
<data name="NoUsernamePasswordConfigured" xml:space="preserve">
|
||||||
<value>Bu hesaba aid istifadəçi adı və ya şifrə yoxdur.</value>
|
<value>Bu hesaba aid istifadəçi adı və ya parol yoxdur.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="OkGotIt" xml:space="preserve">
|
<data name="OkGotIt" xml:space="preserve">
|
||||||
<value>Yaxşı, anladım!</value>
|
<value>Yaxşı, anladım!</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>İlkin tənzimləmələr, əsas Bitwarden tətbiqinin şifrə yaratma alətindən tənzimlənir.</value>
|
<value>İlkin tənzimləmələr, əsas Bitwarden tətbiqinin parol yaratma alətindən tənzimlənir.</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>
|
||||||
@@ -613,19 +616,19 @@
|
|||||||
<value>Digər</value>
|
<value>Digər</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordGenerated" xml:space="preserve">
|
<data name="PasswordGenerated" xml:space="preserve">
|
||||||
<value>Şifrə yaradıldı.</value>
|
<value>Parol yaradıldı.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordGenerator" xml:space="preserve">
|
<data name="PasswordGenerator" xml:space="preserve">
|
||||||
<value>Şifrə yaradıcı</value>
|
<value>Parol yaradıcı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordHint" xml:space="preserve">
|
<data name="PasswordHint" xml:space="preserve">
|
||||||
<value>Şifrə məsləhəti</value>
|
<value>Parol məsləhəti</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordHintAlert" xml:space="preserve">
|
<data name="PasswordHintAlert" xml:space="preserve">
|
||||||
<value>Ana şifrə məsləhətini ehtiva edən bir e-poçt göndərdik.</value>
|
<value>Ana parol məsləhətini ehtiva edən bir e-poçt göndərdik.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordOverrideAlert" xml:space="preserve">
|
<data name="PasswordOverrideAlert" xml:space="preserve">
|
||||||
<value>Hazırkı şifrənin üzərinə yazmaq istədiyinizə əminsiniz?</value>
|
<value>Hazırkı parolun üzərinə yazmaq istədiyinizə əminsiniz?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PushNotificationAlert" xml:space="preserve">
|
<data name="PushNotificationAlert" xml:space="preserve">
|
||||||
<value>Bitwarden, ani bildirişləri istifadə edərək anbarınızı avtomatik eyniləşdirir. Mümkün olan ən yaxşı təcrübəni təqdim etmək üçün, sizdən ani bildirişləri fəallaşdırmağı soruşanda növbəti ekranda "İcazə ver"i seçin.</value>
|
<value>Bitwarden, ani bildirişləri istifadə edərək anbarınızı avtomatik eyniləşdirir. Mümkün olan ən yaxşı təcrübəni təqdim etmək üçün, sizdən ani bildirişləri fəallaşdırmağı soruşanda növbəti ekranda "İcazə ver"i seçin.</value>
|
||||||
@@ -638,10 +641,10 @@
|
|||||||
<value>Gözəl bir rəy ilə bizə dəstək ola bilərsiniz!</value>
|
<value>Gözəl bir rəy ilə bizə dəstək ola bilərsiniz!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RegeneratePassword" xml:space="preserve">
|
<data name="RegeneratePassword" xml:space="preserve">
|
||||||
<value>Şifrəni yenidən yarat</value>
|
<value>Parolu yenidən yarat</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RetypeMasterPassword" xml:space="preserve">
|
<data name="RetypeMasterPassword" xml:space="preserve">
|
||||||
<value>Ana şifrəni yenidən yaz</value>
|
<value>Ana parolu yenidən yaz</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SearchVault" xml:space="preserve">
|
<data name="SearchVault" xml:space="preserve">
|
||||||
<value>Anbarda axtar</value>
|
<value>Anbarda axtar</value>
|
||||||
@@ -753,7 +756,7 @@
|
|||||||
<value>Sıradan çıxarıldı</value>
|
<value>Sıradan çıxarıldı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Enabled" xml:space="preserve">
|
<data name="Enabled" xml:space="preserve">
|
||||||
<value>Fəallaşdırdı</value>
|
<value>Fəallaşdırıldı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Status" xml:space="preserve">
|
<data name="Status" xml:space="preserve">
|
||||||
<value>Vəziyyət</value>
|
<value>Vəziyyət</value>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>"{0}" üçün avto-doldurma elementi axtarırsınız.</value>
|
<value>"{0}" üçün avto-doldurma elementi axtarırsınız.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Anbarınızı paylaşın</value>
|
<value>Təşkilatlar barədə daha ətraflı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>"{0}" tətbiqi açıla bilmir.</value>
|
<value>"{0}" tətbiqi açıla bilmir.</value>
|
||||||
@@ -1249,7 +1252,7 @@
|
|||||||
<value>Əlçatımlılıq xidməti, standart avto-doldurma xidmətini dəstəkləməyən tətbiqlərdə kömək edə bilər.</value>
|
<value>Əlçatımlılıq xidməti, standart avto-doldurma xidmətini dəstəkləməyən tətbiqlərdə kömək edə bilər.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DatePasswordUpdated" xml:space="preserve">
|
<data name="DatePasswordUpdated" xml:space="preserve">
|
||||||
<value>Şifrə yeniləndi</value>
|
<value>Parol yeniləndi</value>
|
||||||
<comment>ex. Date this password was updated</comment>
|
<comment>ex. Date this password was updated</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="DateUpdated" xml:space="preserve">
|
<data name="DateUpdated" xml:space="preserve">
|
||||||
@@ -1269,19 +1272,19 @@
|
|||||||
<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>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>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillDescription" xml:space="preserve">
|
<data name="BitwardenAutofillDescription" xml:space="preserve">
|
||||||
<value>Şifrələrinizin 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>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn" xml:space="preserve">
|
<data name="AutofillTurnOn" xml:space="preserve">
|
||||||
<value>Cihazınızda şifrənin 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 "Tənzimləmələri"nə gedin</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn2" xml:space="preserve">
|
<data name="AutofillTurnOn2" xml:space="preserve">
|
||||||
<value>2. "Şifrələr və Hesablar"a toxunun.</value>
|
<value>2. "Parollar və Hesablar"a toxunun.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn3" xml:space="preserve">
|
<data name="AutofillTurnOn3" xml:space="preserve">
|
||||||
<value>3. "Şifrələri avto-doldur"a toxunun.</value>
|
<value>3. "Parolları avto-doldur"a toxunun.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn4" xml:space="preserve">
|
<data name="AutofillTurnOn4" xml:space="preserve">
|
||||||
<value>4. Avto-doldurmanı işə salın</value>
|
<value>4. Avto-doldurmanı işə salın</value>
|
||||||
@@ -1290,10 +1293,10 @@
|
|||||||
<value>5. "Bitwarden"i seçin</value>
|
<value>5. "Bitwarden"i seçin</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordAutofill" xml:space="preserve">
|
<data name="PasswordAutofill" xml:space="preserve">
|
||||||
<value>Şifrənin 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 şifrə 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 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>
|
||||||
</data>
|
</data>
|
||||||
<data name="InvalidEmail" xml:space="preserve">
|
<data name="InvalidEmail" xml:space="preserve">
|
||||||
<value>Etibarsız e-poçt ünvanı.</value>
|
<value>Etibarsız e-poçt ünvanı.</value>
|
||||||
@@ -1318,17 +1321,17 @@
|
|||||||
<comment>Plural form of a URI</comment>
|
<comment>Plural form of a URI</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="CheckingPassword" xml:space="preserve">
|
<data name="CheckingPassword" xml:space="preserve">
|
||||||
<value>Şifrə yoxlanılır...</value>
|
<value>Parol yoxlanılır...</value>
|
||||||
<comment>A loading message when doing an exposed password check.</comment>
|
<comment>A loading message when doing an exposed password check.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="CheckPassword" xml:space="preserve">
|
<data name="CheckPassword" xml:space="preserve">
|
||||||
<value>Şifrənizin oğurlanıb oğurlanmadığını yoxlayın.</value>
|
<value>Parolunuzun oğurlanıb oğurlanmadığını yoxlayın.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordExposed" xml:space="preserve">
|
<data name="PasswordExposed" xml:space="preserve">
|
||||||
<value>Bu şifrə, məlumat pozuntularında {0} dəfə üzə çıxıb. Dəyişdirməyi məsləhət görürük.</value>
|
<value>Bu parol, məlumat pozuntularında {0} dəfə üzə çıxıb. Dəyişdirməyi məsləhət görürük.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordSafe" xml:space="preserve">
|
<data name="PasswordSafe" xml:space="preserve">
|
||||||
<value>Bu şifrə, məlumat pozuntularında qeydə alınmayıb. Rahatlıqla istifadə edə bilərsiniz.</value>
|
<value>Bu parol, məlumat pozuntularında qeydə alınmayıb. Rahatlıqla istifadə edə bilərsiniz.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="IdentityName" xml:space="preserve">
|
<data name="IdentityName" xml:space="preserve">
|
||||||
<value>Kimlik adı</value>
|
<value>Kimlik adı</value>
|
||||||
@@ -1337,13 +1340,13 @@
|
|||||||
<value>Dəyər</value>
|
<value>Dəyər</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordHistory" xml:space="preserve">
|
<data name="PasswordHistory" xml:space="preserve">
|
||||||
<value>Şifrə tarixçəsi</value>
|
<value>Parol tarixçəsi</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Types" xml:space="preserve">
|
<data name="Types" xml:space="preserve">
|
||||||
<value>Növlər</value>
|
<value>Növlər</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoPasswordsToList" xml:space="preserve">
|
<data name="NoPasswordsToList" xml:space="preserve">
|
||||||
<value>Siyahılanacaq şifrə yoxdur.</value>
|
<value>Siyahılanacaq parol yoxdur.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoItemsToList" xml:space="preserve">
|
<data name="NoItemsToList" xml:space="preserve">
|
||||||
<value>Siyahılanacaq heç bir element yoxdur.</value>
|
<value>Siyahılanacaq heç bir element yoxdur.</value>
|
||||||
@@ -1361,10 +1364,10 @@
|
|||||||
<value>Növ</value>
|
<value>Növ</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MoveDown" xml:space="preserve">
|
<data name="MoveDown" xml:space="preserve">
|
||||||
<value>Aşağı köçür</value>
|
<value>Aşağı daşı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MoveUp" xml:space="preserve">
|
<data name="MoveUp" xml:space="preserve">
|
||||||
<value>Yuxarı köçür</value>
|
<value>Yuxarı daşı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Miscellaneous" xml:space="preserve">
|
<data name="Miscellaneous" xml:space="preserve">
|
||||||
<value>Müxtəlif</value>
|
<value>Müxtəlif</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Siyahılanacaq heç bir kolleksiya yoxdur.</value>
|
<value>Siyahılanacaq heç bir kolleksiya yoxdur.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0}, {1} ünvanına daşındı.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Element paylaşıldı.</value>
|
<value>Element paylaşıldı.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Elementi paylaş</value>
|
<value>Elementi paylaş</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Təşkilata daşı</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Siyahılanacaq heç bir təşkilat yoxdur.</value>
|
<value>Siyahılanacaq heç bir təşkilat yoxdur.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Bu elementi paylaşmaq istədiyiniz təşkilatı seçin. Paylaşma, elementin sahibliyini təşkilata transfer edir. Paylaşdıqdan sonra birbaşa sahibliyiniz olmayacaq.</value>
|
<value>Bu elementi daşımaq istədiyiniz təşkilatı seçin. Bir təşkilata daşımaq, elementin sahibliyini də həmin təşkilata daşıyacaq. Daşıdıqdan sonra bu elementə birbaşa sahibliyiniz olmayacaq.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Söz sayı</value>
|
<value>Söz sayı</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Hesabınızın barmaq izi ifadəsi</value>
|
<value>Hesabınızın barmaq izi ifadəsi</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden, bir təşkilat hesabı istifadə edərək anbarınızı 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ı ixrac et</value>
|
||||||
@@ -1450,7 +1460,7 @@
|
|||||||
<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 şifrənizi təsdiqləyin.</value>
|
<value>Anbarınız kilidlənib. Davam etmək üçün ana parolunuzu təsdiqləyin.</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 təsdiqləyin.</value>
|
||||||
@@ -1491,7 +1501,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>Avto-doldurma kimim əməliyyatları icra edərkən giriş etmə prosesi üçün URI uyğunluq aşkarlamasının ilkin yolunu seçin.</value>
|
<value>Avto-doldurma kimi əməliyyatları icra edərkən giriş etmə prosesi üçün URI uyğunluq aşkarlamasının ilkin yolunu seçin.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Theme" xml:space="preserve">
|
<data name="Theme" xml:space="preserve">
|
||||||
<value>Tema</value>
|
<value>Tema</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Tətbiqin rəng temasını dəyişdirin.</value>
|
<value>Tətbiqin rəng temasını dəyişdirin.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Yenidən başlatma tələb olunur.</value>
|
<value>İlkin (Sistem)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Yenidən başladılır...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Qeydləri kopyala</value>
|
<value>Qeydləri kopyala</value>
|
||||||
@@ -1517,7 +1523,7 @@
|
|||||||
<value>Bitwarden-dən çıxış etmək istədiyinizə əminsiniz?</value>
|
<value>Bitwarden-dən çıxış etmək istədiyinizə əminsiniz?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PINRequireMasterPasswordRestart" xml:space="preserve">
|
<data name="PINRequireMasterPasswordRestart" xml:space="preserve">
|
||||||
<value>Tətbiq yenidən başladılanda ana şifrə ilə kilid açılmasını məcburi etmək istəyirsiniz?</value>
|
<value>Tətbiq yenidən başladılanda ana parol ilə kilid açılmasını məcburi etmək istəyirsiniz?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Black" xml:space="preserve">
|
<data name="Black" xml:space="preserve">
|
||||||
<value>Qara</value>
|
<value>Qara</value>
|
||||||
@@ -1597,7 +1603,7 @@
|
|||||||
<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 şifrənizi daxil edin.</value>
|
<value>Anbar verilənlərinizi ixrac etmək üçün ana parolunuzu daxil edin.</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ı saxlamamalı və etibarsız yollarla (e-poçt kimi) göndərməməlisiniz. Bu faylı işiniz bitdikdən sonra dərhal silin.</value>
|
<value>Bu ixrac faylındakı anbar verilənləriniz şifrələnməmiş formatdadır. İxrac edilən faylı saxlamamalı və etibarsız yollarla (e-poçt kimi) göndərməməlisiniz. Bu faylı işiniz bitdikdən sonra dərhal silin.</value>
|
||||||
@@ -1606,7 +1612,7 @@
|
|||||||
<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>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>
|
||||||
</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əli 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 ixracı, fərqli bir hesaba idxal edə 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 ixracını təsdiqləyin</value>
|
||||||
@@ -1642,7 +1648,7 @@
|
|||||||
<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 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>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTileUriNotFound" xml:space="preserve">
|
<data name="AutofillTileUriNotFound" xml:space="preserve">
|
||||||
<value>Heç bir şifrə sahəsi aşkarlanmadı</value>
|
<value>Heç bir parol sahəsi aşkarlanmadı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SoftDeleting" xml:space="preserve">
|
<data name="SoftDeleting" xml:space="preserve">
|
||||||
<value>Tullantı qutusuna göndərilir...</value>
|
<value>Tullantı qutusuna göndərilir...</value>
|
||||||
@@ -1685,10 +1691,10 @@
|
|||||||
<comment>Confirmation alert message when soft-deleting a cipher.</comment>
|
<comment>Confirmation alert message when soft-deleting a cipher.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="BiometricInvalidated" xml:space="preserve">
|
<data name="BiometricInvalidated" xml:space="preserve">
|
||||||
<value>Ana şifrənin təsdiqlənməsi gözlənildiyi üçün biometrik kilid açma sıradan çıxarıldı.</value>
|
<value>Ana parolun təsdiqlənməsi gözlənildiyi üçün biometrik kilid açma sıradan çıxarıldı.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BiometricInvalidatedExtension" xml:space="preserve">
|
<data name="BiometricInvalidatedExtension" xml:space="preserve">
|
||||||
<value>Ana şifrənin təsdiqlənməsi gözlənildiyi üçün avto-doldurma üzrə biometrik kilid açma sıradan çıxarıldı.</value>
|
<value>Ana parolun təsdiqlənməsi gözlənildiyi üçün avto-doldurma üzrə 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>
|
||||||
@@ -1709,13 +1715,13 @@
|
|||||||
<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 şifrəni tənzimlə</value>
|
<value>Ana parolu tənzimlə</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 zəhmət olmasa anbarınıza müraciət etmək və onu qorumaq üçün bir ana şifrə tənzimləyin.</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 şifrənizi 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>
|
||||||
</data>
|
</data>
|
||||||
<data name="PolicyInEffectMinComplexity" xml:space="preserve">
|
<data name="PolicyInEffectMinComplexity" xml:space="preserve">
|
||||||
<value>Minimum mürəkkəblik xalı: {0}</value>
|
<value>Minimum mürəkkəblik xalı: {0}</value>
|
||||||
@@ -1736,10 +1742,10 @@
|
|||||||
<value>Bu özəl simvollardan biri və ya daha çoxunu ehtiva etməlidir: {0}</value>
|
<value>Bu özəl simvollardan biri və ya daha çoxunu ehtiva etməlidir: {0}</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordPolicyValidationTitle" xml:space="preserve">
|
<data name="MasterPasswordPolicyValidationTitle" xml:space="preserve">
|
||||||
<value>Etibarsız şifrə</value>
|
<value>Etibarsız parol</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordPolicyValidationMessage" xml:space="preserve">
|
<data name="MasterPasswordPolicyValidationMessage" xml:space="preserve">
|
||||||
<value>Şifrə, ş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. Zəhmət olmasa 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>
|
||||||
@@ -1873,23 +1879,23 @@
|
|||||||
<value>Hazırkı müraciət sayı</value>
|
<value>Hazırkı müraciət sayı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NewPassword" xml:space="preserve">
|
<data name="NewPassword" xml:space="preserve">
|
||||||
<value>Yeni şifrə</value>
|
<value>Yeni parol</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordInfo" xml:space="preserve">
|
<data name="PasswordInfo" xml:space="preserve">
|
||||||
<value>İstəyinizə görə istifadəçilərdən bu "Send"ə müraciət edərkən şifrə tələb edə bilərsiniz.</value>
|
<value>İstəyinizə görə istifadəçilərdən bu "Send"ə müraciət edərkən parol tələb edə 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="RemovePassword" xml:space="preserve">
|
<data name="RemovePassword" xml:space="preserve">
|
||||||
<value>Şifrəni çıxart</value>
|
<value>Parolu çıxart</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AreYouSureRemoveSendPassword" xml:space="preserve">
|
<data name="AreYouSureRemoveSendPassword" xml:space="preserve">
|
||||||
<value>Şifrəni çıxartmaq istədiyinizə əminsiniz?</value>
|
<value>Parolu çıxartmaq istədiyinizə əminsiniz?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RemovingSendPassword" xml:space="preserve">
|
<data name="RemovingSendPassword" xml:space="preserve">
|
||||||
<value>Şifrə çıxarılır</value>
|
<value>Parol çıxarılır</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SendPasswordRemoved" xml:space="preserve">
|
<data name="SendPasswordRemoved" xml:space="preserve">
|
||||||
<value>Şifrə çıxarıldı.</value>
|
<value>Parol çıxarıldı.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NotesInfo" xml:space="preserve">
|
<data name="NotesInfo" xml:space="preserve">
|
||||||
<value>Bu "Send" ilə bağlı gizli qeydlər.</value>
|
<value>Bu "Send" ilə bağlı gizli qeydlər.</value>
|
||||||
@@ -1991,12 +1997,63 @@
|
|||||||
<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">
|
||||||
<value>Ana şifrəni yenidə istə</value>
|
<value>Ana parolu təkrar soruş</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordConfirmation" xml:space="preserve">
|
<data name="PasswordConfirmation" xml:space="preserve">
|
||||||
<value>Ana şifrə 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 şifrənizi təkrar daxil edin.</value>
|
<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>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha tələb olunur</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha uğursuz oldu. Zəhmət olmasa yenidən sınayın.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Yenilənmiş ana parol</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Ana parolu yenilə</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Ana parolunuz təzəlikcə təşkilatınızdakı bir administrator tərəfindən dəyişdirildi. Anbara müraciət üçün Ana parolunuzu indi yeniləməlisiniz. Davam etsəniz, hazırkı seansdan çıxış etmiş və təkrar giriş etməli olacaqsınız. Digər cihazlardakı aktiv seanslar bir saata qədər aktiv qalmağa davam edə bilər.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Parol yenilənir</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Hazırda parol yenilənə bilmir</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Davam etmək üçün FIDO2 WebAuthn fəal güvənlik açarınızı hazır saxlayın, daha sonra növbəti ekranda "WebAuthn-u təsdiqlə"yə kliklədikdən sonra təlimatları izləyin.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Kimlik təsdiqləmə, FIDO2 WebAuthn istifadə edir, xarici güvənlik açarı istifadə edərək kimliyi təsdiqləyə bilərsiniz.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>WebAuthn-u təsdiqlə</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Tətbiqə qayıt</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Zəhmət olmasa ilkin səyyahınızın WebAuthn-u təsdiqlədiyinə əmin olub yenidən sınayın.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Bu təşkilat, sizi "parol sıfırlama"da avtomatik olaraq qeydiyyata alan müəssisə siyasətinə sahibdir. Qeydiyyat, təşkilat administratorlarına ana parolunuzu dəyişdirmə icazəsi verəcək.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" 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 $HOURS$ saat $MINUTES$ dəqiqədir</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Anbar vaxt bitişi, təşkilatınız tərəfindən tənzimlənən məhdudiyyətləri aşır.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Bir və ya daha çox təşkilat siyasəti, fərdi anbarınızı ixrac etməyinizin qarşısını alır.</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Захаваць</value>
|
<value>Захаваць</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Вы шукаеце элемент аўтазапаўнення для "{0}".</value>
|
<value>Вы шукаеце элемент аўтазапаўнення для "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Абагуліць ваша сховішча</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Немагчыма адкрыць праграму "{0}".</value>
|
<value>Немагчыма адкрыць праграму "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Няма калекцый для паказу.</value>
|
<value>Няма калекцый для паказу.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Элемент быў абагулены.</value>
|
<value>Элемент быў абагулены.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Абагуліць элемент</value>
|
<value>Абагуліць элемент</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Няма арганізацый для паказу.</value>
|
<value>Няма арганізацый для паказу.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Выберыце арганізацыю, якой вы хочаце даць доступ да гэтага элемента. Пасля выканання гэтай аперацыі, правы на элемент будуць перададзены арганізацыі і вы не будзеце з'яўляцца непасрэдным уладальнікам гэтага элемента.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Колькасць слоў</value>
|
<value>Колькасць слоў</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Фраза адбітка пальца вашага ўліковага запісу</value>
|
<value>Фраза адбітка пальца вашага ўліковага запісу</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden дазваляе абагуліць сваё сховішча з іншымі карыстальнікамі, выкарыстоўваючы ўліковы запіс арганізацыі. Хочаце наведаць сайт bitwarden.com, каб даведацца больш?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Экспарт сховішча</value>
|
<value>Экспарт сховішча</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Змена колеравай тэмы праграмы.</value>
|
<value>Змена колеравай тэмы праграмы.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Патрабуецца перазапуск.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Перазапуск...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Капіяваць нататк</value>
|
<value>Капіяваць нататк</value>
|
||||||
@@ -1863,7 +1869,7 @@
|
|||||||
<value>Maximum Access Count</value>
|
<value>Maximum Access Count</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
||||||
<value>If set, users will no longer be able to access this send once the maximum access count is reached.</value>
|
<value>If set, users will no longer be able to access this Send once the maximum access count is reached.</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">
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Гэтае дзеянне ахоўваецца, для працягу зноў увядзіце пароль для праверкі асобы.</value>
|
<value>Гэтае дзеянне ахоўваецца, для працягу зноў увядзіце пароль для праверкі асобы.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Запазване</value>
|
<value>Запазване</value>
|
||||||
<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">
|
||||||
|
<value>Преместване</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Търсене на запис за автоматично дописване на „{0}“.</value>
|
<value>Търсене на запис за автоматично дописване на „{0}“.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Споделяне на трезора ви</value>
|
<value>Разберете повече за организациите</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Програмата „{0}“ не може да се отвори.</value>
|
<value>Програмата „{0}“ не може да се отвори.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Няма колекции за показване.</value>
|
<value>Няма колекции за показване.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} се премести в {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Записът е споделен.</value>
|
<value>Записът е споделен.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Споделяне на запис</value>
|
<value>Споделяне на запис</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Преместване в организация</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Няма организации за показване.</value>
|
<value>Няма организации за показване.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Изберете организацията, с която искате да споделите записа. Споделянето ѝ прехвърля собствеността. След това няма вече директно да го притежавате.</value>
|
<value>Изберете организацията, в която искате да преместите записа. Преместването прехвърля собствеността му към новата организация. След това няма вече директно да го притежавате.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Брой думи</value>
|
<value>Брой думи</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Уникална фраза, идентифицираща абонамента ви</value>
|
<value>Уникална фраза, идентифицираща абонамента ви</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Битуорден позволява да споделяте части от трезора си чрез регистрация на организация. Искате ли да научите повече от сайта bitwarden.com?</value>
|
<value>Битуорден позволява да споделяте записите в трезора си чрез регистрация на организация. Искате ли да научите повече от сайта bitwarden.com?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Изнасяне на трезора</value>
|
<value>Изнасяне на трезора</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Промяна на цветовия облик на програмата.</value>
|
<value>Промяна на цветовия облик на програмата.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Необходимо е повторно пускане.</value>
|
<value>По подразбиране (от системата)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Повторно пускане…</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Копиране на бележките</value>
|
<value>Копиране на бележките</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Това действие е защитено. За да продължите, въведете отново главната си парола, за да потвърдите самоличността си.</value>
|
<value>Това действие е защитено. За да продължите, въведете отново главната си парола, за да потвърдите самоличността си.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Главната парола е променена</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Промяна на главната парола</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Вашата главна парола наскоро е била сменена от администратор в организацията Ви. За да получите достъп до трезора, трябва да промените главната си парола сега. Това означава, че ще бъдете отписан(а) от текущата си сесия и ще трябва да се впишете отново. Активните сесии на други устройства може да продължат да бъдат активни още един час.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Обновяване на паролата</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>В момента паролата не може да бъде обновена</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Идентификация чрез FIDO2 WebAuthn – можете да се идентифицирате чрез външен ключ за сигурност.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Назад към приложението</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Уверете се, че използваният браузър поддържа WebAuthn и опитайте отново.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Тази организация включва автоматично новите си потребители в смяната на пароли. Това означава, че администраторите на организацията ще могат да променят главната Ви парола.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Настройките на организацията Ви влияят върху времето за достъп до трезора Ви. Максималното разрешено време за достъп е {0} час(а) и {1} минути</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Времето за достъп до трезора Ви превишава ограничението, определено от организацията Ви.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Една или повече от настройките на организацията Ви не позволяват да изнасяте личния си трезор.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Save</value>
|
<value>Save</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Saving...</value>
|
<value>Saving...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>You are searching for an auto-fill item for "{0}".</value>
|
<value>You are searching for an auto-fill item for "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>আপনার ভল্ট ভাগ করুন</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Cannot open the app "{0}".</value>
|
<value>Cannot open the app "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>তালিকার জন্য কোনও সংগ্রহ নেই।</value>
|
<value>তালিকার জন্য কোনও সংগ্রহ নেই।</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Item has been shared.</value>
|
<value>Item has been shared.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Share Item</value>
|
<value>Share Item</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>No organizations to list.</value>
|
<value>No organizations to list.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Choose an organization that you wish to share this item with. Sharing transfers ownership of the item to the organization. You will no longer be the direct owner of this item once it has been shared.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Number of Words</value>
|
<value>Number of Words</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Your account's fingerprint phrase</value>
|
<value>Your account's fingerprint phrase</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden allows you to share your vault with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Export Vault</value>
|
<value>Export Vault</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>অ্যাপ্লিকেশনটির রং থিম পরিবর্তন।</value>
|
<value>অ্যাপ্লিকেশনটির রং থিম পরিবর্তন।</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Restart is required.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Restarting...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copy Notes</value>
|
<value>Copy Notes</value>
|
||||||
@@ -1864,7 +1870,7 @@
|
|||||||
<value>Maximum Access Count</value>
|
<value>Maximum Access Count</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
||||||
<value>If set, users will no longer be able to access this send once the maximum access count is reached.</value>
|
<value>If set, users will no longer be able to access this Send once the maximum access count is reached.</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">
|
||||||
@@ -2000,4 +2006,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Sačuvajte</value>
|
<value>Sačuvajte</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Čuvanje...</value>
|
<value>Čuvanje...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Tražite stavku sa automatskim popunjavanjem za „{0}“.</value>
|
<value>Tražite stavku sa automatskim popunjavanjem za „{0}“.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Podijelite Vaš trezor</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Nemogućnost otvoranja aplikacije „{0}“.</value>
|
<value>Nemogućnost otvoranja aplikacije „{0}“.</value>
|
||||||
@@ -1249,7 +1252,7 @@
|
|||||||
<value>The accessibility service may be helpful to use when apps do not support the standard auto-fill service.</value>
|
<value>The accessibility service may be helpful to use when apps do not support the standard auto-fill service.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DatePasswordUpdated" xml:space="preserve">
|
<data name="DatePasswordUpdated" xml:space="preserve">
|
||||||
<value>Password Updated</value>
|
<value>Zadnji datum kada je lozinka ažurirana</value>
|
||||||
<comment>ex. Date this password was updated</comment>
|
<comment>ex. Date this password was updated</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="DateUpdated" xml:space="preserve">
|
<data name="DateUpdated" xml:space="preserve">
|
||||||
@@ -1257,22 +1260,22 @@
|
|||||||
<comment>ex. Date this item was updated</comment>
|
<comment>ex. Date this item was updated</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillActivated" xml:space="preserve">
|
<data name="AutofillActivated" xml:space="preserve">
|
||||||
<value>AutoFill Activated!</value>
|
<value>Automatsko popunjavanje lozinke aktivirano!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MustLogInMainAppAutofill" xml:space="preserve">
|
<data name="MustLogInMainAppAutofill" xml:space="preserve">
|
||||||
<value>You must log into the main Bitwarden app before you can use AutoFill.</value>
|
<value>Morate se prijaviti na glavnu Bitwarden aplikaciju prije nego što možete koristiti dodatak.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillSetup" xml:space="preserve">
|
<data name="AutofillSetup" xml:space="preserve">
|
||||||
<value>Your logins are now easily accessible right from your keyboard while logging into apps and websites.</value>
|
<value>Vaši podaci za prijavu su sada lakše dostupni putem Vaše tastature prilikom prijave na aplikacije i web stranice</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillSetup2" xml:space="preserve">
|
<data name="AutofillSetup2" xml:space="preserve">
|
||||||
<value>We recommend disabling any other AutoFill apps under Settings if you do not plan to use them.</value>
|
<value>Preporučeno je onemogućiti bilo koje druge aplikacije za automatsko popunjavanje lozinki u Postavkama uređaja ukoliko ih ne planirate koristiti.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillDescription" xml:space="preserve">
|
<data name="BitwardenAutofillDescription" xml:space="preserve">
|
||||||
<value>Access your vault directly from your keyboard to quickly autofill passwords.</value>
|
<value>Pristupite vašem trezoru direktno putem vaše tastature da brže unesete vaše lozinke. </value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn" xml:space="preserve">
|
<data name="AutofillTurnOn" xml:space="preserve">
|
||||||
<value>To enable password autofill on your device, follow these instructions:</value>
|
<value>Da bi omogućili automatsko popunjavanje lozinki na vašem uređaju, molimo vas da pratite sljedeće upute:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTurnOn1" xml:space="preserve">
|
<data name="AutofillTurnOn1" xml:space="preserve">
|
||||||
<value>1. Go to the iOS "Settings" app</value>
|
<value>1. Go to the iOS "Settings" app</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>There are no collections to list.</value>
|
<value>There are no collections to list.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Item has been shared.</value>
|
<value>Item has been shared.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Share Item</value>
|
<value>Share Item</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>No organizations to list.</value>
|
<value>No organizations to list.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Choose an organization that you wish to share this item with. Sharing transfers ownership of the item to the organization. You will no longer be the direct owner of this item once it has been shared.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Number of Words</value>
|
<value>Number of Words</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Your account's fingerprint phrase</value>
|
<value>Your account's fingerprint phrase</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden allows you to share your vault with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Export Vault</value>
|
<value>Export Vault</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Change the application's color theme.</value>
|
<value>Change the application's color theme.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Restart is required.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Restarting...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copy Notes</value>
|
<value>Copy Notes</value>
|
||||||
@@ -1864,7 +1870,7 @@
|
|||||||
<value>Maximum Access Count</value>
|
<value>Maximum Access Count</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
||||||
<value>If set, users will no longer be able to access this send once the maximum access count is reached.</value>
|
<value>If set, users will no longer be able to access this Send once the maximum access count is reached.</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">
|
||||||
@@ -2000,4 +2006,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Guarda</value>
|
<value>Guarda</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>S'està guardant...</value>
|
<value>S'està guardant...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Esteu buscant un element d'emplenament automàtic per a "{0}".</value>
|
<value>Esteu buscant un element d'emplenament automàtic per a "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Compartiu la vostra caixa forta</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>No es pot obrir l'aplicació "{0}".</value>
|
<value>No es pot obrir l'aplicació "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>No hi ha cap col·lecció per llistar.</value>
|
<value>No hi ha cap col·lecció per llistar.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>L'element s'ha compartit.</value>
|
<value>L'element s'ha compartit.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Comparteix l'element</value>
|
<value>Comparteix l'element</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>No hi ha cap organització per llistar.</value>
|
<value>No hi ha cap organització per llistar.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Trieu una organització amb la qual vulgueu compartir aquest element. En compartir transferiu la propietat de l'element a l'organització. Ja no sereu el propietari directe d'aquest element una vegada que s'haja compartit.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Nombre de paraules</value>
|
<value>Nombre de paraules</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Frase d'empremta digital del vostre compte</value>
|
<value>Frase d'empremta digital del vostre 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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden us permet compartir la vostra caixa forta amb altres usuaris mitjançant un compte d'organització. Voleu visitar el lloc web de bitwarden.com per obtenir més informació?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Exporta caixa forta</value>
|
<value>Exporta caixa forta</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Canvia el color del tema de l'aplicació.</value>
|
<value>Canvia el color del tema de l'aplicació.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Cal que reinicieu l'aplicació.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>S'està reiniciant...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copia notes</value>
|
<value>Copia notes</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Uložit</value>
|
<value>Uložit</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Ukládání...</value>
|
<value>Ukládání...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Hledáte přihlašovací údaje k automatickému vyplnění pro „{0}“.</value>
|
<value>Hledáte přihlašovací údaje k automatickému vyplnění pro „{0}“.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Sdílet trezor</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Aplikaci „{0}“ nelze otevřít.</value>
|
<value>Aplikaci „{0}“ nelze otevřít.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Žádné kolekce k zobrazení.</value>
|
<value>Žádné kolekce k zobrazení.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Položka byla sdílena.</value>
|
<value>Položka byla sdílena.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Sdílet položku</value>
|
<value>Sdílet položku</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Žádné organizace k zobrazení.</value>
|
<value>Žádné organizace k zobrazení.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Vyberte organizaci se kterou chcete tuto položku sdílet. Sdílení přenese vlastnictví položky na onu organizaci a již nadále nebudete přímým vlastníkem.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Počet slov</value>
|
<value>Počet slov</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Fráze otisku prstu vašeho účtu</value>
|
<value>Fráze otisku prstu vašeho účtu</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden umožňuje sdílet váš trezor s ostatními prostřednictvím účtu organizace. Chcete přejít na bitwarden.com a dozvědět se víc?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Exportovat přihlašovací údaje</value>
|
<value>Exportovat přihlašovací údaje</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Změna barevného motivu aplikace.</value>
|
<value>Změna barevného motivu aplikace.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Je vyžadován restart.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Restartování…</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Kopírovat poznámky</value>
|
<value>Kopírovat poznámky</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Tato akce je chráněna. Chcete-li pokračovat, zadejte znovu vaše hlavní heslo, abychom ověřili vaší totožnost.</value>
|
<value>Tato akce je chráněna. Chcete-li pokračovat, zadejte znovu vaše hlavní heslo, abychom ověřili vaší totožnost.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Gem</value>
|
<value>Gem</value>
|
||||||
<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">
|
||||||
|
<value>Flyt</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Gemmer...</value>
|
<value>Gemmer...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Du søger efter et autoudfyld element til "{0}".</value>
|
<value>Du søger efter et autoudfyld element til "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Del din boks</value>
|
<value>Få mere at vide om organisationer</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Kan ikke åbne appen "{0}".</value>
|
<value>Kan ikke åbne appen "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Der er ingen samlinger at vise.</value>
|
<value>Der er ingen samlinger at vise.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} flyttet til {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Element er blevet delt.</value>
|
<value>Element er blevet delt.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Del element</value>
|
<value>Del element</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Flyt til organisation</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Ingen organisationer at vise.</value>
|
<value>Ingen organisationer at vise.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Vælg en organisation, som du ønsker at dele dette element med. Deling overfører ejerskab af elementet til organisationen. Du vil ikke længere være den direkte ejer af dette element, når det er blevet delt.</value>
|
<value>Vælg den organisation, hvortil dette emne skal flyttes. Flytning overfører ejerskabet af emnet til målorganisationen, og du vil efter flytningen ikke længere være den direkte ejer af emnet.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Antal ord</value>
|
<value>Antal ord</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Din kontos fingeraftrykssætning</value>
|
<value>Din kontos fingeraftrykssætning</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden giver dig mulighed for at dele din boks med andre ved at bruge en organisationskonto. Vil du besøge webstedet bitwarden.com for at få mere at vide?</value>
|
<value>Bitwarden muliggør deling af din Boks med andre ved brug af en organisationskonto. Besøg webstedet bitwarden.com for at få mere at vide?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Eksportér boks</value>
|
<value>Eksportér boks</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Skift app'ens farvetema.</value>
|
<value>Skift app'ens farvetema.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Genstart nødvendig.</value>
|
<value>Standard (system)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Genstarter...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Kopiér notater</value>
|
<value>Kopiér notater</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Denne handling er beskyttet. Angiv hovedadgangskoden igen for at bekræfte din identitet og fortsætte.</value>
|
<value>Denne handling er beskyttet. Angiv hovedadgangskoden igen for at bekræfte din identitet og fortsætte.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha kræves</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha mislykkedes. Prøv venligst igen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Hovedadgangskode opdateret</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Opdatér hovedadgangskode</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Din Hovedadgangskode blev for nylig ændret af en administrator i din organisation. For at tilgå Boksen, så opdatér din Hovedadgangskode nu. Fortsættes, logges du ud af den nuværende session, så du vil skulle logge ind igen. Aktive sessioner på andre enheder kan fortsat være aktive i op til én time.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Opdaterer adgangskode</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Kan i øjeblikket ikke opdatere adgangskode</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>For at fortsætte, så hav din FIDO2 WebAuthn-aktiveret sikkerhedsnøgle klar, klik på 'Godkend WebAuthn' på næste skærmbillede og følg instruktionerne.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Godkendelse vha. FIDO2 WebAuthn, godkendelse an ske vha. en ekstern sikkerhedsnøgle.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Godkend WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Vend tilbage til app</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Sørg for, at standardbrowseren understøtter WebAuthn og forsøg igen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Denne organisation har en virksomhedspolitik, der tvinger dig til en adgangskodenulstilling, hvilket tillader organisationsadministratorer at skifte din hovedadgangskode.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Dine organisationspolitikker påvirker din Boks-timeout. Maks. tilladte Boks-timeout er $HOURS$ tim(er) og $MINUTES$ minut(ter)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Timeout for din boks overskrider de begrænsninger, der er angivet af din organisation.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>En eller flere organisationspolitikker forhindrer eksport af din personlige boks.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Speichern</value>
|
<value>Speichern</value>
|
||||||
<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">
|
||||||
|
<value>Verschieben</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Wird gespeichert...</value>
|
<value>Wird gespeichert...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Du suchst nach einem Eintrag zum automatischen Einfügen für "{0}".</value>
|
<value>Du suchst nach einem Eintrag zum automatischen Einfügen für "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Teile deinen Tresor</value>
|
<value>Mehr über Organisationen erfahren</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Die App "{0}" kann nicht geöffnet werden.</value>
|
<value>Die App "{0}" kann nicht geöffnet werden.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Keine Sammlungen vorhanden.</value>
|
<value>Keine Sammlungen vorhanden.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} verschoben nach {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Eintrag wurde geteilt.</value>
|
<value>Eintrag wurde geteilt.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Eintrag teilen</value>
|
<value>Eintrag teilen</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>In Organisation verschieben</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Keine Organisationen vorhanden.</value>
|
<value>Keine Organisationen vorhanden.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Wähle eine Organisation aus, für die du diesen Eintrag freigeben möchtest. Die gemeinsame Nutzung überträgt das Eigentum an dem Eintrag auf diese Organisation. Du bist dann nicht mehr der direkte Besitzer dieses Eintrags, sobald er geteilt wurde.</value>
|
<value>Wähle eine Organisation aus, in die du diesen Eintrag verschieben möchtest. Das Verschieben in eine Organisation überträgt das Eigentum an diese Organisation. Du bist nicht mehr der direkte Besitzer dieses Eintrags, sobald er verschoben wurde.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Anzahl der Wörter</value>
|
<value>Anzahl der Wörter</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Prüfschlüssel für deinen Account</value>
|
<value>Prüfschlüssel für deinen Account</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden ermöglicht es dir, deinen Tresor mit anderen zu teilen, indem du ein Organisationskonto benutzt. Möchtest du bitwarden.com besuchen, um mehr zu erfahren?</value>
|
<value>Bitwarden ermöglicht es, deinen Tresor mit anderen zu teilen, indem du ein Organisationskonto benutzt. Möchtest du bitwarden.com besuchen, um mehr zu erfahren?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Tresor exportieren</value>
|
<value>Tresor exportieren</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Ändere das Farbschema der Anwendung.</value>
|
<value>Ändere das Farbschema der Anwendung.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Neustart ist erforderlich.</value>
|
<value>Standard (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Wird neugestartet...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Notizen kopieren</value>
|
<value>Notizen kopieren</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Diese Aktion ist geschützt. Um fortzufahren, gib bitte dein Master-Passwort erneut ein, um deine Identität zu bestätigen.</value>
|
<value>Diese Aktion ist geschützt. Um fortzufahren, gib bitte dein Master-Passwort erneut ein, um deine Identität zu bestätigen.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha erforderlich</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha fehlgeschlagen. Bitte versuche es erneut.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Master-Passwort aktualisiert</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Master-Passwort aktualisieren</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Dein Master-Passwort wurde kürzlich von einem Administrator deiner Organisation geändert. Um auf den Tresor zuzugreifen, musst du dein Master-Passwort jetzt aktualisieren. Wenn Du fortfährst, wirst du aus der aktuellen Sitzung abgemeldet und eine erneute Anmeldung ist erforderlich. Aktive Sitzungen auf anderen Geräten können bis zu einer Stunde weiterhin aktiv bleiben.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Passwort wird aktualisiert</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Das Passwort kann derzeit nicht aktualisiert werden</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Um fortzufahren, halte deinen FIDO2 WebAuthn kompatiblen Sicherheitsschlüssel bereit und folge dann den Anweisungen, nachdem du auf der nächsten Seite auf 'Authentifiziere WebAuthn' geklickt hast.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentifizierung mit FIDO2 WebAuthn, du kannst dich mit einem externen Sicherheitsschlüssel authentifizieren.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authentifiziere WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Zurück zur App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Bitte stelle sicher, dass dein Standardbrowser WebAuthn unterstützt und versuche es erneut.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Diese Organisation hat eine Unternehmensrichtlinie, die dich automatisch für die Passwort Zurücksetzung registriert. Die Registrierung wird es Administratoren der Organisation erlauben, dein Master-Passwort zu ändern.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Deine Organisationsrichtlinien haben Auswirkungen auf dein Tresor-Timeout. Das maximal zulässige Tresor-Timeout beträgt {0} Stunde(n) und {1} Minute(n)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Dein Tresor-Timeout überschreitet die von deinem Unternehmen festgelegten Beschränkungen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Eine oder mehrere Unternehmensrichtlinien verhindern es, dass du deinen persönlichen Tresor exportieren kannst.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -311,6 +311,9 @@
|
|||||||
<value>Αποθήκευση</value>
|
<value>Αποθήκευση</value>
|
||||||
<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">
|
||||||
|
<value>Μετακίνηση</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -783,8 +786,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Αναζήτηση στοιχείου αυτόματης συμπλήρωσης για "{0}".</value>
|
<value>Αναζήτηση στοιχείου αυτόματης συμπλήρωσης για "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Κοινή χρήση Vault</value>
|
<value>Μάθετε για τους Οργανισμούς</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Δεν είναι δυνατή η πρόσβαση στην εφαρμογή "{0}".</value>
|
<value>Δεν είναι δυνατή η πρόσβαση στην εφαρμογή "{0}".</value>
|
||||||
@@ -1379,6 +1382,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Δεν υπάρχουν επιλογές στη λίστα.</value>
|
<value>Δεν υπάρχουν επιλογές στη λίστα.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} μετακινήθηκε στο {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Το στοιχείο έχει κοινοποιηθεί.</value>
|
<value>Το στοιχείο έχει κοινοποιηθεί.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1391,11 +1398,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Κοινή χρήση στοιχείου</value>
|
<value>Κοινή χρήση στοιχείου</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Μετακίνηση στον Οργανισμό</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Δεν υπάρχουν οργανισμοί προς εμφάνιση.</value>
|
<value>Δεν υπάρχουν οργανισμοί προς εμφάνιση.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Επιλέξτε έναν οργανισμό στον οποίο θέλετε να μοιραστείτε αυτό το στοιχείο. Η κοινή χρήση μεταβιβάζει την ιδιοκτησία του στοιχείου στον οργανισμό. Δεν θα είστε πλέον ο άμεσος ιδιοκτήτης αυτού του στοιχείου μόλις το μοιραστείτε.</value>
|
<value>Επιλέξτε έναν οργανισμό στον οποίο θέλετε να μετακινήσετε αυτό το στοιχείο. Η μετακίνηση σε έναν οργανισμό μεταβιβάζει την ιδιοκτησία του στοιχείου σε αυτό τον οργανισμό. Δεν θα είστε πλέον ο άμεσος ιδιοκτήτης αυτού του στοιχείου μόλις το μετακινήσετε.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Αριθμός Λέξεων</value>
|
<value>Αριθμός Λέξεων</value>
|
||||||
@@ -1425,8 +1435,8 @@
|
|||||||
<value>Η φράση δακτυλικών αποτυπωμάτων του λογαριασμού σας</value>
|
<value>Η φράση δακτυλικών αποτυπωμάτων του λογαριασμού σας</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Το Bitwarden επιτρέπει να μοιράζεστε τη λίστα σας με άλλους χρησιμοποιώντας ένα λογαριασμό οργανισμού. Θέλετε να επισκευθείτε την ιστοσελίδα bitwarden.com για να μάθετε περισσότερα;</value>
|
<value>Το Bitwarden επιτρέπει να μοιράζεστε τα στοιχεία του vault σας με άλλους χρησιμοποιώντας ένα λογαριασμό οργανισμού. Θέλετε να επισκεφθείτε την ιστοσελίδα bitwarden.com για να μάθετε περισσότερα;</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Εξαγωγή Vault</value>
|
<value>Εξαγωγή Vault</value>
|
||||||
@@ -1501,12 +1511,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Αλλαγή χρώματος, θέματος εφαρμογής.</value>
|
<value>Αλλαγή χρώματος, θέματος εφαρμογής.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Απαιτείται επανεκκίνηση.</value>
|
<value>Προεπιλογή (σύστημα)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Επανεκκίνηση...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Αντιγραφή Σημειώσεων</value>
|
<value>Αντιγραφή Σημειώσεων</value>
|
||||||
@@ -1998,6 +2004,57 @@
|
|||||||
<value>Επιβεβαίωση κύριου κωδικού πρόσβασης</value>
|
<value>Επιβεβαίωση κύριου κωδικού πρόσβασης</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Αυτή η ενέργεια προστατεύεται, για να συνεχίσετε, πληκτρολογήστε ξανά τον κύριο κωδικό πρόσβασης για να επαληθεύσετε την ταυτότητά σας.</value>
|
<value>Αυτή η ενέργεια προστατεύεται, για να συνεχίσετε, πληκτρολογήστε ξανά τον κύριο κωδικό πρόσβασης για να επαληθεύσετε την ταυτότητα σας.</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Απαιτείται Captcha</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Το Captcha απέτυχε. Παρακαλώ προσπάθησε ξανα.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Ενημερώθηκε ο κύριος κωδικός πρόσβασης</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Ενημερώστε τον κύριο κωδικό πρόσβασης</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Ο Κύριος Κωδικός Πρόσβασής σας άλλαξε πρόσφατα από διαχειριστή στον οργανισμό σας. Για να αποκτήσετε πρόσβαση στο vault, πρέπει να ενημερώσετε το κύριο κωδικό τώρα. Η διαδικασία θα σας αποσυνδέσει από την τρέχουσα συνεδρία σας, απαιτώντας από εσάς να συνδεθείτε ξανά. Οι ενεργές συνεδρίες σε άλλες συσκευές ενδέχεται να συνεχίσουν να είναι ενεργές για μία ώρα.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Ενημέρωση Κωδικού Πρόσβασης</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Δεν είναι δυνατή η ενημέρωση του κωδικού πρόσβασης</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Για να συνεχίσετε, να έχετε το FIDO2 WebAuthn ενεργοποιημένο κλειδί ασφαλείας και στη συνέχεια ακολουθήστε τις οδηγίες αφού κάνετε κλικ στο 'Authn Authn' στην επόμενη οθόνη.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Ταυτοποίηση με χρήση του FIDO2 WebAuthn, μπορείτε να κάνετε έλεγχο ταυτότητας χρησιμοποιώντας ένα εξωτερικό κλειδί ασφαλείας.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Ταυτοποίηση WebAutn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Επιστροφή στην εφαρμογή</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Βεβαιωθείτε ότι ο προεπιλεγμένος περιηγητής σας υποστηρίζει WebAuthn και προσπαθήστε ξανά.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Αυτός ο οργανισμός έχει μια επιχειρηματική πολιτική που θα σας εγγράψει αυτόματα στην επαναφορά κωδικού. Η εγγραφή θα επιτρέψει στους διαχειριστές του οργανισμού να αλλάξουν τον κύριο κωδικό πρόσβασης σας.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Οι πολιτικές του οργανισμού σας επηρεάζουν το χρονικό όριο vault σας. Το μέγιστο επιτρεπόμενο Χρονικό όριο Vault είναι {0} ώρα(ες) και {1} λεπτό(ά)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Το χρονικό όριο του vault σας υπερβαίνει τους περιορισμούς που έχει ορίσει ο οργανισμός σας.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Μία ή περισσότερες οργανωτικές πολιτικές αποτρέπουν την εξαγωγή του προσωπικού vault.</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Save</value>
|
<value>Save</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Saving...</value>
|
<value>Saving...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>You are searching for an auto-fill item for "{0}".</value>
|
<value>You are searching for an auto-fill item for "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Share your vault</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Cannot open the app "{0}".</value>
|
<value>Cannot open the app "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>There are no collections to list.</value>
|
<value>There are no collections to list.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Item has been shared.</value>
|
<value>Item has been shared.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Share item</value>
|
<value>Share item</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>No organisations to list.</value>
|
<value>No organisations to list.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Choose an organisation that you wish to share this item with. Sharing transfers ownership of the item to the organisation. You will no longer be the direct owner of this item once it has been shared.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Number of words</value>
|
<value>Number of words</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Your account's fingerprint phrase</value>
|
<value>Your account's fingerprint phrase</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden allows you to share your vault with others by using an organisation account. Would you like to visit the bitwarden.com website to learn more?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Export vault</value>
|
<value>Export vault</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Change the application's colour theme.</value>
|
<value>Change the application's colour theme.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Restart is required.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Restarting...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copy notes</value>
|
<value>Copy notes</value>
|
||||||
@@ -2000,7 +2006,7 @@
|
|||||||
<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>You must verify your email to use files with Send.</value>
|
<value>You must verify your email to use files with Send. You can verify your email in the web vault.</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">
|
||||||
@@ -2012,4 +2018,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Save</value>
|
<value>Save</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Saving...</value>
|
<value>Saving...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>You are searching for an auto-fill item for "{0}".</value>
|
<value>You are searching for an auto-fill item for "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Share your vault</value>
|
<value>Learn About Organisations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Cannot open the app "{0}".</value>
|
<value>Cannot open the app "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>There are no collections to list.</value>
|
<value>There are no collections to list.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Item has been shared.</value>
|
<value>Item has been shared.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Share item</value>
|
<value>Share item</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organisation</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>No organisations to list.</value>
|
<value>No organisations to list.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Choose an organisation that you wish to share this item with. Sharing transfers ownership of the item to the organisation. You will no longer be the direct owner of this item once it has been shared.</value>
|
<value>Choose an organisation that you wish to move this item to. Moving to an organisation transfers ownership of the item to that organisation. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Number of words</value>
|
<value>Number of words</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Your account's fingerprint phrase</value>
|
<value>Your account's fingerprint phrase</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden allows you to share your vault with others by using an organisation account. Would you like to visit the bitwarden.com website to learn more?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organisation account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Export vault</value>
|
<value>Export vault</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Change the application's colour theme.</value>
|
<value>Change the application's colour theme.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Restart is required.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Restarting...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copy notes</value>
|
<value>Copy notes</value>
|
||||||
@@ -2012,4 +2018,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organisation. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organisation has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organisation administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organisation policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organisation.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organisation policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Guardar</value>
|
<value>Guardar</value>
|
||||||
<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">
|
||||||
|
<value>Mover</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Guardando...</value>
|
<value>Guardando...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Estás buscando una entrada para autorellenar "{0}".</value>
|
<value>Estás buscando una entrada para autorellenar "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Comparte tu caja fuerte</value>
|
<value>Aprenda 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>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>No hay colecciones que listar.</value>
|
<value>No hay colecciones que listar.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} se movió a {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>El elemento ha sido compartido.</value>
|
<value>El elemento ha sido compartido.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Compartir elemento</value>
|
<value>Compartir elemento</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Mover a la Organización</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>No hay organizaciones que listar.</value>
|
<value>No hay organizaciones que listar.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Elija una organización con la que quiera compartir este elemento. Compartir transfiere la propiedad del elemento a la organización. No podrá volver a ser el propietario de este elemento una vez haya sido compartido.</value>
|
<value>Elige una organización a la que deseas mover este objeto. Mover a una organización transfiere la propiedad del objeto a esa organización. Ya no serás el dueño directo de este objeto una vez que haya sido movido.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Número de palabras</value>
|
<value>Número de palabras</value>
|
||||||
@@ -1424,7 +1434,7 @@
|
|||||||
<value>Frase de la huella digital de su cuenta</value>
|
<value>Frase de la 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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden te permite compartir tu caja fuerte con otras personas utilizando una cuenta de organización. ¿Quieres visitar la web bitwarden.com para conocer más?</value>
|
<value>Bitwarden te permite compartir tu caja fuerte con otras personas utilizando una cuenta de organización. ¿Quieres visitar la web bitwarden.com para conocer más?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Cambiar el tema de la aplicación.</value>
|
<value>Cambiar el tema de la aplicación.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Es necesario reiniciar.</value>
|
<value>Por defecto (Sistema)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Reiniciando...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copiar notas</value>
|
<value>Copiar notas</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Esta acción está protegida, para continuar por favor vuelva a introducir su contraseña maestra para verificar su identidad.</value>
|
<value>Esta acción está protegida, para continuar por favor vuelva a introducir su contraseña maestra para verificar su identidad.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha requerido</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha fallido. Por favor, inténtalo de nuevo.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Contraseña maestra actualizada</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Actualizar contraseña maestra</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Su contraseña maestra ha sido cambiada recientemente por un administrador de su organización. Para acceder a la caja fuerte, debe actualizar su contraseña maestra ahora. Proceder le desconectará de su sesión actual, requiriendo que vuelva a iniciar sesión. Las sesiones activas en otros dispositivos pueden seguir estando activas durante una hora.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Actualizando contraseña</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Actualmente no se puede actualizar la contraseña</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Para continuar, tenga preparada su llave de seguridad habilitada para WebAuthn FIDO2, luego siga las instrucciones después de hacer clic en 'Autenticar WebAuthn' en la siguiente pantalla.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Autenticación usando FIDO2 WebAuthn, puede autenticarse usando una llave de seguridad externa.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Autenticar WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Volver a la App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Por favor, asegúrese de que su navegador por defecto soporta WebAuthn e inténtelo de nuevo.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Esta organización tiene una política empresarial que lo inscribirá automáticamente en el restablecimiento de contraseña. La inscripción permitirá a los administradores de la organización cambiar su contraseña maestra.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Las políticas de su organización están afectando el tiempo de espera de tu caja fuerte. El máximo permitido de tiempo de espera es {0} hora(s) y {1} minuto(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>El tiempo de espera de tu caja fuerte excede las restricciones establecidas por tu organización.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Una o más políticas de organización impiden que usted exporte su caja fuerte personal.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Salvesta</value>
|
<value>Salvesta</value>
|
||||||
<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">
|
||||||
|
<value>Teisalda</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Salvestan...</value>
|
<value>Salvestan...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Otsid "{0}" automaattäite kirjet.</value>
|
<value>Otsid "{0}" automaattäite kirjet.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Jaga oma hoidlat</value>
|
<value>Info organisatsioonide kohta</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Rakendust "{0}" ei ole võimalik avada.</value>
|
<value>Rakendust "{0}" ei ole võimalik avada.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Puuduvad kollektsioonid, mida kuvada.</value>
|
<value>Puuduvad kollektsioonid, mida kuvada.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} teisaldati {1}'sse.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Kirje on jagatud.</value>
|
<value>Kirje on jagatud.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Jaga kirjet</value>
|
<value>Jaga kirjet</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Teisalda organisatsiooni</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Puuduvad organisatsioonid, mida kuvada.</value>
|
<value>Puuduvad organisatsioonid, mida kuvada.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Vali organisatsioon, millega soovid seda kirjet jagada. Jagamisega saab kirje omanikuks organisatsioon. Pärast kirje jagamist ei ole sa enam selle otsene omanik.</value>
|
<value>Vali organisatsioon, kuhu soovid seda kirjet teisaldada. Teisaldamisega saab kirje omanikuks organisatsioon. Pärast kirje teisaldamist ei ole sa enam selle otsene omanik.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Sõnade arv</value>
|
<value>Sõnade arv</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Konto sõrmejälje fraas</value>
|
<value>Konto sõrmejälje fraas</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden võimaldab sul hoidla sisu teiste kasutajatega jagada, kasutades selleks organisatsiooni kontot. Soovid külastada lehekülge bitwarden.com ja selle kohta rohkem lugeda?</value>
|
<value>Bitwardeniga saad oma hoidla sisu teistega jagada, kasutades selleks organisatsiooni kontot. Kas soovid selle kohta lisateavet ja avada bitwarden.com veebilehe?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Ekspordi hoidla</value>
|
<value>Ekspordi hoidla</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Muuda rakenduse värvikujundust.</value>
|
<value>Muuda rakenduse värvikujundust.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Nõutav on rakenduse taaskäivitamine.</value>
|
<value>Vaikeväärtus (süsteem)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Taaskäivitub...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Kopeeri märkus</value>
|
<value>Kopeeri märkus</value>
|
||||||
@@ -1564,13 +1570,13 @@
|
|||||||
<value>Sessioon on aegunud.</value>
|
<value>Sessioon on aegunud.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BiometricsDirection" xml:space="preserve">
|
<data name="BiometricsDirection" xml:space="preserve">
|
||||||
<value>Kinnita läbi biomeetria.</value>
|
<value>Kinnita biomeetriaga.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Biometrics" xml:space="preserve">
|
<data name="Biometrics" xml:space="preserve">
|
||||||
<value>biomeetriaga</value>
|
<value>biomeetriaga</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseBiometricsToUnlock" xml:space="preserve">
|
<data name="UseBiometricsToUnlock" xml:space="preserve">
|
||||||
<value>Kasuta lahtilukustamiseks biomeetriat</value>
|
<value>Lukusta lahti biomeetriaga</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityOverlayPermissionAlert" xml:space="preserve">
|
<data name="AccessibilityOverlayPermissionAlert" xml:space="preserve">
|
||||||
<value>Bitwarden vajab tähelepanu! Vaata Seaded - Juurdepääsetavuse teenuse seaded.</value>
|
<value>Bitwarden vajab tähelepanu! Vaata Seaded - Juurdepääsetavuse teenuse seaded.</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>See tegevus on kaitstud. Jätkamiseks sisesta oma ülemparool.</value>
|
<value>See tegevus on kaitstud. Jätkamiseks sisesta oma ülemparool.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha kinnitamine</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha kinnitamine nurjus. Proovi uuesti.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Uuendas ülemparooli</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Ülemparooli uuendamine</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Organisatsiooni administraator muutis hiljuti sinu ülemparooli. Hoidlale ligi pääsemiseks pead ülemparooli uuendama. Jätkates logitakse sind käimasolevast sessioonist välja, misjärel nõutakse uuesti sisselogimist. Teistes seadmetes olevad aktiivsed sessioonid jäävad aktiivseks kuni üheks tunniks.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Parooli uuendamine</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Parooli uuendamine pole hetkel võimalik</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Jätkamiseks pane valmis oma FIDO2 WebAuthn võimekusega turvavõti. Seejärel kliki "WebAuthn kinnitamine" ja järgi juhiseid.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn kinnitamiseks pead kasutama välist turvavõtit.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>WebAuthn kinnitamine</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Tagasi rakendusse</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Veendu, et sinu brauser toetab WebAuthn-i ja proovi uuesti.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Selle organisatsiooni poliitika kohaselt liidetakse sind automaatselt ülemparooli lähtestamise funktsiooniga. Liitumisel saavad organisatsiooni administraatorid sinu ülemparooli muuta.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Organisatsiooni poliitikad mõjutavad sinu hoidla ajalõppu. Maksimaalne lubatud hoidla ajalõpp on {0} tund(i) ja {1} minut(it)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Valitud hoidla ajalõpp ei ole organisatsiooni poolt määratud reeglitega kooskõlas.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Üks või enam organisatsiooni poliitikat ei võimalda sul oma personaalset hoidlat eksportida.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>ذخیره</value>
|
<value>ذخیره</value>
|
||||||
<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">
|
||||||
|
<value>انتقال</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>شما به دنبال یافتن یک پر کردن خودکار برای "{0}" هستید.</value>
|
<value>شما به دنبال یافتن یک پر کردن خودکار برای "{0}" هستید.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>اشتراک گذاری گاوصندوقتان</value>
|
<value>درباره سازمانها اطلاعات کسب کنید</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>نمیتوان برنامه را باز کرد "{0}".</value>
|
<value>نمیتوان برنامه را باز کرد "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>هیچ مجموعه ای برای لیست کردن وجود ندارد.</value>
|
<value>هیچ مجموعه ای برای لیست کردن وجود ندارد.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} منتقل شد به {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>مورد به اشتراک گذاشته شد.</value>
|
<value>مورد به اشتراک گذاشته شد.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>اشتراک گذاری مورد</value>
|
<value>اشتراک گذاری مورد</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>انتقال به سازمان</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>هیچ سازمانی برای نمایش وجود ندارد.</value>
|
<value>هیچ سازمانی برای نمایش وجود ندارد.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>تشکیلاتی که میخواهید این مورد را با آن به اشتراک بگذارید انتخاب کنید. پس از اشتراک گذاری مالکیت موارد به آن تشکیلات انتقال می یابد. شما دیگر نمی توانید صاحب اصلی این مورد پس از اشتراک گذاری آن باشید.</value>
|
<value>سازمانی را انتخاب کنید که می خواهید این مورد را به آن منتقل کنید. انتقال به یک سازمان، مالکیت مورد را به آن سازمان منتقل می کند. پس از انتقال این مورد، دیگر مالک مستقیم آن نخواهید بود.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>تعداد کلمات</value>
|
<value>تعداد کلمات</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>عبارت اثر انگشت حساب شما</value>
|
<value>عبارت اثر انگشت حساب شما</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden به شما اجازه می دهد با استفاده از سازماندهی حساب، گاوصندوقهای خود را با دیگران به اشتراک بگذارید. آیا مایل به بازدید از وب سایت bitwarden.com برای کسب اطلاعات بیشتر هستید؟</value>
|
<value>Bitwarden به شما اجازه می دهد با استفاده از سازماندهی حساب، موارد گاوصندوق خود را با دیگران به اشتراک بگذارید. آیا مایل به بازدید از وب سایت bitwarden.com برای کسب اطلاعات بیشتر هستید؟</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>خروجی گرفتن از گاوصندوق</value>
|
<value>خروجی گرفتن از گاوصندوق</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>تغییر رنگ پوسته برنامه.</value>
|
<value>تغییر رنگ پوسته برنامه.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>راه اندازی مجدد لازم است.</value>
|
<value>پیش فرض (سیستم)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>در حال راهاندازی مجدد...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>رونوشت یادداشتها</value>
|
<value>رونوشت یادداشتها</value>
|
||||||
@@ -1999,4 +2005,56 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>این عمل محافظت می شود. برای ادامه، لطفاً کلمه ورود اصلی خود را دوباره وارد کنید تا هویتان را تأیید کنید.</value>
|
<value>این عمل محافظت می شود. برای ادامه، لطفاً کلمه ورود اصلی خود را دوباره وارد کنید تا هویتان را تأیید کنید.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>نیازمند کپچا</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>کپچا اشتباه بود. لطفا دوباره سعی کنید.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>کلمه عبور اصلی بروز شد</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>بروزرسانی کلمه عبور اصلی</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>کلمه عبور اصلی شما اخیراً توسط سرپرست سازمانتان تغییر کرده است. برای دسترسی به گاوصندوق، باید همین حالا کلمه عبور اصلی خود را به روز کنید. در صورت ادامه، شما از نشست فعلی خود خارج می شوید و باید دوباره وارد سیستم شوید. نشست فعال در دستگاه های دیگر ممکن است تا یک ساعت همچنان فعال باقی بمانند.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>در حال به روز رسانی رمز عبور...</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>در حال حاضر نمی توان کلمه عبور را به روز کرد</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>برای ادامه، کلید امنیتی FIDO2 WebAuthn خود را فعال کنید و دستورالعمل ها را پس از کلیک روی "احراز هویت WebAuthn" در صفحه بعدی دنبال کنید.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>احراز هویت با استفاده از FIDO2 WebAuthn، می توانید با استفاده از یک کلید امنیتی خارجی احراز هویت کنید.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>تأیید اعتبار در WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>بازگشت به برنامه</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>لطفاً مطمئن شوید که مرورگر پیش فرض شما از WebAuthn پشتیبانی می کند و دوباره امتحان کنید.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>این سازمان دارای خط مشی سازمانی ای است که به طور خودکار شما را در بازنشانی کلمه عبور ثبت نام می کند. این ثبت نام به مدیران سازمان اجازه می دهد تا کلمه عبور اصلی شما را تغییر دهند.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>خط مشی های سازمانتان بر مهلت زمانی گاوصندوق شما تأثیر می گذارد. حداکثر زمان مجاز گاوصندوق {0} ساعت و {1} دقیقه است</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>مهلت زمانی شما بیش از محدودیت های تعیین شده توسط سازمانتان است.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>یک یا چند خط مشی سازمان از صادرات گاوصندوق شخصی شما جلوگیری می کند.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Tallenna</value>
|
<value>Tallenna</value>
|
||||||
<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">
|
||||||
|
<value>Siirrä</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Tallennetaan...</value>
|
<value>Tallennetaan...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -692,7 +695,7 @@
|
|||||||
<value>Kaksivaiheinen kirjautuminen tekee tilistäsi turvallisemman edellyttämällä salasanan lisäksi kirjautumisen lisätodennusta todennuslaitteen, ‑sovelluksen, tekstiviestin, puhelun tai sähköpostin avulla. Voit ottaa kaksivaiheisen kirjautumisen käyttöön bitwarden.com‑verkkoholvissa. Haluatko käydä sivustolla nyt?</value>
|
<value>Kaksivaiheinen kirjautuminen tekee tilistäsi turvallisemman edellyttämällä salasanan lisäksi kirjautumisen lisätodennusta todennuslaitteen, ‑sovelluksen, tekstiviestin, puhelun tai sähköpostin avulla. Voit ottaa kaksivaiheisen kirjautumisen käyttöön bitwarden.com‑verkkoholvissa. Haluatko käydä sivustolla nyt?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockWith" xml:space="preserve">
|
<data name="UnlockWith" xml:space="preserve">
|
||||||
<value>Avaa biometrialla: {0}</value>
|
<value>Avaustapa: {0}</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnlockWithPIN" xml:space="preserve">
|
<data name="UnlockWithPIN" xml:space="preserve">
|
||||||
<value>Avaa PIN-koodilla</value>
|
<value>Avaa PIN-koodilla</value>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Etsit automaattisesti täytettävää kohdetta osoitteelle ”{0}”.</value>
|
<value>Etsit automaattisesti täytettävää kohdetta osoitteelle ”{0}”.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Jaa holvisi</value>
|
<value>Lisätietoja organisaatioista</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Sovelluksen ”{0}” avaus ei onnistunut.</value>
|
<value>Sovelluksen ”{0}” avaus ei onnistunut.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Ei näytettäviä kokoelmia.</value>
|
<value>Ei näytettäviä kokoelmia.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} siirrettiin organisaatiolle {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Kohde jaettiin.</value>
|
<value>Kohde jaettiin.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Jaa kohde</value>
|
<value>Jaa kohde</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Siirrä organisaatiolle</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Ei näytettäviä organisaatioita.</value>
|
<value>Ei näytettäviä organisaatioita.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Valitse organisaatio, jonka kanssa haluat jakaa kohteen. Jako siirtää kohteen organisaation omistukseen, etkä tämän jälkeen ole enää sen suora omistaja.</value>
|
<value>Valitse organisaatio, jolle haluat siirtää kohteen. Tämä siirtää kohteen organisaation omistukseen, etkä tämän jälkeen ole enää sen suora omistaja.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Sanojen määrä</value>
|
<value>Sanojen määrä</value>
|
||||||
@@ -1424,7 +1434,7 @@
|
|||||||
<value>Tilisi tunnistelauseke</value>
|
<value>Tilisi 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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwardenin avulla voit jakaa holvisi sisältöä muiden kanssa organisaatiotiliä käyttäen. Haluatko lukea bitwarden.com-sivustolta lisää?</value>
|
<value>Bitwardenin avulla voit jakaa holvisi sisältöä muiden kanssa organisaatiotiliä käyttäen. Haluatko lukea bitwarden.com-sivustolta lisää?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Vaihda sovelluksen väriteemaa.</value>
|
<value>Vaihda sovelluksen väriteemaa.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Tarvitaan udelleenkäynnistys.</value>
|
<value>Oletus (järjestelmä)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Käynnistetään uudelleen...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Kopioi muistiinpanot</value>
|
<value>Kopioi muistiinpanot</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Toiminto on suojattu. Jatkaaksesi, syötä pääsalasanasi uudelleen vahvistaaksesi henkilöllisyytesi.</value>
|
<value>Toiminto on suojattu. Jatkaaksesi, syötä pääsalasanasi uudelleen vahvistaaksesi henkilöllisyytesi.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha-vahvistus vaaditaan</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha-vahvistus epäonnistui. Yritä uudelleen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Pääsalasana on päivitetty</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Päivitä pääsalasana</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Organisaatiosi ylläpito on hiljattain vaihtanut pääsalasanasi. Käyttääksesi holvia, on sinun päivitettävä se nyt. Tämä uloskirjaa kaikki nykyiset istunnot pakottaen uudelleenkirjautumisen. Muiden laitteiden aktiiviset istunnot saattavat toimia vielä tunnin ajan.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Salasanaa päivitetään</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Salasanan päivitys ei tällä hetkellä onnistu</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Jatkaaksesi, pidä FIDO2 WebAuthn -suojausavaimesi valmiina ja seuraa ohjeita napautettuasi seuraavasta näytöstä 'Authenticate WebAuthn'.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn -tunnistautumisen voi todentaa ulkoisella suijausavaimella.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>WebAuthn-todennus</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Palaa sovellukseen</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Varmista, että WebAuthn on oletusselaimesi tukema ja yritä uudelleen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Organisaatiolla on käytäntö, joka liittää tilisi automaattisesti salasanan palautusapuun. Liitos sallii organisaation ylläpitäjien vaihtaa pääsalasanasi.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Organisaatiosi käytännöt vaikuttavat holvisi aikakatkaisuun. Suurin sallittu viive on {0} tunti(a) ja {1} minuutti(a)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Holvisi aikakatkaisuviive ylittää organisaatiosi asettamat rajoitukset.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Yksi tai useampi organisaation käytäntö estää henkilökohtaisen holvisi viennin.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Save</value>
|
<value>Save</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Saving...</value>
|
<value>Saving...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>You are searching for an auto-fill item for "{0}".</value>
|
<value>You are searching for an auto-fill item for "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Share Your Vault</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Cannot open the app "{0}".</value>
|
<value>Cannot open the app "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>There are no collections to list.</value>
|
<value>There are no collections to list.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Item has been shared.</value>
|
<value>Item has been shared.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Share Item</value>
|
<value>Share Item</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>No organizations to list.</value>
|
<value>No organizations to list.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Choose an organization that you wish to share this item with. Sharing transfers ownership of the item to the organization. You will no longer be the direct owner of this item once it has been shared.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Number of Words</value>
|
<value>Number of Words</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Your account's fingerprint phrase</value>
|
<value>Your account's fingerprint phrase</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden allows you to share your vault with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Export Vault</value>
|
<value>Export Vault</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Change the application's color theme.</value>
|
<value>Change the application's color theme.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Restart is required.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Restarting...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copy Notes</value>
|
<value>Copy Notes</value>
|
||||||
@@ -1864,7 +1870,7 @@
|
|||||||
<value>Maximum Access Count</value>
|
<value>Maximum Access Count</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
||||||
<value>If set, users will no longer be able to access this send once the maximum access count is reached.</value>
|
<value>If set, users will no longer be able to access this Send once the maximum access count is reached.</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">
|
||||||
@@ -2000,4 +2006,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Enregistrer</value>
|
<value>Enregistrer</value>
|
||||||
<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">
|
||||||
|
<value>Déplacer</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Enregistrement...</value>
|
<value>Enregistrement...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Vous recherchez un élément pour remplir automatiquement « {0} ».</value>
|
<value>Vous recherchez un élément pour remplir automatiquement « {0} ».</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Partager votre coffre</value>
|
<value>En savoir plus sur les organisations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Impossible d'ouvrir l'application "{0}".</value>
|
<value>Impossible d'ouvrir l'application "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Aucune collection à afficher.</value>
|
<value>Aucune collection à afficher.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} déplacé vers {1}</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>L'élément a été partagé.</value>
|
<value>L'élément a été partagé.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Partager l'élément</value>
|
<value>Partager l'élément</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Déplacer vers l'organisation</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Aucune organisation à afficher.</value>
|
<value>Aucune organisation à afficher.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Choisissez une organisation avec laquelle vous voulez partager cet élément. Le partage transfère la propriété de l'élément à l'organisation. Vous ne serez plus le propriétaire direct de cet élément après le partage.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Nombre de mots</value>
|
<value>Nombre de mots</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>La phrase d'empreinte de votre compte</value>
|
<value>La phrase d'empreinte de votre 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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden vous permet de partager votre coffre avec d'autres personnes en utilisant un compte d'organisation. Souhaitez-vous visiter le site web bitwarden.com pour en savoir plus ?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Exporter le coffre</value>
|
<value>Exporter le coffre</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Modifiez le thème de couleur de l'application.</value>
|
<value>Modifiez le thème de couleur de l'application.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Redémarrage requis.</value>
|
<value>Par défaut (Système)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Redémarrage...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copier les notes</value>
|
<value>Copier les notes</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Cette action est protégée. Pour continuer, veuillez ressaisir votre mot de passe maître pour vérifier votre identité.</value>
|
<value>Cette action est protégée. Pour continuer, veuillez ressaisir votre mot de passe maître pour vérifier votre identité.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha obligatoire</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Le captcha a échoué. Veuillez réessayer.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Mot de passe principal mis à jour</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Mettre à jour le mot de passe principal</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Mise à jour du mot de passe</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>שמור</value>
|
<value>שמור</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -783,8 +786,8 @@ Bitwarden בעזרת פתיחת חלון "הגדרות".</value>
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>אתה מחפש פריט להשלמה אוטומטית עבור "{0}".</value>
|
<value>אתה מחפש פריט להשלמה אוטומטית עבור "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>שתף את הכספת שלך</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>לא ניתן לפתוח את האפליקציה "{0}".</value>
|
<value>לא ניתן לפתוח את האפליקציה "{0}".</value>
|
||||||
@@ -1379,6 +1382,10 @@ Bitwarden בעזרת פתיחת חלון "הגדרות".</value>
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>אין אוספים להציג ברשימה.</value>
|
<value>אין אוספים להציג ברשימה.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>הפריט שותף.</value>
|
<value>הפריט שותף.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1391,11 +1398,14 @@ Bitwarden בעזרת פתיחת חלון "הגדרות".</value>
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>שתף פריט</value>
|
<value>שתף פריט</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>אין ארגונים להצגה ברשימה.</value>
|
<value>אין ארגונים להצגה ברשימה.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>בחר ארגון שאיתו תרצה לשתף פריט זה. השיתוף מעביר את הבעלות על הפריט לארגון. אתה לא תהיה הבעלים הישיר של הפריט לאחר השיתוף.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>מספר מילים</value>
|
<value>מספר מילים</value>
|
||||||
@@ -1425,8 +1435,8 @@ Bitwarden בעזרת פתיחת חלון "הגדרות".</value>
|
|||||||
<value>הסיסמה של טביעת האצבעות בחשבון שלך</value>
|
<value>הסיסמה של טביעת האצבעות בחשבון שלך</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>תוכנת Bitwarden מאפשרת לך לשתף את הכספת עם אחרים בעזרת חשבון ארגון. האם תרצה לבקר באתר bitwarden.com ללמוד עוד בנושא זה?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>יצוא כספת</value>
|
<value>יצוא כספת</value>
|
||||||
@@ -1501,12 +1511,8 @@ Bitwarden בעזרת פתיחת חלון "הגדרות".</value>
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>שנה את ערכת הצבע של האפליקציה.</value>
|
<value>שנה את ערכת הצבע של האפליקציה.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>דרושה הפעלה מחדש.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>מפעיל מחדש...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>העתק פתקים</value>
|
<value>העתק פתקים</value>
|
||||||
@@ -1864,7 +1870,7 @@ Bitwarden בעזרת פתיחת חלון "הגדרות".</value>
|
|||||||
<value>Maximum Access Count</value>
|
<value>Maximum Access Count</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
||||||
<value>If set, users will no longer be able to access this send once the maximum access count is reached.</value>
|
<value>If set, users will no longer be able to access this Send once the maximum access count is reached.</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">
|
||||||
@@ -2000,4 +2006,55 @@ Bitwarden בעזרת פתיחת חלון "הגדרות".</value>
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>सहेजें</value>
|
<value>सहेजें</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -783,8 +786,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>You are searching for an auto-fill login for "{0}".</value>
|
<value>You are searching for an auto-fill login for "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>अपनी तिजोरी साझा करें</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>"{0}" ऐप नहीं खोल सकता।</value>
|
<value>"{0}" ऐप नहीं खोल सकता।</value>
|
||||||
@@ -1379,6 +1382,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>There are no collections to list.</value>
|
<value>There are no collections to list.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Item has been shared.</value>
|
<value>Item has been shared.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1391,11 +1398,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Share Item</value>
|
<value>Share Item</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>No organizations to list.</value>
|
<value>No organizations to list.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Choose an organization that you wish to share this item with. Sharing transfers ownership of the item to the organization. You will no longer be the direct owner of this item once it has been shared.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Number of Words</value>
|
<value>Number of Words</value>
|
||||||
@@ -1425,8 +1435,8 @@
|
|||||||
<value>Your account's fingerprint phrase</value>
|
<value>Your account's fingerprint phrase</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden allows you to share your vault with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>निर्यात तिजोरी</value>
|
<value>निर्यात तिजोरी</value>
|
||||||
@@ -1501,12 +1511,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Change the application's color theme.</value>
|
<value>Change the application's color theme.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Restart is required.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Restarting...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>नोट कॉपी करें</value>
|
<value>नोट कॉपी करें</value>
|
||||||
@@ -1865,7 +1871,7 @@
|
|||||||
<value>Maximum Access Count</value>
|
<value>Maximum Access Count</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
||||||
<value>If set, users will no longer be able to access this send once the maximum access count is reached.</value>
|
<value>If set, users will no longer be able to access this Send once the maximum access count is reached.</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">
|
||||||
@@ -2001,4 +2007,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Spremi</value>
|
<value>Spremi</value>
|
||||||
<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">
|
||||||
|
<value>Premjesti</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Spremanje...</value>
|
<value>Spremanje...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -486,7 +489,7 @@
|
|||||||
<value>Dodirni Bitwarden ikonu u izborniku za pokretanje proširenja.</value>
|
<value>Dodirni Bitwarden ikonu u izborniku za pokretanje proširenja.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtensionTurnOn" xml:space="preserve">
|
<data name="ExtensionTurnOn" xml:space="preserve">
|
||||||
<value>Za uključiti Bitwardena u Safariu i drugim aplikacijama, dodirnite ikonu „Više” u donjem retku izbornika.</value>
|
<value>Za uključiti Bitwardena u Safariju i drugim aplikacijama, dodirnite ikonu „Više” u donjem retku izbornika.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Favorite" xml:space="preserve">
|
<data name="Favorite" xml:space="preserve">
|
||||||
<value>Favorit</value>
|
<value>Favorit</value>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Tražiš stavku auto-ispune za „{0}”.</value>
|
<value>Tražiš stavku auto-ispune za „{0}”.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Podijeli svoj trezor</value>
|
<value>Više o organzacijama </value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Nije moguće otvoriti aplikaciju „{0}”.</value>
|
<value>Nije moguće otvoriti aplikaciju „{0}”.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Nema zbirki za prikaz.</value>
|
<value>Nema zbirki za prikaz.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} premješteno u {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Stavka je podijeljena.</value>
|
<value>Stavka je podijeljena.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Podijeli stavku</value>
|
<value>Podijeli stavku</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Premjesti u organizaciju</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Nema organizacija za prikaz.</value>
|
<value>Nema organizacija za prikaz.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Odaberi organizaciju s kojom želiš podijeliti ovu stavku. Dijeljenje prenosi vlasništvo stavke na organizaciju. Nakon dijeljenja više nećeš biti izravni vlasnik ove stavke.</value>
|
<value>Odaberi organizaciju u koju želiš premjestiti ovu stavku. Premještanje prenosi vlasništvo stavke na organizaciju. Nakon premještanja više nećeš biti izravni vlasnik ove stavke.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Broj riječi</value>
|
<value>Broj riječi</value>
|
||||||
@@ -1424,7 +1434,7 @@
|
|||||||
<value>Jedinstvena fraza tvog računa</value>
|
<value>Jedinstvena fraza tvog 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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden omogućuje dijeljenje trezora s drugima pomoću organizacijskog računa. Želiš li sada posjetiti bitwarden.com za više informacija?</value>
|
<value>Bitwarden omogućuje dijeljenje trezora s drugima pomoću organizacijskog računa. Želiš li sada posjetiti bitwarden.com za više informacija?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Mijenja boju aplikacije. </value>
|
<value>Mijenja boju aplikacije. </value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Potrebno je ponovo pokretanje.</value>
|
<value>Zadana (sustav)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Ponovno pokretanje...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Kopiraj bilješke</value>
|
<value>Kopiraj bilješke</value>
|
||||||
@@ -1863,7 +1869,7 @@
|
|||||||
<value>Ograničeni broj pristupanja</value>
|
<value>Ograničeni broj pristupanja</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
||||||
<value>Ako je određen, ovom Sendu će se moći pristupiti samo ograničeni broj puta.</value>
|
<value>Ako je određeno, ovom Sendu će se moći pristupiti samo ograničeni broj puta.</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">
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Ova radnja je zaštićena. Za nastavak i potvrdu identiteta, unesi svoju glavnu lozinku.</value>
|
<value>Ova radnja je zaštićena. Za nastavak i potvrdu identiteta, unesi svoju glavnu lozinku.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Potrebna captcha</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha pogrešna.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Glavna lozinka ažurirana</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Ažuriraj glavnu lozinku</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Tvoju glavnu lozinku je nedavno promijenio administrator tvoje organizacije. Za pristup trezoru, potrebno je ažurirati glavnu lozinku, što će te odjaviti iz trenutne sesije, te ćeš se morati ponovno prijaviti. Aktivne sesije na drugim uređajima mogu ostati aktivne još sat vremena.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Ažuriranje lozinke</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Trenutno nije moguće ažurirati lozinku</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Za nastavak, pripremi svoj FIDO2 WebAuthn sigurnosni ključ i prati upute nakon odabira opcije 'Autentifikacija WebAuthn' na sljedećem zaslonu.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Autentifikacija korištenjem FIDO2 WebAuthn vanjskog sigurnosnog ključa.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Autentifikacija WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Povratak u aplikaciju</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Provjeri podržava li tvoj zadani preglednik WebAuthn i pokušaj ponovno.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Pravilo ove organizacija automatski će te učlaniti u ponovno postavljanje lozinke. Učlanjenje će omogućiti administratorima organizacije promjenu tvoje glavne lozinke.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Pravilo tvoje organizacije utječe na istek trezora. Najveće dozvoljeno vrijeme isteka je {0}:{1} h.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Vrijeme isteka premašuje ograničenje koju je postavila tvoja organizacija.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Jedno ili više pravila organizacija onemogućuje izvoz osobnog trezora. </value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Mentés</value>
|
<value>Mentés</value>
|
||||||
<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">
|
||||||
|
<value>Áthelyezés</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Mentés...</value>
|
<value>Mentés...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Automatikus kitöltési elem keresése folyik: "{0}".</value>
|
<value>Automatikus kitöltési elem keresése folyik: "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Széfed megosztása</value>
|
<value>Információ szervezetekről</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Nem lehet megnyitni a(z) "{0}" alkalmazást.</value>
|
<value>Nem lehet megnyitni a(z) "{0}" alkalmazást.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Nincsenek megjeleníthető gyűjtemények.</value>
|
<value>Nincsenek megjeleníthető gyűjtemények.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} áthelyezésre került: {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Az elem megosztásra került.</value>
|
<value>Az elem megosztásra került.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Elem megosztása</value>
|
<value>Elem megosztása</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Áthelyezés szervezetbe</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Nincs megjeleníthető szervezet.</value>
|
<value>Nincs megjeleníthető szervezet.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Szervezet választása az elem megosztásához. Az elemtulajdon átadása a szervezetnek. Innentől nem közvetlen tulajdonosa leszünk az elemnek a megosztás után.</value>
|
<value>Válasszunk egy szervezetet, ahová áthelyezni szeretnénk ezt az elemet. A szervezetbe áthelyezés átruházza az elem tulajdonjogát az adott szervezetre. Az áthelyezés után többé nem leszünk az elem közvetlen tulajdonosa.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Szavak száma</value>
|
<value>Szavak száma</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>A fiók ujjlenyomat mondata</value>
|
<value>A fiók ujjlenyomat mondata</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>A Bitwarden lehetővé teszi egy szervezeti fiók használatával a fiók megosztását másokkal. Szeretnénk többet megtudni a bitwarden.com webhelyen?</value>
|
<value>A Bitwardenben szervezeti fiók használatával megoszthatók másokkal a széfben lévő elemek.. Szeretnénk megnyitni a bitwarden.com webhelyet további információért?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Széf exportálása</value>
|
<value>Széf exportálása</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Az alkalmazás színének megváltoztatása.</value>
|
<value>Az alkalmazás színének megváltoztatása.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Újraindítás szükséges.</value>
|
<value>Alapértelmezett (rendszer)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Újraindítás...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Jegyzetek másolása</value>
|
<value>Jegyzetek másolása</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Ez a művelet védett. A folytatásért ismételten meg kell adni a mesterjelszőt az személyazonosság ellenőrzéséhez.</value>
|
<value>Ez a művelet védett. A folytatásért ismételten meg kell adni a mesterjelszőt az személyazonosság ellenőrzéséhez.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha szükséges</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>A Captcha sikertelen. Próbáljuk újra.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>A mesterjelszó frisstésre került.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Mesterjelszó frissítése</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>A szervezet egyik adminisztrátora nemrég megváltoztatta a mesterjelszót. A széf eléréséhez most frissíteni kell a mesterjelszót. Továbblépéskor kijelentkezés történik a jelenlegi munkamenetből és újra be kell jelentkezni. Ha van aktív munkamenet más eszközön, az még legfeljebb egy óráig aktív maradhat.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Jelszó frissítése</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Jelenleg nem lehet frissíteni a jelszót.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>A folytatáshoz készítsük elő a FIDO2 WebAuthn-kompatibilis biztonsági kulcsot, azután kattintsunk a WebAuthn hitelesítése lehetőségre a következő képernyőn és kövessük a megjelenő utasításokat.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Hitelesítés FIDO2 WebAuthn használatával - hitelesíthetjük magunkat egy külső biztonsági kulcs segítségével</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>WebAuthn hitelesítése</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Vissza az alkalmazásba</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Biztosítsuk, hogy az alapértelmezett böngésző támogassa a WebAuthn technológiát és próbáljuk újra.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Ennek a szervezetnek van egy vállalati házirendje, amely automatikusan regisztrál a jelszó alaphelyzetbe állítására. A regisztráció lehetővé teszi a szervezet adminisztrátorainak a mesterjelszó megváltoztatását.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>A szervezeti házirendek hatással vannak a széf időkorlátjára. A széf időkorlátja legfeljebb {0} óra és {1} perc lehet.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>A széf időkorlátja túllépi a szervezet által beállított korlátozást.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Egy vagy több szervezeti házirend tiltja a személyes széf exportálását.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Simpan</value>
|
<value>Simpan</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Menyimpan...</value>
|
<value>Menyimpan...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Anda mencari item pengisian otomatis untuk "{0}".</value>
|
<value>Anda mencari item pengisian otomatis untuk "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Bagikan Brankas Anda</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Tidak dapat membuka aplikasi {0}.</value>
|
<value>Tidak dapat membuka aplikasi {0}.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Tidak ada koleksi yang akan ditampilkan.</value>
|
<value>Tidak ada koleksi yang akan ditampilkan.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Item telah dibagikan.</value>
|
<value>Item telah dibagikan.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Berbagi Item</value>
|
<value>Berbagi Item</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Tidak ada organisasi untuk dicantumkan.</value>
|
<value>Tidak ada organisasi untuk dicantumkan.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Pilih sebuah organisasi yang Anda ingin berbagi item ini. Berbagi kepemilikan transfer untuk item bersangkutan dengan organisasi tersebut. Anda tidak akan lagi menjadi pemilik item ini setelah dibagi.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Jumlah kata</value>
|
<value>Jumlah kata</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Frase sidik jari akun Anda</value>
|
<value>Frase sidik jari akun Anda</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden memungkinkan Anda untuk membagikan brankas Anda dengan orang lain menggunakan akun organisasi. Apakah Anda ingin mengunjungi situs bitwarden.com untuk mempelajari lebih lanjut?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Ekspor Brankas</value>
|
<value>Ekspor Brankas</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Ubah warna tema aplikasi.</value>
|
<value>Ubah warna tema aplikasi.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Dibutuhkan pemulaian ulang.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Memulai ulang...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Catatan Salinan</value>
|
<value>Catatan Salinan</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Tindakan ini dilindungi, untuk melanjutkan harap masukkan ulang sandi utama Anda untuk memverifikasi identitas Anda.</value>
|
<value>Tindakan ini dilindungi, untuk melanjutkan harap masukkan ulang sandi utama Anda untuk memverifikasi identitas Anda.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Salva</value>
|
<value>Salva</value>
|
||||||
<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">
|
||||||
|
<value>Sposta</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Salvataggio in corso...</value>
|
<value>Salvataggio in corso...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Stai cercando un login di completamento automatico per "{0}".</value>
|
<value>Stai cercando un login di completamento automatico per "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Condividi la tua cassaforte</value>
|
<value>Scopri le organizzazioni</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Impossibile aprire l'applicazione "{0}".</value>
|
<value>Impossibile aprire l'applicazione "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Nessuna raccolta da elencare.</value>
|
<value>Nessuna raccolta da elencare.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} spostato in {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>L'elemento è stato condiviso.</value>
|
<value>L'elemento è stato condiviso.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Condividi elemento</value>
|
<value>Condividi elemento</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Sposta in organizzazione</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Nessuna organizzazione da elencare.</value>
|
<value>Nessuna organizzazione da elencare.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Scegli un'organizzazione con cui desideri condividere questo elemento. La condivisione ne trasferisce la proprietà all'organizzazione. Non sarai più il proprietario diretto di questo elemento una volta condiviso.</value>
|
<value>Scegli un'organizzazione in cui desideri spostare questo elemento. Lo spostamento in un'organizzazione trasferisce la proprietà dell'elemento all'organizzazione. Non sarai più il proprietario diretto di questo elemento una volta spostato.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Numero di parole</value>
|
<value>Numero di parole</value>
|
||||||
@@ -1424,9 +1434,8 @@
|
|||||||
<value>Frase impronta dell'account</value>
|
<value>Frase impronta dell'account</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden ti permette di condividere la tua cassaforte con altri utilizzando un account di organizzazione. Vuoi visitare il sito
|
<value>Bitwarden ti permette di condividere gli oggetti della tua cassaforte con altri, usando un account dell'organizzazione. Vuoi visitare il sito bitwarden.com per saperne di più?</value>
|
||||||
bitwarden.com per saperne di più?</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Esporta cassaforte</value>
|
<value>Esporta cassaforte</value>
|
||||||
@@ -1501,12 +1510,8 @@ bitwarden.com per saperne di più?</value>
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Cambia il tema dell'applicazione.</value>
|
<value>Cambia il tema dell'applicazione.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Riavvio necessario.</value>
|
<value>Predefinito (Sistema)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Riavvio in corso...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copia note</value>
|
<value>Copia note</value>
|
||||||
@@ -2001,4 +2006,55 @@ bitwarden.com per saperne di più?</value>
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Questa azione è protetta. Per continuare, digita nuovamente la tua password principale per verificare la tua identità.</value>
|
<value>Questa azione è protetta. Per continuare, digita nuovamente la tua password principale per verificare la tua identità.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha richiesto</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Verifica Captcha fallita. Si prega di riprovare.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Password principale aggiornata</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Aggiorna password principale</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>La tua password principale è stata recentemente modificata da un amministratore nella tua organizzazione. Per accedere alla cassaforte, devi aggiornarla ora. Procedendo sarai disconnesso dalla sessione attuale, richiedendo di effettuare nuovamente l'accesso. Le sessioni attive su altri dispositivi possono continuare a rimanere attive per un massimo di un'ora.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Aggiornamento password in corso</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Attualmente non è possibile aggiornare la password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Per continuare, fai in modo che la chiave di sicurezza di FIDO2 WebAuthn sia pronta, quindi segui le istruzioni dopo aver fatto clic su 'Autenticazione WebAuthn' nella schermata successiva.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Autenticazione tramite FIDO2 WebAuthn, puoi autenticarti utilizzando una chiave di sicurezza esterna.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Autenticazione WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Ritorna all'applicazione</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Assicurati che il browser predefinito supporti WebAuthn e riprova.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Questa organizzazione ha una policy aziendale che ti iscriverà automaticamente al ripristino della password. Ciò permetterà agli amministratori dell'organizzazione di cambiare la tua password principale.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Le policy dell'organizzazione controllano il timeout della tua cassaforte. Il tempo massimo consentito è di $HOURS$ ore e $MINUTES$ minuti</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Il timeout della tua cassaforte supera i limiti impostate dalla tua organizzazione.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Una o più policy dell'organizzazione ti impediscono di esportare la tua cassaforte personale.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>保存</value>
|
<value>保存</value>
|
||||||
<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">
|
||||||
|
<value>移動</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>「{0}」への自動入力アイテムを検索中です。</value>
|
<value>「{0}」への自動入力アイテムを検索中です。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>保管庫の共有</value>
|
<value>組織について学ぶ</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>{0} を開けません。</value>
|
<value>{0} を開けません。</value>
|
||||||
@@ -1308,7 +1311,7 @@
|
|||||||
<value>ログイン</value>
|
<value>ログイン</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SecureNotes" xml:space="preserve">
|
<data name="SecureNotes" xml:space="preserve">
|
||||||
<value>秘密のメモ</value>
|
<value>セキュアメモ</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AllItems" xml:space="preserve">
|
<data name="AllItems" xml:space="preserve">
|
||||||
<value>すべてのアイテム</value>
|
<value>すべてのアイテム</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>表示するコレクションがありません</value>
|
<value>表示するコレクションがありません</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} を {1} に移動しました。</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>アイテムを共有しました。</value>
|
<value>アイテムを共有しました。</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>アイテムを共有する</value>
|
<value>アイテムを共有する</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>組織に移動</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>表示する組織がありません。</value>
|
<value>表示する組織がありません。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>このアイテムを共有する組織を選択してください。共有するとアイテムの所有権は組織に移行し、あなたはもはやこのアイテムの直接のオーナーではなくなります。</value>
|
<value>このアイテムを移動する組織を選択してください。組織に移動すると、アイテムの所有権がその組織に移行します。 このアイテムが移動された後、あなたはこのアイテムの直接の所有者にはなりません。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>単語数</value>
|
<value>単語数</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>アカウントのパスフレーズ</value>
|
<value>アカウントのパスフレーズ</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwardenでは、組織アカウントを使用して保管庫を他の人と共有できます。 詳細はbitwarden.comのウェブサイトをご覧ください。</value>
|
<value>Bitwardenでは、組織アカウントを使用して保管庫のアイテムを他の人と共有できます。 詳細は bitwarden.com のウェブサイトをご覧ください。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>保管庫のエクスポート</value>
|
<value>保管庫のエクスポート</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>アプリのテーマカラーを変更します。</value>
|
<value>アプリのテーマカラーを変更します。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>再起動が必要です。</value>
|
<value>デフォルト (システム)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>再起動中...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>メモをコピー</value>
|
<value>メモをコピー</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>この操作は保護されています。続行するには、確認のためにマスターパスワードを再入力してください。</value>
|
<value>この操作は保護されています。続行するには、確認のためにマスターパスワードを再入力してください。</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>キャプチャが要求されました</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>キャプチャに失敗しました。もう一度やり直してください。</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>マスターパスワードを更新しました</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>マスターパスワードを更新しました</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>マスターパスワードは最近組織の管理者によって変更されました。保管庫にアクセスするには、今すぐ更新する必要があります。 続行すると現在のセッションからログアウトし、再度ログインする必要があります。 他のデバイスでのアクティブなセッションは、最大1時間アクティブになり続けることがあります。</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>パスワードの更新</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>現在パスワードを更新できません。</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>続けるには FIDO2 WebAuthn セキュリティキーを有効にしてから、次の画面で「WebAuthn の認証」をクリックして指示に従ってください。</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn 外部セキュリティキーを使用して認証できます。</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>WebAuthn の認証</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>アプリに戻る</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>デフォルトのブラウザが WebAuthn をサポートしていることを確認して、もう一度やり直してください。</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>この組織には自動的にパスワードリセットに登録するポリシーがあります。登録すると、組織の管理者はマスターパスワードを変更できます。</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>組織のポリシーが保管庫のタイムアウトに影響を与えています。保管庫のタイムアウトは {0} 時間 {1} 分です。</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>保管庫のタイムアウトが組織によって設定された制限を超えています。</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>1 つまたは複数の組織ポリシーにより、個人の保管庫をエクスポートできません。</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
2060
src/App/Resources/AppResources.ka.resx
Normal file
2060
src/App/Resources/AppResources.ka.resx
Normal file
File diff suppressed because it is too large
Load Diff
@@ -310,6 +310,9 @@
|
|||||||
<value>ಉಳಿಸಿ</value>
|
<value>ಉಳಿಸಿ</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -783,8 +786,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>ನೀವು "{0}" ಗಾಗಿ ಸ್ವಯಂ-ಭರ್ತಿ ಐಟಂ ಅನ್ನು ಹುಡುಕುತ್ತಿದ್ದೀರಿ.</value>
|
<value>ನೀವು "{0}" ಗಾಗಿ ಸ್ವಯಂ-ಭರ್ತಿ ಐಟಂ ಅನ್ನು ಹುಡುಕುತ್ತಿದ್ದೀರಿ.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>ನಿಮ್ಮ ವಾಲ್ಟ್ ಅನ್ನು ಹಂಚಿಕೊಳ್ಳಿ</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>"{0}" ಅಪ್ಲಿಕೇಶನ್ ತೆರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ.</value>
|
<value>"{0}" ಅಪ್ಲಿಕೇಶನ್ ತೆರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ.</value>
|
||||||
@@ -1379,6 +1382,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>ಪಟ್ಟಿ ಮಾಡಲು ಯಾವುದೇ ಸಂಗ್ರಹಗಳಿಲ್ಲ.</value>
|
<value>ಪಟ್ಟಿ ಮಾಡಲು ಯಾವುದೇ ಸಂಗ್ರಹಗಳಿಲ್ಲ.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>ಐಟಂ ಹಂಚಿಕೊಳ್ಳಲಾಗಿದೆ.</value>
|
<value>ಐಟಂ ಹಂಚಿಕೊಳ್ಳಲಾಗಿದೆ.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1391,11 +1398,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>ಐಟಂ ಹಂಚಿಕೊಳ್ಳಿ</value>
|
<value>ಐಟಂ ಹಂಚಿಕೊಳ್ಳಿ</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>ಪಟ್ಟಿ ಮಾಡಲು ಯಾವುದೇ ಸಂಸ್ಥೆಗಳು ಇಲ್ಲ.</value>
|
<value>ಪಟ್ಟಿ ಮಾಡಲು ಯಾವುದೇ ಸಂಸ್ಥೆಗಳು ಇಲ್ಲ.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>ಈ ಐಟಂ ಅನ್ನು ಹಂಚಿಕೊಳ್ಳಲು ನೀವು ಬಯಸುವ ಸಂಸ್ಥೆಯನ್ನು ಆರಿಸಿ. ಹಂಚಿಕೆಯು ವಸ್ತುವಿನ ಮಾಲೀಕತ್ವವನ್ನು ಸಂಸ್ಥೆಗೆ ವರ್ಗಾಯಿಸುತ್ತದೆ. ಈ ಐಟಂ ಅನ್ನು ಹಂಚಿಕೊಂಡ ನಂತರ ನೀವು ಇನ್ನು ಮುಂದೆ ಅದರ ನೇರ ಮಾಲೀಕರಾಗಿರುವುದಿಲ್ಲ.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>ಪದಗಳ ಸಂಖ್ಯೆ</value>
|
<value>ಪದಗಳ ಸಂಖ್ಯೆ</value>
|
||||||
@@ -1425,8 +1435,8 @@
|
|||||||
<value>ನಿಮ್ಮ ಖಾತೆಯ ಫಿಂಗರ್ಪ್ರಿಂಟ್ ನುಡಿಗಟ್ಟು</value>
|
<value>ನಿಮ್ಮ ಖಾತೆಯ ಫಿಂಗರ್ಪ್ರಿಂಟ್ ನುಡಿಗಟ್ಟು</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden allows you to share your vault with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>ರಫ್ತು ವಾಲ್ಟ್</value>
|
<value>ರಫ್ತು ವಾಲ್ಟ್</value>
|
||||||
@@ -1501,12 +1511,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>ಅಪ್ಲಿಕೇಶನ್ನ ಬಣ್ಣ ಥೀಮ್ ಅನ್ನು ಬದಲಾಯಿಸಿ.</value>
|
<value>ಅಪ್ಲಿಕೇಶನ್ನ ಬಣ್ಣ ಥೀಮ್ ಅನ್ನು ಬದಲಾಯಿಸಿ.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>ಮರುಪ್ರಾರಂಭಿಸುವ ಅಗತ್ಯವಿದೆ.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>ಮರುಪ್ರಾರಂಭಿಸಲಾಗುತ್ತಿದೆ...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>ಟಿಪ್ಪಣಿ ನಕಲಿಸಿ</value>
|
<value>ಟಿಪ್ಪಣಿ ನಕಲಿಸಿ</value>
|
||||||
@@ -2000,4 +2006,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>ಮುಂದುವರಿಯಲು ಈ ಕ್ರಿಯೆಯನ್ನು ರಕ್ಷಿಸಲಾಗಿದೆ, ದಯವಿಟ್ಟು ನಿಮ್ಮ ಗುರುತನ್ನು ಪರಿಶೀಲಿಸಲು ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರು ನಮೂದಿಸಿ.</value>
|
<value>ಮುಂದುವರಿಯಲು ಈ ಕ್ರಿಯೆಯನ್ನು ರಕ್ಷಿಸಲಾಗಿದೆ, ದಯವಿಟ್ಟು ನಿಮ್ಮ ಗುರುತನ್ನು ಪರಿಶೀಲಿಸಲು ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರು ನಮೂದಿಸಿ.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>저장</value>
|
<value>저장</value>
|
||||||
<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">
|
||||||
|
<value>이동</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>"{0}"에 대한 자동 완성 항목을 보고 계십니다.</value>
|
<value>"{0}"에 대한 자동 완성 항목을 보고 계십니다.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>내 보관함 공유</value>
|
<value>조직에 대해 알아보기</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>"{0}" 앱을 열 수 없습니다.</value>
|
<value>"{0}" 앱을 열 수 없습니다.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>컬렉션이 없습니다.</value>
|
<value>컬렉션이 없습니다.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} 항목이 {1} 조직으로 이동되었습니다.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>항목이 공유되었습니다.</value>
|
<value>항목이 공유되었습니다.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>항목 공유</value>
|
<value>항목 공유</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>조직으로 이동하기</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>조직이 없습니다.</value>
|
<value>조직이 없습니다.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>이 항목을 공유할 조직을 선택하세요. 항목을 공유하면 소유권이 조직으로 이전됩니다. 일단 항목을 공유하면, 항목의 직접적인 소유자가 아니게 됩니다.</value>
|
<value>이 항목을 이동할 조직을 선택하십시오. 항목이 조직으로 이동되면 소유권이 조직으로 이전됩니다. 일단 이동되면, 더는 이동된 항목의 직접적인 소유자가 아니게 됩니다.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>단어 수</value>
|
<value>단어 수</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>계정 지문 구절</value>
|
<value>계정 지문 구절</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden은 조직용 계정을 사용하면 사용자의 보관함을 타인에게 공유할 수 있습니다. bitwarden.com 웹 사이트를 방문하여 더 자세히 알아보시겠습니까?</value>
|
<value>Bitwarden은 조직용 계정을 사용하면 사용자의 보관함 내 항목을 타인에게 공유할 수 있습니다. bitwarden.com 웹 사이트를 방문하여 더 자세히 알아보시겠습니까?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>보관함 내보내기</value>
|
<value>보관함 내보내기</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>애플리케이션의 색상 테마를 변경합니다.</value>
|
<value>애플리케이션의 색상 테마를 변경합니다.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>앱을 다시 시작해야 합니다.</value>
|
<value>시스템 설정과 같이</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>다시 시작하는 중...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>메모 복사</value>
|
<value>메모 복사</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>이 작업은 보호되어 있습니다. 계속하려면 마스터 비밀번호를 입력하여 신원을 인증하세요.</value>
|
<value>이 작업은 보호되어 있습니다. 계속하려면 마스터 비밀번호를 입력하여 신원을 인증하세요.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>캡챠 인증이 필요합니다</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>캡차가 실패했습니다. 다시 시도해 주세요.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>마스터 비밀번호 변경됨</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>마스터 비밀번호 변경</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>최근에 조직 관리자가 마스터 비밀번호를 변경했습니다. 보관함에 액세스하려면 지금 마스터 비밀번호를 업데이트해야 합니다. 계속하면 현재 세션에서 로그아웃되며 다시 로그인해야 합니다. 다른 장치의 활성 세션은 최대 1시간 동안 계속 활성 상태로 유지될 수 있습니다.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>비밀번호 변경 중</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>비밀번호를 변경할 수 없음</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>계속하려면 FIDO2 WebAuthn이 활성화된 보안 키를 준비하고 'WebAuthn 인증'을 클릭한 후 화면에 표시되는 지시사항을 따라주세요.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn을 통해 외부 보안 키를 이용한 인증을 사용할 수 있습니다.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>WebAuthn 인증</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>앱으로 돌아가기</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>기본 브라우저가 WebAuthn을 지원하는지 확인한 후 다시 시도해주세요.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>이 조직에는 자동으로 비밀번호 재설정에 등록하는 기업 정책이 있습니다. 등록하면 조직 관리자가 마스터 암호를 변경할 수 있습니다.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>조직 정책이 보관함 제한 시간에 영향을 미치고 있습니다. 최대 허용 보관함 제한 시간은 {0}시간 {1}분입니다</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>볼트 제한 시간이 조직에서 설정한 제한을 초과합니다.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>하나 이상의 조직 정책이 개인 보관함을 내보내는 것을 제한하고 있습니다.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Saglabāt</value>
|
<value>Saglabāt</value>
|
||||||
<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">
|
||||||
|
<value>Pārvietot</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Saglabā...</value>
|
<value>Saglabā...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Tiek meklēts automātiskās aizpildes vienums "{0}".</value>
|
<value>Tiek meklēts automātiskās aizpildes vienums "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Kopīgot glabātavu</value>
|
<value>Uzzināt par apvienībām</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Nevar atvērt lietotni "{0}".</value>
|
<value>Nevar atvērt lietotni "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Nav krājumu, ko parādīt.</value>
|
<value>Nav krājumu, ko parādīt.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} pārvietots uz {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Vienums tika kopīgots.</value>
|
<value>Vienums tika kopīgots.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Kopīgot vienumu</value>
|
<value>Kopīgot vienumu</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Pārvietot uz apvienību</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Nav apvienību, ko parādīt</value>
|
<value>Nav apvienību, ko parādīt</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Izvēlies apvienību, ar kuru kopīgot šo vienumu. Koplietošana nodod šī vienuma piederību apvienībai. Pēc tā kopīgošanas Tu vairs nebūsi šī vienuma tiešais īpašnieks.</value>
|
<value>Izvēlies apvienību, uz kuru pārvietot šo vienumu. Pārvietošana nodod šī vienuma piederību apvienībai. Tu vairs nebūsi šī vienuma tiešais īpašnieks pēc tā pārvietošanas.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Vārdu skaits</value>
|
<value>Vārdu skaits</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Konta atpazīšanas vārdkopa</value>
|
<value>Konta atpazīšanas vārdkopa</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden nodrošina iespēju kopīgot glabātavu ar citiem, kad tiek izmantots apvienības konts. Vai apmeklēt bitwarden.com tīmekļa vietni, lai uzzinātu vairāk?</value>
|
<value>Bitwarden nodrošina iespēju kopīgot glabātavas vienumus ar citiem, kad tiek izmantots apvienības konts. Vai apmeklēt bitwarden.com tīmekļa vietni, lai uzzinātu vairāk?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Izdot glabātavas saturu</value>
|
<value>Izdot glabātavas saturu</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Mainīt lietotnes izskata krāsas.</value>
|
<value>Mainīt lietotnes izskata krāsas.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Ir nepieciešama pārsāknēšana.</value>
|
<value>Noklusējuma (sistēmas)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Pārsāknē...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Ievietot piezīmes starpliktuvē</value>
|
<value>Ievietot piezīmes starpliktuvē</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Šī darbība ir aizsargāta, lai turpinātu, ir jāievada galvenā parole, lai apstiprinātu identitāti.</value>
|
<value>Šī darbība ir aizsargāta, lai turpinātu, ir jāievada galvenā parole, lai apstiprinātu identitāti.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Nepieciešams Captcha</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha neizdevās. Lūgums mēģināt vēlreiz.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Galvenā parole atjaunināta</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Atjaunināt galveno paroli</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Apvienības pārvaldnieks nesen nomainīja galveno paroli. Lai piekļūtu glabātavai, tā ir jāatjaunina. Turpinot tiks izbeigta pašreizējā sesija un tiks pieprasīta atkārtota pierakstīšanās. Esošās sesijas citās iekārtās var turpināt darboties līdz vienai stundai.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Atjaunina paroli</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Pašreiz nevar atjaunināt paroli</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Lai turpinātu, jāsagatavo FIDO2 WebAuthn iespējota drošības atslēga, tad jāseko norādēm pēc klikšķināšanas uz "Autentificēt WebAuthn" nākamajā skatā.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Ar FIDO2 WebAuthn var autentificēties izmantojot ārēju drošības atslēgu.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Autentificēt WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Atgriezties uz lietotni</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Lūgums pārliecināties, ka noklusējuma pārlūks atbalsta WebAuthn, un mēģināt vēlreiz.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Šajā apvienībā ir uzņēmuma nosacījums, kas automātiski ievieto lietotājus paroles atiestatīšanas sarakstā. Tas ļauj apvienības pārvaldniekiem mainīt lietotāju galveno paroli.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Apvienības nosacījumi ietekmē glabātavas noildzi. Lielākā atļautā glabātavas noildze ir {0} stunda(s) un {1} minūte(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Glabātavas noildze pāŗsniedz apvienības uzstādītos ierobežojumus.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Viens vai vairāki apvienības nosacījumi neļauj izdot privātās glabātavas saturu.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>സംരക്ഷിക്കുക</value>
|
<value>സംരക്ഷിക്കുക</value>
|
||||||
<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">
|
||||||
|
<value>നീക്കുക</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>{0} എന്ന ഓട്ടോഫിൽ ഇനത്തിനായി നിങ്ങൾ തിരയുന്നു.</value>
|
<value>{0} എന്ന ഓട്ടോഫിൽ ഇനത്തിനായി നിങ്ങൾ തിരയുന്നു.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>നിങ്ങളുടെ വാൾട് പങ്കിടുക</value>
|
<value>സംഘടനകളെക്കുറിച്ച് കൂടുതൽ അറിയുക</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>"{0}"അപ്ലിക്കേഷൻ തുറക്കാൻ കഴിയില്ല.</value>
|
<value>"{0}"അപ്ലിക്കേഷൻ തുറക്കാൻ കഴിയില്ല.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>പ്രദർശിപ്പിക്കാൻ കളക്ഷനുകൾ ഒന്നും ഇല്ല.</value>
|
<value>പ്രദർശിപ്പിക്കാൻ കളക്ഷനുകൾ ഒന്നും ഇല്ല.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} {1}-ലേക്ക് മാറ്റി</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>ഇനം പങ്കിട്ടു.</value>
|
<value>ഇനം പങ്കിട്ടു.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>ഇനം പങ്കിടുക</value>
|
<value>ഇനം പങ്കിടുക</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>സംഘടനയിലേക്ക് മാറ്റുക</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>പ്രദർശിപ്പിക്കാൻ സംഘടനകൾ ഒന്നും ഇല്ല.</value>
|
<value>പ്രദർശിപ്പിക്കാൻ സംഘടനകൾ ഒന്നും ഇല്ല.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>ഈ ഇനം പങ്കിടാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്ന ഒരു സംഘടന തിരഞ്ഞെടുക്കുക. പങ്കിട്ട ഇനത്തിന്റെ ഉടമസ്ഥാവകാശം ആ സംഘടനക്ക് കൈമാറുന്നു. ഈ ഇനം പങ്കിട്ടുകഴിഞ്ഞാൽ നിങ്ങൾ അതിന്റെ നേരിട്ടുള്ള ഉടമയാകില്ല.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>വാക്കുകളുടെ എണ്ണം</value>
|
<value>വാക്കുകളുടെ എണ്ണം</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>നിങ്ങളുടെ അക്കൗണ്ടിന്റെ ഫിംഗർപ്രിന്റ് ഫ്രേസ്</value>
|
<value>നിങ്ങളുടെ അക്കൗണ്ടിന്റെ ഫിംഗർപ്രിന്റ് ഫ്രേസ്</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>ഓർഗനൈസേഷൻ(സംഘടന) അക്കൗണ്ട് ഉപയോഗിച്ച് നിങ്ങളുടെ വാൾട് മറ്റുള്ളവരുമായി പങ്കിടാൻ Bitwarden നിങ്ങളെ അനുവദിക്കുന്നു. കൂടുതലറിയാൻ bitwarden.com വെബ്സൈറ്റ് സന്ദർശിക്കാൻ ആഗ്രഹിക്കുന്നുണ്ടോ?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>വാൾട് എക്സ്പോർട്</value>
|
<value>വാൾട് എക്സ്പോർട്</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>അപ്ലിക്കേഷൻ്റെ തീമും വർണ്ണങ്ങളും മാറ്റുക.</value>
|
<value>അപ്ലിക്കേഷൻ്റെ തീമും വർണ്ണങ്ങളും മാറ്റുക.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>പുനരാരംഭം നിർബന്ധമാണ്.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>പുനരാരംഭിക്കുന്നു…</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>കുറിപ്പ് പകർത്തുക</value>
|
<value>കുറിപ്പ് പകർത്തുക</value>
|
||||||
@@ -1863,7 +1869,7 @@
|
|||||||
<value>Maximum Access Count</value>
|
<value>Maximum Access Count</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
||||||
<value>If set, users will no longer be able to access this send once the maximum access count is reached.</value>
|
<value>If set, users will no longer be able to access this Send once the maximum access count is reached.</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">
|
||||||
@@ -1889,7 +1895,7 @@
|
|||||||
<value>പാസ്വേഡ് നീക്കംചെയ്യുന്നു</value>
|
<value>പാസ്വേഡ് നീക്കംചെയ്യുന്നു</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SendPasswordRemoved" xml:space="preserve">
|
<data name="SendPasswordRemoved" xml:space="preserve">
|
||||||
<value>Password has been removed.</value>
|
<value>പാസ്വേഡ് നീക്കം ചെയ്തു</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NotesInfo" xml:space="preserve">
|
<data name="NotesInfo" xml:space="preserve">
|
||||||
<value>Private notes about this Send.</value>
|
<value>Private notes about this Send.</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha നിർബന്ധമാണ്</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>പ്രാഥമിക പാസ്വേഡ് പുതുക്കി</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>പ്രാഥമിക പാസ്വേഡ് പുതുക്കുക</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>പാസ്വേഡ് പുതുക്കുന്നു</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Lagre</value>
|
<value>Lagre</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Lagrer...</value>
|
<value>Lagrer...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Du søker etter en auto-utfyllingsgjenstand for "{0}".</value>
|
<value>Du søker etter en auto-utfyllingsgjenstand for "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Del hvelvet ditt</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Kan ikke åpne appen "{0}".</value>
|
<value>Kan ikke åpne appen "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Det er ingen samlinger å liste opp.</value>
|
<value>Det er ingen samlinger å liste opp.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Gjenstanden har blitt delt.</value>
|
<value>Gjenstanden har blitt delt.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Del objekt</value>
|
<value>Del objekt</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Det er ingen organisasjoner å liste opp.</value>
|
<value>Det er ingen organisasjoner å liste opp.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Velg en organisasjon som du ønsker å dele denne gjenstanden med. Deling overfører gjenstandens eierskap til organisasjonen. Du vil ikke lenger være den direkte eieren av denne gjenstanden når den først har blitt delt.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Antall ord</value>
|
<value>Antall ord</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Din kontos fingeravtrykksfrase</value>
|
<value>Din kontos fingeravtrykksfrase</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden lar deg dele hvelvet ditt med andre ved å bruke en organisasjonskonto. Vil du besøke bitwarden.com-nettstedet for å lære mer?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Eksporter hvelvet</value>
|
<value>Eksporter hvelvet</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Endre appens fargetema.</value>
|
<value>Endre appens fargetema.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Omstart er påkrevd.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Starter på nytt ...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Kopier notater</value>
|
<value>Kopier notater</value>
|
||||||
@@ -2000,4 +2006,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Denne handlingen er beskyttet, for å fortsette å skrive inn superpassordet på nytt for å verifisere din identitet.</value>
|
<value>Denne handlingen er beskyttet, for å fortsette å skrive inn superpassordet på nytt for å verifisere din identitet.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Opslaan</value>
|
<value>Opslaan</value>
|
||||||
<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">
|
||||||
|
<value>Verplaatsen</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Opslaan...</value>
|
<value>Opslaan...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Je zoekt automatisch aanvullen voor "{0}".</value>
|
<value>Je zoekt automatisch aanvullen voor "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Kluis delen</value>
|
<value>Meer over organisaties</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Kan de app "{0}" niet openen.</value>
|
<value>Kan de app "{0}" niet openen.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Er zijn geen verzamelingen om weer te geven.</value>
|
<value>Er zijn geen verzamelingen om weer te geven.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} is verplaatst naar {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Item is gedeeld.</value>
|
<value>Item is gedeeld.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Item delen</value>
|
<value>Item delen</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Naar organisatie verplaatsen</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Geen organisaties om weer te geven.</value>
|
<value>Geen organisaties om weer te geven.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Kies een organisatie waarmee je dit item wil delen. Door het delen krijgt de organisatie de eigendomsrechten van het item. Je bent niet langer meer de directe eigenaar van het item wanneer je deze deelt.</value>
|
<value>Kies een organisatie waarnaar je dit item wilt verplaatsen. Door het verplaatsen krijgt de organisatie de eigendomsrechten van het item. Je bent niet langer de directe eigenaar meer van het item als het is verplaatst.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Aantal woorden</value>
|
<value>Aantal woorden</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Vingerafdrukzin van je account</value>
|
<value>Vingerafdrukzin van je account</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Met een organisatie-account kunt je een Bitwarden-kluis met anderen delen. Wil je naar de website bitwarden.com om meer informatie te lezen?</value>
|
<value>Met een organisatie-account kunt je je Bitwarden-kluis delen met anderen. Wil je de website bitwarden.com bezoeken voor meer informatie?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Kluis exporteren</value>
|
<value>Kluis exporteren</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Het kleurenthema van de applicatie wijzigen.</value>
|
<value>Het kleurenthema van de applicatie wijzigen.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Opnieuw starten is vereist.</value>
|
<value>Standaard (Systeem)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Opnieuw starten...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Notities kopiëren</value>
|
<value>Notities kopiëren</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Deze actie is beveiligd. Voer je hoofdwachtwoord opnieuw in om je identiteit vast te stellen en door te gaan.</value>
|
<value>Deze actie is beveiligd. Voer je hoofdwachtwoord opnieuw in om je identiteit vast te stellen en door te gaan.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha vereist</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha verificatie is mislukt. Probeer het nog eens.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Hoofdwachtwoord bijgewerkt</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Hoofdwachtwoord bijgewerken</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Je hoofdwachtwoord is onlangs veranderd door een beheerder in jouw organisatie. Om toegang te krijgen tot de kluis, moet je deze nu bijwerken. Doorgaan zal je huidige sessie uitloggen, waarna je opnieuw moet inloggen. Actieve sessies op andere apparaten blijven mogelijk nog een uur actief.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Wachtwoord bijwerken</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Kan het wachtwoord momenteel niet bijwerken</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Om door te gaan, moet de FIDO2 WebAuthn enabled security key klaar zijn, volg dan de instructies na het klikken op 'Authenticeer WebAuthn' op het volgende scherm.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Verificatie met behulp van FIDO2 WebAuthn, je kunt authenticeren met behulp van een externe beveiligingssleutel.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticeer WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Terug naar de app</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Zorg ervoor dat je standaardbrowser WebAuthn ondersteunt en probeer het opnieuw.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Deze organisatie heeft een ondernemingsbeleid dat je automatisch inschrijft bij het resetten van je wachtwoord. Inschrijving stelt organisatiebeheerders in staat om je hoofdwachtwoord te wijzigen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Het beleid van je organisatie heeft invloed op de time-out van je kluis. De maximaal toegestane Kluis Time-out is $HOURS$ uur en $MINUTES$ minuten</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Je kluis time-out is hoger dan het maximum van jouw organisatie.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Organisatiebeleid voorkomt dat je je persoonlijke kluis exporteert.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
2060
src/App/Resources/AppResources.nn.resx
Normal file
2060
src/App/Resources/AppResources.nn.resx
Normal file
File diff suppressed because it is too large
Load Diff
@@ -310,6 +310,9 @@
|
|||||||
<value>Zapisz</value>
|
<value>Zapisz</value>
|
||||||
<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">
|
||||||
|
<value>Przenieś</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Zapisywanie...</value>
|
<value>Zapisywanie...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Szukasz element autouzupełniania dla "{0}".</value>
|
<value>Szukasz element autouzupełniania dla "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Udostępnij sejf</value>
|
<value>Dowiedz się więcej o organizacjach</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Nie można otworzyć aplikacji "{0}".</value>
|
<value>Nie można otworzyć aplikacji "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Brak kolekcji do wyświetlenia.</value>
|
<value>Brak kolekcji do wyświetlenia.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} został przeniesiony do {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Element został udostępniony.</value>
|
<value>Element został udostępniony.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Udostępnij element</value>
|
<value>Udostępnij element</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Przenieś do organizacji</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Brak organizacji do wyświetlenia.</value>
|
<value>Brak organizacji do wyświetlenia.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Wybierz organizację, której chcesz udostępnić ten element. Udostępnianie przenosi własność elementu do wybranej organizacji. Nie będziesz już bezpośrednim właścicielem tego elementu, gdy zostanie on udostępniony.</value>
|
<value>Wybierz organizację, do której chcesz przenieść ten element. Ta czynność spowoduje utratę własności elementu i przenosi te uprawnienia do organizacji.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Liczba słów</value>
|
<value>Liczba słów</value>
|
||||||
@@ -1424,7 +1434,7 @@
|
|||||||
<value>Unikalny identyfikator Twojego konta</value>
|
<value>Unikalny identyfikator Twojego konta</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden pozwala na udostępnianie zawartości sejfu innym osobom za pośrednictwem organizacji. Czy chcesz odwiedzić stronę bitwarden.com, aby dowiedzieć się więcej?</value>
|
<value>Bitwarden pozwala na udostępnianie zawartości sejfu innym osobom za pośrednictwem organizacji. Czy chcesz odwiedzić stronę bitwarden.com, aby dowiedzieć się więcej?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Zmień motyw kolorystyczny aplikacji.</value>
|
<value>Zmień motyw kolorystyczny aplikacji.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Uruchomienie ponowne jest wymagane.</value>
|
<value>Domyślny (systemowy)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Uruchamianie ponowne...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Kopiuj notatki</value>
|
<value>Kopiuj notatki</value>
|
||||||
@@ -1712,7 +1718,7 @@
|
|||||||
<value>Ustaw hasło główne</value>
|
<value>Ustaw hasło główne</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SetMasterPasswordSummary" xml:space="preserve">
|
<data name="SetMasterPasswordSummary" xml:space="preserve">
|
||||||
<value>Aby zakończyć logowanie jednokrotne SSO, ustaw hasło główne, aby uzyskać dostęp do sejfu.</value>
|
<value>W celu zakończenia jednokrotnego logowania SSO, ustaw hasło główne, aby uzyskać dostęp do sejfu.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MasterPasswordPolicyInEffect" xml:space="preserve">
|
<data name="MasterPasswordPolicyInEffect" xml:space="preserve">
|
||||||
<value>Co najmniej jedna zasada organizacji wymaga, aby hasło główne spełniało następujące wymagania:</value>
|
<value>Co najmniej jedna zasada organizacji wymaga, aby hasło główne spełniało następujące wymagania:</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Ta operacja jest chroniona. Aby kontynuować, wpisz ponownie hasło główne.</value>
|
<value>Ta operacja jest chroniona. Aby kontynuować, wpisz ponownie hasło główne.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Weryfikacja Captcha jest wymagana</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Weryfikacja Captcha nie powiodła się. Spróbuj ponownie.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Hasło główne zostało zaktualizowane</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Zaktualizuj hasło główne</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Hasło główne zostało zmienione przez administratora Twojej organizacji. Musisz je zaktualizować, aby uzyskać dostęp do sejfu. Ta czynność spowoduje wylogowanie z bieżącej sesji, przez co konieczne będzie ponowne zalogowanie się. Aktywne sesje na innych urządzeniach mogą pozostać aktywne przez maksymalnie godzinę.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Aktualizowanie hasła</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Obecnie nie można zaktualizować hasła</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Przygotuj klucz bezpieczeństwa FIDO2 WebAuthn, kliknij przycisk 'Uwierzytelnianie WebAuthn', a następnie postępuj zgodnie z instrukcjami.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn pozwala na uwierzytelnianie za pomocą zewnętrznego klucza bezpieczeństwa.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Uwierzytelnianie WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Wróć do aplikacji</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Upewnij się, że Twoja przeglądarka obsługuje WebAuthn i spróbuj ponownie.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Ta organizacja posługuje się zasadą, która automatycznie rejestruje użytkowników do resetowania hasła. Rejestracja umożliwia administratorom organizacji zmianę Twojego hasła głównego.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Zasady organizacji mają wpływ czas blokowania sejfu. Maksymalny dozwolony czas wynosi {0} godz. i {1} min.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Czas blokowania sejfu przekracza limit określony przez organizację.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Co najmniej jedna zasada organizacji uniemożliwia wyeksportowanie Twojego sejfu.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Salvar</value>
|
<value>Salvar</value>
|
||||||
<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">
|
||||||
|
<value>Mover</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Salvando...</value>
|
<value>Salvando...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Você está procurando uma credencial de autopreenchimento para "{0}".</value>
|
<value>Você está procurando uma credencial de autopreenchimento para "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Compartilhar Seu Cofre</value>
|
<value>Aprenda mais Sobre as Organizações</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Não é possível abrir o aplicativo "{0}".</value>
|
<value>Não é possível abrir o aplicativo "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Não há coleções para listar.</value>
|
<value>Não há coleções para listar.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} movido para {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>O item foi compartilhado.</value>
|
<value>O item foi compartilhado.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Compartilhar Item</value>
|
<value>Compartilhar Item</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Mover para Organização</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Nenhuma organização para listar.</value>
|
<value>Nenhuma organização para listar.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Escolha uma organização com a qual você deseja compartilhar este item. O compartilhamento transfere a propriedade do item para a organização. Você não será mais o proprietário direto deste item depois de ter sido compartilhado.</value>
|
<value>Escolha uma organização para a qual você deseja mover este item. Mover para uma organização transfere a propriedade do item para essa organização. Você não será mais o proprietário direto deste item depois que ele for movido.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Número de Palavras</value>
|
<value>Número de Palavras</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>A sua frase biométrica</value>
|
<value>A sua frase biométrica</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>O Bitwarden permite que você compartilhe seu cofre com outras pessoas usando uma conta da organização. Gostaria de visitar o site bitwarden.com para saber mais?</value>
|
<value>O Bitwarden permite que você compartilhe os itens do seu cofre com outros ao usar uma conta da organização. Você gostaria de visitar o site bitwarden.com para saber mais?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Exportar Cofre</value>
|
<value>Exportar Cofre</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Altere o tema de cor do aplicativo.</value>
|
<value>Altere o tema de cor do aplicativo.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>É necessário reiniciar.</value>
|
<value>Padrão (Sistema)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Reiniciando...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copiar Notas</value>
|
<value>Copiar Notas</value>
|
||||||
@@ -2000,4 +2006,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Esta ação é protegida, para continuar por favor reinsira a sua senha mestra para verificar a sua identidade.</value>
|
<value>Esta ação é protegida, para continuar por favor reinsira a sua senha mestra para verificar a sua identidade.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Obrigatório</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Errado. Por favor, tente novamente.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Senha Mestra Atualizada</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Atualizar Senha Mestra</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Sua Senha Mestra foi alterada recentemente por um administrador de sua organização. Para acessar o cofre, você precisa atualizar sua Senha Mestra agora. O processo desconectará você da sessão atual, exigindo que você inicie a sessão novamente. Sessões ativas em outros dispositivos podem continuar ativas por até uma hora.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Atualizando Senha</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>No momento não é possível atualizar a senha</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Para continuar, esteja preparado com sua chave de segurança habilitada para FIDO2 WebAuthn e siga as instruções após clicar em 'Autenticar WebAuthn' na próxima tela.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Autenticação usando FIDO2 WebAuthn, você pode autenticar usando uma chave de segurança externa.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Autenticar WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Voltar ao Aplicativo</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Certifique-se de que seu navegador padrão seja compatível com WebAuthn e tente novamente.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Esta organização possui uma política empresarial que irá inscrevê-lo automaticamente na redefinição de senha. A inscrição permitirá que os administradores da organização alterem sua senha mestra.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>As políticas da sua organização estão afetando o tempo limite do seu cofre. O Tempo Limite Máximo permitido do Cofre é {0} hora(s) e {1} minuto(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>O tempo limite do seu cofre excede as restrições definidas por sua organização.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Uma ou mais políticas da organização impedem que você exporte seu cofre pessoal.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Guardar</value>
|
<value>Guardar</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>A guardar...</value>
|
<value>A guardar...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Está a pesquisar por um item de auto-preenchimento para "{0}".</value>
|
<value>Está a pesquisar por um item de auto-preenchimento para "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Partilhar o seu cofre</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Não é possível abrir a aplicação "{0}".</value>
|
<value>Não é possível abrir a aplicação "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Não existem coleções para listar.</value>
|
<value>Não existem coleções para listar.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>O item foi partilhado.</value>
|
<value>O item foi partilhado.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Partilhar item</value>
|
<value>Partilhar item</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Nenhuma organização para listar.</value>
|
<value>Nenhuma organização para listar.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Escolha uma organização com que queira partilhar este item. Partilhar transfere a propriedade do item para a organização. Uma vez transferido já não será o proprietário direto deste item.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Número de palavras</value>
|
<value>Número de palavras</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>A frase de impressão digital da sua conta</value>
|
<value>A frase de impressão digital da sua conta</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>O Bitwarden permite-lhe partilhar o seu cofre com outros ao utilizar uma conta de organização. Gostaria de visitar o website bitwarden.com para saber mais?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Exportar cofre</value>
|
<value>Exportar cofre</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Altere o tema de cor da aplicação.</value>
|
<value>Altere o tema de cor da aplicação.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Reiniciar é requerido.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>A reiniciar...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copiar notas</value>
|
<value>Copiar notas</value>
|
||||||
@@ -1863,7 +1869,7 @@
|
|||||||
<value>Maximum Access Count</value>
|
<value>Maximum Access Count</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
||||||
<value>If set, users will no longer be able to access this send once the maximum access count is reached.</value>
|
<value>If set, users will no longer be able to access this Send once the maximum access count is reached.</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">
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -2039,6 +2039,9 @@
|
|||||||
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
<value>Authenticate WebAuthn</value>
|
<value>Authenticate WebAuthn</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
<data name="Fido2CheckBrowser" xml:space="preserve">
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Salvare</value>
|
<value>Salvare</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Salvare...</value>
|
<value>Salvare...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Căutați o autentificare automată pentru "{0}".</value>
|
<value>Căutați o autentificare automată pentru "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Partajați-vă seiful</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Nu se poate deschide aplicația "{0}".</value>
|
<value>Nu se poate deschide aplicația "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Nu există colecții de afișat.</value>
|
<value>Nu există colecții de afișat.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Articolul a fost partajat.</value>
|
<value>Articolul a fost partajat.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Partajare articol</value>
|
<value>Partajare articol</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Nicio organizație de afișat.</value>
|
<value>Nicio organizație de afișat.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Alegeți o organizație cu care doriți să partajați acest articol. Partajarea transferă proprietatea asupra articolului către organizație. Nu veți mai fi proprietarul direct al acestuia după ce a fost partajat.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Număr de cuvinte</value>
|
<value>Număr de cuvinte</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Fraza amprentă a contului dvs.</value>
|
<value>Fraza amprentă a contului dvs.</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden vă permite să vă partajați seiful cu alte persoane utilizând un cont pentru organizații. Doriți să vizitați saitul bitwarden.com pentru a afla mai multe?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Export seif</value>
|
<value>Export seif</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Schimbare temă de culori a aplicației.</value>
|
<value>Schimbare temă de culori a aplicației.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Repornirea este necesară.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Repornire...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copiere note</value>
|
<value>Copiere note</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Această acțiune este protejată. Pentru a continua, vă rugăm să reintroduceți parola principală pentru a vă verifica identitatea.</value>
|
<value>Această acțiune este protejată. Pentru a continua, vă rugăm să reintroduceți parola principală pentru a vă verifica identitatea.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Сохранить</value>
|
<value>Сохранить</value>
|
||||||
<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">
|
||||||
|
<value>Переместить</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -534,13 +537,13 @@
|
|||||||
<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>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Вы ищете элемент для "{0}".</value>
|
<value>Вы ищете элемент для "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Поделиться вашим хранилищем</value>
|
<value>Узнать об организациях</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Не удается открыть приложение "{0}".</value>
|
<value>Не удается открыть приложение "{0}".</value>
|
||||||
@@ -938,10 +941,10 @@
|
|||||||
<value>API URL-адреса сервера</value>
|
<value>API URL-адреса сервера</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CustomEnvironment" xml:space="preserve">
|
<data name="CustomEnvironment" xml:space="preserve">
|
||||||
<value>Настройка среды</value>
|
<value>Пользовательское окружение</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CustomEnvironmentFooter" xml:space="preserve">
|
<data name="CustomEnvironmentFooter" xml:space="preserve">
|
||||||
<value>Для продвинутых пользователей. Можно указать URL-адреса отдельно для каждой службы.</value>
|
<value>Для опытных пользователей. Можно указать URL отдельно для каждой службы.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnvironmentSaved" xml:space="preserve">
|
<data name="EnvironmentSaved" xml:space="preserve">
|
||||||
<value>URL-адреса среды сохранены.</value>
|
<value>URL-адреса среды сохранены.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Нет коллекций для отображения.</value>
|
<value>Нет коллекций для отображения.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} перемещено в {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Элемент был сделан общим.</value>
|
<value>Элемент был сделан общим.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Поделиться элементом</value>
|
<value>Поделиться элементом</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Переместить в организацию</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Нет организаций для отображения.</value>
|
<value>Нет организаций для отображения.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Выберите организацию, которой хотите предоставить доступ к этому элементу. После выполнения этой операции права на элемент будут переданы организации и вы не будете являться непосредственным владельцем этого элемента.</value>
|
<value>Выберите организацию, в которую вы хотите переместить этот элемент. При перемещении в организацию право собственности на элемент переходит к этой организации. Вы больше не будете прямым владельцем этого элемента после его перемещения.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Количество слов</value>
|
<value>Количество слов</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Фраза отпечатка вашего аккаунта</value>
|
<value>Фраза отпечатка вашего аккаунта</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden позволяет делиться своим хранилищем с другими пользователями, используя аккаунт организации. Хотите посетить сайт bitwarden.com, чтобы узнать больше?</value>
|
<value>Bitwarden позволяет делиться элементами вашего хранилища с другими пользователями, используя аккаунт организации. Хотите посетить сайт bitwarden.com, чтобы узнать больше?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Экспортировать хранилище</value>
|
<value>Экспортировать хранилище</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Изменение цветовой темы приложения.</value>
|
<value>Изменение цветовой темы приложения.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Требуется перезапуск.</value>
|
<value>По умолчанию (системная)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Перезапуск...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Скопировать заметки</value>
|
<value>Скопировать заметки</value>
|
||||||
@@ -1961,7 +1967,7 @@
|
|||||||
<value>30 дней</value>
|
<value>30 дней</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Custom" xml:space="preserve">
|
<data name="Custom" xml:space="preserve">
|
||||||
<value>Другой</value>
|
<value>Пользовательский</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareOnSave" xml:space="preserve">
|
<data name="ShareOnSave" xml:space="preserve">
|
||||||
<value>Поделиться Send после сохранения.</value>
|
<value>Поделиться Send после сохранения.</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Это действие защищено. Для продолжения введите свой мастер-пароль, чтобы подтвердить свою личность.</value>
|
<value>Это действие защищено. Для продолжения введите свой мастер-пароль, чтобы подтвердить свою личность.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Требуется ввод капчи</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Ошибка капчи. Попробуйте еще раз.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Мастер-пароль обновлен</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Обновить мастер-пароль</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Мастер-пароль недавно был изменен администратором вашей организации. Чтобы получить доступ к хранилищу, вы должны обновить мастер-пароль сейчас. В результате текущая сессия будет завершена, потребуется повторный вход. Активные сессии на других устройствах могут оставаться активными в течение одного часа.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Обновление пароля</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>В настоящее время обновить пароль невозможно</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Чтобы продолжить, подготовьте свой ключ безопасности с поддержкой FIDO2 WebAuthn, затем следуйте инструкциям после нажатия кнопки 'Authenticate WebAuthn' на следующем экране.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Аутентификация с помощью FIDO2 WebAuthn. Вы можете аутентифицироваться с помощью внешнего ключа безопасности.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Аутентификация WebAutn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Вернуться в приложение</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Убедитесь, что браузер по умолчанию поддерживает WebAuthn и повторите попытку.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>В этой организации действует корпоративная политика, которая автоматически зарегистрирует вас на сброс пароля. Регистрация позволит администраторам организации изменить ваш мастер-пароль.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Политики вашей организации влияют на тайм-аут хранилища. Максимально допустимый тайм-аут хранилища составляет {0} час. и {1} мин.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Тайм-аут вашего хранилища превышает ограничения, установленные вашей организацией.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Экспорт вашего личного хранилища запрещен одной или несколькими политиками организации.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>සුරකින්න</value>
|
<value>සුරකින්න</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>You are searching for an auto-fill item for "{0}".</value>
|
<value>You are searching for an auto-fill item for "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Share Your Vault</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Cannot open the app "{0}".</value>
|
<value>Cannot open the app "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>There are no collections to list.</value>
|
<value>There are no collections to list.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Item has been shared.</value>
|
<value>Item has been shared.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Share Item</value>
|
<value>Share Item</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>No organizations to list.</value>
|
<value>No organizations to list.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Choose an organization that you wish to share this item with. Sharing transfers ownership of the item to the organization. You will no longer be the direct owner of this item once it has been shared.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Number of Words</value>
|
<value>Number of Words</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Your account's fingerprint phrase</value>
|
<value>Your account's fingerprint phrase</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden allows you to share your vault with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Export Vault</value>
|
<value>Export Vault</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Change the application's color theme.</value>
|
<value>Change the application's color theme.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Restart is required.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Restarting...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copy Notes</value>
|
<value>Copy Notes</value>
|
||||||
@@ -1864,7 +1870,7 @@
|
|||||||
<value>Maximum Access Count</value>
|
<value>Maximum Access Count</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
||||||
<value>If set, users will no longer be able to access this send once the maximum access count is reached.</value>
|
<value>If set, users will no longer be able to access this Send once the maximum access count is reached.</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">
|
||||||
@@ -2000,4 +2006,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Uložiť</value>
|
<value>Uložiť</value>
|
||||||
<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">
|
||||||
|
<value>Presunúť</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Ukladá sa...</value>
|
<value>Ukladá sa...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Hľadáte automaticky vypľňané prihlásenie pre "{0}".</value>
|
<value>Hľadáte automaticky vypľňané prihlásenie pre "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Zdieľať trezor</value>
|
<value>Zistiť viac o organizáciách</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Nemožno spustiť aplikáciu "{0}".</value>
|
<value>Nemožno spustiť aplikáciu "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Neexistujú žiadne zbierky na zobrazenie.</value>
|
<value>Neexistujú žiadne zbierky na zobrazenie.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} presunuté do {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Položka bola zdieľaná.</value>
|
<value>Položka bola zdieľaná.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Zdieľať položku</value>
|
<value>Zdieľať položku</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Presunúť do Organizácie</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Nenašli sa žiadne organizácie.</value>
|
<value>Nenašli sa žiadne organizácie.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Vyberte organizáciu s ktorou chcete zdieľať túto položku. Zdieľanie presunie vlastníctvo položky na organizáciu. Po zdieľaní už nebudete priamy vlastník položky.</value>
|
<value>Vyberte organizáciu, do ktorej chcete presunúť túto položku. Presunom do organizácie sa vlastníctvo položky prenáša na túto organizáciu. Po presunutí už nebudete priamym vlastníkom danej položky.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Počet slov</value>
|
<value>Počet slov</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Fráza odtlačku vašeho účtu</value>
|
<value>Fráza odtlačku vašeho účtu</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden vám umožňuje zdieľať váš trezor s ostatnými ak používate konto v Organizácii. Chcete navštíviť stránku bitwarden.com a dozvedieť sa viac?</value>
|
<value>Bitwarden vám umožňuje zdieľať položky vášho trezora s ostatnými použitím konta v organizácii. Chcete navštíviť stránku bitwarden.com a dozvedieť sa viac?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Export trezoru</value>
|
<value>Export trezoru</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Zmeniť motív aplikácie.</value>
|
<value>Zmeniť motív aplikácie.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Vyžaduje sa reštart.</value>
|
<value>Predvolené systémom</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Prebieha reštartovanie...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Kopírovať poznámky</value>
|
<value>Kopírovať poznámky</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Táto akcia je chránená. Ak chcete pokračovať, znova zadajte hlavné heslo a overte svoju totožnosť.</value>
|
<value>Táto akcia je chránená. Ak chcete pokračovať, znova zadajte hlavné heslo a overte svoju totožnosť.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Vyžaduje sa Captcha</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha zlyhala. Prosím, skúste to znova.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Hlavné heslo aktualizované</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Aktualizovať hlavné heslo</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Vaše hlavné heslo nedávno zmenil správca vo vašej organizácii. Ak chcete získať prístup k trezoru, musíte aktualizovať vaše hlavné heslo teraz. Pokračovaním sa odhlásite z aktuálnej relácie a budete sa musieť znova prihlásiť. Aktívne relácie na iných zariadeniach môžu zostať aktívne až jednu hodinu.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Aktualizácia hesla</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Aktuálne nie je možné heslo aktualizovať </value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Ak chcete pokračovať, pripravte si bezpečnostný kľúč s povoleným FIDO2 WebAuthn a potom kliknite na položku "Overiť cez WebAuthn" na ďalšej obrazovke a potom postupujte podľa pokynov.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Overovanie cez FIDO2 WebAuthn, môžete overovať pomocou externého bezpečnostného kľúča.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Overiť cez WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Vrátiť sa do aplikácie</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Skontrolujte, či váš predvolený prehliadač podporuje WebAuthn, a skúste to znova.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Táto organizácia má podnikovú politiku, ktorá vás automaticky zaregistruje na obnovenia hesla. Registrácia umožní správcom organizácie zmeniť vaše hlavné heslo.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Zásady vašej organizácie ovplyvňujú časový limit trezoru. Maximálny povolený časový limit trezoru je {0} h a {1} m</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Časový limit vášho trezora prekračuje obmedzenia nastavené vašou organizáciou.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Jedna alebo viacero zásad organizácie vám bráni exportovať váš osobný trezor.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Shrani</value>
|
<value>Shrani</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Shranjevanje...</value>
|
<value>Shranjevanje...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>You are searching for an auto-fill item for "{0}".</value>
|
<value>You are searching for an auto-fill item for "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Delite svoj sef </value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Cannot open the app "{0}".</value>
|
<value>Cannot open the app "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Ni zbirk za prikazat.</value>
|
<value>Ni zbirk za prikazat.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Vnos je bil deljen.</value>
|
<value>Vnos je bil deljen.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Delite vnos</value>
|
<value>Delite vnos</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Ni organizacij za prikazat.</value>
|
<value>Ni organizacij za prikazat.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Izberite organizacijo s katero želite deliti ta predmet. Lastništvo predmeta se ob deljenju prenese na organizacijo s katero predmet delite.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Število besed</value>
|
<value>Število besed</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Your account's fingerprint phrase</value>
|
<value>Your account's fingerprint phrase</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwaren omogoča delitev vašega trezorja z drugimi s pomočjo organizacijskega računa. Želite obiskati bitwarden.com spletno stran za več informacij?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Izvoz trezorja</value>
|
<value>Izvoz trezorja</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Change the application's color theme.</value>
|
<value>Change the application's color theme.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Potreben je ponovni zagon.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Ponovni zagon...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copy Notes</value>
|
<value>Copy Notes</value>
|
||||||
@@ -1864,7 +1870,7 @@
|
|||||||
<value>Maximum Access Count</value>
|
<value>Maximum Access Count</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
||||||
<value>If set, users will no longer be able to access this send once the maximum access count is reached.</value>
|
<value>If set, users will no longer be able to access this Send once the maximum access count is reached.</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">
|
||||||
@@ -2000,4 +2006,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Сачувај</value>
|
<value>Сачувај</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Тражите ауто-пуњење за „{0}“.</value>
|
<value>Тражите ауто-пуњење за „{0}“.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Поделите Ваш Сеф</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Не може да се отвори апликација „{0}“.</value>
|
<value>Не може да се отвори апликација „{0}“.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Нема колекције у листи.</value>
|
<value>Нема колекције у листи.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Ставка је подељена.</value>
|
<value>Ставка је подељена.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Поделити ставку</value>
|
<value>Поделити ставку</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Ниједна организација у листу.</value>
|
<value>Ниједна организација у листу.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Изаберите организацију са којом желите да делите ову ставку. Дељење преноси власништво предмета на организацију. Више нећете бити директни власник ове ставке када се она дели.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Број речи</value>
|
<value>Број речи</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Ваша Сигурносна Фраза Сефа</value>
|
<value>Ваша Сигурносна Фраза Сефа</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden вам омогућава да делите сефса другима користећи налог организације. Да ли желите да посетите веб локацију bitwarden.com да бисте сазнали више?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Извоз сефа</value>
|
<value>Извоз сефа</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Промени боје апликације.</value>
|
<value>Промени боје апликације.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Потребно рестартовање.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Поновно покретање…</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Копирај белешке</value>
|
<value>Копирај белешке</value>
|
||||||
@@ -2000,4 +2006,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Ова акција је заштићена, да бисте наставили, поново унесите своју главну лозинку да бисте проверили идентитет.</value>
|
<value>Ова акција је заштићена, да бисте наставили, поново унесите своју главну лозинку да бисте проверили идентитет.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -164,11 +164,11 @@
|
|||||||
<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>Ta bort</value>
|
<value>Radera</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>Tar bort...</value>
|
<value>Raderar…</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">
|
||||||
@@ -176,10 +176,10 @@
|
|||||||
<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>Ändra</value>
|
<value>Redigera</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EditFolder" xml:space="preserve">
|
<data name="EditFolder" xml:space="preserve">
|
||||||
<value>Ändra mapp</value>
|
<value>Redigera mapp</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Email" xml:space="preserve">
|
<data name="Email" xml:space="preserve">
|
||||||
<value>E-post</value>
|
<value>E-post</value>
|
||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Spara</value>
|
<value>Spara</value>
|
||||||
<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">
|
||||||
|
<value>Flytta</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Sparar...</value>
|
<value>Sparar...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Du letar efter en inloggning som kan automatiskt fyllas i för "{0}".</value>
|
<value>Du letar efter en inloggning som kan automatiskt fyllas i för "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Dela ditt valv</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Kan inte öppna appen "{0}".</value>
|
<value>Kan inte öppna appen "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Det finns inga samlingar att visa.</value>
|
<value>Det finns inga samlingar att visa.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Objektet har delats.</value>
|
<value>Objektet har delats.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Dela objekt</value>
|
<value>Dela objekt</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Inga organisationer att lista.</value>
|
<value>Inga organisationer att lista.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Välj en organisation som du vill dela detta objekt med. Delning överför ägandet av objektet till organisationen. Du kommer inte längre vara direkt ägare till detta objekt när det har delats.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Antal ord</value>
|
<value>Antal ord</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Ditt kontos fingeravtrycksfras</value>
|
<value>Ditt kontos fingeravtrycksfras</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden gör det möjligt för dig att dela ditt valv med andra genom att använda ett organisationskonto. Vill du besöka bitwarden.com för att lära dig mer?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Exportera valv</value>
|
<value>Exportera valv</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Ändra appens färgtema.</value>
|
<value>Ändra appens färgtema.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Omstart krävs.</value>
|
<value>Standard (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Startar om...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Kopiera anteckningar</value>
|
<value>Kopiera anteckningar</value>
|
||||||
@@ -1561,7 +1567,7 @@
|
|||||||
<value>Växla synlighet</value>
|
<value>Växla synlighet</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoginExpired" xml:space="preserve">
|
<data name="LoginExpired" xml:space="preserve">
|
||||||
<value>Din inloggningssession har löpt ut.</value>
|
<value>Din inloggningssession har upphört.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BiometricsDirection" xml:space="preserve">
|
<data name="BiometricsDirection" xml:space="preserve">
|
||||||
<value>Använd biometri för att bekräfta.</value>
|
<value>Använd biometri för att bekräfta.</value>
|
||||||
@@ -1665,7 +1671,7 @@
|
|||||||
<comment>Confirmation message after successfully restoring a soft-deleted item</comment>
|
<comment>Confirmation message after successfully restoring a soft-deleted item</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Trash" xml:space="preserve">
|
<data name="Trash" xml:space="preserve">
|
||||||
<value>Papperskorgen</value>
|
<value>Papperskorg</value>
|
||||||
<comment>(noun) Location of deleted items which have not yet been permanently deleted</comment>
|
<comment>(noun) Location of deleted items which have not yet been permanently deleted</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="SearchTrash" xml:space="preserve">
|
<data name="SearchTrash" xml:space="preserve">
|
||||||
@@ -1803,11 +1809,11 @@
|
|||||||
<value>En organisationspolicy påverkar dina ägarskapsalternativ.</value>
|
<value>En organisationspolicy påverkar dina ägarskapsalternativ.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Send" xml:space="preserve">
|
<data name="Send" xml:space="preserve">
|
||||||
<value>Försändelse</value>
|
<value>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="AllSends" xml:space="preserve">
|
<data name="AllSends" xml:space="preserve">
|
||||||
<value>Alla försändelser</value>
|
<value>All Sends</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="Sends" xml:space="preserve">
|
<data name="Sends" xml:space="preserve">
|
||||||
@@ -1858,7 +1864,7 @@
|
|||||||
<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">
|
||||||
<value>Utgången</value>
|
<value>Upphört</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCount" xml:space="preserve">
|
<data name="MaximumAccessCount" xml:space="preserve">
|
||||||
<value>Maximalt antal åtkomster</value>
|
<value>Maximalt antal åtkomster</value>
|
||||||
@@ -1893,7 +1899,7 @@
|
|||||||
<value>Lösenordet har tagits bort.</value>
|
<value>Lösenordet har tagits bort.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NotesInfo" xml:space="preserve">
|
<data name="NotesInfo" xml:space="preserve">
|
||||||
<value>Egna anteckningar om denna försändelse.</value>
|
<value>Private notes about this 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="DisableSend" xml:space="preserve">
|
<data name="DisableSend" xml:space="preserve">
|
||||||
@@ -1923,27 +1929,27 @@
|
|||||||
<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="EditSend" xml:space="preserve">
|
<data name="EditSend" xml:space="preserve">
|
||||||
<value>Redigera försändelse</value>
|
<value>Redigera 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="AddSend" xml:space="preserve">
|
<data name="AddSend" xml:space="preserve">
|
||||||
<value>Lägg till försändelse</value>
|
<value>Lägg till 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">
|
||||||
<value>Är du säker på att du vill radera denna försändelse?</value>
|
<value>Är du säker på att du vill radera denna 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="SendDeleted" xml:space="preserve">
|
<data name="SendDeleted" xml:space="preserve">
|
||||||
<value>Försändelsen har raderats.</value>
|
<value>Send har raderats.</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">
|
||||||
<value>Försändelse uppdaterad</value>
|
<value>Send updated.</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>Ny försändelse skapad.</value>
|
<value>Ny Send har skapats.</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">
|
||||||
@@ -1973,7 +1979,7 @@
|
|||||||
<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="AboutSend" xml:space="preserve">
|
<data name="AboutSend" xml:space="preserve">
|
||||||
<value>Om försändelser</value>
|
<value>Om 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="HideEmail" xml:space="preserve">
|
<data name="HideEmail" xml:space="preserve">
|
||||||
@@ -2000,4 +2006,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Denna åtgärd är skyddad. För att fortsätta, vänligen verifiera din identitet genom att ange ditt huvudlösenord.</value>
|
<value>Denna åtgärd är skyddad. För att fortsätta, vänligen verifiera din identitet genom att ange ditt huvudlösenord.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha misslyckades. Vänligen försök igen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Autentisera WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -125,14 +125,14 @@
|
|||||||
<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">
|
||||||
<value>ஓரு பிழை நிகழ்ந்துவிட்டது</value>
|
<value>ஓரு பிழை நேர்ந்துவிட்டது.</value>
|
||||||
<comment>Alert title when something goes wrong.</comment>
|
<comment>Alert title when something goes wrong.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Back" xml:space="preserve">
|
<data name="Back" 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">
|
||||||
@@ -172,14 +172,14 @@
|
|||||||
<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>
|
||||||
@@ -193,10 +193,10 @@
|
|||||||
<value>எங்களுக்கு மின்னஞ்சலிடு</value>
|
<value>எங்களுக்கு மின்னஞ்சலிடு</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EmailUsDescription" xml:space="preserve">
|
<data name="EmailUsDescription" xml:space="preserve">
|
||||||
<value>நேரடியாக உதவி பெற அ கருத்து தெரிவிக்கவோ எங்களுக்கு மின்னஞ்சலிடு</value>
|
<value>நேரடியாக உதவி பெற அ கருத்து தெரிவிக்க எங்களுக்கு மின்னஞ்சலிடு</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnterPIN" xml:space="preserve">
|
<data name="EnterPIN" xml:space="preserve">
|
||||||
<value>கடவுக்குறியீட்டை உள்ளிடவும்.</value>
|
<value>உம் கடவுக்குறியை உள்ளிடு.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Favorites" xml:space="preserve">
|
<data name="Favorites" xml:space="preserve">
|
||||||
<value>பிடித்தவை</value>
|
<value>பிடித்தவை</value>
|
||||||
@@ -209,7 +209,7 @@
|
|||||||
<value>GitHub களஞ்சியத்தில் ஒரு சிக்கலைத் திற.</value>
|
<value>GitHub களஞ்சியத்தில் ஒரு சிக்கலைத் திற.</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,20 +219,20 @@
|
|||||||
<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>
|
||||||
<comment>Items that have no folder specified go in this special "catch-all" folder.</comment>
|
<comment>Items that have no folder specified go in this special "catch-all" folder.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Folders" xml:space="preserve">
|
<data name="Folders" xml:space="preserve">
|
||||||
<value>கோப்புறைகள்</value>
|
<value>கோப்புறைகள்</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FolderUpdated" xml:space="preserve">
|
<data name="FolderUpdated" xml:space="preserve">
|
||||||
<value>கோப்புறை புதுப்பிக்கப்பட்டது</value>
|
<value>கோப்புறை புதுப்பிக்கப்பட்டது.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GoToWebsite" xml:space="preserve">
|
<data name="GoToWebsite" xml:space="preserve">
|
||||||
<value>வலைத்தளத்திற்கு செல்</value>
|
<value>வலைத்தளத்திற்குச் செல்</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">
|
||||||
@@ -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>
|
||||||
@@ -273,7 +273,7 @@
|
|||||||
<comment>The log out button text (verb).</comment>
|
<comment>The log out button text (verb).</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LogoutConfirmation" xml:space="preserve">
|
<data name="LogoutConfirmation" 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>
|
||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>சேமி</value>
|
<value>சேமி</value>
|
||||||
<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">
|
||||||
|
<value>நகர்த்து</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -345,10 +348,10 @@
|
|||||||
<comment>Label for a uri/url.</comment>
|
<comment>Label for a uri/url.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseFingerprintToUnlock" xml:space="preserve">
|
<data name="UseFingerprintToUnlock" xml:space="preserve">
|
||||||
<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">
|
||||||
@@ -394,7 +397,7 @@
|
|||||||
<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>
|
||||||
@@ -412,7 +415,7 @@
|
|||||||
<value>Bitwarden செயலி நீட்டிப்பு</value>
|
<value>Bitwarden செயலி நீட்டிப்பு</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>Safari மற்றும் மற்ற செயலிகளில் உங்கள் உள்நுழைவுகளை தானாக நிரப்ப Bitwarden ஐ பயன்படுத்து.</value>
|
<value>Safari மற்றும் மற்ற செயலிகளில் உங்கள் உள்நுழைவுகளை தானாக நிரப்ப Bitwarden ஐ பயன்படுத்து.</value>
|
||||||
@@ -576,7 +579,7 @@
|
|||||||
<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>நீட்டிப்பை பயன்படுத்தும் முன் நீங்கள் முதன்மை Bitwarden செயலியில் உள்நுழைய வேண்டும்.</value>
|
<value>நீட்டிப்பை பயன்படுத்தும் முன் நீங்கள் முதன்மை Bitwarden செயலியில் உள்நுழைய வேண்டும்.</value>
|
||||||
@@ -591,10 +594,10 @@
|
|||||||
<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>
|
||||||
@@ -656,7 +659,7 @@
|
|||||||
<value>கடவுக்குறியை அமை</value>
|
<value>கடவுக்குறியை அமை</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SetPINDirection" xml:space="preserve">
|
<data name="SetPINDirection" xml:space="preserve">
|
||||||
<value>செயலியைத் திறக்க 4 இலக்க கடவுக்குறியீட்டை உள்ளிடவும்.</value>
|
<value>செயலியைத் திறக்க 4 இலக்க கடவுக்குறியை உள்ளிடு.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ItemInformation" xml:space="preserve">
|
<data name="ItemInformation" xml:space="preserve">
|
||||||
<value>உருப்படியின் தகவல்</value>
|
<value>உருப்படியின் தகவல்</value>
|
||||||
@@ -695,14 +698,14 @@
|
|||||||
<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">
|
||||||
<value>சரிபார்ப்பு குறியீடு</value>
|
<value>சரிபார்ப்புக் குறியீடு</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ViewItem" xml:space="preserve">
|
<data name="ViewItem" xml:space="preserve">
|
||||||
<value>உருப்படியை பார்</value>
|
<value>உருப்படியை பார்</value>
|
||||||
@@ -750,10 +753,10 @@
|
|||||||
<value>௨. நிலைமாற்றியை இயக்கி ஏற்றுக்கொள்ள சரியை அழுத்து.</value>
|
<value>௨. நிலைமாற்றியை இயக்கி ஏற்றுக்கொள்ள சரியை அழுத்து.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Disabled" xml:space="preserve">
|
<data name="Disabled" xml:space="preserve">
|
||||||
<value>முடக்கப்பட்டது</value>
|
<value>முடக்கத்தில்</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Enabled" xml:space="preserve">
|
<data name="Enabled" xml:space="preserve">
|
||||||
<value>இயக்கப்பட்டது</value>
|
<value>இயக்கத்தில்</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Status" xml:space="preserve">
|
<data name="Status" xml:space="preserve">
|
||||||
<value>நிலை</value>
|
<value>நிலை</value>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>"{0}"க்கான தண்னிரப்ப உருப்படியை தேடிக்கொண்டிருக்கிறீர்கள்.</value>
|
<value>"{0}"க்கான தண்னிரப்ப உருப்படியை தேடிக்கொண்டிருக்கிறீர்கள்.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>உங்கள் பெட்டகத்தைப் பகிர்</value>
|
<value>நிறுவுவனங்கள் பற்று அறிக</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>"{0}" செயலியைத் திறக்க இயலவில்லை.</value>
|
<value>"{0}" செயலியைத் திறக்க இயலவில்லை.</value>
|
||||||
@@ -809,7 +812,7 @@
|
|||||||
<value>இக்கணக்கில் இரு-படி சரிபார்ப்பு இயக்கத்திலுள்ளது, எனினும், உள்ளமைக்கப்பட்ட இரு-படி வழங்குநர் எவையும் இச்சாதனத்தில் ஆதரிக்கப்படவில்லை. ஆதரிக்கப்பட்ட சாதனம் மற்றும்/அ சாதனங்களுக்கிடையே நன்றாக ஆதரிக்கப்படும் கூடுதல் (அங்கீகார செயலி போன்ற) வழங்குநர்களைப் பயன்படுத்தவும்.</value>
|
<value>இக்கணக்கில் இரு-படி சரிபார்ப்பு இயக்கத்திலுள்ளது, எனினும், உள்ளமைக்கப்பட்ட இரு-படி வழங்குநர் எவையும் இச்சாதனத்தில் ஆதரிக்கப்படவில்லை. ஆதரிக்கப்பட்ட சாதனம் மற்றும்/அ சாதனங்களுக்கிடையே நன்றாக ஆதரிக்கப்படும் கூடுதல் (அங்கீகார செயலி போன்ற) வழங்குநர்களைப் பயன்படுத்தவும்.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RecoveryCodeTitle" xml:space="preserve">
|
<data name="RecoveryCodeTitle" xml:space="preserve">
|
||||||
<value>மீட்பு குறியீடு</value>
|
<value>மீட்புக் குறியீடு</value>
|
||||||
<comment>For 2FA</comment>
|
<comment>For 2FA</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="RememberMe" xml:space="preserve">
|
<data name="RememberMe" xml:space="preserve">
|
||||||
@@ -1133,13 +1136,13 @@
|
|||||||
<value>தொகுப்புகள்</value>
|
<value>தொகுப்புகள்</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoItemsCollection" xml:space="preserve">
|
<data name="NoItemsCollection" xml:space="preserve">
|
||||||
<value>இந்த தொகுப்பில் உருப்படிகள் ஏதுமில்லை.</value>
|
<value>இத்தொகுப்பில் உருப்படிகள் ஏதுமில்லை.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoItemsFolder" xml:space="preserve">
|
<data name="NoItemsFolder" xml:space="preserve">
|
||||||
<value>இந்த கோப்புறையில் உருப்படிகள் ஏதுமில்லை.</value>
|
<value>இக்கோப்புறையில் உருப்படிகள் ஏதுமில்லை.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoItemsTrash" xml:space="preserve">
|
<data name="NoItemsTrash" xml:space="preserve">
|
||||||
<value>இந்த குப்பையில் உருப்படிகள் ஏதுமில்லை.</value>
|
<value>இக்குப்பையில் உருப்படிகள் ஏதுமில்லை.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillAccessibilityService" xml:space="preserve">
|
<data name="AutofillAccessibilityService" xml:space="preserve">
|
||||||
<value>தன்னிரப்பி அணுகல்தன்மை சேவை</value>
|
<value>தன்னிரப்பி அணுகல்தன்மை சேவை</value>
|
||||||
@@ -1151,7 +1154,7 @@
|
|||||||
<value>உள்நுழைவுகள், கடனட்டைகள், மற்றும் அடையாள தகவலை பிற செயலிகளினுள்ளே நிரப்ப Bitwarden தன்னிரப்பி சேவையை பயன்படுத்து.</value>
|
<value>உள்நுழைவுகள், கடனட்டைகள், மற்றும் அடையாள தகவலை பிற செயலிகளினுள்ளே நிரப்ப Bitwarden தன்னிரப்பி சேவையை பயன்படுத்து.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceOpenAutofillSettings" xml:space="preserve">
|
<data name="BitwardenAutofillServiceOpenAutofillSettings" xml:space="preserve">
|
||||||
<value>தானாக நிரப்புதல் அமைப்புகளைத் திற</value>
|
<value>தன்னிரப்பல் அமைவுகளைத் திற</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FaceID" xml:space="preserve">
|
<data name="FaceID" xml:space="preserve">
|
||||||
<value>முக அடையாளம்</value>
|
<value>முக அடையாளம்</value>
|
||||||
@@ -1161,7 +1164,7 @@
|
|||||||
<value>சரிபார்க்க முக அடையாளத்தைப் பயன்படுத்தவும்.</value>
|
<value>சரிபார்க்க முக அடையாளத்தைப் பயன்படுத்தவும்.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseFaceIDToUnlock" xml:space="preserve">
|
<data name="UseFaceIDToUnlock" xml:space="preserve">
|
||||||
<value>பூட்டவிற்க முக அடையாளத்தைப் பயன்படுத்தவும்.</value>
|
<value>முக அடையாளத்தைப் பயன்படுத்தி பூட்டவிழ்.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VerifyFaceID" xml:space="preserve">
|
<data name="VerifyFaceID" xml:space="preserve">
|
||||||
<value>முக அடையாளத்தை சரிபார்க்கவும்</value>
|
<value>முக அடையாளத்தை சரிபார்க்கவும்</value>
|
||||||
@@ -1176,7 +1179,7 @@
|
|||||||
<value>தனிப்பயன் புலத்தின் பெயர்</value>
|
<value>தனிப்பயன் புலத்தின் பெயர்</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FieldTypeBoolean" xml:space="preserve">
|
<data name="FieldTypeBoolean" xml:space="preserve">
|
||||||
<value>Boolean</value>
|
<value>ஈர்மம்</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FieldTypeHidden" xml:space="preserve">
|
<data name="FieldTypeHidden" xml:space="preserve">
|
||||||
<value>மறைக்கப்பட்ட</value>
|
<value>மறைக்கப்பட்ட</value>
|
||||||
@@ -1238,7 +1241,7 @@
|
|||||||
<comment>An entity of multiple related people (ex. a team or business organization).</comment>
|
<comment>An entity of multiple related people (ex. a team or business organization).</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="HoldYubikeyNearTop" xml:space="preserve">
|
<data name="HoldYubikeyNearTop" xml:space="preserve">
|
||||||
<value>Hold your Yubikey near the top of the device.</value>
|
<value>உம் யூபிவிசையை சாதனத்தின் உச்சிக்கருகில் பிடித்திரு.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TryAgain" xml:space="preserve">
|
<data name="TryAgain" xml:space="preserve">
|
||||||
<value>மீண்டும் முயல்</value>
|
<value>மீண்டும் முயல்</value>
|
||||||
@@ -1344,10 +1347,10 @@
|
|||||||
<value>வகைகள்</value>
|
<value>வகைகள்</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoPasswordsToList" xml:space="preserve">
|
<data name="NoPasswordsToList" xml:space="preserve">
|
||||||
<value>பட்டியலிட கடவுச்சொற்கள் ஏதுமில்லை.</value>
|
<value>பட்டியலிட கடவுச்சொற்களில்லை.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoItemsToList" xml:space="preserve">
|
<data name="NoItemsToList" xml:space="preserve">
|
||||||
<value>பட்டியலிட உருப்படிகள் ஏதுமில்லை.</value>
|
<value>பட்டியலிட உருப்படிகளில்லை.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SearchCollection" xml:space="preserve">
|
<data name="SearchCollection" xml:space="preserve">
|
||||||
<value>தொகுப்பை தேடுக</value>
|
<value>தொகுப்பை தேடுக</value>
|
||||||
@@ -1377,7 +1380,11 @@
|
|||||||
<value>இந்த உருப்படி யாருடையது?</value>
|
<value>இந்த உருப்படி யாருடையது?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>பட்டியலிட தொகுப்புகள் ஏதுமில்லை.</value>
|
<value>பட்டியலிட தொகுப்புகளில்லை.</value>
|
||||||
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} {1}-க்கு நகர்த்தப்பட்டது.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>உருப்படி பகிரப்பட்டது.</value>
|
<value>உருப்படி பகிரப்பட்டது.</value>
|
||||||
@@ -1391,11 +1398,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>உருப்படியை பகிர்</value>
|
<value>உருப்படியை பகிர்</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
<value>பட்டியலிட நிறுவனங்கள் ஏதுமில்லை.</value>
|
<value>நிறுவனத்துக்கு நகர்த்து</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Choose an organization that you wish to share this item with. Sharing transfers ownership of the item to the organization. You will no longer be the direct owner of this item once it has been shared.</value>
|
<value>பட்டியலிட நிறுவனங்களில்லை.</value>
|
||||||
|
</data>
|
||||||
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>சொற்களின் எண்ணிக்கை</value>
|
<value>சொற்களின் எண்ணிக்கை</value>
|
||||||
@@ -1415,7 +1425,7 @@
|
|||||||
<comment>Short for "Password Generator"</comment>
|
<comment>Short for "Password Generator"</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="NoFoldersToList" xml:space="preserve">
|
<data name="NoFoldersToList" xml:space="preserve">
|
||||||
<value>பட்டியலிட கோப்புறைகள் ஏதுமில்லை.</value>
|
<value>பட்டியலிட கோப்புறைகளில்லை.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FingerprintPhrase" xml:space="preserve">
|
<data name="FingerprintPhrase" xml:space="preserve">
|
||||||
<value>கைரேகை சொற்றொடர்</value>
|
<value>கைரேகை சொற்றொடர்</value>
|
||||||
@@ -1425,8 +1435,8 @@
|
|||||||
<value>உங்கள் கணக்கின் கைரேகை சொற்றொடர்</value>
|
<value>உங்கள் கணக்கின் கைரேகை சொற்றொடர்</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>நிறுவன கணக்கைப் பயன்படுத்தி உம் பெட்டகத்தைப் பிறருடன் பகிர உம்மை Bitwarden அனுமதிக்கிறது. மேலும் அறிய bitwarden.com வலைத்தளத்தை பார்வையிட விருப்பமா?</value>
|
<value>நிறுவன கணக்கைப் பயன்படுத்தி உம் பெட்ட உருப்படிகளைப் பிறருடன் பகிர உம்மை Bitwarden அனுமதிக்கிறது. மேலும் அறிய bitwarden.com வலைத்தளத்தைப் பார்வையிட விருப்பமா?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>பெட்டகத்தை ஏற்றுமதி செய்</value>
|
<value>பெட்டகத்தை ஏற்றுமதி செய்</value>
|
||||||
@@ -1444,7 +1454,7 @@
|
|||||||
<value>௩௦ நிமிடங்கள்</value>
|
<value>௩௦ நிமிடங்கள்</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SetPINDescription" xml:space="preserve">
|
<data name="SetPINDescription" xml:space="preserve">
|
||||||
<value>Bitwardenஐ பூட்டவிழ்க்க உம் குறியீட்டெண்ணை அமை. நீ எப்போதாவது முழுமையாக செயலியிலிருந்து வெளியேறினால் உம் குறியீட்டெண் அமைவுகள் அகரமாக்கப்படும்.</value>
|
<value>Bitwardenஐ பூட்டவிழ்க்க உம் கடவுக்குறியை அமை. நீ எப்போதாவது முழுமையாக செயலியிலிருந்து வெளியேறினால் உம் கடவுக்குறி அமைவுகள் அகரமாக்கப்படும்.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoggedInAsOn" xml:space="preserve">
|
<data name="LoggedInAsOn" xml:space="preserve">
|
||||||
<value>{1} இல் {0} ஆக உள்நுழைந்துள்ளது.</value>
|
<value>{1} இல் {0} ஆக உள்நுழைந்துள்ளது.</value>
|
||||||
@@ -1501,12 +1511,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>செயலியின் நிற அமைப்பை மாற்று.</value>
|
<value>செயலியின் நிற அமைப்பை மாற்று.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>மறுதொடக்கம் தேவை.</value>
|
<value>இயல்புநிலை (முறைமை)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>மறுதொடங்குகிறது…</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>குறிப்புகளை நகலெடு</value>
|
<value>குறிப்புகளை நகலெடு</value>
|
||||||
@@ -1571,7 +1577,7 @@
|
|||||||
<value>உயிரியளவுகள்</value>
|
<value>உயிரியளவுகள்</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UseBiometricsToUnlock" xml:space="preserve">
|
<data name="UseBiometricsToUnlock" xml:space="preserve">
|
||||||
<value>பூட்டவிழ்க்க உயிரியளவுகளை பயன்படுத்து</value>
|
<value>உயிரியளவுகளைப் பயன்படுத்தி பூட்டவிழ்</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AccessibilityOverlayPermissionAlert" xml:space="preserve">
|
<data name="AccessibilityOverlayPermissionAlert" xml:space="preserve">
|
||||||
<value>Bitwardenக்கு கவனம் தேவை - Bitwarden அமைப்புகளிலிருந்து "தன்னிரப்பி அணுகல்தன்மை சேவை" ஐப் பார்</value>
|
<value>Bitwardenக்கு கவனம் தேவை - Bitwarden அமைப்புகளிலிருந்து "தன்னிரப்பி அணுகல்தன்மை சேவை" ஐப் பார்</value>
|
||||||
@@ -1583,10 +1589,10 @@
|
|||||||
<value>அனுமதி</value>
|
<value>அனுமதி</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceOpenOverlayPermissionSettings" xml:space="preserve">
|
<data name="BitwardenAutofillServiceOpenOverlayPermissionSettings" xml:space="preserve">
|
||||||
<value>மேலடுக்கு அனுமதி அமைப்புகளை திற</value>
|
<value>மேலடுக்கு அனுமதி அமைவுகளைத் திற</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BitwardenAutofillServiceStep3" xml:space="preserve">
|
<data name="BitwardenAutofillServiceStep3" xml:space="preserve">
|
||||||
<value>௩. Bitwarden-க்கான Android செயலி அமைப்புகள் திரையில், "பிற ஆப்ஸின் மேலே காட்டு" (மேம்பட்டவை அடியில்) என்பதை தேர்ந்தெடு மற்றும் மேலடுக்கை அனுமதிக்க நிலைமாற்றியை இயக்குக.</value>
|
<value>௩. Bitwarden-க்கான Android செயலி அமைப்புகள் திரையில், "பிற ஆப்ஸின் மேலே காட்டு" (மேம்பட்டவையின் அடியில்) என்பதை தேர்ந்தெடு மற்றும் மேலடுக்கை அனுமதிக்க நிலைமாற்றியை இயக்குக.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Denied" xml:space="preserve">
|
<data name="Denied" xml:space="preserve">
|
||||||
<value>மறுக்கப்பட்டது</value>
|
<value>மறுக்கப்பட்டது</value>
|
||||||
@@ -1692,7 +1698,7 @@
|
|||||||
<value>தன்னிரப்பலுக்கான உயிரியளவு பூட்டவிழ்த்தல் முடக்கப்பட்டது பிரதான கடவுச்சொல் சரிபார்ப்பு நிலுவையிலுள்ளது.</value>
|
<value>தன்னிரப்பலுக்கான உயிரியளவு பூட்டவிழ்த்தல் முடக்கப்பட்டது பிரதான கடவுச்சொல் சரிபார்ப்பு நிலுவையிலுள்ளது.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnableSyncOnRefresh" xml:space="preserve">
|
<data name="EnableSyncOnRefresh" xml:space="preserve">
|
||||||
<value>புதுப்பித்தலில் ஒத்திசைவை இயக்கவும்</value>
|
<value>புத்துணர்வூட்டலில் ஒத்திசைவை இயக்கு</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnableSyncOnRefreshDescription" xml:space="preserve">
|
<data name="EnableSyncOnRefreshDescription" xml:space="preserve">
|
||||||
<value>கீழ் இழுக்கும் சைகையுடன் பெட்டகத்தை ஒத்திசைத்தல்.</value>
|
<value>கீழ் இழுக்கும் சைகையுடன் பெட்டகத்தை ஒத்திசைத்தல்.</value>
|
||||||
@@ -1764,7 +1770,7 @@
|
|||||||
<value>தன்னிரப்பி சேவைகள்</value>
|
<value>தன்னிரப்பி சேவைகள்</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="InlineAutofill" xml:space="preserve">
|
<data name="InlineAutofill" xml:space="preserve">
|
||||||
<value>உள்-வரி தன்னிரப்பியை பயன்படுத்து</value>
|
<value>உள்ளக தன்னிரப்பி பயன்படுத்து</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="InlineAutofillDescription" xml:space="preserve">
|
<data name="InlineAutofillDescription" xml:space="preserve">
|
||||||
<value>Use inline autofill if your selected IME (keyboard) supports it. If your configuration is not supported (or this option is disabled), the default Autofill overlay will be used.</value>
|
<value>Use inline autofill if your selected IME (keyboard) supports it. If your configuration is not supported (or this option is disabled), the default Autofill overlay will be used.</value>
|
||||||
@@ -1864,7 +1870,7 @@
|
|||||||
<value>அதிகபட்ச அணுகல் எண்ணிக்கை</value>
|
<value>அதிகபட்ச அணுகல் எண்ணிக்கை</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
||||||
<value>If set, users will no longer be able to access this send once the maximum access count is reached.</value>
|
<value>If set, users will no longer be able to access this Send once the maximum access count is reached.</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">
|
||||||
@@ -1905,7 +1911,7 @@
|
|||||||
<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="AddASend" xml:space="preserve">
|
<data name="AddASend" xml:space="preserve">
|
||||||
<value>ஒரு Send சேர்</value>
|
<value>ஒரு 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="CopyLink" xml:space="preserve">
|
<data name="CopyLink" xml:space="preserve">
|
||||||
@@ -1927,7 +1933,7 @@
|
|||||||
<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>Send சேர்</value>
|
<value>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">
|
||||||
@@ -2000,4 +2006,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>இச்செயல் பாதுகாக்கப்பட்டது, தொடர உம் பிரதான கடவுச்சொல்லை மறு-உள்ளிட்டு உம் அடையாளத்தை நிச்சயப்படுத்தவும்.</value>
|
<value>இச்செயல் பாதுகாக்கப்பட்டது, தொடர உம் பிரதான கடவுச்சொல்லை மறு-உள்ளிட்டு உம் அடையாளத்தை நிச்சயப்படுத்தவும்.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>கேப்ட்ச்சா தேவை</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>கேப்ட்ச்சா தோல்வி. மீண்டும் முயலவும்.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>பிரதான கடவுச்சொல்லைப் புதுப்பி</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>உம் நிறுவனத்திலுள்ள நிர்வாகியால் உம் பிரதான கடவுச்சொல் அண்மையில் மாற்றப்பட்டது. பெட்டகத்தை அணுக, உம் பிரதான கடவுச்சொல்லை இப்போது புதுப்பிக்க வேண்டும். தொடர்தல் உம் தற்போதைய அமர்விலிருந்து உம்மை வெளியேற்றி, திரும்ப உள்நுழைய கோரும். மற்ற சாதனங்களில் செயலிலுள்ள அமர்வுகள் ஒரு மணிநேரம் வரை தொடர்ந்து நிலைத்திருக்கக்கூடும்.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>கடவுச்சொல்லைப் புதுப்பிக்கிறது</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>தற்போது கடவுச்சொல்லைப் புதுப்பிக்க இயலவில்லை</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>WebAuthn-ஐ அங்கீகரி</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>செயலிக்குத் திரும்பு</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>தயவுசெய்து உம் இயல்புநிலை உலாவி WebAuthn-ஐ ஆதரிக்குமென்பதை உறுதிப்படுத்தி மீண்டும் முயலவும்.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>உமது பெட்டக நேரமுடிவு உம் நிறுவனம் அமைத்த கட்டுப்பாடுகளை தாண்டுகிறது.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>ஒன்று அ மேற்பட்ட நிறுவன கொள்கைகள் உம் சொந்த பெட்டகத்தை ஏற்றுமதிசெய்வதைத் தவிர்க்கிறது.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>บันทึก</value>
|
<value>บันทึก</value>
|
||||||
<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">
|
||||||
|
<value>ย้าย</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>You are searching for an auto-fill login for "{0}".</value>
|
<value>You are searching for an auto-fill login for "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>แบ่งปันห้องนิรภัยของคุณ</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>ไม่สามารถเปิดแอป "{0}".</value>
|
<value>ไม่สามารถเปิดแอป "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>There are no collections to list.</value>
|
<value>There are no collections to list.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Item has been shared.</value>
|
<value>Item has been shared.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Share Item</value>
|
<value>Share Item</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>No organizations to list.</value>
|
<value>No organizations to list.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Choose an organization that you wish to share this item with. Sharing transfers ownership of the item to the organization. You will no longer be the direct owner of this item once it has been shared.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Number of Words</value>
|
<value>Number of Words</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Your account's fingerprint phrase</value>
|
<value>Your account's fingerprint phrase</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden allows you to share your vault with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>ส่งออกตู้เซฟ</value>
|
<value>ส่งออกตู้เซฟ</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Change the application's color theme.</value>
|
<value>Change the application's color theme.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Restart is required.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Restarting...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Copy Notes</value>
|
<value>Copy Notes</value>
|
||||||
@@ -1864,7 +1870,7 @@
|
|||||||
<value>Maximum Access Count</value>
|
<value>Maximum Access Count</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
<data name="MaximumAccessCountInfo" xml:space="preserve">
|
||||||
<value>If set, users will no longer be able to access this send once the maximum access count is reached.</value>
|
<value>If set, users will no longer be able to access this Send once the maximum access count is reached.</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">
|
||||||
@@ -2000,4 +2006,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Kaydet</value>
|
<value>Kaydet</value>
|
||||||
<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">
|
||||||
|
<value>Taşı</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Kaydediliyor...</value>
|
<value>Kaydediliyor...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>"{0}" için otomatik doldurma kaydı arıyorsunuz.</value>
|
<value>"{0}" için otomatik doldurma kaydı arıyorsunuz.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Kasamı paylaş</value>
|
<value>Kuruluşlar hakkında bilgi al</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>"{0}" uygulaması açılamıyor.</value>
|
<value>"{0}" uygulaması açılamıyor.</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Listelenecek koleksiyon yok.</value>
|
<value>Listelenecek koleksiyon yok.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0}, {1} kuruluşuna taşındı.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Öge paylaşıldı.</value>
|
<value>Öge paylaşıldı.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Öğeyi paylaş</value>
|
<value>Öğeyi paylaş</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Kuruluşa taşı</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Listelenecek kuruluş yok.</value>
|
<value>Listelenecek kuruluş yok.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Bu kaydı paylaşmak istediğiniz kuruluşu seçin. Paylaştığınız kaydın sahipliği seçtiğiniz kuruluşa aktarılacak. Artık bu kaydın doğrudan sahibi olmayacaksınız.</value>
|
<value>Bu kaydı taşımak istediğiniz kuruluşu seçin. Taşıdığınız kaydın sahipliği seçtiğiniz kuruluşa aktarılacak. Artık bu kaydın doğrudan sahibi olmayacaksınız.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Kelime sayısı</value>
|
<value>Kelime sayısı</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Hesabınızın parmak izi kelimeleri</value>
|
<value>Hesabınızın parmak izi kelimeleri</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden, kuruluş hesabı kullanarak kasanızı başkalarıyla paylaşmanıza olanak verir. Daha fazla bilgi için bitwarden.com sitesini ziyaret etmek ister misiniz?</value>
|
<value>Bitwarden, kuruluş hesabı kullanarak kasanızdaki kayıtları başkalarıyla paylaşmanıza olanak verir. Daha fazla bilgi için bitwarden.com sitesini ziyaret etmek ister misiniz?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Kasayı dışa aktar</value>
|
<value>Kasayı dışa aktar</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Uygulamanın renk temasını değiştir.</value>
|
<value>Uygulamanın renk temasını değiştir.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Yeniden başlatma gerekir.</value>
|
<value>Varsayılan (sistem)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Yeniden başlatılıyor...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Notları kopyala</value>
|
<value>Notları kopyala</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Bu işlem korumalıdır. İşleme devam etmek için lütfen ana parolanızı yeniden girin.</value>
|
<value>Bu işlem korumalıdır. İşleme devam etmek için lütfen ana parolanızı yeniden girin.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha gerekiyor</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha güvenlik Başarısız. Lütfen tekrar deneyin.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Ana parola güncellendi</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Ana parolayı güncelle</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Ana Parolanız yakın zamanda kuruluşunuzdaki bir yönetici tarafından değiştirildi. Kasaya erişmek için Ana Parolanızı şimdi güncellemelisiniz. Devam etmek, mevcut oturumunuzdan çıkmanıza neden olacak ve tekrar oturum açmanızı gerektirecektir. Diğer cihazlardaki etkin oturumlar bir saate kadar etkin kalmaya devam edebilir.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Parola güncelleniyor</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Şu anda şifre güncellenemiyor</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Devam etmek için FIDO2 WebAuthn etkin güvenlik anahtarınızı hazır bulundurun, ardından sonraki ekranda 'WebAuthn'u Doğrula'yı tıkladıktan sonra talimatları izleyin.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn kullanarak kimlik doğrulama, harici bir güvenlik anahtarı kullanarak kimlik doğrulaması yapabilirsiniz.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>WebAuthn'de Kimlik Doğrulama</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Uygulamaya dön</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Lütfen varsayılan tarayıcınızın WebAuthn'u desteklediğinden emin olun ve tekrar deneyin.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Bu kuruluş, sizi otomatik olarak parola sıfırlama işlemine kaydedecek bir kurumsal ilkeye sahiptir. Kayıt, kuruluş yöneticilerinin ana parolanızı değiştirmesine olanak tanır.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Kuruluş ilkeleriniz kasa zaman aşımınızı etkiliyor. İzin verilen maksimum Kasa Zaman Aşımı {0} saat ve {1} dakikadır</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Kasa zaman aşımınız, kuruluşunuz tarafından belirlenen kısıtlamaları aşıyor.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Bir veya daha fazla kuruluş ilkesi, kişisel kasanızı dışa aktarmanızı engelliyor.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Зберегти</value>
|
<value>Зберегти</value>
|
||||||
<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">
|
||||||
|
<value>Перемістити</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Ви шукаєте запис для "{0}".</value>
|
<value>Ви шукаєте запис для "{0}".</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Поділитися своїм сховищем</value>
|
<value>Докладніше про організації</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Не вдається відкрити програму "{0}".</value>
|
<value>Не вдається відкрити програму "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Немає збірок.</value>
|
<value>Немає збірок.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} переміщено до {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Надано спільний доступ для запису.</value>
|
<value>Надано спільний доступ для запису.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Поділитися записом</value>
|
<value>Поділитися записом</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Перемістити до організації</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Немає організацій.</value>
|
<value>Немає організацій.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Оберіть організацію, з якою хочете поділитися. Зробивши це, ви передасте доступ до цього запису іншій організації та більше не будете його одноосібним власником.</value>
|
<value>Виберіть організацію, до якої ви бажаєте перемістити цей запис. При переміщенні до організації власність запису передається тій організації. Ви більше не будете єдиним власником цього запису після переміщення.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Кількість слів</value>
|
<value>Кількість слів</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Фраза відбитку вашого облікового запису</value>
|
<value>Фраза відбитку вашого облікового запису</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden дозволяє вам надавати доступ до свого сховища іншим за допомогою облікового запису організації. Чи не бажаєте перейти на вебсайт bitwarden.com, щоб дізнатися більше?</value>
|
<value>Bitwarden дозволяє вам надавати доступ до елементів свого сховища іншим за допомогою облікового запису організації. Чи не бажаєте перейти на вебсайт bitwarden.com, щоб дізнатися більше?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Експорт сховища</value>
|
<value>Експорт сховища</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Змінити колірну тему програми.</value>
|
<value>Змінити колірну тему програми.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Необхідне перезавантаження.</value>
|
<value>Типова (Система)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Перезавантаження...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Копіювати нотатки</value>
|
<value>Копіювати нотатки</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>Ця дія захищена. Щоб продовжити, повторно введіть головний пароль.</value>
|
<value>Ця дія захищена. Щоб продовжити, повторно введіть головний пароль.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Потрібна перевірка Captcha</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Перевірка Captcha невдала. Спробуйте знову.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Головний пароль оновлено</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Оновити головний пароль</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Ваш головний пароль нещодавно був змінений адміністратором організації. Щоб отримати доступ до сховища, ви повинні оновити свій головний пароль зараз. Продовживши, ви вийдете з поточного сеансу, після чого необхідно буде повторно виконати вхід. Сеанси на інших пристроях можуть залишатися активними протягом однієї години.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Оновлення пароля</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Наразі неможливо оновити пароль</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>Щоб продовжити, приготуйте свій увімкнений ключ безпеки FIDO2 WebAuthn, потім дотримуйтесь настанов після натискання "Авторизація WebAuthn" на наступному екрані.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Авторизація з використанням FIDO2 WebAuthn. Ви можете авторизуватися за допомогою зовнішнього ключа безпеки.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Авторизація WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Повернутися до програми</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Переконайтеся, що ваш браузер підтримує WebAuthn і спробуйте знову.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>Ця організація має корпоративну політику, яка автоматично розгортає вас на скидання пароля. Розгортання дозволятиме адміністраторам організації змінювати ваш головний пароль.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Політики вашої організації впливають на час очікування сховища. Максимальний дозволений час очікування сховища {0} годин, {1} хвилин</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Час очікування сховища перевищує обмеження, встановлені вашою організацією.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>Одна чи декілька організаційних політик не дозволяють вам експортувати особисте сховище.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>Lưu</value>
|
<value>Lưu</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" xml:space="preserve">
|
||||||
<value>Đang lưu...</value>
|
<value>Đang lưu...</value>
|
||||||
<comment>Message shown when interacting with the server</comment>
|
<comment>Message shown when interacting with the server</comment>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>Bạn đang tìm kiếm một tự động đăng nhập cho '{0}'.</value>
|
<value>Bạn đang tìm kiếm một tự động đăng nhập cho '{0}'.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>Chia sẻ kho mật khẩu của bạn</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>Không thể mở ứng dụng "{0}".</value>
|
<value>Không thể mở ứng dụng "{0}".</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>Không có bộ sưu tập nào để liệt kê.</value>
|
<value>Không có bộ sưu tập nào để liệt kê.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>Mục đã được chia sẻ.</value>
|
<value>Mục đã được chia sẻ.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>Chia sẻ mục này</value>
|
<value>Chia sẻ mục này</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>Không có tổ chức để liệt kê.</value>
|
<value>Không có tổ chức để liệt kê.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>Chọn một tổ chức mà bạn muốn chia sẻ mục này. Việc chia sẻ sẽ chuyển quyền sở hữu của mục sang tổ chức. Bạn sẽ không còn là chủ sở hữu trực tiếp của mục này một khi nó đã được chia sẻ.</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>Số lượng chữ</value>
|
<value>Số lượng chữ</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>Cụm từ mật khẩu của tài khoản của bạn</value>
|
<value>Cụm từ mật khẩu của tài khoản của bạn</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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden cho phép bạn chia sẻ kho mật khẩu của mình với người khác bằng cách sử dụng tài khoản tổ chức. Bạn có muốn truy cập trang web bitwarden.com để tìm hiểu thêm không?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>Trích xuất kho</value>
|
<value>Trích xuất kho</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>Thay đổi màu giao diện của ứng dụng.</value>
|
<value>Thay đổi màu giao diện của ứng dụng.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>Cần khởi động lại.</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>Đang khởi động lại...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>Sao chép ghi chú</value>
|
<value>Sao chép ghi chú</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -284,7 +284,7 @@
|
|||||||
<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="Name" xml:space="preserve">
|
<data name="Name" xml:space="preserve">
|
||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>保存</value>
|
<value>保存</value>
|
||||||
<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">
|
||||||
|
<value>Move</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>你正在为 "{0}" 寻找一个自动填充项目。</value>
|
<value>你正在为 "{0}" 寻找一个自动填充项目。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>共享你的密码库</value>
|
<value>Learn About Organizations</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>无法打开应用 "{0}"。</value>
|
<value>无法打开应用 "{0}"。</value>
|
||||||
@@ -1126,7 +1129,7 @@
|
|||||||
<value>密码库已锁定</value>
|
<value>密码库已锁定</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GoToMyVault" xml:space="preserve">
|
<data name="GoToMyVault" xml:space="preserve">
|
||||||
<value>转到我的密码库</value>
|
<value>转到密码库</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Collections" xml:space="preserve">
|
<data name="Collections" xml:space="preserve">
|
||||||
<value>集合</value>
|
<value>集合</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>没有可列出的集合。</value>
|
<value>没有可列出的集合。</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} moved to {1}.</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>项目已共享。</value>
|
<value>项目已共享。</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>共享项目</value>
|
<value>共享项目</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>Move to Organization</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>没有可列出的组织。</value>
|
<value>没有可列出的组织。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>选择您希望与之共享此项目的组织。共享操作将会把此项目的所有权转移到该组织。一旦共享,您将不再是此项目的直接所有者。</value>
|
<value>Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>单词数</value>
|
<value>单词数</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>您的账户的指纹短语</value>
|
<value>您的账户的指纹短语</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden 允许您使用组织帐户与他人共享您的密码库。您想访问 bitwarden.com 网站以了解更多内容吗?</value>
|
<value>Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>导出密码库</value>
|
<value>导出密码库</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>更改本应用程序的颜色主题。</value>
|
<value>更改本应用程序的颜色主题。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>需要重启</value>
|
<value>Default (System)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>正在重启...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>复制备注</value>
|
<value>复制备注</value>
|
||||||
@@ -1904,7 +1910,7 @@
|
|||||||
<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="AddASend" xml:space="preserve">
|
<data name="AddASend" xml:space="preserve">
|
||||||
<value>Add a Send</value>
|
<value>新增 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="CopyLink" xml:space="preserve">
|
<data name="CopyLink" xml:space="preserve">
|
||||||
@@ -1987,16 +1993,67 @@
|
|||||||
<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 功能。</value>
|
<value>您必须验证电子邮件才能使用文件 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="PasswordPrompt" xml:space="preserve">
|
<data name="PasswordPrompt" xml:space="preserve">
|
||||||
<value>Master password re-prompt</value>
|
<value>重新提示主密码</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordConfirmation" xml:space="preserve">
|
<data name="PasswordConfirmation" xml:space="preserve">
|
||||||
<value>Master password confirmation</value>
|
<value>确认主密码</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>This action is protected, to continue please re-enter your master password to verify your identity.</value>
|
<value>此操作受到保护,要继续,请重新输入您的主密码以验证您的身份。</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>Captcha Required</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>Captcha Failed. Please try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>Updated Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>Update Master Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>Updating Password</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>Currently unable to update password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>Authenticate WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>Return to App</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>Please make sure your default browser supports WebAuthn and try again.</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s)</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>Your vault timeout exceeds the restrictions set by your organization.</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>One or more organization policies prevents your from exporting your personal vault.</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -310,6 +310,9 @@
|
|||||||
<value>儲存</value>
|
<value>儲存</value>
|
||||||
<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">
|
||||||
|
<value>移動</value>
|
||||||
|
</data>
|
||||||
<data name="Saving" xml:space="preserve">
|
<data name="Saving" 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>
|
||||||
@@ -782,8 +785,8 @@
|
|||||||
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
<data name="BitwardenAutofillServiceSearch" xml:space="preserve">
|
||||||
<value>您正在搜尋用於「{0}」的登入資料。</value>
|
<value>您正在搜尋用於「{0}」的登入資料。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareVault" xml:space="preserve">
|
<data name="LearnOrg" xml:space="preserve">
|
||||||
<value>共用您的密碼庫</value>
|
<value>了解組織</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CannotOpenApp" xml:space="preserve">
|
<data name="CannotOpenApp" xml:space="preserve">
|
||||||
<value>無法開啟應用程式「{0}」。</value>
|
<value>無法開啟應用程式「{0}」。</value>
|
||||||
@@ -1378,6 +1381,10 @@
|
|||||||
<data name="NoCollectionsToList" xml:space="preserve">
|
<data name="NoCollectionsToList" xml:space="preserve">
|
||||||
<value>沒有可顯示的集合。</value>
|
<value>沒有可顯示的集合。</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MovedItemToOrg" xml:space="preserve">
|
||||||
|
<value>{0} 已移動至 {1}。</value>
|
||||||
|
<comment>ex: Item moved to Organization.</comment>
|
||||||
|
</data>
|
||||||
<data name="ItemShared" xml:space="preserve">
|
<data name="ItemShared" xml:space="preserve">
|
||||||
<value>項目已共享。</value>
|
<value>項目已共享。</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1390,11 +1397,14 @@
|
|||||||
<data name="ShareItem" xml:space="preserve">
|
<data name="ShareItem" xml:space="preserve">
|
||||||
<value>分享項目</value>
|
<value>分享項目</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoveToOrganization" xml:space="preserve">
|
||||||
|
<value>移動至組織</value>
|
||||||
|
</data>
|
||||||
<data name="NoOrgsToList" xml:space="preserve">
|
<data name="NoOrgsToList" xml:space="preserve">
|
||||||
<value>沒有可顯示的組織。</value>
|
<value>沒有可顯示的組織。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShareDesc" xml:space="preserve">
|
<data name="MoveToOrgDesc" xml:space="preserve">
|
||||||
<value>選擇您希望共享這個項目的組織。項目的擁有權將會轉移到組織。一經共享,您將不再是此項目的直接擁有者。</value>
|
<value>選擇您希望將這個項目移動到哪個組織。項目的擁有權將會轉移到該組織。一經移動,您將不再是此項目的直接擁有者。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NumberOfWords" xml:space="preserve">
|
<data name="NumberOfWords" xml:space="preserve">
|
||||||
<value>字數</value>
|
<value>字數</value>
|
||||||
@@ -1424,8 +1434,8 @@
|
|||||||
<value>您帳戶的指紋短語</value>
|
<value>您帳戶的指紋短語</value>
|
||||||
<comment>A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing.</comment>
|
<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="ShareVaultConfirmation" xml:space="preserve">
|
<data name="LearnOrgConfirmation" xml:space="preserve">
|
||||||
<value>Bitwarden 允許您使用組織帳戶與他人共享您的密碼庫。您想造訪 bitwarden.com 網站以了解更多內容嗎?</value>
|
<value>Bitwarden 允許您使用組織帳戶與他人共用您的密碼庫項目。您想造訪 bitwarden.com 網站以了解更多內容嗎?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExportVault" xml:space="preserve">
|
<data name="ExportVault" xml:space="preserve">
|
||||||
<value>匯出密碼庫</value>
|
<value>匯出密碼庫</value>
|
||||||
@@ -1500,12 +1510,8 @@
|
|||||||
<data name="ThemeDescription" xml:space="preserve">
|
<data name="ThemeDescription" xml:space="preserve">
|
||||||
<value>變更應用程式的主題色彩。</value>
|
<value>變更應用程式的主題色彩。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartIsRequired" xml:space="preserve">
|
<data name="ThemeDefault" xml:space="preserve">
|
||||||
<value>請重新啟動應用程式</value>
|
<value>預設 (系統)</value>
|
||||||
<comment>Referring to restarting the application.</comment>
|
|
||||||
</data>
|
|
||||||
<data name="Restarting" xml:space="preserve">
|
|
||||||
<value>正在重新啟動...</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="CopyNotes" xml:space="preserve">
|
<data name="CopyNotes" xml:space="preserve">
|
||||||
<value>複製備註</value>
|
<value>複製備註</value>
|
||||||
@@ -1999,4 +2005,55 @@
|
|||||||
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
<data name="PasswordConfirmationDesc" xml:space="preserve">
|
||||||
<value>此動作受到保護。若要繼續,請重新輸入您的主密碼以驗證您的身份。</value>
|
<value>此動作受到保護。若要繼續,請重新輸入您的主密碼以驗證您的身份。</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CaptchaRequired" xml:space="preserve">
|
||||||
|
<value>要求人機驗證</value>
|
||||||
|
</data>
|
||||||
|
<data name="CaptchaFailed" xml:space="preserve">
|
||||||
|
<value>人機驗證失敗,請重試。</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatedMasterPassword" xml:space="preserve">
|
||||||
|
<value>已更新主密碼</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPassword" xml:space="preserve">
|
||||||
|
<value>更新主密碼</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdateMasterPasswordWarning" xml:space="preserve">
|
||||||
|
<value>您的主密碼最近被您的組織管理者更改過。要存取密碼庫,您必須現在更新主密碼。繼續操作會登出目前的登入階段,要求您重新登入。其他裝置上使用中的登入階段可能持續最長一個小時。</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatingPassword" xml:space="preserve">
|
||||||
|
<value>正在更新密碼</value>
|
||||||
|
</data>
|
||||||
|
<data name="UpdatePasswordError" xml:space="preserve">
|
||||||
|
<value>當前無法更新密碼</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Title" xml:space="preserve">
|
||||||
|
<value>FIDO2 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Instruction" xml:space="preserve">
|
||||||
|
<value>若要繼續,請準備好您已經啟用 FIDO2 WebAuthn 的安全金鑰,在下個畫面按下 [驗證 WebAuthn],接著遵循指引。</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2Desc" xml:space="preserve">
|
||||||
|
<value>使用 FIDO2 WebAuthn 驗證,您可以使用外部安全金鑰進行驗證。</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2AuthenticateWebAuthn" xml:space="preserve">
|
||||||
|
<value>驗證 WebAuthn</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2ReturnToApp" xml:space="preserve">
|
||||||
|
<value>返回應用程式</value>
|
||||||
|
</data>
|
||||||
|
<data name="Fido2CheckBrowser" xml:space="preserve">
|
||||||
|
<value>請確保您的預設瀏覽器支援 WebAuthn,然後重試。</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetPasswordAutoEnrollInviteWarning" xml:space="preserve">
|
||||||
|
<value>此組織擁有一個可以爲你自動注冊密碼重置的企業策略。注冊后將允許組織管理員變更您的主密碼。</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutPolicyInEffect" xml:space="preserve">
|
||||||
|
<value>您的組織策略正在影響您的密碼庫逾時時長。密碼庫逾時時長最多可以設定到 {0} 小時,{1} 分鐘。</value>
|
||||||
|
</data>
|
||||||
|
<data name="VaultTimeoutToLarge" xml:space="preserve">
|
||||||
|
<value>您的密碼庫逾時時長超過組織限制。</value>
|
||||||
|
</data>
|
||||||
|
<data name="DisablePersonalVaultExportPolicyInEffect">
|
||||||
|
<value>一或多個組織策略不允許您匯出個人密碼庫。</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -201,6 +201,10 @@ namespace Bit.Core.Services
|
|||||||
public async Task<bool> PolicyAppliesToUser(PolicyType policyType, Func<Policy, bool> policyFilter)
|
public async Task<bool> PolicyAppliesToUser(PolicyType policyType, Func<Policy, bool> policyFilter)
|
||||||
{
|
{
|
||||||
var policies = await GetAll(policyType);
|
var policies = await GetAll(policyType);
|
||||||
|
if (policies == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
var organizations = await _userService.GetAllOrganizationAsync();
|
var organizations = await _userService.GetAllOrganizationAsync();
|
||||||
|
|
||||||
IEnumerable<Policy> filteredPolicies;
|
IEnumerable<Policy> filteredPolicies;
|
||||||
@@ -220,10 +224,20 @@ namespace Bit.Core.Services
|
|||||||
o.Enabled &&
|
o.Enabled &&
|
||||||
o.Status >= OrganizationUserStatusType.Accepted &&
|
o.Status >= OrganizationUserStatusType.Accepted &&
|
||||||
o.UsePolicies &&
|
o.UsePolicies &&
|
||||||
!o.isExemptFromPolicies &&
|
!isExcemptFromPolicies(o, policyType) &&
|
||||||
policySet.Contains(o.Id));
|
policySet.Contains(o.Id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private bool isExcemptFromPolicies(Organization organization, PolicyType policyType)
|
||||||
|
{
|
||||||
|
if (policyType == PolicyType.MaximumVaultTimeout)
|
||||||
|
{
|
||||||
|
return organization.Type == OrganizationUserType.Owner;
|
||||||
|
}
|
||||||
|
|
||||||
|
return organization.isExemptFromPolicies;
|
||||||
|
}
|
||||||
|
|
||||||
public int? GetPolicyInt(Policy policy, string key)
|
public int? GetPolicyInt(Policy policy, string key)
|
||||||
{
|
{
|
||||||
if (policy.Data.ContainsKey(key))
|
if (policy.Data.ContainsKey(key))
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
<string>com.8bit.bitwarden.autofill</string>
|
<string>com.8bit.bitwarden.autofill</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>2.13.1</string>
|
<string>2.14.1</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1</string>
|
<string>1</string>
|
||||||
<key>CFBundleLocalizations</key>
|
<key>CFBundleLocalizations</key>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
<string>com.8bit.bitwarden.find-login-action-extension</string>
|
<string>com.8bit.bitwarden.find-login-action-extension</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>2.13.1</string>
|
<string>2.14.1</string>
|
||||||
<key>CFBundleLocalizations</key>
|
<key>CFBundleLocalizations</key>
|
||||||
<array>
|
<array>
|
||||||
<string>en</string>
|
<string>en</string>
|
||||||
|
|||||||
@@ -188,6 +188,12 @@ namespace Bit.iOS
|
|||||||
_storageService.SaveAsync(Constants.LastActiveTimeKey, _deviceActionService.GetActiveTime());
|
_storageService.SaveAsync(Constants.LastActiveTimeKey, _deviceActionService.GetActiveTime());
|
||||||
_messagingService.Send("slept");
|
_messagingService.Send("slept");
|
||||||
|
|
||||||
|
if (UIApplication.SharedApplication.KeyWindow == null)
|
||||||
|
{
|
||||||
|
// Despite IDE warning, KeyWindow is null here during app termination in iOS 15
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var view = new UIView(UIApplication.SharedApplication.KeyWindow.Frame)
|
var view = new UIView(UIApplication.SharedApplication.KeyWindow.Frame)
|
||||||
{
|
{
|
||||||
Tag = 4321
|
Tag = 4321
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
<string>com.8bit.bitwarden</string>
|
<string>com.8bit.bitwarden</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>2.13.1</string>
|
<string>2.14.1</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1</string>
|
<string>1</string>
|
||||||
<key>CFBundleIconName</key>
|
<key>CFBundleIconName</key>
|
||||||
|
|||||||
@@ -118,29 +118,29 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="Name" xml:space="preserve">
|
<data name="Name" xml:space="preserve">
|
||||||
<value>Bitwarden Şifrə Meneceri</value>
|
<value>Bitwarden Parol Meneceri</value>
|
||||||
<comment>Max 30 characters</comment>
|
<comment>Max 30 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Description" xml:space="preserve">
|
<data name="Description" xml:space="preserve">
|
||||||
<value>Bitwarden, Inc., 8bit Solutions LLC-nin ana şirkətidir.
|
<value>Bitwarden, Inc., 8bit Solutions LLC-nin ana şirkətidir.
|
||||||
|
|
||||||
THE VERGE, U.S. NEWS & WORLD REPORT, CNET VƏ BİR ÇOXUNA GÖRƏ ƏN YAXŞI ŞİFRƏ MENECERİDİR.
|
THE VERGE, U.S. NEWS & WORLD REPORT, CNET VƏ BİR ÇOXUNA GÖRƏ ƏN YAXŞI PAROL MENECERİDİR.
|
||||||
|
|
||||||
Hər yerdən limitsiz cihazda limitsiz şifrəni idarə edin, saxlayın, qoruyun və paylaşın. Bitwarden evdə, işdə və ya yolda hər kəsə açıq mənbəli şifrə idarəetmə həllərini təqdim edir.
|
Hər yerdən limitsiz cihazda limitsiz parolu idarə edin, saxlayın, qoruyun və paylaşın. Bitwarden evdə, işdə və ya yolda hər kəsə açıq mənbəli parol idarəetmə həllərini təqdim edir.
|
||||||
|
|
||||||
Çox istifadə etdiyiniz hər veb sayt üçün təhlükəsizlik tələblərinə görə güclü, unikal və təsadüfi şifrələr yaradın.
|
Çox istifadə etdiyiniz hər veb sayt üçün təhlükəsizlik tələblərinə görə güclü, unikal və təsadüfi parollar yaradın.
|
||||||
|
|
||||||
Bitwarden Send şifrələnmiş məlumatların (fayl və sadə mətnləri) birbaşa və sürətli göndərilməsini təmin edir.
|
Bitwarden Send şifrələnmiş məlumatların (fayl və sadə mətnləri) birbaşa və sürətli göndərilməsini təmin edir.
|
||||||
|
|
||||||
Bitwarden, şifrələri iş yoldaşlarınızla təhlükəsiz paylaşa bilməyiniz üçün şirkətlərə Teams və Enterprise planları təklif edir.
|
Bitwarden, parolları iş yoldaşlarınızla təhlükəsiz paylaşa bilməyiniz üçün şirkətlərə Teams və Enterprise planları təklif edir.
|
||||||
|
|
||||||
Nəyə görə Bitwarden-i seçməliyik:
|
Nəyə görə Bitwarden-i seçməliyik:
|
||||||
|
|
||||||
Yüksək səviyyə şifrələmə
|
Yüksək səviyyə şifrələmə
|
||||||
Şifrələriniz qabaqcıl ucdan-uca şifrələmə (AES-256 bit, salted hashtag və PBKDF2 SHA-256) ilə qorunur, beləcə verilənlərinizin təhlükəsiz və gizli qalmasını təmin edir.
|
Şifrələriniz qabaqcıl ucdan-uca şifrələmə (AES-256 bit, salted hashtag və PBKDF2 SHA-256) ilə qorunur, beləcə verilənlərinizin təhlükəsiz və gizli qalmasını təmin edir.
|
||||||
|
|
||||||
Daxili şifrə yaradıcı
|
Daxili parol yaradıcı
|
||||||
Çox istifadə etdiyiniz hər veb sayt üçün təhlükəsizlik tələblərinə görə güclü, unikal və təsadüfi şifrələr yaradın.
|
Çox istifadə etdiyiniz hər veb sayt üçün təhlükəsizlik tələblərinə görə güclü, unikal və təsadüfi parollar yaradın.
|
||||||
|
|
||||||
Qlobal tərcümələr
|
Qlobal tərcümələr
|
||||||
Bitwarden tərcümələri 40 dildə mövcuddur və qlobal cəmiyyətimiz sayəsində böyüməyə davam edir.
|
Bitwarden tərcümələri 40 dildə mövcuddur və qlobal cəmiyyətimiz sayəsində böyüməyə davam edir.
|
||||||
@@ -150,17 +150,17 @@ Bitwarden anbarındakı həssas verilənləri, istənilən səyyahdan, mobil cih
|
|||||||
<comment>Max 4000 characters</comment>
|
<comment>Max 4000 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Keywords" xml:space="preserve">
|
<data name="Keywords" xml:space="preserve">
|
||||||
<value>bit warden,8bit,şifrə,ödənişsiz şifrə meceneri,şifrə meneceri,giriş meneceri</value>
|
<value>bit warden,8bit,parol,ödənişsiz parol meceneri,parol meneceri,giriş meneceri</value>
|
||||||
<comment>Max 100 characters</comment>
|
<comment>Max 100 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Screenshot1" xml:space="preserve">
|
<data name="Screenshot1" xml:space="preserve">
|
||||||
<value>Bütün giriş məlumatlarınızı və şifrələrinizi təhlükəsiz bir anbardan idarə edin</value>
|
<value>Bütün giriş məlumatlarınızı və parollarınızı təhlükəsiz bir anbardan idarə edin</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Screenshot2" xml:space="preserve">
|
<data name="Screenshot2" xml:space="preserve">
|
||||||
<value>Güclü, təsadüfi və etibarlı şifrələrin avtomatik yaradılması</value>
|
<value>Güclü, təsadüfi və etibarlı parolların avtomatik yaradılması</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Screenshot3" xml:space="preserve">
|
<data name="Screenshot3" xml:space="preserve">
|
||||||
<value>Anbarınızı Touch ID, PIN kod və ana şifrə ilə qoruyun</value>
|
<value>Anbarınızı Touch ID, PIN kod və ana parol ilə qoruyun</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Screenshot4" xml:space="preserve">
|
<data name="Screenshot4" xml:space="preserve">
|
||||||
<value>Safari, Chrome və yüzlərlə digər tətbiqdə giriş məlumatlarının avto-doldurulması</value>
|
<value>Safari, Chrome və yüzlərlə digər tətbiqdə giriş məlumatlarının avto-doldurulması</value>
|
||||||
|
|||||||
@@ -122,15 +122,32 @@
|
|||||||
<comment>Max 30 characters</comment>
|
<comment>Max 30 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Description" xml:space="preserve">
|
<data name="Description" xml:space="preserve">
|
||||||
<value>Bitwarden is the easiest and safest way to store all of your logins and passwords while conveniently keeping them synced between all of your devices. The Bitwarden app extension allows you to quickly log into any website through Safari or Chrome and is supported by hundreds of other popular apps.
|
<value>Bitwarden, Inc. is the parent company of 8bit Solutions LLC.
|
||||||
|
|
||||||
Password theft is a serious problem. The websites and apps that you use are under attack every day. Security breaches occur and your passwords are stolen. When you reuse the same passwords across apps and websites hackers can easily access your email, bank, and other important accounts.
|
NAMED BEST PASSWORD MANAGER BY THE VERGE, U.S. NEWS & WORLD REPORT, CNET, AND MORE.
|
||||||
|
|
||||||
Security experts recommend that you use a different, randomly generated password for every account that you create. But how do you manage all those passwords? Bitwarden makes it easy for you to create, store, and access your passwords.
|
Manage, store, secure, and share unlimited passwords across unlimited devices from anywhere. Bitwarden delivers open source password management solutions to everyone, whether at home, at work, or on the go.
|
||||||
|
|
||||||
Bitwarden stores all of your logins in an encrypted vault that syncs across all of your devices. Since it's fully encrypted before it ever leaves your device, only you have access to your data. Not even the team at Bitwarden can read your data, even if we wanted to. Your data is sealed with AES-256 bit encryption, salted hashing, and PBKDF2 SHA-256.
|
Generate strong, unique, and random passwords based on security requirements for every website you frequent.
|
||||||
|
|
||||||
Bitwarden is focused on open source software. The source code for Bitwarden is hosted on GitHub and everyone is free to review, audit, and contribute to the Bitwarden codebase.</value>
|
Bitwarden Send quickly transmits encrypted information --- files and plaintext -- directly to anyone.
|
||||||
|
|
||||||
|
Bitwarden offers Teams and Enterprise plans for companies so you can securely share passwords with colleagues.
|
||||||
|
|
||||||
|
Why Choose Bitwarden:
|
||||||
|
|
||||||
|
World-Class Encryption
|
||||||
|
Passwords are protected with advanced end-to-end encryption (AES-256 bit, salted hashtag, and PBKDF2 SHA-256) so your data stays secure and private.
|
||||||
|
|
||||||
|
Built-in Password Generator
|
||||||
|
Generate strong, unique, and random passwords based on security requirements for every website you frequent.
|
||||||
|
|
||||||
|
Global Translations
|
||||||
|
Bitwarden translations exist in 40 languages and are growing, thanks to our global community.
|
||||||
|
|
||||||
|
Cross-Platform Applications
|
||||||
|
Secure and share sensitive data within your Bitwarden Vault from any browser, mobile device, or desktop OS, and more.
|
||||||
|
</value>
|
||||||
<comment>Max 4000 characters</comment>
|
<comment>Max 4000 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Keywords" xml:space="preserve">
|
<data name="Keywords" xml:space="preserve">
|
||||||
|
|||||||
@@ -122,15 +122,31 @@
|
|||||||
<comment>Max 30 characters</comment>
|
<comment>Max 30 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Description" xml:space="preserve">
|
<data name="Description" xml:space="preserve">
|
||||||
<value>Bitwarden je jednostavan i siguran način pohrane svih Vaših korisničkih imena i lozinki, pri čemu sinkronizacija podataka omogućuje jednostavan pristup istima sa svih Vaših uređaja.
|
<value>Bitwarden, Inc. je vlasnik tvrtke 8bit Solutions LLC.
|
||||||
|
|
||||||
Krađa lozinki je ozbiljan problem. Web mjesta i aplikacije koje upotrebljavate svakoga su dana izložene pokušajima napada, pri čemu može doći do curenja podataka, a Vaše lozinke mogu biti ukradene. Upotrebljavate li jednu te istu lozinku na više mjesta, u slučaju njezinog curenja, neautorizirane osobe mogu vrlo lako pristupiti ostalim uslugama koje su zaštićene istom lozinkom, kao npr. Vašoj e-pošti, bankovnom računu i drugim važnim uslugama.
|
THE VERGE, U.S. NEWS & WORLD REPORT, CNET I DRUGI ODABRALI SU BITWARDEN ZA NAJBOLJI UPRAVITELJ LOZINKI.
|
||||||
|
|
||||||
Sigurnosni stručnjaci preporučuju korištenje jedinstvene, nasumično generirane lozinke za svaki račun koji stvorite. No kako upravljati svim tim lozinkama? Bitwarden Vam na siguran način olakšava generiranje složenih, sigurnih lozinki i njihovu pohranu s pripadajućim korisničkim imenima.
|
Upravljajte, spremajte, osigurajte i dijelite neograničen broj lozinki na neograničenom broju uređaja bilo gdje. Bitwarden omogućuje upravljanje lozinkama, bazirano na otvorenom kodu, svima, bilo kod kuće, na poslu ili u pokretu.
|
||||||
|
|
||||||
Bitwarden pohranjuje Vaše podatke u šifrirani trezor koji se sinkronizira sa svim Vašim uređajima i lako Vam je dostupan. Budući je trezor u potpunosti šifriran prije nego li napusti uređaj, jedino Vi imate pristup podacima u trezoru. Čak niti tim u Bitwardenu ne može vidjeti Vaše podatke zapečaćene s AES-256 bitnim šifriranjem, salted hashom i PBKDF2 SHA-256.
|
Generirajte jake, jedinstvene i nasumične lozinke bazirane na sigurnosnim zahtjevima za svaku web stranicu koju često posjećujete.
|
||||||
|
|
||||||
Bitwarden je usredotočen na softver otvorenog kôda. Izvorni kôd za Bitwarden smješten je na GitHub-u i svatko ga može pregledati, revidirati i doprinijeti Bitwarden codebase-u.</value>
|
Bitwarden Send omoguzćuje jednostavno i brzo slanje šifriranih podataka --- datoteki ili teksta -- direktno, bilo kome.
|
||||||
|
|
||||||
|
Bitwarden nudi Teams i Enterprise planove za tvrtke kako biste sigurno mogli dijeliti lozinke s kolegama na poslu.
|
||||||
|
|
||||||
|
Zašto odabrati Bitwarden?
|
||||||
|
|
||||||
|
Svjetski priznata enkripcija
|
||||||
|
Lozinke su zaštićene naprednim end-to-end šifriranjem (AES-256 bit, salted hashtag i PBKDF2 SHA-256) kako bi vaši osobni podaci ostali sigurni i samo vaši.
|
||||||
|
|
||||||
|
Ugrađen generator lozinki
|
||||||
|
Generirajte jake, jedinstvene i nasumične lozinke bazirane na sigurnosnim zahtjevima za svako web mjesto koje često posjećujete.
|
||||||
|
|
||||||
|
Svjetski dostupan
|
||||||
|
Bitwarden je, zahvaljujući našoj globalnoj zajednici, dostupan na više od 40 jezika.
|
||||||
|
|
||||||
|
Podržani svi OS
|
||||||
|
Osigurajte i sigurno dijelite osjetljive podatke sadržane u vašem Bitwarden trezoru iz bilo kojeg preglednika, mobilnog uređaja ili stolnog računala s bilo kojim OS.</value>
|
||||||
<comment>Max 4000 characters</comment>
|
<comment>Max 4000 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Keywords" xml:space="preserve">
|
<data name="Keywords" xml:space="preserve">
|
||||||
|
|||||||
172
store/apple/ka/copy.resx
Normal file
172
store/apple/ka/copy.resx
Normal file
@@ -0,0 +1,172 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="Name" xml:space="preserve">
|
||||||
|
<value>Bitwarden Password Manager</value>
|
||||||
|
<comment>Max 30 characters</comment>
|
||||||
|
</data>
|
||||||
|
<data name="Description" xml:space="preserve">
|
||||||
|
<value>Bitwarden, Inc. is the parent company of 8bit Solutions LLC.
|
||||||
|
|
||||||
|
NAMED BEST PASSWORD MANAGER BY THE VERGE, U.S. NEWS & WORLD REPORT, CNET, AND MORE.
|
||||||
|
|
||||||
|
Manage, store, secure, and share unlimited passwords across unlimited devices from anywhere. Bitwarden delivers open source password management solutions to everyone, whether at home, at work, or on the go.
|
||||||
|
|
||||||
|
Generate strong, unique, and random passwords based on security requirements for every website you frequent.
|
||||||
|
|
||||||
|
Bitwarden Send quickly transmits encrypted information --- files and plaintext -- directly to anyone.
|
||||||
|
|
||||||
|
Bitwarden offers Teams and Enterprise plans for companies so you can securely share passwords with colleagues.
|
||||||
|
|
||||||
|
Why Choose Bitwarden:
|
||||||
|
|
||||||
|
World-Class Encryption
|
||||||
|
Passwords are protected with advanced end-to-end encryption (AES-256 bit, salted hashtag, and PBKDF2 SHA-256) so your data stays secure and private.
|
||||||
|
|
||||||
|
Built-in Password Generator
|
||||||
|
Generate strong, unique, and random passwords based on security requirements for every website you frequent.
|
||||||
|
|
||||||
|
Global Translations
|
||||||
|
Bitwarden translations exist in 40 languages and are growing, thanks to our global community.
|
||||||
|
|
||||||
|
Cross-Platform Applications
|
||||||
|
Secure and share sensitive data within your Bitwarden Vault from any browser, mobile device, or desktop OS, and more.
|
||||||
|
</value>
|
||||||
|
<comment>Max 4000 characters</comment>
|
||||||
|
</data>
|
||||||
|
<data name="Keywords" xml:space="preserve">
|
||||||
|
<value>bit warden,8bit,password,free password manager,password manager,login manager</value>
|
||||||
|
<comment>Max 100 characters</comment>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot1" xml:space="preserve">
|
||||||
|
<value>Manage all your logins and passwords from a secure vault</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot2" xml:space="preserve">
|
||||||
|
<value>Automatically generate strong, random, and secure passwords</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot3" xml:space="preserve">
|
||||||
|
<value>Protect your vault with Touch ID, PIN code, or master password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot4" xml:space="preserve">
|
||||||
|
<value>Auto-fill logins from Safari, Chrome, and hundreds of other apps</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot5" xml:space="preserve">
|
||||||
|
<value>Sync and access your vault from multiple devices</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
172
store/apple/nn/copy.resx
Normal file
172
store/apple/nn/copy.resx
Normal file
@@ -0,0 +1,172 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="Name" xml:space="preserve">
|
||||||
|
<value>Bitwarden Password Manager</value>
|
||||||
|
<comment>Max 30 characters</comment>
|
||||||
|
</data>
|
||||||
|
<data name="Description" xml:space="preserve">
|
||||||
|
<value>Bitwarden, Inc. is the parent company of 8bit Solutions LLC.
|
||||||
|
|
||||||
|
NAMED BEST PASSWORD MANAGER BY THE VERGE, U.S. NEWS & WORLD REPORT, CNET, AND MORE.
|
||||||
|
|
||||||
|
Manage, store, secure, and share unlimited passwords across unlimited devices from anywhere. Bitwarden delivers open source password management solutions to everyone, whether at home, at work, or on the go.
|
||||||
|
|
||||||
|
Generate strong, unique, and random passwords based on security requirements for every website you frequent.
|
||||||
|
|
||||||
|
Bitwarden Send quickly transmits encrypted information --- files and plaintext -- directly to anyone.
|
||||||
|
|
||||||
|
Bitwarden offers Teams and Enterprise plans for companies so you can securely share passwords with colleagues.
|
||||||
|
|
||||||
|
Why Choose Bitwarden:
|
||||||
|
|
||||||
|
World-Class Encryption
|
||||||
|
Passwords are protected with advanced end-to-end encryption (AES-256 bit, salted hashtag, and PBKDF2 SHA-256) so your data stays secure and private.
|
||||||
|
|
||||||
|
Built-in Password Generator
|
||||||
|
Generate strong, unique, and random passwords based on security requirements for every website you frequent.
|
||||||
|
|
||||||
|
Global Translations
|
||||||
|
Bitwarden translations exist in 40 languages and are growing, thanks to our global community.
|
||||||
|
|
||||||
|
Cross-Platform Applications
|
||||||
|
Secure and share sensitive data within your Bitwarden Vault from any browser, mobile device, or desktop OS, and more.
|
||||||
|
</value>
|
||||||
|
<comment>Max 4000 characters</comment>
|
||||||
|
</data>
|
||||||
|
<data name="Keywords" xml:space="preserve">
|
||||||
|
<value>bit warden,8bit,password,free password manager,password manager,login manager</value>
|
||||||
|
<comment>Max 100 characters</comment>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot1" xml:space="preserve">
|
||||||
|
<value>Manage all your logins and passwords from a secure vault</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot2" xml:space="preserve">
|
||||||
|
<value>Automatically generate strong, random, and secure passwords</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot3" xml:space="preserve">
|
||||||
|
<value>Protect your vault with Touch ID, PIN code, or master password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot4" xml:space="preserve">
|
||||||
|
<value>Auto-fill logins from Safari, Chrome, and hundreds of other apps</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot5" xml:space="preserve">
|
||||||
|
<value>Sync and access your vault from multiple devices</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="Name" xml:space="preserve">
|
<data name="Name" xml:space="preserve">
|
||||||
<value>Bitwarden lösenordshanterare</value>
|
<value>Bitwarden – Lösenordshanterare</value>
|
||||||
<comment>Max 30 characters</comment>
|
<comment>Max 30 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Description" xml:space="preserve">
|
<data name="Description" xml:space="preserve">
|
||||||
|
|||||||
@@ -122,15 +122,31 @@
|
|||||||
<comment>Max 30 characters</comment>
|
<comment>Max 30 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Description" xml:space="preserve">
|
<data name="Description" xml:space="preserve">
|
||||||
<value>Bitwarden 简单易用,可以简单安全地存储您所有的登录用信息和密码,并能在多台设备之间保持同步。Bitwarden 应用扩展允许您在 Safari 或 Chrome 以及其他上百款支持的应用中快速登录任意网站。
|
<value>Bitwarden, Inc. 是 8bit Solutions LLC 的母公司。
|
||||||
|
|
||||||
盗号是个严重的问题。您访问的网站、使用的各类应用每天都在遭受攻击。每当发生安全漏洞,您的密码就会被盗取,如果您跨应用和网站使用相同的密码,黑客就可以轻松访问您的电子邮件、银行或者其他重要账户。
|
被 THE VERGE、U.S. NEWS & WORLD REPORT、CNET 等评为最佳密码管理器。
|
||||||
|
|
||||||
安全专家建议您为每一个账户使用不同的随机密码。但是要如何管理这些密码呢? Bitwarden 可以让您轻松的创建、保存并访问您的密码。
|
从任何地方,不限制设备,管理、存储、保护和共享无限的密码。Bitwarden 为每个人提供开源的密码管理解决方案,无论是在家里,在工作中,还是在旅途中。
|
||||||
|
|
||||||
Bitwarden 将您的登录信息保存在加密的密码库中,可以在您的所有设备上同步。由于数据在发送出您的设备之前,就已经完全加密,因此只有您可以访问你的数据。甚至,就算 Bitwarden 的团队成员有这个想法,也没办法读取您的数据。您的数据采用 AES-256 位、加盐的哈希以及 PBKDF2 SHA-256 加密。
|
基于安全要求,为你经常访问的每个网站生成强大、唯一和随机的密码。
|
||||||
|
|
||||||
Bitwarden 是100% 开源软件。bitwarden 的源代码托管在 github 上,每个人都可以自由地查看、审核和贡献 bitwarden 代码库。</value>
|
Bitwarden Send 快速传输加密的信息---文件和文本---直接给任何人。
|
||||||
|
|
||||||
|
Bitwarden 为公司提供团队和企业计划,因此你可以安全地与同事共享密码。
|
||||||
|
|
||||||
|
为何选择 Bitwarden:
|
||||||
|
|
||||||
|
世界级的加密技术
|
||||||
|
密码受到先进的端到端加密(AES-256 位、盐化标签和 PBKDF2 SHA-256)的保护,为您的数据保持安全和隐密。
|
||||||
|
|
||||||
|
内置密码生成器
|
||||||
|
基于安全要求,为你经常访问的每个网站生成强大、唯一和随机的密码。
|
||||||
|
|
||||||
|
全球翻译
|
||||||
|
Bitwarden 的翻译有 40 种语言,而且还在不断增加,感谢我们的全球社区。
|
||||||
|
|
||||||
|
跨平台的应用程序
|
||||||
|
从任何浏览器、移动设备或桌面操作系统,以及更多的地方,在您的 Bitwarden 密码库中保护和分享敏感数据。</value>
|
||||||
<comment>Max 4000 characters</comment>
|
<comment>Max 4000 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Keywords" xml:space="preserve">
|
<data name="Keywords" xml:space="preserve">
|
||||||
|
|||||||
@@ -118,33 +118,33 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="Title" xml:space="preserve">
|
<data name="Title" xml:space="preserve">
|
||||||
<value>Bitwarden Şifrə Meneceri</value>
|
<value>Bitwarden Parol Meneceri</value>
|
||||||
<comment>Max 30 characters</comment>
|
<comment>Max 30 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShortDescription" xml:space="preserve">
|
<data name="ShortDescription" xml:space="preserve">
|
||||||
<value>Bitwarden, internetdə sizi təhlükəsiz saxlayan giriş və şifrə meneceridir.</value>
|
<value>Bitwarden, internetdə sizi təhlükəsiz saxlayan giriş və parol meneceridir.</value>
|
||||||
<comment>Max 80 characters</comment>
|
<comment>Max 80 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FullDesciption" xml:space="preserve">
|
<data name="FullDesciption" xml:space="preserve">
|
||||||
<value>Bitwarden, Inc., 8bit Solutions LLC-nin ana şirkətidir.
|
<value>Bitwarden, Inc., 8bit Solutions LLC-nin ana şirkətidir.
|
||||||
|
|
||||||
THE VERGE, U.S. NEWS & WORLD REPORT, CNET VƏ BİR ÇOXUNA GÖRƏ ƏN YAXŞI ŞİFRƏ MENECERİDİR.
|
THE VERGE, U.S. NEWS & WORLD REPORT, CNET VƏ BİR ÇOXUNA GÖRƏ ƏN YAXŞI PAROL MENECERİDİR.
|
||||||
|
|
||||||
Hər yerdən limitsiz cihazda limitsiz şifrəni idarə edin, saxlayın, qoruyun və paylaşın. Bitwarden evdə, işdə və ya yolda hər kəsə açıq mənbəli şifrə idarəetmə həllərini təqdim edir.
|
Hər yerdən limitsiz cihazda limitsiz parolu idarə edin, saxlayın, qoruyun və paylaşın. Bitwarden evdə, işdə və ya yolda hər kəsə açıq mənbəli parol idarəetmə həllərini təqdim edir.
|
||||||
|
|
||||||
Çox istifadə etdiyiniz hər veb sayt üçün təhlükəsizlik tələblərinə görə güclü, unikal və təsadüfi şifrələr yaradın.
|
Çox istifadə etdiyiniz hər veb sayt üçün təhlükəsizlik tələblərinə görə güclü, unikal və təsadüfi parollar yaradın.
|
||||||
|
|
||||||
Bitwarden Send şifrələnmiş məlumatların (fayl və sadə mətnləri) birbaşa və sürətli göndərilməsini təmin edir.
|
Bitwarden Send şifrələnmiş məlumatların (fayl və sadə mətnləri) birbaşa və sürətli göndərilməsini təmin edir.
|
||||||
|
|
||||||
Bitwarden, şifrələri iş yoldaşlarınızla təhlükəsiz paylaşa bilməyiniz üçün şirkətlərə Teams və Enterprise planları təklif edir.
|
Bitwarden, parolları iş yoldaşlarınızla təhlükəsiz paylaşa bilməyiniz üçün şirkətlərə Teams və Enterprise planları təklif edir.
|
||||||
|
|
||||||
Nəyə görə Bitwarden-i seçməliyik:
|
Nəyə görə Bitwarden-i seçməliyik:
|
||||||
|
|
||||||
Yüksək səviyyə şifrələmə
|
Yüksək səviyyə şifrələmə
|
||||||
Şifrələriniz qabaqcıl ucdan-uca şifrələmə (AES-256 bit, salted hashtag və PBKDF2 SHA-256) ilə qorunur, beləcə verilənlərinizin təhlükəsiz və gizli qalmasını təmin edir.
|
Şifrələriniz qabaqcıl ucdan-uca şifrələmə (AES-256 bit, salted hashtag və PBKDF2 SHA-256) ilə qorunur, beləcə verilənlərinizin təhlükəsiz və gizli qalmasını təmin edir.
|
||||||
|
|
||||||
Daxili şifrə yaradıcı
|
Daxili parol yaradıcı
|
||||||
Çox istifadə etdiyiniz hər veb sayt üçün təhlükəsizlik tələblərinə görə güclü, unikal və təsadüfi şifrələr yaradın.
|
Çox istifadə etdiyiniz hər veb sayt üçün təhlükəsizlik tələblərinə görə güclü, unikal və təsadüfi parollar yaradın.
|
||||||
|
|
||||||
Qlobal tərcümələr
|
Qlobal tərcümələr
|
||||||
Bitwarden tərcümələri 40 dildə mövcuddur və qlobal cəmiyyətimiz sayəsində böyüməyə davam edir.
|
Bitwarden tərcümələri 40 dildə mövcuddur və qlobal cəmiyyətimiz sayəsində böyüməyə davam edir.
|
||||||
@@ -154,16 +154,16 @@ Bitwarden anbarındakı həssas verilənləri, istənilən səyyahdan, mobil cih
|
|||||||
<comment>Max 4000 characters</comment>
|
<comment>Max 4000 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FeatureGraphic" xml:space="preserve">
|
<data name="FeatureGraphic" xml:space="preserve">
|
||||||
<value>Bütün cihazlarınız üçün təhlükəsiz və ödənişsiz bir şifrə meneceri</value>
|
<value>Bütün cihazlarınız üçün təhlükəsiz və ödənişsiz bir parol meneceri</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Screenshot1" xml:space="preserve">
|
<data name="Screenshot1" xml:space="preserve">
|
||||||
<value>Bütün giriş məlumatlarınızı və şifrələrinizi təhlükəsiz bir anbardan idarə edin</value>
|
<value>Bütün giriş məlumatlarınızı və parollarınızı təhlükəsiz bir anbardan idarə edin</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Screenshot2" xml:space="preserve">
|
<data name="Screenshot2" xml:space="preserve">
|
||||||
<value>Güclü, təsadüfi və etibarlı şifrələrin avtomatik yaradılması</value>
|
<value>Güclü, təsadüfi və etibarlı parolların avtomatik yaradılması</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Screenshot3" xml:space="preserve">
|
<data name="Screenshot3" xml:space="preserve">
|
||||||
<value>Anbarınızı barmaq izi, PIN kod və ana şifrə ilə qoruyun</value>
|
<value>Anbarınızı barmaq izi, PIN kod və ana parol ilə qoruyun</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Screenshot4" xml:space="preserve">
|
<data name="Screenshot4" xml:space="preserve">
|
||||||
<value>Səyyahınızda və digər tətbiqlərdəki giriş sahələrinin cəld avto-doldurulması</value>
|
<value>Səyyahınızda və digər tətbiqlərdəki giriş sahələrinin cəld avto-doldurulması</value>
|
||||||
|
|||||||
@@ -126,15 +126,32 @@
|
|||||||
<comment>Max 80 characters</comment>
|
<comment>Max 80 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FullDesciption" xml:space="preserve">
|
<data name="FullDesciption" xml:space="preserve">
|
||||||
<value>Bitwarden is the easiest and safest way to store all of your logins and passwords while conveniently keeping them synced between all of your devices.
|
<value>Bitwarden, Inc. is the parent company of 8bit Solutions LLC.
|
||||||
|
|
||||||
Password theft is a serious problem. The websites and apps that you use are under attack every day. Security breaches occur and your passwords are stolen. When you reuse the same passwords across apps and websites hackers can easily access your email, bank, and other important accounts.
|
NAMED BEST PASSWORD MANAGER BY THE VERGE, U.S. NEWS & WORLD REPORT, CNET, AND MORE.
|
||||||
|
|
||||||
Security experts recommend that you use a different, randomly generated password for every account that you create. But how do you manage all those passwords? Bitwarden makes it easy for you to create, store, and access your passwords.
|
Manage, store, secure, and share unlimited passwords across unlimited devices from anywhere. Bitwarden delivers open source password management solutions to everyone, whether at home, at work, or on the go.
|
||||||
|
|
||||||
Bitwarden stores all of your logins in an encrypted vault that syncs across all of your devices. Since it's fully encrypted before it ever leaves your device, only you have access to your data. Not even the team at Bitwarden can read your data, even if we wanted to. Your data is sealed with AES-256 bit encryption, salted hashing, and PBKDF2 SHA-256.
|
Generate strong, unique, and random passwords based on security requirements for every website you frequent.
|
||||||
|
|
||||||
Bitwarden is focused on open source software. The source code for Bitwarden is hosted on GitHub and everyone is free to review, audit, and contribute to the Bitwarden codebase.</value>
|
Bitwarden Send quickly transmits encrypted information --- files and plaintext -- directly to anyone.
|
||||||
|
|
||||||
|
Bitwarden offers Teams and Enterprise plans for companies so you can securely share passwords with colleagues.
|
||||||
|
|
||||||
|
Why Choose Bitwarden:
|
||||||
|
|
||||||
|
World-Class Encryption
|
||||||
|
Passwords are protected with advanced end-to-end encryption (AES-256 bit, salted hashtag, and PBKDF2 SHA-256) so your data stays secure and private.
|
||||||
|
|
||||||
|
Built-in Password Generator
|
||||||
|
Generate strong, unique, and random passwords based on security requirements for every website you frequent.
|
||||||
|
|
||||||
|
Global Translations
|
||||||
|
Bitwarden translations exist in 40 languages and are growing, thanks to our global community.
|
||||||
|
|
||||||
|
Cross-Platform Applications
|
||||||
|
Secure and share sensitive data within your Bitwarden Vault from any browser, mobile device, or desktop OS, and more.
|
||||||
|
</value>
|
||||||
<comment>Max 4000 characters</comment>
|
<comment>Max 4000 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FeatureGraphic" xml:space="preserve">
|
<data name="FeatureGraphic" xml:space="preserve">
|
||||||
|
|||||||
@@ -126,13 +126,31 @@
|
|||||||
<comment>Max 80 characters</comment>
|
<comment>Max 80 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FullDesciption" xml:space="preserve">
|
<data name="FullDesciption" xml:space="preserve">
|
||||||
<value>Bitwarden je najlakši i najsigurniji način pohranjivanja svih Vaših prijava i lozinki, dok su iste sinkronizirane među svim Vašim uređajima.
|
<value>Bitwarden, Inc. je vlasnik tvrtke 8bit Solutions LLC.
|
||||||
|
|
||||||
Krađa lozinki ozbiljan je problem. Web-lokacije i aplikacije koje upotrebljavate svakodnevno su napadnute. Pojavljuju se sigurnosne povrede, a Vaše lozinke su ukradene. Ako ponovno upotrebljavate iste zaporke u aplikacijama i web-lokacijama, hakeri mogu lako pristupiti Vašoj e-pošti, banci i drugim važnim računima.
|
THE VERGE, U.S. NEWS & WORLD REPORT, CNET I DRUGI ODABRALI SU BITWARDEN ZA NAJBOLJI UPRAVITELJ LOZINKI.
|
||||||
|
|
||||||
Sigurnosni stručnjaci preporučuju da koristite različitu, nasumično generiranu lozinku za svaki račun koji stvorite. Ali kako upravljati svim tim lozinkama? Bitwarden vam olakšava stvaranje, pohranu i pristup lozinkama.
|
Upravljajte, spremajte, osigurajte i dijelite neograničen broj lozinki na neograničenom broju uređaja bilo gdje. Bitwarden omogućuje upravljanje lozinkama, bazirano na otvorenom kodu, svima, bilo kod kuće, na poslu ili u pokretu.
|
||||||
|
|
||||||
Bitwarden pohranjuje sve Vaše prijave u šifrirani trezor koji se sinkronizira na svim Vašim uređajima. Budući da je potpuno šifriran prije nego ikada napusti uređaj, samo Vi imate pristup podacima. Čak ni tim u Bitwardenu ne može vidjeti Vaše podatke. Vaši su podaci zapečaćeni s AES-256 bitnim šifriranjem, salt hashom i PBKDF2 SHA-256.</value>
|
Generirajte jake, jedinstvene i nasumične lozinke bazirane na sigurnosnim zahtjevima za svaku web stranicu koju često posjećujete.
|
||||||
|
|
||||||
|
Bitwarden Send omoguzćuje jednostavno i brzo slanje šifriranih podataka --- datoteki ili teksta -- direktno, bilo kome.
|
||||||
|
|
||||||
|
Bitwarden nudi Teams i Enterprise planove za tvrtke kako biste sigurno mogli dijeliti lozinke s kolegama na poslu.
|
||||||
|
|
||||||
|
Zašto odabrati Bitwarden?
|
||||||
|
|
||||||
|
Svjetski priznata enkripcija
|
||||||
|
Lozinke su zaštićene naprednim end-to-end šifriranjem (AES-256 bit, salted hashtag i PBKDF2 SHA-256) kako bi vaši osobni podaci ostali sigurni i samo vaši.
|
||||||
|
|
||||||
|
Ugrađen generator lozinki
|
||||||
|
Generirajte jake, jedinstvene i nasumične lozinke bazirane na sigurnosnim zahtjevima za svako web mjesto koje često posjećujete.
|
||||||
|
|
||||||
|
Svjetski dostupan
|
||||||
|
Bitwarden je, zahvaljujući našoj globalnoj zajednici, dostupan na više od 40 jezika.
|
||||||
|
|
||||||
|
Podržani svi OS
|
||||||
|
Osigurajte i sigurno dijelite osjetljive podatke sadržane u vašem Bitwarden trezoru iz bilo kojeg preglednika, mobilnog uređaja ili stolnog računala s bilo kojim OS.</value>
|
||||||
<comment>Max 4000 characters</comment>
|
<comment>Max 4000 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FeatureGraphic" xml:space="preserve">
|
<data name="FeatureGraphic" xml:space="preserve">
|
||||||
|
|||||||
180
store/google/ka/copy.resx
Normal file
180
store/google/ka/copy.resx
Normal file
@@ -0,0 +1,180 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="Title" xml:space="preserve">
|
||||||
|
<value>Bitwarden Password Manager</value>
|
||||||
|
<comment>Max 30 characters</comment>
|
||||||
|
</data>
|
||||||
|
<data name="ShortDescription" xml:space="preserve">
|
||||||
|
<value>Bitwarden is a login and password manager that helps keep you safe while online.</value>
|
||||||
|
<comment>Max 80 characters</comment>
|
||||||
|
</data>
|
||||||
|
<data name="FullDesciption" xml:space="preserve">
|
||||||
|
<value>Bitwarden, Inc. is the parent company of 8bit Solutions LLC.
|
||||||
|
|
||||||
|
NAMED BEST PASSWORD MANAGER BY THE VERGE, U.S. NEWS & WORLD REPORT, CNET, AND MORE.
|
||||||
|
|
||||||
|
Manage, store, secure, and share unlimited passwords across unlimited devices from anywhere. Bitwarden delivers open source password management solutions to everyone, whether at home, at work, or on the go.
|
||||||
|
|
||||||
|
Generate strong, unique, and random passwords based on security requirements for every website you frequent.
|
||||||
|
|
||||||
|
Bitwarden Send quickly transmits encrypted information --- files and plaintext -- directly to anyone.
|
||||||
|
|
||||||
|
Bitwarden offers Teams and Enterprise plans for companies so you can securely share passwords with colleagues.
|
||||||
|
|
||||||
|
Why Choose Bitwarden:
|
||||||
|
|
||||||
|
World-Class Encryption
|
||||||
|
Passwords are protected with advanced end-to-end encryption (AES-256 bit, salted hashtag, and PBKDF2 SHA-256) so your data stays secure and private.
|
||||||
|
|
||||||
|
Built-in Password Generator
|
||||||
|
Generate strong, unique, and random passwords based on security requirements for every website you frequent.
|
||||||
|
|
||||||
|
Global Translations
|
||||||
|
Bitwarden translations exist in 40 languages and are growing, thanks to our global community.
|
||||||
|
|
||||||
|
Cross-Platform Applications
|
||||||
|
Secure and share sensitive data within your Bitwarden Vault from any browser, mobile device, or desktop OS, and more.
|
||||||
|
</value>
|
||||||
|
<comment>Max 4000 characters</comment>
|
||||||
|
</data>
|
||||||
|
<data name="FeatureGraphic" xml:space="preserve">
|
||||||
|
<value>A secure and free password manager for all of your devices</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot1" xml:space="preserve">
|
||||||
|
<value>Manage all your logins and passwords from a secure vault</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot2" xml:space="preserve">
|
||||||
|
<value>Automatically generate strong, random, and secure passwords</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot3" xml:space="preserve">
|
||||||
|
<value>Protect your vault with fingerprint, PIN code, or master password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot4" xml:space="preserve">
|
||||||
|
<value>Quickly auto-fill logins from within your web browser and other apps</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot5" xml:space="preserve">
|
||||||
|
<value>Sync and access your vault from multiple devices
|
||||||
|
|
||||||
|
- Phone
|
||||||
|
- Tablet
|
||||||
|
- Desktop
|
||||||
|
- Web</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
180
store/google/nn/copy.resx
Normal file
180
store/google/nn/copy.resx
Normal file
@@ -0,0 +1,180 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="Title" xml:space="preserve">
|
||||||
|
<value>Bitwarden Password Manager</value>
|
||||||
|
<comment>Max 30 characters</comment>
|
||||||
|
</data>
|
||||||
|
<data name="ShortDescription" xml:space="preserve">
|
||||||
|
<value>Bitwarden is a login and password manager that helps keep you safe while online.</value>
|
||||||
|
<comment>Max 80 characters</comment>
|
||||||
|
</data>
|
||||||
|
<data name="FullDesciption" xml:space="preserve">
|
||||||
|
<value>Bitwarden, Inc. is the parent company of 8bit Solutions LLC.
|
||||||
|
|
||||||
|
NAMED BEST PASSWORD MANAGER BY THE VERGE, U.S. NEWS & WORLD REPORT, CNET, AND MORE.
|
||||||
|
|
||||||
|
Manage, store, secure, and share unlimited passwords across unlimited devices from anywhere. Bitwarden delivers open source password management solutions to everyone, whether at home, at work, or on the go.
|
||||||
|
|
||||||
|
Generate strong, unique, and random passwords based on security requirements for every website you frequent.
|
||||||
|
|
||||||
|
Bitwarden Send quickly transmits encrypted information --- files and plaintext -- directly to anyone.
|
||||||
|
|
||||||
|
Bitwarden offers Teams and Enterprise plans for companies so you can securely share passwords with colleagues.
|
||||||
|
|
||||||
|
Why Choose Bitwarden:
|
||||||
|
|
||||||
|
World-Class Encryption
|
||||||
|
Passwords are protected with advanced end-to-end encryption (AES-256 bit, salted hashtag, and PBKDF2 SHA-256) so your data stays secure and private.
|
||||||
|
|
||||||
|
Built-in Password Generator
|
||||||
|
Generate strong, unique, and random passwords based on security requirements for every website you frequent.
|
||||||
|
|
||||||
|
Global Translations
|
||||||
|
Bitwarden translations exist in 40 languages and are growing, thanks to our global community.
|
||||||
|
|
||||||
|
Cross-Platform Applications
|
||||||
|
Secure and share sensitive data within your Bitwarden Vault from any browser, mobile device, or desktop OS, and more.
|
||||||
|
</value>
|
||||||
|
<comment>Max 4000 characters</comment>
|
||||||
|
</data>
|
||||||
|
<data name="FeatureGraphic" xml:space="preserve">
|
||||||
|
<value>A secure and free password manager for all of your devices</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot1" xml:space="preserve">
|
||||||
|
<value>Manage all your logins and passwords from a secure vault</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot2" xml:space="preserve">
|
||||||
|
<value>Automatically generate strong, random, and secure passwords</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot3" xml:space="preserve">
|
||||||
|
<value>Protect your vault with fingerprint, PIN code, or master password</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot4" xml:space="preserve">
|
||||||
|
<value>Quickly auto-fill logins from within your web browser and other apps</value>
|
||||||
|
</data>
|
||||||
|
<data name="Screenshot5" xml:space="preserve">
|
||||||
|
<value>Sync and access your vault from multiple devices
|
||||||
|
|
||||||
|
- Phone
|
||||||
|
- Tablet
|
||||||
|
- Desktop
|
||||||
|
- Web</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="Title" xml:space="preserve">
|
<data name="Title" xml:space="preserve">
|
||||||
<value>Bitwarden lösenordshanterare</value>
|
<value>Bitwarden – Lösenordshanterare</value>
|
||||||
<comment>Max 30 characters</comment>
|
<comment>Max 30 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShortDescription" xml:space="preserve">
|
<data name="ShortDescription" xml:space="preserve">
|
||||||
|
|||||||
@@ -147,10 +147,10 @@ Bitwarden திறந்த மூல மென்பொருளில் க
|
|||||||
<value>தானாக வலிய, சீரற்ற, மற்றும் பாதுகாப்பான கடவுச்சொற்களை உருவாக்குங்கள்</value>
|
<value>தானாக வலிய, சீரற்ற, மற்றும் பாதுகாப்பான கடவுச்சொற்களை உருவாக்குங்கள்</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Screenshot3" xml:space="preserve">
|
<data name="Screenshot3" xml:space="preserve">
|
||||||
<value>உம் பெட்டகத்தை கைரேகை, கடவுக்குறி,அ முதன்மை கடவுச்சொல் வைத்து பாதுகாக்கலாம்</value>
|
<value>உம் பெட்டகத்தை கைரேகை, கடவுக்குறி, அ பிரதான கடவுச்சொல் கொண்டு பாதுகாத்திடு</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Screenshot4" xml:space="preserve">
|
<data name="Screenshot4" xml:space="preserve">
|
||||||
<value>Quickly auto-fill logins from within your web browser and other apps</value>
|
<value>உம் வலை உலாவியிலும் பிற செயலிகளிலும் விரைவாக உள்நுழைவுகளைத் தன்னிரப்பு</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Screenshot5" xml:space="preserve">
|
<data name="Screenshot5" xml:space="preserve">
|
||||||
<value>ஒத்திசைத்து உம் பெட்டகத்தை பல்வேறு சாதனங்களிலிருந்து அணுகு
|
<value>ஒத்திசைத்து உம் பெட்டகத்தை பல்வேறு சாதனங்களிலிருந்து அணுகு
|
||||||
|
|||||||
@@ -126,15 +126,31 @@
|
|||||||
<comment>Max 80 characters</comment>
|
<comment>Max 80 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FullDesciption" xml:space="preserve">
|
<data name="FullDesciption" xml:space="preserve">
|
||||||
<value>Bitwarden 简单易用,可以简单安全地存储您所有的登录用信息和密码,并能在多台设备之间保持同步。
|
<value>Bitwarden, Inc. 是 8bit Solutions LLC 的母公司。
|
||||||
|
|
||||||
盗号是个严重的问题,您访问的网站、使用的各类应用每天都在遭受攻击。每当发生安全漏洞,您的密码就会被盗取,如果您跨应用和网站使用相同的密码,黑客就可以轻松访问您的电子邮件,甚至银行或者其他重要账户。
|
被 THE VERGE、U.S. NEWS & WORLD REPORT、CNET 等评为最佳密码管理器。
|
||||||
|
|
||||||
安全专家建议您为每一个账户使用不同的随机密码。但是要如何管理这些密码呢? Bitwarden 可以让您轻松的创建、保存并访问您的密码。
|
从任何地方,不限制设备,管理、存储、保护和共享无限的密码。Bitwarden 为每个人提供开源的密码管理解决方案,无论是在家里,在工作中,还是在旅途中。
|
||||||
|
|
||||||
Bitwarden 将您的登录信息保存在加密的密码库,可以在您的所有设备上同步。由于信息在发送出您的设备之前,就已经完全加密,因此只有您可以访问这些数据。甚至,就算 Bitwarden 的团队成员有这个想法,也没办法读取您的数据。您的数据采用 AES-256 位、加盐的哈希以及 PBKDF2 SHA-256 加密。
|
基于安全要求,为你经常访问的每个网站生成强大、唯一和随机的密码。
|
||||||
|
|
||||||
Bitwarden 是100% 开源软件。bitwarden 的源代码托管在 github 上,每个人都可以自由地查看、审核和贡献 bitwarden 代码库。</value>
|
Bitwarden Send 快速传输加密的信息---文件和文本---直接给任何人。
|
||||||
|
|
||||||
|
Bitwarden 为公司提供团队和企业计划,因此你可以安全地与同事共享密码。
|
||||||
|
|
||||||
|
为何选择 Bitwarden:
|
||||||
|
|
||||||
|
世界级的加密技术
|
||||||
|
密码受到先进的端到端加密(AES-256 位、盐化标签和 PBKDF2 SHA-256)的保护,为您的数据保持安全和隐密。
|
||||||
|
|
||||||
|
内置密码生成器
|
||||||
|
基于安全要求,为你经常访问的每个网站生成强大、唯一和随机的密码。
|
||||||
|
|
||||||
|
全球翻译
|
||||||
|
Bitwarden 的翻译有 40 种语言,而且还在不断增加,感谢我们的全球社区。
|
||||||
|
|
||||||
|
跨平台的应用程序
|
||||||
|
从任何浏览器、移动设备或桌面操作系统,以及更多的地方,在您的 Bitwarden 密码库中保护和分享敏感数据。</value>
|
||||||
<comment>Max 4000 characters</comment>
|
<comment>Max 4000 characters</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FeatureGraphic" xml:space="preserve">
|
<data name="FeatureGraphic" xml:space="preserve">
|
||||||
|
|||||||
Reference in New Issue
Block a user