Skip to content

Commit

Permalink
Merge branch 'adjust_conference_date_to_2024' into check_master
Browse files Browse the repository at this point in the history
  • Loading branch information
SivanYeh committed Feb 21, 2024
2 parents 6b90e35 + d09ca24 commit 44cb8ac
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
8 changes: 4 additions & 4 deletions src/core/choices.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
)

PREFER_TIME_CHOICES = (
('DAY_ONE_MORNING', _('Day 1, September 2nd, 2023 Morning')),
('DAY_ONE_AFTERNOON', _('Day 1, September 2nd, 2023 Afternoon')),
('DAY_TWO_MORNING', _('Day 2, September 3rd, 2023 Morning')),
('DAY_TWO_AFTERNOON', _('Day 2, September 3rd, 2023 Afternoon')),
('DAY_ONE_MORNING', _('Day 1, September 21st, 2024 Morning')),
('DAY_ONE_AFTERNOON', _('Day 1, September 21st, 2024 Afternoon')),
('DAY_TWO_MORNING', _('Day 2, September 22nd, 2024 Morning')),
('DAY_TWO_AFTERNOON', _('Day 2, September 22nd, 2024 Afternoon')),
)

RECORDING_POLICY_CHOICES = (
Expand Down
16 changes: 8 additions & 8 deletions src/locale/en_US/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -214,20 +214,20 @@ msgid "Experienced"
msgstr "Experienced"

#: core/choices.py:41
msgid "Day 1, September 2nd, 2023 Morning"
msgstr "Day 1, September 2nd, 2023 Morning with Taiwan Standard Time(UTC+8)"
msgid "Day 1, September 21st, 2024 Morning"
msgstr "Day 1, September 21st, 2024 Morning with Taiwan Standard Time(UTC+8)"

#: core/choices.py:42
msgid "Day 1, September 2nd, 2023 Afternoon"
msgstr "Day 1, September 2nd, 2023 Afternoon with Taiwan Standard Time(UTC+8)"
msgid "Day 1, September 21st, 2024 Afternoon"
msgstr "Day 1, September 21st, 2024 Afternoon with Taiwan Standard Time(UTC+8)"

#: core/choices.py:43
msgid "Day 2, September 3rd, 2023 Morning"
msgstr "Day 2, September 3rd, 2023 Morning with Taiwan Standard Time(UTC+8)"
msgid "Day 2, September 22nd, 2024 Morning"
msgstr "Day 2, September 22nd, 2024 Morning with Taiwan Standard Time(UTC+8)"

#: core/choices.py:44
msgid "Day 2, September 3rd, 2023 Afternoon"
msgstr "Day 2, September 3rd, 2023 Afternoon with Taiwan Standard Time(UTC+8)"
msgid "Day 2, September 22nd, 2024 Afternoon"
msgstr "Day 2, September 22nd, 2024 Afternoon with Taiwan Standard Time(UTC+8)"

#: core/choices.py:48 core/choices.py:53 core/choices.py:58 core/choices.py:63
#: core/choices.py:68 reviews/models.py:122 reviews/models.py:137
Expand Down
16 changes: 8 additions & 8 deletions src/locale/zh_Hant/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -221,20 +221,20 @@ msgid "Experienced"
msgstr "進階"

#: core/choices.py:41
msgid "Day 1, September 2nd, 2023 Morning"
msgstr "第一天(2023/09/02)早上"
msgid "Day 1, September 21st, 2024 Morning"
msgstr "第一天(2024/09/21)早上"

#: core/choices.py:42
msgid "Day 1, September 2nd, 2023 Afternoon"
msgstr "第一天(2023/09/02)下午"
msgid "Day 1, September 21st, 2024 Afternoon"
msgstr "第一天(2024/09/21)下午"

#: core/choices.py:43
msgid "Day 2, September 3rd, 2023 Morning"
msgstr "第二天(2023/09/03)早上"
msgid "Day 2, September 22nd, 2024 Morning"
msgstr "第二天(2024/09/22)早上"

#: core/choices.py:44
msgid "Day 2, September 3rd, 2023 Afternoon"
msgstr "第二天(2023/09/03)下午"
msgid "Day 2, September 22nd, 2024 Afternoon"
msgstr "第二天(2024/09/22)下午"

#: core/choices.py:48 core/choices.py:53 core/choices.py:58 core/choices.py:63
#: core/choices.py:68 reviews/models.py:122 reviews/models.py:137
Expand Down
4 changes: 2 additions & 2 deletions src/pycontw2016/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ def node_bin(name):
)

EVENTS_DAY_NAMES = collections.OrderedDict([
(datetime.date(2024, 9, 2), _('Day 1')),
(datetime.date(2024, 9, 3), _('Day 2')),
(datetime.date(2024, 9, 21), _('Day 1')),
(datetime.date(2024, 9, 22), _('Day 2')),
])

SCHEDULE_REDIRECT_URL = None
Expand Down

0 comments on commit 44cb8ac

Please sign in to comment.