mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 13:44:42 +08:00
Add wp_set_script_translations to settings module
This commit is contained in:
parent
be6cbd465f
commit
25709e2f8d
1 changed files with 15 additions and 4 deletions
|
@ -106,7 +106,11 @@ class SettingsModule implements ServiceModule, ExecutableModule {
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
wp_enqueue_script( 'ppcp-switch-settings-ui' );
|
wp_enqueue_script( 'ppcp-switch-settings-ui','',['wp-i18n'] );
|
||||||
|
wp_set_script_translations(
|
||||||
|
'ppcp-switch-settings-ui',
|
||||||
|
'woocommerce-paypal-payments',
|
||||||
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -159,7 +163,11 @@ class SettingsModule implements ServiceModule, ExecutableModule {
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
wp_enqueue_script( 'ppcp-admin-settings' );
|
wp_enqueue_script('ppcp-admin-settings', '', ['wp-i18n']);
|
||||||
|
wp_set_script_translations(
|
||||||
|
'ppcp-admin-settings',
|
||||||
|
'woocommerce-paypal-payments',
|
||||||
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Require resolves.
|
* Require resolves.
|
||||||
|
@ -198,11 +206,14 @@ class SettingsModule implements ServiceModule, ExecutableModule {
|
||||||
wp_enqueue_script(
|
wp_enqueue_script(
|
||||||
'ppcp-paylater-configurator-lib',
|
'ppcp-paylater-configurator-lib',
|
||||||
'https://www.paypalobjects.com/merchant-library/merchant-configurator.js',
|
'https://www.paypalobjects.com/merchant-library/merchant-configurator.js',
|
||||||
array(),
|
['wp-i18n'],
|
||||||
$script_asset_file['version'],
|
$script_asset_file['version'],
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
wp_set_script_translations(
|
||||||
|
'ppcp-paylater-configurator-lib',
|
||||||
|
'woocommerce-paypal-payments',
|
||||||
|
);
|
||||||
$script_data['PcpPayLaterConfigurator'] = array(
|
$script_data['PcpPayLaterConfigurator'] = array(
|
||||||
'config' => array(),
|
'config' => array(),
|
||||||
'merchantClientId' => $settings->get( 'client_id' ),
|
'merchantClientId' => $settings->get( 'client_id' ),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue