-# 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 collections import Counter
from django.conf import settings
suggestions.append(t)
if sum(suggestion_categories.values()) == 10:
break
- template_name = 'catalogue/2022/author_detail.html'
+ template_name = 'catalogue/author_detail.html'
return render(request, template_name, {
'object_list': pictures,
'title': 'Galeria',
theme_things = split_tags(picture.related_themes())
- template_name = 'picture/2022/picture_detail.html'
+ template_name = 'picture/picture_detail.html'
return render(request, template_name, {
'picture': picture,
"""docstring for import_book"""
from django.http import HttpResponse
from picture.forms import PictureImportForm
- from django.utils.translation import gettext as _
import_form = PictureImportForm(request.POST, request.FILES)
if import_form.is_valid():
info = sys.exc_info()
exception = pprint.pformat(info[1])
tb = '\n'.join(traceback.format_tb(info[2]))
- return HttpResponse(_("An error occurred: %(exception)s\n\n%(tb)s") %
+ return HttpResponse("Wystąpił błąd: %(exception)s\n\n%(tb)s" %
{'exception': exception, 'tb': tb}, content_type='text/plain')
- return HttpResponse(_("Picture imported successfully"))
+ return HttpResponse('Obraz został zimportowany')
else:
- return HttpResponse(_("Error importing file: %r") % import_form.errors)
+ return HttpResponse('Błąd importu pliku: %r' % import_form.errors)