Skip to content
This repository was archived by the owner on Mar 7, 2022. It is now read-only.

Commit 88473a7

Browse files
committed
Merge branch 'release/20-July-2017'
2 parents 01d40b7 + 306c292 commit 88473a7

5 files changed

Lines changed: 41 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# A git repository for PyCon Korea 2017
2+
## Version 20-July-2017
23

34
[![Build Status](https://travis-ci.org/pythonkr/pyconkr-2017.svg?branch=master)](https://travis-ci.org/pythonkr/pyconkr-2017)
45

pyconkr/context_processors.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ def default(request):
4343
('keynote', {'title': _('Keynotes')}),
4444
('speaker', {'title': _('Speakers')}),
4545
('tutorials', {'title': _('Sprint and Tutorial')}),
46+
('young_coder', {'title': _('Young Coder')}),
47+
('child_care', {'title': _('Child Care')}),
4648
('lightning_talk', {'title': _('Lightning talk')}),
4749
('ost', {'title': _('Open Spaces')}),
4850
]),

pyconkr/locale/en/LC_MESSAGES/django.po

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ msgstr "Announcements"
3838
msgid "PyCon.KR 2017 Blog"
3939
msgstr "PyCon.KR 2017 Blog"
4040

41+
msgid "Young Coder"
42+
msgstr "Young Coder"
43+
44+
msgid "Child Care"
45+
msgstr "Child Care"
46+
4147
#: pyconkr/context_processors.py:28 pyconkr/templates/base.html:76
4248
#: pyconkr/templates/pyconkr/sponsor_list.html:4
4349
msgid "Sponsors"
@@ -635,6 +641,18 @@ msgstr "Tutorial proposal successfully updated."
635641
msgid "Update tutorial"
636642
msgstr "Update tutorial"
637643

644+
#: pyconkr/views.py:415
645+
msgid "Sprint proposal successfully created."
646+
msgstr "Sprint proposal successfully created."
647+
648+
#: pyconkr/views.py:539
649+
msgid "Sprint proposal successfully updated."
650+
msgstr "Sprint proposal successfully updated."
651+
652+
#: pyconkr/views.py:546
653+
msgid "Update sprint"
654+
msgstr "Update sprint"
655+
638656
#~ msgid "About PyCon 2017"
639657
#~ msgstr "About PyCon Korea 2017"
640658

pyconkr/locale/ko/LC_MESSAGES/django.po

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ msgstr "알림"
3939
msgid "PyCon.KR 2017 Blog"
4040
msgstr "파이콘 한국 2017 블로그"
4141

42+
msgid "Young Coder"
43+
msgstr "영코더"
44+
45+
msgid "Child Care"
46+
msgstr "아이돌봄"
47+
4248
#: pyconkr/context_processors.py:28 pyconkr/templates/base.html:76
4349
#: pyconkr/templates/pyconkr/sponsor_list.html:4
4450
msgid "Sponsors"
@@ -640,6 +646,18 @@ msgstr "튜토리얼 제안서가 수정되었습니다."
640646
msgid "Update tutorial"
641647
msgstr "튜토리얼 갱신"
642648

649+
#: pyconkr/views.py:415
650+
msgid "Sprint proposal successfully created."
651+
msgstr "스프린트 제안을 제출하였습니다."
652+
653+
#: pyconkr/views.py:539
654+
msgid "Sprint proposal successfully updated."
655+
msgstr "스프린트 제안서가 수정되었습니다."
656+
657+
#: pyconkr/views.py:546
658+
msgid "Update sprint"
659+
msgstr "스프린트 갱신"
660+
643661
#~ msgid "About PyCon 2017"
644662
#~ msgstr "파이콘 한국 2017"
645663

pyconkr/views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,14 +536,14 @@ class SprintProposalUpdate(SuccessMessageMixin, UpdateView):
536536
model = SprintProposal
537537
form_class = SprintProposalForm
538538
template_name = "pyconkr/proposal_form.html"
539-
success_message = _("Tutorial proposal successfully updated.")
539+
success_message = _("Sprint proposal successfully updated.")
540540

541541
def get_object(self, queryset=None):
542542
return get_object_or_404(SprintProposal, pk=self.request.user.sprintproposal.pk)
543543

544544
def get_context_data(self, **kwargs):
545545
context = super(SprintProposalUpdate, self).get_context_data(**kwargs)
546-
context['title'] = _("Update tutorial")
546+
context['title'] = _("Update sprint")
547547
return context
548548

549549
def get_success_url(self):

0 commit comments

Comments
 (0)