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/Rclone/Duplicati.Library.Backend.Rclone/Strings.cs')
-rw-r--r--Duplicati/Library/Backend/Rclone/Duplicati.Library.Backend.Rclone/Strings.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Duplicati/Library/Backend/Rclone/Duplicati.Library.Backend.Rclone/Strings.cs b/Duplicati/Library/Backend/Rclone/Duplicati.Library.Backend.Rclone/Strings.cs
new file mode 100644
index 000000000..a10e29347
--- /dev/null
+++ b/Duplicati/Library/Backend/Rclone/Duplicati.Library.Backend.Rclone/Strings.cs
@@ -0,0 +1,18 @@
+using Duplicati.Library.Localization.Short;
+namespace Duplicati.Library.Backend.Strings
+{
+ internal static class Rclone
+ {
+ public static string DisplayName { get { return LC.L(@"Rclone"); } }
+ public static string Description { get { return LC.L(@"This backend can read and write data to Rclone."); } }
+ public static string RcloneLocalRepoShort { get { return LC.L(@"Local repository"); } }
+ public static string RcloneLocalRepoLong { get { return LC.L(@"Local repository"); } }
+ public static string RcloneRemoteRepoShort { get { return LC.L(@"Remote repository"); } }
+ public static string RcloneRemoteRepoLong { get { return LC.L(@"Remote repository"); } }
+ public static string RcloneRemotePathShort { get { return LC.L(@"Remote path"); } }
+ public static string RcloneRemotePathLong { get { return LC.L(@"Remote path"); } }
+ public static string RcloneOptionRcloneShort { get { return LC.L(@"Rclone options"); } }
+ public static string RcloneOptionRcloneLong { get { return LC.L(@"Rclone options"); } }
+
+ }
+}