Update LocaleKeys

This commit is contained in:
Isaac Marovitz 2023-01-03 17:46:08 -05:00
parent 47c5490dd7
commit f25c27c5f5
No known key found for this signature in database
GPG key ID: 97250B2B09A132E1
2 changed files with 13 additions and 13 deletions

View file

@ -30,7 +30,7 @@ public class AboutWindowViewModel : BaseModel
OnPropertyChanged();
}
}
public Bitmap DiscordLogo
{
get => _discordLogo;
@ -40,7 +40,7 @@ public class AboutWindowViewModel : BaseModel
OnPropertyChanged();
}
}
public Bitmap PatreonLogo
{
get => _patreonLogo;
@ -50,7 +50,7 @@ public class AboutWindowViewModel : BaseModel
OnPropertyChanged();
}
}
public Bitmap TwitterLogo
{
get => _twitterLogo;
@ -83,15 +83,15 @@ public class AboutWindowViewModel : BaseModel
public string Developers
{
get => string.Format(LocaleManager.Instance["AboutPageDeveloperListMore"], "gdkchan, Ac_K, Thog, rip in peri peri, LDj3SNuD, emmaus, Thealexbarney, Xpl0itR, GoffyDude, »jD«");
get => string.Format(LocaleManager.Instance[LocaleKeys.AboutPageDeveloperListMore], "gdkchan, Ac_K, Thog, rip in peri peri, LDj3SNuD, emmaus, Thealexbarney, Xpl0itR, GoffyDude, »jD«");
}
public AboutWindowViewModel()
{
Version = Program.Version;
var assets = AvaloniaLocator.Current.GetService<Avalonia.Platform.IAssetLoader>();
if (ConfigurationState.Instance.Ui.BaseStyle.Value == "Light")
{
GithubLogo = new Bitmap(assets.Open(new Uri("resm:Ryujinx.Ui.Common.Resources.Logo_GitHub_Light.png?assembly=Ryujinx.Ui.Common")));
@ -108,12 +108,12 @@ public class AboutWindowViewModel : BaseModel
Dispatcher.UIThread.InvokeAsync(DownloadPatronsJson);
}
private async Task DownloadPatronsJson()
{
if (!NetworkInterface.GetIsNetworkAvailable())
{
Supporters = LocaleManager.Instance["ConnectionError"];
Supporters = LocaleManager.Instance[LocaleKeys.ConnectionError];
return;
}
@ -128,7 +128,7 @@ public class AboutWindowViewModel : BaseModel
}
catch
{
Supporters = LocaleManager.Instance["ApiError"];
Supporters = LocaleManager.Instance[LocaleKeys.ApiError];
}
}
}

View file

@ -23,15 +23,15 @@ namespace Ryujinx.Ava.UI.Windows
public static async Task Show()
{
var content = new AboutWindow();
ContentDialog contentDialog = new()
{
PrimaryButtonText = "",
SecondaryButtonText = "",
CloseButtonText = LocaleManager.Instance["UserProfilesClose"],
CloseButtonText = LocaleManager.Instance[LocaleKeys.UserProfilesClose],
Content = content
};
Style closeButton = new(x => x.Name("CloseButton"));
closeButton.Setters.Add(new Setter(WidthProperty, 70d));
@ -40,7 +40,7 @@ namespace Ryujinx.Ava.UI.Windows
contentDialog.Styles.Add(closeButton);
contentDialog.Styles.Add(closeButtonParent);
await contentDialog.ShowAsync();
}