diff --git a/public/locales/en/translations.json b/public/locales/en/translations.json index 3214488..b6b032d 100644 --- a/public/locales/en/translations.json +++ b/public/locales/en/translations.json @@ -50,5 +50,9 @@ "ReleaseNotes": { "Title": "Release notes", "Version": "Version" + }, + "Server": { + "ActiveSession": "Active session", + "ActiveSessionSubtitle": "Expand to see forwards" } } diff --git a/public/locales/ro/translations.json b/public/locales/ro/translations.json index ef207ed..fd6305e 100644 --- a/public/locales/ro/translations.json +++ b/public/locales/ro/translations.json @@ -41,5 +41,9 @@ "ReleaseNotes": { "Title": "Note lansare", "Version": "Versiune" + }, + "Server": { + "ActiveSession": "Sesiune activă", + "ActiveSessionSubtitle": "Extindeţi pentru a vedea redirecţionările" } } diff --git a/src/features/server/components/ActiveSessionComponent.js b/src/features/server/components/ActiveSessionComponent.js index 1d702bd..bfcf1e9 100644 --- a/src/features/server/components/ActiveSessionComponent.js +++ b/src/features/server/components/ActiveSessionComponent.js @@ -11,14 +11,16 @@ import Avatar from "@material-ui/core/Avatar"; import IconButton from "@material-ui/core/IconButton"; import Typography from "@material-ui/core/Typography"; import ExpandMoreIcon from "@material-ui/icons/ExpandMore"; -import ShareRoundedIcon from "@material-ui/icons/ShareRounded"; +import SurroundSoundRoundedIcon from "@material-ui/icons/SurroundSoundRounded"; import ActiveSessionSummary from "./ActiveSessionSummary"; import styles from "../../../components/common/styles/expandableCardStyles"; +import { useTranslation } from "react-i18next"; const useStyles = makeStyles(styles); const ActiveSessionComponent = ({ session }) => { const classes = useStyles(); + const { t } = useTranslation(); const [expanded, setExpanded] = React.useState(false); const handleExpandClick = () => { @@ -30,7 +32,7 @@ const ActiveSessionComponent = ({ session }) => { - + } action={ @@ -45,8 +47,8 @@ const ActiveSessionComponent = ({ session }) => { } - title={Active session} - subheader="Expand to see forwards" + title={{t("Server.ActiveSession")}} + subheader={t("Server.ActiveSessionSubtitle")} />