Skip to content

Commit 376b652

Browse files
committed
fix: refreshment-space to free-drinks-and-snacks
1 parent 4682f63 commit 376b652

File tree

9 files changed

+7
-7
lines changed

9 files changed

+7
-7
lines changed

apps/web/app/components/event/EventAsset.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import type { Event } from '@vuejs-jp/model'
33
44
interface EventAssetProps {
5-
title: Extract<Event, 'creative-wall' | 'refreshment-space' | 'tattoo-booth'>
5+
title: Extract<Event, 'creative-wall' | 'free-drinks-and-snacks' | 'tattoo-booth'>
66
}
77
88
const props = defineProps<EventAssetProps>()

apps/web/app/composables/useLocale.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export function useLocale(path: Path) {
2020
.with('vuejs_handson', () => `/${locale.value}/vuejs_handson`)
2121
.with('nextgen_frontend_crosstalk', () => `/${locale.value}/nextgen_frontend_crosstalk`)
2222
.with('creative_wall', () => `/${locale.value}/creative_wall`)
23-
.with('refreshment_space', () => `/${locale.value}/refreshment_space`)
23+
.with('free_drinks_and_snacks', () => `/${locale.value}/free_drinks_and_snacks`)
2424
.with('tattoo_booth', () => `/${locale.value}/tattoo_booth`)
2525
.with('cocktail_bash', () => `/${locale.value}/cocktail_bash`)
2626
.with('sponsor_booth_fotolary', () => `/${locale.value}/sponsor_booth_fotolary`)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
After focused sessions and each event, how about some coffee or tea? We also provide complimentary snacks. Feel free to drop by whenever you feel like refreshing yourself a bit.

apps/web/app/content/en/refreshment_space.md

Lines changed: 0 additions & 1 deletion
This file was deleted.
File renamed without changes.

apps/web/app/lang/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"vuejs_handson": "Vue.js / Nuxt Hands-on",
3030
"nextgen_frontend_crosstalk": "Next generation front-end crosstalk",
3131
"creative_wall": "Creative Wall",
32-
"refreshment_space": "Refreshment Space",
32+
"free_drinks_and_snacks": "Free Drinks & Snacks",
3333
"tattoo_booth": "Tattoo Booth",
3434
"cocktail_bash": "Vue Cocktail Bash",
3535
"sponsor_booth_fotolary": "Sponsor Booth Fotolary"

apps/web/app/lang/ja.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"vuejs_handson": "Vue.js / Nuxt ハンズオン",
4848
"nextgen_frontend_crosstalk": "次世代フロントエンドクロストーク",
4949
"creative_wall": "クリエイティブウォール",
50-
"refreshment_space": "リフレッシュメントスペース",
50+
"free_drinks_and_snacks": "フリードリンク&スナック",
5151
"tattoo_booth": "タトゥーブース",
5252
"cocktail_bash": "Vue Cocktail Bash",
5353
"sponsor_booth_fotolary": "スポンサーブースフォトラリー"

packages/model/lib/event.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export const EventMap = {
33
'vuejs-handson': 'vuejs-handson',
44
'nextgen-frontend-crosstalk': 'nextgen-frontend-crosstalk',
55
'creative-wall': 'creative-wall',
6-
'refreshment-space': 'refreshment-space',
6+
'free-drinks-and-snacks': 'free-drinks-and-snacks',
77
'tattoo-booth': 'tattoo-booth',
88
'cocktail-bash': 'cocktail-bash',
99
'sponsor-booth-fotolary': 'sponsor-booth-fotolary',

packages/model/lib/path.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export type Path =
99
| 'vuejs_handson'
1010
| 'nextgen_frontend_crosstalk'
1111
| 'creative_wall'
12-
| 'refreshment_space'
12+
| 'free_drinks_and_snacks'
1313
| 'tattoo_booth'
1414
| 'cocktail_bash'
1515
| 'sponsor_booth_fotolary'

0 commit comments

Comments
 (0)