diff --git a/i18n/conference/speeches.i18n.js b/i18n/conference/speeches.i18n.js index e7044a742a..ba876f7d09 100644 --- a/i18n/conference/speeches.i18n.js +++ b/i18n/conference/speeches.i18n.js @@ -6,12 +6,12 @@ export default genI18nMessages({ title: 'Talks', intro: 'The two conference days are packed with talks about Python by speakers' + - ' from Taiwan and around the world. The talks will be either 15-, 30-,' + - ' or 45-minute long. Three tracks of talks will be delivered simultaneously,' + - ' all with different topics and difficulties. We suggest you to make a schedule' + - ' beforehand, and choose what you want ot listen based on your interests.' + - ' Many people take notes on the program schedule before the meeting so they don’t ' + - 'run to wrong places.', + ' from Taiwan and around the world. The talks will be either 15, 30,' + + ' or 45 minutes long. Three tracks of talks will be delivered simultaneously,' + + ' all with different topics and difficulties. We suggest you make a schedule' + + ' beforehand, and choose what you want to listen based on your interests.' + + ' Many people take notes on the program schedule before the meeting so they don’t' + + ' run to the wrong places.', categoryFilter: 'Category', }, tutorials: { diff --git a/routes.json b/routes.json index 61a6aeeb12..9d52e03e3e 100644 --- a/routes.json +++ b/routes.json @@ -3,7 +3,7 @@ "/api/sponsors/jobs/": "/jobs", "/api/events/keynotes/": "/keynotes", "/api/events/speeches/\\?event_types=:event_type": "/speeches/?event_type=:event_type", + "/api/events/speeches/category/:category": "/speeches/?category=:category", "/api/events/speeches/:event_type/:id": "/speeches/?event_type=:event_type&id=:id&singular=1", - "/api/events/schedule": "/schedules", - "/api/events/speeches/category/:category": "/speeches/?category=:category" + "/api/events/schedule": "/schedules" } diff --git a/store/index.js b/store/index.js index 09e59d38d3..29d10a583d 100644 --- a/store/index.js +++ b/store/index.js @@ -27,7 +27,7 @@ export const state = () => ({ showIndexSecondaryBtn: true, aboutHideItems: ['apacCommunity'], // ['pycontw', 'apacCommunity', 'history', 'community', 'codeOfConduct'] eventsHideItems: ['sprints', 'openSpaces'], // ['sprints', 'openSpaces', 'jobs'] - conferenceHideItems: ['talks', 'tutorials', 'panelDiscussion'], // ['keynotes', 'talks', 'tutorials', 'panelDiscussion'] + conferenceHideItems: ['panelDiscussion'], // ['keynotes', 'talks', 'tutorials', 'panelDiscussion'] registrationHideItems: [], // ['tickets', 'financialAid'] venueHideItems: [], // ['venueInfo', 'accommodation'] },