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:
Diffstat (limited to 'Duplicati/Library/Backend/Sia/Strings.cs')
-rw-r--r--Duplicati/Library/Backend/Sia/Strings.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Duplicati/Library/Backend/Sia/Strings.cs b/Duplicati/Library/Backend/Sia/Strings.cs
new file mode 100644
index 000000000..1786d39b0
--- /dev/null
+++ b/Duplicati/Library/Backend/Sia/Strings.cs
@@ -0,0 +1,17 @@
+using Duplicati.Library.Localization.Short;
+namespace Duplicati.Library.Backend.Strings
+{
+ internal static class Sia
+ {
+ public static string DisplayName { get { return LC.L(@"Sia Decentralized Cloud"); } }
+ public static string Description { get { return LC.L(@"This backend can read and write data to Sia."); } }
+ public static string SiaHostDescriptionShort { get { return LC.L(@"Sia address"); } }
+ public static string SiaHostDescriptionLong { get { return LC.L(@"Sia address, ie 127.0.0.1:9980"); } }
+ public static string SiaPathDescriptionShort { get { return LC.L(@"Backup path"); } }
+ public static string SiaPathDescriptionLong { get { return LC.L(@"Target path, ie /backup"); } }
+ public static string SiaPasswordShort { get { return LC.L(@"Sia password"); } }
+ public static string SiaPasswordLong { get { return LC.L(@"Sia password"); } }
+ public static string SiaRedundancyDescriptionShort { get { return LC.L(@"3"); } }
+ public static string SiaRedundancyDescriptionLong { get { return LC.L(@"Minimum value is 3."); } }
+ }
+}