Add missing localization

This commit is contained in:
Justin Edmund 2023-07-02 02:34:30 -07:00
parent 862747ed4a
commit faf4eb9943

View file

@ -81,7 +81,7 @@ const PartySegmentedControl = (props: Props) => {
<RepSegment <RepSegment
controlGroup="grid" controlGroup="grid"
inputName="weapons" inputName="weapons"
name="Weapons" name={t('party.segmented_control.weapons')}
selected={props.selectedTab === GridType.Weapon} selected={props.selectedTab === GridType.Weapon}
onClick={props.onClick} onClick={props.onClick}
> >
@ -96,7 +96,7 @@ const PartySegmentedControl = (props: Props) => {
<RepSegment <RepSegment
controlGroup="grid" controlGroup="grid"
inputName="summons" inputName="summons"
name="Summons" name={t('party.segmented_control.summons')}
selected={props.selectedTab === GridType.Summon} selected={props.selectedTab === GridType.Summon}
onClick={props.onClick} onClick={props.onClick}
> >