Skip to content

Commit ca37af9

Browse files
tyuchxtimtsai-tvbs
authored andcommitted
feat(registration/tickets): Modify Conferance information
1 parent ce71906 commit ca37af9

File tree

2 files changed

+30
-18
lines changed

2 files changed

+30
-18
lines changed

i18n/registration/tickets.i18n.js

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@ export default genI18nMessages({
77
pageAbstract:
88
'Bridging Tech & Business with Cross-Domain Integration & Industrial Experience{br}This is where you shine{br}',
99
about: {
10-
title: 'Conference Information',
11-
date: 'Dates: September 5 to 7, 2025 (GMT+8)',
12-
place: 'Venue & Address: Taipei New Horizon (6F) - 6F, No. 88, Yanchang Rd, Xinyi Dist, Taipei City',
10+
conf_info: 'Conference Information',
11+
main_title: 'Main Conference',
12+
main_date: 'Dates: September 6 - 7, 2025',
13+
main_place:
14+
'Venue: Taipei New Horizon (6F) - 6F, No. 88, Yanchang Rd, Xinyi Dist, Taipei City',
15+
sprint_title: 'Sprint',
16+
sprint_date: 'Dates: September 5, 2025',
17+
sprint_place: 'Venue: TBD',
1318
},
1419
ticketsIntro: {
1520
title: 'Tickets',
@@ -167,9 +172,13 @@ export default genI18nMessages({
167172
pageAbstract:
168173
'跨域整合 + 產業實戰經驗,打造技術與商業的橋樑。{br}在這裡你能找到屬於你的價值。{br}',
169174
about: {
170-
title: '大會資訊',
171-
date: '日期與時間:2025 年 09 月 05 日 到 2025 年 09 月 07 日(GMT+8)',
172-
place: '地點與地址:台北文創 6 樓 - ​台北市信義區菸廠路 88 號 6 樓',
175+
conf_info: '大會資訊',
176+
main_title: ' 主議程',
177+
main_date: '日期:2025 年 09 月 06 日 到 2025 年 09 月 07 日',
178+
main_place: '地點:台北文創 6 樓 - ​台北市信義區菸廠路 88 號 6 樓',
179+
sprint_title: '衝刺開發',
180+
sprint_date: '日期:2025 年 09 月 05 日',
181+
sprint_place: '地點:TBD',
173182
},
174183
ticketsIntro: {
175184
title: '購票方案',

pages/registration/tickets.vue

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,25 @@
3030
<!-- 大會資訊 -->
3131
<div class="mt-10 pb-8 md:mt-0">
3232
<h2 class="mt-[-40px] text-[32px]">
33-
{{ $t('about.title') }}
33+
{{ $t('about.conf_info') }}
3434
</h2>
3535
<ul class="ul-p-0 list-disc text-[18px]">
36-
<i18n class="p-0 leading-[30px]" path="about.date" tag="li">
37-
<template #br><br /></template>
38-
</i18n>
39-
<i18n
40-
class="p-0 leading-[30px]"
41-
path="about.place"
42-
tag="li"
43-
>
44-
<template #br><br /></template>
45-
</i18n>
36+
<li class="p-0 leading-[30px]">
37+
{{ $t('about.sprint_title') }}
38+
<ul class="list-disc pl-5">
39+
<li>{{ $t('about.sprint_date') }}</li>
40+
<li>{{ $t('about.sprint_place') }}</li>
41+
</ul>
42+
</li>
43+
<li class="p-0 leading-[30px]">
44+
{{ $t('about.main_title') }}
45+
<ul class="list-disc pl-5">
46+
<li>{{ $t('about.main_date') }}</li>
47+
<li>{{ $t('about.main_place') }}</li>
48+
</ul>
49+
</li>
4650
</ul>
4751
</div>
48-
4952
<!-- 購票方案 -->
5053
<div class="mb-12">
5154
<h2 class="text-[32px]">{{ $t('ticketsIntro.title') }}</h2>

0 commit comments

Comments
 (0)