Minor fixes in strings and I18N fix.

This commit is contained in:
jean-pierre charras 2018-01-06 10:57:46 +01:00
parent cb60da3bc5
commit b98f6a2fd1
4 changed files with 4 additions and 4 deletions

View File

@ -177,7 +177,7 @@ void LIB_VIEW_FRAME::DisplayLibInfos()
{
const SYMBOL_LIB_TABLE_ROW* row = Prj().SchSymbolLibTable()->FindRow( m_libraryName );
wxString title = wxString::Format( _( "Symbol Library Browser \u2014 %s" ),
wxString title = wxString::Format( _( "Symbol Library Browser -- %s" ),
row ? row->GetFullURI() : _( "no library selected" ) );
SetTitle( title );
}

View File

@ -216,7 +216,7 @@ void GERBVIEW_FRAME::ReCreateMenuBar()
configMenu->Append(
new wxMenuItem( configMenu, ID_MENU_CANVAS_LEGACY,
text, _( "Use legacy graphics mode (not all features will be available" ),
text, _( "Use legacy graphics mode (not all features will be available)" ),
wxITEM_RADIO ) );
text = AddHotkeyName( _( "Modern (&Accelerated)" ), GerbviewHokeysDescr,

View File

@ -259,7 +259,7 @@ void FOOTPRINT_EDIT_FRAME::ReCreateMenuBar()
viewMenu->Append(
new wxMenuItem( viewMenu, ID_MENU_CANVAS_LEGACY,
text, _( "Use legacy graphics mode (not all features will be available" ),
text, _( "Use legacy graphics mode (not all features will be available)" ),
wxITEM_RADIO ) );
text = AddHotkeyName( _( "Modern (&Accelerated)" ), m_hotkeysDescrList,

View File

@ -564,7 +564,7 @@ void prepareViewMenu( wxMenu* aParentMenu )
aParentMenu->Append(
new wxMenuItem( aParentMenu, ID_MENU_CANVAS_LEGACY,
text, _( "Use legacy graphics mode (not all features will be available" ),
text, _( "Use legacy graphics mode (not all features will be available)" ),
wxITEM_RADIO ) );
text = AddHotkeyName( _( "Modern (&Accelerated)" ), g_Pcbnew_Editor_Hokeys_Descr,