diff --git a/project/Aki.Launcher.Base/Helpers/LocalizationProvider.cs b/project/Aki.Launcher.Base/Helpers/LocalizationProvider.cs index 34ff7d7..16aab96 100644 --- a/project/Aki.Launcher.Base/Helpers/LocalizationProvider.cs +++ b/project/Aki.Launcher.Base/Helpers/LocalizationProvider.cs @@ -178,6 +178,7 @@ namespace Aki.Launcher.Helpers englishLocale.author = "Author"; englishLocale.wipe_on_start = "Wipe profile on game start"; englishLocale.copy_live_settings_question = "Would you like to copy your live game settings to spt"; + englishLocale.mod_not_in_server_warning = "This mod was found in your profile, but is not loaded on the server"; #endregion Directory.CreateDirectory(LocalizationProvider.DefaultLocaleFolderPath); @@ -1638,7 +1639,22 @@ namespace Aki.Launcher.Helpers } } #endregion - + + #region mod_not_in_server_warning + private string _mod_not_in_server_warning; + public string mod_not_in_server_warning + { + get => _mod_not_in_server_warning; + set + { + if (_mod_not_in_server_warning != value) + { + _mod_not_in_server_warning = value; + RaisePropertyChanged(nameof(mod_not_in_server_warning)); + } + } + } + #endregion #endregion public event PropertyChangedEventHandler PropertyChanged; diff --git a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Chinese (Simplified).json b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Chinese (Simplified).json index 09e53c9..1a245a0 100644 --- a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Chinese (Simplified).json +++ b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Chinese (Simplified).json @@ -87,5 +87,6 @@ "load_live_settings_succeeded": "Game settings copied from live", "load_live_settings_failed": "Failed to copy live settings", "wipe_on_start": "Wipe profile on game start", - "copy_live_settings_question": "Would you like to copy your live game settings to spt" + "copy_live_settings_question": "Would you like to copy your live game settings to spt", + "mod_not_in_server_warning":"This mod was found in your profile, but is not loaded on the server" } diff --git a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Chinese (Traditional).json b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Chinese (Traditional).json index eb399ca..8b922ed 100644 --- a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Chinese (Traditional).json +++ b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Chinese (Traditional).json @@ -87,5 +87,6 @@ "load_live_settings_succeeded": "Game settings copied from live", "load_live_settings_failed": "Failed to copy live settings", "wipe_on_start": "Wipe profile on game start", - "copy_live_settings_question": "Would you like to copy your live game settings to spt" + "copy_live_settings_question": "Would you like to copy your live game settings to spt", + "mod_not_in_server_warning":"This mod was found in your profile, but is not loaded on the server" } \ No newline at end of file diff --git a/project/Aki.Launcher/Aki_Data/Launcher/Locales/English.json b/project/Aki.Launcher/Aki_Data/Launcher/Locales/English.json index 8a52cb5..5378f74 100644 --- a/project/Aki.Launcher/Aki_Data/Launcher/Locales/English.json +++ b/project/Aki.Launcher/Aki_Data/Launcher/Locales/English.json @@ -87,5 +87,6 @@ "load_live_settings_succeeded": "Game settings copied from live", "load_live_settings_failed": "Failed to copy live settings", "wipe_on_start": "Wipe profile on game start", - "copy_live_settings_question": "Would you like to copy your live game settings to spt" + "copy_live_settings_question": "Would you like to copy your live game settings to spt", + "mod_not_in_server_warning":"This mod was found in your profile, but is not loaded on the server" } \ No newline at end of file diff --git a/project/Aki.Launcher/Aki_Data/Launcher/Locales/French.json b/project/Aki.Launcher/Aki_Data/Launcher/Locales/French.json index fffb0bd..1fc0d81 100644 --- a/project/Aki.Launcher/Aki_Data/Launcher/Locales/French.json +++ b/project/Aki.Launcher/Aki_Data/Launcher/Locales/French.json @@ -87,5 +87,6 @@ "load_live_settings_succeeded": "Game settings copied from live", "load_live_settings_failed": "Failed to copy live settings", "wipe_on_start": "Wipe profile on game start", - "copy_live_settings_question": "Would you like to copy your live game settings to spt" + "copy_live_settings_question": "Would you like to copy your live game settings to spt", + "mod_not_in_server_warning":"This mod was found in your profile, but is not loaded on the server" } \ No newline at end of file diff --git a/project/Aki.Launcher/Aki_Data/Launcher/Locales/German.json b/project/Aki.Launcher/Aki_Data/Launcher/Locales/German.json index 8295fae..47f7c33 100644 --- a/project/Aki.Launcher/Aki_Data/Launcher/Locales/German.json +++ b/project/Aki.Launcher/Aki_Data/Launcher/Locales/German.json @@ -87,5 +87,6 @@ "load_live_settings_succeeded": "Game settings copied from live", "load_live_settings_failed": "Failed to copy live settings", "wipe_on_start": "Wipe profile on game start", - "copy_live_settings_question": "Would you like to copy your live game settings to spt" + "copy_live_settings_question": "Would you like to copy your live game settings to spt", + "mod_not_in_server_warning":"This mod was found in your profile, but is not loaded on the server" } \ No newline at end of file diff --git a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Italian.json b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Italian.json index 2386dfc..e387087 100644 --- a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Italian.json +++ b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Italian.json @@ -87,5 +87,6 @@ "load_live_settings_succeeded": "Game settings copied from live", "load_live_settings_failed": "Failed to copy live settings", "wipe_on_start": "Wipe profile on game start", - "copy_live_settings_question": "Would you like to copy your live game settings to spt" + "copy_live_settings_question": "Would you like to copy your live game settings to spt", + "mod_not_in_server_warning":"This mod was found in your profile, but is not loaded on the server" } \ No newline at end of file diff --git a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Japanese.json b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Japanese.json index 46f9f8f..79b1152 100644 --- a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Japanese.json +++ b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Japanese.json @@ -87,5 +87,6 @@ "load_live_settings_succeeded": "Game settings copied from live", "load_live_settings_failed": "Failed to copy live settings", "wipe_on_start": "Wipe profile on game start", - "copy_live_settings_question": "Would you like to copy your live game settings to spt" + "copy_live_settings_question": "Would you like to copy your live game settings to spt", + "mod_not_in_server_warning":"This mod was found in your profile, but is not loaded on the server" } \ No newline at end of file diff --git a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Korean.json b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Korean.json index c90ab47..4beadbb 100644 --- a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Korean.json +++ b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Korean.json @@ -87,5 +87,6 @@ "load_live_settings_succeeded": "Game settings copied from live", "load_live_settings_failed": "Failed to copy live settings", "wipe_on_start": "Wipe profile on game start", - "copy_live_settings_question": "Would you like to copy your live game settings to spt" + "copy_live_settings_question": "Would you like to copy your live game settings to spt", + "mod_not_in_server_warning":"This mod was found in your profile, but is not loaded on the server" } \ No newline at end of file diff --git a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Polish.json b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Polish.json index 0cef718..4bf8bfd 100644 --- a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Polish.json +++ b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Polish.json @@ -87,5 +87,6 @@ "load_live_settings_succeeded": "Ustawienia gry skopiowane z EFT", "load_live_settings_failed": "Nie udało się skopiować ustawień EFT", "wipe_on_start": "Wipe profile on game start", - "copy_live_settings_question": "Would you like to copy your live game settings to spt" + "copy_live_settings_question": "Would you like to copy your live game settings to spt", + "mod_not_in_server_warning":"This mod was found in your profile, but is not loaded on the server" } \ No newline at end of file diff --git a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Russian.json b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Russian.json index a32ed41..9fac85a 100644 --- a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Russian.json +++ b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Russian.json @@ -87,5 +87,6 @@ "load_live_settings_succeeded": "Настройки игры скопированы из онлайн-версии", "load_live_settings_failed": "Не удалось скопировать настройки онлайн-версии", "wipe_on_start": "Wipe profile on game start", - "copy_live_settings_question": "Would you like to copy your live game settings to spt" + "copy_live_settings_question": "Would you like to copy your live game settings to spt", + "mod_not_in_server_warning":"This mod was found in your profile, but is not loaded on the server" } \ No newline at end of file diff --git a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Spanish.json b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Spanish.json index 02441f0..868ea38 100644 --- a/project/Aki.Launcher/Aki_Data/Launcher/Locales/Spanish.json +++ b/project/Aki.Launcher/Aki_Data/Launcher/Locales/Spanish.json @@ -87,5 +87,6 @@ "load_live_settings_succeeded": "Game settings copied from live", "load_live_settings_failed": "Failed to copy live settings", "wipe_on_start": "Wipe profile on game start", - "copy_live_settings_question": "Would you like to copy your live game settings to spt" + "copy_live_settings_question": "Would you like to copy your live game settings to spt", + "mod_not_in_server_warning":"This mod was found in your profile, but is not loaded on the server" } \ No newline at end of file diff --git a/project/Aki.Launcher/CustomControls/ModInfoCard.axaml b/project/Aki.Launcher/CustomControls/ModInfoCard.axaml index 8a7eb2a..8982a1d 100644 --- a/project/Aki.Launcher/CustomControls/ModInfoCard.axaml +++ b/project/Aki.Launcher/CustomControls/ModInfoCard.axaml @@ -23,8 +23,12 @@ - + + + + @@ -32,6 +36,7 @@ +