Browse Source

Fix capitalization of program name in PCM

newinvert
Ian McInerney 2 years ago
parent
commit
e72f563033
  1. 2
      kicad/pcm/dialogs/panel_packages_view.cpp
  2. 2
      kicad/pcm/pcm_task_manager.cpp

2
kicad/pcm/dialogs/panel_packages_view.cpp

@ -607,7 +607,7 @@ void PANEL_PACKAGES_VIEW::OnVersionActionClicked( wxCommandEvent& event )
wxCHECK_RET( ver_it != package.versions.end(), "Could not find package version" );
if( !ver_it->compatible
&& wxMessageBox( _( "This package version is incompatible with your kicad version or "
&& wxMessageBox( _( "This package version is incompatible with your KiCad version or "
"platform. Are you sure you want to install it anyway?" ),
_( "Install package" ), wxICON_EXCLAMATION | wxYES_NO, this )
== wxNO )

2
kicad/pcm/pcm_task_manager.cpp

@ -380,7 +380,7 @@ PCM_TASK_MANAGER::STATUS PCM_TASK_MANAGER::InstallFromFile( wxWindow* aPar
}
if( !package.versions[0].compatible
&& wxMessageBox( _( "This package version is incompatible with your kicad version or "
&& wxMessageBox( _( "This package version is incompatible with your KiCad version or "
"platform. Are you sure you want to install it anyway?" ),
_( "Install package" ), wxICON_EXCLAMATION | wxYES_NO, aParent )
== wxNO )

Loading…
Cancel
Save