<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
# Copyright Â© Fundacja Wolne Lektury. See NOTICE for more information.
#

from modeltranslation.translator import translator, TranslationOptions
from . import models


class NewsletterTranslationOptions(TranslationOptions):
    fields = ['page_title']


translator.register(models.Newsletter, NewsletterTranslationOptions)
</pre></body></html>