PCM strings.

This commit is contained in:
Jeff Young 2021-11-12 20:48:42 +00:00
parent 6cec58cf75
commit 84a9732497
3 changed files with 5 additions and 5 deletions

View File

@ -129,8 +129,8 @@ DIALOG_PCM::DIALOG_PCM( wxWindow* parent ) : DIALOG_PCM_BASE( parent )
// We use a sdbSizer to get platform-dependent ordering of the action buttons, but
// that requires us to correct the button labels here.
m_sdbSizer1OK->SetLabel( _( "Close" ) );
m_sdbSizer1Cancel->SetLabel( _( "Discard Changes" ) );
m_sdbSizer1Apply->SetLabel( _( "Apply Changes" ) );
m_sdbSizer1Cancel->SetLabel( _( "Discard Pending Changes" ) );
m_sdbSizer1Apply->SetLabel( _( "Apply Pending Changes" ) );
m_sdbSizer1->Layout();
SetDefaultItem( m_sdbSizer1OK );

View File

@ -295,7 +295,7 @@
<property name="gripper">0</property>
<property name="hidden">0</property>
<property name="id">wxID_ANY</property>
<property name="label">Manage</property>
<property name="label">Manage...</property>
<property name="margins"></property>
<property name="markup">0</property>
<property name="max_size"></property>

View File

@ -94,11 +94,11 @@ void PANEL_PACKAGE::SetState( PCM_PACKAGE_STATE aState )
m_button->Enable();
break;
case PCM_PACKAGE_STATE::PPS_PENDING_INSTALL:
m_button->SetLabel( _( "Pending install" ) );
m_button->SetLabel( _( "Install Pending" ) );
m_button->Disable();
break;
case PCM_PACKAGE_STATE::PPS_PENDING_UNINSTALL:
m_button->SetLabel( _( "Pending uninstall" ) );
m_button->SetLabel( _( "Uninstall Pending" ) );
m_button->Disable();
break;
}