From b74f1498791808c9880f11a2d5f3e52b8baba2fc Mon Sep 17 00:00:00 2001 From: kodxana Date: Tue, 1 Oct 2019 22:52:24 +0200 Subject: [PATCH] Fixed header Light/Dark for translation --- src/ui/component/header/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/component/header/view.jsx b/src/ui/component/header/view.jsx index 46481383e..af57ab392 100644 --- a/src/ui/component/header/view.jsx +++ b/src/ui/component/header/view.jsx @@ -157,7 +157,7 @@ const Header = (props: Props) => { - {currentTheme === 'light' ? 'Dark' : 'Light'} + {currentTheme === 'light' ? __('Dark') : __('Light')}