diff --git a/gramps/gui/glade/editcitation.glade b/gramps/gui/glade/editcitation.glade
index 4f8d0fa03..9d76da4a3 100644
--- a/gramps/gui/glade/editcitation.glade
+++ b/gramps/gui/glade/editcitation.glade
@@ -199,10 +199,10 @@
True
False
Conveys the submitter's quantitative evaluation of the credibility of a piece of information, based upon its supporting evidence. It is not intended to eliminate the receiver's need to evaluate the evidence for themselves.
-Very Low =Unreliable evidence or estimated data
-Low =Questionable reliability of evidence (interviews, census, oral genealogies, or potential for bias for example, an autobiography)
-High =Secondary evidence, data officially recorded sometime after event
-Very High =Direct and primary evidence used, or by dominance of the evidence
+/Very Low =Unreliable evidence or estimated data.
+/Low =Questionable reliability of evidence (interviews, census, oral genealogies, or potential for bias for example, an autobiography).
+/High =Secondary evidence, data officially recorded sometime after event.
+/Very High =Direct and primary evidence used, or by dominance of the evidence.
True
confidence_model
diff --git a/gramps/gui/views/treemodels/citationbasemodel.py b/gramps/gui/views/treemodels/citationbasemodel.py
index 10c953306..cc626fe1d 100644
--- a/gramps/gui/views/treemodels/citationbasemodel.py
+++ b/gramps/gui/views/treemodels/citationbasemodel.py
@@ -114,6 +114,11 @@ class CitationBaseModel:
def citation_page(self, data):
return data[COLUMN_PAGE]
+ def citation_sort_confidence(self, data):
+ if data[COLUMN_CONFIDENCE]:
+ return str(data[COLUMN_CONFIDENCE])
+ return ''
+
def citation_confidence(self, data):
return _(conf_strings[data[COLUMN_CONFIDENCE]])
diff --git a/gramps/gui/views/treemodels/citationlistmodel.py b/gramps/gui/views/treemodels/citationlistmodel.py
index e8b0e01a7..a028509e1 100644
--- a/gramps/gui/views/treemodels/citationlistmodel.py
+++ b/gramps/gui/views/treemodels/citationlistmodel.py
@@ -81,7 +81,7 @@ class CitationListModel(CitationBaseModel, FlatBaseModel):
self.citation_page,
self.citation_id,
self.citation_sort_date,
- self.citation_confidence,
+ self.citation_sort_confidence,
self.citation_private,
self.citation_tags,
self.citation_sort_change,
diff --git a/gramps/gui/views/treemodels/citationtreemodel.py b/gramps/gui/views/treemodels/citationtreemodel.py
index 770f50bde..bd1008337 100644
--- a/gramps/gui/views/treemodels/citationtreemodel.py
+++ b/gramps/gui/views/treemodels/citationtreemodel.py
@@ -147,7 +147,7 @@ class CitationTreeModel(CitationBaseModel, TreeBaseModel):
self.citation_page,
self.citation_id,
self.citation_sort_date,
- self.citation_confidence,
+ self.citation_sort_confidence,
self.citation_private,
self.citation_tags,
self.citation_sort_change,