Skip to content

Commit

Permalink
Tidy up strings in preferences
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-Hall committed Aug 11, 2023
1 parent d12cd76 commit 3c643ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gramps/gui/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -1596,9 +1596,9 @@ def add_data_panel(self, configdialog):
# Birthday on february 29
feb29 = Gtk.ComboBoxText()
show_on = [
_("on the previous day"),
_("on the next day"),
_("only on leap years"),
_("On the previous day"),
_("On the next day"),
_("Only on leap years"),
]
list(map(feb29.append_text, show_on))
active = config.get("preferences.february-29")
Expand All @@ -1609,7 +1609,7 @@ def add_data_panel(self, configdialog):
"February 28, March 1 or not at all in Gregorian calendars"
)
feb29.set_tooltip_text(ttip)
lwidget = BasicLabel(_("Show leap day anniversaries"))
lwidget = BasicLabel(_("%s: ") % _("Show leap day anniversaries"))
grid.attach(lwidget, 1, row, 1, 1)
grid.attach(feb29, 2, row, 2, 1)

Expand Down

0 comments on commit 3c643ff

Please sign in to comment.