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

Strings.cs « Rclone « Backend « Library « Duplicati - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a10e293473696b8892bfd3471f5c06bfe69dac1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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"); } }

    }
}