From 7b5c381b8ff4020d692a55b42f0cba38e9a5c180 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Thu, 27 Jul 2023 18:56:39 +0100 Subject: [PATCH] Add new note type of "Analysis" This is intended to be used for notes that contain all types of analysis conducted by the researcher. Examples include proof arguments and the analysis of evidence. --- gramps/gen/lib/notetype.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gramps/gen/lib/notetype.py b/gramps/gen/lib/notetype.py index 7cef15989..12422ad11 100644 --- a/gramps/gen/lib/notetype.py +++ b/gramps/gen/lib/notetype.py @@ -65,6 +65,7 @@ class NoteType(GrampsType): TODO = 25 # indicate a note used as link in another note LINK = 26 + ANALYSIS = 27 _CUSTOM = CUSTOM _DEFAULT = GENERAL @@ -74,6 +75,7 @@ class NoteType(GrampsType): (CUSTOM, _("Custom"), "Custom"), (GENERAL, _("General"), "General"), (RESEARCH, _("Research"), "Research"), + (ANALYSIS, _("Analysis"), "Analysis"), (TRANSCRIPT, _("Transcript"), "Transcript"), (SOURCE_TEXT, _("Source text"), "Source text"), (CITATION, _('Citation'), "Citation"),