Form Maker by WD – user-friendly drag & drop Form Builder plugin - Version 1.12.11

Version Description

  • Fixed: Preview does not show with widget on page with some Wordpress themes.
  • Fixed: Do not check conditionally hidden required fields.
  • Fixed: Not embedded forms do not show on form preview page.
  • Fixed: Post/page search on display options pages.
  • Fixed: Tooltip in "Add query" popup.
  • Fixed: Insert demo forms only on activate.
  • Changed: Edit country list popup design.
  • Fixed: Emailing fields with apostrophes in label.
  • Fixed: Popup forms background.
  • Changed: Czech translation.
  • Changed: Italian translation.
  • Fixed: Matrix field in email.
  • Changed: Disable widget in preview page.
  • Fixed: Widget functionality with Contact Form Maker.
  • Fixed: User manual links.
  • Fixed: Default values for multiple and single choices.
  • Fixed: Add new theme.
Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Form Maker by WD – user-friendly drag & drop Form Builder plugin
Version 1.12.11
Comparing to
See all releases

Code changes from version 1.12.10 to 1.12.11

admin/controllers/Manage_fm.php CHANGED
@@ -124,7 +124,7 @@ class FMControllerManage_fm {
124
 
125
  $params['actions'] = $this->actions;
126
  $params['page'] = $this->page;
127
- $params['form_preview_link'] = $this->model->get_form_preview_post();
128
 
129
  $this->view->display($params);
130
  }
@@ -312,12 +312,12 @@ class FMControllerManage_fm {
312
  $params['id'] = $backup_id;
313
  $params['row'] = $this->model->get_row_data_new($backup_id);
314
  $params['page_url'] = $this->page_url;
315
- // Check if Stripe add-on is active.
316
- $stripe_addon = array('enable' => 0);
317
- $addon_stripe = $this->get_stripe_addon(0);
318
- if( !empty($addon_stripe['html']) ) {
319
- $stripe_addon = $addon_stripe;
320
- }
321
  $params['stripe_addon'] = $stripe_addon;
322
 
323
  $params['themes'] = $this->model->get_theme_rows_data();
124
 
125
  $params['actions'] = $this->actions;
126
  $params['page'] = $this->page;
127
+ $params['form_preview_link'] = $this->model->get_form_preview_post();
128
 
129
  $this->view->display($params);
130
  }
312
  $params['id'] = $backup_id;
313
  $params['row'] = $this->model->get_row_data_new($backup_id);
314
  $params['page_url'] = $this->page_url;
315
+ // Check if Stripe add-on is active.
316
+ $stripe_addon = array('enable' => 0);
317
+ $addon_stripe = $this->get_stripe_addon(0);
318
+ if( !empty($addon_stripe['html']) ) {
319
+ $stripe_addon = $addon_stripe;
320
+ }
321
  $params['stripe_addon'] = $stripe_addon;
322
 
323
  $params['themes'] = $this->model->get_theme_rows_data();
admin/controllers/Themes_fm.php CHANGED
@@ -208,11 +208,12 @@ class FMControllerThemes_fm {
208
  *
209
  * @param int $id
210
  */
211
- public function edit($id = 0 ) {
212
  $params = array();
213
  $params['id'] = (int) $id;
214
  $params['row'] = $this->model->get_row_data($params['id'], FALSE);
215
- if ( empty($params['row']->id) ) {
 
216
  WDW_FM_Library::fm_redirect( add_query_arg( array('page' => $this->page, 'task' => 'display'), admin_url('admin.php') ) );
217
  }
218
  $params['page_title'] = $params['row']->title;
@@ -295,6 +296,7 @@ class FMControllerThemes_fm {
295
  $font_families = $basic_fonts + $google_fonts;
296
  $params['fonts'] = implode("|", str_replace(' ', '+', $google_fonts));
297
  $params['all_params'] = $this->all_params($params['param_values'], $borders, $border_types, $font_weights, $position_types, $aligns, $bg_repeats, $font_families);
 
298
  $this->view->edit($params);
299
  }
300
 
@@ -2923,21 +2925,11 @@ class FMControllerThemes_fm {
2923
  return $all_params;
2924
  }
2925
 
2926
- // TODO remove this function.
2927
- public function save() {
2928
- $message = $this->save_db();
2929
- $page = WDW_FM_Library::get('page');
2930
- WDW_FM_Library::fm_redirect(add_query_arg(array(
2931
- 'page' => $page,
2932
- 'task' => 'display',
2933
- 'message' => $message,
2934
- ), admin_url('admin.php')));
2935
- }
2936
-
2937
  public function apply() {
2938
- $message = $this->save_db();
2939
- $id = (int) $this->model->get_max_id();
2940
- $current_id = (int) WDW_FM_Library::get('current_id', $id);
2941
  $page = WDW_FM_Library::get('page');
2942
  $active_tab = WDW_FM_Library::get('active_tab');
2943
  $pagination = WDW_FM_Library::get('pagination-type');
@@ -2945,55 +2937,19 @@ class FMControllerThemes_fm {
2945
  WDW_FM_Library::fm_redirect(add_query_arg(array(
2946
  'page' => $page,
2947
  'task' => 'edit',
2948
- 'current_id' => $current_id,
2949
- 'message' => $message,
2950
  'active_tab' => $active_tab,
2951
  'pagination' => $pagination,
2952
  'form_type' => $form_type,
2953
  ), admin_url('admin.php')));
2954
  }
2955
 
2956
- public function copy_themes() {
2957
- global $wpdb;
2958
- $theme_ids_col = $this->model->get_all_ids();
2959
- foreach ( $theme_ids_col as $theme_id ) {
2960
- if ( isset($_POST['check_' . $theme_id]) ) {
2961
- $theme = $this->model->get_row_data($theme_id, 0);
2962
- $title = $theme->title;
2963
- $params = $theme->css;
2964
- $version = $theme->version;
2965
- $save = $this->model->insert_theme(array(
2966
- 'title' => $title,
2967
- 'css' => $params,
2968
- 'version' => $version,
2969
- 'default' => 0,
2970
- ));
2971
- }
2972
- }
2973
- if ( $save !== FALSE ) {
2974
- $message = 1;
2975
- }
2976
- else {
2977
- $message = 2;
2978
- }
2979
- $page = WDW_FM_Library::get('page');
2980
- WDW_FM_Library::fm_redirect(add_query_arg(array(
2981
- 'page' => $page,
2982
- 'task' => 'display',
2983
- 'message' => $message,
2984
- ), admin_url('admin.php')));
2985
- }
2986
-
2987
- public function save_as_copy() {
2988
- $message = $this->save_db_as_copy();
2989
- $page = WDW_FM_Library::get('page');
2990
- WDW_FM_Library::fm_redirect(add_query_arg(array(
2991
- 'page' => $page,
2992
- 'task' => 'display',
2993
- 'message' => $message,
2994
- ), admin_url('admin.php')));
2995
- }
2996
-
2997
  public function save_db() {
2998
  global $wpdb;
2999
  $id = (int) WDW_FM_Library::get('current_id', 0);
@@ -3024,38 +2980,20 @@ class FMControllerThemes_fm {
3024
  $form_theme = json_decode(html_entity_decode($params), TRUE);
3025
  $model_frontend->create_css($id, $form_theme, $version == 1, TRUE);
3026
 
3027
- return 1;
3028
  }
3029
  else {
3030
- return 2;
3031
  }
 
3032
  }
3033
 
3034
- public function save_db_as_copy() {
3035
- $id = (int) WDW_FM_Library::get('current_id', 0);
3036
- $title = isset($_POST['title']) ? esc_html(stripslashes($_POST['title'])) : '';
3037
- $params = isset($_POST['params']) ? stripslashes(preg_replace("/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/", "\n", $_POST['params'])) : '';
3038
- $version = $this->model->get_theme_version($id);
3039
- $save = $this->model->insert_theme(array(
3040
- 'title' => $title,
3041
- 'css' => $params,
3042
- 'version' => $version,
3043
- 'default' => 0,
3044
- ));
3045
- if ( $save !== FALSE ) {
3046
- return 1;
3047
- }
3048
- else {
3049
- return 2;
3050
- }
3051
- }
3052
- /*
3053
- * Set default.
3054
- *
3055
- * @param int $id
3056
- */
3057
  public function setdefault( $id ) {
3058
- global $wpdb;
3059
  $this->model->update_formmaker_themes( array( 'default' => 0 ), array( 'default' => 1 ) );
3060
  $save = $this->model->update_formmaker_themes( array( 'default' => 1 ), array( 'id' => $id ) );
3061
  if ( $save !== FALSE ) {
208
  *
209
  * @param int $id
210
  */
211
+ public function edit($id = 0) {
212
  $params = array();
213
  $params['id'] = (int) $id;
214
  $params['row'] = $this->model->get_row_data($params['id'], FALSE);
215
+
216
+ if ( $id != 0 && empty($params['row']) ) {
217
  WDW_FM_Library::fm_redirect( add_query_arg( array('page' => $this->page, 'task' => 'display'), admin_url('admin.php') ) );
218
  }
219
  $params['page_title'] = $params['row']->title;
296
  $font_families = $basic_fonts + $google_fonts;
297
  $params['fonts'] = implode("|", str_replace(' ', '+', $google_fonts));
298
  $params['all_params'] = $this->all_params($params['param_values'], $borders, $border_types, $font_weights, $position_types, $aligns, $bg_repeats, $font_families);
299
+
300
  $this->view->edit($params);
301
  }
302
 
2925
  return $all_params;
2926
  }
2927
 
2928
+ /**
2929
+ * Save theme.
2930
+ */
 
 
 
 
 
 
 
 
2931
  public function apply() {
2932
+ $data = $this->save_db();
 
 
2933
  $page = WDW_FM_Library::get('page');
2934
  $active_tab = WDW_FM_Library::get('active_tab');
2935
  $pagination = WDW_FM_Library::get('pagination-type');
2937
  WDW_FM_Library::fm_redirect(add_query_arg(array(
2938
  'page' => $page,
2939
  'task' => 'edit',
2940
+ 'current_id' => $data['id'],
2941
+ 'message' => $data['msg'],
2942
  'active_tab' => $active_tab,
2943
  'pagination' => $pagination,
2944
  'form_type' => $form_type,
2945
  ), admin_url('admin.php')));
2946
  }
2947
 
2948
+ /**
2949
+ * Save theme to DB.
2950
+ *
2951
+ * @return array
2952
+ */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2953
  public function save_db() {
2954
  global $wpdb;
2955
  $id = (int) WDW_FM_Library::get('current_id', 0);
2980
  $form_theme = json_decode(html_entity_decode($params), TRUE);
2981
  $model_frontend->create_css($id, $form_theme, $version == 1, TRUE);
2982
 
2983
+ $msg = 1;
2984
  }
2985
  else {
2986
+ $msg = 2;
2987
  }
2988
+ return array('id' => $id, 'msg' => $msg);
2989
  }
2990
 
2991
+ /**
2992
+ * Set default.
2993
+ *
2994
+ * @param $id
2995
+ */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2996
  public function setdefault( $id ) {
 
2997
  $this->model->update_formmaker_themes( array( 'default' => 0 ), array( 'default' => 1 ) );
2998
  $save = $this->model->update_formmaker_themes( array( 'default' => 1 ), array( 'id' => $id ) );
2999
  if ( $save !== FALSE ) {
admin/controllers/Widget.php CHANGED
@@ -23,8 +23,29 @@ class FMControllerWidget extends WP_Widget {
23
  }
24
 
25
  public function widget( $args, $instance ) {
26
- require_once(WDFM()->plugin_dir . '/frontend/controllers/form_maker.php');
27
- $controller_class = 'FMControllerForm_maker';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  $controller = new $controller_class();
29
  $execute = $controller->execute($instance['form_id']);
30
  $this->view->widget($args, $instance, $execute);
23
  }
24
 
25
  public function widget( $args, $instance ) {
26
+ if( get_the_title() == 'Preview' && get_post_type() == 'form-maker' . WDFM()->plugin_postfix ) {
27
+ echo '<p><strong>' . __('Form Maker widget is not available in preview page.', WDFM()->prefix) . '</strong></p>';
28
+ return;
29
+ }
30
+ $contact_form_forms = explode(',', get_option('contact_form_forms'));
31
+ if ( !WDFM()->is_free || !in_array($instance['form_id'], $contact_form_forms) ) {
32
+ if ( function_exists('WDFM') ) {
33
+ require_once(WDFM()->plugin_dir . '/frontend/controllers/form_maker.php');
34
+ $controller_class = 'FMControllerForm_maker';
35
+ }
36
+ else {
37
+ return;
38
+ }
39
+ }
40
+ else {
41
+ if ( function_exists('WDCFM') ) {
42
+ require_once(WDCFM()->plugin_dir . '/frontend/controllers/form_maker.php');
43
+ $controller_class = 'FMControllerForm_maker_fmc';
44
+ }
45
+ else {
46
+ return;
47
+ }
48
+ }
49
  $controller = new $controller_class();
50
  $execute = $controller->execute($instance['form_id']);
51
  $this->view->widget($args, $instance, $execute);
admin/models/Manage_fm.php CHANGED
@@ -20,7 +20,7 @@ class FMModelManage_fm {
20
  $limit = $page ? ($page - 1) * $items_per_page : 0;
21
 
22
  global $wpdb;
23
- $query = "SELECT t1.*, count(DISTINCT t2.group_id) as submission_count, GROUP_CONCAT(t2.id SEPARATOR ',') FROM " . $wpdb->prefix . "formmaker as t1 ";
24
  $query .= "LEFT JOIN " . $wpdb->prefix . "formmaker_submits as t2 ";
25
  $query .= "on t1.id = t2.form_id ";
26
  $query .= (!WDFM()->is_free ? '' : 'WHERE t1.id' . (WDFM()->is_free == 1 ? ' NOT ' : ' ') . 'IN (' . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ')');
@@ -3777,15 +3777,15 @@ class FMModelManage_fm {
3777
  */
3778
  public function get_emailverification_post_id() {
3779
  global $wpdb;
3780
- $post_type = 'fmemailverification';
3781
- $row = get_posts(array('post_type' => $post_type));
3782
- if ( !empty($row[0]) ) {
3783
  $id = $row[0]->ID;
3784
- if ( !$this->check_mailverification_id_posts_vs_fm($id) ) {
3785
  $this->update_emailverification_id($id);
3786
  }
3787
- return $id;
3788
- }
3789
  else {
3790
  $post_params = array(
3791
  'post_author' => 1,
@@ -3799,11 +3799,11 @@ class FMModelManage_fm {
3799
  'menu_order' => 0,
3800
  'import_id' => 0,
3801
  );
3802
- if ( wp_insert_post($post_params) ) { // create new post by fmemailverification type
3803
- $inserted_id = $wpdb->insert_id;
3804
- $this->update_emailverification_id($inserted_id);
3805
 
3806
- return $wpdb->insert_id;
3807
  }
3808
  }
3809
  }
@@ -3833,11 +3833,11 @@ class FMModelManage_fm {
3833
  'import_id' => 0,
3834
  );
3835
  // Create new post by fmformpreview type.
3836
- if ( wp_insert_post($post_params) ) {
 
3837
  flush_rewrite_rules();
3838
- global $wpdb;
3839
 
3840
- return get_post_permalink($wpdb->insert_id);
3841
  }
3842
  else {
3843
  return "";
20
  $limit = $page ? ($page - 1) * $items_per_page : 0;
21
 
22
  global $wpdb;
23
+ $query = "SELECT t1.*, count(DISTINCT t2.group_id) as submission_count FROM " . $wpdb->prefix . "formmaker as t1 ";
24
  $query .= "LEFT JOIN " . $wpdb->prefix . "formmaker_submits as t2 ";
25
  $query .= "on t1.id = t2.form_id ";
26
  $query .= (!WDFM()->is_free ? '' : 'WHERE t1.id' . (WDFM()->is_free == 1 ? ' NOT ' : ' ') . 'IN (' . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ')');
3777
  */
3778
  public function get_emailverification_post_id() {
3779
  global $wpdb;
3780
+ $post_type = 'fmemailverification';
3781
+ $row = get_posts(array('post_type' => $post_type));
3782
+ if (!empty($row[0])) {
3783
  $id = $row[0]->ID;
3784
+ if (!$this->check_mailverification_id_posts_vs_fm($id)) {
3785
  $this->update_emailverification_id($id);
3786
  }
3787
+ return $id;
3788
+ }
3789
  else {
3790
  $post_params = array(
3791
  'post_author' => 1,
3799
  'menu_order' => 0,
3800
  'import_id' => 0,
3801
  );
3802
+ $insert_id = wp_insert_post($post_params);
3803
+ if (!is_wp_error($insert_id)) { // create new post by fmemailverification type
3804
+ $this->update_emailverification_id($insert_id);
3805
 
3806
+ return $insert_id;
3807
  }
3808
  }
3809
  }
3833
  'import_id' => 0,
3834
  );
3835
  // Create new post by fmformpreview type.
3836
+ $insert_id = wp_insert_post($post_params);
3837
+ if ( !is_wp_error($insert_id) ) {
3838
  flush_rewrite_rules();
 
3839
 
3840
+ return get_post_permalink($insert_id);
3841
  }
3842
  else {
3843
  return "";
admin/models/Themes_fm.php CHANGED
@@ -53,12 +53,14 @@ class FMModelThemes_fm {
53
  $row->default = 0;
54
  $row->version = 2;
55
  }
56
- $params_decoded = json_decode(html_entity_decode($row->css));
57
- if ( $params_decoded != NULL ) {
58
- $row->css = $params_decoded;
59
- }
60
- else {
61
- $row->css = array( "CUPCSS" => $row->css );
 
 
62
  }
63
 
64
  return $row;
@@ -154,17 +156,6 @@ class FMModelThemes_fm {
154
  return $query;
155
  }
156
 
157
- /**
158
- * Get max id from formmaker_themes table.
159
- *
160
- * @return int
161
- */
162
- public function get_max_id() {
163
- global $wpdb;
164
-
165
- return $wpdb->get_var('SELECT MAX(`id`) FROM ' . $wpdb->prefix . 'formmaker_themes');
166
- }
167
-
168
  /**
169
  * @params array $params
170
  *
53
  $row->default = 0;
54
  $row->version = 2;
55
  }
56
+ if ( $row !== NULL ) {
57
+ $params_decoded = json_decode(html_entity_decode($row->css));
58
+ if ( $params_decoded != NULL ) {
59
+ $row->css = $params_decoded;
60
+ }
61
+ else {
62
+ $row->css = array( "CUPCSS" => $row->css );
63
+ }
64
  }
65
 
66
  return $row;
156
  return $query;
157
  }
158
 
 
 
 
 
 
 
 
 
 
 
 
159
  /**
160
  * @params array $params
161
  *
admin/models/Uninstall_fm.php CHANGED
@@ -16,7 +16,6 @@ class FMModelUninstall_fm {
16
  delete_option('contact_form_themes');
17
  delete_option('contact_form_forms');
18
  delete_option('form_maker_pro_active');
19
- delete_option('fm_emailverification');
20
  delete_option('fm_admin_notice');
21
  delete_option('cfm_admin_notice');
22
  delete_option('fm_settings');
16
  delete_option('contact_form_themes');
17
  delete_option('contact_form_forms');
18
  delete_option('form_maker_pro_active');
 
19
  delete_option('fm_admin_notice');
20
  delete_option('cfm_admin_notice');
21
  delete_option('fm_settings');
admin/models/Widget.php CHANGED
@@ -6,7 +6,11 @@
6
  class FMModelWidget {
7
  public function get_gallery_rows_data() {
8
  global $wpdb;
9
- $query = "SELECT * FROM " . $wpdb->prefix . "formmaker order by `title`";
 
 
 
 
10
  $rows = $wpdb->get_results($query);
11
 
12
  return $rows;
6
  class FMModelWidget {
7
  public function get_gallery_rows_data() {
8
  global $wpdb;
9
+ $query = 'SELECT * FROM ' . $wpdb->prefix . 'formmaker';
10
+ if ( WDFM()->is_free && !function_exists('WDCFM') ) {
11
+ $query .= (!WDFM()->is_free ? '' : ' WHERE id' . (WDFM()->is_free == 1 ? ' NOT ' : ' ') . 'IN (' . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ')');
12
+ }
13
+ $query .= ' order by `title`';
14
  $rows = $wpdb->get_results($query);
15
 
16
  return $rows;
admin/views/FMEditCountryinPopup.php CHANGED
@@ -17,142 +17,136 @@ class FMViewFromeditcountryinpopup {
17
  wp_print_scripts('jquery-ui-mouse');
18
  wp_print_scripts('jquery-ui-slider');
19
  wp_print_scripts('jquery-ui-sortable');
 
 
20
  ?>
21
  <style>
 
 
 
 
 
 
 
 
 
22
  .country-list {
23
- padding: 10px 0;
24
  }
25
-
26
  .country-list ul {
27
  font-family: Segoe UI !important;
28
  font-size: 13px;
29
  }
30
-
31
  .country-list > div {
32
  display: inline-block;
33
  }
34
-
35
  .save-cancel {
36
  float: right;
37
  }
38
-
39
- .fm-select-remove {
40
- background: #4EC0D9;
41
- width: 78px;
42
- height: 32px;
43
- border: 1px solid #4EC0D9;
44
- border-radius: 6px;
45
- color: #fff;
46
- cursor: pointer;
47
- }
48
-
49
- .fm-select-remove.large {
50
- width: 90px;
51
- }
52
  </style>
53
- <div class="country-list">
54
  <div class="select-remove">
55
- <button class="fm-select-remove large" onclick="select_all(); return false;">
56
- Select all
57
- <span></span>
58
  </button>
59
- <button class="fm-select-remove large" onclick="remove_all(); return false;">
60
- Remove all
61
- <span></span>
62
  </button>
63
  </div>
64
  <div class="save-cancel">
65
- <button class="fm-select-remove" onclick="save_list(); return false;">
66
- Save
67
- <span></span>
68
  </button>
69
  </div>
70
  <ul id="countries_list" style="list-style: none; padding: 0px;"></ul>
71
- </div>
72
- <script>
73
- selec_coutries = [];
74
- countries = '<?php echo addslashes(json_encode(WDW_FM_Library::get_countries())); ?>';
75
- countries = JSON.parse(countries);
76
- select_ = window.parent.document.getElementById('<?php echo $field_id ?>_elementform_id_temp');
77
- n = select_.childNodes.length;
78
- for (i = 0; i < n; i++) {
79
- selec_coutries.push(select_.childNodes[i].value);
80
- var ch = document.createElement('input');
81
- ch.setAttribute("type", "checkbox");
82
- ch.setAttribute("checked", "checked");
83
- ch.value = select_.childNodes[i].value;
84
- ch.id = i + "ch";
85
- var p = document.createElement('span');
86
- p.style.cssText = "color:#000000; font-size: 13px; cursor:move";
87
- p.innerHTML = select_.childNodes[i].value;
88
- var li = document.createElement('li');
89
- li.style.cssText = "margin:3px; vertical-align:middle";
90
- li.id = i;
91
- li.appendChild(ch);
92
- li.appendChild(p);
93
- document.getElementById('countries_list').appendChild(li);
94
- }
95
- cur = i;
96
- for (var cur_country in countries) {
97
- isin = isValueInArray(selec_coutries, cur_country);
98
- if (!isin) {
99
  var ch = document.createElement('input');
100
  ch.setAttribute("type", "checkbox");
101
- ch.value = cur_country;
102
- ch.id = cur + "ch";
 
103
  var p = document.createElement('span');
104
- p.style.cssText = "color:#000000; font-size: 13px; cursor:move";
105
- p.innerHTML = cur_country;
106
  var li = document.createElement('li');
107
  li.style.cssText = "margin:3px; vertical-align:middle";
108
- li.id = cur;
 
109
  li.appendChild(ch);
110
  li.appendChild(p);
111
  document.getElementById('countries_list').appendChild(li);
112
- cur++;
113
  }
114
- }
115
- jQuery(function () {
116
- jQuery("#countries_list").sortable();
117
- jQuery("#countries_list").disableSelection();
118
- });
119
- function isValueInArray(arr, val) {
120
- inArray = false;
121
- for (x = 0; x < arr.length; x++) {
122
- if (val == arr[x]) {
123
- inArray = true;
 
 
 
 
 
 
 
 
124
  }
125
  }
126
- return inArray;
127
- }
128
- function save_list() {
129
- select_.innerHTML = ""
130
- ul = document.getElementById('countries_list');
131
- n = ul.childNodes.length;
132
- for (i = 0; i < n; i++) {
133
- if (ul.childNodes[i].tagName == "LI") {
134
- id = ul.childNodes[i].id;
135
- if (document.getElementById(id + 'ch').checked) {
136
- var option_ = document.createElement('option');
137
- option_.setAttribute("value", document.getElementById(id + 'ch').value);
138
- option_.innerHTML = document.getElementById(id + 'ch').value;
139
- select_.appendChild(option_);
140
  }
141
  }
 
142
  }
143
- window.parent.tb_remove();
144
- }
145
- function select_all() {
146
- for (i = 0; i < 194; i++) {
147
- document.getElementById(i + 'ch').checked = true;
 
 
 
 
 
 
 
 
 
 
 
148
  }
149
- }
150
- function remove_all() {
151
- for (i = 0; i < 194; i++) {
152
- document.getElementById(i + 'ch').checked = false;
153
  }
154
- }
155
- </script>
 
 
 
 
 
156
  <?php
157
 
158
  die();
17
  wp_print_scripts('jquery-ui-mouse');
18
  wp_print_scripts('jquery-ui-slider');
19
  wp_print_scripts('jquery-ui-sortable');
20
+ wp_print_styles('wp-admin');
21
+ wp_print_styles('buttons');
22
  ?>
23
  <style>
24
+ .handle {
25
+ border: none;
26
+ color: #aaaaaa;
27
+ cursor: move;
28
+ vertical-align: middle;
29
+ }
30
+ input[type="checkbox"] {
31
+ margin: 5px;
32
+ }
33
  .country-list {
34
+ padding: 10px;
35
  }
 
36
  .country-list ul {
37
  font-family: Segoe UI !important;
38
  font-size: 13px;
39
  }
 
40
  .country-list > div {
41
  display: inline-block;
42
  }
 
43
  .save-cancel {
44
  float: right;
45
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  </style>
47
+ <div class="country-list wp-core-ui">
48
  <div class="select-remove">
49
+ <button class="button" onclick="select_all(); return false;">
50
+ <?php _e('Select all', WDFM()->prefix); ?>
 
51
  </button>
52
+ <button class="button" onclick="remove_all(); return false;">
53
+ <?php _e('Remove all', WDFM()->prefix); ?>
 
54
  </button>
55
  </div>
56
  <div class="save-cancel">
57
+ <button class="button button-primary" onclick="save_list(); return false;">
58
+ <?php _e('Save', WDFM()->prefix); ?>
 
59
  </button>
60
  </div>
61
  <ul id="countries_list" style="list-style: none; padding: 0px;"></ul>
62
+ <script>
63
+ selec_coutries = [];
64
+ countries = '<?php echo addslashes(json_encode(WDW_FM_Library::get_countries())); ?>';
65
+ countries = JSON.parse(countries);
66
+ select_ = window.parent.document.getElementById('<?php echo $field_id ?>_elementform_id_temp');
67
+ n = select_.childNodes.length;
68
+ for (i = 0; i < n; i++) {
69
+ selec_coutries.push(select_.childNodes[i].value);
70
+ var drag = document.createElement('div');
71
+ drag.setAttribute("class", "wd-drag handle dashicons dashicons-move");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  var ch = document.createElement('input');
73
  ch.setAttribute("type", "checkbox");
74
+ ch.setAttribute("checked", "checked");
75
+ ch.value = select_.childNodes[i].value;
76
+ ch.id = i + "ch";
77
  var p = document.createElement('span');
78
+ p.style.cssText = "color:#000000; font-size: 13px; cursor:move; vertical-align: middle;";
79
+ p.innerHTML = select_.childNodes[i].value;
80
  var li = document.createElement('li');
81
  li.style.cssText = "margin:3px; vertical-align:middle";
82
+ li.id = i;
83
+ li.appendChild(drag);
84
  li.appendChild(ch);
85
  li.appendChild(p);
86
  document.getElementById('countries_list').appendChild(li);
 
87
  }
88
+ cur = i;
89
+ for (var cur_country in countries) {
90
+ isin = isValueInArray(selec_coutries, cur_country);
91
+ if (!isin) {
92
+ var ch = document.createElement('input');
93
+ ch.setAttribute("type", "checkbox");
94
+ ch.value = cur_country;
95
+ ch.id = cur + "ch";
96
+ var p = document.createElement('span');
97
+ p.style.cssText = "color:#000000; font-size: 13px; cursor:move";
98
+ p.innerHTML = cur_country;
99
+ var li = document.createElement('li');
100
+ li.style.cssText = "margin:3px; vertical-align:middle";
101
+ li.id = cur;
102
+ li.appendChild(ch);
103
+ li.appendChild(p);
104
+ document.getElementById('countries_list').appendChild(li);
105
+ cur++;
106
  }
107
  }
108
+ jQuery(function () {
109
+ jQuery("#countries_list").sortable();
110
+ jQuery("#countries_list").disableSelection();
111
+ });
112
+ function isValueInArray(arr, val) {
113
+ inArray = false;
114
+ for (x = 0; x < arr.length; x++) {
115
+ if (val == arr[x]) {
116
+ inArray = true;
 
 
 
 
 
117
  }
118
  }
119
+ return inArray;
120
  }
121
+ function save_list() {
122
+ select_.innerHTML = ""
123
+ ul = document.getElementById('countries_list');
124
+ n = ul.childNodes.length;
125
+ for (i = 0; i < n; i++) {
126
+ if (ul.childNodes[i].tagName == "LI") {
127
+ id = ul.childNodes[i].id;
128
+ if (document.getElementById(id + 'ch').checked) {
129
+ var option_ = document.createElement('option');
130
+ option_.setAttribute("value", document.getElementById(id + 'ch').value);
131
+ option_.innerHTML = document.getElementById(id + 'ch').value;
132
+ select_.appendChild(option_);
133
+ }
134
+ }
135
+ }
136
+ window.parent.tb_remove();
137
  }
138
+ function select_all() {
139
+ for (i = 0; i < 194; i++) {
140
+ document.getElementById(i + 'ch').checked = true;
141
+ }
142
  }
143
+ function remove_all() {
144
+ for (i = 0; i < 194; i++) {
145
+ document.getElementById(i + 'ch').checked = false;
146
+ }
147
+ }
148
+ </script>
149
+ </div>
150
  <?php
151
 
152
  die();
admin/views/FMSqlMapping.php CHANGED
@@ -6,6 +6,7 @@ class FMViewFormMakerSQLMapping {
6
  wp_print_scripts('jquery-ui-tooltip');
7
  wp_print_styles('fm-style');
8
  wp_print_styles('fm-jquery-ui');
 
9
  }
10
 
11
  public function edit_query( $params ) {
@@ -84,6 +85,52 @@ class FMViewFormMakerSQLMapping {
84
  $cond .= '<select id="op_condid"><option value="=" selected="selected">=</option><option value="!=">!=</option><option value=">">&gt;</option><option value="<">&lt;</option><option value=">=">&gt;=</option><option value="<=">&lt;=</option><option value="%..%">Like</option><option value="%..">Starts with</option><option value="..%">Ends with</option></select><input id="val_condid" style="width:170px" type="text" /><select id="andor_condid" style="visibility: hidden;"><option value="AND">AND</option><option value="OR">OR</option></select><img src="' . WDFM()->plugin_dir . '/images/delete.png?ver=' . WDFM()->plugin_version . '" onclick="delete_cond(&quot;condid&quot;)" style="vertical-align: middle;"></div>';
85
  ?>
86
  <script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  function connect() {
88
  jQuery("input[type='radio']").attr('disabled', '');
89
  jQuery('#struct').html('<div class="fm-loading-container"><div class="fm-loading-content"></div></div>');
@@ -311,14 +358,7 @@ class FMViewFormMakerSQLMapping {
311
  }
312
  jQuery('#query_txt').val(query.replace("SingleQuot", "'"));
313
  }
314
- jQuery(document).ready(function () {
315
- jQuery(".hasTip").tooltip({
316
- track: true,
317
- content: function () {
318
- return jQuery(this).prop('title');
319
- }
320
- });
321
- });
322
  function insert_field(myValue) {
323
  if (!selected_field) {
324
  return;
@@ -344,6 +384,93 @@ class FMViewFormMakerSQLMapping {
344
  }
345
  </script>
346
  <style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
347
  .c1 {
348
  padding: 0 10px;
349
  }
@@ -681,18 +808,32 @@ class FMViewFormMakerSQLMapping {
681
  if ( $con_method == 'insert' or $con_method == 'update' ) {
682
  echo '<div style="background: none;text-align: center;font-size: 20px;color: #000;font-weight: bold;"> SET </div>';
683
  foreach ( $table_struct as $key => $col ) {
684
- $title = ' ' . $col->Field;
685
  $title .= "<ul style='padding-left: 17px;'>";
686
- $title .= "<li>Type - " . $col->Type . "</li>";
687
- $title .= "<li>Null - " . $col->Null . "</li>";
688
- $title .= "<li>Key - " . $col->Key . "</li>";
689
- $title .= "<li>Default - " . $col->Default . "</li>";
690
- $title .= "<li>Extra - " . $col->Extra . "</li>";
 
 
 
 
 
 
 
 
 
 
691
  $title .= "</ul>";
692
  ?>
693
  <div>
694
- <label title="<?php echo $title; ?>" class="hasTip"><b><?php echo $col->Field; ?></b>
695
- <img src="<?php echo WDFM()->plugin_url . '/images/info.png?ver=' . WDFM()->plugin_version . ''; ?>" style="width:20px; vertical-align:middle;padding-left: 10px;" />
 
 
 
 
696
  </label>
697
  <input type="text" id="<?php echo str_replace("'", "SingleQuot", $col->Field); ?>" <?php if ( !$col_checks[$key] )
698
  echo 'disabled="disabled"' ?> value="<?php echo $col_vals[$key]; ?>" />
@@ -1113,6 +1254,52 @@ class FMViewFormMakerSQLMapping {
1113
  $cond .= '<select id="op_condid"><option value="=" selected="selected">=</option><option value="!=">!=</option><option value=">">&gt;</option><option value="<">&lt;</option><option value=">=">&gt;=</option><option value="<=">&lt;=</option><option value="%..%">Like</option><option value="%..">Starts with</option><option value="..%">Ends with</option></select><input id="val_condid" style="width:170px" type="text" /><select id="andor_condid" style="visibility: hidden;"><option value="AND">AND</option><option value="OR">OR</option></select><img src="' . WDFM()->plugin_url . '/images/delete.png?ver=' . WDFM()->plugin_version . '" onclick="delete_cond(&quot;condid&quot;)" style="vertical-align: middle;"></div>';
1114
  ?>
1115
  <script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1116
  var selected_field = '';
1117
  var isvisible = 1;
1118
  var cond_id = 1;
@@ -1330,14 +1517,6 @@ class FMViewFormMakerSQLMapping {
1330
  }
1331
  jQuery('#query_txt').val(query.replace("SingleQuot", "'"));
1332
  }
1333
- jQuery(document).ready(function () {
1334
- jQuery(".hasTip").tooltip({
1335
- track: true,
1336
- content: function () {
1337
- return jQuery(this).prop('title');
1338
- }
1339
- });
1340
- });
1341
  function insert_field(myValue) {
1342
  if (!selected_field) {
1343
  return;
@@ -1363,6 +1542,93 @@ class FMViewFormMakerSQLMapping {
1363
  }
1364
  </script>
1365
  <style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1366
  .cols div:nth-child(even) {
1367
  background: #FFF;
1368
  }
@@ -1493,18 +1759,35 @@ class FMViewFormMakerSQLMapping {
1493
  <?php
1494
  if ( $con_method == 'insert' or $con_method == 'update' ) {
1495
  echo '<div style="background: none;text-align: center;font-size: 20px;color: #000;font-weight: bold;"> SET </div>';
1496
- foreach ( $table_struct as $col ) {
1497
- $title = ' ' . $col->Field;
1498
  $title .= "<ul style='padding-left: 17px;'>";
1499
- $title .= "<li>Type - " . $col->Type . "</li>";
1500
- $title .= "<li>Null - " . $col->Null . "</li>";
1501
- $title .= "<li>Key - " . $col->Key . "</li>";
1502
- $title .= "<li>Default - " . $col->Default . "</li>";
1503
- $title .= "<li>Extra - " . $col->Extra . "</li>";
 
 
 
 
 
 
 
 
 
 
1504
  $title .= "</ul>";
1505
  ?>
1506
- <div><label title="<?php echo $title; ?>" class="hasTip"><b><?php echo $col->Field; ?></b>
1507
- <img src="<?php echo WDFM()->plugin_url . '/images/info.png?ver=' . WDFM()->plugin_version . ''; ?>" style="width:20px; vertical-align:middle;padding-left: 10px;" /></label><input type="text" id="<?php echo str_replace("'", "SingleQuot", $col->Field); ?>" disabled="disabled" /><input id="ch_<?php echo str_replace("'", "SingleQuot", $col->Field); ?>" type="checkbox" onClick="dis('<?php echo str_replace("'", "SingleQuot", $col->Field); ?>', this.checked)" />
 
 
 
 
 
 
 
1508
  </div>
1509
  <?php
1510
  }
6
  wp_print_scripts('jquery-ui-tooltip');
7
  wp_print_styles('fm-style');
8
  wp_print_styles('fm-jquery-ui');
9
+ wp_print_styles('dashicons');
10
  }
11
 
12
  public function edit_query( $params ) {
85
  $cond .= '<select id="op_condid"><option value="=" selected="selected">=</option><option value="!=">!=</option><option value=">">&gt;</option><option value="<">&lt;</option><option value=">=">&gt;=</option><option value="<=">&lt;=</option><option value="%..%">Like</option><option value="%..">Starts with</option><option value="..%">Ends with</option></select><input id="val_condid" style="width:170px" type="text" /><select id="andor_condid" style="visibility: hidden;"><option value="AND">AND</option><option value="OR">OR</option></select><img src="' . WDFM()->plugin_dir . '/images/delete.png?ver=' . WDFM()->plugin_version . '" onclick="delete_cond(&quot;condid&quot;)" style="vertical-align: middle;"></div>';
86
  ?>
87
  <script>
88
+ jQuery(document).ready(function() {
89
+ // Add tooltip to elements with "wd-info" class.
90
+ if ( typeof jQuery(document).tooltip != "undefined" ) {
91
+ jQuery(document).tooltip({
92
+ show: null,
93
+ items: ".wd-info",
94
+ content: function () {
95
+ var element = jQuery(this);
96
+ if (element.is(".wd-info")) {
97
+ var html = jQuery('#' + jQuery(this).data("id")).html();
98
+ return html;
99
+ }
100
+ },
101
+ open: function (event, ui) {
102
+ if (typeof(event.originalEvent) === 'undefined') {
103
+ return false;
104
+ }
105
+ var $id = jQuery(ui.tooltip).attr('id');
106
+ // close any lingering tooltips
107
+ jQuery('div.ui-tooltip').not('#' + $id).remove();
108
+ },
109
+ close: function (event, ui) {
110
+ ui.tooltip.hover(function () {
111
+ jQuery(this).stop(true).fadeTo(400, 1);
112
+ },
113
+ function () {
114
+ jQuery(this).fadeOut('400', function () {
115
+ jQuery(this).remove();
116
+ });
117
+ });
118
+ },
119
+ position: {
120
+ my: "center top+30",
121
+ at: "center top",
122
+ using: function (position, feedback) {
123
+ jQuery(this).css(position);
124
+ jQuery("<div>")
125
+ .addClass("tooltip-arrow")
126
+ .addClass(feedback.vertical)
127
+ .addClass(feedback.horizontal)
128
+ .appendTo(this);
129
+ }
130
+ }
131
+ });
132
+ }
133
+ });
134
  function connect() {
135
  jQuery("input[type='radio']").attr('disabled', '');
136
  jQuery('#struct').html('<div class="fm-loading-container"><div class="fm-loading-content"></div></div>');
358
  }
359
  jQuery('#query_txt').val(query.replace("SingleQuot", "'"));
360
  }
361
+
 
 
 
 
 
 
 
362
  function insert_field(myValue) {
363
  if (!selected_field) {
364
  return;
384
  }
385
  </script>
386
  <style>
387
+ .ui-tooltip {
388
+ padding: 0 10px !important;
389
+ position: absolute;
390
+ z-index: 9999;
391
+ max-width: 300px;
392
+ white-space: pre-line;
393
+ }
394
+
395
+ .ui-tooltip .ui-tooltip-content {
396
+ font-weight: normal;
397
+ }
398
+
399
+ .ui-tooltip, .tooltip-arrow:after {
400
+ background: #23282D;
401
+ }
402
+
403
+ .ui-tooltip {
404
+ color: white;
405
+ border-radius: 10px;
406
+ font: bold 14px "Helvetica Neue", Sans-Serif;
407
+ box-shadow: 0 0 7px black;
408
+ }
409
+
410
+ .ui-tooltip p {
411
+ margin: 0;
412
+ }
413
+
414
+ .tooltip-arrow {
415
+ width: 70px;
416
+ height: 16px;
417
+ overflow: hidden;
418
+ position: absolute;
419
+ left: 50%;
420
+ margin-left: -35px;
421
+ bottom: -16px;
422
+ }
423
+
424
+ .tooltip-arrow.top {
425
+ top: -16px;
426
+ bottom: auto;
427
+ }
428
+
429
+ .tooltip-arrow.left {
430
+ left: 20%;
431
+ }
432
+
433
+ .tooltip-arrow:after {
434
+ content: "";
435
+ position: absolute;
436
+ left: 20px;
437
+ top: -20px;
438
+ width: 25px;
439
+ height: 25px;
440
+ box-shadow: 6px 5px 9px -9px #23282D;
441
+ -webkit-transform: rotate(45deg);
442
+ -ms-transform: rotate(45deg);
443
+ transform: rotate(45deg);
444
+ }
445
+
446
+ .tooltip-arrow.top:after {
447
+ bottom: -20px;
448
+ top: auto;
449
+ }
450
+ .screen-reader-text, .screen-reader-text span, .ui-helper-hidden-accessible {
451
+ border: 0;
452
+ clip: rect(1px,1px,1px,1px);
453
+ -webkit-clip-path: inset(50%);
454
+ clip-path: inset(50%);
455
+ height: 1px;
456
+ margin: -1px;
457
+ overflow: hidden;
458
+ padding: 0;
459
+ position: absolute;
460
+ width: 1px;
461
+ word-wrap: normal!important;
462
+ }
463
+ .field-name {
464
+ vertical-align: middle;
465
+ }
466
+ .wd-info {
467
+ cursor: pointer;
468
+ vertical-align: middle;
469
+ color: #777777;
470
+ }
471
+ .wd-hide {
472
+ display: none;
473
+ }
474
  .c1 {
475
  padding: 0 10px;
476
  }
808
  if ( $con_method == 'insert' or $con_method == 'update' ) {
809
  echo '<div style="background: none;text-align: center;font-size: 20px;color: #000;font-weight: bold;"> SET </div>';
810
  foreach ( $table_struct as $key => $col ) {
811
+ $title = $col->Field;
812
  $title .= "<ul style='padding-left: 17px;'>";
813
+ if ( $col->Type ) {
814
+ $title .= "<li>" . __('Type', WDFM()->prefix) . " - " . $col->Type . "</li>";
815
+ }
816
+ if ( $col->Null ) {
817
+ $title .= "<li>" . __('Null', WDFM()->prefix) . " - " . $col->Null . "</li>";
818
+ }
819
+ if ( $col->Key ) {
820
+ $title .= "<li>" . __('Key', WDFM()->prefix) . " - " . $col->Key . "</li>";
821
+ }
822
+ if ( $col->Default ) {
823
+ $title .= "<li>" . __('Default', WDFM()->prefix) . " - " . $col->Default . "</li>";
824
+ }
825
+ if ( $col->Extra ) {
826
+ $title .= "<li>" . __('Extra', WDFM()->prefix) . " - " . $col->Extra . "</li>";
827
+ }
828
  $title .= "</ul>";
829
  ?>
830
  <div>
831
+ <label>
832
+ <b><?php echo $col->Field; ?></b>
833
+ <i class="wd-info dashicons dashicons-info" data-id="wd-info-<?php echo $key; ?>"></i>
834
+ <div id="wd-info-<?php echo $key; ?>" class="wd-hide">
835
+ <?php echo $title; ?>
836
+ </div>
837
  </label>
838
  <input type="text" id="<?php echo str_replace("'", "SingleQuot", $col->Field); ?>" <?php if ( !$col_checks[$key] )
839
  echo 'disabled="disabled"' ?> value="<?php echo $col_vals[$key]; ?>" />
1254
  $cond .= '<select id="op_condid"><option value="=" selected="selected">=</option><option value="!=">!=</option><option value=">">&gt;</option><option value="<">&lt;</option><option value=">=">&gt;=</option><option value="<=">&lt;=</option><option value="%..%">Like</option><option value="%..">Starts with</option><option value="..%">Ends with</option></select><input id="val_condid" style="width:170px" type="text" /><select id="andor_condid" style="visibility: hidden;"><option value="AND">AND</option><option value="OR">OR</option></select><img src="' . WDFM()->plugin_url . '/images/delete.png?ver=' . WDFM()->plugin_version . '" onclick="delete_cond(&quot;condid&quot;)" style="vertical-align: middle;"></div>';
1255
  ?>
1256
  <script>
1257
+ jQuery(document).ready(function() {
1258
+ // Add tooltip to elements with "wd-info" class.
1259
+ if ( typeof jQuery(document).tooltip != "undefined" ) {
1260
+ jQuery(document).tooltip({
1261
+ show: null,
1262
+ items: ".wd-info",
1263
+ content: function () {
1264
+ var element = jQuery(this);
1265
+ if (element.is(".wd-info")) {
1266
+ var html = jQuery('#' + jQuery(this).data("id")).html();
1267
+ return html;
1268
+ }
1269
+ },
1270
+ open: function (event, ui) {
1271
+ if (typeof(event.originalEvent) === 'undefined') {
1272
+ return false;
1273
+ }
1274
+ var $id = jQuery(ui.tooltip).attr('id');
1275
+ // close any lingering tooltips
1276
+ jQuery('div.ui-tooltip').not('#' + $id).remove();
1277
+ },
1278
+ close: function (event, ui) {
1279
+ ui.tooltip.hover(function () {
1280
+ jQuery(this).stop(true).fadeTo(400, 1);
1281
+ },
1282
+ function () {
1283
+ jQuery(this).fadeOut('400', function () {
1284
+ jQuery(this).remove();
1285
+ });
1286
+ });
1287
+ },
1288
+ position: {
1289
+ my: "center top+30",
1290
+ at: "center top",
1291
+ using: function (position, feedback) {
1292
+ jQuery(this).css(position);
1293
+ jQuery("<div>")
1294
+ .addClass("tooltip-arrow")
1295
+ .addClass(feedback.vertical)
1296
+ .addClass(feedback.horizontal)
1297
+ .appendTo(this);
1298
+ }
1299
+ }
1300
+ });
1301
+ }
1302
+ });
1303
  var selected_field = '';
1304
  var isvisible = 1;
1305
  var cond_id = 1;
1517
  }
1518
  jQuery('#query_txt').val(query.replace("SingleQuot", "'"));
1519
  }
 
 
 
 
 
 
 
 
1520
  function insert_field(myValue) {
1521
  if (!selected_field) {
1522
  return;
1542
  }
1543
  </script>
1544
  <style>
1545
+ .ui-tooltip {
1546
+ padding: 0 10px !important;
1547
+ position: absolute;
1548
+ z-index: 9999;
1549
+ max-width: 300px;
1550
+ white-space: pre-line;
1551
+ }
1552
+
1553
+ .ui-tooltip .ui-tooltip-content {
1554
+ font-weight: normal;
1555
+ }
1556
+
1557
+ .ui-tooltip, .tooltip-arrow:after {
1558
+ background: #23282D;
1559
+ }
1560
+
1561
+ .ui-tooltip {
1562
+ color: white;
1563
+ border-radius: 10px;
1564
+ font: bold 14px "Helvetica Neue", Sans-Serif;
1565
+ box-shadow: 0 0 7px black;
1566
+ }
1567
+
1568
+ .ui-tooltip p {
1569
+ margin: 0;
1570
+ }
1571
+
1572
+ .tooltip-arrow {
1573
+ width: 70px;
1574
+ height: 16px;
1575
+ overflow: hidden;
1576
+ position: absolute;
1577
+ left: 50%;
1578
+ margin-left: -35px;
1579
+ bottom: -16px;
1580
+ }
1581
+
1582
+ .tooltip-arrow.top {
1583
+ top: -16px;
1584
+ bottom: auto;
1585
+ }
1586
+
1587
+ .tooltip-arrow.left {
1588
+ left: 20%;
1589
+ }
1590
+
1591
+ .tooltip-arrow:after {
1592
+ content: "";
1593
+ position: absolute;
1594
+ left: 20px;
1595
+ top: -20px;
1596
+ width: 25px;
1597
+ height: 25px;
1598
+ box-shadow: 6px 5px 9px -9px #23282D;
1599
+ -webkit-transform: rotate(45deg);
1600
+ -ms-transform: rotate(45deg);
1601
+ transform: rotate(45deg);
1602
+ }
1603
+
1604
+ .tooltip-arrow.top:after {
1605
+ bottom: -20px;
1606
+ top: auto;
1607
+ }
1608
+ .screen-reader-text, .screen-reader-text span, .ui-helper-hidden-accessible {
1609
+ border: 0;
1610
+ clip: rect(1px,1px,1px,1px);
1611
+ -webkit-clip-path: inset(50%);
1612
+ clip-path: inset(50%);
1613
+ height: 1px;
1614
+ margin: -1px;
1615
+ overflow: hidden;
1616
+ padding: 0;
1617
+ position: absolute;
1618
+ width: 1px;
1619
+ word-wrap: normal!important;
1620
+ }
1621
+ .field-name {
1622
+ vertical-align: middle;
1623
+ }
1624
+ .wd-info {
1625
+ cursor: pointer;
1626
+ vertical-align: middle;
1627
+ color: #777777;
1628
+ }
1629
+ .wd-hide {
1630
+ display: none;
1631
+ }
1632
  .cols div:nth-child(even) {
1633
  background: #FFF;
1634
  }
1759
  <?php
1760
  if ( $con_method == 'insert' or $con_method == 'update' ) {
1761
  echo '<div style="background: none;text-align: center;font-size: 20px;color: #000;font-weight: bold;"> SET </div>';
1762
+ foreach ( $table_struct as $key => $col ) {
1763
+ $title = $col->Field;
1764
  $title .= "<ul style='padding-left: 17px;'>";
1765
+ if ( $col->Type ) {
1766
+ $title .= "<li>" . __('Type', WDFM()->prefix) . " - " . $col->Type . "</li>";
1767
+ }
1768
+ if ( $col->Null ) {
1769
+ $title .= "<li>" . __('Null', WDFM()->prefix) . " - " . $col->Null . "</li>";
1770
+ }
1771
+ if ( $col->Key ) {
1772
+ $title .= "<li>" . __('Key', WDFM()->prefix) . " - " . $col->Key . "</li>";
1773
+ }
1774
+ if ( $col->Default ) {
1775
+ $title .= "<li>" . __('Default', WDFM()->prefix) . " - " . $col->Default . "</li>";
1776
+ }
1777
+ if ( $col->Extra ) {
1778
+ $title .= "<li>" . __('Extra', WDFM()->prefix) . " - " . $col->Extra . "</li>";
1779
+ }
1780
  $title .= "</ul>";
1781
  ?>
1782
+ <div>
1783
+ <label>
1784
+ <b class="field-name"><?php echo $col->Field; ?></b>
1785
+ <i class="wd-info dashicons dashicons-info" data-id="wd-info-<?php echo $key; ?>"></i>
1786
+ <div id="wd-info-<?php echo $key; ?>" class="wd-hide">
1787
+ <?php echo $title; ?>
1788
+ </div>
1789
+ </label>
1790
+ <input type="text" id="<?php echo str_replace("'", "SingleQuot", $col->Field); ?>" disabled="disabled" /><input id="ch_<?php echo str_replace("'", "SingleQuot", $col->Field); ?>" type="checkbox" onClick="dis('<?php echo str_replace("'", "SingleQuot", $col->Field); ?>', this.checked)" />
1791
  </div>
1792
  <?php
1793
  }
admin/views/Manage_fm.php CHANGED
@@ -99,7 +99,7 @@ class FMViewManage_fm extends FMAdminView {
99
  $duplicate_url = add_query_arg(array('task' => 'duplicate', 'current_id' => $row_data->id), $page_url);
100
  $publish_url = add_query_arg(array('task' => ($row_data->published ? 'unpublish' : 'publish'), 'current_id' => $row_data->id), $page_url);
101
  $delete_url = add_query_arg(array('task' => 'delete', 'current_id' => $row_data->id), $page_url);
102
- $preview_url = add_query_arg( array('form_id' => $row_data->id), $form_preview_link );
103
  ?>
104
  <tr id="tr_<?php echo $row_data->id; ?>" <?php echo $alternate; ?>>
105
  <th class="check-column">
@@ -333,7 +333,7 @@ class FMViewManage_fm extends FMAdminView {
333
  }
334
  ?>
335
  </button>
336
- <button class="button preview-button button-large"<?php if (!$row->title) echo ' disabled="disabled"' ?> <?php echo ($row->title) ? 'onclick="window.open(\''. add_query_arg( array('form_id' => $id), $form_preview_link ) .'\', \'_blank\'); return false;"' : ''; ?>><?php _e('Preview', WDFM()->prefix); ?></button>
337
  </div>
338
  </div>
339
  <div class="fm-clear"></div>
99
  $duplicate_url = add_query_arg(array('task' => 'duplicate', 'current_id' => $row_data->id), $page_url);
100
  $publish_url = add_query_arg(array('task' => ($row_data->published ? 'unpublish' : 'publish'), 'current_id' => $row_data->id), $page_url);
101
  $delete_url = add_query_arg(array('task' => 'delete', 'current_id' => $row_data->id), $page_url);
102
+ $preview_url = add_query_arg( array('wdform_id' => $row_data->id), $form_preview_link );
103
  ?>
104
  <tr id="tr_<?php echo $row_data->id; ?>" <?php echo $alternate; ?>>
105
  <th class="check-column">
333
  }
334
  ?>
335
  </button>
336
+ <button class="button preview-button button-large"<?php if (!$row->title) echo ' disabled="disabled"' ?> <?php echo ($row->title) ? 'onclick="window.open(\''. add_query_arg( array('wdform_id' => $id), $form_preview_link ) .'\', \'_blank\'); return false;"' : ''; ?>><?php _e('Preview', WDFM()->prefix); ?></button>
337
  </div>
338
  </div>
339
  <div class="fm-clear"></div>
admin/views/Submissions_fm.php CHANGED
@@ -909,7 +909,7 @@ class FMViewSubmissions_fm extends FMAdminView {
909
  }
910
  <?php
911
  foreach($sorted_label_types as $slt_index => $slt_val){
912
- if ($slt_val != "type_mark_map") {
913
  ?>
914
  document.getElementById('<?php echo $form_id . '_' . $sorted_labels_id[$slt_index] . '_search'; ?>').value = '';
915
  <?php
909
  }
910
  <?php
911
  foreach($sorted_label_types as $slt_index => $slt_val){
912
+ if ($slt_val != "type_mark_map" && $slt_val != "type_stripe") {
913
  ?>
914
  document.getElementById('<?php echo $form_id . '_' . $sorted_labels_id[$slt_index] . '_search'; ?>').value = '';
915
  <?php
admin/views/Themes_fm.php CHANGED
@@ -49,9 +49,9 @@ class FMViewThemes_fm extends FMAdminView {
49
  'title' => $params['page_title'],
50
  'title_class' => 'wd-header',
51
  'add_new_button' => array(
52
- 'href' => add_query_arg(array( 'page' => $page, 'task' => 'edit' ), admin_url('admin.php')),
53
- ),
54
- ));
55
  echo $this->search();
56
  ?>
57
  <div class="tablenav top">
49
  'title' => $params['page_title'],
50
  'title_class' => 'wd-header',
51
  'add_new_button' => array(
52
+ 'href' => add_query_arg(array( 'page' => $page, 'task' => 'edit' ), admin_url('admin.php')),
53
+ ),
54
+ ));
55
  echo $this->search();
56
  ?>
57
  <div class="tablenav top">
admin/views/Widget.php CHANGED
@@ -32,7 +32,7 @@ class FMViewWidget {
32
  <label for="<?php echo $id_title; ?>">Title:</label>
33
  <input class="widefat" id="<?php echo $id_title; ?>" name="<?php echo $name_title; ?>" type="text" value="<?php echo $instance['title']; ?>" />
34
  <label for="<?php echo $id_form_id; ?>">Select a form:</label>
35
- <select name="<?php echo $name_form_id; ?>" id="<?php echo $id_form_id; ?>" style="width:225px;text-align:center;">
36
  <option style="text-align:center" value="0">- Select a Form -</option>
37
  <?php
38
  $ids_Form_Maker = $ids_FM;
32
  <label for="<?php echo $id_title; ?>">Title:</label>
33
  <input class="widefat" id="<?php echo $id_title; ?>" name="<?php echo $name_title; ?>" type="text" value="<?php echo $instance['title']; ?>" />
34
  <label for="<?php echo $id_form_id; ?>">Select a form:</label>
35
+ <select class="widefat" name="<?php echo $name_form_id; ?>" id="<?php echo $id_form_id; ?>">
36
  <option style="text-align:center" value="0">- Select a Form -</option>
37
  <?php
38
  $ids_Form_Maker = $ids_FM;
css/form_maker_frontend.css CHANGED
@@ -812,7 +812,7 @@ input[type=number].wd-type-number {
812
  }
813
 
814
  .fm-form-container .fm-form {
815
- display: table;
816
  background: transparent;
817
  border: none !important;
818
  }
@@ -867,6 +867,12 @@ input[type=number].wd-type-number {
867
  .fm-form-container .fm-popover .fm-popover-content {
868
  position: relative;
869
  }
 
 
 
 
 
 
870
 
871
  @media screen and (max-width: 768px) {
872
  .fm-form .wdform_section {
812
  }
813
 
814
  .fm-form-container .fm-form {
815
+ display: block;
816
  background: transparent;
817
  border: none !important;
818
  }
867
  .fm-form-container .fm-popover .fm-popover-content {
868
  position: relative;
869
  }
870
+ .fm-form-container .fm-scrollbox .fm-form,
871
+ .fm-form-container .fm-topbar .fm-form,
872
+ .fm-form-container .fm-popover .fm-form {
873
+ background: white;
874
+ border: 1px solid #cccccc;
875
+ }
876
 
877
  @media screen and (max-width: 768px) {
878
  .fm-form .wdform_section {
css/form_maker_tables.css CHANGED
@@ -148,7 +148,6 @@
148
  font-size: 13px !important;
149
  }
150
  #manage_form .wd-header {
151
- width:98%;
152
  padding: 10px;
153
  }
154
  #manage_form .wd-page-title #title {
@@ -413,7 +412,7 @@
413
  .pagination-links a {
414
  cursor: pointer;
415
  }
416
-
417
  #fm_admin_container .pagination-links .tablenav-pages-navspan,
418
  #fm_admin_container .pagination-links a,
419
  #fm_admin_container .pagination-links a span {
@@ -2334,22 +2333,22 @@ button:focus {
2334
  .fm_form_options .dashicons-trash:hover, .fm_form_options .dashicons-no-alt:hover { color: #dc3232; }
2335
  .fm_form_options .dashicons-plus-alt { color: #0073aa; }
2336
  .fm_form_options .dashicons-plus-alt:hover { color: #00a0d2; }
2337
- .fm_form_options #email_fieldset .mailToAdd,
2338
- .fm_form_options #email_fieldset .mail_subject,
2339
- .fm_form_options #email_fieldset .from_name,
2340
- .fm_form_options #email_fieldset .mail_subject_user,
2341
- .fm_form_options #email_fieldset .mail_from_name_user {
2342
  width:95%;
2343
  display:inline-block;
2344
  }
2345
- .fm_form_options #email_fieldset .mail_name {
2346
  width:92%;
2347
  display:inline-block;
2348
  }
2349
- .fm_form_options #email_fieldset .fm_textarea-buttons {
2350
  margin-bottom:10px;
2351
  }
2352
- .fm_form_options #email_fieldset .fm_textarea-buttons .button {
2353
  margin-bottom:5px;
2354
  }
2355
  .fm_advanced_layout .autogen_layout_label {
@@ -2447,4 +2446,10 @@ button:focus {
2447
  .wdform_field[type="type_name"] div[id$='_td_name_input_first'] input,
2448
  .wdform_field[type="type_name"] div[id$='_td_name_input_last'] input {
2449
  width: 98%;
 
 
 
 
 
 
2450
  }
148
  font-size: 13px !important;
149
  }
150
  #manage_form .wd-header {
 
151
  padding: 10px;
152
  }
153
  #manage_form .wd-page-title #title {
412
  .pagination-links a {
413
  cursor: pointer;
414
  }
415
+ #fm_admin_container .adminlist th { font-size:13px; }
416
  #fm_admin_container .pagination-links .tablenav-pages-navspan,
417
  #fm_admin_container .pagination-links a,
418
  #fm_admin_container .pagination-links a span {
2333
  .fm_form_options .dashicons-trash:hover, .fm_form_options .dashicons-no-alt:hover { color: #dc3232; }
2334
  .fm_form_options .dashicons-plus-alt { color: #0073aa; }
2335
  .fm_form_options .dashicons-plus-alt:hover { color: #00a0d2; }
2336
+ .fm_form_options #emailTab_fieldset .mailToAdd,
2337
+ .fm_form_options #emailTab_fieldset .mail_subject,
2338
+ .fm_form_options #emailTab_fieldset .from_name,
2339
+ .fm_form_options #emailTab_fieldset .mail_subject_user,
2340
+ .fm_form_options #emailTab_fieldset .mail_from_name_user {
2341
  width:95%;
2342
  display:inline-block;
2343
  }
2344
+ .fm_form_options #emailTab_fieldset .mail_name {
2345
  width:92%;
2346
  display:inline-block;
2347
  }
2348
+ .fm_form_options #emailTab_fieldset .fm_textarea-buttons {
2349
  margin-bottom:10px;
2350
  }
2351
+ .fm_form_options #emailTab_fieldset .fm_textarea-buttons .button {
2352
  margin-bottom:5px;
2353
  }
2354
  .fm_advanced_layout .autogen_layout_label {
2446
  .wdform_field[type="type_name"] div[id$='_td_name_input_first'] input,
2447
  .wdform_field[type="type_name"] div[id$='_td_name_input_last'] input {
2448
  width: 98%;
2449
+ }
2450
+ #add_field_cont .highlight:not(.country) {
2451
+ border-style: none !important;
2452
+ }
2453
+ .fm-page-header .wp-heading-inline {
2454
+ display: inline-block;
2455
  }
form-maker.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
- * Version: 1.12.10
7
  * Author: WebDorado Form Builder Team
8
  * Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -89,8 +89,8 @@ final class WDFM {
89
  $this->plugin_dir = WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__));
90
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
91
  $this->main_file = plugin_basename(__FILE__);
92
- $this->plugin_version = '1.12.10';
93
- $this->db_version = '2.12.10';
94
  $this->menu_slug = 'manage_fm';
95
  $this->prefix = 'form_maker';
96
  $this->css_prefix = 'fm_';
@@ -107,6 +107,7 @@ final class WDFM {
107
  add_action('init', array($this, 'init'), 9);
108
  add_action('admin_menu', array( $this, 'form_maker_options_panel' ) );
109
 
 
110
  add_action('wp_ajax_get_stats' . $this->plugin_postfix, array($this, 'form_maker')); //Show statistics
111
  add_action('wp_ajax_generete_csv' . $this->plugin_postfix, array($this, 'form_maker_ajax')); // Export csv.
112
  add_action('wp_ajax_generete_xml' . $this->plugin_postfix, array($this, 'form_maker_ajax')); // Export xml.
@@ -175,14 +176,8 @@ final class WDFM {
175
  add_action('widgets_init', create_function('', 'return register_widget("FMControllerWidget' . $this->plugin_postfix . '");'));
176
  }
177
 
178
- // Register fmemailverification post type
179
- add_action('init', array($this, 'register_fmemailverification_cpt'));
180
-
181
- // Register fmformpreview post type
182
- add_action('init', array($this, 'register_form_preview_cpt'));
183
-
184
  // Form maker activation.
185
- register_activation_hook(__FILE__, array($this, 'form_maker_activate'));
186
  if ( (!isset($_GET['action']) || $_GET['action'] != 'deactivate')
187
  && (!isset($_GET['page']) || $_GET['page'] != 'uninstall' . $this->menu_postfix) ) {
188
  add_action('admin_init', array($this, 'form_maker_activate'));
@@ -212,6 +207,12 @@ final class WDFM {
212
  public function init() {
213
  ob_start();
214
  $this->fm_overview();
 
 
 
 
 
 
215
  }
216
 
217
  /**
@@ -529,7 +530,7 @@ final class WDFM {
529
  echo __('Sorry, you are not allowed to access this page.', $this->prefix);
530
  }
531
  else {
532
- $id = WDW_FM_Library::get('form_id', 0);
533
  $display_options = WDW_FM_Library::display_options( $id );
534
  $type = $display_options->type;
535
 
@@ -618,10 +619,6 @@ final class WDFM {
618
  );
619
 
620
  register_post_type('fmemailverification', $args);
621
- if (!get_option('fm_emailverification')) {
622
- flush_rewrite_rules();
623
- add_option('fm_emailverification', true);
624
- }
625
  }
626
 
627
  /**
@@ -650,7 +647,7 @@ final class WDFM {
650
  public function register_frontend_scripts() {
651
  wp_register_style('fm-jquery-ui', $this->plugin_url . '/css/jquery-ui.custom.css', array(), $this->plugin_version);
652
 
653
- $fm_settings = get_option('fm_settings');
654
  $google_map_key = !empty($fm_settings['map_key']) ? '&key=' . $fm_settings['map_key'] : '';
655
  wp_register_script('google-maps', 'https://maps.google.com/maps/api/js?v=3.exp' . $google_map_key);
656
 
@@ -700,12 +697,22 @@ final class WDFM {
700
  * Frontend ajax scripts.
701
  */
702
  public function register_frontend_ajax_scripts() {
703
- $fm_settings = get_option('fm_settings');
704
  $google_map_key = !empty($fm_settings['map_key']) ? '&key=' . $fm_settings['map_key'] : '';
705
  wp_register_script('google-maps', 'https://maps.google.com/maps/api/js?v=3.exp' . $google_map_key);
706
  wp_register_script('fm-gmap_form_back', $this->plugin_url . '/js/if_gmap_back_end.js', array(), $this->plugin_version);
707
  }
708
 
 
 
 
 
 
 
 
 
 
 
709
  /**
710
  * Activate plugin.
711
  */
@@ -766,8 +773,6 @@ final class WDFM {
766
  add_option('fm_settings', array('public_key' => $public_key, 'private_key' => $private_key, 'csv_delimiter' => ',', 'map_key' => ''));
767
  }
768
  }
769
- WDFMInsert::install_demo_forms();
770
- // flush_rewrite_rules();
771
  }
772
 
773
  /**
@@ -785,13 +790,13 @@ final class WDFM {
785
  $prefix = $this->prefix;
786
  switch ($page) {
787
  case 'blocked_ips': {
788
- $help_text = 'block IPs';
789
  $user_guide_link .= 'blocking-ips.html';
790
  break;
791
  }
792
  case 'options': {
793
- $help_text = 'edit form settings';
794
- $user_guide_link .= '';
795
  break;
796
  }
797
  case 'licensing': {
@@ -803,31 +808,36 @@ final class WDFM {
803
  switch ($task) {
804
  case 'edit':
805
  case 'edit_old': {
806
- $help_text = 'add fields to your form';
807
- $user_guide_link .= 'description-of-form-fields.html';
808
  break;
809
  }
810
  case 'form_options':
811
  case 'form_options_old': {
812
- $help_text = 'edit form options';
813
- $user_guide_link .= 'configuring-form-options.html';
 
 
 
 
 
814
  break;
815
  }
816
  default: {
817
- $help_text = 'create, edit forms';
818
  $user_guide_link .= 'creating-form.html';
819
  }
820
  }
821
  break;
822
  }
823
  case 'submissions': {
824
- $help_text = 'view and manage form submissions';
825
- $user_guide_link .= 'managing-submissions.html';
826
  break;
827
  }
828
  case 'themes': {
829
- $help_text = 'create, edit form themes';
830
- $user_guide_link .= '';
831
  break;
832
  }
833
  default: {
@@ -981,7 +991,7 @@ final class WDFM {
981
  "user_guide" => array(
982
  0 => array(
983
  "main_title" => __("Installing", $this->prefix),
984
- "url" => "https://web-dorado.com/wordpress-form-maker/installing.html",
985
  "titles" => array()
986
  ),
987
  1 => array(
@@ -991,12 +1001,12 @@ final class WDFM {
991
  ),
992
  2 => array(
993
  "main_title" => __("Configuring Form Options", $this->prefix),
994
- "url" => "https://web-dorado.com/wordpress-form-maker/configuring-form-options.html",
995
  "titles" => array()
996
  ),
997
  3 => array(
998
  "main_title" => __("Description of The Form Fields", $this->prefix),
999
- "url" => "https://web-dorado.com/wordpress-form-maker/description-of-form-fields.html",
1000
  "titles" => array(
1001
  array(
1002
  "title" => __("Selecting Options from Database", $this->prefix),
@@ -1006,22 +1016,22 @@ final class WDFM {
1006
  ),
1007
  4 => array(
1008
  "main_title" => __("Publishing the Created Form", $this->prefix),
1009
- "url" => "https://web-dorado.com/wordpress-form-maker/publishing-form.html",
1010
  "titles" => array()
1011
  ),
1012
  5 => array(
1013
  "main_title" => __("Blocking IPs", $this->prefix),
1014
- "url" => "https://web-dorado.com/wordpress-form-maker/blocking-ips.html",
1015
  "titles" => array()
1016
  ),
1017
  6 => array(
1018
  "main_title" => __("Managing Submissions", $this->prefix),
1019
- "url" => "https://web-dorado.com/wordpress-form-maker/managing-submissions.html",
1020
  "titles" => array()
1021
  ),
1022
  7 => array(
1023
  "main_title" => __("Publishing Submissions", $this->prefix),
1024
- "url" => "https://web-dorado.com/wordpress-form-maker/publishing-submissions.html",
1025
  "titles" => array()
1026
  ),
1027
  ),
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
+ * Version: 1.12.11
7
  * Author: WebDorado Form Builder Team
8
  * Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
89
  $this->plugin_dir = WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__));
90
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
91
  $this->main_file = plugin_basename(__FILE__);
92
+ $this->plugin_version = '1.12.11';
93
+ $this->db_version = '2.12.11';
94
  $this->menu_slug = 'manage_fm';
95
  $this->prefix = 'form_maker';
96
  $this->css_prefix = 'fm_';
107
  add_action('init', array($this, 'init'), 9);
108
  add_action('admin_menu', array( $this, 'form_maker_options_panel' ) );
109
 
110
+ add_action('wp_ajax_manage' . $this->menu_postfix, array($this, 'form_maker_ajax')); //Post/page search on display options pages.
111
  add_action('wp_ajax_get_stats' . $this->plugin_postfix, array($this, 'form_maker')); //Show statistics
112
  add_action('wp_ajax_generete_csv' . $this->plugin_postfix, array($this, 'form_maker_ajax')); // Export csv.
113
  add_action('wp_ajax_generete_xml' . $this->plugin_postfix, array($this, 'form_maker_ajax')); // Export xml.
176
  add_action('widgets_init', create_function('', 'return register_widget("FMControllerWidget' . $this->plugin_postfix . '");'));
177
  }
178
 
 
 
 
 
 
 
179
  // Form maker activation.
180
+ register_activation_hook(__FILE__, array($this, 'form_maker_on_activate'));
181
  if ( (!isset($_GET['action']) || $_GET['action'] != 'deactivate')
182
  && (!isset($_GET['page']) || $_GET['page'] != 'uninstall' . $this->menu_postfix) ) {
183
  add_action('admin_init', array($this, 'form_maker_activate'));
207
  public function init() {
208
  ob_start();
209
  $this->fm_overview();
210
+
211
+ // Register fmemailverification post type
212
+ $this->register_fmemailverification_cpt();
213
+
214
+ // Register fmformpreview post type
215
+ $this->register_form_preview_cpt();
216
  }
217
 
218
  /**
530
  echo __('Sorry, you are not allowed to access this page.', $this->prefix);
531
  }
532
  else {
533
+ $id = WDW_FM_Library::get('wdform_id', 0);
534
  $display_options = WDW_FM_Library::display_options( $id );
535
  $type = $display_options->type;
536
 
619
  );
620
 
621
  register_post_type('fmemailverification', $args);
 
 
 
 
622
  }
623
 
624
  /**
647
  public function register_frontend_scripts() {
648
  wp_register_style('fm-jquery-ui', $this->plugin_url . '/css/jquery-ui.custom.css', array(), $this->plugin_version);
649
 
650
+ $fm_settings = get_option('fm_settings');
651
  $google_map_key = !empty($fm_settings['map_key']) ? '&key=' . $fm_settings['map_key'] : '';
652
  wp_register_script('google-maps', 'https://maps.google.com/maps/api/js?v=3.exp' . $google_map_key);
653
 
697
  * Frontend ajax scripts.
698
  */
699
  public function register_frontend_ajax_scripts() {
700
+ $fm_settings = get_option('fm_settings');
701
  $google_map_key = !empty($fm_settings['map_key']) ? '&key=' . $fm_settings['map_key'] : '';
702
  wp_register_script('google-maps', 'https://maps.google.com/maps/api/js?v=3.exp' . $google_map_key);
703
  wp_register_script('fm-gmap_form_back', $this->plugin_url . '/js/if_gmap_back_end.js', array(), $this->plugin_version);
704
  }
705
 
706
+ /**
707
+ * Activate plugin.
708
+ */
709
+ public function form_maker_on_activate() {
710
+ $this->form_maker_activate();
711
+ WDFMInsert::install_demo_forms();
712
+ $this->init();
713
+ flush_rewrite_rules();
714
+ }
715
+
716
  /**
717
  * Activate plugin.
718
  */
773
  add_option('fm_settings', array('public_key' => $public_key, 'private_key' => $private_key, 'csv_delimiter' => ',', 'map_key' => ''));
774
  }
775
  }
 
 
776
  }
777
 
778
  /**
790
  $prefix = $this->prefix;
791
  switch ($page) {
792
  case 'blocked_ips': {
793
+ $help_text = __('block IPs', $this->prefix);
794
  $user_guide_link .= 'blocking-ips.html';
795
  break;
796
  }
797
  case 'options': {
798
+ $help_text = __('edit form settings', $this->prefix);
799
+ $user_guide_link .= 'themes-and-options.html';
800
  break;
801
  }
802
  case 'licensing': {
808
  switch ($task) {
809
  case 'edit':
810
  case 'edit_old': {
811
+ $help_text = __('add fields to your form', $this->prefix);
812
+ $user_guide_link .= 'form-fields/basic-fields.html';
813
  break;
814
  }
815
  case 'form_options':
816
  case 'form_options_old': {
817
+ $help_text = __('edit form options', $this->prefix);
818
+ $user_guide_link .= 'form-options/general-options.html';
819
+ break;
820
+ }
821
+ case 'display_options': {
822
+ $help_text = __('edit display options', $this->prefix);
823
+ $user_guide_link .= 'display-options-publishing/configuring-display-options.html';
824
  break;
825
  }
826
  default: {
827
+ $help_text = __('create, edit forms', $this->prefix);
828
  $user_guide_link .= 'creating-form.html';
829
  }
830
  }
831
  break;
832
  }
833
  case 'submissions': {
834
+ $help_text = __('view and manage form submissions', $this->prefix);
835
+ $user_guide_link .= 'submissions.html';
836
  break;
837
  }
838
  case 'themes': {
839
+ $help_text = __('create, edit form themes', $this->prefix);
840
+ $user_guide_link .= 'themes-and-options.html';
841
  break;
842
  }
843
  default: {
991
  "user_guide" => array(
992
  0 => array(
993
  "main_title" => __("Installing", $this->prefix),
994
+ "url" => "https://web-dorado.com/wordpress-form-maker/introduction.html",
995
  "titles" => array()
996
  ),
997
  1 => array(
1001
  ),
1002
  2 => array(
1003
  "main_title" => __("Configuring Form Options", $this->prefix),
1004
+ "url" => "https://web-dorado.com/wordpress-form-maker/form-options/general-options.html",
1005
  "titles" => array()
1006
  ),
1007
  3 => array(
1008
  "main_title" => __("Description of The Form Fields", $this->prefix),
1009
+ "url" => "https://web-dorado.com/wordpress-form-maker/form-fields/basic-fields.html",
1010
  "titles" => array(
1011
  array(
1012
  "title" => __("Selecting Options from Database", $this->prefix),
1016
  ),
1017
  4 => array(
1018
  "main_title" => __("Publishing the Created Form", $this->prefix),
1019
+ "url" => "https://web-dorado.com/wordpress-form-maker/creating-form.html",
1020
  "titles" => array()
1021
  ),
1022
  5 => array(
1023
  "main_title" => __("Blocking IPs", $this->prefix),
1024
+ "url" => "https://web-dorado.com/wordpress-form-maker/submissions.html",
1025
  "titles" => array()
1026
  ),
1027
  6 => array(
1028
  "main_title" => __("Managing Submissions", $this->prefix),
1029
+ "url" => "https://web-dorado.com/wordpress-form-maker/submissions.html",
1030
  "titles" => array()
1031
  ),
1032
  7 => array(
1033
  "main_title" => __("Publishing Submissions", $this->prefix),
1034
+ "url" => "https://web-dorado.com/wordpress-form-maker/other-publishing-options.html",
1035
  "titles" => array()
1036
  ),
1037
  ),
frontend/controllers/form_maker.php CHANGED
@@ -173,7 +173,7 @@ class FMControllerForm_maker {
173
  }
174
  $show_for_admin = current_user_can('administrator') && $form->show_for_admin ? 'true' : 'false';
175
 
176
- if ($this->form_preview) {
177
  $display_on_this = TRUE;
178
  }
179
 
173
  }
174
  $show_for_admin = current_user_can('administrator') && $form->show_for_admin ? 'true' : 'false';
175
 
176
+ if ( $this->form_preview && ($id == WDW_FM_Library::get('wdform_id', 0)) ) {
177
  $display_on_this = TRUE;
178
  }
179
 
frontend/models/form_maker.php CHANGED
@@ -24,7 +24,7 @@ class FMModelForm_maker {
24
  return FALSE;
25
  }
26
 
27
- $form_preview = (WDW_FM_Library::get('form_id', '') == $id) ? TRUE : FALSE;
28
  if ( !$form_preview && !$row->published ) {
29
  // If the form has been unpublished.
30
  echo WDW_FM_Library::message(__('The form you are trying to view has been unpublished.', WDFM()->prefix), 'fm-notice-error');
@@ -154,8 +154,10 @@ class FMModelForm_maker {
154
  clearstatcache();
155
  $css_content = '';
156
  if ( !$old ) {
157
- $css_content = '.fm-form-container.fm-theme' . $theme_id . ' .fm-form {'.
158
- ( !empty($form_theme['AGPWidth']) ? 'width:'. $form_theme['AGPWidth'] .'%;' : '' ).
 
 
159
  ( !empty($form_theme['AGPMargin']) ? 'margin:'. $form_theme['AGPMargin'] .';' : '' ).
160
  ( !empty($form_theme['AGPPadding']) ? 'padding:'. $form_theme['AGPPadding'] .' !important;' : '' ).
161
  ( (isset($form_theme['AGPBorderRadius']) && $form_theme['AGPBorderRadius'] !== '') ? 'border-radius:'. $form_theme['AGPBorderRadius'] .'px;' : '' ).
@@ -353,7 +355,6 @@ class FMModelForm_maker {
353
  ( !empty($form_theme['AGPMargin']) ? 'margin:' . $form_theme['AGPMargin'] . ';' : '').
354
  '}';
355
  $css_content .= '.fm-form-container.fm-theme' . $theme_id . ' .fm-pages.wdform_page_navigation {'.
356
- ( !empty($form_theme['AGPWidth']) ? 'width:' . $form_theme['AGPWidth'] . '%;' : '').
357
  ( !empty($form_theme['AGPMargin']) ? 'margin:' . $form_theme['AGPMargin'] . '%;' : '').
358
  '}';
359
  $css_content .= '.fm-form-container.fm-theme' . $theme_id . ' .fm-form .wdform_footer {'.
@@ -2927,7 +2928,7 @@ class FMModelForm_maker {
2927
  else {
2928
  $checked = "";
2929
  }
2930
- $sign = $checked == 'checked' ? '&#x2714;' : '';
2931
  $matrix .= '<td style="text-align:center">' . $sign . '</td>';
2932
  }
2933
  }
@@ -2941,7 +2942,7 @@ class FMModelForm_maker {
2941
  else {
2942
  $checked = "";
2943
  }
2944
- $sign = $checked == 'checked' ? '&#x2714;' : '';
2945
  $matrix .= '<td style="text-align:center">' . $sign . '</td>';
2946
  }
2947
  }
@@ -2949,7 +2950,7 @@ class FMModelForm_maker {
2949
  if ( $input_type == "text" ) {
2950
  for ( $j = 1; $j <= $columns_count; $j++ ) {
2951
  $checked = isset($_POST['wdform_' . $i . "_input_element" . $id . $k . '_' . $j]) ? esc_html($_POST['wdform_' . $i . "_input_element" . $id . $k . '_' . $j]) : "";
2952
- $matrix .= '<td style="text-align:center"><input type="text" value="' . $checked . '" disabled /></td>';
2953
  }
2954
  }
2955
  else {
@@ -3013,13 +3014,14 @@ class FMModelForm_maker {
3013
  foreach ( $label_order_original as $key => $label_each ) {
3014
  $type = $label_type[$key];
3015
  $key1 = $type == 'type_hidden' ? $label_each : $key;
3016
- if ( strpos($new_script, "%" . $label_each . "%") > -1 ) {
 
3017
  $new_value = $this->custom_fields_mail($type, $key1, $id, $attachment_user, $form_currency);
3018
- $new_script = str_replace("%" . $label_each . "%", $new_value, $new_script);
3019
  }
3020
- if ( $type == "type_file_upload" && strpos($new_script, "%" . $label_each . "(link)%") > -1 ) {
3021
  $new_value = $this->custom_fields_mail($type, $key, $id, $attachment_user, $form_currency, 1);
3022
- $new_script = str_replace("%" . $label_each . "(link)%", $new_value, $new_script);
3023
  }
3024
  if ( strpos($fromname, "%" . $label_each . "%") > -1 ) {
3025
  $new_value = str_replace('<br>', ', ', $this->custom_fields_mail($type, $key, $id, '', ''));
@@ -3168,13 +3170,14 @@ class FMModelForm_maker {
3168
  foreach ( $label_order_original as $key => $label_each ) {
3169
  $type = $label_type[$key];
3170
  $key1 = $type == 'type_hidden' ? $label_each : $key;
3171
- if ( strpos($new_script, "%" . $label_each . "%") > -1 ) {
 
3172
  $new_value = $this->custom_fields_mail($type, $key1, $id, $attachment, $form_currency);
3173
- $new_script = str_replace("%" . $label_each . "%", $new_value, $new_script);
3174
  }
3175
- if ( $type == "type_file_upload" && strpos($new_script, "%" . $label_each . "(link)%") > -1 ) {
3176
  $new_value = $this->custom_fields_mail($type, $key, $id, $attachment, $form_currency, 1);
3177
- $new_script = str_replace("%" . $label_each . "(link)%", $new_value, $new_script);
3178
  }
3179
  if ( strpos($fromname, "%" . $label_each . "%") > -1 ) {
3180
  $new_value = str_replace('<br>', ', ', $this->custom_fields_mail($type, $key, $id, '', $form_currency));
@@ -3727,12 +3730,12 @@ class FMModelForm_maker {
3727
  }
3728
  for ( $j = 1; $j <= $columns_count; $j++ ) {
3729
  if ( $aaa[1] == $j ) {
3730
- $checked = "checked";
3731
  }
3732
  else {
3733
  $checked = "";
3734
  }
3735
- $matrix .= '<td style="text-align:center"><input type="radio" ' . $checked . ' disabled /></td>';
3736
  }
3737
  }
3738
  else {
@@ -3740,19 +3743,19 @@ class FMModelForm_maker {
3740
  for ( $j = 1; $j <= $columns_count; $j++ ) {
3741
  $checked = isset($_POST['wdform_' . $key . "_input_element" . $id . $k . '_' . $j]) ? $_POST['wdform_' . $key . "_input_element" . $id . $k . '_' . $j] : 0;
3742
  if ( $checked == 1 ) {
3743
- $checked = "checked";
3744
  }
3745
  else {
3746
  $checked = "";
3747
  }
3748
- $matrix .= '<td style="text-align:center"><input type="checkbox" ' . $checked . ' disabled /></td>';
3749
  }
3750
  }
3751
  else {
3752
  if ( $input_type == "text" ) {
3753
  for ( $j = 1; $j <= $columns_count; $j++ ) {
3754
  $checked = isset($_POST['wdform_' . $key . "_input_element" . $id . $k . '_' . $j]) ? esc_html($_POST['wdform_' . $key . "_input_element" . $id . $k . '_' . $j]) : "";
3755
- $matrix .= '<td style="text-align:center"><input type="text" value="' . $checked . '" disabled /></td>';
3756
  }
3757
  }
3758
  else {
24
  return FALSE;
25
  }
26
 
27
+ $form_preview = (WDW_FM_Library::get('wdform_id', '') == $id) ? TRUE : FALSE;
28
  if ( !$form_preview && !$row->published ) {
29
  // If the form has been unpublished.
30
  echo WDW_FM_Library::message(__('The form you are trying to view has been unpublished.', WDFM()->prefix), 'fm-notice-error');
154
  clearstatcache();
155
  $css_content = '';
156
  if ( !$old ) {
157
+ $css_content = '.fm-form-container.fm-theme' . $theme_id . ' {'.
158
+ ( !empty($form_theme['AGPWidth']) ? 'width:' . $form_theme['AGPWidth'] . '%;' : '' ).
159
+ '}';
160
+ $css_content .= '.fm-form-container.fm-theme' . $theme_id . ' .fm-form {'.
161
  ( !empty($form_theme['AGPMargin']) ? 'margin:'. $form_theme['AGPMargin'] .';' : '' ).
162
  ( !empty($form_theme['AGPPadding']) ? 'padding:'. $form_theme['AGPPadding'] .' !important;' : '' ).
163
  ( (isset($form_theme['AGPBorderRadius']) && $form_theme['AGPBorderRadius'] !== '') ? 'border-radius:'. $form_theme['AGPBorderRadius'] .'px;' : '' ).
355
  ( !empty($form_theme['AGPMargin']) ? 'margin:' . $form_theme['AGPMargin'] . ';' : '').
356
  '}';
357
  $css_content .= '.fm-form-container.fm-theme' . $theme_id . ' .fm-pages.wdform_page_navigation {'.
 
358
  ( !empty($form_theme['AGPMargin']) ? 'margin:' . $form_theme['AGPMargin'] . '%;' : '').
359
  '}';
360
  $css_content .= '.fm-form-container.fm-theme' . $theme_id . ' .fm-form .wdform_footer {'.
2928
  else {
2929
  $checked = "";
2930
  }
2931
+ $sign = $checked == 'checked' ? '&#10004;' : '';
2932
  $matrix .= '<td style="text-align:center">' . $sign . '</td>';
2933
  }
2934
  }
2942
  else {
2943
  $checked = "";
2944
  }
2945
+ $sign = $checked == 'checked' ? '&#10004;' : '';
2946
  $matrix .= '<td style="text-align:center">' . $sign . '</td>';
2947
  }
2948
  }
2950
  if ( $input_type == "text" ) {
2951
  for ( $j = 1; $j <= $columns_count; $j++ ) {
2952
  $checked = isset($_POST['wdform_' . $i . "_input_element" . $id . $k . '_' . $j]) ? esc_html($_POST['wdform_' . $i . "_input_element" . $id . $k . '_' . $j]) : "";
2953
+ $matrix .= '<td style="text-align:center">' . $checked . '</td>';
2954
  }
2955
  }
2956
  else {
3014
  foreach ( $label_order_original as $key => $label_each ) {
3015
  $type = $label_type[$key];
3016
  $key1 = $type == 'type_hidden' ? $label_each : $key;
3017
+ $label_each_decoded = htmlspecialchars_decode($label_each);
3018
+ if ( strpos($new_script, "%" . $label_each_decoded . "%") > -1 ) {
3019
  $new_value = $this->custom_fields_mail($type, $key1, $id, $attachment_user, $form_currency);
3020
+ $new_script = str_replace("%" . $label_each_decoded . "%", $new_value, $new_script);
3021
  }
3022
+ if ( $type == "type_file_upload" && strpos($new_script, "%" . $label_each_decoded . "(link)%") > -1 ) {
3023
  $new_value = $this->custom_fields_mail($type, $key, $id, $attachment_user, $form_currency, 1);
3024
+ $new_script = str_replace("%" . $label_each_decoded . "(link)%", $new_value, $new_script);
3025
  }
3026
  if ( strpos($fromname, "%" . $label_each . "%") > -1 ) {
3027
  $new_value = str_replace('<br>', ', ', $this->custom_fields_mail($type, $key, $id, '', ''));
3170
  foreach ( $label_order_original as $key => $label_each ) {
3171
  $type = $label_type[$key];
3172
  $key1 = $type == 'type_hidden' ? $label_each : $key;
3173
+ $label_each_decoded = htmlspecialchars_decode($label_each);
3174
+ if ( strpos($new_script, "%" . $label_each_decoded . "%") > -1 ) {
3175
  $new_value = $this->custom_fields_mail($type, $key1, $id, $attachment, $form_currency);
3176
+ $new_script = str_replace("%" . $label_each_decoded . "%", $new_value, $new_script);
3177
  }
3178
+ if ( $type == "type_file_upload" && strpos($new_script, "%" . $label_each_decoded . "(link)%") > -1 ) {
3179
  $new_value = $this->custom_fields_mail($type, $key, $id, $attachment, $form_currency, 1);
3180
+ $new_script = str_replace("%" . $label_each_decoded . "(link)%", $new_value, $new_script);
3181
  }
3182
  if ( strpos($fromname, "%" . $label_each . "%") > -1 ) {
3183
  $new_value = str_replace('<br>', ', ', $this->custom_fields_mail($type, $key, $id, '', $form_currency));
3730
  }
3731
  for ( $j = 1; $j <= $columns_count; $j++ ) {
3732
  if ( $aaa[1] == $j ) {
3733
+ $checked = "&#10004;";
3734
  }
3735
  else {
3736
  $checked = "";
3737
  }
3738
+ $matrix .= '<td style="text-align:center">' . $checked . '</td>';
3739
  }
3740
  }
3741
  else {
3743
  for ( $j = 1; $j <= $columns_count; $j++ ) {
3744
  $checked = isset($_POST['wdform_' . $key . "_input_element" . $id . $k . '_' . $j]) ? $_POST['wdform_' . $key . "_input_element" . $id . $k . '_' . $j] : 0;
3745
  if ( $checked == 1 ) {
3746
+ $checked = "&#10004;";
3747
  }
3748
  else {
3749
  $checked = "";
3750
  }
3751
+ $matrix .= '<td style="text-align:center">' . $checked . '</td>';
3752
  }
3753
  }
3754
  else {
3755
  if ( $input_type == "text" ) {
3756
  for ( $j = 1; $j <= $columns_count; $j++ ) {
3757
  $checked = isset($_POST['wdform_' . $key . "_input_element" . $id . $k . '_' . $j]) ? esc_html($_POST['wdform_' . $key . "_input_element" . $id . $k . '_' . $j]) : "";
3758
+ $matrix .= '<td style="text-align:center">' . $checked . '</td>';
3759
  }
3760
  }
3761
  else {
js/add_field.js CHANGED
@@ -4821,7 +4821,7 @@ function refresh_rowcol(num, type) {
4821
  var adding = document.createElement('input');
4822
  adding.setAttribute("type", type);
4823
  adding.setAttribute("id", num + "_elementform_id_temp" + index);
4824
- if (jQuery(this).find('#el_choices' + index)[0].getAttribute("checked") == "true")
4825
  adding.setAttribute("checked", "checked");
4826
  if (document.getElementById(num + "_option_left_right").value == "right")
4827
  adding.style.cssText = "float: left !important";
@@ -14078,7 +14078,7 @@ function create_matrix_rows(i, w_rows) {
14078
  var item_body = jQuery('<div class="fm-width-90"></div>');
14079
  item_body.append(create_matrix_row_item(i, j, w_rows[j]));
14080
  button.append(item_body);
14081
- var row_remove = jQuery('<div class="fm-width-10 fm-remove-button"><span class="fm-remove-attribute dashicons dashicons-dismiss" id="el_rows' + j + '_remove" onClick="remove_rowcols(' + j + ', ' + i + ', \'rows\')"></span></div>');
14082
  button.append(row_remove);
14083
  rows.append(button);
14084
  }
@@ -14105,7 +14105,7 @@ function create_matrix_columns(i, w_columns) {
14105
  var item_body = jQuery('<div class="fm-width-90"></div>');
14106
  item_body.append(create_matrix_column_item(i, j, w_columns[j]));
14107
  button.append(item_body);
14108
- var column_remove = jQuery('<div class="fm-width-10 fm-remove-button"><span class="fm-remove-attribute dashicons dashicons-dismiss" id="el_rows' + j + '_remove" onClick="remove_rowcols(' + j + ', ' + i + ', \'columns\')"></span></div>');
14109
  button.append(column_remove);
14110
  rows.append(button);
14111
  }
@@ -14148,7 +14148,7 @@ function add_to_matrix(type, num) {
14148
  var item_body = jQuery('<div class="fm-width-90"></div>');
14149
  item_body.append(create_matrix_row_item(num, m, ''));
14150
  button.append(item_body);
14151
- var row_remove = jQuery('<div class="fm-width-10 fm-remove-button"><span class="fm-remove-attribute dashicons dashicons-dismiss" onClick="remove_rowcols(' + m + ', ' + num + ', \'rows\')"></span></div>');
14152
  button.append(row_remove);
14153
  rows.append(button);
14154
  }
@@ -14158,7 +14158,7 @@ function add_to_matrix(type, num) {
14158
  var item_body = jQuery('<div class="fm-width-90"></div>');
14159
  item_body.append(create_matrix_column_item(num, n, ''));
14160
  button.append(item_body);
14161
- var column_remove = jQuery('<div class="fm-width-10 fm-remove-button"><span class="fm-remove-attribute dashicons dashicons-dismiss" onClick="remove_rowcols(' + n + ', ' + num + ', \'columns\')"></span></div>');
14162
  button.append(column_remove);
14163
  columns.append(button);
14164
  }
@@ -14166,15 +14166,8 @@ function add_to_matrix(type, num) {
14166
  }
14167
 
14168
  function remove_rowcols(id, num, type) {
14169
- var choices_td = document.getElementById(type);
14170
- var el_choices = document.getElementById('el_' + type + id);
14171
- var el_choices_remove = document.getElementById('el_' + type + id + '_remove');
14172
- var br = document.getElementById('br' + type + id);
14173
-
14174
- choices_td.removeChild(el_choices);
14175
- choices_td.removeChild(el_choices_remove);
14176
- choices_td.removeChild(br);
14177
-
14178
  refresh_matrix(num);
14179
  }
14180
 
4821
  var adding = document.createElement('input');
4822
  adding.setAttribute("type", type);
4823
  adding.setAttribute("id", num + "_elementform_id_temp" + index);
4824
+ if (jQuery("#"+num + "_elementform_id_temp" + index).attr("checked") == "checked")
4825
  adding.setAttribute("checked", "checked");
4826
  if (document.getElementById(num + "_option_left_right").value == "right")
4827
  adding.style.cssText = "float: left !important";
14078
  var item_body = jQuery('<div class="fm-width-90"></div>');
14079
  item_body.append(create_matrix_row_item(i, j, w_rows[j]));
14080
  button.append(item_body);
14081
+ var row_remove = jQuery('<div class="fm-width-10 fm-remove-button"><span class="fm-remove-attribute dashicons dashicons-dismiss" id="el_rows' + j + '_remove" onClick="remove_rowcols(' + j + ', ' + i + ', \'row\')"></span></div>');
14082
  button.append(row_remove);
14083
  rows.append(button);
14084
  }
14105
  var item_body = jQuery('<div class="fm-width-90"></div>');
14106
  item_body.append(create_matrix_column_item(i, j, w_columns[j]));
14107
  button.append(item_body);
14108
+ var column_remove = jQuery('<div class="fm-width-10 fm-remove-button"><span class="fm-remove-attribute dashicons dashicons-dismiss" id="el_rows' + j + '_remove" onClick="remove_rowcols(' + j + ', ' + i + ', \'column\')"></span></div>');
14109
  button.append(column_remove);
14110
  rows.append(button);
14111
  }
14148
  var item_body = jQuery('<div class="fm-width-90"></div>');
14149
  item_body.append(create_matrix_row_item(num, m, ''));
14150
  button.append(item_body);
14151
+ var row_remove = jQuery('<div class="fm-width-10 fm-remove-button"><span class="fm-remove-attribute dashicons dashicons-dismiss" onClick="remove_rowcols(' + m + ', ' + num + ', \'row\')"></span></div>');
14152
  button.append(row_remove);
14153
  rows.append(button);
14154
  }
14158
  var item_body = jQuery('<div class="fm-width-90"></div>');
14159
  item_body.append(create_matrix_column_item(num, n, ''));
14160
  button.append(item_body);
14161
+ var column_remove = jQuery('<div class="fm-width-10 fm-remove-button"><span class="fm-remove-attribute dashicons dashicons-dismiss" onClick="remove_rowcols(' + n + ', ' + num + ', \'column\')"></span></div>');
14162
  button.append(column_remove);
14163
  columns.append(button);
14164
  }
14166
  }
14167
 
14168
  function remove_rowcols(id, num, type) {
14169
+ jQuery('#el_'+ type + id).remove();
14170
+ jQuery('#item_'+ type + '_' + id).remove();
 
 
 
 
 
 
 
14171
  refresh_matrix(num);
14172
  }
14173
 
js/form_maker_manage.js CHANGED
@@ -247,7 +247,7 @@ function check_isnum(e) {
247
  function fm_check_email(id) {
248
  if (document.getElementById(id) && jQuery('#' + id).val() != '') {
249
  var email_array = jQuery('#' + id).val().split(',');
250
- var re = /^[a-zA-Z0-9.+_-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/;
251
  for (var email_id = 0; email_id < email_array.length; email_id++) {
252
  var email = email_array[email_id].replace(/^\s+|\s+$/g, '');
253
  if ( ! re.test( email ) ) {
247
  function fm_check_email(id) {
248
  if (document.getElementById(id) && jQuery('#' + id).val() != '') {
249
  var email_array = jQuery('#' + id).val().split(',');
250
+ var re = /^[a-zA-Z0-9.+_-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,61}$/;
251
  for (var email_id = 0; email_id < email_array.length; email_id++) {
252
  var email = email_array[email_id].replace(/^\s+|\s+$/g, '');
253
  if ( ! re.test( email ) ) {
js/main_div_front_end.js CHANGED
@@ -952,7 +952,7 @@ function wd_check_confirmation_email(wdid, form_id, message, type) {
952
  function wd_check_email(wdid, form_id, message_check) {
953
  var element = jQuery("#wdform_" + wdid +"_element" + form_id);
954
  var element_confirm = jQuery("#wdform_" + wdid +"_1_element" + form_id);
955
- var re = /^[a-zA-Z0-9.+_-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/;
956
  if(jQuery(element).val()!="" && !re.test(jQuery.trim(jQuery(element).val())) && jQuery(element).attr("title") != jQuery(element).val()){
957
  jQuery("#check_email_" + wdid + "_" + form_id).remove();
958
  jQuery(element).parent().parent().parent().append("<div id='check_email_" + wdid + "_" + form_id + "' class='fm-not-filled'>" + message_check + "</div>");
@@ -1105,13 +1105,12 @@ function wd_is_filled(form_id, field_id) {
1105
  var req_fields = field_id ? field_id.split() : window['required_fields'+form_id];
1106
  var not_filled = {};
1107
  jQuery(req_fields).each(function(index, wdid) {
1108
- //if ( x.find(jQuery("div[wdid='"+wdid+"']")).is(":visible") === false ) {
1109
- // x.find(jQuery("div[wdid='"+wdid+"']")).find('.fm-not-filled').remove();
1110
- // x.find(jQuery("div[wdid='"+wdid+"']")).css("background-color", "");
1111
- // x.find(jQuery("div[wdid='"+wdid+"'] label")).removeClass("error_label");
1112
- //}
1113
- // if ( x.find(jQuery("div[wdid='"+wdid+"']")).length != 0 && x.find(jQuery("div[wdid='"+wdid+"']")).is(":visible") === true ) {
1114
- if(x.find(jQuery("div[wdid='"+wdid+"']")).length != 0 && x.find(jQuery("div[wdid='"+wdid+"']")).css("display") != "none" ) {
1115
  switch(window['labels_and_ids'+form_id][wdid]) {
1116
  case 'type_text':
1117
  case 'type_textarea':
952
  function wd_check_email(wdid, form_id, message_check) {
953
  var element = jQuery("#wdform_" + wdid +"_element" + form_id);
954
  var element_confirm = jQuery("#wdform_" + wdid +"_1_element" + form_id);
955
+ var re = /^[a-zA-Z0-9.+_-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,61}$/;
956
  if(jQuery(element).val()!="" && !re.test(jQuery.trim(jQuery(element).val())) && jQuery(element).attr("title") != jQuery(element).val()){
957
  jQuery("#check_email_" + wdid + "_" + form_id).remove();
958
  jQuery(element).parent().parent().parent().append("<div id='check_email_" + wdid + "_" + form_id + "' class='fm-not-filled'>" + message_check + "</div>");
1105
  var req_fields = field_id ? field_id.split() : window['required_fields'+form_id];
1106
  var not_filled = {};
1107
  jQuery(req_fields).each(function(index, wdid) {
1108
+ if ( x.find(jQuery("div[wdid='"+wdid+"']")).is(":visible") === false ) {
1109
+ x.find(jQuery("div[wdid='"+wdid+"']")).find('.fm-not-filled').remove();
1110
+ x.find(jQuery("div[wdid='"+wdid+"']")).css("background-color", "");
1111
+ x.find(jQuery("div[wdid='"+wdid+"'] label")).removeClass("error_label");
1112
+ }
1113
+ if ( x.find(jQuery("div[wdid='"+wdid+"']")).length != 0 && x.find(jQuery("div[wdid='"+wdid+"']")).is(":visible") === true ) {
 
1114
  switch(window['labels_and_ids'+form_id][wdid]) {
1115
  case 'type_text':
1116
  case 'type_textarea':
languages/form_maker-cs_CZ.mo CHANGED
Binary file
languages/form_maker-cs_CZ.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: form_maker\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-03-01 16:22+0300\n"
6
- "PO-Revision-Date: 2017-03-01 16:22+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: cs\n"
@@ -12,9 +12,8 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
14
  "X-Poedit-Basepath: .\n"
15
- "X-Generator: Poedit 1.6.9\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
17
- "maker\n"
18
 
19
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:320
20
  msgid "Street Address"
@@ -42,53 +41,49 @@ msgstr "Země"
42
 
43
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewFormMakerSubmits.php:70
44
  msgid "Date"
45
- msgstr ""
46
 
47
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:171
48
  msgid "Connection type"
49
- msgstr ""
50
 
51
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:599
52
  msgid "Show submission"
53
- msgstr ""
54
 
55
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:633
56
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1493
57
- #, fuzzy
58
  msgid "Can not upload this type of file"
59
- msgstr "Je nám líto, ale nemáte možnost nahrát tento typ souboru."
60
 
61
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:634
62
- #, fuzzy
63
  msgid "Field is required"
64
- msgstr "pole je povinné."
65
 
66
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:635
67
  msgid "The "
68
  msgstr ""
69
 
70
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:636
71
- #, fuzzy
72
  msgid " value must be between "
73
- msgstr "hodnota musí být mezi "
74
 
75
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:637
76
- #, fuzzy
77
  msgid "Value must be between "
78
- msgstr "hodnota musí být mezi "
79
 
80
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:638
81
  msgid "Are you sure you want to clear saved data?"
82
- msgstr ""
83
 
84
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:639
85
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4894
86
  msgid "Your score should be less than"
87
- msgstr "Vaše skóre by měla být menší než "
88
 
89
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:224
90
  msgid "Leave A Review?"
91
- msgstr ""
92
 
93
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:225
94
  #, php-format
@@ -96,27 +91,29 @@ msgid ""
96
  "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
97
  "review on WordPress.org?"
98
  msgstr ""
 
 
99
 
100
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:226
101
  msgid "Sure! I'd love to!"
102
- msgstr ""
103
 
104
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:227
105
  msgid "I've already left a review"
106
- msgstr ""
107
 
108
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:228
109
  msgid "Maybe Later"
110
- msgstr ""
111
 
112
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:229
113
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:239
114
  msgid "Never show again"
115
- msgstr ""
116
 
117
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:235
118
  msgid "Hey! How's It Going?"
119
- msgstr ""
120
 
121
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:236
122
  #, php-format
@@ -124,14 +121,16 @@ msgid ""
124
  "Thank you for using WordPress %s! We hope that you've found everything you "
125
  "need, but if you have any questions:"
126
  msgstr ""
 
 
127
 
128
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:237
129
  msgid "Check out User Guide"
130
- msgstr ""
131
 
132
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:238
133
  msgid "Get Some Help"
134
- msgstr ""
135
 
136
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1138
137
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1149
@@ -142,10 +141,9 @@ msgstr "Chyba, nesprávný bezpečnostní kód."
142
 
143
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1204
144
  msgid "Your ip is blacklisted. Please contact the website administrator."
145
- msgstr "Vaše IP je na černé listině. Prosím, obraťte se na správce webu. "
146
 
147
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1375
148
- #, fuzzy
149
  msgid "This is not a valid date format."
150
  msgstr "Toto není platná e-mailová adresa."
151
 
@@ -160,7 +158,7 @@ msgstr "Chyba může soubor nelze přesunout."
160
 
161
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1978
162
  msgid "This field "
163
- msgstr ""
164
 
165
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2250
166
  msgid "Nothing was submitted."
@@ -196,11 +194,11 @@ msgstr "Ověřovací odkaz je neplatný."
196
 
197
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:388
198
  msgid "Password values don't match"
199
- msgstr ""
200
 
201
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:741
202
  msgid "The email addresses don't match"
203
- msgstr ""
204
 
205
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:742
206
  msgid "This is not a valid email address."
@@ -261,7 +259,7 @@ msgstr "Prosinec"
261
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4668
262
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4698
263
  msgid "Quantity"
264
- msgstr "množství "
265
 
266
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4175
267
  msgid ""
@@ -278,161 +276,163 @@ msgstr "The"
278
 
279
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4586
280
  msgid "value must be between"
281
- msgstr "hodnota musí být mezi "
282
 
283
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
284
  msgid "You have no permission to view submissions."
285
- msgstr ""
286
 
287
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
288
  msgid "Entries"
289
- msgstr ""
290
 
291
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
292
  msgid "Views"
293
- msgstr ""
294
 
295
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
296
  msgid "Conversion Rate"
297
- msgstr ""
298
 
299
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
300
  msgid "Export to"
301
- msgstr ""
302
 
303
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
304
  msgid "GO"
305
- msgstr "jít "
306
 
307
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
308
  msgid "Reset"
309
- msgstr "Obnovit "
310
 
311
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
312
  msgid "of"
313
- msgstr ""
314
 
315
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
316
  msgid ""
317
  "submissions are not shown, as the field you sorted by is missing in those "
318
  "submissions."
319
  msgstr ""
 
 
320
 
321
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
322
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
323
  msgid "From"
324
- msgstr "od "
325
 
326
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
327
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
328
  msgid "To"
329
- msgstr "na"
330
 
331
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
332
  msgid "Canceled"
333
- msgstr ""
334
 
335
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
336
  msgid "Cleared"
337
- msgstr ""
338
 
339
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
340
  msgid "Cleared by payment review"
341
- msgstr ""
342
 
343
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
344
  msgid "Completed"
345
- msgstr ""
346
 
347
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
348
  msgid "Denied"
349
- msgstr ""
350
 
351
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
352
  msgid "Failed"
353
- msgstr ""
354
 
355
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
356
  msgid "Held"
357
- msgstr ""
358
 
359
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
360
  msgid "In progress"
361
- msgstr ""
362
 
363
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
364
  msgid "On hold"
365
- msgstr ""
366
 
367
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
368
  msgid "Paid"
369
- msgstr ""
370
 
371
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
372
  msgid "Partially refunded"
373
- msgstr ""
374
 
375
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
376
  msgid "Pending verification"
377
- msgstr ""
378
 
379
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
380
  msgid "Placed"
381
- msgstr ""
382
 
383
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
384
  msgid "Processing"
385
- msgstr ""
386
 
387
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
388
  msgid "Refunded"
389
- msgstr ""
390
 
391
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
392
  msgid "Refused"
393
- msgstr ""
394
 
395
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
396
  msgid "Removed"
397
- msgstr ""
398
 
399
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
400
  msgid "Returned"
401
- msgstr ""
402
 
403
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
404
  msgid "Reversed"
405
- msgstr ""
406
 
407
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
408
  msgid "Temporary hold"
409
- msgstr ""
410
 
411
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
412
  msgid "Unclaimed"
413
- msgstr ""
414
 
415
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
416
  msgid "Show on Map"
417
- msgstr ""
418
 
419
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
420
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
421
  msgid "Total"
422
- msgstr ""
423
 
424
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
425
  msgid "Show Matrix"
426
- msgstr ""
427
 
428
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
429
  msgid "Statistics"
430
- msgstr ""
431
 
432
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
433
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
434
  msgid "Select a Field"
435
- msgstr "Vyberte pole "
436
 
437
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
438
  msgid "Select a Date"
@@ -440,39 +440,39 @@ msgstr "Vyberte datum"
440
 
441
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
442
  msgid "Show"
443
- msgstr ""
444
 
445
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
446
  msgid "Please select the field!"
447
- msgstr ""
448
 
449
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
450
  msgid "Choices"
451
- msgstr ""
452
 
453
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
454
  msgid "Percentage"
455
- msgstr ""
456
 
457
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
458
  msgid "Count"
459
- msgstr ""
460
 
461
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
462
  msgid "Unanswered"
463
- msgstr ""
464
 
465
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:773
466
  msgid "Address"
467
- msgstr ""
468
 
469
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:781
470
  msgid "Longitude"
471
- msgstr ""
472
 
473
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:789
474
  msgid "Latitude"
475
- msgstr ""
476
 
477
  #~ msgid ""
478
  #~ "This field %s requires a unique entry and this value was already "
3
  "Project-Id-Version: form_maker\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-03-01 16:22+0300\n"
6
+ "PO-Revision-Date: 2018-01-08 19:17+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: cs\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
14
  "X-Poedit-Basepath: .\n"
15
+ "X-Generator: Poedit 2.0.5\n"
16
+ "X-Poedit-SearchPath-0: C:/wamp/www/wordpress/wp-content/plugins/form-maker\n"
 
17
 
18
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/models/FMModelSubmissions_fm.php:320
19
  msgid "Street Address"
41
 
42
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewFormMakerSubmits.php:70
43
  msgid "Date"
44
+ msgstr "Datum"
45
 
46
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSelect_data_from_db.php:171
47
  msgid "Connection type"
48
+ msgstr "Typ spojení"
49
 
50
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/admin/views/FMViewSubmissions_fm.php:599
51
  msgid "Show submission"
52
+ msgstr "Zobrazit žádost"
53
 
54
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:633
55
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1493
 
56
  msgid "Can not upload this type of file"
57
+ msgstr "Je nám líto, ale nemáte možnost nahrát tento typ souboru"
58
 
59
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:634
 
60
  msgid "Field is required"
61
+ msgstr "Pole je povinné"
62
 
63
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:635
64
  msgid "The "
65
  msgstr ""
66
 
67
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:636
 
68
  msgid " value must be between "
69
+ msgstr " hodnota musí být mezi "
70
 
71
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:637
 
72
  msgid "Value must be between "
73
+ msgstr "Hodnota musí být mezi "
74
 
75
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:638
76
  msgid "Are you sure you want to clear saved data?"
77
+ msgstr "Jste si jisti že chcete vymazat uložená data?"
78
 
79
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form-maker.php:639
80
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4894
81
  msgid "Your score should be less than"
82
+ msgstr "Vaše skóre by měla být menší než"
83
 
84
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:224
85
  msgid "Leave A Review?"
86
+ msgstr "Napsat recenzi?"
87
 
88
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:225
89
  #, php-format
91
  "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
92
  "review on WordPress.org?"
93
  msgstr ""
94
+ "Doufáme že se vám líbil Wordpress %s! Budete uvažovat o napsání recenze na "
95
+ "Wordpress.org?"
96
 
97
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:226
98
  msgid "Sure! I'd love to!"
99
+ msgstr "Jistě! Budeme rádi!"
100
 
101
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:227
102
  msgid "I've already left a review"
103
+ msgstr "Již jsem napsal recenzi"
104
 
105
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:228
106
  msgid "Maybe Later"
107
+ msgstr "Možná později"
108
 
109
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:229
110
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:239
111
  msgid "Never show again"
112
+ msgstr "Již nezobrazovat"
113
 
114
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:235
115
  msgid "Hey! How's It Going?"
116
+ msgstr "Hej! Jak se máš?"
117
 
118
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:236
119
  #, php-format
121
  "Thank you for using WordPress %s! We hope that you've found everything you "
122
  "need, but if you have any questions:"
123
  msgstr ""
124
+ "Děkujeme za použití WordPress %s! Doufáme že jste našli co jste hledali, "
125
+ "pokud budete mít nějaké dotazy:"
126
 
127
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:237
128
  msgid "Check out User Guide"
129
+ msgstr "Nahlédněte do Návodu k použití"
130
 
131
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/form_maker_notices_class.php:238
132
  msgid "Get Some Help"
133
+ msgstr "Najít pomoc"
134
 
135
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1138
136
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1149
141
 
142
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1204
143
  msgid "Your ip is blacklisted. Please contact the website administrator."
144
+ msgstr "Vaše IP je na černé listině. Prosím, obraťte se na správce webu."
145
 
146
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1375
 
147
  msgid "This is not a valid date format."
148
  msgstr "Toto není platná e-mailová adresa."
149
 
158
 
159
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:1978
160
  msgid "This field "
161
+ msgstr "Toto pole"
162
 
163
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/models/FMModelForm_maker.php:2250
164
  msgid "Nothing was submitted."
194
 
195
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:388
196
  msgid "Password values don't match"
197
+ msgstr "Hesla nesouhlasí"
198
 
199
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:741
200
  msgid "The email addresses don't match"
201
+ msgstr "E-mailové adresy nesouhlasí"
202
 
203
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:742
204
  msgid "This is not a valid email address."
259
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4668
260
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4698
261
  msgid "Quantity"
262
+ msgstr "Množství"
263
 
264
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4175
265
  msgid ""
276
 
277
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_maker.php:4586
278
  msgid "value must be between"
279
+ msgstr "hodnota musí být mezi"
280
 
281
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:29
282
  msgid "You have no permission to view submissions."
283
+ msgstr "Nemáte oprávnění ke zobrazení žádostí"
284
 
285
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:143
286
  msgid "Entries"
287
+ msgstr "Zadání"
288
 
289
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:145
290
  msgid "Views"
291
+ msgstr "Zobrazení"
292
 
293
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:147
294
  msgid "Conversion Rate"
295
+ msgstr "Rychlost převodu"
296
 
297
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:150
298
  msgid "Export to"
299
+ msgstr "Exportovat do"
300
 
301
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:166
302
  msgid "GO"
303
+ msgstr "Spustit"
304
 
305
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:167
306
  msgid "Reset"
307
+ msgstr "Obnovit"
308
 
309
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
310
  msgid "of"
311
+ msgstr "o"
312
 
313
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:170
314
  msgid ""
315
  "submissions are not shown, as the field you sorted by is missing in those "
316
  "submissions."
317
  msgstr ""
318
+ "žádné žádosti nejsou zobrazeny, protože zadané pole pro řazení v žádostech "
319
+ "není."
320
 
321
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:300
322
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:586
323
  msgid "From"
324
+ msgstr "Od"
325
 
326
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:305
327
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:588
328
  msgid "To"
329
+ msgstr "Komu"
330
 
331
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:357
332
  msgid "Canceled"
333
+ msgstr "Zrušeno"
334
 
335
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:358
336
  msgid "Cleared"
337
+ msgstr "Smazáno"
338
 
339
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:359
340
  msgid "Cleared by payment review"
341
+ msgstr "Smazáno po kontrole platby"
342
 
343
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:360
344
  msgid "Completed"
345
+ msgstr "Hotovo"
346
 
347
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:361
348
  msgid "Denied"
349
+ msgstr "Zakázáno"
350
 
351
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:362
352
  msgid "Failed"
353
+ msgstr "Chyba"
354
 
355
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:363
356
  msgid "Held"
357
+ msgstr "Zadrženo"
358
 
359
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:364
360
  msgid "In progress"
361
+ msgstr "Probíhá"
362
 
363
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:365
364
  msgid "On hold"
365
+ msgstr "Zastaveno"
366
 
367
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:366
368
  msgid "Paid"
369
+ msgstr "Zaplaceno"
370
 
371
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:367
372
  msgid "Partially refunded"
373
+ msgstr "Částečně proplaceno"
374
 
375
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:368
376
  msgid "Pending verification"
377
+ msgstr "Nutná verifikace"
378
 
379
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:369
380
  msgid "Placed"
381
+ msgstr "Umístěno"
382
 
383
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:370
384
  msgid "Processing"
385
+ msgstr "Zpracování"
386
 
387
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:371
388
  msgid "Refunded"
389
+ msgstr "Proplaceno"
390
 
391
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:372
392
  msgid "Refused"
393
+ msgstr "Odmítnuto"
394
 
395
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:373
396
  msgid "Removed"
397
+ msgstr "Vyjmuto"
398
 
399
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:374
400
  msgid "Returned"
401
+ msgstr "Vráceno"
402
 
403
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:375
404
  msgid "Reversed"
405
+ msgstr "Přehozeno"
406
 
407
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:376
408
  msgid "Temporary hold"
409
+ msgstr "Dočasně pozdrženo"
410
 
411
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:377
412
  msgid "Unclaimed"
413
+ msgstr "Nevyzvednuto"
414
 
415
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:472
416
  msgid "Show on Map"
417
+ msgstr "Zobrazit na mapě"
418
 
419
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:505
420
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:754
421
  msgid "Total"
422
+ msgstr "Celkem"
423
 
424
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:510
425
  msgid "Show Matrix"
426
+ msgstr "Zobrazit matici"
427
 
428
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:560
429
  msgid "Statistics"
430
+ msgstr "Statistika"
431
 
432
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:564
433
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:568
434
  msgid "Select a Field"
435
+ msgstr "Vyberte pole"
436
 
437
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:583
438
  msgid "Select a Date"
440
 
441
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:594
442
  msgid "Show"
443
+ msgstr "Zobrazit"
444
 
445
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:626
446
  msgid "Please select the field!"
447
+ msgstr "Prosím vyberte pole!"
448
 
449
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:723
450
  msgid "Choices"
451
+ msgstr "Volby"
452
 
453
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:724
454
  msgid "Percentage"
455
+ msgstr "Procento"
456
 
457
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:725
458
  msgid "Count"
459
+ msgstr "Počet"
460
 
461
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:747
462
  msgid "Unanswered"
463
+ msgstr "Nezodpovězeno"
464
 
465
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:773
466
  msgid "Address"
467
+ msgstr "Adresa"
468
 
469
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:781
470
  msgid "Longitude"
471
+ msgstr "Zeměpisná délka"
472
 
473
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker/frontend/views/FMViewForm_submissions.php:789
474
  msgid "Latitude"
475
+ msgstr "Zeměpisná šířka"
476
 
477
  #~ msgid ""
478
  #~ "This field %s requires a unique entry and this value was already "
languages/form_maker-it_IT.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: form_maker\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-11-21 14:51+0400\n"
6
- "PO-Revision-Date: 2017-11-21 14:51+0400\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: it\n"
@@ -12,68 +12,66 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
14
  "X-Poedit-Basepath: .\n"
15
- "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: C:/wamp/www/wordpress/wp-content/plugins/form-maker\n"
17
- "X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\form-"
18
- "maker-stripe\n"
19
 
20
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:98
21
  msgid "Form Maker"
22
- msgstr ""
23
 
24
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:238
25
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:59
26
  msgid "Forms"
27
- msgstr ""
28
 
29
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:239
30
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:964
31
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:141
32
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:157
33
- #, fuzzy
34
  msgid "Submissions"
35
- msgstr "Visualizza presentazione"
36
 
37
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:242
38
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Blocked_ips_fm.php:55
39
  msgid "Blocked IPs"
40
- msgstr ""
41
 
42
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:243
43
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:972
44
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:83
45
  msgid "Themes"
46
- msgstr ""
47
 
48
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:244
49
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Options_fm.php:23
50
  msgid "Options"
51
- msgstr ""
52
 
53
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:246
54
  msgid "Pro Version"
55
- msgstr ""
56
 
57
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:248
58
  msgid "Uninstall"
59
- msgstr ""
60
 
61
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:249
62
  msgid "Add-ons"
63
- msgstr ""
64
 
65
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:258
66
  msgid "Number of items per page:"
67
- msgstr ""
68
 
69
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:362
70
- #, fuzzy
71
  msgid "Nothing found."
72
- msgstr "Nulla è stato presentato."
73
 
74
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:363
75
  msgid "The captcha already has been created."
76
- msgstr ""
77
 
78
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:364
79
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:442
@@ -81,42 +79,43 @@ msgstr ""
81
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:2011
82
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:2137
83
  msgid "Update"
84
- msgstr ""
85
 
86
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:365
87
- #, fuzzy
88
  msgid "Add"
89
- msgstr "Indirizzo"
90
 
91
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:366
92
  msgid "Add Field"
93
- msgstr ""
94
 
95
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:367
96
  msgid "Edit Field"
97
- msgstr ""
98
 
99
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:368
100
  msgid "This field type is disabled in free version."
101
- msgstr ""
102
 
103
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:369
104
  msgid "Please upgrade to Paid version."
105
- msgstr ""
106
 
107
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:370
108
  msgid "Please install "
109
- msgstr ""
110
 
111
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:371
112
  msgid " add-on to use this feature."
113
- msgstr ""
114
 
115
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:372
116
  msgid ""
117
  "To use this feature, please go to Form Options > Payment Options and select "
118
  "\"Stripe\" as the Payment Method."
119
  msgstr ""
 
 
120
 
121
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:373
122
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
@@ -126,27 +125,27 @@ msgstr "Domenica"
126
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:374
127
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
128
  msgid "Monday"
129
- msgstr "Lunedм"
130
 
131
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:375
132
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
133
  msgid "Tuesday"
134
- msgstr "Martedм"
135
 
136
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:376
137
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
138
  msgid "Wednesday"
139
- msgstr "Mercoledм"
140
 
141
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:377
142
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
143
  msgid "Thursday"
144
- msgstr "Giovedм"
145
 
146
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:378
147
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
148
  msgid "Friday"
149
- msgstr "Venerdм"
150
 
151
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:379
152
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
@@ -155,29 +154,31 @@ msgstr "Sabato"
155
 
156
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:380
157
  msgid "Leave empty to set the width to 100%."
158
- msgstr ""
159
 
160
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:382
161
  msgid ""
162
  "The free version is limited up to 7 fields to add. If you need this "
163
  "functionality, you need to buy the commercial version."
164
  msgstr ""
 
 
165
 
166
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:404
167
  msgid "Do you want to delete selected items?"
168
- msgstr ""
169
 
170
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:405
171
  msgid "You must select at least one item."
172
- msgstr ""
173
 
174
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:441
175
  msgid "You must select a form"
176
- msgstr ""
177
 
178
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:527
179
  msgid "Sorry, you are not allowed to access this page."
180
- msgstr ""
181
 
182
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:667
183
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:1489
@@ -190,15 +191,15 @@ msgstr "Il campo è obbligatiorio"
190
 
191
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:669
192
  msgid "The "
193
- msgstr "Il"
194
 
195
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:670
196
  msgid " value must be between "
197
- msgstr " valore deve essere compreso tra"
198
 
199
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:671
200
  msgid "Value must be between "
201
- msgstr "Il valore deve essere compreso tra"
202
 
203
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:672
204
  msgid "Are you sure you want to clear saved data?"
@@ -207,27 +208,24 @@ msgstr "Sei sicuro di voler cancellare i dati salvati?"
207
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:673
208
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:3538
209
  msgid "Your score should be less than"
210
- msgstr "Il tuo punteggio deve essere inferiore a "
211
 
212
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:674
213
- #, fuzzy
214
  msgid "This is not a valid time value."
215
- msgstr "Questo non è un formato di data."
216
 
217
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:675
218
- #, fuzzy
219
  msgid "This is not a valid number value."
220
- msgstr "Questo non è un indirizzo email valido."
221
 
222
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:676
223
- #, fuzzy
224
  msgid "This is not a valid date value."
225
- msgstr "Questo non è un formato di data."
226
 
227
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:677
228
- #, fuzzy, php-format
229
  msgid "The year must be between %s and %s"
230
- msgstr " valore deve essere compreso tra"
231
 
232
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:722
233
  msgid ""
@@ -236,15 +234,20 @@ msgid ""
236
  "Dorado support team at support@web-dorado.com. We will take care of this "
237
  "issue as soon as possible."
238
  msgstr ""
 
 
 
 
 
239
 
240
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:902
241
  #, php-format
242
  msgid "This section allows you to %s."
243
- msgstr ""
244
 
245
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:910
246
  msgid "Upgrade to paid version"
247
- msgstr ""
248
 
249
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:952
250
  msgid ""
@@ -253,10 +256,14 @@ msgid ""
253
  "which allows users far from scripting and programming to create WordPress "
254
  "Forms."
255
  msgstr ""
 
 
 
 
256
 
257
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:956
258
  msgid "Easy to Use"
259
- msgstr ""
260
 
261
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:957
262
  msgid ""
@@ -264,10 +271,13 @@ msgid ""
264
  "builder solutions available on the market. Simple, yet powerful plugin "
265
  "allows you to quickly and easily build any complex forms."
266
  msgstr ""
 
 
 
267
 
268
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:960
269
  msgid "Customizable Fields"
270
- msgstr ""
271
 
272
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:961
273
  msgid ""
@@ -275,6 +285,9 @@ msgid ""
275
  "you to change almost every detail in the form and make it look exactly like "
276
  "you want it to be."
277
  msgstr ""
 
 
 
278
 
279
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:965
280
  msgid ""
@@ -282,16 +295,22 @@ msgid ""
282
  "view submissions statistics, filter submission data and export in csv or xml "
283
  "formats."
284
  msgstr ""
 
 
 
285
 
286
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:968
287
  msgid "Multi-Page Forms"
288
- msgstr ""
289
 
290
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:969
291
  msgid ""
292
  "With the form builder plugin you can create muilti-page forms. Simply use "
293
  "the page break field to separate the pages in your forms."
294
  msgstr ""
 
 
 
295
 
296
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:973
297
  msgid ""
@@ -299,52 +318,57 @@ msgid ""
299
  "themes. You can choose from a list of existing themes or simply create the "
300
  "one that better fits your brand and website."
301
  msgstr ""
 
 
 
 
302
 
303
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:979
304
  msgid "Installing"
305
- msgstr ""
306
 
307
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:984
308
  msgid "Creating a new Form"
309
- msgstr ""
310
 
311
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:989
312
  msgid "Configuring Form Options"
313
- msgstr ""
314
 
315
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:994
316
  msgid "Description of The Form Fields"
317
- msgstr ""
318
 
319
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:998
320
  msgid "Selecting Options from Database"
321
- msgstr ""
322
 
323
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1004
324
  msgid "Publishing the Created Form"
325
- msgstr ""
326
 
327
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1009
328
  msgid "Blocking IPs"
329
- msgstr ""
330
 
331
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1014
332
  msgid "Managing Submissions"
333
- msgstr ""
334
 
335
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1019
336
  msgid "Publishing Submissions"
337
- msgstr ""
338
 
339
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1118
340
  #, php-format
341
  msgid "Please update the %s add-on to start using."
342
  msgstr ""
 
343
 
344
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1119
345
  #, php-format
346
  msgid "Please update the %s add-ons to start using."
347
- msgstr ""
348
 
349
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1179
350
  #, php-format
@@ -352,185 +376,182 @@ msgid ""
352
  "%s advises: Install brand new FREE %s plugin to keep your forms and website "
353
  "safe."
354
  msgstr ""
 
 
355
 
356
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1179
357
  msgid "More details"
358
- msgstr ""
359
 
360
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1179
361
  msgid "Backup WD"
362
- msgstr ""
363
 
364
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1244
365
  msgid "Support Forum"
366
- msgstr ""
367
 
368
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1245
369
  msgid "Rate"
370
- msgstr ""
371
 
372
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Blocked_ips_fm.php:25
373
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:40
374
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:61
375
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:46
376
  msgid "Delete"
377
- msgstr ""
378
 
379
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Blocked_ips_fm.php:26
380
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:41
381
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:47
382
- #, fuzzy
383
  msgid "deleted"
384
- msgstr "Completato"
385
 
386
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:28
387
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:148
388
  msgid "Publish"
389
- msgstr ""
390
 
391
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:29
392
  msgid "published"
393
- msgstr ""
394
 
395
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:32
396
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:148
397
  msgid "Unpublish"
398
- msgstr ""
399
 
400
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:33
401
  msgid "unpublished"
402
- msgstr ""
403
 
404
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:36
405
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:42
406
  msgid "Duplicate"
407
- msgstr ""
408
 
409
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:37
410
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:43
411
  msgid "duplicated"
412
- msgstr ""
413
 
414
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:347
415
  msgid "Create new form"
416
- msgstr ""
417
 
418
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:481
419
  msgid "options"
420
- msgstr ""
421
 
422
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:812
423
  msgid "layout"
424
- msgstr ""
425
 
426
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:856
427
  msgid "display options"
428
- msgstr ""
429
 
430
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:53
431
  msgid "Block IPs"
432
- msgstr ""
433
 
434
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:54
435
  msgid "Blocked"
436
- msgstr ""
437
 
438
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:57
439
  msgid "Unblock IPs"
440
- msgstr ""
441
 
442
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:58
443
  msgid "Unblocked"
444
- msgstr ""
445
 
446
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:62
447
- #, fuzzy
448
  msgid "Deleted"
449
- msgstr "Completato"
450
 
451
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:221
452
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1394
453
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2060
454
  msgid "Global Parameters"
455
- msgstr ""
456
 
457
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:222
458
  msgid "Header"
459
- msgstr ""
460
 
461
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:223
462
  msgid "Content"
463
- msgstr ""
464
 
465
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:224
466
  msgid "Inputbox"
467
- msgstr ""
468
 
469
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:225
470
- #, fuzzy
471
  msgid "Choices"
472
- msgstr "scelte"
473
 
474
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:226
475
  msgid "General Buttons"
476
- msgstr ""
477
 
478
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:227
479
  msgid "Pagination"
480
- msgstr ""
481
 
482
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:228
483
  msgid "Buttons"
484
- msgstr ""
485
 
486
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:229
487
  msgid "Close(Minimize) Button"
488
- msgstr ""
489
 
490
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:230
491
  msgid "Minimize Text"
492
- msgstr ""
493
 
494
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:231
495
  msgid "Other"
496
- msgstr ""
497
 
498
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:232
499
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2913
500
  msgid "Custom CSS"
501
- msgstr ""
502
 
503
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:251
504
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2454
505
- #, fuzzy
506
  msgid "Top"
507
- msgstr "Per"
508
 
509
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:252
510
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:271
511
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2463
512
  msgid "Right"
513
- msgstr ""
514
 
515
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:253
516
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2472
517
  msgid "Bottom"
518
- msgstr ""
519
 
520
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:254
521
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:271
522
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2481
523
  msgid "Left"
524
- msgstr ""
525
 
526
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:271
527
- #, fuzzy
528
  msgid "Center"
529
- msgstr "Cents. "
530
 
531
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:313
532
  msgid "Font Family"
533
- msgstr ""
534
 
535
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:322
536
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:434
@@ -548,11 +569,11 @@ msgstr ""
548
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2100
549
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2276
550
  msgid "Width"
551
- msgstr ""
552
 
553
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:330
554
  msgid "Width (for scrollbox, popup form types)"
555
- msgstr ""
556
 
557
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:338
558
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:450
@@ -571,11 +592,11 @@ msgstr ""
571
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2525
572
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2696
573
  msgid "Padding"
574
- msgstr ""
575
 
576
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:342
577
  msgid "e.g. 3px 5px or 3% 5%"
578
- msgstr ""
579
 
580
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:347
581
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:459
@@ -598,11 +619,11 @@ msgstr ""
598
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2534
599
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2705
600
  msgid "Margin"
601
- msgstr ""
602
 
603
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:352
604
  msgid "e.g. 5px 10px or 5% 10%"
605
- msgstr ""
606
 
607
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:356
608
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:477
@@ -625,7 +646,7 @@ msgstr ""
625
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2714
626
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2780
627
  msgid "Border"
628
- msgstr ""
629
 
630
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:364
631
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:485
@@ -648,7 +669,7 @@ msgstr ""
648
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2722
649
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2788
650
  msgid "Border Color"
651
- msgstr ""
652
 
653
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:368
654
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:403
@@ -762,7 +783,7 @@ msgstr ""
762
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2826
763
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2882
764
  msgid "e.g."
765
- msgstr ""
766
 
767
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:373
768
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:494
@@ -785,7 +806,7 @@ msgstr ""
785
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2731
786
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2796
787
  msgid "Border Type"
788
- msgstr ""
789
 
790
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:382
791
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:503
@@ -808,7 +829,7 @@ msgstr ""
808
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2740
809
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2805
810
  msgid "Border Width"
811
- msgstr ""
812
 
813
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:390
814
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:511
@@ -827,7 +848,7 @@ msgstr ""
827
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2577
828
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2748
829
  msgid "Border Radius"
830
- msgstr ""
831
 
832
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:398
833
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1029
@@ -838,12 +859,12 @@ msgstr ""
838
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2193
839
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2369
840
  msgid "Box Shadow"
841
- msgstr ""
842
 
843
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:409
844
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:608
845
  msgid "General Parameters"
846
- msgstr ""
847
 
848
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:416
849
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:581
@@ -851,7 +872,7 @@ msgstr ""
851
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1401
852
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2025
853
  msgid "Alignment"
854
- msgstr ""
855
 
856
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:425
857
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:615
@@ -876,21 +897,21 @@ msgstr ""
876
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2652
877
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2762
878
  msgid "Background Color"
879
- msgstr ""
880
 
881
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:442
882
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:649
883
  msgid "Width (for topbar form type)"
884
- msgstr ""
885
 
886
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:468
887
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2687
888
  msgid "Text Align"
889
- msgstr ""
890
 
891
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:519
892
  msgid "Title Parameters"
893
- msgstr ""
894
 
895
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:526
896
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:558
@@ -905,7 +926,7 @@ msgstr ""
905
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2499
906
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2661
907
  msgid "Font Size"
908
- msgstr ""
909
 
910
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:534
911
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:632
@@ -919,7 +940,7 @@ msgstr ""
919
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2507
920
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2669
921
  msgid "Font Weight"
922
- msgstr ""
923
 
924
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:543
925
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:566
@@ -943,15 +964,15 @@ msgstr ""
943
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2822
944
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2845
945
  msgid "Color"
946
- msgstr ""
947
 
948
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:552
949
  msgid "Description Parameters"
950
- msgstr ""
951
 
952
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:575
953
  msgid "Image Parameters"
954
- msgstr ""
955
 
956
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:598
957
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:926
@@ -966,31 +987,31 @@ msgstr ""
966
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2108
967
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2284
968
  msgid "Height"
969
- msgstr ""
970
 
971
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:666
972
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1054
973
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1328
974
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2859
975
  msgid "Background URL"
976
- msgstr ""
977
 
978
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:675
979
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1063
980
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1337
981
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2868
982
  msgid "Background Repeat"
983
- msgstr ""
984
 
985
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:684
986
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1346
987
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2877
988
  msgid "Background Position"
989
- msgstr ""
990
 
991
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:697
992
  msgid "Background Size"
993
- msgstr ""
994
 
995
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:777
996
  msgid "Mini labels (name, phone, address, checkbox, radio) Parameters"
@@ -998,44 +1019,43 @@ msgstr ""
998
 
999
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:828
1000
  msgid "Section Parameters"
1001
- msgstr ""
1002
 
1003
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:861
1004
  msgid "Section Column Parameters"
1005
- msgstr ""
1006
 
1007
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:885
1008
  msgid "Footer Parameters"
1009
- msgstr ""
1010
 
1011
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1038
1012
  msgid "Dropdown additional"
1013
- msgstr ""
1014
 
1015
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1045
1016
  msgid "Appearance"
1017
- msgstr ""
1018
 
1019
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1080
1020
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:517
1021
- #, fuzzy
1022
  msgid "Single Choice"
1023
- msgstr "scelte"
1024
 
1025
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1172
1026
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1313
1027
  msgid "Checked Parameters"
1028
- msgstr ""
1029
 
1030
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1220
1031
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:518
1032
  msgid "Multiple Choice"
1033
- msgstr ""
1034
 
1035
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1410
1036
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:520
1037
  msgid "Submit"
1038
- msgstr ""
1039
 
1040
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1537
1041
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1722
@@ -1044,30 +1064,30 @@ msgstr ""
1044
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2585
1045
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2756
1046
  msgid "Hover Parameters"
1047
- msgstr ""
1048
 
1049
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1595
1050
  msgid "Reset"
1051
- msgstr "reset "
1052
 
1053
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1782
1054
  msgid "Active"
1055
- msgstr ""
1056
 
1057
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1832
1058
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1950
1059
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2116
1060
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2292
1061
  msgid "Line Height"
1062
- msgstr ""
1063
 
1064
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1900
1065
  msgid "Deactive"
1066
- msgstr ""
1067
 
1068
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2018
1069
  msgid "Steps"
1070
- msgstr ""
1071
 
1072
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2042
1073
  msgid "Percentage"
@@ -1075,44 +1095,44 @@ msgstr "Percentuale"
1075
 
1076
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2084
1077
  msgid "Next Button Parameters"
1078
- msgstr ""
1079
 
1080
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2260
1081
  msgid "Previous Button Parameters"
1082
- msgstr ""
1083
 
1084
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2445
1085
  msgid "Position"
1086
- msgstr ""
1087
 
1088
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2815
1089
  msgid "Deactive Text"
1090
- msgstr ""
1091
 
1092
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2831
1093
  msgid "Font Style"
1094
- msgstr ""
1095
 
1096
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2839
1097
  msgid "Required"
1098
- msgstr ""
1099
 
1100
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2853
1101
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:538
1102
  msgid "File Upload"
1103
- msgstr ""
1104
 
1105
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2890
1106
  msgid "Grading"
1107
- msgstr ""
1108
 
1109
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2896
1110
  msgid "Text Width"
1111
- msgstr ""
1112
 
1113
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/models/Submissions_fm.php:351
1114
  msgid "Street Address"
1115
- msgstr "Indirizzo:"
1116
 
1117
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/models/Submissions_fm.php:354
1118
  msgid "Street Address Line 2"
@@ -1140,14 +1160,14 @@ msgstr "Paese"
1140
 
1141
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Blocked_ips_fm.php:76
1142
  msgid "IP"
1143
- msgstr ""
1144
 
1145
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Blocked_ips_fm.php:116
1146
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:152
1147
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Submissions_fm.php:484
1148
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Themes_fm.php:96
1149
  msgid "Do you want to delete selected item?"
1150
- msgstr ""
1151
 
1152
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/FMSelectDataFromDb.php:163
1153
  msgid "Connection type"
@@ -1156,11 +1176,11 @@ msgstr "Tipo di connessione"
1156
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/FMShortocde.php:43
1157
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/FMShortocde.php:89
1158
  msgid "Unpublished"
1159
- msgstr ""
1160
 
1161
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/FMShortocde.php:73
1162
  msgid "Front end submissions are disabled in free version."
1163
- msgstr ""
1164
 
1165
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/FormMakerSubmits.php:43
1166
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:515
@@ -1175,82 +1195,78 @@ msgstr "Titolo"
1175
 
1176
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:85
1177
  msgid "Type"
1178
- msgstr ""
1179
 
1180
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:87
1181
  msgid "Shortcode"
1182
- msgstr ""
1183
 
1184
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:511
1185
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:594
1186
  msgid "BASIC FIELDS"
1187
- msgstr ""
1188
 
1189
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:512
1190
  msgid "Single Line Text"
1191
- msgstr ""
1192
 
1193
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:513
1194
  msgid "Paragraph Text"
1195
- msgstr ""
1196
 
1197
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:514
1198
- #, fuzzy
1199
  msgid "Number"
1200
- msgstr "novembre"
1201
 
1202
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:516
1203
- #, fuzzy
1204
  msgid "Select"
1205
- msgstr "Seleziona una data"
1206
 
1207
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:519
1208
  msgid "Recaptcha"
1209
- msgstr ""
1210
 
1211
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:521
1212
  msgid "Simple Captcha"
1213
- msgstr ""
1214
 
1215
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:523
1216
  msgid "USER INFO FIELDS"
1217
- msgstr ""
1218
 
1219
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:524
1220
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:39
1221
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:186
1222
  msgid "Name"
1223
- msgstr ""
1224
 
1225
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:525
1226
  msgid "Email"
1227
- msgstr ""
1228
 
1229
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:526
1230
  msgid "Phone"
1231
- msgstr ""
1232
 
1233
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:527
1234
  msgid "Address"
1235
  msgstr "Indirizzo"
1236
 
1237
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:528
1238
- #, fuzzy
1239
  msgid "Mark on Map"
1240
- msgstr "Mostra sulla mappa"
1241
 
1242
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:529
1243
- #, fuzzy
1244
  msgid "Country List"
1245
- msgstr "Paese"
1246
 
1247
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:530
1248
  msgid "Date of Birth"
1249
- msgstr ""
1250
 
1251
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:532
1252
  msgid "LAYOUT FIELDS"
1253
- msgstr ""
1254
 
1255
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:533
1256
  msgid "HTML"
@@ -1258,102 +1274,99 @@ msgstr ""
1258
 
1259
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:534
1260
  msgid "Section"
1261
- msgstr ""
1262
 
1263
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:535
1264
  msgid "Page"
1265
- msgstr ""
1266
 
1267
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:537
1268
  msgid "ADVANCED"
1269
- msgstr ""
1270
 
1271
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:539
1272
- #, fuzzy
1273
  msgid "Map"
1274
- msgstr "Maggio"
1275
 
1276
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:540
1277
  msgid "Time"
1278
- msgstr ""
1279
 
1280
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:541
1281
  msgid "Receive Copy"
1282
- msgstr ""
1283
 
1284
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:542
1285
  msgid "Date Range"
1286
- msgstr ""
1287
 
1288
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:543
1289
  msgid "Stars"
1290
- msgstr ""
1291
 
1292
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:544
1293
  msgid "Rating"
1294
- msgstr ""
1295
 
1296
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:545
1297
  msgid "Slider"
1298
- msgstr ""
1299
 
1300
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:546
1301
  msgid "Range"
1302
- msgstr ""
1303
 
1304
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:547
1305
  msgid "Grades"
1306
- msgstr ""
1307
 
1308
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:548
1309
- #, fuzzy
1310
  msgid "Table of Fields"
1311
- msgstr "Selezionare un campo "
1312
 
1313
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:549
1314
  msgid "Hidden Input"
1315
- msgstr ""
1316
 
1317
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:550
1318
  msgid "Custom Button"
1319
- msgstr ""
1320
 
1321
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:551
1322
  msgid "Password"
1323
- msgstr ""
1324
 
1325
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:552
1326
- #, fuzzy
1327
  msgid "Phone-Area Code"
1328
- msgstr "Prefisso teleselettivo"
1329
 
1330
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:553
1331
  msgid "Arithmetic Captcha"
1332
- msgstr ""
1333
 
1334
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:555
1335
  msgid "PAYMENT"
1336
- msgstr ""
1337
 
1338
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:556
1339
  msgid "Price"
1340
- msgstr ""
1341
 
1342
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:557
1343
  msgid "Payment Select"
1344
- msgstr ""
1345
 
1346
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:558
1347
  msgid "Payment Single Choice"
1348
- msgstr ""
1349
 
1350
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:559
1351
  msgid "Payment Multiple Choice"
1352
- msgstr ""
1353
 
1354
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:560
1355
  msgid "Shipping"
1356
- msgstr ""
1357
 
1358
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:561
1359
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_maker.php:4192
@@ -1363,63 +1376,61 @@ msgstr "Totale"
1363
 
1364
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:562
1365
  msgid "Stripe"
1366
- msgstr ""
1367
 
1368
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:596
1369
  msgid "Toggle panel:"
1370
- msgstr ""
1371
 
1372
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:743
1373
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:2017
1374
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:2143
1375
  msgid "Back to Form"
1376
- msgstr ""
1377
 
1378
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:1544
1379
  msgid "Form Maker Stripe Integration"
1380
- msgstr ""
1381
 
1382
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:1545
1383
  #, php-format
1384
  msgid "Please install %s add-on to use this feature."
1385
- msgstr ""
1386
 
1387
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Options_fm.php:29
1388
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Themes_fm.php:143
1389
  msgid "Save"
1390
- msgstr ""
1391
 
1392
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Options_fm.php:68
1393
  #, php-format
1394
  msgid "%s for your site from ReCaptcha website."
1395
- msgstr ""
1396
 
1397
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Options_fm.php:68
1398
  msgid "Get ReCaptcha Site and Secret Keys"
1399
- msgstr ""
1400
 
1401
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Options_fm.php:113
1402
  #, php-format
1403
  msgid "Uninstall %s"
1404
- msgstr ""
1405
 
1406
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Submissions_fm.php:187
1407
- #, fuzzy
1408
  msgid "Show Filters"
1409
- msgstr "Visualizza Matrix"
1410
 
1411
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Submissions_fm.php:187
1412
  msgid "Hide Filters"
1413
- msgstr ""
1414
 
1415
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Themes_fm.php:71
1416
  msgid "Default"
1417
- msgstr ""
1418
 
1419
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Themes_fm.php:151
1420
- #, fuzzy
1421
  msgid "Title: "
1422
- msgstr "Titolo"
1423
 
1424
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Themes_fm.php:224
1425
  msgid ""
@@ -1427,6 +1438,10 @@ msgid ""
1427
  "provided by Form Maker. You can use Custom CSS panel to edit form styling, "
1428
  "or alternatively select a new theme for your form."
1429
  msgstr ""
 
 
 
 
1430
 
1431
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:2305
1432
  msgid ""
@@ -1445,7 +1460,7 @@ msgstr "L'"
1445
 
1446
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:2912
1447
  msgid "value must be between"
1448
- msgstr "valore deve essere compreso tra "
1449
 
1450
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:3038
1451
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:3120
@@ -1459,7 +1474,7 @@ msgstr "Quantità"
1459
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:3951
1460
  #, php-format
1461
  msgid "No %s found."
1462
- msgstr ""
1463
 
1464
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4012
1465
  msgid "Afghanistan"
@@ -2267,9 +2282,8 @@ msgid "Colorado"
2267
  msgstr ""
2268
 
2269
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4226
2270
- #, fuzzy
2271
  msgid "Connecticut"
2272
- msgstr "Tipo di connessione"
2273
 
2274
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4227
2275
  msgid "Delaware"
@@ -2280,9 +2294,8 @@ msgid "District Of Columbia"
2280
  msgstr ""
2281
 
2282
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4229
2283
- #, fuzzy
2284
  msgid "Florida"
2285
- msgstr "Venerdм"
2286
 
2287
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4231
2288
  msgid "Hawaii"
@@ -2446,19 +2459,19 @@ msgstr ""
2446
 
2447
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4284
2448
  msgid "Done"
2449
- msgstr ""
2450
 
2451
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4285
2452
  msgid "Prev"
2453
- msgstr ""
2454
 
2455
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4286
2456
  msgid "Next"
2457
- msgstr ""
2458
 
2459
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4287
2460
  msgid "Today"
2461
- msgstr ""
2462
 
2463
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4288
2464
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_maker.php:3479
@@ -2624,14 +2637,17 @@ msgstr "Sa"
2624
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:18
2625
  msgid "Something went wrong when trying to display this form."
2626
  msgstr ""
 
2627
 
2628
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:23
2629
  msgid "The form you are trying to view does not have Embedded display type."
2630
  msgstr ""
 
 
2631
 
2632
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:30
2633
  msgid "The form you are trying to view has been unpublished."
2634
- msgstr ""
2635
 
2636
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:1082
2637
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:1094
@@ -2644,7 +2660,7 @@ msgstr "Errore, codice di protezione errato."
2644
  msgid "Your ip is blacklisted. Please contact the website administrator."
2645
  msgstr ""
2646
  "Il tuo ip è nella lista nera. Si prega di contattare l'amministratore del "
2647
- "sito. "
2648
 
2649
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:1374
2650
  msgid "This is not a valid date format."
@@ -2660,11 +2676,11 @@ msgid "Error, file cannot be moved."
2660
  msgstr "Errore, il file non possono essere spostati."
2661
 
2662
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:1961
2663
- #, fuzzy, php-format
2664
  msgid "This field %s requires a unique entry."
2665
  msgstr ""
2666
- "Questo campo %s richiede una voce unica e questo valore è stato già "
2667
- "presentato."
2668
 
2669
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:2221
2670
  msgid "Nothing was submitted."
@@ -2682,9 +2698,8 @@ msgid "Error, email was not sent."
2682
  msgstr "Errore, e-mail non è stato inviato."
2683
 
2684
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_submissions.php:369
2685
- #, fuzzy
2686
  msgid "You have no permissions to download"
2687
- msgstr "Non hai il permesso di visualizzare presentazioni."
2688
 
2689
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/verify_email.php:27
2690
  msgid "Your email address is already verified."
@@ -2704,7 +2719,7 @@ msgstr "Link di verifica non è valido."
2704
 
2705
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_maker.php:554
2706
  msgid "Password values don't match"
2707
- msgstr "i valori delle password non corrispondono"
2708
 
2709
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_maker.php:1074
2710
  msgid "The email addresses don't match"
@@ -2716,24 +2731,24 @@ msgstr "Questo non è un indirizzo email valido."
2716
 
2717
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_maker.php:3743
2718
  msgid "AM"
2719
- msgstr ""
2720
 
2721
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_maker.php:3744
2722
  msgid "PM"
2723
- msgstr ""
2724
 
2725
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:14
2726
  msgid "You have no permission to view submissions."
2727
  msgstr "Non hai il permesso di visualizzare presentazioni."
2728
 
2729
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:237
2730
- #, fuzzy, php-format
2731
  msgid ""
2732
  "%s of %s submissions are not shown, as the field you sorted by is missing in "
2733
  "those submissions."
2734
  msgstr ""
2735
- "osservazioni non sono mostrati, come il campo è ordinato da manca in quelle "
2736
- "osservazioni."
2737
 
2738
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:399
2739
  msgid "From"
@@ -2761,19 +2776,19 @@ msgstr "Completato"
2761
 
2762
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:467
2763
  msgid "Denied"
2764
- msgstr "negato"
2765
 
2766
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:468
2767
  msgid "Failed"
2768
- msgstr "fallito"
2769
 
2770
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:469
2771
  msgid "Held"
2772
- msgstr "Held"
2773
 
2774
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:470
2775
  msgid "In progress"
2776
- msgstr "in corso"
2777
 
2778
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:471
2779
  msgid "On hold"
@@ -2785,7 +2800,7 @@ msgstr "Pagato"
2785
 
2786
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:473
2787
  msgid "Partially refunded"
2788
- msgstr "parzialmente rimborsato"
2789
 
2790
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:474
2791
  msgid "Pending verification"
@@ -2793,19 +2808,19 @@ msgstr "In attesa di verifica"
2793
 
2794
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:475
2795
  msgid "Placed"
2796
- msgstr "collocato"
2797
 
2798
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:476
2799
  msgid "Processing"
2800
- msgstr "lavorazione"
2801
 
2802
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:477
2803
  msgid "Refunded"
2804
- msgstr "rimborsato"
2805
 
2806
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:478
2807
  msgid "Refused"
2808
- msgstr "rifiutato"
2809
 
2810
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:479
2811
  msgid "Removed"
@@ -2813,15 +2828,15 @@ msgstr "Rimosso"
2813
 
2814
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:480
2815
  msgid "Returned"
2816
- msgstr "tornati"
2817
 
2818
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:481
2819
  msgid "Reversed"
2820
- msgstr "invertito"
2821
 
2822
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:482
2823
  msgid "Temporary hold"
2824
- msgstr "blocco temporaneo"
2825
 
2826
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:483
2827
  msgid "Unclaimed"
@@ -2841,28 +2856,27 @@ msgstr "Si prega di selezionare il campo!"
2841
 
2842
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/wd.php:72
2843
  msgid "Overview"
2844
- msgstr ""
2845
 
2846
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/deactivate.php:35
2847
  msgid "Technical problems / hard to use"
2848
- msgstr ""
2849
 
2850
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/deactivate.php:39
2851
  msgid "Free version is limited"
2852
- msgstr ""
2853
 
2854
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/deactivate.php:43
2855
  msgid "Premium is expensive"
2856
- msgstr ""
2857
 
2858
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/deactivate.php:47
2859
  msgid "Upgrading to paid version"
2860
- msgstr ""
2861
 
2862
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/deactivate.php:51
2863
- #, fuzzy
2864
  msgid "Temporary deactivation"
2865
- msgstr "blocco temporaneo"
2866
 
2867
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/notices.php:211
2868
  msgid "Leave A Review?"
@@ -2895,12 +2909,11 @@ msgstr "Non mostrare più"
2895
 
2896
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:27
2897
  msgid "Welcome"
2898
- msgstr ""
2899
 
2900
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:31
2901
- #, fuzzy
2902
  msgid "User Guide"
2903
- msgstr "Partenza Guida per l'utente"
2904
 
2905
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:35
2906
  msgid "Deals"
@@ -2908,97 +2921,116 @@ msgstr ""
2908
 
2909
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:39
2910
  msgid "Support"
2911
- msgstr ""
2912
 
2913
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:43
2914
  msgid "Submit Your Idea"
2915
- msgstr ""
2916
 
2917
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:47
2918
  msgid "Forum"
2919
- msgstr ""
2920
 
2921
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:79
2922
  msgid "Wordpress form builder plugin"
2923
- msgstr ""
2924
 
2925
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:80
2926
  msgid ""
2927
  "Form Maker is a modern and advanced tool for creating WordPress forms easily "
2928
  "and fast."
2929
  msgstr ""
 
 
2930
 
2931
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:85
2932
  msgid "WordPress Photo Gallery plugin"
2933
- msgstr ""
2934
 
2935
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:86
2936
  msgid ""
2937
  "Photo Gallery is a fully responsive WordPress Gallery plugin with advanced "
2938
  "functionality."
2939
  msgstr ""
 
 
2940
 
2941
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:91
2942
  msgid "WordPress calendar plugin"
2943
- msgstr ""
2944
 
2945
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:92
2946
  msgid ""
2947
  "Organize and publish your events in an easy and elegant way using Event "
2948
  "Calendar WD."
2949
  msgstr ""
 
 
2950
 
2951
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:97
2952
  msgid "WD Google Maps plugin"
2953
- msgstr ""
2954
 
2955
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:98
2956
  msgid ""
2957
  "Google Maps WD is an intuitive tool for creating Google maps with advanced "
2958
  "markers, custom layers and overlays for your website."
2959
  msgstr ""
 
 
 
2960
 
2961
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:103
2962
  msgid "WordPress slider plugin"
2963
  msgstr ""
 
 
 
2964
 
2965
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:104
2966
  msgid ""
2967
  "Create responsive, highly configurable sliders with various effects for your "
2968
  "WordPress site."
2969
  msgstr ""
 
 
 
2970
 
2971
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:109
2972
  msgid "WordPress event calendar plugin"
2973
- msgstr ""
2974
 
2975
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:110
2976
  msgid ""
2977
  "Spider Event Calendar is a highly configurable product which allows you to "
2978
  "have multiple organized events."
2979
  msgstr ""
 
 
2980
 
2981
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:115
2982
  msgid "WordPress Instagram Feed plugin"
2983
- msgstr ""
2984
 
2985
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:116
2986
  msgid ""
2987
  "WD Instagram Feed is a user-friendly tool for displaying user or hashtag-"
2988
  "based feeds on your website."
2989
  msgstr ""
 
 
2990
 
2991
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:169
2992
  msgid "Not set"
2993
- msgstr ""
2994
 
2995
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:174
2996
  msgid "On"
2997
- msgstr ""
2998
 
2999
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:176
3000
  msgid "Off"
3001
- msgstr ""
3002
 
3003
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:185
3004
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:193
@@ -3007,18 +3039,18 @@ msgstr ""
3007
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:215
3008
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:222
3009
  msgid "N/A"
3010
- msgstr ""
3011
 
3012
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:220
3013
  msgid " MByte"
3014
- msgstr ""
3015
 
3016
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:227
3017
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:234
3018
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:241
3019
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:251
3020
  msgid "Yes"
3021
- msgstr ""
3022
 
3023
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:229
3024
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:236
@@ -3026,69 +3058,69 @@ msgstr ""
3026
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:246
3027
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:251
3028
  msgid "No"
3029
- msgstr ""
3030
 
3031
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/subscribe.php:43
3032
  msgid "Your name &"
3033
- msgstr ""
3034
 
3035
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/subscribe.php:44
3036
- #, fuzzy
3037
  msgid "Email address"
3038
- msgstr "Indirizzo"
3039
 
3040
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/subscribe.php:48
3041
  msgid "Site URL"
3042
- msgstr ""
3043
 
3044
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/subscribe.php:49
3045
  msgid "Wordpress version"
3046
- msgstr ""
3047
 
3048
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/subscribe.php:53
3049
  msgid "List of plugins"
3050
- msgstr ""
3051
 
3052
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview.php:6
3053
  #, php-format
3054
  msgid "Welcome to %s"
3055
- msgstr ""
3056
 
3057
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview.php:8
3058
  #, php-format
3059
  msgid "CONGRATS! You've successfully installed %s WordPress plugin."
3060
  msgstr ""
 
3061
 
3062
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:12
3063
  #, php-format
3064
  msgid "Get %s"
3065
- msgstr ""
3066
 
3067
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:13
3068
  msgid "plugins"
3069
- msgstr ""
3070
 
3071
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:14
3072
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:58
3073
  msgid "for"
3074
- msgstr ""
3075
 
3076
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:14
3077
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:58
3078
  msgid "only"
3079
- msgstr ""
3080
 
3081
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:16
3082
  msgid "Save 80%"
3083
- msgstr ""
3084
 
3085
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:57
3086
  msgid "Get all 11 themes"
3087
- msgstr ""
3088
 
3089
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:60
3090
  msgid "Save 70%"
3091
- msgstr ""
3092
 
3093
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_support.php:3
3094
  #, php-format
@@ -3097,6 +3129,9 @@ msgid ""
3097
  "professional support or have any questions. You can also fill in the form to "
3098
  "leave your comments or feedback."
3099
  msgstr ""
 
 
 
3100
 
3101
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_subscribe.php:11
3102
  #, php-format
@@ -3106,45 +3141,47 @@ msgid ""
3106
  "deals and discounts on premium products and more. You can choose to skip "
3107
  "this step, %s will still work just fine."
3108
  msgstr ""
 
 
 
 
 
3109
 
3110
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:40
3111
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:191
3112
- #, fuzzy
3113
  msgid "Address line 1"
3114
- msgstr "Via Riga indirizzo 2"
3115
 
3116
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:41
3117
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:196
3118
- #, fuzzy
3119
  msgid "Address line 2"
3120
- msgstr "Via Riga indirizzo 2"
3121
 
3122
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:43
3123
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:206
3124
  msgid "State"
3125
- msgstr ""
3126
 
3127
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:45
3128
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:216
3129
  msgid "Zip code"
3130
- msgstr ""
3131
 
3132
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:171
3133
  msgid "Card number"
3134
- msgstr ""
3135
 
3136
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:176
3137
  msgid "Expiration date"
3138
- msgstr ""
3139
 
3140
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:181
3141
  msgid "CVC"
3142
- msgstr ""
3143
 
3144
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/fm_stripe.php:166
3145
- #, fuzzy
3146
  msgid "Field is required."
3147
- msgstr "Il campo è obbligatiorio"
3148
 
3149
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/fm_stripe.php:181
3150
  #, php-format
@@ -3152,23 +3189,25 @@ msgid ""
3152
  "Please install Form Maker plugin version %s and higher to start using Stripe "
3153
  "add-on."
3154
  msgstr ""
 
 
3155
 
3156
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/view.php:20
3157
  #, php-format
3158
  msgid "%s for your site."
3159
- msgstr ""
3160
 
3161
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/view.php:20
3162
  msgid "Get Stripe Publishable and Secret Keys"
3163
- msgstr ""
3164
 
3165
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/view.php:131
3166
  msgid "Month"
3167
- msgstr ""
3168
 
3169
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/view.php:144
3170
  msgid "Year"
3171
- msgstr ""
3172
 
3173
  #~ msgid "Hey! How's It Going?"
3174
  #~ msgstr "Hey! Come va?"
3
  "Project-Id-Version: form_maker\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-11-21 14:51+0400\n"
6
+ "PO-Revision-Date: 2018-01-06 11:37+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: it\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
14
  "X-Poedit-Basepath: .\n"
15
+ "X-Generator: Poedit 2.0.4\n"
16
  "X-Poedit-SearchPath-0: C:/wamp/www/wordpress/wp-content/plugins/form-maker\n"
17
+ "X-Poedit-SearchPath-1: C:/wamp/www/wordpress/wp-content/plugins/form-maker-"
18
+ "stripe\n"
19
 
20
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:98
21
  msgid "Form Maker"
22
+ msgstr "Form Maker"
23
 
24
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:238
25
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:59
26
  msgid "Forms"
27
+ msgstr "Moduli"
28
 
29
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:239
30
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:964
31
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:141
32
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:157
 
33
  msgid "Submissions"
34
+ msgstr "Invii"
35
 
36
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:242
37
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Blocked_ips_fm.php:55
38
  msgid "Blocked IPs"
39
+ msgstr "IP Bloccati"
40
 
41
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:243
42
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:972
43
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:83
44
  msgid "Themes"
45
+ msgstr "Temi"
46
 
47
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:244
48
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Options_fm.php:23
49
  msgid "Options"
50
+ msgstr "Opzioni"
51
 
52
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:246
53
  msgid "Pro Version"
54
+ msgstr "Versione Pro"
55
 
56
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:248
57
  msgid "Uninstall"
58
+ msgstr "Disinstalla"
59
 
60
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:249
61
  msgid "Add-ons"
62
+ msgstr "Add-ons"
63
 
64
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:258
65
  msgid "Number of items per page:"
66
+ msgstr "Numero di oggetti per pagina:"
67
 
68
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:362
 
69
  msgid "Nothing found."
70
+ msgstr "Nulla è stato trovato."
71
 
72
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:363
73
  msgid "The captcha already has been created."
74
+ msgstr "Il Captcha è stato creato."
75
 
76
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:364
77
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:442
79
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:2011
80
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:2137
81
  msgid "Update"
82
+ msgstr "Aggiorna"
83
 
84
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:365
 
85
  msgid "Add"
86
+ msgstr "Aggiungi"
87
 
88
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:366
89
  msgid "Add Field"
90
+ msgstr "Aggiungi campo"
91
 
92
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:367
93
  msgid "Edit Field"
94
+ msgstr "Modifica Campo"
95
 
96
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:368
97
  msgid "This field type is disabled in free version."
98
+ msgstr "Questo tipo di campo è disabilitato nella versione gratuita."
99
 
100
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:369
101
  msgid "Please upgrade to Paid version."
102
+ msgstr "Perfavore fai l'upgrade alla versione a pagamento."
103
 
104
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:370
105
  msgid "Please install "
106
+ msgstr "Perfavore installa "
107
 
108
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:371
109
  msgid " add-on to use this feature."
110
+ msgstr "add-on per usare questa funzione."
111
 
112
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:372
113
  msgid ""
114
  "To use this feature, please go to Form Options > Payment Options and select "
115
  "\"Stripe\" as the Payment Method."
116
  msgstr ""
117
+ "Per utilizzare questa funzionalità, vai al modulo Opzioni > Opzioni di "
118
+ "pagamento e selezionare \"Stripe\" come metodo di pagamento."
119
 
120
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:373
121
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
125
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:374
126
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
127
  msgid "Monday"
128
+ msgstr "Lunedi"
129
 
130
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:375
131
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
132
  msgid "Tuesday"
133
+ msgstr "Martedi"
134
 
135
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:376
136
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
137
  msgid "Wednesday"
138
+ msgstr "Mercoledi"
139
 
140
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:377
141
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
142
  msgid "Thursday"
143
+ msgstr "Giovedi"
144
 
145
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:378
146
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
147
  msgid "Friday"
148
+ msgstr "Venerdi"
149
 
150
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:379
151
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4290
154
 
155
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:380
156
  msgid "Leave empty to set the width to 100%."
157
+ msgstr "Lasciare vuoto per impostare la larghezza al 100%."
158
 
159
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:382
160
  msgid ""
161
  "The free version is limited up to 7 fields to add. If you need this "
162
  "functionality, you need to buy the commercial version."
163
  msgstr ""
164
+ "La versione gratuita è limitata a un massimo di 7 campi. Se hai bisogno di "
165
+ "più campi devi acquistare la versione commerciale."
166
 
167
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:404
168
  msgid "Do you want to delete selected items?"
169
+ msgstr "Vuoi cancellare gli elementi selezionati?"
170
 
171
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:405
172
  msgid "You must select at least one item."
173
+ msgstr "Selezionare almeno un elemento."
174
 
175
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:441
176
  msgid "You must select a form"
177
+ msgstr "Selezionare almeno un modulo"
178
 
179
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:527
180
  msgid "Sorry, you are not allowed to access this page."
181
+ msgstr "Mi dispiace, non sei abilitato ad accedere a questa pagina."
182
 
183
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:667
184
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:1489
191
 
192
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:669
193
  msgid "The "
194
+ msgstr "Il "
195
 
196
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:670
197
  msgid " value must be between "
198
+ msgstr " valore deve essere compreso tra "
199
 
200
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:671
201
  msgid "Value must be between "
202
+ msgstr "Il valore deve essere compreso tra "
203
 
204
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:672
205
  msgid "Are you sure you want to clear saved data?"
208
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:673
209
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:3538
210
  msgid "Your score should be less than"
211
+ msgstr "Il tuo punteggio deve essere inferiore a"
212
 
213
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:674
 
214
  msgid "This is not a valid time value."
215
+ msgstr "Questo non è un formato di data valido."
216
 
217
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:675
 
218
  msgid "This is not a valid number value."
219
+ msgstr "Questo non è un numero valido."
220
 
221
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:676
 
222
  msgid "This is not a valid date value."
223
+ msgstr "Questo non è un formato di data valido."
224
 
225
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:677
226
+ #, php-format
227
  msgid "The year must be between %s and %s"
228
+ msgstr "L'anno deve essere compreso tra %s e %s"
229
 
230
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:722
231
  msgid ""
234
  "Dorado support team at support@web-dorado.com. We will take care of this "
235
  "issue as soon as possible."
236
  msgstr ""
237
+ "Oops! Sembra che tu abbia installato l'aggiornamento su una versione "
238
+ "piuttosto vecchia di Form Maker. Purtroppo, questa versione è obsoleta. <br /"
239
+ "> Si prega di contattare il team di supporto di Web-Dorado all'indirizzo "
240
+ "support@web-dorado.com. Ci faremo carico di questo problema il prima "
241
+ "possibile."
242
 
243
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:902
244
  #, php-format
245
  msgid "This section allows you to %s."
246
+ msgstr "Questa sezione consente di%s."
247
 
248
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:910
249
  msgid "Upgrade to paid version"
250
+ msgstr "Perfavore fai l'upgrade alla versione a pagamento"
251
 
252
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:952
253
  msgid ""
256
  "which allows users far from scripting and programming to create WordPress "
257
  "Forms."
258
  msgstr ""
259
+ "Il plug-in Form Maker è uno strumento moderno e avanzato per la creazione "
260
+ "rapida e semplice di un modulo WordPress. L'interfaccia di back-end è "
261
+ "intuitiva e facile da usare che consente anche agli utenti, non esperti di "
262
+ "scripting e dalla programmazione, di creare moduli WordPress."
263
 
264
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:956
265
  msgid "Easy to Use"
266
+ msgstr "Facile da usare"
267
 
268
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:957
269
  msgid ""
271
  "builder solutions available on the market. Simple, yet powerful plugin "
272
  "allows you to quickly and easily build any complex forms."
273
  msgstr ""
274
+ "Questo plug-in responsive è una delle soluzioni di creazione di moduli più "
275
+ "facili da usare disponibili sul mercato. Il plug-in semplice ma potente "
276
+ "consente di creare rapidamente e facilmente qualsiasi modulo anche complesso."
277
 
278
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:960
279
  msgid "Customizable Fields"
280
+ msgstr "Campi personalizzabili"
281
 
282
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:961
283
  msgid ""
285
  "you to change almost every detail in the form and make it look exactly like "
286
  "you want it to be."
287
  msgstr ""
288
+ "Tutti i campi del plug-in Form Maker sono altamente personalizzabili, il che "
289
+ "consente di modificare quasi tutti i dettagli del modulo e farlo sembrare "
290
+ "esattamente come lo si desidera."
291
 
292
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:965
293
  msgid ""
295
  "view submissions statistics, filter submission data and export in csv or xml "
296
  "formats."
297
  msgstr ""
298
+ "Puoi visualizzare gli invii per ogni modulo che hai. Il plug-in consente di "
299
+ "visualizzare le statistiche di invio, filtrare i dati di invio ed esportarli "
300
+ "nei formati csv o xml."
301
 
302
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:968
303
  msgid "Multi-Page Forms"
304
+ msgstr "Moduli a più pagine"
305
 
306
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:969
307
  msgid ""
308
  "With the form builder plugin you can create muilti-page forms. Simply use "
309
  "the page break field to separate the pages in your forms."
310
  msgstr ""
311
+ "Con il plugin per la creazione di moduli è possibile creare moduli a pagina "
312
+ "muilti. Usa semplicemente il campo di separazione della pagina per separare "
313
+ "le pagine nei tuoi moduli."
314
 
315
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:973
316
  msgid ""
318
  "themes. You can choose from a list of existing themes or simply create the "
319
  "one that better fits your brand and website."
320
  msgstr ""
321
+ "Il plug-in WordPress Form Maker è dotato di una vasta gamma di temi "
322
+ "personalizzabili. Puoi scegliere da un elenco di temi esistenti o "
323
+ "semplicemente creare quello che meglio si adatta al tuo marchio e al tuo "
324
+ "sito web."
325
 
326
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:979
327
  msgid "Installing"
328
+ msgstr "Installando"
329
 
330
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:984
331
  msgid "Creating a new Form"
332
+ msgstr "Crando un nuovo modulo"
333
 
334
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:989
335
  msgid "Configuring Form Options"
336
+ msgstr "Configurando in Opzioni"
337
 
338
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:994
339
  msgid "Description of The Form Fields"
340
+ msgstr "Descrizione del campo Modulo"
341
 
342
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:998
343
  msgid "Selecting Options from Database"
344
+ msgstr "Selezionando Opzioni dal Dtabase"
345
 
346
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1004
347
  msgid "Publishing the Created Form"
348
+ msgstr "Pubblicardo il modulo creato"
349
 
350
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1009
351
  msgid "Blocking IPs"
352
+ msgstr "Bloccando gli IP"
353
 
354
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1014
355
  msgid "Managing Submissions"
356
+ msgstr "Gestendo gli invii"
357
 
358
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1019
359
  msgid "Publishing Submissions"
360
+ msgstr "Pubblicando gli invii"
361
 
362
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1118
363
  #, php-format
364
  msgid "Please update the %s add-on to start using."
365
  msgstr ""
366
+ "Si prega di aggiornare il componente aggiuntivo%s per iniziare a utilizzare."
367
 
368
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1119
369
  #, php-format
370
  msgid "Please update the %s add-ons to start using."
371
+ msgstr "Aggiorna i componenti aggiuntivi di%s per iniziare a utilizzare."
372
 
373
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1179
374
  #, php-format
376
  "%s advises: Install brand new FREE %s plugin to keep your forms and website "
377
  "safe."
378
  msgstr ""
379
+ "%s consiglia: Installa un nuovo plug-in GRATUITO%s per mantenere i tuoi "
380
+ "moduli e il tuo sito web al sicuro."
381
 
382
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1179
383
  msgid "More details"
384
+ msgstr "Altri dettagli"
385
 
386
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1179
387
  msgid "Backup WD"
388
+ msgstr "Backup WD"
389
 
390
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1244
391
  msgid "Support Forum"
392
+ msgstr "Forum di Supporto"
393
 
394
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/form-maker.php:1245
395
  msgid "Rate"
396
+ msgstr "Tasso"
397
 
398
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Blocked_ips_fm.php:25
399
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:40
400
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:61
401
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:46
402
  msgid "Delete"
403
+ msgstr "Delete (Elimina)"
404
 
405
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Blocked_ips_fm.php:26
406
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:41
407
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:47
 
408
  msgid "deleted"
409
+ msgstr "cancellato"
410
 
411
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:28
412
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:148
413
  msgid "Publish"
414
+ msgstr "Pubblica"
415
 
416
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:29
417
  msgid "published"
418
+ msgstr "pubblicato"
419
 
420
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:32
421
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:148
422
  msgid "Unpublish"
423
+ msgstr "Imposta come non pubblicato"
424
 
425
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:33
426
  msgid "unpublished"
427
+ msgstr "nonn pubblicato"
428
 
429
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:36
430
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:42
431
  msgid "Duplicate"
432
+ msgstr "Duplica"
433
 
434
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:37
435
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:43
436
  msgid "duplicated"
437
+ msgstr "duplicato"
438
 
439
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:347
440
  msgid "Create new form"
441
+ msgstr "Crea un nuovo modulo"
442
 
443
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:481
444
  msgid "options"
445
+ msgstr "opzioni"
446
 
447
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:812
448
  msgid "layout"
449
+ msgstr "layout"
450
 
451
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Manage_fm.php:856
452
  msgid "display options"
453
+ msgstr "visualizza opzioni"
454
 
455
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:53
456
  msgid "Block IPs"
457
+ msgstr "Blocca IP"
458
 
459
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:54
460
  msgid "Blocked"
461
+ msgstr "Bloccato"
462
 
463
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:57
464
  msgid "Unblock IPs"
465
+ msgstr "IP sbloccati"
466
 
467
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:58
468
  msgid "Unblocked"
469
+ msgstr "Sbloccati"
470
 
471
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Submissions_fm.php:62
 
472
  msgid "Deleted"
473
+ msgstr "Cancellato"
474
 
475
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:221
476
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1394
477
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2060
478
  msgid "Global Parameters"
479
+ msgstr "Parametri globali"
480
 
481
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:222
482
  msgid "Header"
483
+ msgstr "Intestazione"
484
 
485
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:223
486
  msgid "Content"
487
+ msgstr "Contenuto"
488
 
489
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:224
490
  msgid "Inputbox"
491
+ msgstr "InputBox"
492
 
493
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:225
 
494
  msgid "Choices"
495
+ msgstr "Scelte"
496
 
497
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:226
498
  msgid "General Buttons"
499
+ msgstr "Pulsanti generali"
500
 
501
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:227
502
  msgid "Pagination"
503
+ msgstr "Paginazione"
504
 
505
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:228
506
  msgid "Buttons"
507
+ msgstr "Pulsanti"
508
 
509
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:229
510
  msgid "Close(Minimize) Button"
511
+ msgstr "Pulsante Chiudi (Riduci)"
512
 
513
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:230
514
  msgid "Minimize Text"
515
+ msgstr "Riduci a icona il testo"
516
 
517
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:231
518
  msgid "Other"
519
+ msgstr "Altro"
520
 
521
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:232
522
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2913
523
  msgid "Custom CSS"
524
+ msgstr "CSS personalizzato"
525
 
526
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:251
527
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2454
 
528
  msgid "Top"
529
+ msgstr "In alto"
530
 
531
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:252
532
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:271
533
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2463
534
  msgid "Right"
535
+ msgstr "Destra"
536
 
537
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:253
538
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2472
539
  msgid "Bottom"
540
+ msgstr "In basso"
541
 
542
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:254
543
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:271
544
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2481
545
  msgid "Left"
546
+ msgstr "Sinistra"
547
 
548
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:271
 
549
  msgid "Center"
550
+ msgstr "Centra"
551
 
552
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:313
553
  msgid "Font Family"
554
+ msgstr "Famiglia di Caratteri"
555
 
556
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:322
557
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:434
569
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2100
570
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2276
571
  msgid "Width"
572
+ msgstr "Larghezza"
573
 
574
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:330
575
  msgid "Width (for scrollbox, popup form types)"
576
+ msgstr "Larghezza (per scrollbox, tipi di moduli popup)"
577
 
578
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:338
579
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:450
592
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2525
593
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2696
594
  msgid "Padding"
595
+ msgstr "Margine interno"
596
 
597
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:342
598
  msgid "e.g. 3px 5px or 3% 5%"
599
+ msgstr "e.s. 3px 5px o 3% 5%"
600
 
601
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:347
602
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:459
619
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2534
620
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2705
621
  msgid "Margin"
622
+ msgstr "Margine"
623
 
624
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:352
625
  msgid "e.g. 5px 10px or 5% 10%"
626
+ msgstr "ad es. 5px 10px o 5% 10%"
627
 
628
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:356
629
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:477
646
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2714
647
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2780
648
  msgid "Border"
649
+ msgstr "Bordo"
650
 
651
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:364
652
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:485
669
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2722
670
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2788
671
  msgid "Border Color"
672
+ msgstr "Colore del bordo"
673
 
674
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:368
675
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:403
783
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2826
784
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2882
785
  msgid "e.g."
786
+ msgstr "e.s."
787
 
788
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:373
789
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:494
806
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2731
807
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2796
808
  msgid "Border Type"
809
+ msgstr "Tipo di bordo"
810
 
811
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:382
812
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:503
829
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2740
830
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2805
831
  msgid "Border Width"
832
+ msgstr "Larghezza Bordo"
833
 
834
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:390
835
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:511
848
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2577
849
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2748
850
  msgid "Border Radius"
851
+ msgstr "Raggio del bordo"
852
 
853
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:398
854
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1029
859
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2193
860
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2369
861
  msgid "Box Shadow"
862
+ msgstr "Ombra del riquadro"
863
 
864
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:409
865
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:608
866
  msgid "General Parameters"
867
+ msgstr "Parametri globali"
868
 
869
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:416
870
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:581
872
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1401
873
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2025
874
  msgid "Alignment"
875
+ msgstr "Allineamento"
876
 
877
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:425
878
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:615
897
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2652
898
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2762
899
  msgid "Background Color"
900
+ msgstr "Colore dello sfondo"
901
 
902
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:442
903
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:649
904
  msgid "Width (for topbar form type)"
905
+ msgstr "Larghezza (per il modulo della barra in alto)"
906
 
907
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:468
908
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2687
909
  msgid "Text Align"
910
+ msgstr "Allinea testo"
911
 
912
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:519
913
  msgid "Title Parameters"
914
+ msgstr "Parametri del titolo"
915
 
916
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:526
917
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:558
926
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2499
927
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2661
928
  msgid "Font Size"
929
+ msgstr "Dimensione carattere"
930
 
931
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:534
932
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:632
940
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2507
941
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2669
942
  msgid "Font Weight"
943
+ msgstr "Larghezza carattere"
944
 
945
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:543
946
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:566
964
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2822
965
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2845
966
  msgid "Color"
967
+ msgstr "Colore"
968
 
969
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:552
970
  msgid "Description Parameters"
971
+ msgstr "Parmetri della descrizione"
972
 
973
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:575
974
  msgid "Image Parameters"
975
+ msgstr "Parametri dell' immagine"
976
 
977
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:598
978
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:926
987
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2108
988
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2284
989
  msgid "Height"
990
+ msgstr "Altezza"
991
 
992
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:666
993
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1054
994
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1328
995
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2859
996
  msgid "Background URL"
997
+ msgstr "URL dello sfondo"
998
 
999
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:675
1000
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1063
1001
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1337
1002
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2868
1003
  msgid "Background Repeat"
1004
+ msgstr "Ripeti sfondo"
1005
 
1006
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:684
1007
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1346
1008
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2877
1009
  msgid "Background Position"
1010
+ msgstr "Posizione sfondo"
1011
 
1012
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:697
1013
  msgid "Background Size"
1014
+ msgstr "Dimensioni Sfondo"
1015
 
1016
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:777
1017
  msgid "Mini labels (name, phone, address, checkbox, radio) Parameters"
1019
 
1020
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:828
1021
  msgid "Section Parameters"
1022
+ msgstr "Parametri sezione"
1023
 
1024
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:861
1025
  msgid "Section Column Parameters"
1026
+ msgstr "Parametri colonna sezione"
1027
 
1028
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:885
1029
  msgid "Footer Parameters"
1030
+ msgstr "Parametri del piè di pagina"
1031
 
1032
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1038
1033
  msgid "Dropdown additional"
1034
+ msgstr "Dropdown aggiuntivo"
1035
 
1036
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1045
1037
  msgid "Appearance"
1038
+ msgstr "Aspetto"
1039
 
1040
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1080
1041
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:517
 
1042
  msgid "Single Choice"
1043
+ msgstr "Scelta Singola"
1044
 
1045
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1172
1046
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1313
1047
  msgid "Checked Parameters"
1048
+ msgstr "Parametri controllati"
1049
 
1050
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1220
1051
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:518
1052
  msgid "Multiple Choice"
1053
+ msgstr "Scelta Multipla"
1054
 
1055
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1410
1056
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:520
1057
  msgid "Submit"
1058
+ msgstr "Invia"
1059
 
1060
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1537
1061
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1722
1064
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2585
1065
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2756
1066
  msgid "Hover Parameters"
1067
+ msgstr "Parametri di Hover"
1068
 
1069
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1595
1070
  msgid "Reset"
1071
+ msgstr "Reset "
1072
 
1073
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1782
1074
  msgid "Active"
1075
+ msgstr "Attivo"
1076
 
1077
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1832
1078
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1950
1079
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2116
1080
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2292
1081
  msgid "Line Height"
1082
+ msgstr "Altezza della line"
1083
 
1084
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:1900
1085
  msgid "Deactive"
1086
+ msgstr "Disattiva"
1087
 
1088
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2018
1089
  msgid "Steps"
1090
+ msgstr "Passi"
1091
 
1092
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2042
1093
  msgid "Percentage"
1095
 
1096
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2084
1097
  msgid "Next Button Parameters"
1098
+ msgstr "Pulsante prossimi parametri"
1099
 
1100
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2260
1101
  msgid "Previous Button Parameters"
1102
+ msgstr "Pulsante precedenti parametri"
1103
 
1104
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2445
1105
  msgid "Position"
1106
+ msgstr "Posizione"
1107
 
1108
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2815
1109
  msgid "Deactive Text"
1110
+ msgstr "Disattiva testo"
1111
 
1112
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2831
1113
  msgid "Font Style"
1114
+ msgstr "Stile Carattere"
1115
 
1116
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2839
1117
  msgid "Required"
1118
+ msgstr "Richiesto"
1119
 
1120
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2853
1121
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:538
1122
  msgid "File Upload"
1123
+ msgstr "Carica File"
1124
 
1125
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2890
1126
  msgid "Grading"
1127
+ msgstr "Valutazione"
1128
 
1129
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/controllers/Themes_fm.php:2896
1130
  msgid "Text Width"
1131
+ msgstr "Larghezza testo"
1132
 
1133
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/models/Submissions_fm.php:351
1134
  msgid "Street Address"
1135
+ msgstr "Indirizzo"
1136
 
1137
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/models/Submissions_fm.php:354
1138
  msgid "Street Address Line 2"
1160
 
1161
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Blocked_ips_fm.php:76
1162
  msgid "IP"
1163
+ msgstr "IP"
1164
 
1165
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Blocked_ips_fm.php:116
1166
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:152
1167
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Submissions_fm.php:484
1168
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Themes_fm.php:96
1169
  msgid "Do you want to delete selected item?"
1170
+ msgstr "Vuoi eliminare l'elemento selezionato?"
1171
 
1172
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/FMSelectDataFromDb.php:163
1173
  msgid "Connection type"
1176
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/FMShortocde.php:43
1177
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/FMShortocde.php:89
1178
  msgid "Unpublished"
1179
+ msgstr "Non pubblicato"
1180
 
1181
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/FMShortocde.php:73
1182
  msgid "Front end submissions are disabled in free version."
1183
+ msgstr "Gli invii di front-end sono disabilitati nella versione gratuita."
1184
 
1185
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/FormMakerSubmits.php:43
1186
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:515
1195
 
1196
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:85
1197
  msgid "Type"
1198
+ msgstr "Tipo"
1199
 
1200
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:87
1201
  msgid "Shortcode"
1202
+ msgstr "Shortcode"
1203
 
1204
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:511
1205
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:594
1206
  msgid "BASIC FIELDS"
1207
+ msgstr "CAMPI DI BASE"
1208
 
1209
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:512
1210
  msgid "Single Line Text"
1211
+ msgstr "Singola linea di testo"
1212
 
1213
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:513
1214
  msgid "Paragraph Text"
1215
+ msgstr "Testo Paragrafo"
1216
 
1217
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:514
 
1218
  msgid "Number"
1219
+ msgstr "Numero"
1220
 
1221
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:516
 
1222
  msgid "Select"
1223
+ msgstr "Seleziona"
1224
 
1225
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:519
1226
  msgid "Recaptcha"
1227
+ msgstr "ReCaptcha"
1228
 
1229
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:521
1230
  msgid "Simple Captcha"
1231
+ msgstr "Captcha semplice"
1232
 
1233
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:523
1234
  msgid "USER INFO FIELDS"
1235
+ msgstr "CAMPI DI INFORMAZIONI UTENTE"
1236
 
1237
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:524
1238
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:39
1239
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:186
1240
  msgid "Name"
1241
+ msgstr "Nome"
1242
 
1243
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:525
1244
  msgid "Email"
1245
+ msgstr "Email"
1246
 
1247
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:526
1248
  msgid "Phone"
1249
+ msgstr "Telefono"
1250
 
1251
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:527
1252
  msgid "Address"
1253
  msgstr "Indirizzo"
1254
 
1255
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:528
 
1256
  msgid "Mark on Map"
1257
+ msgstr "Segna sulla mappa"
1258
 
1259
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:529
 
1260
  msgid "Country List"
1261
+ msgstr "Lista dei paesi"
1262
 
1263
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:530
1264
  msgid "Date of Birth"
1265
+ msgstr "Data di nascita"
1266
 
1267
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:532
1268
  msgid "LAYOUT FIELDS"
1269
+ msgstr "CAMPI LAYOUT"
1270
 
1271
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:533
1272
  msgid "HTML"
1274
 
1275
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:534
1276
  msgid "Section"
1277
+ msgstr "Sezione"
1278
 
1279
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:535
1280
  msgid "Page"
1281
+ msgstr "Pagina"
1282
 
1283
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:537
1284
  msgid "ADVANCED"
1285
+ msgstr "AVANZATO"
1286
 
1287
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:539
 
1288
  msgid "Map"
1289
+ msgstr "Mappa"
1290
 
1291
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:540
1292
  msgid "Time"
1293
+ msgstr "Orario"
1294
 
1295
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:541
1296
  msgid "Receive Copy"
1297
+ msgstr "Ricevi copia"
1298
 
1299
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:542
1300
  msgid "Date Range"
1301
+ msgstr "Intervallo date"
1302
 
1303
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:543
1304
  msgid "Stars"
1305
+ msgstr "Stelle"
1306
 
1307
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:544
1308
  msgid "Rating"
1309
+ msgstr "Valutazione"
1310
 
1311
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:545
1312
  msgid "Slider"
1313
+ msgstr "Cursore"
1314
 
1315
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:546
1316
  msgid "Range"
1317
+ msgstr "Intervallo"
1318
 
1319
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:547
1320
  msgid "Grades"
1321
+ msgstr "Gradi"
1322
 
1323
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:548
 
1324
  msgid "Table of Fields"
1325
+ msgstr "Tabella dei campi"
1326
 
1327
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:549
1328
  msgid "Hidden Input"
1329
+ msgstr "Input invisibile"
1330
 
1331
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:550
1332
  msgid "Custom Button"
1333
+ msgstr "Tasto personalizzato"
1334
 
1335
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:551
1336
  msgid "Password"
1337
+ msgstr "Password"
1338
 
1339
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:552
 
1340
  msgid "Phone-Area Code"
1341
+ msgstr "Prefisso"
1342
 
1343
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:553
1344
  msgid "Arithmetic Captcha"
1345
+ msgstr "Captcha aritmetico"
1346
 
1347
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:555
1348
  msgid "PAYMENT"
1349
+ msgstr "PAGAMENTO"
1350
 
1351
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:556
1352
  msgid "Price"
1353
+ msgstr "Prezzo"
1354
 
1355
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:557
1356
  msgid "Payment Select"
1357
+ msgstr "Pagamento selezionato"
1358
 
1359
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:558
1360
  msgid "Payment Single Choice"
1361
+ msgstr "Pagamento singola scelta"
1362
 
1363
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:559
1364
  msgid "Payment Multiple Choice"
1365
+ msgstr "Pagamento scelte multiple"
1366
 
1367
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:560
1368
  msgid "Shipping"
1369
+ msgstr "Spedizione"
1370
 
1371
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:561
1372
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_maker.php:4192
1376
 
1377
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:562
1378
  msgid "Stripe"
1379
+ msgstr "Strisce"
1380
 
1381
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:596
1382
  msgid "Toggle panel:"
1383
+ msgstr "Attiva/Disattiva il riquadro:"
1384
 
1385
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:743
1386
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:2017
1387
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:2143
1388
  msgid "Back to Form"
1389
+ msgstr "Torna al modulo"
1390
 
1391
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:1544
1392
  msgid "Form Maker Stripe Integration"
1393
+ msgstr "Integrazione con moduli Maker Stripe"
1394
 
1395
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Manage_fm.php:1545
1396
  #, php-format
1397
  msgid "Please install %s add-on to use this feature."
1398
+ msgstr "Installa%s add-on per utilizzare questa funzione."
1399
 
1400
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Options_fm.php:29
1401
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Themes_fm.php:143
1402
  msgid "Save"
1403
+ msgstr "Salva"
1404
 
1405
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Options_fm.php:68
1406
  #, php-format
1407
  msgid "%s for your site from ReCaptcha website."
1408
+ msgstr "%s per il tuo sito dal sito Web di ReCaptcha."
1409
 
1410
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Options_fm.php:68
1411
  msgid "Get ReCaptcha Site and Secret Keys"
1412
+ msgstr "Ottieni ReCaptcha Site e Secret Keys"
1413
 
1414
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Options_fm.php:113
1415
  #, php-format
1416
  msgid "Uninstall %s"
1417
+ msgstr "Disinstalla %s"
1418
 
1419
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Submissions_fm.php:187
 
1420
  msgid "Show Filters"
1421
+ msgstr "Visualizza Filtri"
1422
 
1423
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Submissions_fm.php:187
1424
  msgid "Hide Filters"
1425
+ msgstr "Nascondi Filtri"
1426
 
1427
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Themes_fm.php:71
1428
  msgid "Default"
1429
+ msgstr "Predefinita"
1430
 
1431
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Themes_fm.php:151
 
1432
  msgid "Title: "
1433
+ msgstr "Titolo: "
1434
 
1435
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/admin/views/Themes_fm.php:224
1436
  msgid ""
1438
  "provided by Form Maker. You can use Custom CSS panel to edit form styling, "
1439
  "or alternatively select a new theme for your form."
1440
  msgstr ""
1441
+ "Questo tema è obsoleto. Le opzioni tema sono disponibili solo in nuovi temi "
1442
+ "forniti da Form Maker Puoi utilizzare il pannello CSS personalizzato per "
1443
+ "modificare lo stile del modulo o in alternativa selezionare un nuovo tema "
1444
+ "per il modulo."
1445
 
1446
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:2305
1447
  msgid ""
1460
 
1461
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:2912
1462
  msgid "value must be between"
1463
+ msgstr "valore deve essere compreso tra"
1464
 
1465
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:3038
1466
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:3120
1474
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:3951
1475
  #, php-format
1476
  msgid "No %s found."
1477
+ msgstr "Nessun %s trovato."
1478
 
1479
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4012
1480
  msgid "Afghanistan"
2282
  msgstr ""
2283
 
2284
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4226
 
2285
  msgid "Connecticut"
2286
+ msgstr ""
2287
 
2288
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4227
2289
  msgid "Delaware"
2294
  msgstr ""
2295
 
2296
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4229
 
2297
  msgid "Florida"
2298
+ msgstr ""
2299
 
2300
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4231
2301
  msgid "Hawaii"
2459
 
2460
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4284
2461
  msgid "Done"
2462
+ msgstr "Fatto"
2463
 
2464
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4285
2465
  msgid "Prev"
2466
+ msgstr "Precedente"
2467
 
2468
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4286
2469
  msgid "Next"
2470
+ msgstr "Successivo"
2471
 
2472
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4287
2473
  msgid "Today"
2474
+ msgstr "Oggi"
2475
 
2476
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/framework/WDW_FM_Library.php:4288
2477
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_maker.php:3479
2637
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:18
2638
  msgid "Something went wrong when trying to display this form."
2639
  msgstr ""
2640
+ "Qualcosa è andato storto durante il tentativo di visualizzare questo modulo."
2641
 
2642
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:23
2643
  msgid "The form you are trying to view does not have Embedded display type."
2644
  msgstr ""
2645
+ "Il modulo che stai cercando di visualizzare non ha il tipo di "
2646
+ "visualizzazione Embedded (integrato)."
2647
 
2648
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:30
2649
  msgid "The form you are trying to view has been unpublished."
2650
+ msgstr "Il modulo che stai cercando di visualizzare non è stato pubblicato."
2651
 
2652
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:1082
2653
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:1094
2660
  msgid "Your ip is blacklisted. Please contact the website administrator."
2661
  msgstr ""
2662
  "Il tuo ip è nella lista nera. Si prega di contattare l'amministratore del "
2663
+ "sito."
2664
 
2665
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:1374
2666
  msgid "This is not a valid date format."
2676
  msgstr "Errore, il file non possono essere spostati."
2677
 
2678
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:1961
2679
+ #, php-format
2680
  msgid "This field %s requires a unique entry."
2681
  msgstr ""
2682
+ "Questo campo %s richiede un' unica immissione e questo valore è stato già "
2683
+ "inserito."
2684
 
2685
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_maker.php:2221
2686
  msgid "Nothing was submitted."
2698
  msgstr "Errore, e-mail non è stato inviato."
2699
 
2700
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/form_submissions.php:369
 
2701
  msgid "You have no permissions to download"
2702
+ msgstr "Non hai il permesso di scaricare. "
2703
 
2704
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/models/verify_email.php:27
2705
  msgid "Your email address is already verified."
2719
 
2720
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_maker.php:554
2721
  msgid "Password values don't match"
2722
+ msgstr "I valori delle password non corrispondono"
2723
 
2724
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_maker.php:1074
2725
  msgid "The email addresses don't match"
2731
 
2732
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_maker.php:3743
2733
  msgid "AM"
2734
+ msgstr "AM"
2735
 
2736
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_maker.php:3744
2737
  msgid "PM"
2738
+ msgstr "PM"
2739
 
2740
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:14
2741
  msgid "You have no permission to view submissions."
2742
  msgstr "Non hai il permesso di visualizzare presentazioni."
2743
 
2744
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:237
2745
+ #, php-format
2746
  msgid ""
2747
  "%s of %s submissions are not shown, as the field you sorted by is missing in "
2748
  "those submissions."
2749
  msgstr ""
2750
+ "% s di% s immissioni non sono mostrate, in quanto il campo che hai ordinato "
2751
+ "manca in quelle immissioni."
2752
 
2753
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:399
2754
  msgid "From"
2776
 
2777
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:467
2778
  msgid "Denied"
2779
+ msgstr "Negato"
2780
 
2781
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:468
2782
  msgid "Failed"
2783
+ msgstr "Fallito"
2784
 
2785
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:469
2786
  msgid "Held"
2787
+ msgstr "Sospeso"
2788
 
2789
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:470
2790
  msgid "In progress"
2791
+ msgstr "In corso"
2792
 
2793
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:471
2794
  msgid "On hold"
2800
 
2801
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:473
2802
  msgid "Partially refunded"
2803
+ msgstr "Parzialmente rimborsato"
2804
 
2805
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:474
2806
  msgid "Pending verification"
2808
 
2809
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:475
2810
  msgid "Placed"
2811
+ msgstr "Collocato"
2812
 
2813
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:476
2814
  msgid "Processing"
2815
+ msgstr "In lavorazione"
2816
 
2817
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:477
2818
  msgid "Refunded"
2819
+ msgstr "Rimborsato"
2820
 
2821
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:478
2822
  msgid "Refused"
2823
+ msgstr "Rifiutato"
2824
 
2825
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:479
2826
  msgid "Removed"
2828
 
2829
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:480
2830
  msgid "Returned"
2831
+ msgstr "Ritornato"
2832
 
2833
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:481
2834
  msgid "Reversed"
2835
+ msgstr "Invertito"
2836
 
2837
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:482
2838
  msgid "Temporary hold"
2839
+ msgstr "Blocco temporaneo"
2840
 
2841
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:483
2842
  msgid "Unclaimed"
2856
 
2857
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/wd.php:72
2858
  msgid "Overview"
2859
+ msgstr "Anteprima"
2860
 
2861
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/deactivate.php:35
2862
  msgid "Technical problems / hard to use"
2863
+ msgstr "Problemi tecnici / difficoltà d'uso"
2864
 
2865
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/deactivate.php:39
2866
  msgid "Free version is limited"
2867
+ msgstr "La versione gratuita è limitata"
2868
 
2869
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/deactivate.php:43
2870
  msgid "Premium is expensive"
2871
+ msgstr "Premium è cara"
2872
 
2873
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/deactivate.php:47
2874
  msgid "Upgrading to paid version"
2875
+ msgstr "Aggiornando alla versione a pagamento"
2876
 
2877
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/deactivate.php:51
 
2878
  msgid "Temporary deactivation"
2879
+ msgstr "Blocco temporaneo"
2880
 
2881
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/notices.php:211
2882
  msgid "Leave A Review?"
2909
 
2910
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:27
2911
  msgid "Welcome"
2912
+ msgstr "Benvenuto"
2913
 
2914
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:31
 
2915
  msgid "User Guide"
2916
+ msgstr "Guida utente"
2917
 
2918
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:35
2919
  msgid "Deals"
2921
 
2922
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:39
2923
  msgid "Support"
2924
+ msgstr "Supporto"
2925
 
2926
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:43
2927
  msgid "Submit Your Idea"
2928
+ msgstr "Invia il tuo sugerimento"
2929
 
2930
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:47
2931
  msgid "Forum"
2932
+ msgstr "Forum"
2933
 
2934
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:79
2935
  msgid "Wordpress form builder plugin"
2936
+ msgstr "Wordpress plugin per generare moduli (form)"
2937
 
2938
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:80
2939
  msgid ""
2940
  "Form Maker is a modern and advanced tool for creating WordPress forms easily "
2941
  "and fast."
2942
  msgstr ""
2943
+ "Form Maker è uno strumento moderno e avanzato per la creazione di moduli "
2944
+ "WordPress in modo facile e veloce."
2945
 
2946
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:85
2947
  msgid "WordPress Photo Gallery plugin"
2948
+ msgstr "WordPress Photo Gallery plugin"
2949
 
2950
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:86
2951
  msgid ""
2952
  "Photo Gallery is a fully responsive WordPress Gallery plugin with advanced "
2953
  "functionality."
2954
  msgstr ""
2955
+ "Photo Gallery è un plug-in di WordPress completamente responsive con "
2956
+ "funzionalità avanzate."
2957
 
2958
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:91
2959
  msgid "WordPress calendar plugin"
2960
+ msgstr "WordPress plugin calendario"
2961
 
2962
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:92
2963
  msgid ""
2964
  "Organize and publish your events in an easy and elegant way using Event "
2965
  "Calendar WD."
2966
  msgstr ""
2967
+ "Organizza e pubblica i tuoi eventi in modo semplice ed elegante utilizzando "
2968
+ "il Calendario eventi WD."
2969
 
2970
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:97
2971
  msgid "WD Google Maps plugin"
2972
+ msgstr "WD Google Maps plugin"
2973
 
2974
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:98
2975
  msgid ""
2976
  "Google Maps WD is an intuitive tool for creating Google maps with advanced "
2977
  "markers, custom layers and overlays for your website."
2978
  msgstr ""
2979
+ "Google Maps WD è uno strumento intuitivo per la creazione di mappe di Google "
2980
+ "con marcatori avanzati, livelli personalizzati e sovrapposizioni per il tuo "
2981
+ "sito web."
2982
 
2983
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:103
2984
  msgid "WordPress slider plugin"
2985
  msgstr ""
2986
+ "Google Maps WD è uno strumento intuitivo per la creazione di mappe di Google "
2987
+ "con marcatori avanzati, livelli personalizzati e sovrapposizioni per il tuo "
2988
+ "sito web"
2989
 
2990
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:104
2991
  msgid ""
2992
  "Create responsive, highly configurable sliders with various effects for your "
2993
  "WordPress site."
2994
  msgstr ""
2995
+ "Google Maps WD è uno strumento intuitivo per la creazione di mappe di Google "
2996
+ "con marcatori avanzati, livelli personalizzati e sovrapposizioni per il tuo "
2997
+ "sito web."
2998
 
2999
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:109
3000
  msgid "WordPress event calendar plugin"
3001
+ msgstr "WordPress event calendar plugin"
3002
 
3003
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:110
3004
  msgid ""
3005
  "Spider Event Calendar is a highly configurable product which allows you to "
3006
  "have multiple organized events."
3007
  msgstr ""
3008
+ "Spider Event Calendar è un prodotto altamente configurabile che ti consente "
3009
+ "di organizzare eventi multipli."
3010
 
3011
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:115
3012
  msgid "WordPress Instagram Feed plugin"
3013
+ msgstr "WordPress Instagram Feed plugin"
3014
 
3015
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:116
3016
  msgid ""
3017
  "WD Instagram Feed is a user-friendly tool for displaying user or hashtag-"
3018
  "based feeds on your website."
3019
  msgstr ""
3020
+ "WD Instagram Feed è uno strumento intuitivo per la visualizzazione di feed, "
3021
+ "basati su hashtag o utente, sul tuo sito web."
3022
 
3023
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:169
3024
  msgid "Not set"
3025
+ msgstr "Non impostato"
3026
 
3027
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:174
3028
  msgid "On"
3029
+ msgstr "On"
3030
 
3031
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:176
3032
  msgid "Off"
3033
+ msgstr "Off"
3034
 
3035
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:185
3036
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:193
3039
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:215
3040
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:222
3041
  msgid "N/A"
3042
+ msgstr "Non disponibile"
3043
 
3044
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:220
3045
  msgid " MByte"
3046
+ msgstr " MByte"
3047
 
3048
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:227
3049
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:234
3050
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:241
3051
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:251
3052
  msgid "Yes"
3053
+ msgstr "Si"
3054
 
3055
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:229
3056
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:236
3058
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:246
3059
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/overview.php:251
3060
  msgid "No"
3061
+ msgstr "No"
3062
 
3063
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/subscribe.php:43
3064
  msgid "Your name &"
3065
+ msgstr "Tuo nome &"
3066
 
3067
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/subscribe.php:44
 
3068
  msgid "Email address"
3069
+ msgstr "Indirizzo Email"
3070
 
3071
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/subscribe.php:48
3072
  msgid "Site URL"
3073
+ msgstr "URL sito"
3074
 
3075
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/subscribe.php:49
3076
  msgid "Wordpress version"
3077
+ msgstr "Versione Wordpress"
3078
 
3079
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/includes/subscribe.php:53
3080
  msgid "List of plugins"
3081
+ msgstr "Lista dei plugin"
3082
 
3083
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview.php:6
3084
  #, php-format
3085
  msgid "Welcome to %s"
3086
+ msgstr "Benvenuto a %s"
3087
 
3088
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview.php:8
3089
  #, php-format
3090
  msgid "CONGRATS! You've successfully installed %s WordPress plugin."
3091
  msgstr ""
3092
+ "Congratulazioni! Hai installatto correttamente il plugin di Wordpress %s."
3093
 
3094
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:12
3095
  #, php-format
3096
  msgid "Get %s"
3097
+ msgstr "Ordina %s"
3098
 
3099
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:13
3100
  msgid "plugins"
3101
+ msgstr "plugins"
3102
 
3103
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:14
3104
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:58
3105
  msgid "for"
3106
+ msgstr "per"
3107
 
3108
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:14
3109
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:58
3110
  msgid "only"
3111
+ msgstr "solo"
3112
 
3113
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:16
3114
  msgid "Save 80%"
3115
+ msgstr "Risparmia l'80%"
3116
 
3117
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:57
3118
  msgid "Get all 11 themes"
3119
+ msgstr "Ricevi tutti gli 11 temi"
3120
 
3121
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_deals.php:60
3122
  msgid "Save 70%"
3123
+ msgstr "Risparmia l'80%"
3124
 
3125
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_overview_support.php:3
3126
  #, php-format
3129
  "professional support or have any questions. You can also fill in the form to "
3130
  "leave your comments or feedback."
3131
  msgstr ""
3132
+ "Puoi contattarci compilando questo modulo o via email% s ogni volta che hai "
3133
+ "bisogno di supporto professionale o hai domande. Puoi anche compilare il "
3134
+ "modulo per lasciare i tuoi commenti o feedback."
3135
 
3136
  #: C:/wamp/www/wordpress/wp-content/plugins/form-maker/wd/templates/display_subscribe.php:11
3137
  #, php-format
3141
  "deals and discounts on premium products and more. You can choose to skip "
3142
  "this step, %s will still work just fine."
3143
  msgstr ""
3144
+ "Permetti a% s di raccogliere alcuni dati di utilizzo. Ciò ti consentirà di "
3145
+ "ottenere di più dalla tua esperienza con i plug-in: ottenere un fantastico "
3146
+ "supporto clienti, ricevere offerte esclusive e sconti su prodotti premium e "
3147
+ "altro ancora. Puoi scegliere di saltare questo passaggio,% s funzionerà lo "
3148
+ "stesso."
3149
 
3150
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:40
3151
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:191
 
3152
  msgid "Address line 1"
3153
+ msgstr "Indirizzo riga 1"
3154
 
3155
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:41
3156
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:196
 
3157
  msgid "Address line 2"
3158
+ msgstr "Indirizzo riga 2"
3159
 
3160
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:43
3161
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:206
3162
  msgid "State"
3163
+ msgstr "Stato"
3164
 
3165
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:45
3166
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:216
3167
  msgid "Zip code"
3168
+ msgstr "CAP"
3169
 
3170
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:171
3171
  msgid "Card number"
3172
+ msgstr "Nunero della carta"
3173
 
3174
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:176
3175
  msgid "Expiration date"
3176
+ msgstr "Data di scadenza"
3177
 
3178
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/controller.php:181
3179
  msgid "CVC"
3180
+ msgstr "CVC"
3181
 
3182
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/fm_stripe.php:166
 
3183
  msgid "Field is required."
3184
+ msgstr "Il campo è obbligatiorio."
3185
 
3186
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/fm_stripe.php:181
3187
  #, php-format
3189
  "Please install Form Maker plugin version %s and higher to start using Stripe "
3190
  "add-on."
3191
  msgstr ""
3192
+ "installa la versione del plug-in di Form Maker % s e successiva per iniziare "
3193
+ "a utilizzare il componente aggiuntivo Stripe."
3194
 
3195
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/view.php:20
3196
  #, php-format
3197
  msgid "%s for your site."
3198
+ msgstr "%s per il tuo sito."
3199
 
3200
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/view.php:20
3201
  msgid "Get Stripe Publishable and Secret Keys"
3202
+ msgstr "Ottieni strisce pubblicabili e chiavi segrete"
3203
 
3204
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/view.php:131
3205
  msgid "Month"
3206
+ msgstr "Mese"
3207
 
3208
  #: C:\wamp\www\wordpress\wp-content\plugins\form-maker-stripe/view.php:144
3209
  msgid "Year"
3210
+ msgstr "Anno"
3211
 
3212
  #~ msgid "Hey! How's It Going?"
3213
  #~ msgstr "Hey! Come va?"
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === Form Maker by WD - user-friendly drag & drop Form Builder plugin ===
2
- Contributors: webdorado,wdsupport,formmakersupport
3
  Tags: form, form builder, contact form, custom form, feedback, contact, contact forms, captcha, email, form manager, forms, survey
4
  Requires at least: 3.4
5
  Tested up to: 4.9
6
- Stable tag: 1.12.10
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -11,6 +11,15 @@ Form Maker is a user-friendly form builder plugin. This form builder lets you cr
11
 
12
  == Description ==
13
 
 
 
 
 
 
 
 
 
 
14
  https://www.youtube.com/watch?v=tN3_c6MhqFk
15
 
16
  Form Maker is a FREE and user-friendly plugin to create highly customizable and responsive forms in a few minutes with simple drag and drop interface.
@@ -44,7 +53,7 @@ This free form builder plugin with its multi-functional features is one of the m
44
 
45
  Form Maker plugin is the best choice both for WordPress beginners and advanced users. It provides exceptional and clean visual form editor toolbox, which does not require any programming skills to create a contact form.
46
 
47
- This form creator is developed to build unlimited number of simple forms, surveys and questionnaires, registrations, online applications, and more. Make your responsive web forms using the following field types:
48
 
49
  * Text Input (Name, Email, Phone fields and more)
50
  * Multiple and Single Choice
@@ -289,6 +298,25 @@ MailChimp form add-on of Form Maker lets you build up a customer database on you
289
 
290
  == Changelog ==
291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  = 1.12.10 =
293
  * Fixed: a minor bug.
294
 
1
  === Form Maker by WD - user-friendly drag & drop Form Builder plugin ===
2
+ Contributors: webdorado,10web,wdsupport,formmakersupport
3
  Tags: form, form builder, contact form, custom form, feedback, contact, contact forms, captcha, email, form manager, forms, survey
4
  Requires at least: 3.4
5
  Tested up to: 4.9
6
+ Stable tag: 1.12.11
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
11
 
12
  == Description ==
13
 
14
+ Special offer:
15
+
16
+ [Try Form Maker premium and 60 other plugins for free at 10Web](https://10web.io/plugins/wordpress-form-maker/)
17
+
18
+ 10Web is a new platform from WebDorado
19
+
20
+
21
+
22
+
23
  https://www.youtube.com/watch?v=tN3_c6MhqFk
24
 
25
  Form Maker is a FREE and user-friendly plugin to create highly customizable and responsive forms in a few minutes with simple drag and drop interface.
53
 
54
  Form Maker plugin is the best choice both for WordPress beginners and advanced users. It provides exceptional and clean visual form editor toolbox, which does not require any programming skills to create a contact form.
55
 
56
+ This form creator is developed to build unlimited number of simple forms, surveys and questionnaires, registrations, online applications, and more. Each form is limited up to 7 fields. Make your responsive web forms using the following field types:
57
 
58
  * Text Input (Name, Email, Phone fields and more)
59
  * Multiple and Single Choice
298
 
299
  == Changelog ==
300
 
301
+ = 1.12.11 =
302
+ * Fixed: Preview does not show with widget on page with some Wordpress themes.
303
+ * Fixed: Do not check conditionally hidden required fields.
304
+ * Fixed: Not embedded forms do not show on form preview page.
305
+ * Fixed: Post/page search on display options pages.
306
+ * Fixed: Tooltip in "Add query" popup.
307
+ * Fixed: Insert demo forms only on activate.
308
+ * Changed: Edit country list popup design.
309
+ * Fixed: Emailing fields with apostrophes in label.
310
+ * Fixed: Popup forms background.
311
+ * Changed: Czech translation.
312
+ * Changed: Italian translation.
313
+ * Fixed: Matrix field in email.
314
+ * Changed: Disable widget in preview page.
315
+ * Fixed: Widget functionality with Contact Form Maker.
316
+ * Fixed: User manual links.
317
+ * Fixed: Default values for multiple and single choices.
318
+ * Fixed: Add new theme.
319
+
320
  = 1.12.10 =
321
  * Fixed: a minor bug.
322