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);}}
publicstaticstringParametersFileOptionShort{get{returnLC.L(@"Path to a file with parameters");}}
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);}}
publicstaticstringFailedToParseParametersFileError(stringpath,stringmessage){returnLC.L(@"Unable to read the parameters file ""{0}"", reason: {1}",path,message);}
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";}}
publicstaticstringLogfileCommandDescription{get{returnLC.L(@"Outputs log information to the file given");}}
publicstaticstringLoglevelCommandDescription{get{returnLC.L(@"Determines the amount of information written in the log file");}}
publicstaticstringPortablemodeCommandDescription{get{returnLC.L(@"Activates portable mode where the database is placed below the program executable");}}
publicstaticstringSeriousError(stringmessage){returnLC.L(@"A serious error occurred in Duplicati: {0}",message);}
publicstaticstringStartupFailure(System.Exceptionerror){returnLC.L(@"Unable to start up, perhaps another process is already running?
publicstaticstringWrongSQLiteVersion(System.Versionactualversion,stringexpectedversion){returnLC.L(@"Unsupported version of SQLite detected ({0}), must be {1} or higher",actualversion,expectedversion);}
publicstaticstringWebserverWebrootDescription{get{returnLC.L(@"The path to the folder where the static files for the webserver is present. The folder must be located beneath the installation folder");}}
publicstaticstringWebserverPortDescription{get{returnLC.L(@"The port the webserver listens on. Multiple values may be supplied with a comma in between.");}}
publicstaticstringWebserverCertificateFileDescription{get{returnLC.L(@"The certificate and key file in PKCS #12 format the webserver use for SSL. Only RSA/DSA keys are supported.");}}
publicstaticstringWebserverCertificatePasswordDescription{get{returnLC.L(@"The password for decryption of certificate PKCS #12 file.");}}
publicstaticstringWebserverInterfaceDescription{get{returnLC.L(@"The interface the webserver listens on. The special values ""*"" and ""any"" means any interface. The special value ""loopback"" means the loopback adapter.");}}
publicstaticstringWebserverPasswordDescription{get{returnLC.L(@"The password required to access the webserver. This option is saved so you do not need to set it on each run. Setting an empty value disables the password.");}}
publicstaticstringWebserverAllowedhostnamesDescription{get{returnLC.L(@"The hostnames that are accepted, separated with semicolons. If any of the hostnames are ""*"", all hostnames are allowed and the hostname checking is disabled.");}}
publicstaticstringPingpongkeepaliveShort{get{returnLC.L(@"Enables the ping-pong responder");}}
publicstaticstringPingpongkeepaliveLong{get{returnLC.L(@"When running as a server, the service daemon must verify that the process is responding. If this option is enabled, the server reads stdin and writes a reply to each line read");}}
publicstaticstringLogretentionShort{get{returnLC.L(@"Clean up old log data");}}
publicstaticstringLogretentionLong{get{returnLC.L(@"Set the time after which log data will be purged from the database.");}}
publicstaticstringServerdatafolderShort{get{returnLC.L(@"Sets the folder where settings are stored");}}
publicstaticstringServerdatafolderLong(stringenvname){returnLC.L(@"Duplicati needs to store a small database with all settings. Use this option to choose where the settings are stored. This option can also be set with the environment variable {0}.",envname);}
publicstaticstringServerencryptionkeyShort{get{returnLC.L(@"Sets the database encryption key");}}
publicstaticstringServerencryptionkeyLong(stringenvname,stringdecryptionoption){returnLC.L(@"This option sets the encryption key used to scramble the local settings database. This option can also be set with the environment variable {0}. Use the option --{1} to disable the database scrambling.",envname,decryptionoption);}
publicstaticstringTempdirLong{get{returnLC.L(@"This option can be used to supply an alternative folder for temporary storage. By default the system default temporary folder is used. Note that also SQLite will put temporary files in this temporary folder.");}}
publicstaticstringInvalidTimeSetupError(System.DateTimestartdate,stringinterval,stringalloweddays){returnLC.L(@"Unable to find a valid date, given the start date {0}, the repetition interval {1} and the allowed days {2}",startdate,interval,alloweddays);}
publicstaticstringDefectSSLCertInDatabase{get{return@"Unable to create SSL certificate using data from database. Starting without SSL.";}}
publicstaticstringStartedServer(stringip,intport){returnLC.L(@"Server has started and is listening on {0}, port {1}",ip,port);}
publicstaticstringSSLCertificateFailure(stringerrormessage){returnLC.L(@"Unable to create SSL certificate using provided parameters. Exception detail: {0}",errormessage);}
publicstaticstringServerStartFailure(IEnumerable<int>portstried){returnLC.L(@"Unable to open a socket for listening, tried ports: {0}",string.Join(",",fromnin(portstried??newint[0])selectn.ToString()));}