diff --git a/ShareX.ScreenCaptureLib/Properties/Resources.ja-JP.resx b/ShareX.ScreenCaptureLib/Properties/Resources.ja-JP.resx index f7be646d5..1c836a1f4 100644 --- a/ShareX.ScreenCaptureLib/Properties/Resources.ja-JP.resx +++ b/ShareX.ScreenCaptureLib/Properties/Resources.ja-JP.resx @@ -440,4 +440,7 @@ 線の形式: + + 文字の種類: + \ No newline at end of file diff --git a/ShareX/Enums.cs b/ShareX/Enums.cs index b14c5c86e..1df3b41eb 100644 --- a/ShareX/Enums.cs +++ b/ShareX/Enums.cs @@ -241,7 +241,7 @@ public enum PopUpNotificationType // Localized ToastNotification } - public enum ToastClickAction + public enum ToastClickAction // Localized { [Description("Close notification")] CloseNotification, diff --git a/ShareX/Forms/TaskSettingsForm.cs b/ShareX/Forms/TaskSettingsForm.cs index 3ef10b836..14bfd38d9 100644 --- a/ShareX/Forms/TaskSettingsForm.cs +++ b/ShareX/Forms/TaskSettingsForm.cs @@ -196,7 +196,7 @@ public TaskSettingsForm(TaskSettings hotkeySetting, bool isDefault = false) gbToastWindow.Enabled = TaskSettings.GeneralSettings.ShowToastNotificationAfterTaskCompleted; nudToastWindowDuration.SetValue((decimal)TaskSettings.GeneralSettings.ToastWindowDuration); nudToastWindowFadeDuration.SetValue((decimal)TaskSettings.GeneralSettings.ToastWindowFadeDuration); - cbToastWindowPlacement.Items.AddRange(Helpers.GetEnumNamesProper()); + cbToastWindowPlacement.Items.AddRange(Helpers.GetLocalizedEnumDescriptions()); cbToastWindowPlacement.SelectedIndex = TaskSettings.GeneralSettings.ToastWindowPlacement.GetIndex(); nudToastWindowSizeWidth.SetValue(TaskSettings.GeneralSettings.ToastWindowSize.Width); nudToastWindowSizeHeight.SetValue(TaskSettings.GeneralSettings.ToastWindowSize.Height);