Skip to content

Commit

Permalink
Merge pull request #296 from cp-20/feat/simplify-dice-description
Browse files Browse the repository at this point in the history
ダイスロールページの説明を簡略化
  • Loading branch information
cp-20 authored Feb 16, 2025
2 parents 5a6d8fd + 3887cb4 commit 3a5cf0d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
3 changes: 1 addition & 2 deletions src/app/[locale]/(app)/dice/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ const DicePage: NextPage = async () => {
<div>
<PageTitle icon={IconDice5}>{t('common:dice.title')}</PageTitle>
<PageDescriptionContainer>
<PageDescriptionText>{t('dice:usage1')}</PageDescriptionText>
<PageDescriptionText>{t('dice:usage2')}</PageDescriptionText>
<PageDescriptionText>{t('dice:usage')}</PageDescriptionText>
</PageDescriptionContainer>
</div>

Expand Down
5 changes: 1 addition & 4 deletions src/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,7 @@ export const en = {
},
},
dice: {
usage1:
'In simple mode, you can roll basic dice. For dice rolls not on the screen, adjust the number of dice yourself',
usage2:
'In the advanced mode, you can roll dice according to various game systems. Please refer to the explanation of each game system for specific usage.',
usage: 'In simple mode, you can roll basic dice, and in advanced mode, you can roll dice for various game systems.',
simple: {
label: 'Simple',
output: 'The result will be displayed here',
Expand Down
6 changes: 2 additions & 4 deletions src/locales/ja.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,8 @@ export const ja = {
},
},
dice: {
usage1:
'シンプルモードでは基本的なダイスを振ることができます。画面にないダイスロールは自分でダイスの数を調整して「ダイスロール」ボタンを押してください。',
usage2:
'アドバンスドモードでは、様々なゲームシステムに対応したダイスロールができます。具体的な使い方はそれぞれのゲームシステムの説明を参照してください。',
usage:
'シンプルモードでは基本的なダイスを、アドバンスドモードでは様々なゲームシステムのダイスを振ることができます。',
simple: {
label: 'シンプル',
output: 'ここに結果が表示されます',
Expand Down

0 comments on commit 3a5cf0d

Please sign in to comment.