Fix generation of translated hotkey tables

This commit is contained in:
Jon Evans 2021-02-20 13:55:10 -05:00
parent 7b64389062
commit f76e54bd8b
1 changed files with 1 additions and 2 deletions

View File

@ -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 )
{