Skip to content

Commit 53aca68

Browse files
committed
fix: i18n忘れ
1 parent ef77987 commit 53aca68

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/frontend/src/ui/deck/tl-note-notification.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ export async function soundSettingsButton(soundSetting: Ref<SoundStore>): Promis
2222
}
2323
}
2424

25-
const { canceled, result } = await os.form('通知設定', {
25+
const { canceled, result } = await os.form(i18n.ts.sound, {
2626
type: {
2727
type: 'enum',
28-
label: '通知音',
28+
label: i18n.ts.sound,
2929
default: soundSetting.value.type ?? 'none',
3030
enum: soundsTypes.map(f => ({
3131
value: f ?? 'none', label: getSoundTypeName(f),
3232
})),
3333
},
3434
soundFile: {
3535
type: 'drive-file',
36-
label: 'ファイル',
36+
label: i18n.ts.file,
3737
defaultFileId: soundSetting.value.type === '_driveFile_' ? soundSetting.value.fileId : null,
3838
hidden: v => v.type !== '_driveFile_',
3939
validate: async (file: Misskey.entities.DriveFile) => {

0 commit comments

Comments
 (0)