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

@@ -343,7 +343,7 @@ public class SplitJoinStream : Stream
{
case SeekOrigin.Begin:
if(offset >= _streamLength)
throw new IOException(Localization.Cannot_seek_past_stream_end);
throw new IOException(Localization.Cannot_seek_after_stream_end);
_position = offset;
@@ -357,7 +357,7 @@ public class SplitJoinStream : Stream
break;
default:
if(_position + offset >= _streamLength)
throw new IOException(Localization.Cannot_seek_past_stream_end);
throw new IOException(Localization.Cannot_seek_after_stream_end);
_position += offset;