String improvements
* Replace outdated backronym with program description * Improve clarity and punctuation of message
This commit is contained in:
@ -248,9 +248,8 @@ GTK_GETTEXT_DOMAIN = "gtk30"
|
|||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
COPYRIGHT_MSG = "© 2001-2006 Donald N. Allingham\n" "© 2007-2023 The Gramps Developers"
|
COPYRIGHT_MSG = "© 2001-2006 Donald N. Allingham\n" "© 2007-2023 The Gramps Developers"
|
||||||
COMMENTS = _(
|
COMMENTS = _(
|
||||||
"Gramps\n (Genealogical Research and Analysis "
|
"Gramps is a genealogy program that is both intuitive for hobbyists "
|
||||||
"Management Programming System)\n"
|
"and feature-complete for professional genealogists."
|
||||||
"is a personal genealogy program."
|
|
||||||
)
|
)
|
||||||
AUTHORS = [
|
AUTHORS = [
|
||||||
"Alexander Roitman",
|
"Alexander Roitman",
|
||||||
|
@ -1283,7 +1283,10 @@ class ViewManager(CLIManager):
|
|||||||
and self.dbstate.db.has_changed > self.prev_has_changed
|
and self.dbstate.db.has_changed > self.prev_has_changed
|
||||||
):
|
):
|
||||||
self.prev_has_changed = self.dbstate.db.has_changed
|
self.prev_has_changed = self.dbstate.db.has_changed
|
||||||
message = _("Please, wait before closing gramps")
|
message = _(
|
||||||
|
"Please wait for backup in progress.\n"
|
||||||
|
"Gramps will close when complete."
|
||||||
|
)
|
||||||
message = '<span size="larger" weight="bold">%s</span>' % message
|
message = '<span size="larger" weight="bold">%s</span>' % message
|
||||||
pgr_title = _("Autobackup...")
|
pgr_title = _("Autobackup...")
|
||||||
popup = Popup(pgr_title, message, parent=self.window)
|
popup = Popup(pgr_title, message, parent=self.window)
|
||||||
@ -1901,7 +1904,10 @@ class QuickBackup(ManagedWindow): # TODO move this class into its own module
|
|||||||
position = self.window.get_position() # crock
|
position = self.window.get_position() # crock
|
||||||
window.hide()
|
window.hide()
|
||||||
self.window.move(position[0], position[1])
|
self.window.move(position[0], position[1])
|
||||||
message = _("Please, wait before closing gramps")
|
message = _(
|
||||||
|
"Please wait for backup in progress.\n"
|
||||||
|
"Gramps will close when complete."
|
||||||
|
)
|
||||||
message = '<span size="larger" weight="bold">%s</span>' % message
|
message = '<span size="larger" weight="bold">%s</span>' % message
|
||||||
pgr_title = _("Making backup...")
|
pgr_title = _("Making backup...")
|
||||||
popup = Popup(pgr_title, message, parent=self.window)
|
popup = Popup(pgr_title, message, parent=self.window)
|
||||||
|
Reference in New Issue
Block a user