1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 from django.conf import settings as settings
5 from catalogue.utils import AppSettings
8 class Settings(AppSettings):
9 """Default settings for funding app."""
10 DEFAULT_LANGUAGE = 'pl'
16 app_settings = Settings('FUNDING')