location as predifined name origin type
svn: r16436
This commit is contained in:
@@ -55,6 +55,7 @@ class NameOriginType(GrampsType):
|
|||||||
.. attribute FEUDAL: name refers to the holding of land in a fief
|
.. attribute FEUDAL: name refers to the holding of land in a fief
|
||||||
.. attribute PSEUDONYM: name is fictitious
|
.. attribute PSEUDONYM: name is fictitious
|
||||||
.. attribute OCCUPATION: name follows from the occupation of the person
|
.. attribute OCCUPATION: name follows from the occupation of the person
|
||||||
|
.. attribute LOCATION: name follows from the location of the person
|
||||||
"""
|
"""
|
||||||
|
|
||||||
UNKNOWN = -1
|
UNKNOWN = -1
|
||||||
@@ -70,6 +71,7 @@ class NameOriginType(GrampsType):
|
|||||||
PATRILINEAL= 9
|
PATRILINEAL= 9
|
||||||
MATRILINEAL= 10
|
MATRILINEAL= 10
|
||||||
OCCUPATION = 11
|
OCCUPATION = 11
|
||||||
|
LOCATION = 12
|
||||||
|
|
||||||
_CUSTOM = CUSTOM
|
_CUSTOM = CUSTOM
|
||||||
_DEFAULT = NONE
|
_DEFAULT = NONE
|
||||||
@@ -87,7 +89,8 @@ class NameOriginType(GrampsType):
|
|||||||
(PSEUDONYM , _("Pseudonym"), "Pseudonym"),
|
(PSEUDONYM , _("Pseudonym"), "Pseudonym"),
|
||||||
(PATRILINEAL, _("Patrilineal"), "Patrilineal"),
|
(PATRILINEAL, _("Patrilineal"), "Patrilineal"),
|
||||||
(MATRILINEAL, _("Matrilineal"), "Matrilineal"),
|
(MATRILINEAL, _("Matrilineal"), "Matrilineal"),
|
||||||
(OCCUPATION , _("Occupation"), "Occupation")
|
(OCCUPATION , _("Occupation"), "Occupation"),
|
||||||
|
(LOCATION , _("Location"), "Location"),
|
||||||
]
|
]
|
||||||
|
|
||||||
def __init__(self, value=None):
|
def __init__(self, value=None):
|
||||||
|
Reference in New Issue
Block a user