Translate Aaru.Filters to Spanish (Spain).

This commit is contained in:
2023-09-27 00:44:43 +01:00
parent f67ebd60c4
commit b8a46c1024
5 changed files with 272 additions and 121 deletions

View File

@@ -652,7 +652,7 @@ namespace Aaru.Filters
{
case SeekOrigin.Begin:
if(offset + _streamStart > _streamEnd)
throw new IOException(Localization.Cannot_seek_past_stream_end);
throw new IOException(Localization.Cannot_seek_after_stream_end);
return _baseStream.Seek(offset + _streamStart, SeekOrigin.Begin) - _streamStart;
case SeekOrigin.End:
@@ -662,7 +662,7 @@ namespace Aaru.Filters
return _baseStream.Seek(offset - (_baseStream.Length - _streamEnd), SeekOrigin.End) - _streamStart;
default:
if(offset + _baseStream.Position > _streamEnd)
throw new IOException(Localization.Cannot_seek_past_stream_end);
throw new IOException(Localization.Cannot_seek_after_stream_end);
return _baseStream.Seek(offset, SeekOrigin.Current) - _streamStart;
}