Source code for betty.project.extension.demo.copyright_notice

"""
Copyright notices for the Betty demonstration site.
"""

from typing_extensions import override

from betty.copyright_notice import CopyrightNotice
from betty.locale.localizable import Localizable, static
from betty.plugin import ShorthandPluginBase


[docs] class Streetmix(ShorthandPluginBase, CopyrightNotice): """ The copyright for Streetmix resources. """ _plugin_id = "streetmix" _plugin_label = static("Streetmix LLC") @override @property def summary(self) -> Localizable: return self.plugin_label() @override @property def text(self) -> Localizable: return self.plugin_label() @override @property def url(self) -> Localizable: return static("https://github.com/streetmix/streetmix")