Made the autosave recovery message a bit more clear.

svn: r673
This commit is contained in:
Don Allingham 2002-01-01 14:48:20 +00:00
parent 6e63aea498
commit 6ef57ad9f9

View File

@ -533,7 +533,7 @@ def auto_save_load(filename):
autosave = "%s/autosave.gramps" % dirname autosave = "%s/autosave.gramps" % dirname
if os.path.isfile(autosave): if os.path.isfile(autosave):
q = _("An autosave file exists. Should this be loaded instead of the last saved version?") q = _("An autosave file exists for %s.\nShould this be loaded instead of the last saved version?") % dirname
yname = autosave yname = autosave
nname = filename nname = filename
gnome.ui.GnomeQuestionDialog(q,autosave_query) gnome.ui.GnomeQuestionDialog(q,autosave_query)