diff --git a/gramps2/doc/gramps-manual/C/figures/edit-ad.png b/gramps2/doc/gramps-manual/C/figures/edit-ad.png
index da649b8bd..341233b09 100644
Binary files a/gramps2/doc/gramps-manual/C/figures/edit-ad.png and b/gramps2/doc/gramps-manual/C/figures/edit-ad.png differ
diff --git a/gramps2/doc/gramps-manual/C/figures/edit-at.png b/gramps2/doc/gramps-manual/C/figures/edit-at.png
index 177d95eaa..366eac5df 100644
Binary files a/gramps2/doc/gramps-manual/C/figures/edit-at.png and b/gramps2/doc/gramps-manual/C/figures/edit-at.png differ
diff --git a/gramps2/doc/gramps-manual/C/figures/edit-wi.png b/gramps2/doc/gramps-manual/C/figures/edit-wi.png
index 4b8725c75..b2918ebfa 100644
Binary files a/gramps2/doc/gramps-manual/C/figures/edit-wi.png and b/gramps2/doc/gramps-manual/C/figures/edit-wi.png differ
diff --git a/gramps2/doc/gramps-manual/C/usage.xml b/gramps2/doc/gramps-manual/C/usage.xml
index a8b058c33..9d4e70c77 100644
--- a/gramps2/doc/gramps-manual/C/usage.xml
+++ b/gramps2/doc/gramps-manual/C/usage.xml
@@ -2187,11 +2187,12 @@ all changes are immediate.
Cancel button at any time will close the window without
applying any changes.
-
+
The tab labels reflect the presence of corresponding information: if the
tab contains any data, its label appears boldface; if the tab has no data
- then its label appears regular (not bold).
- The tabs provide the following information categories of
+ then its label appears regular (not bold).
+
+ The tabs provide the following information categories of
the attribute data:
@@ -2215,11 +2216,11 @@ all changes are immediate.
Sources tab displays information about sources
relevant to this attribute and controls allowing its modification.
The central part displays the list of all such sources references
- stored in the database. The buttons Add...,
- Edit..., and Delete
+ stored in the database. The buttons +,
+ Edit, and -
allow you to correspondingly add, modify, and remove a source reference
- to this attribute. Note that the Edit... and
- Delete buttons become available only when
+ to this attribute. Note that the Edit and
+ - buttons become available only when
a source reference is selected from the list.
@@ -2274,11 +2275,12 @@ all changes are immediate.
Cancel button at any time will close the window without
applying any changes.
-
+
The tab labels reflect the presence of corresponding information: if the
tab contains any data, its label appears boldface; if the tab has no data
- then its label appears regular (not bold).
- The tabs provide the following information categories of
+ then its label appears regular (not bold).
+
+ The tabs provide the following information categories of
the address data:
@@ -2302,11 +2304,11 @@ all changes are immediate.
Sources tab displays information about sources
relevant to this address and controls allowing its modification.
The central part displays the list of all such sources references
- stored in the database. The buttons Add...,
- Edit..., and Delete
+ stored in the database. The buttons +,
+ Edit, and -
allow you to correspondingly add, modify, and remove a source reference
- to this address. Note that the Edit... and
- Delete buttons become available only when
+ to this address. Note that the Edit and
+ - buttons become available only when
a source reference is selected from the list.
@@ -2361,6 +2363,10 @@ all changes are immediate.
The witness name can be entered in two ways, depending upon
whether the witness is a person already stored in the database or
not (unrelated person).
+
+ If the person you would like to add as a wittness is in fact
+ a member of the database, it is better to use the first method below.
+
Person from the database
@@ -2371,10 +2377,12 @@ all changes are immediate.
Person dialog. Choose the person from that dialog and
click the OK button. The Person
text field will display the name of the person you selected.
- Note: even though the person's name is displayed in the
+
+
+ Even though the person's name is displayed in the
Person field, it is not available for direct
- editing.
-
+ editing.
+
diff --git a/gramps2/src/AddrEdit.py b/gramps2/src/AddrEdit.py
index 4d1308d8c..99c84d4c9 100644
--- a/gramps2/src/AddrEdit.py
+++ b/gramps2/src/AddrEdit.py
@@ -187,7 +187,7 @@ class AddressEditor:
def on_help_clicked(self,obj):
"""Display the relevant portion of GRAMPS manual"""
- gnome.help_display('gramps-manual','gramps-edit-complete')
+ gnome.help_display('gramps-manual','adv-ad')
def ok_clicked(self,obj):
"""
diff --git a/gramps2/src/AttrEdit.py b/gramps2/src/AttrEdit.py
index d2f761f0e..6b8c2d1fc 100644
--- a/gramps2/src/AttrEdit.py
+++ b/gramps2/src/AttrEdit.py
@@ -194,7 +194,7 @@ class AttributeEditor:
def on_help_clicked(self,obj):
"""Display the relevant portion of GRAMPS manual"""
- gnome.help_display('gramps-manual','gramps-edit-complete')
+ gnome.help_display('gramps-manual','adv-at')
def on_ok_clicked(self,obj):
"""
diff --git a/gramps2/src/Witness.py b/gramps2/src/Witness.py
index d8f2abc4f..1d0fc2b4a 100644
--- a/gramps2/src/Witness.py
+++ b/gramps2/src/Witness.py
@@ -204,7 +204,7 @@ class WitnessEditor:
def on_help_clicked(self,obj):
"""Display the relevant portion of GRAMPS manual"""
- gnome.help_display('gramps-manual','gramps-edit-complete')
+ gnome.help_display('gramps-manual','adv-wit')
def choose(self,obj):
import SelectPerson