diff --git a/components/raids/RaidItem/index.tsx b/components/raids/RaidItem/index.tsx index d76cf05c..328caf49 100644 --- a/components/raids/RaidItem/index.tsx +++ b/components/raids/RaidItem/index.tsx @@ -72,7 +72,7 @@ const RaidItem = React.forwardRef>( > {icon ? {icon.alt} : ''} {children} - {selected ? Selected : ''} + {selected ? {t('combobox.selected')} : ''} {extra ? EX : ''} ) diff --git a/public/locales/en/common.json b/public/locales/en/common.json index c920d4f5..2ce2bf8b 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -46,6 +46,9 @@ "new": "New", "wiki": "View more on gbf.wiki" }, + "combobox": { + "selected": "Selected" + }, "context": { "modify": { "character": "Modify character", diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json index caf172e6..9b262c24 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -46,6 +46,9 @@ "new": "作成", "wiki": "gbf.wikiで詳しく見る" }, + "combobox": { + "selected": "選択済み" + }, "context": { "modify": { "character": "キャラクターを変更",