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

Strings.cs « CloudFiles « Backend « Library « Duplicati - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0d07b39bb87f189e598ef59b83a40781f7d9241 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using Duplicati.Library.Localization.Short;
namespace Duplicati.Library.Backend.Strings {
    internal static class CloudFiles {
        public static string DescriptionAuthenticationURLLong_v2(string optionname) { return LC.L(@"Cloudfiles use different servers for authentification based on where the account was resides, use this option to set an alternate authentication URL. This option overrides --{0}.", optionname); }
        public static string DescriptionAuthenticationURLShort { get { return LC.L(@"Provide another authentication URL"); } }
        public static string DescriptionAuthPasswordLong { get { return LC.L(@"The password used to connect to the server. This may also be supplied as the environment variable ""AUTH_PASSWORD""."); } }
        public static string DescriptionAuthPasswordShort { get { return LC.L(@"Supplies the password used to connect to the server"); } }
        public static string DescriptionAuthUsernameLong { get { return LC.L(@"The username used to connect to the server. This may also be supplied as the environment variable ""AUTH_USERNAME""."); } }
        public static string DescriptionAuthUsernameShort { get { return LC.L(@"Supplies the username used to connect to the server"); } }
        public static string DescriptionPasswordLong { get { return LC.L(@"Supplies the API Access Key used to authenticate with CloudFiles."); } }
        public static string DescriptionPasswordShort { get { return LC.L(@"Supplies the access key used to connect to the server"); } }
        public static string DescriptionUKAccountLong(string optionname, string optionvalue) { return LC.L(@"Duplicati will assume that the credentials given are for a US account, use this option if the account is a UK based account. Note that this is equivalent to setting --{0}={1}.", optionname, optionvalue); }
        public static string DescriptionUKAccountShort { get { return LC.L(@"Use a UK account"); } }
        public static string DescriptionUsernameLong { get { return LC.L(@"Supplies the username used to authenticate with CloudFiles."); } }
        public static string DescriptionUsernameShort { get { return LC.L(@"Supplies the username used to authenticate with CloudFiles"); } }
        public static string Description_v2 { get { return LC.L(@"Supports connections to the CloudFiles backend. Allowed formats is ""cloudfiles://container/folder""."); } }
        public static string DisplayName { get { return LC.L(@"Rackspace CloudFiles"); } }
        public static string ETagVerificationError { get { return LC.L(@"MD5 Hash (ETag) verification failed"); } }
        public static string FileDeleteError { get { return LC.L(@"Failed to delete file"); } }
        public static string FileUploadError { get { return LC.L(@"Failed to upload file"); } }
        public static string NoAPIKeyError { get { return LC.L(@"No CloudFiles API Access Key given"); } }
        public static string NoUserIDError { get { return LC.L(@"No CloudFiles userID given"); } }
        public static string UnexpectedResponseError { get { return LC.L(@"Unexpected CloudFiles response, perhaps the API has changed?"); } }
    }
}