3292: register plugins, load on need, not on start of GRAMPS - GEPS 014

svn: r13400
This commit is contained in:
Benny Malengier
2009-10-24 13:53:20 +00:00
parent d1fbb2bff9
commit ed619cfdd6
195 changed files with 4123 additions and 3371 deletions

View File

@ -22,7 +22,7 @@
#
from gettext import gettext as _
from DataViews import Gramplet, register
from DataViews import Gramplet
import config
_YIELD_INTERVAL = 350
@ -133,12 +133,3 @@ class GivenNameCloudGramplet(Gramplet):
total_givensubnames)
self.append_text((_("Total given names showing") + ": %d\n") % showing)
self.append_text((_("Total people") + ": %d") % total_people, "begin")
register(type="gramplet",
name= "Given Name Cloud Gramplet",
tname=_("Given Name Cloud Gramplet"),
height=300,
expand=True,
content = GivenNameCloudGramplet,
title=_("Given Name Cloud"),
)