Add translation for "Selected" text
This commit is contained in:
parent
1d06303b93
commit
7afd445952
3 changed files with 7 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ const RaidItem = React.forwardRef<HTMLDivElement, PropsWithChildren<Props>>(
|
|||
>
|
||||
{icon ? <img alt={icon.alt} src={icon.src} /> : ''}
|
||||
<span className="Text">{children}</span>
|
||||
{selected ? <i className="Selected">Selected</i> : ''}
|
||||
{selected ? <i className="Selected">{t('combobox.selected')}</i> : ''}
|
||||
{extra ? <i className="ExtraIndicator">EX</i> : ''}
|
||||
</CommandItem>
|
||||
)
|
||||
|
|
|
|||
|
|
@ -46,6 +46,9 @@
|
|||
"new": "New",
|
||||
"wiki": "View more on gbf.wiki"
|
||||
},
|
||||
"combobox": {
|
||||
"selected": "Selected"
|
||||
},
|
||||
"context": {
|
||||
"modify": {
|
||||
"character": "Modify character",
|
||||
|
|
|
|||
|
|
@ -46,6 +46,9 @@
|
|||
"new": "作成",
|
||||
"wiki": "gbf.wikiで詳しく見る"
|
||||
},
|
||||
"combobox": {
|
||||
"selected": "選択済み"
|
||||
},
|
||||
"context": {
|
||||
"modify": {
|
||||
"character": "キャラクターを変更",
|
||||
|
|
|
|||
Loading…
Reference in a new issue