Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions packages/webgal/src/UI/Title/Title.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,16 @@ const Title: FC = () => {
<div className={applyStyle('Title_button_text', styles.Title_button_text)}>{t('extra.title')}</div>
</div>
)}
<div
className={applyStyle('Title_button', styles.Title_button)}
onClick={() => {
playSeClick();
window.close();
}}
onMouseEnter={playSeEnter}
>
<div className={applyStyle('Title_button_text', styles.Title_button_text)}>{t('exit.title')}</div>
</div>
</div>
</div>
)}
Expand Down
4 changes: 4 additions & 0 deletions packages/webgal/src/translations/de.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ const de = {
title: 'EXTRA',
subtitle: '',
},
exit: {
title: 'BEENDEN',
subtitle: '',
},
},

gaming: {
Expand Down
4 changes: 4 additions & 0 deletions packages/webgal/src/translations/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ const en = {
title: 'EXTRA',
subtitle: '',
},
exit: {
title: 'EXIT',
subtitle: '',
},
},

gaming: {
Expand Down
4 changes: 4 additions & 0 deletions packages/webgal/src/translations/fr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ const fr = {
title: 'EXTRA',
subtitle: '',
},
exit: {
title: 'QUITTER',
subtitle: '',
},
},

gaming: {
Expand Down
4 changes: 4 additions & 0 deletions packages/webgal/src/translations/jp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,10 @@ const jp = {
title: '鑑賞モード',
subtitle: 'EXTRA',
},
exit: {
title: 'ゲーム終了',
subtitle: 'EXIT',
},
},

gaming: {
Expand Down
4 changes: 4 additions & 0 deletions packages/webgal/src/translations/zh-cn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@ const zhCn = {
title: '鉴赏模式',
subtitle: 'EXTRA',
},
exit: {
title: '退出游戏',
subtitle: 'EXIT',
},
},

gaming: {
Expand Down
4 changes: 4 additions & 0 deletions packages/webgal/src/translations/zh-tw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@ const zhTw = {
title: 'CG模式',
subtitle: 'EXTRA',
},
exit: {
title: '退出遊戲',
subtitle: 'EXIT',
},
},

gaming: {
Expand Down