fix: grammar

This commit is contained in:
Nathan Baulch 2025-06-05 22:45:20 +10:00
parent 95e585385e
commit 6afc6bacb9
4 changed files with 8 additions and 8 deletions

View file

@ -24,7 +24,7 @@ namespace SourceGit.Commands
if (!File.Exists(toolPath))
{
Dispatcher.UIThread.Post(() => App.RaiseException(repo, $"Can NOT found external merge tool in '{toolPath}'!"));
Dispatcher.UIThread.Post(() => App.RaiseException(repo, $"Can NOT find external merge tool in '{toolPath}'!"));
return false;
}
@ -54,7 +54,7 @@ namespace SourceGit.Commands
if (!File.Exists(toolPath))
{
Dispatcher.UIThread.Invoke(() => App.RaiseException(repo, $"Can NOT found external diff tool in '{toolPath}'!"));
Dispatcher.UIThread.Invoke(() => App.RaiseException(repo, $"Can NOT find external diff tool in '{toolPath}'!"));
return false;
}

View file

@ -360,7 +360,7 @@ namespace SourceGit.ViewModels
if (!Path.Exists(node.Id))
{
App.RaiseException(node.Id, "Repository does NOT exists any more. Please remove it.");
App.RaiseException(node.Id, "Repository does NOT exist any more. Please remove it.");
return;
}

View file

@ -772,7 +772,7 @@ namespace SourceGit.ViewModels
if (_currentBranch == null)
{
App.RaiseException(_fullpath, "Can NOT found current branch!!!");
App.RaiseException(_fullpath, "Can NOT find current branch!!!");
return;
}
@ -796,7 +796,7 @@ namespace SourceGit.ViewModels
if (_currentBranch == null)
{
App.RaiseException(_fullpath, "Can NOT found current branch!!!");
App.RaiseException(_fullpath, "Can NOT find current branch!!!");
return;
}
@ -1288,7 +1288,7 @@ namespace SourceGit.ViewModels
{
if (_currentBranch == null)
{
App.RaiseException(_fullpath, "Git do not hold any branch until you do first commit.");
App.RaiseException(_fullpath, "Git cannot create a branch before your first commit.");
return;
}
@ -1354,7 +1354,7 @@ namespace SourceGit.ViewModels
{
if (_currentBranch == null)
{
App.RaiseException(_fullpath, "Git do not hold any branch until you do first commit.");
App.RaiseException(_fullpath, "Git cannot create a branch before your first commit.");
return;
}

View file

@ -1707,7 +1707,7 @@ namespace SourceGit.ViewModels
if (!_repo.CanCreatePopup())
{
App.RaiseException(_repo.FullPath, "Repository has unfinished job! Please wait!");
App.RaiseException(_repo.FullPath, "Repository has an unfinished job! Please wait!");
return;
}