示例#1
0
        public static string LocationDescriptionLong(string regions)
        {
            return(LC.L(@"This option is only used when creating new buckets. Use this option to change what region the data is stored in. Charges vary with bucket location. Known bucket locations:
{0}", regions));
        }
示例#2
0
 public static string InvalidCryptoSystem(string algorithm)
 {
     return(LC.L(@"The cryptolibrary does not support re-usable transforms for the hash algorithm {0}", algorithm));
 }
示例#3
0
 public static string SnapshotFailedError(string message)
 {
     return(LC.L(@"Failed to create a snapshot: {0}", message));
 }
示例#4
0
 public static string UnsupportedOptionWarning(string optionname)
 {
     return(LC.L(@"The supplied option --{0} is not supported and will be ignored", optionname));
 }
示例#5
0
 public static string FullremoteverificationLong(string optionname)
 {
     return(LC.L(@"After a backup is completed, some files are selected for verification on the remote backend. Use this option to turn on full verification, which will decrypt the files and examine the insides of each volume, instead of simply verifying the external hash, If the option --{0} is set, no remote files are verified", optionname));
 }
示例#6
0
 public static string CompressionextensionfileLong(string path)
 {
     return(LC.L(@"This property can be used to point to a text file where each line contains a file extension that indicates a non-compressible file. Files that have an extension found in the file will not be compressed, but simply stored in the archive. The file format ignores any lines that do not start with a period, and considers a space to indicate the end of the extension. A default file is supplied, that also serves as an example. The default file is placed in {0}.", path));
 }
示例#7
0
 public static string DeletedfilesLong(string optionname)
 {
     return(LC.L(@"This option can be used to supply a list of deleted files. This option will be ignored unless the option --{0} is also set.", optionname));
 }
示例#8
0
 public static string Gpgencryptiondisablearmordeprecated(string optionname)
 {
     return(LC.L(@"This option has non-standard handling, please use the --{0} option instead.", optionname));
 }
示例#9
0
 public static string GpgencryptionencryptioncommandLong(string commandname, string optionvalue)
 {
     return(LC.L(@"Overrides the default GPG encryption command ""{0}"", normal usage is to request asymetric encryption with the setting {1}", commandname, optionvalue));
 }
示例#10
0
 public static string DecryptionError(string message)
 {
     return(LC.L(@"Failed to decrypt data (invalid passphrase?): {0}", message));
 }
示例#11
0
 public static string GPGExecuteError(string program, string args, string message)
 {
     return(LC.L(@"Failed to execute GPG at """"{0}"" {1}"": {2}", program, args, message));
 }
示例#12
0
 public static string MultipleEntries(string folder, string parent)
 {
     return(LC.L(@"There is more than one item named ""{0}"" in the folder ""{1}""", folder, parent));
 }
示例#13
0
 public static string AuthidLong(string url)
 {
     return(LC.L(@"The authorization token retrieved from {0}", url));
 }
示例#14
0
        public static string StorageclassDescriptionLong(string classes)
        {
            return(LC.L(@"This option is only used when creating new buckets. Use this option to change what storage type the bucket has. Charges and functionality vary with bucket storage class. Known storage classes:
{0}", classes));
        }
示例#15
0
 public static string HardlinkpolicyLong(string first, string all, string none)
 {
     return(LC.L(@"Using this option to handle hardlinks (only works on Linux/OSX). The ""{0}"" option will record a hardlink ID for each hardlink to avoid storing hardlinked paths multiple times. The option ""{1}"" will ignore hardlink information, and treat each hardlink as a unique path. The option ""{2}"" will ignore all hardlinks with more than one link.", first, all, none));
 }
示例#16
0
 public static string DecryptionError(string message)
 {
     return(LC.L(@"Decryption failed: {0}", message));
 }
示例#17
0
 public static string ExcludefilesattributesLong(string[] attributes)
 {
     return(LC.L(@"Use this option to exclude files with certain attributes. Use a comma separated list of attribute names to specify more that one. Possible values are: {0}", string.Join(", ", attributes)));
 }
示例#18
0
 public static string DownloadedFileSizeError(string filename, long actualsize, long expectedsize)
 {
     return(LC.L(@"The file {0} was downloaded and had size {1} but the size was expected to be {2}", filename, actualsize, expectedsize));
 }
示例#19
0
 public static string UnsupportedEnumerationValue(string optionname, string value, string[] values)
 {
     return(LC.L(@"The option --{0} does not support the value ""{1}"", supported values are: {2}", optionname, value, string.Join(", ", values)));
 }
示例#20
0
 public static string DeprecatedOptionUsedWarning(string optionname, string message)
 {
     return(LC.L(@"The option {0} is deprecated: {1}", optionname, message));
 }
示例#21
0
 public static string UnsupportedOptionDisabledModuleWarning(string optionname, string modulename)
 {
     return(LC.L(@"The option --{0} is not supported because the module {1} is not currently loaded", optionname, modulename));
 }
示例#22
0
 public static string DuplicateOptionNameWarning(string optionname)
 {
     return(LC.L(@"The option --{0} exists more than once, please report this to the developers", optionname));
 }
示例#23
0
 public static string BackendtestsamplesLong(string optionname)
 {
     return(LC.L(@"After a backup is completed, some files are selected for verification on the remote backend. Use this option to change how many. If this value is set to 0 or the option --{0} is set, no remote files are verified", optionname));
 }
示例#24
0
 public static string SourceIsMissingError(string foldername)
 {
     return(LC.L(@"The source folder {0} does not exist, aborting backup", foldername));
 }
示例#25
0
 public static string HashMismatchError(string filename, string recordedhash, string actualhash)
 {
     return(LC.L(@"Hash mismatch on file ""{0}"", recorded hash: {1}, actual hash {2}", filename, recordedhash, actualhash));
 }
示例#26
0
 public static string UnsupportedBooleanValue(string optionname, string value)
 {
     return(LC.L(@"The value ""{1}"" supplied to --{0} does not parse into a valid boolean, this will be treated as if it was set to ""true""", optionname, value));
 }
示例#27
0
 public static string InvalidHashAlgorithm(string algorithm)
 {
     return(LC.L(@"The cryptolibrary does not support the hash algorithm {0}", algorithm));
 }
示例#28
0
 public static string SymlinkpolicyLong(string store, string ignore, string follow)
 {
     return(LC.L(@"Using this option to handle symlinks different. The ""{0}"" option will simply record a symlink with its name and destination, and a restore will recreate the symlink as a link. Use the option ""{1}"" to ignore all symlinks and not store any information about them. Previous versions of Duplicati used the setting ""{2}"", which will cause symlinked files to be included and restore as normal files.", store, ignore, follow));
 }
示例#29
0
 public static string UnsupportedTimeValue(string optionname, string value)
 {
     return(LC.L(@"The value ""{1}"" supplied to --{0} does not represent a valid time", optionname, value));
 }
示例#30
0
 public static string ProjectIDMissingError(string projectoption)
 {
     return(LC.L(@"You must supply a project ID with --{0} for creating a bucket", projectoption));
 }