You've already forked linux-packaging-mono
Imported Upstream version 6.4.0.137
Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
This commit is contained in:
parent
e9207cf623
commit
ef583813eb
@ -25,10 +25,6 @@ partial class SR
|
||||
public const string ZLibErrorNotEnoughMemory = "The underlying compression routine could not reserve sufficient memory.";
|
||||
public const string ZLibErrorVersionMismatch = "The version of the underlying compression routine does not match expected version.";
|
||||
public const string ZLibErrorUnexpected = "The underlying compression routine returned an unexpected error code.";
|
||||
public const string CorruptedGZipHeader = "The magic number in GZip header is not correct. Make sure you are passing in a GZip stream.";
|
||||
public const string UnknownCompressionMode = "The compression mode specified in GZip header is unknown.";
|
||||
public const string InvalidCRC = "The CRC in GZip footer does not match the CRC calculated from the decompressed data.";
|
||||
public const string InvalidStreamSize = "The stream size in GZip footer does not match the real stream size.";
|
||||
public const string ArgumentNeedNonNegative = "The argument must be non-negative.";
|
||||
public const string CannotBeEmpty = "String cannot be empty.";
|
||||
public const string CDCorrupt = "Central Directory corrupt.";
|
||||
@ -72,6 +68,20 @@ partial class SR
|
||||
public const string UpdateModeOneStream = "Entries cannot be opened multiple times in Update mode.";
|
||||
public const string WritingNotSupported = "This stream from ZipArchiveEntry does not support writing.";
|
||||
public const string Zip64EOCDNotWhereExpected = "Zip 64 End of Central Directory Record not where indicated.";
|
||||
public const string Argument_InvalidPathChars = "Illegal characters in path.";
|
||||
public const string FileNameContainsInvalidCharacters = "An entry in the ZipArchive has a path that contains invalid characters.";
|
||||
public const string Argument_InvalidPathChars = "Illegal characters in path '{0}'.";
|
||||
public const string Stream_FalseCanRead = "Stream does not support reading.";
|
||||
public const string Stream_FalseCanWrite = "Stream does not support writing.";
|
||||
public const string BrotliEncoder_Create = "Failed to create BrotliEncoder instance";
|
||||
public const string BrotliEncoder_Disposed = "Can not access a closed Encoder.";
|
||||
public const string BrotliEncoder_Quality = "Provided BrotliEncoder Quality of {0} is not between the minimum value of {1} and the maximum value of {2}";
|
||||
public const string BrotliEncoder_Window = "Provided BrotliEncoder Window of {0} is not between the minimum value of {1} and the maximum value of {2}";
|
||||
public const string BrotliEncoder_InvalidSetParameter = "The BrotliEncoder {0} can not be changed at current encoder state.";
|
||||
public const string BrotliDecoder_Create = "Failed to create BrotliDecoder instance";
|
||||
public const string BrotliDecoder_Error = "Decoder threw unexpected error: {0}";
|
||||
public const string BrotliDecoder_Disposed = "Can not access a closed Decoder.";
|
||||
public const string BrotliStream_Compress_UnsupportedOperation = "Can not perform Read operations on a BrotliStream constructed with CompressionMode.Compress.";
|
||||
public const string BrotliStream_Compress_InvalidData = "Encoder ran into invalid data.";
|
||||
public const string BrotliStream_Decompress_UnsupportedOperation = "Can not perform Write operations on a BrotliStream constructed with CompressionMode.Decompress.";
|
||||
public const string BrotliStream_Decompress_InvalidData = "Decoder ran into invalid data.";
|
||||
public const string BrotliStream_Decompress_InvalidStream = "BrotliStream.BaseStream returned more bytes than requested in Read.";
|
||||
}
|
||||
|
Reference in New Issue
Block a user