Add filter creation within TWBlue

This commit is contained in:
2025-03-07 10:13:13 -06:00
parent 38fe9c149b
commit 3f72185817
3 changed files with 22 additions and 5 deletions

View File

@@ -46,4 +46,7 @@ def cant_update_source() -> wx.MessageDialog:
return dlg.ShowModal()
def invalid_instance():
return wx.MessageDialog(None, _("the provided instance is invalid. Please try again."), _("Invalid instance"), wx.ICON_ERROR).ShowModal()
return wx.MessageDialog(None, _("the provided instance is invalid. Please try again."), _("Invalid instance"), wx.ICON_ERROR).ShowModal()
def error_adding_filter():
return wx.MessageDialog(None, _("TWBlue was unable to add or update the filter with the specified settings. Please try again."), _("Error"), wx.ICON_ERROR).ShowModal()