diff --git a/app/plugins/CoreEnroller/templates/InvitationAccepters/dispatch.inc b/app/plugins/CoreEnroller/templates/InvitationAccepters/dispatch.inc index 9c8b2ad5..c3f70458 100644 --- a/app/plugins/CoreEnroller/templates/InvitationAccepters/dispatch.inc +++ b/app/plugins/CoreEnroller/templates/InvitationAccepters/dispatch.inc @@ -39,16 +39,28 @@ if($vv_action == 'dispatch') { print $this->element('form/listItem', [ 'arguments' => [ 'fieldName' => 'accepted', - 'fieldLabel' => "Accept this invitation?", + 'fieldLabel' => __d('operation','accept.invitation'), 'fieldOptions' => [ 'type' => 'radio', 'options' => [ - ['value' => '1', 'text' => 'Accept'], - ['value' => '0', 'text' => 'Decline'], + ['value' => '1', 'text' => __d('operation','accept')], + ['value' => '0', 'text' => __d('operation','decline')], ], 'empty' => false, 'required' => true, - 'class' => 'crazything' + 'class' => 'form-check-input' ] ]]); +?> + +