From: Radek Czajka Date: Wed, 7 Nov 2012 09:03:53 +0000 (+0100) Subject: change form X-Git-Url: https://git.mdrn.pl/prawokultury.git/commitdiff_plain/de60c4eaab116232ff6d1be0ede6bc18fc1c86d8 change form --- diff --git a/prawokultury/contact_forms.py b/prawokultury/contact_forms.py index 82fd47a..2021be7 100644 --- a/prawokultury/contact_forms.py +++ b/prawokultury/contact_forms.py @@ -6,18 +6,18 @@ from django.utils.translation import ugettext_lazy as _ class RegistrationForm(ContactForm): form_tag = 'register' - form_title = _('Registration form') + form_title = _('Take part!') name = forms.CharField(label=_('Name'), max_length=128) contact = forms.EmailField(label=_('E-mail'), max_length=128) organization = forms.CharField(label=_('Organization'), max_length=256, required=False) title = forms.CharField(label=_('Title of presentation'), - max_length=256) + max_length=256, required=False) presentation = forms.FileField(label=_('Presentation'), required=False) summary = forms.CharField(label=_('Summary of presentation (max. 1800 characters)'), - widget=forms.Textarea, max_length=1800) + widget=forms.Textarea, max_length=1800, required=False) agree_data = forms.BooleanField( label=_('Permission for data processing'), help_text=_(u'I hereby grant Modern Poland Foundation (Fundacja Nowoczesna Polska, ul. Marszałkowska 84/92, 00-514 Warszawa) permission to process my personal data (name, e-mail address) for purposes of registration for CopyCamp conference.') diff --git a/prawokultury/locale/pl/LC_MESSAGES/django.mo b/prawokultury/locale/pl/LC_MESSAGES/django.mo index ae6b7aa..32dd74c 100644 Binary files a/prawokultury/locale/pl/LC_MESSAGES/django.mo and b/prawokultury/locale/pl/LC_MESSAGES/django.mo differ diff --git a/prawokultury/locale/pl/LC_MESSAGES/django.po b/prawokultury/locale/pl/LC_MESSAGES/django.po index fae4be2..635a88d 100644 --- a/prawokultury/locale/pl/LC_MESSAGES/django.po +++ b/prawokultury/locale/pl/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: prawokultury\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-23 11:55+0200\n" -"PO-Revision-Date: 2012-10-23 11:56+0100\n" +"POT-Creation-Date: 2012-11-07 09:55+0100\n" +"PO-Revision-Date: 2012-11-07 09:57+0100\n" "Last-Translator: Radek Czajka \n" "Language-Team: FNP \n" "Language: \n" @@ -18,8 +18,9 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" #: contact_forms.py:9 -msgid "Registration form" -msgstr "Formularz rejestracyjny" +#: menu_items.py:22 +msgid "Take part!" +msgstr "Weź udział!" #: contact_forms.py:11 msgid "Name" @@ -61,10 +62,6 @@ msgstr "Zgoda na publikację" msgid "I agree to having materials recorded during the conference released under the terms of CC BY-SA license." msgstr "Wyrażam zgodę na publikację materiałów zarejestrowanych na konferencji na licencji CC BY-SA." -#: menu_items.py:22 -msgid "Registration" -msgstr "Rejestracja" - #: templates/404.html:5 #: templates/404.html.py:10 msgid "Page not found" @@ -86,6 +83,12 @@ msgstr "Szukaj" msgid "If not explicitly stated otherwise, all texts are licensed under the Creative Commons Attribution-Share Alike free license." msgstr "Jeśli nie oznaczono inaczej, wszystkie teksty są objęte wolną licencją Creative Commons Uznanie autorstwa – Na tych samych warunkach." +#~ msgid "Registration form" +#~ msgstr "Formularz rejestracyjny" + +#~ msgid "Registration" +#~ msgstr "Rejestracja" + #~ msgid "Summary" #~ msgstr "Podsumowanie prezentacji" diff --git a/prawokultury/menu_items.py b/prawokultury/menu_items.py index 5fa4298..eeb559d 100644 --- a/prawokultury/menu_items.py +++ b/prawokultury/menu_items.py @@ -19,6 +19,6 @@ add_entry(slug_pl='co') add_entry(slug_pl='gdzie') add_entry(slug_pl='program') add_entry(slug_pl='media') -ITEMS.append(MenuItem(reverse_lazy('contact_form', args=['register']), _('Registration'))) +ITEMS.append(MenuItem(reverse_lazy('contact_form', args=['register']), _('Take part!'))) add_entry(slug_pl='materialy') add_entry(slug_pl='kontakt')