Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTopperDEL <github_com@tparth.de>2021-04-29 16:02:00 +0300
committerTopperDEL <github_com@tparth.de>2021-04-29 16:02:00 +0300
commit7e07cf5b6af445e5d88fa70b53d28b510f9507af (patch)
tree9475f86569206c119ad5851943c40b105a90ce25 /Duplicati/Library/Backend/Tardigrade
parentd923cfaa6e98406d0fb4611d5d36d2ef0c2cbb47 (diff)
feat: Verify encryption passphrase
Diffstat (limited to 'Duplicati/Library/Backend/Tardigrade')
-rw-r--r--Duplicati/Library/Backend/Tardigrade/Strings.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Duplicati/Library/Backend/Tardigrade/Strings.cs b/Duplicati/Library/Backend/Tardigrade/Strings.cs
index 9fb19e085..2484797dc 100644
--- a/Duplicati/Library/Backend/Tardigrade/Strings.cs
+++ b/Duplicati/Library/Backend/Tardigrade/Strings.cs
@@ -20,11 +20,14 @@ namespace Duplicati.Library.Backend.Strings
public static string TardigradeAPIKeyDescriptionLong { get { return LC.L(@"The API key grants access to a specific project on your chosen satellite. Head over to the dashboard of your satellite to create one if you do not already have an API key."); } }
public static string TardigradeSecretDescriptionShort { get { return LC.L(@"The encryption passphrase"); } }
public static string TardigradeSecretDescriptionLong { get { return LC.L(@"The encryption passphrase is used to encrypt your data before sending it to the Storj network. This passphrase can be the only secret to provide - for Storj you do not necessary need any additional encryption (from Duplicati) in place."); } }
+ public static string TardigradeSecretVerifyDescriptionShort { get { return LC.L(@"The encryption passphrase (for verification)"); } }
+ public static string TardigradeSecretVerifyDescriptionLong { get { return LC.L(@"The encryption passphrase verification to make sure you provided the expected value."); } }
public static string TardigradeSharedAccessDescriptionShort { get { return LC.L(@"The access grant"); } }
public static string TardigradeSharedAccessDescriptionLong { get { return LC.L(@"An access grant contains all information in one encrypted string. You may use it instead of a satellite, API key and secret."); } }
public static string TardigradeBucketDescriptionShort { get { return LC.L(@"The bucket"); } }
public static string TardigradeBucketDescriptionLong { get { return LC.L(@"The bucket where the backup will reside in."); } }
public static string TardigradeFolderDescriptionShort { get { return LC.L(@"The folder"); } }
public static string TardigradeFolderDescriptionLong { get { return LC.L(@"The folder within the bucket where the backup will reside in."); } }
+ public static string TardigradeEncryptionPassphrasesDoNotMatchError { get { return LC.L(@"The encryption passphrases do not match"); } }
}
}