Remove 2 generalization in dialogs, we are not generalizing here.
This commit is contained in:
parent
b6c10c31d4
commit
7ce16668fb
|
@ -1129,13 +1129,13 @@ class FileChooserDialog(gtk.FileChooserDialog):
|
||||||
def just_destroy(self, widget):
|
def just_destroy(self, widget):
|
||||||
self.destroy()
|
self.destroy()
|
||||||
|
|
||||||
class BindPortError(HigDialog):
|
class BindPortError():
|
||||||
def __init__(self, port):
|
def __init__(self, port):
|
||||||
ErrorDialog(_('Unable to bind to port %s.') % port,
|
ErrorDialog(_('Unable to bind to port %s.') % port,
|
||||||
_('Maybe you have another running instance of Gajim. '
|
_('Maybe you have another running instance of Gajim. '
|
||||||
'File Transfer will be cancelled.'))
|
'File Transfer will be cancelled.'))
|
||||||
|
|
||||||
class AspellDictError(HigDialog):
|
class AspellDictError():
|
||||||
def __init__(self, lang):
|
def __init__(self, lang):
|
||||||
ErrorDialog(
|
ErrorDialog(
|
||||||
_('Dictionary for lang %s not available') % lang,
|
_('Dictionary for lang %s not available') % lang,
|
||||||
|
|
Loading…
Reference in New Issue