From 133c82f56ddb6427ca3fd2510cb929281cb1e602 Mon Sep 17 00:00:00 2001 From: tiramisu_oTATo Date: Wed, 23 Aug 2023 01:56:23 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=B9=E3=82=BF=E3=82=A4=E3=83=AB=E3=81=AE`"?= =?UTF-8?q?=E3=83=8E=E3=83=BC=E3=83=9E=E3=83=AB"`=E3=82=92=E5=AE=9A?= =?UTF-8?q?=E6=95=B0=E3=81=AB=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/CharacterTryListenCard.vue | 3 ++- src/components/DefaultStyleListDialog.vue | 3 ++- src/components/DefaultStyleSelectDialog.vue | 3 ++- src/store/audio.ts | 11 +++++++---- src/store/utility.ts | 4 +++- 5 files changed, 16 insertions(+), 8 deletions(-) diff --git a/src/components/CharacterTryListenCard.vue b/src/components/CharacterTryListenCard.vue index 307b2c7b73..c218963917 100644 --- a/src/components/CharacterTryListenCard.vue +++ b/src/components/CharacterTryListenCard.vue @@ -40,7 +40,7 @@ " /> {{ - selectedStyle.styleName || "ノーマル" + selectedStyle.styleName || DEFAULT_STYLE_NAME }} import { computed, ref } from "vue"; import { CharacterInfo, SpeakerId, StyleId, StyleInfo } from "@/type/preload"; +import { DEFAULT_STYLE_NAME } from "@/store/utility"; const props = defineProps<{ diff --git a/src/components/DefaultStyleListDialog.vue b/src/components/DefaultStyleListDialog.vue index bc92934d03..39e57f8caa 100644 --- a/src/components/DefaultStyleListDialog.vue +++ b/src/components/DefaultStyleListDialog.vue @@ -79,7 +79,7 @@ >{{ selectedStyles[speaker.metas.speakerUuid] ? selectedStyles[speaker.metas.speakerUuid].styleName - : "ノーマル" + : DEFAULT_STYLE_NAME }}({{ characterInfosMap[speaker.metas.speakerUuid].metas .styles.length @@ -99,6 +99,7 @@