48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
# encoding:utf-8
|
|
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2024
|
|
#
|
|
# 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, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
from gramps.gen.plug._pluginreg import register, VIEW, STABLE
|
|
from gramps.gen.const import GRAMPS_LOCALE as glocale
|
|
|
|
_ = glocale.translation.gettext
|
|
|
|
MODULE_VERSION = "5.1"
|
|
|
|
# ------------------------------------------------------------------------
|
|
#
|
|
# MyTimeline View
|
|
#
|
|
# ------------------------------------------------------------------------
|
|
|
|
register(
|
|
VIEW,
|
|
id="mytimelineview",
|
|
name=_("MyTimeline"),
|
|
description=_("A vertical timeline view showing family events including birth, death, and marriage"),
|
|
version="1.0",
|
|
gramps_target_version=MODULE_VERSION,
|
|
status=STABLE,
|
|
fname="MyTimeline.py",
|
|
authors=["MyTimeline Plugin"],
|
|
authors_email=[""],
|
|
category=("Families", _("Families")),
|
|
viewclass="MyTimelineView",
|
|
)
|
|
|