# Gramps - a GTK+/GNOME based genealogy program # # Copyright (C) 2007-2009 Douglas S. Blank # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # $Id$ #------------------------------------------------------------------------ # # GRAMPS modules # #------------------------------------------------------------------------ from gen.plug import Gramplet from gen.ggettext import sgettext as _ #------------------------------------------------------------------------ # # Register Gramplet # #------------------------------------------------------------------------ class FAQGramplet(Gramplet): def init(self): self.set_use_markup(True) self.clear_text() self.render_text(_("Frequently Asked Questions (need connection to internet)\n\n")) self.render_text(_(" 1. How do I change the order of spouses?\n")) self.render_text(_(" 2. Is it necessary to update Gramps every time an update is released?\n")) self.render_text(_(" 3. How do I make backups safely?\n")) self.render_text(_(" 4. How should information about marriages be entered?\n")) self.render_text(_(" 5. What's the difference between a residence and an address?\n")) self.render_text(_(" 6. How can I make a website with Gramps and my tree?\n")) self.render_text(_(" 7. How do I record one's occupation?\n")) self.render_text(_(" 8. What do I do if I have found a bug?\n")) self.render_text(_(" 9. Is there a manual for Gramps?\n")) self.render_text(_(" 10. Are there tutorials available?\n")) self.render_text(_(" 11. How do I ...?\n")) self.render_text(_(" 12. How can I help with Gramps?\n")) def post_init(self): self.disconnect("active-changed")