This commit is contained in:
Nathan Baulch 2025-06-06 14:10:55 +10:00 committed by GitHub
parent 0c22409b7b
commit 7bba40d03f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
39 changed files with 84 additions and 84 deletions

View file

@ -1099,7 +1099,7 @@ namespace SourceGit.ViewModels
var menu = new ContextMenu();
var ai = null as MenuItem;
var services = _repo.GetPreferedOpenAIServices();
var services = _repo.GetPreferredOpenAIServices();
if (services.Count > 0)
{
ai = new MenuItem();
@ -1497,7 +1497,7 @@ namespace SourceGit.ViewModels
return null;
}
var services = _repo.GetPreferedOpenAIServices();
var services = _repo.GetPreferredOpenAIServices();
if (services.Count == 0)
{
App.RaiseException(_repo.FullPath, "Bad configuration for OpenAI");
@ -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;
}