diff --git a/common/dialogs/panel_hotkeys_editor.cpp b/common/dialogs/panel_hotkeys_editor.cpp index 640b79007b..4733f80ef6 100644 --- a/common/dialogs/panel_hotkeys_editor.cpp +++ b/common/dialogs/panel_hotkeys_editor.cpp @@ -224,7 +224,6 @@ void PANEL_HOTKEYS_EDITOR::dumpHotkeys() wxFileName fn( filename ); - LOCALE_IO locale; wxFFileOutputStream fileStream( fn.GetFullPath(), "w" ); wxTextOutputStream stream( fileStream ); @@ -237,7 +236,7 @@ void PANEL_HOTKEYS_EDITOR::dumpHotkeys() stream << wxT( "[width=\"100%\",options=\"header\",cols=\"20%,15%,65%\"]" ) << endl; stream << wxT( "|===" ) << endl; - stream << wxT( "| Action | Default Hotkey | Description" ) << endl; + stream << _( "| Action | Default Hotkey | Description" ) << endl; for( HOTKEY& hk : section.m_HotKeys ) {