Fundraising in PDF.
[wolnelektury.git] / src / funding / __init__.py
index 9e81e9e..814c964 100644 (file)
@@ -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')