feat: i18n words

This commit is contained in:
Andres 2023-10-19 14:31:20 +02:00
parent 3d67022b38
commit 83502755d7
3 changed files with 7 additions and 7 deletions

View file

@ -33,8 +33,8 @@
"noTagDef": "No tags defined", "noTagDef": "No tags defined",
"authorized": "Authorized", "authorized": "Authorized",
"address": "Address", "address": "Address",
"ips": "Managed IPs", "managedIPs": "Managed IPs",
"status": "Last seen", "lastSeen": "Last seen",
"version": "Version", "version": "Version",
"physIp": "Physical IP", "physIp": "Physical IP",
"latency": "Latency", "latency": "Latency",

View file

@ -33,8 +33,8 @@
"noTagDef": "No hay etiquetas definidas", "noTagDef": "No hay etiquetas definidas",
"authorized": "Autorizado", "authorized": "Autorizado",
"address": "Dirección", "address": "Dirección",
"ips": "IPs asignadas", "managedIPs": "IPs asignadas",
"status": "Visto por última vez", "lastSeen": "Visto por última vez",
"version": "Versión", "version": "Versión",
"physIp": "IP pública", "physIp": "IP pública",
"latency": "Latencia", "latency": "Latencia",

View file

@ -97,13 +97,13 @@ function NetworkMembers({ network }) {
}, },
{ {
id: "ips", id: "ips",
name: t("ips"), name: t("managedIPs"),
minWidth: "220px", minWidth: "220px",
cell: (row) => <ManagedIP member={row} handleChange={handleChange} />, cell: (row) => <ManagedIP member={row} handleChange={handleChange} />,
}, },
{ {
id: "status", id: "lastSeen",
name: t("status"), name: t("lastSeen"),
minWidth: "100px", minWidth: "100px",
cell: (row) => cell: (row) =>
row.online === 1 ? ( row.online === 1 ? (