source.js
13 lines
| 1 | const { __ } = wp.i18n; |
| 2 | |
| 3 | const label = { |
| 4 | api_key: __( 'API Key', 'jet-form-builder' ), |
| 5 | }; |
| 6 | |
| 7 | const help = { |
| 8 | apiPref: __( 'How to obtain your MailChimp API Key? More info' ), |
| 9 | apiLinkLabel: __( 'here' ), |
| 10 | apiLink: 'https://mailchimp.com/help/about-api-keys/' |
| 11 | }; |
| 12 | |
| 13 | export { label, help }; |