2006-05-02 Don Allingham <don@gramps-project.org>
* src/Config/_GrampsConfigKeys.py: add family-warn back in * data/gramps.schemas.in: add family-warn back in svn: r6520
This commit is contained in:
parent
77f43f971e
commit
34b9d39076
@ -1,3 +1,7 @@
|
||||
2006-05-02 Don Allingham <don@gramps-project.org>
|
||||
* src/Config/_GrampsConfigKeys.py: add family-warn back in
|
||||
* data/gramps.schemas.in: add family-warn back in
|
||||
|
||||
2006-05-02 Alex Roitman <shura@gramps-project.org>
|
||||
* src/RelLib/_BaseObject.py (PrivacyBase): Remove class, as it
|
||||
already has its own module.
|
||||
|
@ -15,6 +15,18 @@
|
||||
</locale>
|
||||
</schema>
|
||||
|
||||
<schema>
|
||||
<key>/schemas/apps/gramps/preferences/family-warn</key>
|
||||
<applyto>/apps/gramps/preferences/family-warn</applyto>
|
||||
<owner>gramps</owner>
|
||||
<type>bool</type>
|
||||
<default>1</default>
|
||||
<locale name="C">
|
||||
<short>Warn when adding parents in a way that may cause duplicate families.</short>
|
||||
<long>If set to True, a warning dialog will be displayed whenever the user is a risk of creating a duplicate family when adding parents to a person.</long>
|
||||
</locale>
|
||||
</schema>
|
||||
|
||||
<schema>
|
||||
<key>/schemas/apps/gramps/preferences/last-view</key>
|
||||
<applyto>/apps/gramps/preferences/last-view</applyto>
|
||||
|
@ -1,4 +1,5 @@
|
||||
FAMILY_DETAILS = ('preferences','family-details', 0)
|
||||
FAMILY_WARN = ('preferences','family-warn', 0)
|
||||
LAST_VIEW = ('preferences','last-view', 1)
|
||||
FAMILY_SIBLINGS = ('preferences','family-siblings', 0)
|
||||
AUTOLOAD = ('behavior','autoload', 0)
|
||||
@ -47,6 +48,7 @@ WEBSITE_DIRECTORY = ('paths','website-directory', 2)
|
||||
|
||||
default_value = {
|
||||
FAMILY_DETAILS : True,
|
||||
FAMILY_WARN : True,
|
||||
LAST_VIEW : 0,
|
||||
FAMILY_SIBLINGS : True,
|
||||
AUTOLOAD : False,
|
||||
|
Loading…
Reference in New Issue
Block a user