Skip to content

Commit f2d2bb5

Browse files
committed
MAGETWO-57744: Configure button for Paypal solutions is shifted after changing window width
- camelize "Vault Enabled"
1 parent 52594a9 commit f2d2bb5

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

app/code/Magento/Braintree/etc/adminhtml/system.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</requires>
3434
</field>
3535
<field id="braintree_cc_vault_active" translate="label" type="select" sortOrder="12" showInDefault="1" showInWebsite="1" showInStore="0">
36-
<label>Vault enabled</label>
36+
<label>Vault Enabled</label>
3737
<source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
3838
<config_path>payment/braintree_cc_vault/active</config_path>
3939
<requires>
@@ -155,7 +155,7 @@
155155
<comment>It is recommended to set this value to "PayPal" per store views.</comment>
156156
</field>
157157
<field id="braintree_paypal_vault_active" translate="label" type="select" sortOrder="21" showInDefault="1" showInWebsite="1" showInStore="0">
158-
<label>Vault enabled</label>
158+
<label>Vault Enabled</label>
159159
<source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
160160
<config_path>payment/braintree_paypal_vault/active</config_path>
161161
<requires>

app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
</requires>
8585
</field>
8686
<field id="payflowpro_cc_vault_active" translate="label" type="select" sortOrder="22" showInDefault="1" showInWebsite="1" showInStore="0">
87-
<label>Vault enabled</label>
87+
<label>Vault Enabled</label>
8888
<source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
8989
<config_path>payment/payflowpro_cc_vault/active</config_path>
9090
<attribute type="shared">1</attribute>

dev/tests/functional/tests/app/Magento/Braintree/Test/Block/System/Config/Braintree.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Braintree extends Block
3333
private $enablers = [
3434
'Enable this Solution' => "#payment_us_braintree_section_braintree_active",
3535
'Enable PayPal through Braintree' => '#payment_us_braintree_section_braintree_active_braintree_paypal',
36-
'Vault enabled' => '#payment_us_braintree_section_braintree_braintree_cc_vault_active'
36+
'Vault Enabled' => '#payment_us_braintree_section_braintree_braintree_cc_vault_active'
3737
];
3838

3939
/**

dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PayflowPro.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class PayflowPro extends Block
4242
'_payflow_required_enable_paypal_payflow',
4343
'Enable PayPal Credit' => '#payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal' .
4444
'_payflow_required_enable_express_checkout_bml_payflow',
45-
'Vault enabled' => '#payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_' .
45+
'Vault Enabled' => '#payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_' .
4646
'payflow_required_payflowpro_cc_vault_active'
4747
];
4848

dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PaymentsPro.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class PaymentsPro extends Block
4242
'_payflow',
4343
'Enable PayPal Credit' => '#payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_enable_' .
4444
'express_checkout_bml_payflow',
45-
'Vault enabled' => '#payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_payflowpro_cc_vault' .
45+
'Vault Enabled' => '#payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_payflowpro_cc_vault' .
4646
'_active'
4747
];
4848

dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPayflowProConfigStep.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ private function enablePayflowPro()
130130
$this->payflowProConfigBlock->enablePayflowPro();
131131
$this->assertFieldsAreActive->processAssert(
132132
$this->systemConfigEditSectionPayment,
133-
[$enablers['Enable this Solution'], $enablers['Enable PayPal Credit'], $enablers['Vault enabled']]
133+
[$enablers['Enable this Solution'], $enablers['Enable PayPal Credit'], $enablers['Vault Enabled']]
134134
);
135135
$this->assertFieldsAreEnabled->processAssert(
136136
$this->systemConfigEditSectionPayment,

dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPaymentsProConfigStep.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ private function enablePaymentsPro()
130130
$this->paymentsProConfigBlock->enablePaymentsPro();
131131
$this->assertFieldsAreActive->processAssert(
132132
$this->systemConfigEditSectionPayment,
133-
[$enablers['Enable this Solution'], $enablers['Enable PayPal Credit'], $enablers['Vault enabled']]
133+
[$enablers['Enable this Solution'], $enablers['Enable PayPal Credit'], $enablers['Vault Enabled']]
134134
);
135135
$this->assertFieldsAreEnabled->processAssert(
136136
$this->systemConfigEditSectionPayment,

dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/_files/expected/config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
</requires>
116116
</field>
117117
<field id="payflowpro_cc_vault_active" translate="label" type="select" sortOrder="22" showInDefault="1" showInWebsite="1" showInStore="0">
118-
<label>Vault enabled</label>
118+
<label>Vault Enabled</label>
119119
<source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
120120
<config_path>payment/payflowpro_cc_vault/active</config_path>
121121
<attribute type="shared">1</attribute>

0 commit comments

Comments
 (0)