PCM strings.
This commit is contained in:
parent
6cec58cf75
commit
84a9732497
|
@ -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 );
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue