They really call it Additional Weapons in Japanese too huh

This commit is contained in:
Justin Edmund 2022-03-05 16:30:52 -08:00
parent c3186b2899
commit 4ed07f83a2
3 changed files with 5 additions and 1 deletions

View file

@ -1,4 +1,5 @@
import React from 'react' import React from 'react'
import { useTranslation } from 'next-i18next'
import WeaponUnit from '~components/WeaponUnit' import WeaponUnit from '~components/WeaponUnit'
import './index.scss' import './index.scss'
@ -15,10 +16,11 @@ interface Props {
const ExtraWeapons = (props: Props) => { const ExtraWeapons = (props: Props) => {
const numWeapons: number = 3 const numWeapons: number = 3
const { t } = useTranslation('common')
return ( return (
<div id="ExtraGrid"> <div id="ExtraGrid">
<span>Additional<br />Weapons</span> <span>{t('extra_weapons')}</span>
<ul className="grid_weapons"> <ul className="grid_weapons">
{ {
Array.from(Array(numWeapons)).map((x, i) => { Array.from(Array(numWeapons)).map((x, i) => {

View file

@ -174,6 +174,7 @@
"loading": "Loading teams...", "loading": "Loading teams...",
"not_found": "No teams found" "not_found": "No teams found"
}, },
"extra_weapons": "Additional<br/>Weapons",
"coming_soon": "Coming Soon", "coming_soon": "Coming Soon",
"no_title": "Untitled", "no_title": "Untitled",
"no_raid": "No raid", "no_raid": "No raid",

View file

@ -175,6 +175,7 @@
"loading": "ロード中...", "loading": "ロード中...",
"not_found": "編成は見つかりませんでした" "not_found": "編成は見つかりませんでした"
}, },
"extra_weapons": "Additional<br/>Weapons",
"coming_soon": "開発中", "coming_soon": "開発中",
"no_title": "無題", "no_title": "無題",
"no_raid": "マルチなし", "no_raid": "マルチなし",