Skip to content

Commit

Permalink
feat: adding stream mention for room B & C
Browse files Browse the repository at this point in the history
  • Loading branch information
martinheidegger committed Oct 18, 2024
1 parent 4553f8c commit a5fd822
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
12 changes: 12 additions & 0 deletions 2024/src/data/talks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@
track: A
kind: OPENING_TALK
youtube: ""
- date: day1
startsAt: "10:00"
endsAt: "10:10"
track: B
kind: OPENING_TALK_STREAM
youtube: ""
- date: day1
startsAt: "10:00"
endsAt: "10:10"
track: C
kind: OPENING_TALK_STREAM
youtube: ""
- uuid: sahil-khokhar
date: day1
startsAt: "10:10"
Expand Down
1 change: 1 addition & 0 deletions 2024/src/data/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export type TalkType = {
kind:
| "OPEN"
| "OPENING_TALK"
| "OPENING_TALK_STREAM"
| "TALK"
| "BREAK"
| "CLOSING_TALK"
Expand Down
1 change: 1 addition & 0 deletions 2024/src/i18n/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export const en = {
"〒210-0024 27-7-903 Nisshincho Kawasaki-ku Kawasaki-shi Kanagawa",
"talk.open": "Doors Open",
"talk.opening talk": "Opening Talk",
"talk.opening talk stream": "Opening Talk (Stream)",
"talk.Break": "Break",
"talk.closing talk": "Closing Talk",
"talk.party": "Party",
Expand Down
1 change: 1 addition & 0 deletions 2024/src/i18n/ja.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export const ja: {
"jna-address": "〒210-0024 神奈川県川崎市川崎区日進町27-7-903",
"talk.open": "開場",
"talk.opening talk": "オープニング/開場説明",
"talk.opening talk stream": "オープニング/開場説明 ストリーム",
"talk.Break": "休憩",
"talk.closing talk": "クロージング",
"talk.party": "懇親会",
Expand Down
3 changes: 3 additions & 0 deletions 2024/src/pages/schedule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,9 @@ export default function SchedulePage() {
case "OPENING_TALK": {
return i18n.t("talk.opening talk")
}
case "OPENING_TALK_STREAM": {
return i18n.t("talk.opening talk stream")
}
case "BREAK": {
return i18n.t("talk.Break")
}
Expand Down

0 comments on commit a5fd822

Please sign in to comment.