diff --git a/Flow.Launcher.Infrastructure/Http/Http.cs b/Flow.Launcher.Infrastructure/Http/Http.cs
index 44b70baae..ec0456fef 100644
--- a/Flow.Launcher.Infrastructure/Http/Http.cs
+++ b/Flow.Launcher.Infrastructure/Http/Http.cs
@@ -82,7 +82,7 @@ namespace Flow.Launcher.Infrastructure.Http
}
catch (UriFormatException e)
{
- API.ShowMsg("Please try again", "Unable to parse Http Proxy");
+ API.ShowMsg(API.GetTranslation("pleaseTryAgain"), API.GetTranslation("parseProxyFailed"));
Log.Exception(ClassName, "Unable to parse Uri", e);
}
}
diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml
index ed7dd9496..b105f2658 100644
--- a/Flow.Launcher/Languages/en.xaml
+++ b/Flow.Launcher/Languages/en.xaml
@@ -30,6 +30,10 @@
The following plugins have errored and cannot be loaded:
Please refer to the logs for more information
+
+ Please try again
+ Unable to parse Http Proxy
+
Failed to register hotkey "{0}". The hotkey may be in use by another program. Change to a different hotkey, or exit another program.
Failed to unregister hotkey "{0}". Please try again or see log for details
@@ -152,6 +156,8 @@
Open
Use Previous Korean IME
You can change the Previous Korean IME settings directly from here
+ Failed to change Korean IME setting
+ Please check your system registry access or contact support.
Home Page
Show home page results when query text is empty.
Show History Results in Home Page
diff --git a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneGeneralViewModel.cs b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneGeneralViewModel.cs
index e5b70cd87..1038abc0b 100644
--- a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneGeneralViewModel.cs
+++ b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneGeneralViewModel.cs
@@ -216,8 +216,8 @@ public partial class SettingsPaneGeneralViewModel : BaseModel
}
else
{
- //Since this is rarely seen text, language support is not provided.
- App.API.ShowMsg("Failed to change Korean IME setting", "Please check your system registry access or contact support.");
+ // Since this is rarely seen text, language support is not provided.
+ App.API.ShowMsg(App.API.GetTranslation("KoreanImeSettingChangeFailTitle"), App.API.GetTranslation("KoreanImeSettingChangeFailSubTitle"));
}
}
}