mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Move new strings to resources.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user