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

Strings.cs « AzureBlob « Backend « Library « Duplicati - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d23603bfa42dede56c555791151f985dfb0a41ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using Duplicati.Library.Localization.Short;
namespace Duplicati.Library.Backend.AzureBlob.Strings {
    internal static class AzureBlobBackend {
        public static string ContainerNameDescriptionLong { get { return LC.L(@"All files will be written to the container specified"); } }
        public static string ContainerNameDescriptionShort { get { return LC.L(@"The name of the storage container "); } }
        public static string DisplayName { get { return LC.L(@"Azure blob"); } }
        public static string NoStorageAccountName { get { return LC.L(@"No Azure storage account name given"); } }
        public static string StorageAccountNameDescriptionLong { get { return LC.L(@"The Azure storage account name which can be obtained by clicking the ""Manage Access Keys"" button on the storage account dashboard"); } }
        public static string StorageAccountNameDescriptionShort { get { return LC.L(@"The storage account name"); } }
        public static string AccessKeyDescriptionLong { get { return LC.L(@"The Azure access key which can be obtained by clicking the ""Manage Access Keys"" button on the storage account dashboard"); } }
        public static string AccessKeyDescriptionShort { get { return LC.L(@"The access key"); } }
        public static string NoAccessKey { get { return LC.L(@"No Azure access key given"); } }
        public static string AuthPasswordDescriptionLong { 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 AuthPasswordDescriptionShort { get { return LC.L(@"Supplies the password used to connect to the server"); } }
        public static string AuthUsernameDescriptionLong { 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 AuthUsernameDescriptionShort { get { return LC.L(@"Supplies the username used to connect to the server"); } }
        public static string Description_v2 { get { return LC.L(@"This backend can read and write data to Azure blob storage.  Allowed formats are: ""azure://bucketname"""); } }
    }
}