publicstaticstringDeleteCommandNeedsOptions(stringcommandname,string[]options){returnLC.L(@"The command {0} needs at least one of the following options set: {1}",commandname,string.Join(", ",options));}
publicstaticstringWrongNumberOfCommandsError_v2(intactualcommands,intexpectedcommands,string[]commands){returnLC.L(@"Found {0} commands but expected {1}, commands:
publicstaticstringFailedToParseParametersFileError(stringpath,stringmessage){returnLC.L(@"Unable to read the parameters file ""{0}"", reason: {1}",path,message);}
publicstaticstringFiltersCannotBeUsedWithFileError2{get{returnLC.L(@"Filters cannot be specified on the commandline if filters are also present in the parameter file. Use the special --{0}, --{1}, or --{2} options to specify filters inside the parameter file. Each filter must be prefixed with either a + or a -, and multiple filters must be joined with {3}","replace-filter","append-filter","prepend-filter",System.IO.Path.PathSeparator);}}
publicstaticstringInternalOptionUsedError(stringoptionname){returnLC.L(@"The option --{0} was supplied, but it is reserved for internal use and may not be set on the commandline",optionname);}
publicstaticstringParametersFileOptionLong2{get{returnLC.L(@"This option can be used to store some or all of the options given to the commandline client. The file must be a plain text file, UTF-8 encoding is preferred. Each line in the file should be of the format --option=value. The special options --{0} and --{1} can be used to override the localpath and the remote destination uri, respectively. The options in this file take precedence over the options provided on the commandline. You cannot specify filters in both the file and on the commandline. Instead, you can use the special --{2}, --{3}, or --{4} options to specify filters inside the parameter file. Each filter must be prefixed with either a + or a -, and multiple filters must be joined with {5} ","source","target","replace-filter","append-filter","prepend-filter",System.IO.Path.PathSeparator);}}
publicstaticstringIncludeLong{get{returnLC.L(@"Include files that match this filter. The special character * means any number of character, and the special character ? means any single character, use *.txt to include all files with a txt extension. Regular expressions are also supported and can be supplied by using hard braces, i.e. [.*\.txt]. Filter groups (which encapsulate a built-in set of well-known files and folders) can be specified by using curly braces, i.e. {{Applications}}.");}}
publicstaticstringExcludeLong{get{returnLC.L(@"Exclude files that match this filter. The special character * means any number of character, and the special character ? means any single character, use *.txt to exclude all files with a txt extension. Regular expressions are also supported and can be supplied by using hard braces, i.e. [.*\.txt]. Filter groups (which encapsulate a built-in set of well-known files and folders) can be specified by using curly braces, i.e. {{TemporaryFiles}}.");}}
publicstaticstringControlFilesOptionShort{get{returnLC.L(@"If this option is used with a backup operation, it is interpreted as a list of files to add to the filesets. When used with list or restore, it will list or restore the control files instead of the normal files.");}}
publicstaticstringControlFilesOptionLong{get{returnLC.L(@"Use control files");}}
publicstaticstringQuietConsoleOptionLong{get{returnLC.L(@"If this option is set, progress reports and other messages that would normally go to the console will be redirected to the log.");}}
publicstaticstringSkippingSourceArgumentsOnNonBackupOperation{get{return@"The --source argument was specified in the parameter file, but the current operation is not a backup operation, so the argument is ignored";}}