#605920 by dww and Bojhan: Fix all buttons in update manager workflow to use 'Sentence case' labels.
parent
75f243f55c
commit
f4d17e018c
|
@ -65,9 +65,9 @@ function authorize_filetransfer_form($form_state) {
|
|||
);
|
||||
|
||||
$form['submit_process'] = array(
|
||||
'#name' => 'process_updates', // This is later changed in JS.
|
||||
'#name' => 'process_updates',
|
||||
'#type' => 'submit',
|
||||
'#value' => t('Process Updates'), // As is this. @see authorize.js
|
||||
'#value' => t('Continue'),
|
||||
'#weight' => 100,
|
||||
'#attributes' => array('style' => 'display:none'),
|
||||
);
|
||||
|
|
|
@ -132,7 +132,7 @@ function update_manager_update_form($form, $form_state = array(), $context) {
|
|||
switch ($project['status']) {
|
||||
case UPDATE_NOT_SECURE:
|
||||
case UPDATE_REVOKED:
|
||||
$entry['title'] .= ' ' . t('(Security Update)');
|
||||
$entry['title'] .= ' ' . t('(Security update)');
|
||||
$entry['#weight'] = -2;
|
||||
$type = 'security';
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue