Fix capitalization of program name in PCM
This commit is contained in:
parent
b2cc4b8310
commit
e72f563033
|
@ -607,7 +607,7 @@ void PANEL_PACKAGES_VIEW::OnVersionActionClicked( wxCommandEvent& event )
|
||||||
wxCHECK_RET( ver_it != package.versions.end(), "Could not find package version" );
|
wxCHECK_RET( ver_it != package.versions.end(), "Could not find package version" );
|
||||||
|
|
||||||
if( !ver_it->compatible
|
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?" ),
|
"platform. Are you sure you want to install it anyway?" ),
|
||||||
_( "Install package" ), wxICON_EXCLAMATION | wxYES_NO, this )
|
_( "Install package" ), wxICON_EXCLAMATION | wxYES_NO, this )
|
||||||
== wxNO )
|
== wxNO )
|
||||||
|
|
|
@ -380,7 +380,7 @@ PCM_TASK_MANAGER::STATUS PCM_TASK_MANAGER::InstallFromFile( wxWindow* aPar
|
||||||
}
|
}
|
||||||
|
|
||||||
if( !package.versions[0].compatible
|
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?" ),
|
"platform. Are you sure you want to install it anyway?" ),
|
||||||
_( "Install package" ), wxICON_EXCLAMATION | wxYES_NO, aParent )
|
_( "Install package" ), wxICON_EXCLAMATION | wxYES_NO, aParent )
|
||||||
== wxNO )
|
== wxNO )
|
||||||
|
|
Loading…
Reference in New Issue