Skip to content
Snippets Groups Projects
Commit 944d0f52 authored by Jessie Keck's avatar Jessie Keck
Browse files

Add translation keys for hard-coded strings in WorkspaceMenu

parent 2eee1986
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,7 @@
"downloadExportWorkspace": "Download/export workspace",
"fetchManifest": "Add",
"fullScreen": "Full Screen",
"hideZoomControls": "Hide zoom controls",
"light": "Light",
"listAllOpenWindows": "List all open windows",
"manifestError": "The resource cannot be added:",
......@@ -34,6 +35,7 @@
"right": "Right",
"single": "Single",
"settings": "Settings",
"showZoomControls": "Show Zoom Controls",
"theme": "Theme",
"thumbnails": "Thumbnails",
"toggleWindowSideBar": "Toggle window sidebar",
......
......@@ -100,7 +100,9 @@ class WorkspaceMenu extends Component {
<ListItemIcon>
<LoupeIcon />
</ListItemIcon>
<Typography varient="inherit">{ showZoomControls ? 'Hide zoom controls' : 'Show Zoom Controls' }</Typography>
<Typography varient="inherit">
{ showZoomControls ? t('hideZoomControls') : t('showZoomControls') }
</Typography>
</MenuItem>
<Divider />
<MenuItem
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment