Skip to content

Commit

Permalink
Dev Some text fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Aug 24, 2022
1 parent 7bd6d49 commit 9d62ca4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -12,7 +12,7 @@
<label class="col-sm-4 control-label"><?php eT("Random order:"); ?></label>
<div class="col-sm-8">
<select class="form-control custom-data attributes-to-update" id="random_order" name="random_order" required>
<option value="" selected="selected"><?php eT('Please select and option');?></option>
<option value="" selected="selected"><?php eT('Please select an option');?></option>
<option value="0"><?php eT('Off');?></option>
<option value="1"><?php eT('Randomize on each page load');?></option>
</select>
Expand Down
Expand Up @@ -29,14 +29,14 @@
'action' => 'resend',
'url' => App()->createUrl('failedEmail/resend/', ['surveyid' => $surveyId]),
'iconClasses' => 'fa fa-envelope',
'text' => gT('Resend e-mails'),
'text' => gT('Resend emails'),
'grid-reload' => 'yes',
'disabled' => !$permissions['update'],
//modal
'actionType' => 'modal',
'modalType' => 'cancel-resend',
'keepopen' => 'yes',
'sModalTitle' => gT('Resend selected e-mails'),
'sModalTitle' => gT('Resend selected emails'),
'htmlModalBody' => App()->getController()->renderPartial('/failedEmail/partials/modal/resend_body', [], true),
'aCustomDatas' => [
['name' => 'surveyid', 'value' => $surveyId],
Expand Down
Expand Up @@ -3,7 +3,7 @@
* @var $this FailedEmailController
* @var $failedEmail FailedEmail
**/ ?>
<?= App()->getController()->renderPartial('/layouts/partial_modals/modal_header', ['modalTitle' => gT('Email Content')]) ?>
<?= App()->getController()->renderPartial('/layouts/partial_modals/modal_header', ['modalTitle' => gT('Email content')]) ?>
<div id="failedemail-action-modal--emailcontent" class="modal-body">
<?= $failedEmail->getRawMailBody() ?>
</div>
Expand Down

0 comments on commit 9d62ca4

Please sign in to comment.