publicstaticstringDescription{get{returnLC.L(@"This backend can read and write data to an FTP based backend. Allowed formats are ""ftp://hostname/folder"" or ""ftp://username:password@hostname/folder""");}}
publicstaticstringDescriptionFTPActiveLong{get{returnLC.L(@"If this flag is set, the FTP connection is made in active mode. Even if the ""ftp-passive"" flag is also set, the connection will be made in active mode");}}
publicstaticstringDescriptionFTPActiveShort{get{returnLC.L(@"Toggles the FTP connections method");}}
publicstaticstringDescriptionFTPPassiveLong{get{returnLC.L(@"If this flag is set, the FTP connection is made in passive mode, which works better with some firewalls. If the ""ftp-regular"" flag is also set, this flag is ignored");}}
publicstaticstringDescriptionFTPPassiveShort{get{returnLC.L(@"Toggles the FTP connections method");}}
publicstaticstringDescriptionAuthPasswordLong{get{returnLC.L(@"The password used to connect to the server. This may also be supplied as the environment variable ""AUTH_PASSWORD"".");}}
publicstaticstringDescriptionAuthPasswordShort{get{returnLC.L(@"Supplies the password used to connect to the server");}}
publicstaticstringDescriptionAuthUsernameLong{get{returnLC.L(@"The username used to connect to the server. This may also be supplied as the environment variable ""AUTH_USERNAME"".");}}
publicstaticstringDescriptionAuthUsernameShort{get{returnLC.L(@"Supplies the username used to connect to the server");}}
publicstaticstringDescriptionUseSSLLong{get{returnLC.L(@"Use this flag to communicate using Secure Socket Layer (SSL) over ftp (ftps).");}}
publicstaticstringDescriptionUseSSLShort{get{returnLC.L(@"Instructs Duplicati to use an SSL (ftps) connection");}}
publicstaticstringMissingFolderError(stringfoldername,stringmessage){returnLC.L(@"The folder {0} was not found, message: {1}",foldername,message);}
publicstaticstringListVerifyFailure(stringfilename,IEnumerable<string>files){returnLC.L(@"The file {0} was uploaded but not found afterwards, the file listing returned {1}",filename,string.Join(Environment.NewLine,files));}
publicstaticstringListVerifySizeFailure(stringfilename,longactualsize,longexpectedsize){returnLC.L(@"The file {0} was uploaded but the returned size was {1} and it was expected to be {2}",filename,actualsize,expectedsize);}
publicstaticstringDescriptionDisableUploadVerifyLong{get{returnLC.L(@"To protect against network failures, every upload will be attempted verified. Use this option to disable this verification to make the upload faster but less reliable.");}}