Skip to content

Commit 6ab1020

Browse files
Added language translation in template files
1 parent b1f7b25 commit 6ab1020

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

app/code/Magento/Braintree/i18n/en_US.csv

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,4 +165,5 @@ Debug,Debug
165165
"credit_card","Credit card"
166166
"apple_pay_card","Apple pay card"
167167
"android_pay_card","Android pay card"
168-
"Accept credit/debit cards and PayPal in your Magento store.<br/>No setup or monthly fees and your customers never leave your store to complete the purchase.","Accept credit/debit cards and PayPal in your Magento store.<br/>No setup or monthly fees and your customers never leave your store to complete the purchase."
168+
"Accept credit/debit cards and PayPal in your Magento store.<br/>No setup or monthly fees and your customers never leave your store to complete the purchase.","Accept credit/debit cards and PayPal in your Magento store.<br/>No setup or monthly fees and your customers never leave your store to complete the purchase."
169+
"Save for later use.","Save for later use."

app/code/Magento/Braintree/view/adminhtml/templates/form/cc.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ $ccType = $block->getInfoData('cc_type');
8484
name="payment[is_active_payment_token_enabler]"
8585
class="admin__control-checkbox"/>
8686
<label class="label" for="<?php /* @noEscape */ echo $code; ?>_vault">
87-
<span><?php echo $block->escapeHtml('Save for later use.'); ?></span>
87+
<span><?php echo $block->escapeHtml(__('Save for later use.')); ?></span>
8888
</label>
8989
</div>
9090
<?php endif; ?>

app/code/Magento/Paypal/i18n/en_US.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -680,3 +680,4 @@ User,User
680680
"payflowpro","Payflow Pro"
681681
"Payments Pro","Payments Pro"
682682
"Website Payments Pro","Website Payments Pro"
683+
"Save for later use.","Save for later use."

app/code/Magento/Paypal/view/adminhtml/templates/transparent/form.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ $ccExpMonth = $block->getInfoData('cc_exp_month');
135135
name="payment[is_active_payment_token_enabler]"
136136
class="admin__control-checkbox"/>
137137
<label class="label" for="<?php /* @noEscape */ echo $code; ?>_vault">
138-
<span><?php echo $block->escapeHtml('Save for later use.'); ?></span>
138+
<span><?php echo $block->escapeHtml(__('Save for later use.')); ?></span>
139139
</label>
140140
</div>
141141
<?php endif; ?>

0 commit comments

Comments
 (0)