Skip to content
This repository has been archived by the owner on Apr 26, 2023. It is now read-only.

Commit

Permalink
#36717 - Replace typos, change values of checkobxes
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip Kudła committed Dec 8, 2017
1 parent 78e923c commit 202be6b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Magento_Customer/templates/form/edit.phtml
Expand Up @@ -41,7 +41,7 @@
name="change_email"
id="change-email"
data-role="change-email"
value="1"
value="changeEmail"
title="<?= /* @escapeNotVerified */ __('Change Email') ?>"
class="checkbox__field"
/>
Expand All @@ -60,7 +60,7 @@
name="change_password"
id="change-password"
data-role="change-password"
value="1"
value="changePassword"
title="<?= /* @escapeNotVerified */ __('Change Password') ?>"
<?php if ($block->getChangePassword()): ?>
checked="checked"
Expand Down Expand Up @@ -196,7 +196,7 @@
require([
"jquery",
"mage/mage"
], function($){
], function($) {
var dataForm = $('#form-validate');
var ignore = <?= /* @escapeNotVerified */ $_dob->isEnabled() ? '\'input[id$="full"]\'' : 'null'; ?>;

Expand Down
Expand Up @@ -41,7 +41,7 @@
name="change_email"
id="change-email"
data-role="change-email"
value="1"
value="changeEmail"
title="<?= /* @escapeNotVerified */ __('Change Email') ?>"
class="checkbox__field"
/>
Expand All @@ -60,7 +60,7 @@
name="change_password"
id="change-password"
data-role="change-password"
value="1"
value="changePassword"
title="<?= /* @escapeNotVerified */ __('Change Password') ?>"
<?php if ($block->getChangePassword()): ?>
checked="checked"
Expand Down
10 changes: 5 additions & 5 deletions Magento_Reward/templates/customer/reward/history.phtml
Expand Up @@ -42,19 +42,19 @@
<tbody>
<?php foreach ($history as $item): ?>
<tr>
<td data-th="<?= /* @escapeNotVerified */ $block->escapeHtml(__('Balance')); ?>" classs="col balance">
<td data-th="<?= /* @escapeNotVerified */ $block->escapeHtml(__('Balance')); ?>" class="col balance">
<?= /* @escapeNotVerified */ $block->getPointsBalance($item) ?>
</td>

<td data-th="<?= /* @escapeNotVerified */ $block->escapeHtml(__('Amount')); ?>" classs="col amount">
<td data-th="<?= /* @escapeNotVerified */ $block->escapeHtml(__('Amount')); ?>" class="col amount">
<?= /* @escapeNotVerified */ $block->getCurrencyBalance($item) ?>
</td>

<td data-th="<?= /* @escapeNotVerified */ $block->escapeHtml(__('Points')); ?>" classs="col points">
<td data-th="<?= /* @escapeNotVerified */ $block->escapeHtml(__('Points')); ?>" class="col points">
<?= /* @escapeNotVerified */ $block->getPointsDelta($item) ?>
</td>

<td data-th="<?= /* @escapeNotVerified */ $block->escapeHtml(__('Reason')); ?>" classs="col reason">
<td data-th="<?= /* @escapeNotVerified */ $block->escapeHtml(__('Reason')); ?>" class="col reason">
<?= /* @escapeNotVerified */ $block->escapeHtml($block->getMessage($item)) ?>

<?php if ($explanation = $block->getExplanation($item)): ?>
Expand All @@ -64,7 +64,7 @@
<?php endif;?>
</td>

<td data-th="<?= /* @escapeNotVerified */ $block->escapeHtml(__('Date')); ?>" classs="col date">
<td data-th="<?= /* @escapeNotVerified */ $block->escapeHtml(__('Date')); ?>" class="col date">
<span class="datetime">
<?= /* @escapeNotVerified */ $block->getDate($item) ?>
</span>
Expand Down
2 changes: 1 addition & 1 deletion Magento_Reward/templates/customer/reward/info.phtml
Expand Up @@ -11,7 +11,7 @@
?>
<div class="information">
<div class="dashboard-table__header">
<h3 class="hdashboard-table__title">
<h3 class="dashboard-table__title">
<?= /* @escapeNotVerified */ __('Reward points balance Information'); ?>
</h3>

Expand Down

0 comments on commit 202be6b

Please sign in to comment.