Add missing translation string

This commit is contained in:
Seth Hillbrand 2022-12-12 13:07:53 -08:00
parent 4fe35d0df1
commit 413637b732
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ void DIALOG_SIM_MODEL<T_symbol, T_field>::updateIbisWidgets()
m_ibisPinLabel->Show( isIbisLoaded() ); m_ibisPinLabel->Show( isIbisLoaded() );
m_differentialCheckbox->Show( isIbisLoaded() && modelkibis && modelkibis->CanDifferential() ); m_differentialCheckbox->Show( isIbisLoaded() && modelkibis && modelkibis->CanDifferential() );
m_modelNameLabel->SetLabel( isIbisLoaded() ? "Component:" : "Model:" ); m_modelNameLabel->SetLabel( isIbisLoaded() ? _( "Component:" ) : _( "Model:" ) );
} }