- add: add more translate

This commit is contained in:
2025-06-23 19:48:11 +03:00
parent 0a2fe55c7f
commit 147915f684
8 changed files with 45 additions and 13 deletions

View File

@@ -11,7 +11,6 @@ using CommunityToolkit.Mvvm.Input;
using Nebula.Launcher.Services;
using Nebula.Launcher.ViewModels.Popup;
using Nebula.Launcher.Views.Pages;
using Nebula.Shared;
using Nebula.Shared.Services;
using Nebula.Shared.Services.Logging;
using Nebula.Shared.Utils;
@@ -177,6 +176,11 @@ public partial class AccountInfoViewModel : ViewModelBase
PopupError(LocalisationService.GetString("auth-name-resolution-error"), e);
DoRetryAuth = true;
break;
case HttpRequestError.SecureConnectionError:
PopupError(LocalisationService.GetString("auth-secure-error"), e);
DoRetryAuth = true;
break;
default:
var authError = new Exception(LocalisationService.GetString("auth-error"), e);