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.
This commit is contained in:
Nick Hall 2023-07-27 18:56:39 +01:00
parent 81c1189141
commit 7b5c381b8f

View File

@ -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"),