From 27a434a663c1f6c9fba910c0bba9980223ef4dd6 Mon Sep 17 00:00:00 2001 From: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com> Date: Tue, 2 Sep 2025 19:55:09 +0300 Subject: [PATCH] Format --- .../ViewModels/Dialogs/SettingsViewModel.cs | 68 +++++++++---------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/DiscordChatExporter.Gui/ViewModels/Dialogs/SettingsViewModel.cs b/DiscordChatExporter.Gui/ViewModels/Dialogs/SettingsViewModel.cs index ab88d62a..d3eaad9f 100644 --- a/DiscordChatExporter.Gui/ViewModels/Dialogs/SettingsViewModel.cs +++ b/DiscordChatExporter.Gui/ViewModels/Dialogs/SettingsViewModel.cs @@ -63,40 +63,40 @@ public class SettingsViewModel : DialogViewModelBase // These items have to be non-nullable because Avalonia ComboBox doesn't allow a null value to be selected public IReadOnlyList AvailableLocales { get; } = - [ - // Current locale (maps to null downstream) - "", - // Locales supported by the Discord app - "da-DK", - "de-DE", - "en-GB", - "en-US", - "es-ES", - "fr-FR", - "hr-HR", - "it-IT", - "lt-LT", - "hu-HU", - "nl-NL", - "no-NO", - "pl-PL", - "pt-BR", - "ro-RO", - "fi-FI", - "sv-SE", - "vi-VN", - "tr-TR", - "cs-CZ", - "el-GR", - "bg-BG", - "ru-RU", - "uk-UA", - "th-TH", - "zh-CN", - "ja-JP", - "zh-TW", - "ko-KR", - ]; + [ + // Current locale (maps to null downstream) + "", + // Locales supported by the Discord app + "da-DK", + "de-DE", + "en-GB", + "en-US", + "es-ES", + "fr-FR", + "hr-HR", + "it-IT", + "lt-LT", + "hu-HU", + "nl-NL", + "no-NO", + "pl-PL", + "pt-BR", + "ro-RO", + "fi-FI", + "sv-SE", + "vi-VN", + "tr-TR", + "cs-CZ", + "el-GR", + "bg-BG", + "ru-RU", + "uk-UA", + "th-TH", + "zh-CN", + "ja-JP", + "zh-TW", + "ko-KR", + ]; // This has to be non-nullable because Avalonia ComboBox doesn't allow a null value to be selected public string Locale