summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/renderer/components/Settings.tsx9
1 files changed, 2 insertions, 7 deletions
diff --git a/gui/src/renderer/components/Settings.tsx b/gui/src/renderer/components/Settings.tsx
index 26d40fb134..779814d3f4 100644
--- a/gui/src/renderer/components/Settings.tsx
+++ b/gui/src/renderer/components/Settings.tsx
@@ -1,6 +1,6 @@
import { useCallback } from 'react';
-import { colors } from '../../config.json';
+import { colors, strings } from '../../config.json';
import { messages } from '../../shared/gettext';
import { getDownloadUrl } from '../../shared/version';
import { useAppContext } from '../context';
@@ -131,12 +131,7 @@ function SplitTunnelingButton() {
return (
<Cell.CellNavigationButton onClick={navigate}>
- <Cell.Label>
- {
- // TRANSLATORS: Navigation button to the 'Split tunneling' view
- messages.pgettext('settings-view', 'Split tunneling')
- }
- </Cell.Label>
+ <Cell.Label>{strings.splitTunneling}</Cell.Label>
</Cell.CellNavigationButton>
);
}