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

@@ -57,7 +57,7 @@ public sealed partial class GoToPathDialogViewModel : ViewModelBase
if(string.IsNullOrWhiteSpace(Path))
{
HasError = true;
ErrorMessage = "Path cannot be empty";
ErrorMessage = Localization.Resources.Path_cannot_be_empty;
return;
}
@@ -65,7 +65,7 @@ public sealed partial class GoToPathDialogViewModel : ViewModelBase
if(!Directory.Exists(Path))
{
HasError = true;
ErrorMessage = "Path does not exist";
ErrorMessage = Localization.Resources.Path_does_not_exist;
return;
}