Skip to content

Commit ecd9af4

Browse files
committed
fix: ロケール対応
1 parent b6b91a5 commit ecd9af4

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed

app/assets/locale/all.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,12 @@ export default {
7474
* message section
7575
*/
7676
message_subtitle: '想い',
77+
/**
78+
* news section
79+
*/
80+
news_subtitle1: 'Vue Fes Japan 2023 にご参加いただいたみなさん、ありがとうございました。',
81+
news_subtitle2:
82+
'当日撮影された写真を CC0 ライセンスにて公開しますので、ブログや SNS などにご自由にお使いください。',
7783
/**
7884
* timetable section
7985
*/
@@ -485,6 +491,12 @@ export default {
485491
* message section
486492
*/
487493
message_subtitle: 'Thought',
494+
/**
495+
* news section
496+
*/
497+
news_subtitle1: 'Thank you to everyone who attended Vue Fes Japan 2023.',
498+
news_subtitle2:
499+
'Photos taken on the day will be released under a CC0 license, so please feel free to use them on your blogs, social networking sites, etc.',
488500
/**
489501
* timetable section
490502
*/

app/components/NewsPageSection.vue

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
11
<template>
22
<section class="photos">
33
<SectionTitle
4-
id="news"
5-
class="photos_title"
6-
color="vue.blue"
7-
title="News"
8-
yamato-title="お知らせ"
4+
id="news"
5+
class="photos_title"
6+
color="vue.blue"
7+
title="News"
8+
yamato-title="お知らせ"
99
/>
10-
<p>
11-
Vue Fes Japan 2023 にご参加いただいたみなさん、ありがとうございました。
12-
</p>
13-
<p>
14-
当日撮影された写真を CC0 ライセンスにて公開しますので、ブログや SNS などにご自由にお使いください。
15-
</p>
10+
<p>{{ $t('top.news_subtitle1') }}</p>
11+
<p>{{ $t('top.news_subtitle2') }}</p>
1612
<ul>
1713
<li>
1814
<NuxtLink to="https://photos.app.goo.gl/fKbJAQRuzGBA8GAz7" target="_blank">
@@ -35,9 +31,7 @@
3531
</NuxtLink>
3632
</li>
3733
<li>
38-
<NuxtLink to="https://photos.app.goo.gl/crd4ftGMSNUPPkjF6" target="_blank">
39-
受付
40-
</NuxtLink>
34+
<NuxtLink to="https://photos.app.goo.gl/crd4ftGMSNUPPkjF6" target="_blank"> 受付 </NuxtLink>
4135
</li>
4236
<li>
4337
<NuxtLink to="https://photos.app.goo.gl/QsxLYZq4hQVd6oa59" target="_blank">

0 commit comments

Comments
 (0)