Skip to content

Commit

Permalink
fix: i18n忘れ
Browse files Browse the repository at this point in the history
  • Loading branch information
anatawa12 committed May 27, 2024
1 parent 44caedf commit ef77987
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/frontend/src/ui/deck/tl-note-notification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export async function soundSettingsButton(soundSetting: Ref<SoundStore>): Promis
},
volume: {
type: 'range',
label: '音量',
label: i18n.ts.volume,
default: soundSetting.value.volume ?? 1,
textConverter: (v) => `${Math.floor(v * 100)}%`,
min: 0,
Expand All @@ -72,7 +72,7 @@ export async function soundSettingsButton(soundSetting: Ref<SoundStore>): Promis
},
listen: {
type: 'button',
content: '再生',
content: i18n.ts.listen,
action: (_, v) => {
const sound = buildSoundStore(v);
if (!sound) return;
Expand Down

0 comments on commit ef77987

Please sign in to comment.