summaryrefslogtreecommitdiff
path: root/portato/gui
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2010-03-05 21:27:19 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2010-03-05 21:27:19 +0100
commite341eae7dbe94c854c8b399390c704afcbea0bd0 (patch)
tree66de31515db2e8705237c9829cb0fa13385ac574 /portato/gui
parent4f47201c9b6e13aeb8ee987055e895a1739e518c (diff)
downloadportato-e341eae7dbe94c854c8b399390c704afcbea0bd0.tar.gz
portato-e341eae7dbe94c854c8b399390c704afcbea0bd0.tar.bz2
portato-e341eae7dbe94c854c8b399390c704afcbea0bd0.zip
Corrected typo
Diffstat (limited to 'portato/gui')
-rw-r--r--portato/gui/dialogs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/dialogs.py b/portato/gui/dialogs.py
index 281369e..6044a5b 100644
--- a/portato/gui/dialogs.py
+++ b/portato/gui/dialogs.py
@@ -68,7 +68,7 @@ def nothing_found_dialog ():
def changed_flags_dialog (what = "flags"):
check = gtk.CheckButton(_("Do not show this dialog again."))
hintMB = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_INFO, gtk.BUTTONS_OK, _("Changed %s") % what)
- hintMB.format_secondary_text(_("Portato will write these changes into the appropriate files.\nPlease backup them if you think it is necessairy."))
+ hintMB.format_secondary_text(_("Portato will write these changes into the appropriate files.\nPlease backup them if you think it is necessary."))
hintMB.vbox.add(check)
hintMB.vbox.show_all()
ret = hintMB.run()