From: Jan Szejko Date: Thu, 22 Sep 2016 11:35:00 +0000 (+0200) Subject: update registration form X-Git-Url: https://git.mdrn.pl/prawokultury.git/commitdiff_plain/295dde537cc113a8261a25278c42ae5dad53784e update registration form --- diff --git a/prawokultury/contact_forms.py b/prawokultury/contact_forms.py index 798c921..5a48c7e 100644 --- a/prawokultury/contact_forms.py +++ b/prawokultury/contact_forms.py @@ -30,13 +30,13 @@ class RegistrationForm(ContactForm): max_length=256, required=False) country = forms.CharField(label=_('Country'), max_length=128) - # days = forms.ChoiceField( - # label = _("I'm planning to show up on"), - # choices=[ - # ('both', _('Both days of the conference')), - # ('only-6th', _('November 6th only')), - # ('only-7th', _('November 7th only')), - # ], widget=forms.RadioSelect()) + days = forms.ChoiceField( + label=_("I'm planning to show up on"), + choices=[ + ('both', _('Both days of the conference')), + ('only-27th', _('October 27th only')), + ('only-28th', _('October 28th only')), + ], widget=forms.RadioSelect()) # ankieta times_attended = forms.ChoiceField( @@ -53,22 +53,22 @@ class RegistrationForm(ContactForm): required=False, label=_("2. Please indicate your age bracket:"), choices=[ - ('0-19', _('19 or below')), - ('20-25', _('20-25')), - ('26-35', _('26-35')), - ('36-45', _('36-45')), - ('46-55', _('46-55')), - ('56-65', _('56-65')), - ('66+', _('66 or above')), + ('0-19', _('19 or below')), + ('20-25', _('20-25')), + ('26-35', _('26-35')), + ('36-45', _('36-45')), + ('46-55', _('46-55')), + ('56-65', _('56-65')), + ('66+', _('66 or above')), ], widget=forms.RadioSelect()) distance = forms.ChoiceField( required=False, label=_("3. How far will you travel to attend CopyCamp?"), choices=[ - ('0-50', _('0-50 km')), - ('51-100', _('51-100 km')), - ('101-200', _('101-200 km')), - ('200+', _('200 km or more')), + ('0-50', _('0-50 km')), + ('51-100', _('51-100 km')), + ('101-200', _('101-200 km')), + ('200+', _('200 km or more')), ], widget=forms.RadioSelect()) areas = forms.MultipleChoiceField( required=False, @@ -97,20 +97,22 @@ class RegistrationForm(ContactForm): required=False, label=_("5. Please indicate how you received information about the conference:"), choices=[ - ('znajomi', _('through friends sharing on the web')), - ('fnp', _('directly through the Foundation\'s facebook or website')), - ('www', _('through other websites (please specify below)')), - ('other', _('other (please specify below)')), + ('znajomi', _('through friends sharing on the web')), + ('znajomi2', _('through friends by other means')), + ('prasa', _('through press')), + ('fnp', _('directly through the Foundation\'s facebook or website')), + ('www', _('through other websites (please specify below)')), + ('other', _('other (please specify below)')), ], widget=forms.RadioSelect()) source_other = forms.CharField(required=False, label=_('Fill if you selected “other” or “other website” above')) motivation = forms.ChoiceField( required=False, label=_("6. Please indicate the most important factor for your willingness to participate:"), choices=[ - ('idea', _('the main idea of the conference')), - ('speaker', _('particular speaker(s)')), - ('networking', _('good networking occasion')), - ('other', _('other (please specify below)')), + ('idea', _('the main idea of the conference')), + ('speaker', _('particular speaker(s)')), + ('networking', _('good networking occasion')), + ('other', _('other (please specify below)')), ], widget=forms.RadioSelect()) motivation_other = forms.CharField(required=False, label=_('Fill if you selected “other” above')) @@ -148,7 +150,7 @@ class RegistrationForm(ContactForm): return data def main_fields(self): - return [self[name] for name in ('first_name', 'last_name', 'contact', 'organization', 'country')] + return [self[name] for name in ('first_name', 'last_name', 'contact', 'organization', 'country', 'days')] def survey_fields(self): return [self[name] for name in ( diff --git a/prawokultury/locale/pl/LC_MESSAGES/django.mo b/prawokultury/locale/pl/LC_MESSAGES/django.mo index 50cb7da..d5f11cc 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 fff03ab..2b19477 100644 --- a/prawokultury/locale/pl/LC_MESSAGES/django.po +++ b/prawokultury/locale/pl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: prawokultury\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-20 10:51+0200\n" +"POT-Creation-Date: 2016-09-22 13:21+0200\n" "PO-Revision-Date: 2014-09-30 16:25+0100\n" "Last-Translator: Radek Czajka \n" "Language-Team: FNP \n" @@ -31,11 +31,11 @@ msgstr "Imię" msgid "Last name" msgstr "Nazwisko" -#: contact_forms.py:28 contact_forms.py:267 contact_forms.py:279 +#: contact_forms.py:28 contact_forms.py:269 contact_forms.py:281 msgid "E-mail" msgstr "E-mail" -#: contact_forms.py:29 contact_forms.py:268 contact_forms.py:280 +#: contact_forms.py:29 contact_forms.py:270 contact_forms.py:282 msgid "Organization" msgstr "Organizacja" @@ -43,6 +43,22 @@ msgstr "Organizacja" msgid "Country" msgstr "Kraj" +#: contact_forms.py:34 +msgid "I'm planning to show up on" +msgstr "Planuję pojawić się" + +#: contact_forms.py:36 +msgid "Both days of the conference" +msgstr "na obu dniach konferencji" + +#: contact_forms.py:37 +msgid "October 27th only" +msgstr "tylko 27 października" + +#: contact_forms.py:38 +msgid "October 28th only" +msgstr "tylko 28 października" + #: contact_forms.py:44 msgid "1. How many times have you attended CopyCamp?" msgstr "1. W CopyCamp brałam(em) udział:" @@ -101,7 +117,7 @@ msgstr "66 lub więcej" #: contact_forms.py:66 msgid "3. How far will you travel to attend CopyCamp?" -msgstr "3. Aby dołączyć na CopyCamp przejadę:" +msgstr "3. Aby wziąć udział w CopyCampie przejadę:" #: contact_forms.py:68 msgid "0-50 km" @@ -122,7 +138,8 @@ msgstr "200 km lub więcej" #: contact_forms.py:75 msgid "4. Please indicate up to 3 areas you feel most affiliated with" msgstr "" -"4. Obszary, z którymi czuję się najbardziej związana(y), do trzech wyborów:" +"4. Obszary, z którymi czuję najbardziej związana/y to (zaznacz maksymalnie " +"trzy):" #: contact_forms.py:77 msgid "visual art" @@ -188,11 +205,11 @@ msgstr "administracja publiczna" msgid "nonprofit organisations" msgstr "organizacja pozarządowa" -#: contact_forms.py:93 contact_forms.py:103 contact_forms.py:113 +#: contact_forms.py:93 contact_forms.py:105 contact_forms.py:115 msgid "other (please specify below)" msgstr "inne (wpisz poniżej)" -#: contact_forms.py:95 contact_forms.py:115 +#: contact_forms.py:95 contact_forms.py:117 msgid "Fill if you selected “other” above" msgstr "Wypełnij, jeśli powyżej wybrałaś(eś) „inne”" @@ -205,18 +222,26 @@ msgid "through friends sharing on the web" msgstr "przez znajomych w sieciach społecznościowych" #: contact_forms.py:101 +msgid "through friends by other means" +msgstr "przez znajomych inną drogą" + +#: contact_forms.py:102 +msgid "through press" +msgstr "prasa" + +#: contact_forms.py:103 msgid "directly through the Foundation's facebook or website" msgstr "informacja na stronie internetowej/facebooku Fundacji" -#: contact_forms.py:102 +#: contact_forms.py:104 msgid "through other websites (please specify below)" msgstr "informacja na innej stronie internetowej (wpisz poniżej)" -#: contact_forms.py:105 +#: contact_forms.py:107 msgid "Fill if you selected “other” or “other website” above" msgstr "Wypełnij, jeśli wybrałaś(eś) powyżej „inne” lub „inna strona”" -#: contact_forms.py:108 +#: contact_forms.py:110 msgid "" "6. Please indicate the most important factor for your willingness to " "participate:" @@ -224,19 +249,19 @@ msgstr "" "6. Do rejestracji i chęci uczestniczenia w CopyCampie skłoniła mnie w " "największym stopniu:" -#: contact_forms.py:110 +#: contact_forms.py:112 msgid "the main idea of the conference" msgstr "idea konferencji" -#: contact_forms.py:111 +#: contact_forms.py:113 msgid "particular speaker(s)" msgstr "konkretna(y) prelegentka(ent)" -#: contact_forms.py:112 +#: contact_forms.py:114 msgid "good networking occasion" msgstr "możliwość networkingu" -#: contact_forms.py:118 +#: contact_forms.py:120 msgid "" "I am interested in receiving information about the Modern Poland " "Foundation's activities by e-mail" @@ -244,11 +269,11 @@ msgstr "" "Jestem zainteresowana/y otrzymywaniem drogą mailową informacji dotyczących " "działalności Fundacji Nowoczesna Polska" -#: contact_forms.py:122 contact_forms.py:308 +#: contact_forms.py:124 contact_forms.py:310 msgid "Permission for data processing" msgstr "Zgoda na przetwarzanie danych" -#: contact_forms.py:123 contact_forms.py:309 +#: contact_forms.py:125 contact_forms.py:311 msgid "" "I hereby grant Modern Poland Foundation (Fundacja Nowoczesna Polska, ul. " "Marszałkowska 84/92, 00-514 Warszawa) permission to process my personal data " @@ -258,11 +283,11 @@ msgstr "" "poczty elektronicznej) przez Fundację Nowoczesna Polska (ul. Marszałkowska " "84/92, 00-514 Warszawa) w związku z rejestracją na konferencję CopyCamp." -#: contact_forms.py:126 contact_forms.py:312 +#: contact_forms.py:128 contact_forms.py:314 msgid "Permission for publication" msgstr "Zgoda na publikację" -#: contact_forms.py:127 contact_forms.py:313 +#: contact_forms.py:129 contact_forms.py:315 msgid "" "I agree to having materials, recorded during the conference, released under " "the terms of CC BY-SA oraz rozpowszechnianie wizerunku." -#: contact_forms.py:139 +#: contact_forms.py:141 #, python-format msgid "I accept Terms and Conditions of CopyCamp" msgstr "Akceptuję Regulamin CopyCampu" -#: contact_forms.py:147 +#: contact_forms.py:149 msgid "Select at most 3 areas" msgstr "Wybierz najwyżej 3 obszary" -#: contact_forms.py:163 +#: contact_forms.py:165 msgid "Copyright and Art" msgstr "Prawo autorskie i sztuka" -#: contact_forms.py:164 +#: contact_forms.py:166 msgid "Remuneration Models" msgstr "Modele wynagradzania" -#: contact_forms.py:165 +#: contact_forms.py:167 msgid "Copyright, Education and Science" msgstr "Prawo autorskie, edukacja i nauka" -#: contact_forms.py:166 +#: contact_forms.py:168 msgid "Technology, Innovation and Copyright" msgstr "Technologie, innowacje i prawo autorskie" -#: contact_forms.py:167 +#: contact_forms.py:169 msgid "Copyright and Human Rights" msgstr "Prawo autorskie i prawa człowieka" -#: contact_forms.py:168 +#: contact_forms.py:170 msgid "Copyright Enforcement" msgstr "Egzekwowanie prawa autorskiego" -#: contact_forms.py:169 +#: contact_forms.py:171 msgid "Copyright Debate" msgstr "Język debaty prawnoautorskiej" -#: contact_forms.py:170 +#: contact_forms.py:172 msgid "Copyright Lawmaking" msgstr "Tworzenie prawa autorskiego" -#: contact_forms.py:177 +#: contact_forms.py:179 msgid "Open call for presentations" msgstr "Otwarty nabór prezentacji" -#: contact_forms.py:180 +#: contact_forms.py:182 msgid "Please select one thematic track" msgstr "Wybierz jedną ścieżkę tematyczną" -#: contact_forms.py:184 +#: contact_forms.py:186 msgid "" "Short biographical note in Polish (max. 500 characters, fill at " "least one bio)" msgstr "Krótka notka biograficzna po polsku (maks. 500 znaków)" -#: contact_forms.py:186 +#: contact_forms.py:188 msgid "Short biographical note in English (max. 500 characters)" msgstr "" "Krótka notka biograficzna po angielsku (maks. 500 znaków; wypełnij " "przynajmniej jedną wersję językową, najlepiej obie)" -#: contact_forms.py:188 +#: contact_forms.py:190 msgid "Photo" msgstr "Zdjęcie" -#: contact_forms.py:189 +#: contact_forms.py:191 msgid "Phone number" msgstr "Numer telefonu" -#: contact_forms.py:191 +#: contact_forms.py:193 msgid "Used only for organizational purposes." msgstr "Używany wyłącznie do celów organizacyjnych." -#: contact_forms.py:195 +#: contact_forms.py:197 msgid "" "Title of the presentation in Polish (fill at least one " "title)" msgstr "Polski tytuł prezentacji" -#: contact_forms.py:197 +#: contact_forms.py:199 msgid "Title of the presentation in English" msgstr "" "Angielski tytuł prezentacji (wypełnij przynajmniej jeden tytuł, najlepiej " "oba)" -#: contact_forms.py:200 +#: contact_forms.py:202 msgid "Summary of presentation (max. 1800 characters)" msgstr "Krótki opis prezentacji (maks. 1800 znaków)" -#: contact_forms.py:204 +#: contact_forms.py:206 msgid "" "I am interested in including my paper in the post-conference publication" msgstr "" "Jestem zainteresowana/y umieszczeniem pisemnej wersji mojego wystąpienia w " "publikacji pokonferencyjnej" -#: contact_forms.py:211 +#: contact_forms.py:213 msgid "" "I accept CopyCamp Terms and " "Conditions." msgstr "Akceptuję regulamin CopyCampu" -#: contact_forms.py:254 +#: contact_forms.py:256 msgid "Fill at least one bio!" msgstr "Wpisz przynajmniej jedną notkę biograficzną (po polsku lub angielsku)!" -#: contact_forms.py:256 +#: contact_forms.py:258 msgid "Fill at least one title!" msgstr "Wpisz przynajmniej jeden tytuł prezentacji (po polsku lub angielsku)!" -#: contact_forms.py:264 +#: contact_forms.py:266 msgid "Next CopyCamp" msgstr "Kolejny CopyCamp" -#: contact_forms.py:266 contact_forms.py:278 +#: contact_forms.py:268 contact_forms.py:280 msgid "Name" msgstr "Imię i nazwisko" -#: contact_forms.py:276 +#: contact_forms.py:278 msgid "Workshop" msgstr "Warsztat" @@ -554,15 +579,6 @@ msgstr "" #~ msgid "Take part!" #~ msgstr "Weź udział!" -#~ msgid "I'm planning to show up on" -#~ msgstr "Planuję pojawić się" - -#~ msgid "November 6th only" -#~ msgstr "tylko 6-go listopada" - -#~ msgid "November 7th only" -#~ msgstr "tylko 7-go listopada" - #~ msgid "Presentation" #~ msgstr "Prezentacja"