diff --git a/gramps/gui/configure.py b/gramps/gui/configure.py index d16f5f4a4..0a71b6ffe 100644 --- a/gramps/gui/configure.py +++ b/gramps/gui/configure.py @@ -104,25 +104,23 @@ class DisplayNameEditor(ManagedWindow): buttons=(_('_Close'), Gtk.ResponseType.CLOSE)), None, _('Display Name Editor'), None) grid = self.dialog._build_custom_name_ui() - label = Gtk.Label(label=_("""The following keywords are replaced with the appropriate name parts: - - Given - given name (first name) Surname - surnames (with prefix and connectors) - Title - title (Dr., Mrs.) Suffix - suffix (Jr., Sr.) - Call - call name Nickname - nick name - Initials - first letters of Given Common - nick name, otherwise first of Given + label = Gtk.Label(label=_("""The following keywords are replaced with the appropriate name parts: + Given - given name (first name) Surname - surnames (with prefix and connectors) + Title - title (Dr., Mrs.) Suffix - suffix (Jr., Sr.) + Call - call name Nickname - nick name + Initials- first letters of given Common - nick name, call, or first of given + Prefix - all prefixes (von, de) +Surnames: + Rest - non primary surnames Notpatronymic- all surnames, except pa/matronymic & primary + Familynick- family nick name Rawsurnames - surnames (no prefixes and connectors) Primary, Primary[pre] or [sur] or [con]- full primary surname, prefix, surname only, connector Patronymic, or [pre] or [sur] or [con] - full pa/matronymic surname, prefix, surname only, connector - Familynick - family nick name Prefix - all prefixes (von, de) - Rest - non primary surnames Notpatronymic- all surnames, except pa/matronymic & primary - Rawsurnames- surnames (no prefixes and connectors) - UPPERCASE keyword forces uppercase. Extra parentheses, commas are removed. Other text appears literally. -Example: 'Dr. Edwin Jose von der Smith and Weston Wilson Sr ("Ed") - Underhills' - Edwin Jose is given name, von der is the prefix, Smith and Weston surnames, - and a connector, Wilson patronymic surname, Dr. title, Sr suffix, Ed nick name, - Underhills family nick name, Jose callname. +Example: Dr. Edwin Jose von der Smith and Weston Wilson Sr ("Ed") - Underhills + Edwin Jose: Given, von der: Prefix, Smith and Weston: Primary, and: [con], Wilson: Patronymic, + Dr.: Title, Sr: Suffix, Ed: Nickname, Underhills: Familynick, Jose: Call. """)) label.set_use_markup(True) self.window.vbox.pack_start(label, False, True, 0)