PluginProbe ʕ •ᴥ•ʔ
JetFormBuilder — Dynamic Blocks Form Builder / 3.1.3
JetFormBuilder — Dynamic Blocks Form Builder v3.1.3
3.6.3.1 3.6.3 3.6.2.2 3.6.2.1 3.6.2 3.6.1.1 3.6.1 3.6.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.1.0 2.1.1 2.1.10 2.1.11 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 3.0.0 3.0.0.1 3.0.0.2 3.0.0.3 3.0.1 3.0.1.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.0.1 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.3.2 3.3.3 3.3.3.1 3.3.4 3.3.4.1 3.3.4.2 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.5.1 3.4.5.2 3.4.6 3.4.7 3.4.7.1 3.5.0 3.5.1 3.5.1.1 3.5.1.2 3.5.2 3.5.2.1 3.5.3 3.5.4 3.5.5 3.5.6 3.5.6.1 3.5.6.2 3.5.6.3 3.6.0
jetformbuilder / assets / src / admin / pages / jfb-settings / tabs / options / source.js
jetformbuilder / assets / src / admin / pages / jfb-settings / tabs / options Last commit date
OptionsTab.vue 2 years ago index.js 2 years ago source.js 2 years ago
source.js
48 lines
1 const { __ } = wp.i18n;
2
3 const label = {
4 enable_dev_mode: __( 'Enable Dev-Mode', 'jet-form-builder' ),
5 disable_next_button: __( 'Disable "Next" button', 'jet-form-builder' ),
6 clear_on_uninstall: __(
7 'Clear plugin data after the uninstall',
8 'jet-form-builder',
9 ),
10 scroll_on_next: __(
11 'Scroll to the top on page change',
12 'jet-form-builder',
13 ),
14 auto_focus: __(
15 'Automatic focus',
16 'jet-form-builder',
17 ),
18 };
19
20 const help = {
21 enable_dev_mode: __(
22 'With developer mode enabled, errors from the form will be saved.',
23 'jet-form-builder',
24 ),
25 disable_next_button: __(
26 `If this option is active, the Next button in a multi-step
27 form won't become clickable until all the required fields are completed.`,
28 'jet-form-builder',
29 ),
30 clear_on_uninstall: __(
31 `If this option is active, when the plugin is deleted,
32 all custom sql-tables, all options and files will also be deleted.
33 In particular, those that were uploaded using Media Field.`,
34 'jet-form-builder',
35 ),
36 scroll_on_next: __(
37 `Automatic scrolling to the top of the form when
38 switching between form pages.`,
39 'jet-form-builder',
40 ),
41 auto_focus: __(
42 `Indicates invalid field and prevents the user from
43 going to the next page or submitting the form unless filled.`,
44 'jet-form-builder',
45 ),
46 };
47
48 export { label, help };