Move new strings to resources.

This commit is contained in:
2025-10-18 13:36:08 +01:00
parent f326dcd700
commit 50e10c0a52
18 changed files with 11231 additions and 6792 deletions

View File

@@ -86,9 +86,9 @@ public sealed partial class HexViewWindowViewModel : ViewModelBase
_longMode = !_longMode;
if(_longMode)
FilePath += " (Long Mode)";
FilePath += Localization.Resources.Long_Mode;
else
FilePath = FilePath.Replace(" (Long Mode)", string.Empty);
FilePath = FilePath.Replace(Localization.Resources.Long_Mode, string.Empty);
LoadSector();
}