From 8c1a9a05599c1e1b45992ab14fc391f89f34e63d Mon Sep 17 00:00:00 2001 From: Jules Laplace Date: Tue, 26 Mar 2019 14:43:48 +0100 Subject: adding i18n framework --- app/client/common/header.component.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'app/client/common') diff --git a/app/client/common/header.component.js b/app/client/common/header.component.js index 8450e8a..d55ec51 100644 --- a/app/client/common/header.component.js +++ b/app/client/common/header.component.js @@ -18,7 +18,7 @@ function NavLink(props){ } function Header(props){ - const { site, app, fps, playing, actions, location, history } = props + const { site, app, fps, playing, actions, location, history, i18n } = props const tool_list = Object.keys(modules).map((name, i) => { const label = name.replace(/_/, " ") return @@ -26,7 +26,7 @@ function Header(props){ const tool = modules[app.tool] const links = tool.links().map((link,i) => { return ( - {link.name} + {i18n.header[link.name] || link.name} ) }) return ( @@ -45,8 +45,8 @@ function Header(props){ {tool_list} - system - dashboard + {i18n.header.system} + {i18n.header.dashboard} {links} {playing && {fps} fps} @@ -58,6 +58,7 @@ const mapStateToProps = state => ({ app: state.system.app, fps: state.live.fps, playing: state.live.playing, + i18n: state.system.i18n.strings, }) const mapDispatchToProps = (dispatch, ownProps) => ({ -- cgit v1.2.3-70-g09d2