* src/RelLib.py (RepoRef): Typos.

* src/Utils.py: Typos.


svn: r5562
This commit is contained in:
Alex Roitman 2005-12-16 06:03:15 +00:00
parent 7338eb715d
commit 0d1c415391
3 changed files with 5 additions and 3 deletions

View File

@ -7,6 +7,8 @@
* src/GrampsBSDDB.py: go back to a single load function;
finish gramps_upgrade_9.
* src/ViewManager: Go back to the old way of load/upgrade.
* src/RelLib.py (RepoRef): Typos.
* src/Utils.py: Typos.
2005-12-15 Richard Taylor <rjt-gramps@thegrindstone.me.uk>
* src/GrampsBSDDB.py: added delete support for the

View File

@ -4412,7 +4412,7 @@ class RepoRef(BaseObject,NoteBase):
MAP = 9
NEWSPAPER = 10
PHOTO = 11
THOMBSTOBE = 12
TOMBSTONE = 12
VIDEO = 13
def __init__(self,source=None):
@ -4498,7 +4498,7 @@ class Repository(PrimaryObject,NoteBase):
NoteBase.__init__(self)
self.type = (Repository.LIBRARY,"")
self.name = ""
self.address = Location()
self.address = Location() #FIXME: This needs to become address
self.email = ""
self.search_url = ""
self.home_url = ""

View File

@ -196,7 +196,7 @@ source_media_types = {
RelLib.RepoRef.MAP : _("Map"),
RelLib.RepoRef.NEWSPAPER : _("Newspaper"),
RelLib.RepoRef.PHOTO : _("Photo"),
RelLib.RepoRef.THOMBSTOBE : _("Thombstone"),
RelLib.RepoRef.TOMBSTONE : _("Tombstone"),
RelLib.RepoRef.VIDEO : _("Video"),
}