X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ae60b2a3949e96357477cc04f90fd0873cee8a92..18aa8ca52202003e5628a882f3469a04d905cc05:/src/funding/__init__.py diff --git a/src/funding/__init__.py b/src/funding/__init__.py index 9e81e9ec3..814c964bf 100644 --- a/src/funding/__init__.py +++ b/src/funding/__init__.py @@ -1,6 +1,5 @@ -# -*- coding: utf-8 -*- -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # from django.conf import settings as settings from catalogue.utils import AppSettings @@ -8,10 +7,11 @@ from catalogue.utils import AppSettings class Settings(AppSettings): """Default settings for funding app.""" - DEFAULT_LANGUAGE = u'pl' + DEFAULT_LANGUAGE = 'pl' DEFAULT_AMOUNT = 20 MIN_AMOUNT = 1 DAYS_NEAR = 2 + PAYU_POS = '300746' app_settings = Settings('FUNDING')