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} /> : ''}
|
{icon ? <img alt={icon.alt} src={icon.src} /> : ''}
|
||||||
<span className="Text">{children}</span>
|
<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> : ''}
|
{extra ? <i className="ExtraIndicator">EX</i> : ''}
|
||||||
</CommandItem>
|
</CommandItem>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -46,6 +46,9 @@
|
||||||
"new": "New",
|
"new": "New",
|
||||||
"wiki": "View more on gbf.wiki"
|
"wiki": "View more on gbf.wiki"
|
||||||
},
|
},
|
||||||
|
"combobox": {
|
||||||
|
"selected": "Selected"
|
||||||
|
},
|
||||||
"context": {
|
"context": {
|
||||||
"modify": {
|
"modify": {
|
||||||
"character": "Modify character",
|
"character": "Modify character",
|
||||||
|
|
|
||||||
|
|
@ -46,6 +46,9 @@
|
||||||
"new": "作成",
|
"new": "作成",
|
||||||
"wiki": "gbf.wikiで詳しく見る"
|
"wiki": "gbf.wikiで詳しく見る"
|
||||||
},
|
},
|
||||||
|
"combobox": {
|
||||||
|
"selected": "選択済み"
|
||||||
|
},
|
||||||
"context": {
|
"context": {
|
||||||
"modify": {
|
"modify": {
|
||||||
"character": "キャラクターを変更",
|
"character": "キャラクターを変更",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue