|
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 GetResponse API Key? More info' ), |
|
9
|
apiLinkLabel: __( 'here' ), |
|
10
|
apiLink: 'https://app.getresponse.com/api' |
|
11
|
}; |
|
12
|
|
|
13
|
export { label, help };
|