Version Description
- Fixed: Bug on Popup forms on mobile.
- Fixed: "Custom HTML" field label in conditional fields list.
- Fixed: Trim data inserted by MySQL mapping.
- Changed: Prevent default on form enter.
Download this release
Release Info
Developer | webdorado |
Plugin | Contact Form by WD – responsive drag & drop contact form builder tool |
Version | 1.12.13 |
Comparing to | |
See all releases |
Code changes from version 1.12.10 to 1.12.13
- admin/controllers/Manage_fm.php +1 -1
- admin/controllers/Themes_fm.php +35 -97
- admin/controllers/Widget.php +22 -2
- admin/models/Manage_fm.php +21 -18
- admin/models/Themes_fm.php +8 -17
- admin/models/Uninstall_fm.php +0 -1
- admin/models/Widget.php +5 -1
- admin/views/Blocked_ips_fm.php +1 -1
- admin/views/FMEditCountryinPopup.php +49 -70
- admin/views/FMShortocde.php +1 -1
- admin/views/FMSqlMapping.php +316 -33
- admin/views/Licensing_fm.php +1 -1
- admin/views/Manage_fm.php +10 -11
- admin/views/Options_fm.php +1 -1
- admin/views/Submissions_fm.php +3 -3
- admin/views/Themes_fm.php +4 -4
- admin/views/Uninstall_fm.php +1 -1
- admin/views/Widget.php +1 -1
- contact-form-maker.php +83 -68
- css/form_maker_frontend.css +10 -5
- css/form_maker_tables.css +15 -10
- form_maker_insert.php +1 -1
- form_maker_update.php +4 -1
- framework/WDW_FM_Library.php +4 -2
- frontend/controllers/form_maker.php +1 -1
- frontend/models/form_maker.php +30 -22
- js/add_field.js +9 -16
- js/form_maker_manage.js +1 -1
- js/form_maker_manage_edit.js +4 -3
- js/form_maker_submissions.js +56 -0
- js/main_div_front_end.js +8 -9
- languages/form_maker-cs_CZ.mo +0 -0
- languages/form_maker-cs_CZ.po +77 -77
- languages/form_maker-it_IT.po +359 -320
- readme.txt +25 -2
admin/controllers/Manage_fm.php
CHANGED
@@ -407,7 +407,7 @@ class FMControllerManage_fmc {
|
|
407 |
$params['prev_backup_id'] = $this->model->get_prev_backup_id($params['row']->backup_id, $params['row']->id);
|
408 |
}
|
409 |
}
|
410 |
-
|
411 |
$labels = array();
|
412 |
$label_id = array();
|
413 |
$label_order_original = array();
|
407 |
$params['prev_backup_id'] = $this->model->get_prev_backup_id($params['row']->backup_id, $params['row']->id);
|
408 |
}
|
409 |
}
|
410 |
+
|
411 |
$labels = array();
|
412 |
$label_id = array();
|
413 |
$label_order_original = array();
|
admin/controllers/Themes_fm.php
CHANGED
@@ -208,11 +208,12 @@ class FMControllerThemes_fmc {
|
|
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 |
WDW_FMC_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_fmc {
|
|
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_fmc {
|
|
2923 |
return $all_params;
|
2924 |
}
|
2925 |
|
2926 |
-
|
2927 |
-
|
2928 |
-
|
2929 |
-
$page = WDW_FMC_Library::get('page');
|
2930 |
-
WDW_FMC_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 |
-
$
|
2939 |
-
$id = (int) $this->model->get_max_id();
|
2940 |
-
$current_id = (int) WDW_FMC_Library::get('current_id', $id);
|
2941 |
$page = WDW_FMC_Library::get('page');
|
2942 |
$active_tab = WDW_FMC_Library::get('active_tab');
|
2943 |
$pagination = WDW_FMC_Library::get('pagination-type');
|
@@ -2945,55 +2937,19 @@ class FMControllerThemes_fmc {
|
|
2945 |
WDW_FMC_Library::fm_redirect(add_query_arg(array(
|
2946 |
'page' => $page,
|
2947 |
'task' => 'edit',
|
2948 |
-
'current_id' => $
|
2949 |
-
'message' => $
|
2950 |
'active_tab' => $active_tab,
|
2951 |
'pagination' => $pagination,
|
2952 |
'form_type' => $form_type,
|
2953 |
), admin_url('admin.php')));
|
2954 |
}
|
2955 |
|
2956 |
-
|
2957 |
-
|
2958 |
-
|
2959 |
-
|
2960 |
-
|
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_FMC_Library::get('page');
|
2980 |
-
WDW_FMC_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_FMC_Library::get('page');
|
2990 |
-
WDW_FMC_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_FMC_Library::get('current_id', 0);
|
@@ -3023,52 +2979,34 @@ class FMControllerThemes_fmc {
|
|
3023 |
$model_frontend = new FMModelForm_maker();
|
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 |
-
|
3031 |
}
|
|
|
|
|
3032 |
}
|
3033 |
|
3034 |
-
|
3035 |
-
|
3036 |
-
|
3037 |
-
|
3038 |
-
|
3039 |
-
|
3040 |
-
|
3041 |
-
|
3042 |
-
'version' => $version,
|
3043 |
-
'default' => 0,
|
3044 |
-
));
|
3045 |
if ( $save !== FALSE ) {
|
3046 |
-
|
3047 |
}
|
3048 |
else {
|
3049 |
-
|
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 ) {
|
3062 |
-
$message = 7;
|
3063 |
-
}
|
3064 |
-
else {
|
3065 |
-
$message = 2;
|
3066 |
-
}
|
3067 |
-
$page = WDW_FMC_Library::get('page');
|
3068 |
-
WDW_FMC_Library::fm_redirect(add_query_arg(array(
|
3069 |
-
'page' => $page,
|
3070 |
-
'task' => 'display',
|
3071 |
-
'message' => $message,
|
3072 |
-
), admin_url('admin.php')));
|
3073 |
-
}
|
3074 |
}
|
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_FMC_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_FMC_Library::get('page');
|
2934 |
$active_tab = WDW_FMC_Library::get('active_tab');
|
2935 |
$pagination = WDW_FMC_Library::get('pagination-type');
|
2937 |
WDW_FMC_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_FMC_Library::get('current_id', 0);
|
2979 |
$model_frontend = new FMModelForm_maker();
|
2980 |
$form_theme = json_decode(html_entity_decode($params), TRUE);
|
2981 |
$model_frontend->create_css($id, $form_theme, $version == 1, TRUE);
|
2982 |
+
$msg = 1;
|
|
|
2983 |
}
|
2984 |
else {
|
2985 |
+
$msg = 2;
|
2986 |
}
|
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 ) {
|
3000 |
+
$message = 7;
|
3001 |
}
|
3002 |
else {
|
3003 |
+
$message = 2;
|
3004 |
}
|
3005 |
+
$page = WDW_FMC_Library::get('page');
|
3006 |
+
WDW_FMC_Library::fm_redirect(add_query_arg(array(
|
3007 |
+
'page' => $page,
|
3008 |
+
'task' => 'display',
|
3009 |
+
'message' => $message,
|
3010 |
+
), admin_url('admin.php')));
|
3011 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3012 |
}
|
admin/controllers/Widget.php
CHANGED
@@ -23,8 +23,28 @@ class FMControllerWidget_fmc extends WP_Widget {
|
|
23 |
}
|
24 |
|
25 |
public function widget( $args, $instance ) {
|
26 |
-
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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' . WDCFM()->plugin_postfix ) {
|
27 |
+
return;
|
28 |
+
}
|
29 |
+
$contact_form_forms = explode(',', get_option('contact_form_forms'));
|
30 |
+
if ( !WDCFM()->is_free || !in_array($instance['form_id'], $contact_form_forms) ) {
|
31 |
+
if ( function_exists('WDFM') ) {
|
32 |
+
require_once(WDFM()->plugin_dir . '/frontend/controllers/form_maker.php');
|
33 |
+
$controller_class = 'FMControllerForm_maker';
|
34 |
+
}
|
35 |
+
else {
|
36 |
+
return;
|
37 |
+
}
|
38 |
+
}
|
39 |
+
else {
|
40 |
+
if ( function_exists('WDCFM') ) {
|
41 |
+
require_once(WDCFM()->plugin_dir . '/frontend/controllers/form_maker.php');
|
42 |
+
$controller_class = 'FMControllerForm_maker_fmc';
|
43 |
+
}
|
44 |
+
else {
|
45 |
+
return;
|
46 |
+
}
|
47 |
+
}
|
48 |
$controller = new $controller_class();
|
49 |
$execute = $controller->execute($instance['form_id']);
|
50 |
$this->view->widget($args, $instance, $execute);
|
admin/models/Manage_fm.php
CHANGED
@@ -20,17 +20,20 @@ class FMModelManage_fmc {
|
|
20 |
$limit = $page ? ($page - 1) * $items_per_page : 0;
|
21 |
|
22 |
global $wpdb;
|
23 |
-
$query = "SELECT t1
|
24 |
-
$query .= "LEFT JOIN " . $wpdb->prefix . "formmaker_submits as t2 ";
|
25 |
-
$query .= "on t1.id = t2.form_id ";
|
26 |
$query .= (!WDCFM()->is_free ? '' : 'WHERE t1.id' . (WDCFM()->is_free == 1 ? ' NOT ' : ' ') . 'IN (' . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ')');
|
27 |
if ( $search ) {
|
28 |
$query .= (!WDCFM()->is_free ? 'WHERE' : ' AND') . ' t1.title LIKE "%' . $search . '%"';
|
29 |
}
|
30 |
-
$query .= " GROUP BY t1.id";
|
31 |
$query .= ' ORDER BY t1.`' . $orderby . '` ' . $order;
|
32 |
$query .= " LIMIT " . $limit . "," . $items_per_page;
|
33 |
$rows = $wpdb->get_results($query);
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
return $rows;
|
36 |
}
|
@@ -331,7 +334,7 @@ class FMModelManage_fmc {
|
|
331 |
$param[$params_name] = $temp[0];
|
332 |
$temp = $temp[1];
|
333 |
}
|
334 |
-
$rep = '<div id="wdform_field' . $id . '" type="type_editor" class="wdform_field" >' . $param['w_editor'] . '</div>' . $arrows . '<div id="' . $id . '_element_labelform_id_temp" style="color: red;"
|
335 |
break;
|
336 |
}
|
337 |
case 'type_send_copy': {
|
@@ -3776,15 +3779,15 @@ class FMModelManage_fmc {
|
|
3776 |
*/
|
3777 |
public function get_emailverification_post_id() {
|
3778 |
global $wpdb;
|
3779 |
-
|
3780 |
-
|
3781 |
-
if (
|
3782 |
$id = $row[0]->ID;
|
3783 |
-
|
3784 |
$this->update_emailverification_id($id);
|
3785 |
}
|
3786 |
-
|
3787 |
-
|
3788 |
else {
|
3789 |
$post_params = array(
|
3790 |
'post_author' => 1,
|
@@ -3798,11 +3801,11 @@ class FMModelManage_fmc {
|
|
3798 |
'menu_order' => 0,
|
3799 |
'import_id' => 0,
|
3800 |
);
|
3801 |
-
|
3802 |
-
|
3803 |
-
$this->update_emailverification_id($
|
3804 |
|
3805 |
-
return $
|
3806 |
}
|
3807 |
}
|
3808 |
}
|
@@ -3832,11 +3835,11 @@ class FMModelManage_fmc {
|
|
3832 |
'import_id' => 0,
|
3833 |
);
|
3834 |
// Create new post by fmformpreview type.
|
3835 |
-
|
|
|
3836 |
flush_rewrite_rules();
|
3837 |
-
global $wpdb;
|
3838 |
|
3839 |
-
return get_post_permalink($
|
3840 |
}
|
3841 |
else {
|
3842 |
return "";
|
20 |
$limit = $page ? ($page - 1) * $items_per_page : 0;
|
21 |
|
22 |
global $wpdb;
|
23 |
+
$query = "SELECT t1.* FROM " . $wpdb->prefix . "formmaker as t1 ";
|
|
|
|
|
24 |
$query .= (!WDCFM()->is_free ? '' : 'WHERE t1.id' . (WDCFM()->is_free == 1 ? ' NOT ' : ' ') . 'IN (' . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ')');
|
25 |
if ( $search ) {
|
26 |
$query .= (!WDCFM()->is_free ? 'WHERE' : ' AND') . ' t1.title LIKE "%' . $search . '%"';
|
27 |
}
|
|
|
28 |
$query .= ' ORDER BY t1.`' . $orderby . '` ' . $order;
|
29 |
$query .= " LIMIT " . $limit . "," . $items_per_page;
|
30 |
$rows = $wpdb->get_results($query);
|
31 |
+
if ( !empty($rows) ) {
|
32 |
+
foreach ( $rows as $row ) {
|
33 |
+
$query = "SELECT count(DISTINCT group_id) FROM " . $wpdb->prefix . "formmaker_submits WHERE form_id=" . (int) $row->id . "";
|
34 |
+
$row->submission_count = $wpdb->get_var($query);
|
35 |
+
}
|
36 |
+
}
|
37 |
|
38 |
return $rows;
|
39 |
}
|
334 |
$param[$params_name] = $temp[0];
|
335 |
$temp = $temp[1];
|
336 |
}
|
337 |
+
$rep = '<div id="wdform_field' . $id . '" type="type_editor" class="wdform_field" >' . $param['w_editor'] . '</div>' . $arrows . '<div id="' . $id . '_element_labelform_id_temp" style="color: red;">' . __('Custom HTML', WDCFM()->prefix) . $id . '</div>';
|
338 |
break;
|
339 |
}
|
340 |
case 'type_send_copy': {
|
3779 |
*/
|
3780 |
public function get_emailverification_post_id() {
|
3781 |
global $wpdb;
|
3782 |
+
$post_type = 'fmemailverification';
|
3783 |
+
$row = get_posts(array('post_type' => $post_type));
|
3784 |
+
if (!empty($row[0])) {
|
3785 |
$id = $row[0]->ID;
|
3786 |
+
if (!$this->check_mailverification_id_posts_vs_fm($id)) {
|
3787 |
$this->update_emailverification_id($id);
|
3788 |
}
|
3789 |
+
return $id;
|
3790 |
+
}
|
3791 |
else {
|
3792 |
$post_params = array(
|
3793 |
'post_author' => 1,
|
3801 |
'menu_order' => 0,
|
3802 |
'import_id' => 0,
|
3803 |
);
|
3804 |
+
$insert_id = wp_insert_post($post_params);
|
3805 |
+
if (!is_wp_error($insert_id)) { // create new post by fmemailverification type
|
3806 |
+
$this->update_emailverification_id($insert_id);
|
3807 |
|
3808 |
+
return $insert_id;
|
3809 |
}
|
3810 |
}
|
3811 |
}
|
3835 |
'import_id' => 0,
|
3836 |
);
|
3837 |
// Create new post by fmformpreview type.
|
3838 |
+
$insert_id = wp_insert_post($post_params);
|
3839 |
+
if ( !is_wp_error($insert_id) ) {
|
3840 |
flush_rewrite_rules();
|
|
|
3841 |
|
3842 |
+
return get_post_permalink($insert_id);
|
3843 |
}
|
3844 |
else {
|
3845 |
return "";
|
admin/models/Themes_fm.php
CHANGED
@@ -53,12 +53,14 @@ class FMModelThemes_fmc {
|
|
53 |
$row->default = 0;
|
54 |
$row->version = 2;
|
55 |
}
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
|
|
|
|
62 |
}
|
63 |
|
64 |
return $row;
|
@@ -154,17 +156,6 @@ class FMModelThemes_fmc {
|
|
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_fmc {
|
|
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_fmc {
|
7 |
public function get_gallery_rows_data() {
|
8 |
global $wpdb;
|
9 |
-
$query =
|
|
|
|
|
|
|
|
|
10 |
$rows = $wpdb->get_results($query);
|
11 |
|
12 |
return $rows;
|
6 |
class FMModelWidget_fmc {
|
7 |
public function get_gallery_rows_data() {
|
8 |
global $wpdb;
|
9 |
+
$query = 'SELECT * FROM ' . $wpdb->prefix . 'formmaker';
|
10 |
+
if ( WDCFM()->is_free && !function_exists('WDFM') ) {
|
11 |
+
$query .= (!WDCFM()->is_free ? '' : ' WHERE id' . (WDCFM()->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/Blocked_ips_fm.php
CHANGED
@@ -13,7 +13,7 @@ class FMViewBlocked_ips_fm extends FMAdminView_fmc {
|
|
13 |
wp_enqueue_style('fm-layout');
|
14 |
|
15 |
wp_enqueue_script('jquery');
|
16 |
-
wp_enqueue_script('
|
17 |
}
|
18 |
|
19 |
/**
|
13 |
wp_enqueue_style('fm-layout');
|
14 |
|
15 |
wp_enqueue_script('jquery');
|
16 |
+
wp_enqueue_script('fmc-admin');
|
17 |
}
|
18 |
|
19 |
/**
|
admin/views/FMEditCountryinPopup.php
CHANGED
@@ -17,102 +17,86 @@ class FMViewFromeditcountryinpopup_fmc {
|
|
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
|
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 |
-
|
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="
|
56 |
-
Select all
|
57 |
-
<span></span>
|
58 |
</button>
|
59 |
-
<button class="
|
60 |
-
Remove all
|
61 |
-
<span></span>
|
62 |
</button>
|
63 |
</div>
|
64 |
<div class="save-cancel">
|
65 |
-
<button class="
|
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 |
-
|
74 |
-
countries = '<?php echo addslashes(json_encode(WDW_FMC_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 |
-
|
79 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
var ch = document.createElement('input');
|
81 |
ch.setAttribute("type", "checkbox");
|
82 |
-
|
83 |
-
|
84 |
-
|
|
|
|
|
85 |
var p = document.createElement('span');
|
86 |
-
p.style.cssText = "color
|
87 |
-
p.innerHTML =
|
88 |
var li = document.createElement('li');
|
89 |
li.style.cssText = "margin:3px; vertical-align:middle";
|
90 |
-
li.id =
|
|
|
91 |
li.appendChild(ch);
|
92 |
li.appendChild(p);
|
93 |
document.getElementById('countries_list').appendChild(li);
|
|
|
94 |
}
|
95 |
-
|
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 |
});
|
@@ -142,15 +126,10 @@ class FMViewFromeditcountryinpopup_fmc {
|
|
142 |
}
|
143 |
window.parent.tb_remove();
|
144 |
}
|
145 |
-
function
|
146 |
-
|
147 |
-
|
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
|
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 |
+
margin: 0;
|
40 |
}
|
|
|
41 |
.country-list > div {
|
42 |
display: inline-block;
|
43 |
}
|
|
|
44 |
.save-cancel {
|
45 |
float: right;
|
46 |
}
|
47 |
+
body {
|
48 |
+
overflow-x: unset;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
}
|
50 |
</style>
|
51 |
+
<div class="country-list wp-core-ui">
|
52 |
<div class="select-remove">
|
53 |
+
<button class="button" onclick="toggleCheck(true); return false;">
|
54 |
+
<?php _e('Select all', WDCFM()->prefix); ?>
|
|
|
55 |
</button>
|
56 |
+
<button class="button" onclick="toggleCheck(false); return false;">
|
57 |
+
<?php _e('Remove all', WDCFM()->prefix); ?>
|
|
|
58 |
</button>
|
59 |
</div>
|
60 |
<div class="save-cancel">
|
61 |
+
<button class="button button-primary" onclick="save_list(); return false;">
|
62 |
+
<?php _e('Save', WDCFM()->prefix); ?>
|
|
|
63 |
</button>
|
64 |
</div>
|
65 |
+
<ul id="countries_list" class="ui-sortable" style="list-style: none; padding: 0px;"></ul>
|
66 |
</div>
|
67 |
<script>
|
68 |
+
var countries = '<?php echo addslashes(json_encode(WDW_FMC_Library::get_countries())); ?>';
|
|
|
69 |
countries = JSON.parse(countries);
|
70 |
+
var select_ = window.parent.document.getElementById('<?php echo $field_id ?>_elementform_id_temp');
|
71 |
+
var n = select_.childNodes.length;
|
72 |
+
var saved_list = []
|
73 |
+
for ( var i = 0; i < n; i++ ) {
|
74 |
+
saved_list.push(select_.options[i].value);
|
75 |
+
}
|
76 |
+
var j = 0;
|
77 |
+
for ( var i in countries ) {
|
78 |
+
var drag = document.createElement('div');
|
79 |
+
drag.setAttribute("class", "wd-drag handle dashicons dashicons-move");
|
80 |
var ch = document.createElement('input');
|
81 |
ch.setAttribute("type", "checkbox");
|
82 |
+
if ( isValueInArray(saved_list, countries[i]) ) {
|
83 |
+
ch.setAttribute("checked", "checked");
|
84 |
+
}
|
85 |
+
ch.value = i;
|
86 |
+
ch.id = j + "ch";
|
87 |
var p = document.createElement('span');
|
88 |
+
p.style.cssText = "color: #000000; font-size: 13px; cursor: move; vertical-align: middle;";
|
89 |
+
p.innerHTML = countries[i];
|
90 |
var li = document.createElement('li');
|
91 |
li.style.cssText = "margin:3px; vertical-align:middle";
|
92 |
+
li.id = j;
|
93 |
+
li.appendChild(drag);
|
94 |
li.appendChild(ch);
|
95 |
li.appendChild(p);
|
96 |
document.getElementById('countries_list').appendChild(li);
|
97 |
+
j++;
|
98 |
}
|
99 |
+
jQuery(document).ready(function () {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
jQuery("#countries_list").sortable();
|
101 |
jQuery("#countries_list").disableSelection();
|
102 |
});
|
126 |
}
|
127 |
window.parent.tb_remove();
|
128 |
}
|
129 |
+
function toggleCheck(toggle) {
|
130 |
+
jQuery(".ui-sortable-handle input").each(function () {
|
131 |
+
jQuery(this).prop("checked", toggle);
|
132 |
+
});
|
|
|
|
|
|
|
|
|
|
|
133 |
}
|
134 |
</script>
|
135 |
<?php
|
admin/views/FMShortocde.php
CHANGED
@@ -8,7 +8,7 @@ class FMViewFMShortocde_fmc {
|
|
8 |
* FMViewFMShortocde constructor.
|
9 |
*/
|
10 |
public function __construct() {
|
11 |
-
wp_print_scripts('
|
12 |
|
13 |
wp_print_styles('wp-admin');
|
14 |
wp_print_styles('buttons');
|
8 |
* FMViewFMShortocde constructor.
|
9 |
*/
|
10 |
public function __construct() {
|
11 |
+
wp_print_scripts('fmc-shortcode' . WDCFM()->menu_postfix);
|
12 |
|
13 |
wp_print_styles('wp-admin');
|
14 |
wp_print_styles('buttons');
|
admin/views/FMSqlMapping.php
CHANGED
@@ -6,6 +6,7 @@ class FMViewFormMakerSQLMapping_fmc {
|
|
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_fmc {
|
|
84 |
$cond .= '<select id="op_condid"><option value="=" selected="selected">=</option><option value="!=">!=</option><option value=">">></option><option value="<"><</option><option value=">=">>=</option><option value="<="><=</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="' . WDCFM()->plugin_dir . '/images/delete.png?ver=' . WDCFM()->plugin_version . '" onclick="delete_cond("condid")" 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_fmc {
|
|
311 |
}
|
312 |
jQuery('#query_txt').val(query.replace("SingleQuot", "'"));
|
313 |
}
|
314 |
-
|
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_fmc {
|
|
344 |
}
|
345 |
</script>
|
346 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
.c1 {
|
348 |
padding: 0 10px;
|
349 |
}
|
@@ -681,18 +808,32 @@ class FMViewFormMakerSQLMapping_fmc {
|
|
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 =
|
685 |
$title .= "<ul style='padding-left: 17px;'>";
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
691 |
$title .= "</ul>";
|
692 |
?>
|
693 |
<div>
|
694 |
-
<label
|
695 |
-
<
|
|
|
|
|
|
|
|
|
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_fmc {
|
|
1113 |
$cond .= '<select id="op_condid"><option value="=" selected="selected">=</option><option value="!=">!=</option><option value=">">></option><option value="<"><</option><option value=">=">>=</option><option value="<="><=</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="' . WDCFM()->plugin_url . '/images/delete.png?ver=' . WDCFM()->plugin_version . '" onclick="delete_cond("condid")" 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_fmc {
|
|
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_fmc {
|
|
1363 |
}
|
1364 |
</script>
|
1365 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1366 |
.cols div:nth-child(even) {
|
1367 |
background: #FFF;
|
1368 |
}
|
@@ -1493,18 +1759,35 @@ class FMViewFormMakerSQLMapping_fmc {
|
|
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 =
|
1498 |
$title .= "<ul style='padding-left: 17px;'>";
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1504 |
$title .= "</ul>";
|
1505 |
?>
|
1506 |
-
<div
|
1507 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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=">">></option><option value="<"><</option><option value=">=">>=</option><option value="<="><=</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="' . WDCFM()->plugin_dir . '/images/delete.png?ver=' . WDCFM()->plugin_version . '" onclick="delete_cond("condid")" 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', WDCFM()->prefix) . " - " . $col->Type . "</li>";
|
815 |
+
}
|
816 |
+
if ( $col->Null ) {
|
817 |
+
$title .= "<li>" . __('Null', WDCFM()->prefix) . " - " . $col->Null . "</li>";
|
818 |
+
}
|
819 |
+
if ( $col->Key ) {
|
820 |
+
$title .= "<li>" . __('Key', WDCFM()->prefix) . " - " . $col->Key . "</li>";
|
821 |
+
}
|
822 |
+
if ( $col->Default ) {
|
823 |
+
$title .= "<li>" . __('Default', WDCFM()->prefix) . " - " . $col->Default . "</li>";
|
824 |
+
}
|
825 |
+
if ( $col->Extra ) {
|
826 |
+
$title .= "<li>" . __('Extra', WDCFM()->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=">">></option><option value="<"><</option><option value=">=">>=</option><option value="<="><=</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="' . WDCFM()->plugin_url . '/images/delete.png?ver=' . WDCFM()->plugin_version . '" onclick="delete_cond("condid")" 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', WDCFM()->prefix) . " - " . $col->Type . "</li>";
|
1767 |
+
}
|
1768 |
+
if ( $col->Null ) {
|
1769 |
+
$title .= "<li>" . __('Null', WDCFM()->prefix) . " - " . $col->Null . "</li>";
|
1770 |
+
}
|
1771 |
+
if ( $col->Key ) {
|
1772 |
+
$title .= "<li>" . __('Key', WDCFM()->prefix) . " - " . $col->Key . "</li>";
|
1773 |
+
}
|
1774 |
+
if ( $col->Default ) {
|
1775 |
+
$title .= "<li>" . __('Default', WDCFM()->prefix) . " - " . $col->Default . "</li>";
|
1776 |
+
}
|
1777 |
+
if ( $col->Extra ) {
|
1778 |
+
$title .= "<li>" . __('Extra', WDCFM()->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/Licensing_fm.php
CHANGED
@@ -11,7 +11,7 @@ class FMViewLicensing_fmc {
|
|
11 |
wp_enqueue_style('fm-license' . WDCFM()->menu_postfix);
|
12 |
wp_enqueue_style('fm-style');
|
13 |
wp_enqueue_style('fm-tables');
|
14 |
-
wp_enqueue_script('
|
15 |
}
|
16 |
|
17 |
public function display() {
|
11 |
wp_enqueue_style('fm-license' . WDCFM()->menu_postfix);
|
12 |
wp_enqueue_style('fm-style');
|
13 |
wp_enqueue_style('fm-tables');
|
14 |
+
wp_enqueue_script('fmc-admin');
|
15 |
}
|
16 |
|
17 |
public function display() {
|
admin/views/Manage_fm.php
CHANGED
@@ -12,7 +12,7 @@ class FMViewManage_fmc extends FMAdminView_fmc {
|
|
12 |
|
13 |
wp_enqueue_script('jquery');
|
14 |
wp_enqueue_script('jquery-ui-sortable');
|
15 |
-
wp_enqueue_script('
|
16 |
wp_enqueue_script('fm-manage');
|
17 |
/*$inline_styles = '#fm_admin_container .wdform_page .wdform_section .wdform_column.ui-sortable:empty:last-child:after {
|
18 |
content: "' . __('Drop a field here to create a column.', WDCFM()->prefix) . '";
|
@@ -99,8 +99,7 @@ class FMViewManage_fmc extends FMAdminView_fmc {
|
|
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 |
-
|
103 |
-
$preview_url = add_query_arg( array('form_id' => $row_data->id), $form_preview_link );
|
104 |
?>
|
105 |
<tr id="tr_<?php echo $row_data->id; ?>" <?php echo $alternate; ?>>
|
106 |
<th class="check-column">
|
@@ -234,7 +233,7 @@ class FMViewManage_fmc extends FMAdminView_fmc {
|
|
234 |
wp_enqueue_script('google-maps');
|
235 |
wp_enqueue_script('fm-gmap_form');
|
236 |
wp_enqueue_script('fm-phone_field');
|
237 |
-
wp_enqueue_script('
|
238 |
wp_enqueue_script('fm-codemirror');
|
239 |
wp_enqueue_script('fm-formatting');
|
240 |
wp_enqueue_script('fm-clike');
|
@@ -245,7 +244,7 @@ class FMViewManage_fmc extends FMAdminView_fmc {
|
|
245 |
wp_enqueue_script('fm-htmlmixed');
|
246 |
wp_enqueue_script('fm-colorpicker');
|
247 |
wp_enqueue_script('fm-manage-edit');
|
248 |
-
wp_enqueue_script('
|
249 |
|
250 |
$id = $params['id'];
|
251 |
$row = $params['row'];
|
@@ -273,10 +272,10 @@ class FMViewManage_fmc extends FMAdminView_fmc {
|
|
273 |
is_addon_calculator_active = <?php echo (defined('WD_FM_CALCULATOR') && is_plugin_active(constant('WD_FM_CALCULATOR'))) ? 1 : 0; ?>;
|
274 |
is_addon_stripe_active = <?php echo $stripe_addon['enable'] ? 1 : 0; ?>;
|
275 |
is_stripe_enabled = <?php echo ($stripe_addon['enable'] && $stripe_addon['stripe_enable'] ? 1 : 0); ?>;
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
form_view = 1;
|
281 |
form_view_count = 1;
|
282 |
form_view_max = 1;
|
@@ -334,7 +333,7 @@ class FMViewManage_fmc extends FMAdminView_fmc {
|
|
334 |
}
|
335 |
?>
|
336 |
</button>
|
337 |
-
<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('
|
338 |
</div>
|
339 |
</div>
|
340 |
<div class="fm-clear"></div>
|
@@ -673,7 +672,7 @@ class FMViewManage_fmc extends FMAdminView_fmc {
|
|
673 |
wp_enqueue_script('fm-form-options');
|
674 |
wp_enqueue_script('fm-gmap_form');
|
675 |
wp_enqueue_script('fm-phone_field');
|
676 |
-
wp_enqueue_script('
|
677 |
wp_enqueue_script('fm-codemirror');
|
678 |
wp_enqueue_script('fm-formatting');
|
679 |
wp_enqueue_script('fm-clike');
|
12 |
|
13 |
wp_enqueue_script('jquery');
|
14 |
wp_enqueue_script('jquery-ui-sortable');
|
15 |
+
wp_enqueue_script('fmc-admin');
|
16 |
wp_enqueue_script('fm-manage');
|
17 |
/*$inline_styles = '#fm_admin_container .wdform_page .wdform_section .wdform_column.ui-sortable:empty:last-child:after {
|
18 |
content: "' . __('Drop a field here to create a column.', WDCFM()->prefix) . '";
|
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">
|
233 |
wp_enqueue_script('google-maps');
|
234 |
wp_enqueue_script('fm-gmap_form');
|
235 |
wp_enqueue_script('fm-phone_field');
|
236 |
+
wp_enqueue_script('fmc-formmaker_div');
|
237 |
wp_enqueue_script('fm-codemirror');
|
238 |
wp_enqueue_script('fm-formatting');
|
239 |
wp_enqueue_script('fm-clike');
|
244 |
wp_enqueue_script('fm-htmlmixed');
|
245 |
wp_enqueue_script('fm-colorpicker');
|
246 |
wp_enqueue_script('fm-manage-edit');
|
247 |
+
wp_enqueue_script('fmc-add-fields');
|
248 |
|
249 |
$id = $params['id'];
|
250 |
$row = $params['row'];
|
272 |
is_addon_calculator_active = <?php echo (defined('WD_FM_CALCULATOR') && is_plugin_active(constant('WD_FM_CALCULATOR'))) ? 1 : 0; ?>;
|
273 |
is_addon_stripe_active = <?php echo $stripe_addon['enable'] ? 1 : 0; ?>;
|
274 |
is_stripe_enabled = <?php echo ($stripe_addon['enable'] && $stripe_addon['stripe_enable'] ? 1 : 0); ?>;
|
275 |
+
labels_id_array = [<?php echo $labels['id']; ?>];
|
276 |
+
labels_label_array = [<?php echo $labels['label']; ?>];
|
277 |
+
labels_type_array = [<?php echo $labels['type']; ?>];
|
278 |
+
|
279 |
form_view = 1;
|
280 |
form_view_count = 1;
|
281 |
form_view_max = 1;
|
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', WDCFM()->prefix); ?></button>
|
337 |
</div>
|
338 |
</div>
|
339 |
<div class="fm-clear"></div>
|
672 |
wp_enqueue_script('fm-form-options');
|
673 |
wp_enqueue_script('fm-gmap_form');
|
674 |
wp_enqueue_script('fm-phone_field');
|
675 |
+
wp_enqueue_script('fmc-formmaker_div');
|
676 |
wp_enqueue_script('fm-codemirror');
|
677 |
wp_enqueue_script('fm-formatting');
|
678 |
wp_enqueue_script('fm-clike');
|
admin/views/Options_fm.php
CHANGED
@@ -11,7 +11,7 @@ class FMViewOptions_fmc extends FMAdminView_fmc {
|
|
11 |
wp_enqueue_style('fm-tables');
|
12 |
|
13 |
wp_enqueue_script('jquery');
|
14 |
-
wp_enqueue_script('
|
15 |
}
|
16 |
|
17 |
/**
|
11 |
wp_enqueue_style('fm-tables');
|
12 |
|
13 |
wp_enqueue_script('jquery');
|
14 |
+
wp_enqueue_script('fmc-admin');
|
15 |
}
|
16 |
|
17 |
/**
|
admin/views/Submissions_fm.php
CHANGED
@@ -24,7 +24,7 @@ class FMViewSubmissions_fmc extends FMAdminView_fmc {
|
|
24 |
wp_enqueue_script('jquery-ui-core');
|
25 |
wp_enqueue_script('jquery-ui-datepicker');
|
26 |
wp_add_inline_script('jquery-ui-datepicker', WDW_FMC_Library::localize_ui_datepicker());
|
27 |
-
wp_enqueue_script('
|
28 |
wp_enqueue_script('fm-manage');
|
29 |
wp_enqueue_script('fm-submissions');
|
30 |
wp_enqueue_script('jquery.fancybox.pack');
|
@@ -845,7 +845,7 @@ class FMViewSubmissions_fmc extends FMAdminView_fmc {
|
|
845 |
url: "<?php echo add_query_arg(array(
|
846 |
'form_id' => $form_id,
|
847 |
'send_header' => 0,
|
848 |
-
), admin_url('admin-ajax.php')); ?>&action=generete_" + type + "
|
849 |
data: {search_labels: '<?php echo $searched_ids; ?>', verified_emails: jQuery('#verified_emails').val()},
|
850 |
beforeSend: function () {
|
851 |
if (<?php echo $subs_count; ?> >=
|
@@ -883,7 +883,7 @@ class FMViewSubmissions_fmc extends FMAdminView_fmc {
|
|
883 |
window.location = "<?php echo add_query_arg(array(
|
884 |
'form_id' => $form_id,
|
885 |
'send_header' => 1,
|
886 |
-
), admin_url('admin-ajax.php')); ?>&action=generete_" + type + "
|
887 |
}
|
888 |
}
|
889 |
});
|
24 |
wp_enqueue_script('jquery-ui-core');
|
25 |
wp_enqueue_script('jquery-ui-datepicker');
|
26 |
wp_add_inline_script('jquery-ui-datepicker', WDW_FMC_Library::localize_ui_datepicker());
|
27 |
+
wp_enqueue_script('fmc-admin');
|
28 |
wp_enqueue_script('fm-manage');
|
29 |
wp_enqueue_script('fm-submissions');
|
30 |
wp_enqueue_script('jquery.fancybox.pack');
|
845 |
url: "<?php echo add_query_arg(array(
|
846 |
'form_id' => $form_id,
|
847 |
'send_header' => 0,
|
848 |
+
), admin_url('admin-ajax.php')); ?>&action=generete_" + type + "<?php echo WDFM()->plugin_postfix; ?>&limitstart=" + limit,
|
849 |
data: {search_labels: '<?php echo $searched_ids; ?>', verified_emails: jQuery('#verified_emails').val()},
|
850 |
beforeSend: function () {
|
851 |
if (<?php echo $subs_count; ?> >=
|
883 |
window.location = "<?php echo add_query_arg(array(
|
884 |
'form_id' => $form_id,
|
885 |
'send_header' => 1,
|
886 |
+
), admin_url('admin-ajax.php')); ?>&action=generete_" + type + "<?php echo WDFM()->plugin_postfix; ?>&limitstart=" + limit;
|
887 |
}
|
888 |
}
|
889 |
});
|
admin/views/Themes_fm.php
CHANGED
@@ -7,7 +7,7 @@ class FMViewThemes_fmc extends FMAdminView_fmc {
|
|
7 |
wp_enqueue_style('fm-tables');
|
8 |
wp_enqueue_style('fm-first');
|
9 |
wp_enqueue_script('jquery');
|
10 |
-
wp_enqueue_script('
|
11 |
}
|
12 |
|
13 |
/**
|
@@ -49,9 +49,9 @@ class FMViewThemes_fmc extends FMAdminView_fmc {
|
|
49 |
'title' => $params['page_title'],
|
50 |
'title_class' => 'wd-header',
|
51 |
'add_new_button' => array(
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
echo $this->search();
|
56 |
?>
|
57 |
<div class="tablenav top">
|
7 |
wp_enqueue_style('fm-tables');
|
8 |
wp_enqueue_style('fm-first');
|
9 |
wp_enqueue_script('jquery');
|
10 |
+
wp_enqueue_script('fmc-admin');
|
11 |
}
|
12 |
|
13 |
/**
|
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/Uninstall_fm.php
CHANGED
@@ -6,7 +6,7 @@ class FMViewUninstall_fmc {
|
|
6 |
*/
|
7 |
public function __construct() {
|
8 |
wp_enqueue_style('fm-tables');
|
9 |
-
wp_enqueue_script('
|
10 |
if (WDCFM()->is_free) {
|
11 |
wp_enqueue_style('fm-deactivate-css');
|
12 |
wp_enqueue_script('fm-deactivate-popup');
|
6 |
*/
|
7 |
public function __construct() {
|
8 |
wp_enqueue_style('fm-tables');
|
9 |
+
wp_enqueue_script('fmc-admin');
|
10 |
if (WDCFM()->is_free) {
|
11 |
wp_enqueue_style('fm-deactivate-css');
|
12 |
wp_enqueue_script('fm-deactivate-popup');
|
admin/views/Widget.php
CHANGED
@@ -32,7 +32,7 @@ class FMViewWidget_fmc {
|
|
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; ?>"
|
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;
|
contact-form-maker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Contact Form Maker
|
4 |
* Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
|
5 |
* Description: WordPress Contact Form Maker is a simple contact form builder, which allows the user with almost no knowledge of programming to create and edit different type of contact forms.
|
6 |
-
* Version: 1.12.
|
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 WDCFM {
|
|
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.
|
93 |
-
$this->db_version = '2.12.
|
94 |
$this->menu_slug = 'manage_fmc';
|
95 |
$this->prefix = 'form_maker_fmc';
|
96 |
$this->css_prefix = 'fmc_';
|
@@ -107,6 +107,7 @@ final class WDCFM {
|
|
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.
|
@@ -171,18 +172,11 @@ final class WDCFM {
|
|
171 |
|
172 |
// Form Maker Widget.
|
173 |
if (class_exists('WP_Widget')) {
|
174 |
-
|
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, '
|
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 +206,12 @@ final class WDCFM {
|
|
212 |
public function init() {
|
213 |
ob_start();
|
214 |
$this->fm_overview();
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
}
|
216 |
|
217 |
/**
|
@@ -318,6 +318,14 @@ final class WDCFM {
|
|
318 |
fm_extensions_page('form-maker');
|
319 |
}
|
320 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
/**
|
322 |
* Register Admin styles/scripts.
|
323 |
*/
|
@@ -348,14 +356,14 @@ final class WDCFM {
|
|
348 |
|
349 |
wp_register_script('fm-phone_field', $this->plugin_url . '/js/intlTelInput.js', array(), '11.0.0');
|
350 |
|
351 |
-
wp_register_script('
|
352 |
wp_register_script('fm-manage', $this->plugin_url . '/js/form_maker_manage.js', array(), $this->plugin_version);
|
353 |
wp_register_script('fm-manage-edit', $this->plugin_url . '/js/form_maker_manage_edit.js', array(), $this->plugin_version);
|
354 |
-
wp_register_script('
|
355 |
wp_register_script('fm-form-options', $this->plugin_url . '/js/form_maker_form_options.js', array(), $this->plugin_version);
|
356 |
wp_register_script('fm-form-advanced-layout', $this->plugin_url . '/js/form_maker_form_advanced_layout.js', array(), $this->plugin_version);
|
357 |
-
wp_register_script('
|
358 |
-
wp_localize_script('
|
359 |
'countries' => WDW_FMC_Library::get_countries(),
|
360 |
'states' => WDW_FMC_Library::get_states(),
|
361 |
'plugin_url' => $this->plugin_url,
|
@@ -381,7 +389,7 @@ final class WDCFM {
|
|
381 |
'is_demo' => $this->is_demo,
|
382 |
'important_message' => __('The free version is limited up to 7 fields to add. If you need this functionality, you need to buy the commercial version.', $this->prefix),
|
383 |
'no_preview' => __('No preview available.', $this->prefix),
|
384 |
-
|
385 |
));
|
386 |
|
387 |
wp_register_script('fm-codemirror', $this->plugin_url . '/js/layout/codemirror.js', array(), '2.3');
|
@@ -395,13 +403,12 @@ final class WDCFM {
|
|
395 |
|
396 |
wp_register_script('fm-colorpicker', $this->plugin_url . '/js/spectrum.js', array(), $this->plugin_version);
|
397 |
|
398 |
-
wp_register_script('fm-admin', $this->plugin_url . '/js/form_maker_admin.js', array(), $this->plugin_version);
|
399 |
wp_register_script('fm-themes', $this->plugin_url . '/js/themes.js', array(), $this->plugin_version);
|
400 |
|
401 |
wp_register_script('fm-submissions', $this->plugin_url . '/js/form_maker_submissions.js', array(), $this->plugin_version);
|
402 |
wp_register_script('fm-ng-js', 'https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.min.js', array(), '1.5.0');
|
403 |
|
404 |
-
wp_localize_script('
|
405 |
'countries' => WDW_FMC_Library::get_countries(),
|
406 |
'delete_confirmation' => __('Do you want to delete selected items?', $this->prefix),
|
407 |
'select_at_least_one_item' => __('You must select at least one item.', $this->prefix),
|
@@ -431,7 +438,7 @@ final class WDCFM {
|
|
431 |
wp_register_style('fm-style', $this->plugin_url . '/css/style.css', array(), $this->plugin_version);
|
432 |
wp_register_style('fm-jquery-ui', $this->plugin_url . '/css/jquery-ui.custom.css', array(), $this->plugin_version);
|
433 |
|
434 |
-
wp_register_script('
|
435 |
|
436 |
$fm_settings = get_option('fmc_settings');
|
437 |
$google_map_key = !empty($fm_settings['map_key']) ? '&key=' . $fm_settings['map_key'] : '';
|
@@ -439,7 +446,7 @@ final class WDCFM {
|
|
439 |
wp_register_script('google-maps', 'https://maps.google.com/maps/api/js?v=3.exp' . $google_map_key);
|
440 |
wp_register_script('fm-gmap_form', $this->plugin_url . '/js/if_gmap_back_end.js', array(), $this->plugin_version);
|
441 |
|
442 |
-
wp_localize_script('
|
443 |
'insert_form' => __('You must select a form', $this->prefix),
|
444 |
'update' => __('Update', $this->prefix),
|
445 |
));
|
@@ -449,7 +456,9 @@ final class WDCFM {
|
|
449 |
* admin-ajax actions for admin.
|
450 |
*/
|
451 |
public function form_maker_ajax() {
|
|
|
452 |
$page = WDW_FMC_Library::get('action');
|
|
|
453 |
if ( $page != 'formmakerwdcaptcha' . $this->plugin_postfix && $page != 'formmakerwdmathcaptcha' . $this->plugin_postfix && $page != 'checkpaypal' . $this->plugin_postfix ) {
|
454 |
if ( function_exists('current_user_can') ) {
|
455 |
if ( !current_user_can('manage_options') ) {
|
@@ -462,11 +471,8 @@ final class WDCFM {
|
|
462 |
}
|
463 |
if ( $page != '' ) {
|
464 |
$page = ucfirst(substr($page, 0, strlen($page) - strlen($this->plugin_postfix)));
|
465 |
-
if ( !is_file($this->plugin_dir . '/admin/controllers/' . $page . '.php') ) {
|
466 |
-
die('The file <b> ' . $page . ' </b> not found.');
|
467 |
-
}
|
468 |
$this->register_admin_ajax_scripts();
|
469 |
-
require_once($this->plugin_dir . '/admin/controllers/' . $page . '.php');
|
470 |
$controller_class = 'FMController' . $page . $this->plugin_postfix;
|
471 |
$controller = new $controller_class();
|
472 |
$controller->execute();
|
@@ -529,7 +535,7 @@ final class WDCFM {
|
|
529 |
echo __('Sorry, you are not allowed to access this page.', $this->prefix);
|
530 |
}
|
531 |
else {
|
532 |
-
$id = WDW_FMC_Library::get('
|
533 |
$display_options = WDW_FMC_Library::display_options( $id );
|
534 |
$type = $display_options->type;
|
535 |
|
@@ -618,10 +624,6 @@ final class WDCFM {
|
|
618 |
);
|
619 |
|
620 |
register_post_type('cfmemailverification', $args);
|
621 |
-
if (!get_option('cfm_emailverification')) {
|
622 |
-
flush_rewrite_rules();
|
623 |
-
add_option('cfm_emailverification', true);
|
624 |
-
}
|
625 |
}
|
626 |
|
627 |
/**
|
@@ -629,11 +631,11 @@ final class WDCFM {
|
|
629 |
*/
|
630 |
public function register_form_preview_cpt() {
|
631 |
$args = array(
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
'create_posts' => FALSE,
|
638 |
'edit_post' => 'edit_posts',
|
639 |
'read_post' => 'edit_posts',
|
@@ -650,7 +652,7 @@ final class WDCFM {
|
|
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
|
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 +702,22 @@ final class WDCFM {
|
|
700 |
* Frontend ajax scripts.
|
701 |
*/
|
702 |
public function register_frontend_ajax_scripts() {
|
703 |
-
$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 |
*/
|
@@ -719,12 +731,12 @@ final class WDCFM {
|
|
719 |
global $wpdb;
|
720 |
require_once $this->plugin_dir . "/form_maker_insert.php";
|
721 |
if (!$version) {
|
722 |
-
add_option("wd_form_maker_version", $new_version, '', 'no');
|
723 |
if ($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "formmaker'") == $wpdb->prefix . "formmaker") {
|
724 |
deactivate_plugins($this->main_file);
|
725 |
wp_die(__("Oops! Seems like you installed the update over a quite old version of Form Maker. Unfortunately, this version is deprecated.<br />Please contact Web-Dorado support team at support@web-dorado.com. We will take care of this issue as soon as possible.", $this->prefix));
|
726 |
}
|
727 |
else {
|
|
|
728 |
WDCFMInsert::form_maker_insert();
|
729 |
$email_verification_post = array(
|
730 |
'post_title' => 'Email Verification',
|
@@ -766,8 +778,6 @@ final class WDCFM {
|
|
766 |
add_option('fmc_settings', array('public_key' => $public_key, 'private_key' => $private_key, 'csv_delimiter' => ',', 'map_key' => ''));
|
767 |
}
|
768 |
}
|
769 |
-
WDCFMInsert::install_demo_forms();
|
770 |
-
// flush_rewrite_rules();
|
771 |
}
|
772 |
|
773 |
/**
|
@@ -785,13 +795,13 @@ final class WDCFM {
|
|
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 +813,36 @@ final class WDCFM {
|
|
803 |
switch ($task) {
|
804 |
case 'edit':
|
805 |
case 'edit_old': {
|
806 |
-
$help_text = 'add fields to your form';
|
807 |
-
$user_guide_link .= '
|
808 |
break;
|
809 |
}
|
810 |
case 'form_options':
|
811 |
case 'form_options_old': {
|
812 |
-
$help_text = 'edit form options';
|
813 |
-
$user_guide_link .= '
|
|
|
|
|
|
|
|
|
|
|
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 .= '
|
826 |
break;
|
827 |
}
|
828 |
case 'themes': {
|
829 |
-
$help_text = 'create, edit form themes';
|
830 |
-
$user_guide_link .= '';
|
831 |
break;
|
832 |
}
|
833 |
default: {
|
@@ -975,54 +990,54 @@ final class WDCFM {
|
|
975 |
4 => array(
|
976 |
"title" => __("Themes", $this->prefix),
|
977 |
"description" => __("The WordPress Form Maker plugin comes with a wide range of customizable themes. You can choose from a list of existing themes or simply create the one that better fits your brand and website.", $this->prefix),
|
978 |
-
)
|
979 |
),
|
980 |
// user guide from web-dorado.com
|
981 |
"user_guide" => array(
|
982 |
0 => array(
|
983 |
"main_title" => __("Installing", $this->prefix),
|
984 |
-
"url" => "https://web-dorado.com/wordpress-form-maker/
|
985 |
-
"titles" => array()
|
986 |
),
|
987 |
1 => array(
|
988 |
"main_title" => __("Creating a new Form", $this->prefix),
|
989 |
"url" => "https://web-dorado.com/wordpress-form-maker/creating-form.html",
|
990 |
-
"titles" => array()
|
991 |
),
|
992 |
2 => array(
|
993 |
"main_title" => __("Configuring Form Options", $this->prefix),
|
994 |
-
"url" => "https://web-dorado.com/wordpress-form-maker/
|
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/
|
1000 |
"titles" => array(
|
1001 |
array(
|
1002 |
"title" => __("Selecting Options from Database", $this->prefix),
|
1003 |
"url" => "https://web-dorado.com/wordpress-form-maker/description-of-form-fields/selecting-options-from-database.html",
|
1004 |
),
|
1005 |
-
)
|
1006 |
),
|
1007 |
4 => array(
|
1008 |
"main_title" => __("Publishing the Created Form", $this->prefix),
|
1009 |
-
"url" => "https://web-dorado.com/wordpress-form-maker/
|
1010 |
-
"titles" => array()
|
1011 |
),
|
1012 |
5 => array(
|
1013 |
"main_title" => __("Blocking IPs", $this->prefix),
|
1014 |
-
"url" => "https://web-dorado.com/wordpress-form-maker/
|
1015 |
-
"titles" => array()
|
1016 |
),
|
1017 |
6 => array(
|
1018 |
"main_title" => __("Managing Submissions", $this->prefix),
|
1019 |
-
"url" => "https://web-dorado.com/wordpress-form-maker/
|
1020 |
-
"titles" => array()
|
1021 |
),
|
1022 |
7 => array(
|
1023 |
"main_title" => __("Publishing Submissions", $this->prefix),
|
1024 |
-
"url" => "https://web-dorado.com/wordpress-form-maker/publishing-
|
1025 |
-
"titles" => array()
|
1026 |
),
|
1027 |
),
|
1028 |
"video_youtube_id" => "tN3_c6MhqFk", // e.g. https://www.youtube.com/watch?v=acaexefeP7o youtube id is the acaexefeP7o
|
3 |
* Plugin Name: Contact Form Maker
|
4 |
* Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
|
5 |
* Description: WordPress Contact Form Maker is a simple contact form builder, which allows the user with almost no knowledge of programming to create and edit different type of contact forms.
|
6 |
+
* Version: 1.12.13
|
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.13';
|
93 |
+
$this->db_version = '2.12.13';
|
94 |
$this->menu_slug = 'manage_fmc';
|
95 |
$this->prefix = 'form_maker_fmc';
|
96 |
$this->css_prefix = 'fmc_';
|
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_fm' . $this->plugin_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.
|
172 |
|
173 |
// Form Maker Widget.
|
174 |
if (class_exists('WP_Widget')) {
|
175 |
+
add_action('widgets_init', array($this, 'register_widgets'));
|
|
|
176 |
}
|
177 |
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
// Form maker activation.
|
179 |
+
register_activation_hook(__FILE__, array($this, 'form_maker_on_activate'));
|
180 |
if ( (!isset($_GET['action']) || $_GET['action'] != 'deactivate')
|
181 |
&& (!isset($_GET['page']) || $_GET['page'] != 'uninstall' . $this->menu_postfix) ) {
|
182 |
add_action('admin_init', array($this, 'form_maker_activate'));
|
206 |
public function init() {
|
207 |
ob_start();
|
208 |
$this->fm_overview();
|
209 |
+
|
210 |
+
// Register fmemailverification post type
|
211 |
+
$this->register_fmemailverification_cpt();
|
212 |
+
|
213 |
+
// Register fmformpreview post type
|
214 |
+
$this->register_form_preview_cpt();
|
215 |
}
|
216 |
|
217 |
/**
|
318 |
fm_extensions_page('form-maker');
|
319 |
}
|
320 |
|
321 |
+
/**
|
322 |
+
* Register widgets.
|
323 |
+
*/
|
324 |
+
public function register_widgets() {
|
325 |
+
require_once($this->plugin_dir . '/admin/controllers/Widget.php');
|
326 |
+
register_widget('FMControllerWidget' . $this->plugin_postfix);
|
327 |
+
}
|
328 |
+
|
329 |
/**
|
330 |
* Register Admin styles/scripts.
|
331 |
*/
|
356 |
|
357 |
wp_register_script('fm-phone_field', $this->plugin_url . '/js/intlTelInput.js', array(), '11.0.0');
|
358 |
|
359 |
+
wp_register_script('fmc-admin', $this->plugin_url . '/js/form_maker_admin.js', array(), $this->plugin_version);
|
360 |
wp_register_script('fm-manage', $this->plugin_url . '/js/form_maker_manage.js', array(), $this->plugin_version);
|
361 |
wp_register_script('fm-manage-edit', $this->plugin_url . '/js/form_maker_manage_edit.js', array(), $this->plugin_version);
|
362 |
+
wp_register_script('fmc-formmaker_div', $this->plugin_url . '/js/formmaker_div.js', array(), $this->plugin_version);
|
363 |
wp_register_script('fm-form-options', $this->plugin_url . '/js/form_maker_form_options.js', array(), $this->plugin_version);
|
364 |
wp_register_script('fm-form-advanced-layout', $this->plugin_url . '/js/form_maker_form_advanced_layout.js', array(), $this->plugin_version);
|
365 |
+
wp_register_script('fmc-add-fields', $this->plugin_url . '/js/add_field.js', array('fm-formmaker_div'), $this->plugin_version);
|
366 |
+
wp_localize_script('fmc-add-fields', 'form_maker', array(
|
367 |
'countries' => WDW_FMC_Library::get_countries(),
|
368 |
'states' => WDW_FMC_Library::get_states(),
|
369 |
'plugin_url' => $this->plugin_url,
|
389 |
'is_demo' => $this->is_demo,
|
390 |
'important_message' => __('The free version is limited up to 7 fields to add. If you need this functionality, you need to buy the commercial version.', $this->prefix),
|
391 |
'no_preview' => __('No preview available.', $this->prefix),
|
392 |
+
'invisible_recaptcha_error' => sprintf( __('%s Old reCAPTCHA keys will not work for %s. Please make sure to enable the API keys for Invisible reCAPTCHA.', $this->prefix), '<b>'. __('Note:', $this->prefix) .'</b>', '<b>'. __('Invisible reCAPTCHA', $this->prefix) .'</b>' )
|
393 |
));
|
394 |
|
395 |
wp_register_script('fm-codemirror', $this->plugin_url . '/js/layout/codemirror.js', array(), '2.3');
|
403 |
|
404 |
wp_register_script('fm-colorpicker', $this->plugin_url . '/js/spectrum.js', array(), $this->plugin_version);
|
405 |
|
|
|
406 |
wp_register_script('fm-themes', $this->plugin_url . '/js/themes.js', array(), $this->plugin_version);
|
407 |
|
408 |
wp_register_script('fm-submissions', $this->plugin_url . '/js/form_maker_submissions.js', array(), $this->plugin_version);
|
409 |
wp_register_script('fm-ng-js', 'https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.min.js', array(), '1.5.0');
|
410 |
|
411 |
+
wp_localize_script('fmc-admin', 'form_maker', array(
|
412 |
'countries' => WDW_FMC_Library::get_countries(),
|
413 |
'delete_confirmation' => __('Do you want to delete selected items?', $this->prefix),
|
414 |
'select_at_least_one_item' => __('You must select at least one item.', $this->prefix),
|
438 |
wp_register_style('fm-style', $this->plugin_url . '/css/style.css', array(), $this->plugin_version);
|
439 |
wp_register_style('fm-jquery-ui', $this->plugin_url . '/css/jquery-ui.custom.css', array(), $this->plugin_version);
|
440 |
|
441 |
+
wp_register_script('fmc-shortcode' . $this->menu_postfix, $this->plugin_url . '/js/shortcode.js', array('jquery'), $this->plugin_version);
|
442 |
|
443 |
$fm_settings = get_option('fmc_settings');
|
444 |
$google_map_key = !empty($fm_settings['map_key']) ? '&key=' . $fm_settings['map_key'] : '';
|
446 |
wp_register_script('google-maps', 'https://maps.google.com/maps/api/js?v=3.exp' . $google_map_key);
|
447 |
wp_register_script('fm-gmap_form', $this->plugin_url . '/js/if_gmap_back_end.js', array(), $this->plugin_version);
|
448 |
|
449 |
+
wp_localize_script('fmc-shortcode' . $this->menu_postfix, 'form_maker', array(
|
450 |
'insert_form' => __('You must select a form', $this->prefix),
|
451 |
'update' => __('Update', $this->prefix),
|
452 |
));
|
456 |
* admin-ajax actions for admin.
|
457 |
*/
|
458 |
public function form_maker_ajax() {
|
459 |
+
|
460 |
$page = WDW_FMC_Library::get('action');
|
461 |
+
|
462 |
if ( $page != 'formmakerwdcaptcha' . $this->plugin_postfix && $page != 'formmakerwdmathcaptcha' . $this->plugin_postfix && $page != 'checkpaypal' . $this->plugin_postfix ) {
|
463 |
if ( function_exists('current_user_can') ) {
|
464 |
if ( !current_user_can('manage_options') ) {
|
471 |
}
|
472 |
if ( $page != '' ) {
|
473 |
$page = ucfirst(substr($page, 0, strlen($page) - strlen($this->plugin_postfix)));
|
|
|
|
|
|
|
474 |
$this->register_admin_ajax_scripts();
|
475 |
+
require_once($this->plugin_dir . '/admin/controllers/' . ($page == 'Manage' ? substr($page.$this->plugin_postfix, 0, -1) : $page) . '.php');
|
476 |
$controller_class = 'FMController' . $page . $this->plugin_postfix;
|
477 |
$controller = new $controller_class();
|
478 |
$controller->execute();
|
535 |
echo __('Sorry, you are not allowed to access this page.', $this->prefix);
|
536 |
}
|
537 |
else {
|
538 |
+
$id = WDW_FMC_Library::get('wdform_id', 0);
|
539 |
$display_options = WDW_FMC_Library::display_options( $id );
|
540 |
$type = $display_options->type;
|
541 |
|
624 |
);
|
625 |
|
626 |
register_post_type('cfmemailverification', $args);
|
|
|
|
|
|
|
|
|
627 |
}
|
628 |
|
629 |
/**
|
631 |
*/
|
632 |
public function register_form_preview_cpt() {
|
633 |
$args = array(
|
634 |
+
'public' => true,
|
635 |
+
'exclude_from_search' => true,
|
636 |
+
'show_in_menu' => false,
|
637 |
+
'create_posts' => 'do_not_allow',
|
638 |
+
'capabilities' => array(
|
639 |
'create_posts' => FALSE,
|
640 |
'edit_post' => 'edit_posts',
|
641 |
'read_post' => 'edit_posts',
|
652 |
public function register_frontend_scripts() {
|
653 |
wp_register_style('fm-jquery-ui', $this->plugin_url . '/css/jquery-ui.custom.css', array(), $this->plugin_version);
|
654 |
|
655 |
+
$fm_settings = get_option('fmc_settings');
|
656 |
$google_map_key = !empty($fm_settings['map_key']) ? '&key=' . $fm_settings['map_key'] : '';
|
657 |
wp_register_script('google-maps', 'https://maps.google.com/maps/api/js?v=3.exp' . $google_map_key);
|
658 |
|
702 |
* Frontend ajax scripts.
|
703 |
*/
|
704 |
public function register_frontend_ajax_scripts() {
|
705 |
+
$fm_settings = get_option('fmc_settings');
|
706 |
$google_map_key = !empty($fm_settings['map_key']) ? '&key=' . $fm_settings['map_key'] : '';
|
707 |
wp_register_script('google-maps', 'https://maps.google.com/maps/api/js?v=3.exp' . $google_map_key);
|
708 |
wp_register_script('fm-gmap_form_back', $this->plugin_url . '/js/if_gmap_back_end.js', array(), $this->plugin_version);
|
709 |
}
|
710 |
|
711 |
+
/**
|
712 |
+
* Activate plugin.
|
713 |
+
*/
|
714 |
+
public function form_maker_on_activate() {
|
715 |
+
$this->form_maker_activate();
|
716 |
+
WDCFMInsert::install_demo_forms();
|
717 |
+
$this->init();
|
718 |
+
flush_rewrite_rules();
|
719 |
+
}
|
720 |
+
|
721 |
/**
|
722 |
* Activate plugin.
|
723 |
*/
|
731 |
global $wpdb;
|
732 |
require_once $this->plugin_dir . "/form_maker_insert.php";
|
733 |
if (!$version) {
|
|
|
734 |
if ($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "formmaker'") == $wpdb->prefix . "formmaker") {
|
735 |
deactivate_plugins($this->main_file);
|
736 |
wp_die(__("Oops! Seems like you installed the update over a quite old version of Form Maker. Unfortunately, this version is deprecated.<br />Please contact Web-Dorado support team at support@web-dorado.com. We will take care of this issue as soon as possible.", $this->prefix));
|
737 |
}
|
738 |
else {
|
739 |
+
add_option("wd_form_maker_version", $new_version, '', 'no');
|
740 |
WDCFMInsert::form_maker_insert();
|
741 |
$email_verification_post = array(
|
742 |
'post_title' => 'Email Verification',
|
778 |
add_option('fmc_settings', array('public_key' => $public_key, 'private_key' => $private_key, 'csv_delimiter' => ',', 'map_key' => ''));
|
779 |
}
|
780 |
}
|
|
|
|
|
781 |
}
|
782 |
|
783 |
/**
|
795 |
$prefix = $this->prefix;
|
796 |
switch ($page) {
|
797 |
case 'blocked_ips': {
|
798 |
+
$help_text = __('block IPs', $this->prefix);
|
799 |
$user_guide_link .= 'blocking-ips.html';
|
800 |
break;
|
801 |
}
|
802 |
case 'options': {
|
803 |
+
$help_text = __('edit form settings', $this->prefix);
|
804 |
+
$user_guide_link .= 'themes-and-options.html';
|
805 |
break;
|
806 |
}
|
807 |
case 'licensing': {
|
813 |
switch ($task) {
|
814 |
case 'edit':
|
815 |
case 'edit_old': {
|
816 |
+
$help_text = __('add fields to your form', $this->prefix);
|
817 |
+
$user_guide_link .= 'form-fields/basic-fields.html';
|
818 |
break;
|
819 |
}
|
820 |
case 'form_options':
|
821 |
case 'form_options_old': {
|
822 |
+
$help_text = __('edit form options', $this->prefix);
|
823 |
+
$user_guide_link .= 'form-options/general-options.html';
|
824 |
+
break;
|
825 |
+
}
|
826 |
+
case 'display_options': {
|
827 |
+
$help_text = __('edit display options', $this->prefix);
|
828 |
+
$user_guide_link .= 'display-options-publishing/configuring-display-options.html';
|
829 |
break;
|
830 |
}
|
831 |
default: {
|
832 |
+
$help_text = __('create, edit forms', $this->prefix);
|
833 |
$user_guide_link .= 'creating-form.html';
|
834 |
}
|
835 |
}
|
836 |
break;
|
837 |
}
|
838 |
case 'submissions': {
|
839 |
+
$help_text = __('view and manage form submissions', $this->prefix);
|
840 |
+
$user_guide_link .= 'submissions.html';
|
841 |
break;
|
842 |
}
|
843 |
case 'themes': {
|
844 |
+
$help_text = __('create, edit form themes', $this->prefix);
|
845 |
+
$user_guide_link .= 'themes-and-options.html';
|
846 |
break;
|
847 |
}
|
848 |
default: {
|
990 |
4 => array(
|
991 |
"title" => __("Themes", $this->prefix),
|
992 |
"description" => __("The WordPress Form Maker plugin comes with a wide range of customizable themes. You can choose from a list of existing themes or simply create the one that better fits your brand and website.", $this->prefix),
|
993 |
+
),
|
994 |
),
|
995 |
// user guide from web-dorado.com
|
996 |
"user_guide" => array(
|
997 |
0 => array(
|
998 |
"main_title" => __("Installing", $this->prefix),
|
999 |
+
"url" => "https://web-dorado.com/wordpress-form-maker/introduction.html",
|
1000 |
+
"titles" => array(),
|
1001 |
),
|
1002 |
1 => array(
|
1003 |
"main_title" => __("Creating a new Form", $this->prefix),
|
1004 |
"url" => "https://web-dorado.com/wordpress-form-maker/creating-form.html",
|
1005 |
+
"titles" => array(),
|
1006 |
),
|
1007 |
2 => array(
|
1008 |
"main_title" => __("Configuring Form Options", $this->prefix),
|
1009 |
+
"url" => "https://web-dorado.com/wordpress-form-maker/form-options/general-options.html",
|
1010 |
+
"titles" => array(),
|
1011 |
),
|
1012 |
3 => array(
|
1013 |
"main_title" => __("Description of The Form Fields", $this->prefix),
|
1014 |
+
"url" => "https://web-dorado.com/wordpress-form-maker/form-fields/basic-fields.html",
|
1015 |
"titles" => array(
|
1016 |
array(
|
1017 |
"title" => __("Selecting Options from Database", $this->prefix),
|
1018 |
"url" => "https://web-dorado.com/wordpress-form-maker/description-of-form-fields/selecting-options-from-database.html",
|
1019 |
),
|
1020 |
+
),
|
1021 |
),
|
1022 |
4 => array(
|
1023 |
"main_title" => __("Publishing the Created Form", $this->prefix),
|
1024 |
+
"url" => "https://web-dorado.com/wordpress-form-maker/creating-form.html",
|
1025 |
+
"titles" => array(),
|
1026 |
),
|
1027 |
5 => array(
|
1028 |
"main_title" => __("Blocking IPs", $this->prefix),
|
1029 |
+
"url" => "https://web-dorado.com/wordpress-form-maker/submissions.html",
|
1030 |
+
"titles" => array(),
|
1031 |
),
|
1032 |
6 => array(
|
1033 |
"main_title" => __("Managing Submissions", $this->prefix),
|
1034 |
+
"url" => "https://web-dorado.com/wordpress-form-maker/submissions.html",
|
1035 |
+
"titles" => array(),
|
1036 |
),
|
1037 |
7 => array(
|
1038 |
"main_title" => __("Publishing Submissions", $this->prefix),
|
1039 |
+
"url" => "https://web-dorado.com/wordpress-form-maker/other-publishing-options.html",
|
1040 |
+
"titles" => array(),
|
1041 |
),
|
1042 |
),
|
1043 |
"video_youtube_id" => "tN3_c6MhqFk", // e.g. https://www.youtube.com/watch?v=acaexefeP7o youtube id is the acaexefeP7o
|
css/form_maker_frontend.css
CHANGED
@@ -319,12 +319,11 @@ div[type="type_file_upload"] .wdform-element-section {
|
|
319 |
.fm-popover-content {
|
320 |
position: relative;
|
321 |
display: inline-block;
|
322 |
-
width:
|
323 |
vertical-align: middle;
|
324 |
margin: 0 auto;
|
325 |
text-align: left;
|
326 |
z-index: 1100000005;
|
327 |
-
max-width: 700px;
|
328 |
}
|
329 |
|
330 |
.fm-form .wdform-date {
|
@@ -549,11 +548,11 @@ div[type="type_file_upload"] .wdform-element-section {
|
|
549 |
.fm-minimize-text,
|
550 |
.fm-scrollbox-form,
|
551 |
.fm-popover-content {
|
552 |
-
width:
|
553 |
}
|
554 |
}
|
555 |
|
556 |
-
@media screen and (
|
557 |
.fm-form {
|
558 |
width: 100% !important;
|
559 |
}
|
@@ -812,7 +811,7 @@ input[type=number].wd-type-number {
|
|
812 |
}
|
813 |
|
814 |
.fm-form-container .fm-form {
|
815 |
-
display:
|
816 |
background: transparent;
|
817 |
border: none !important;
|
818 |
}
|
@@ -867,6 +866,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 {
|
319 |
.fm-popover-content {
|
320 |
position: relative;
|
321 |
display: inline-block;
|
322 |
+
max-width: 95%;
|
323 |
vertical-align: middle;
|
324 |
margin: 0 auto;
|
325 |
text-align: left;
|
326 |
z-index: 1100000005;
|
|
|
327 |
}
|
328 |
|
329 |
.fm-form .wdform-date {
|
548 |
.fm-minimize-text,
|
549 |
.fm-scrollbox-form,
|
550 |
.fm-popover-content {
|
551 |
+
width: 95% !important;
|
552 |
}
|
553 |
}
|
554 |
|
555 |
+
@media screen and (max-width: 480px){
|
556 |
.fm-form {
|
557 |
width: 100% !important;
|
558 |
}
|
811 |
}
|
812 |
|
813 |
.fm-form-container .fm-form {
|
814 |
+
display: block;
|
815 |
background: transparent;
|
816 |
border: none !important;
|
817 |
}
|
866 |
.fm-form-container .fm-popover .fm-popover-content {
|
867 |
position: relative;
|
868 |
}
|
869 |
+
.fm-form-container .fm-scrollbox .fm-form,
|
870 |
+
.fm-form-container .fm-topbar .fm-form,
|
871 |
+
.fm-form-container .fm-popover .fm-form {
|
872 |
+
background: white;
|
873 |
+
border: 1px solid #cccccc;
|
874 |
+
}
|
875 |
|
876 |
@media screen and (max-width: 768px) {
|
877 |
.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 #
|
2338 |
-
.fm_form_options #
|
2339 |
-
.fm_form_options #
|
2340 |
-
.fm_form_options #
|
2341 |
-
.fm_form_options #
|
2342 |
width:95%;
|
2343 |
display:inline-block;
|
2344 |
}
|
2345 |
-
.fm_form_options #
|
2346 |
width:92%;
|
2347 |
display:inline-block;
|
2348 |
}
|
2349 |
-
.fm_form_options #
|
2350 |
margin-bottom:10px;
|
2351 |
}
|
2352 |
-
.fm_form_options #
|
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_insert.php
CHANGED
@@ -11,7 +11,7 @@ class WDCFMInsert {
|
|
11 |
`id` int(11) NOT NULL AUTO_INCREMENT,
|
12 |
`title` varchar(127) NOT NULL,
|
13 |
`type` varchar(100) NOT NULL,
|
14 |
-
`mail`
|
15 |
`form_front` longtext NOT NULL,
|
16 |
`theme` int(11) NOT NULL,
|
17 |
`javascript` text NOT NULL,
|
11 |
`id` int(11) NOT NULL AUTO_INCREMENT,
|
12 |
`title` varchar(127) NOT NULL,
|
13 |
`type` varchar(100) NOT NULL,
|
14 |
+
`mail` longtext NOT NULL,
|
15 |
`form_front` longtext NOT NULL,
|
16 |
`theme` int(11) NOT NULL,
|
17 |
`javascript` text NOT NULL,
|
form_maker_update.php
CHANGED
@@ -231,11 +231,14 @@ class WDCFMUpdate {
|
|
231 |
if (version_compare($version, '1.12.0') == -1) {
|
232 |
$wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `jsversion` int(11) NOT NULL");
|
233 |
}
|
234 |
-
if (version_compare($version, '
|
235 |
$default = json_encode(array('AGPWidth' => '70', 'AGPSPWidth' => '30', 'HPAlign' => 'top', 'HTPWidth' => '40', 'HPTextAlign' => 'center', 'HTPFontSize' => '24', 'HDPFontSize' => '15', 'HIPAlign' => 'top', 'HIPWidth' => '80', 'GPWidth' => '100', 'GTPWidth' => '60', 'SPAlign' => 'left', 'PSAPAlign' => 'right', 'PPAPWidth' => '100%', 'CBPPosition' => 'absolute', 'CBPTop' => '10px', 'CBPRight' => '10px', 'PSAPBGColor' =>'#7f7f7f', 'PSAPPadding' => '8px', 'PSDPBGColor' => '#999999', 'PSDPPadding' => '4px 6px', 'PSDPMargin' => '0 0 10px 0', 'FPMargin' => '15px 0 0 0', 'IPHeight' =>'40', 'IPFontSize' => '16', 'IPPadding' => '6px 10px', 'IPBorderTop' => 'top', 'IPBorderRight' => 'right', 'IPBorderBottom' => 'bottom', 'IPBorderLeft' => 'left', 'IPBorderColor' => '#dfdfdf', 'IPBorderType' => 'solid', 'IPBorderWidth' => '1', 'IPBorderRadius' => '2', 'GPMLFontSize' => '12', 'GPMLFontWeight' => 'normal', 'OPRColor' => '#FF0000' ));
|
236 |
$wpdb->update($wpdb->prefix . 'formmaker_themes', array('default' => 0), array('default' => 1));
|
237 |
$wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`, `version`) VALUES ("Default Theme", \''. $default .'\', 1, 2);');
|
238 |
}
|
|
|
|
|
|
|
239 |
return;
|
240 |
}
|
241 |
}
|
231 |
if (version_compare($version, '1.12.0') == -1) {
|
232 |
$wpdb->query("ALTER TABLE " . $wpdb->prefix . "formmaker ADD `jsversion` int(11) NOT NULL");
|
233 |
}
|
234 |
+
if (version_compare($version, '1.12.5') == -1) {
|
235 |
$default = json_encode(array('AGPWidth' => '70', 'AGPSPWidth' => '30', 'HPAlign' => 'top', 'HTPWidth' => '40', 'HPTextAlign' => 'center', 'HTPFontSize' => '24', 'HDPFontSize' => '15', 'HIPAlign' => 'top', 'HIPWidth' => '80', 'GPWidth' => '100', 'GTPWidth' => '60', 'SPAlign' => 'left', 'PSAPAlign' => 'right', 'PPAPWidth' => '100%', 'CBPPosition' => 'absolute', 'CBPTop' => '10px', 'CBPRight' => '10px', 'PSAPBGColor' =>'#7f7f7f', 'PSAPPadding' => '8px', 'PSDPBGColor' => '#999999', 'PSDPPadding' => '4px 6px', 'PSDPMargin' => '0 0 10px 0', 'FPMargin' => '15px 0 0 0', 'IPHeight' =>'40', 'IPFontSize' => '16', 'IPPadding' => '6px 10px', 'IPBorderTop' => 'top', 'IPBorderRight' => 'right', 'IPBorderBottom' => 'bottom', 'IPBorderLeft' => 'left', 'IPBorderColor' => '#dfdfdf', 'IPBorderType' => 'solid', 'IPBorderWidth' => '1', 'IPBorderRadius' => '2', 'GPMLFontSize' => '12', 'GPMLFontWeight' => 'normal', 'OPRColor' => '#FF0000' ));
|
236 |
$wpdb->update($wpdb->prefix . 'formmaker_themes', array('default' => 0), array('default' => 1));
|
237 |
$wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker_themes` (`title`, `css`, `default`, `version`) VALUES ("Default Theme", \''. $default .'\', 1, 2);');
|
238 |
}
|
239 |
+
if (version_compare($version, '1.12.12') == -1) {
|
240 |
+
$wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` CHANGE `mail` `mail` longtext NOT NULL");
|
241 |
+
}
|
242 |
return;
|
243 |
}
|
244 |
}
|
framework/WDW_FM_Library.php
CHANGED
@@ -3681,7 +3681,8 @@ class WDW_FMC_Library {
|
|
3681 |
array_push($label_type, $label_oder_each[1]);
|
3682 |
}
|
3683 |
foreach ( $label_id as $key => $label ) {
|
3684 |
-
if ( in_array($label, $labels) && $label_type[$key] != 'type_arithmetic_captcha'
|
|
|
3685 |
array_push($sorted_labels, $label_order[$key]);
|
3686 |
array_push($sorted_labels_id, $label);
|
3687 |
array_push($label_titles, stripslashes($label_order_original[$key]));
|
@@ -3702,7 +3703,8 @@ class WDW_FMC_Library {
|
|
3702 |
for ( $www = $limitstart; $www < $group_id_s_count; $www++ ) {
|
3703 |
$i = $group_id_s[$www];
|
3704 |
$field_key = array_search($i, $label_id);
|
3705 |
-
if ( $label_type[$field_key] != 'type_arithmetic_captcha'
|
|
|
3706 |
$data_temp = array();
|
3707 |
$tt = $rows[$i];
|
3708 |
$date = $tt->date;
|
3681 |
array_push($label_type, $label_oder_each[1]);
|
3682 |
}
|
3683 |
foreach ( $label_id as $key => $label ) {
|
3684 |
+
if ( in_array($label, $labels) && $label_type[$key] != 'type_arithmetic_captcha'
|
3685 |
+
&& in_array($label, $labels) && $label_type[$key] != 'type_stripe' ) {
|
3686 |
array_push($sorted_labels, $label_order[$key]);
|
3687 |
array_push($sorted_labels_id, $label);
|
3688 |
array_push($label_titles, stripslashes($label_order_original[$key]));
|
3703 |
for ( $www = $limitstart; $www < $group_id_s_count; $www++ ) {
|
3704 |
$i = $group_id_s[$www];
|
3705 |
$field_key = array_search($i, $label_id);
|
3706 |
+
if ( $label_type[$field_key] != 'type_arithmetic_captcha'
|
3707 |
+
&& $label_type[$field_key] != 'type_stripe' ) {
|
3708 |
$data_temp = array();
|
3709 |
$tt = $rows[$i];
|
3710 |
$date = $tt->date;
|
frontend/controllers/form_maker.php
CHANGED
@@ -173,7 +173,7 @@ class FMControllerForm_maker_fmc {
|
|
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_fmc {
|
|
24 |
return FALSE;
|
25 |
}
|
26 |
|
27 |
-
$form_preview = (WDW_FMC_Library::get('
|
28 |
if ( !$form_preview && !$row->published ) {
|
29 |
// If the form has been unpublished.
|
30 |
echo WDW_FMC_Library::message(__('The form you are trying to view has been unpublished.', WDCFM()->prefix), 'fm-notice-error');
|
@@ -154,8 +154,10 @@ class FMModelForm_maker_fmc {
|
|
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 |
( !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;' : '' ).
|
@@ -351,9 +353,9 @@ class FMModelForm_maker_fmc {
|
|
351 |
'}';
|
352 |
$css_content .= '.fm-form-container.fm-theme' . $theme_id . ' .fm-popover .fm-popover-content {'.
|
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 {'.
|
@@ -1996,6 +1998,10 @@ class FMModelForm_maker_fmc {
|
|
1996 |
"***grading***",
|
1997 |
"***br***",
|
1998 |
), array( " ", "", " ", " ", " ", ", " ), addslashes($value));
|
|
|
|
|
|
|
|
|
1999 |
if ( $form->savedb ) {
|
2000 |
$save_or_no = $wpdb->insert($wpdb->prefix . "formmaker_submits", array(
|
2001 |
'form_id' => $id,
|
@@ -2927,7 +2933,7 @@ class FMModelForm_maker_fmc {
|
|
2927 |
else {
|
2928 |
$checked = "";
|
2929 |
}
|
2930 |
-
$sign = $checked == 'checked' ? '&#
|
2931 |
$matrix .= '<td style="text-align:center">' . $sign . '</td>';
|
2932 |
}
|
2933 |
}
|
@@ -2941,7 +2947,7 @@ class FMModelForm_maker_fmc {
|
|
2941 |
else {
|
2942 |
$checked = "";
|
2943 |
}
|
2944 |
-
$sign = $checked == 'checked' ? '&#
|
2945 |
$matrix .= '<td style="text-align:center">' . $sign . '</td>';
|
2946 |
}
|
2947 |
}
|
@@ -2949,7 +2955,7 @@ class FMModelForm_maker_fmc {
|
|
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"
|
2953 |
}
|
2954 |
}
|
2955 |
else {
|
@@ -3013,13 +3019,14 @@ class FMModelForm_maker_fmc {
|
|
3013 |
foreach ( $label_order_original as $key => $label_each ) {
|
3014 |
$type = $label_type[$key];
|
3015 |
$key1 = $type == 'type_hidden' ? $label_each : $key;
|
3016 |
-
|
|
|
3017 |
$new_value = $this->custom_fields_mail($type, $key1, $id, $attachment_user, $form_currency);
|
3018 |
-
$new_script = str_replace("%" . $
|
3019 |
}
|
3020 |
-
if ( $type == "type_file_upload" && strpos($new_script, "%" . $
|
3021 |
$new_value = $this->custom_fields_mail($type, $key, $id, $attachment_user, $form_currency, 1);
|
3022 |
-
$new_script = str_replace("%" . $
|
3023 |
}
|
3024 |
if ( strpos($fromname, "%" . $label_each . "%") > -1 ) {
|
3025 |
$new_value = str_replace('<br>', ', ', $this->custom_fields_mail($type, $key, $id, '', ''));
|
@@ -3168,13 +3175,14 @@ class FMModelForm_maker_fmc {
|
|
3168 |
foreach ( $label_order_original as $key => $label_each ) {
|
3169 |
$type = $label_type[$key];
|
3170 |
$key1 = $type == 'type_hidden' ? $label_each : $key;
|
3171 |
-
|
|
|
3172 |
$new_value = $this->custom_fields_mail($type, $key1, $id, $attachment, $form_currency);
|
3173 |
-
$new_script = str_replace("%" . $
|
3174 |
}
|
3175 |
-
if ( $type == "type_file_upload" && strpos($new_script, "%" . $
|
3176 |
$new_value = $this->custom_fields_mail($type, $key, $id, $attachment, $form_currency, 1);
|
3177 |
-
$new_script = str_replace("%" . $
|
3178 |
}
|
3179 |
if ( strpos($fromname, "%" . $label_each . "%") > -1 ) {
|
3180 |
$new_value = str_replace('<br>', ', ', $this->custom_fields_mail($type, $key, $id, '', $form_currency));
|
@@ -3334,7 +3342,7 @@ class FMModelForm_maker_fmc {
|
|
3334 |
}
|
3335 |
else {
|
3336 |
$_SESSION['redirect_paypal' . $id] = 1;
|
3337 |
-
$str .= "&return=" . urlencode(
|
3338 |
wp_redirect($str);
|
3339 |
exit;
|
3340 |
}
|
@@ -3727,12 +3735,12 @@ class FMModelForm_maker_fmc {
|
|
3727 |
}
|
3728 |
for ( $j = 1; $j <= $columns_count; $j++ ) {
|
3729 |
if ( $aaa[1] == $j ) {
|
3730 |
-
$checked = "
|
3731 |
}
|
3732 |
else {
|
3733 |
$checked = "";
|
3734 |
}
|
3735 |
-
$matrix .= '<td style="text-align:center"
|
3736 |
}
|
3737 |
}
|
3738 |
else {
|
@@ -3740,19 +3748,19 @@ class FMModelForm_maker_fmc {
|
|
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 = "
|
3744 |
}
|
3745 |
else {
|
3746 |
$checked = "";
|
3747 |
}
|
3748 |
-
$matrix .= '<td style="text-align:center"
|
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"
|
3756 |
}
|
3757 |
}
|
3758 |
else {
|
@@ -3814,7 +3822,7 @@ class FMModelForm_maker_fmc {
|
|
3814 |
*/
|
3815 |
public function all_forms() {
|
3816 |
global $wpdb;
|
3817 |
-
$q = 'SELECT * FROM ' . $wpdb->prefix . 'formmaker_display_options as display INNER JOIN ' . $wpdb->prefix . 'formmaker as forms ON display.form_id = forms.id WHERE display.type != "embedded" and forms.published=1';
|
3818 |
$forms = $wpdb->get_results($q);
|
3819 |
return $forms;
|
3820 |
}
|
24 |
return FALSE;
|
25 |
}
|
26 |
|
27 |
+
$form_preview = (WDW_FMC_Library::get('wdform_id', '') == $id) ? TRUE : FALSE;
|
28 |
if ( !$form_preview && !$row->published ) {
|
29 |
// If the form has been unpublished.
|
30 |
echo WDW_FMC_Library::message(__('The form you are trying to view has been unpublished.', WDCFM()->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;' : '' ).
|
353 |
'}';
|
354 |
$css_content .= '.fm-form-container.fm-theme' . $theme_id . ' .fm-popover .fm-popover-content {'.
|
355 |
( !empty($form_theme['AGPMargin']) ? 'margin:' . $form_theme['AGPMargin'] . ';' : '').
|
356 |
+
( !empty($form_theme['AGPWidth']) ? 'width:' . $form_theme['AGPWidth'] . '%;' : '').
|
357 |
'}';
|
358 |
$css_content .= '.fm-form-container.fm-theme' . $theme_id . ' .fm-pages.wdform_page_navigation {'.
|
|
|
359 |
( !empty($form_theme['AGPMargin']) ? 'margin:' . $form_theme['AGPMargin'] . '%;' : '').
|
360 |
'}';
|
361 |
$css_content .= '.fm-form-container.fm-theme' . $theme_id . ' .fm-form .wdform_footer {'.
|
1998 |
"***grading***",
|
1999 |
"***br***",
|
2000 |
), array( " ", "", " ", " ", " ", ", " ), addslashes($value));
|
2001 |
+
if( $type == 'type_checkbox' ) {
|
2002 |
+
$fvals['{' . $i . '}'] = rtrim( $fvals['{' . $i . '}'], ', ' );
|
2003 |
+
}
|
2004 |
+
|
2005 |
if ( $form->savedb ) {
|
2006 |
$save_or_no = $wpdb->insert($wpdb->prefix . "formmaker_submits", array(
|
2007 |
'form_id' => $id,
|
2933 |
else {
|
2934 |
$checked = "";
|
2935 |
}
|
2936 |
+
$sign = $checked == 'checked' ? '✔' : '';
|
2937 |
$matrix .= '<td style="text-align:center">' . $sign . '</td>';
|
2938 |
}
|
2939 |
}
|
2947 |
else {
|
2948 |
$checked = "";
|
2949 |
}
|
2950 |
+
$sign = $checked == 'checked' ? '✔' : '';
|
2951 |
$matrix .= '<td style="text-align:center">' . $sign . '</td>';
|
2952 |
}
|
2953 |
}
|
2955 |
if ( $input_type == "text" ) {
|
2956 |
for ( $j = 1; $j <= $columns_count; $j++ ) {
|
2957 |
$checked = isset($_POST['wdform_' . $i . "_input_element" . $id . $k . '_' . $j]) ? esc_html($_POST['wdform_' . $i . "_input_element" . $id . $k . '_' . $j]) : "";
|
2958 |
+
$matrix .= '<td style="text-align:center">' . $checked . '</td>';
|
2959 |
}
|
2960 |
}
|
2961 |
else {
|
3019 |
foreach ( $label_order_original as $key => $label_each ) {
|
3020 |
$type = $label_type[$key];
|
3021 |
$key1 = $type == 'type_hidden' ? $label_each : $key;
|
3022 |
+
$label_each_decoded = htmlspecialchars_decode($label_each);
|
3023 |
+
if ( strpos($new_script, "%" . $label_each_decoded . "%") > -1 ) {
|
3024 |
$new_value = $this->custom_fields_mail($type, $key1, $id, $attachment_user, $form_currency);
|
3025 |
+
$new_script = str_replace("%" . $label_each_decoded . "%", $new_value, $new_script);
|
3026 |
}
|
3027 |
+
if ( $type == "type_file_upload" && strpos($new_script, "%" . $label_each_decoded . "(link)%") > -1 ) {
|
3028 |
$new_value = $this->custom_fields_mail($type, $key, $id, $attachment_user, $form_currency, 1);
|
3029 |
+
$new_script = str_replace("%" . $label_each_decoded . "(link)%", $new_value, $new_script);
|
3030 |
}
|
3031 |
if ( strpos($fromname, "%" . $label_each . "%") > -1 ) {
|
3032 |
$new_value = str_replace('<br>', ', ', $this->custom_fields_mail($type, $key, $id, '', ''));
|
3175 |
foreach ( $label_order_original as $key => $label_each ) {
|
3176 |
$type = $label_type[$key];
|
3177 |
$key1 = $type == 'type_hidden' ? $label_each : $key;
|
3178 |
+
$label_each_decoded = htmlspecialchars_decode($label_each);
|
3179 |
+
if ( strpos($new_script, "%" . $label_each_decoded . "%") > -1 ) {
|
3180 |
$new_value = $this->custom_fields_mail($type, $key1, $id, $attachment, $form_currency);
|
3181 |
+
$new_script = str_replace("%" . $label_each_decoded . "%", $new_value, $new_script);
|
3182 |
}
|
3183 |
+
if ( $type == "type_file_upload" && strpos($new_script, "%" . $label_each_decoded . "(link)%") > -1 ) {
|
3184 |
$new_value = $this->custom_fields_mail($type, $key, $id, $attachment, $form_currency, 1);
|
3185 |
+
$new_script = str_replace("%" . $label_each_decoded . "(link)%", $new_value, $new_script);
|
3186 |
}
|
3187 |
if ( strpos($fromname, "%" . $label_each . "%") > -1 ) {
|
3188 |
$new_value = str_replace('<br>', ', ', $this->custom_fields_mail($type, $key, $id, '', $form_currency));
|
3342 |
}
|
3343 |
else {
|
3344 |
$_SESSION['redirect_paypal' . $id] = 1;
|
3345 |
+
$str .= "&return=" . urlencode(add_query_arg(array('succes' => time()), $redirect_url));
|
3346 |
wp_redirect($str);
|
3347 |
exit;
|
3348 |
}
|
3735 |
}
|
3736 |
for ( $j = 1; $j <= $columns_count; $j++ ) {
|
3737 |
if ( $aaa[1] == $j ) {
|
3738 |
+
$checked = "✔";
|
3739 |
}
|
3740 |
else {
|
3741 |
$checked = "";
|
3742 |
}
|
3743 |
+
$matrix .= '<td style="text-align:center">' . $checked . '</td>';
|
3744 |
}
|
3745 |
}
|
3746 |
else {
|
3748 |
for ( $j = 1; $j <= $columns_count; $j++ ) {
|
3749 |
$checked = isset($_POST['wdform_' . $key . "_input_element" . $id . $k . '_' . $j]) ? $_POST['wdform_' . $key . "_input_element" . $id . $k . '_' . $j] : 0;
|
3750 |
if ( $checked == 1 ) {
|
3751 |
+
$checked = "✔";
|
3752 |
}
|
3753 |
else {
|
3754 |
$checked = "";
|
3755 |
}
|
3756 |
+
$matrix .= '<td style="text-align:center">' . $checked . '</td>';
|
3757 |
}
|
3758 |
}
|
3759 |
else {
|
3760 |
if ( $input_type == "text" ) {
|
3761 |
for ( $j = 1; $j <= $columns_count; $j++ ) {
|
3762 |
$checked = isset($_POST['wdform_' . $key . "_input_element" . $id . $k . '_' . $j]) ? esc_html($_POST['wdform_' . $key . "_input_element" . $id . $k . '_' . $j]) : "";
|
3763 |
+
$matrix .= '<td style="text-align:center">' . $checked . '</td>';
|
3764 |
}
|
3765 |
}
|
3766 |
else {
|
3822 |
*/
|
3823 |
public function all_forms() {
|
3824 |
global $wpdb;
|
3825 |
+
$q = 'SELECT * FROM ' . $wpdb->prefix . 'formmaker_display_options as display INNER JOIN ' . $wpdb->prefix . 'formmaker as forms ON display.form_id = forms.id WHERE display.type != "embedded" and forms.published=1'. (!WDCFM()->is_free ? '' : ' AND forms.id' . (WDCFM()->is_free == 1 ? ' NOT ' : ' ') . 'IN (' . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ')');
|
3826 |
$forms = $wpdb->get_results($q);
|
3827 |
return $forms;
|
3828 |
}
|
js/add_field.js
CHANGED
@@ -1489,7 +1489,7 @@ function add(key, after_edit, wdid) {
|
|
1489 |
}
|
1490 |
var label = document.createElement('span');
|
1491 |
label.setAttribute("id", i + "_element_labelform_id_temp");
|
1492 |
-
label.innerHTML = ""; //"custom_" + i;
|
1493 |
label.style.cssText = 'display:none';
|
1494 |
wdform_field.appendChild(in_editor);
|
1495 |
beforeTr = wdform_page.lastChild;
|
@@ -1771,7 +1771,7 @@ function add(key, after_edit, wdid) {
|
|
1771 |
var option = document.createElement('option');
|
1772 |
option.setAttribute("id", i + "_sel_el_pos");
|
1773 |
option.setAttribute("value", i);
|
1774 |
-
option.innerHTML = ""; //"custom_" + i;
|
1775 |
l = document.getElementById('form_id_tempform_view' + form_view).childNodes.length;
|
1776 |
wdform_column = document.getElementById('form_id_tempform_view' + form_view).childNodes[l - 2].firstChild;
|
1777 |
var wdform_row = document.createElement('div');
|
@@ -1832,7 +1832,7 @@ function add(key, after_edit, wdid) {
|
|
1832 |
}
|
1833 |
var label = document.createElement('span');
|
1834 |
label.setAttribute("id", i + "_element_labelform_id_temp");
|
1835 |
-
label.innerHTML = ""; //"custom_" + i;
|
1836 |
label.style.color = 'red';
|
1837 |
wdform_row.appendChild(label);
|
1838 |
|
@@ -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 + ', \'
|
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 + ', \'
|
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 + ', \'
|
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 + ', \'
|
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 |
-
|
14170 |
-
|
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 |
|
1489 |
}
|
1490 |
var label = document.createElement('span');
|
1491 |
label.setAttribute("id", i + "_element_labelform_id_temp");
|
1492 |
+
label.innerHTML = "Custom HTML" + i; //"custom_" + i;
|
1493 |
label.style.cssText = 'display:none';
|
1494 |
wdform_field.appendChild(in_editor);
|
1495 |
beforeTr = wdform_page.lastChild;
|
1771 |
var option = document.createElement('option');
|
1772 |
option.setAttribute("id", i + "_sel_el_pos");
|
1773 |
option.setAttribute("value", i);
|
1774 |
+
option.innerHTML = "Custom HTML" + i; //"custom_" + i;
|
1775 |
l = document.getElementById('form_id_tempform_view' + form_view).childNodes.length;
|
1776 |
wdform_column = document.getElementById('form_id_tempform_view' + form_view).childNodes[l - 2].firstChild;
|
1777 |
var wdform_row = document.createElement('div');
|
1832 |
}
|
1833 |
var label = document.createElement('span');
|
1834 |
label.setAttribute("id", i + "_element_labelform_id_temp");
|
1835 |
+
label.innerHTML = "Custom HTML" + i; //"custom_" + i;
|
1836 |
label.style.color = 'red';
|
1837 |
wdform_row.appendChild(label);
|
1838 |
|
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,
|
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/form_maker_manage_edit.js
CHANGED
@@ -58,9 +58,9 @@ function FormManageSubmitButton(check_for_changes) {
|
|
58 |
});
|
59 |
|
60 |
remove_whitespace(document.getElementById('take'));
|
61 |
-
l_id_array =
|
62 |
-
l_label_array =
|
63 |
-
l_type_array =
|
64 |
l_id_removed = [];
|
65 |
|
66 |
for (x = 0; x < l_id_array.length; x++) {
|
@@ -210,6 +210,7 @@ function FormManageSubmitButton(check_for_changes) {
|
|
210 |
if (!check_for_changes) {
|
211 |
document.getElementById('label_order_current').value = tox;
|
212 |
}
|
|
|
213 |
for (x = 0; x < l_id_array.length; x++) {
|
214 |
if (l_id_removed[l_id_array[x]]) {
|
215 |
tox = tox + l_id_array[x] + '#**id**#' + l_label_array[x] + '#**label**#' + l_type_array[x] + '#****#';
|
58 |
});
|
59 |
|
60 |
remove_whitespace(document.getElementById('take'));
|
61 |
+
l_id_array = labels_id_array;
|
62 |
+
l_label_array = labels_label_array;
|
63 |
+
l_type_array = labels_type_array;
|
64 |
l_id_removed = [];
|
65 |
|
66 |
for (x = 0; x < l_id_array.length; x++) {
|
210 |
if (!check_for_changes) {
|
211 |
document.getElementById('label_order_current').value = tox;
|
212 |
}
|
213 |
+
|
214 |
for (x = 0; x < l_id_array.length; x++) {
|
215 |
if (l_id_removed[l_id_array[x]]) {
|
216 |
tox = tox + l_id_array[x] + '#**id**#' + l_label_array[x] + '#**label**#' + l_type_array[x] + '#****#';
|
js/form_maker_submissions.js
CHANGED
@@ -209,3 +209,59 @@ function change_radio_values(a, id, rows_count, columns_count) {
|
|
209 |
document.getElementById('submission_' + id).value = element + '***matrix***';
|
210 |
document.getElementById(id + '_matrixform_id_temp').value = element;
|
211 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
document.getElementById('submission_' + id).value = element + '***matrix***';
|
210 |
document.getElementById(id + '_matrixform_id_temp').value = element;
|
211 |
}
|
212 |
+
|
213 |
+
function change_text_values(a,id,rows_count,columns_count){
|
214 |
+
var annnn="";
|
215 |
+
for(var j=1;j<=rows_count;j++)
|
216 |
+
{
|
217 |
+
for(var k=1;k<=columns_count;k++)
|
218 |
+
{
|
219 |
+
annnn += document.getElementById(id+'_input_elementform_id_temp'+j+'_'+k).value+'***';
|
220 |
+
}
|
221 |
+
}
|
222 |
+
var element = document.getElementById(id+'_matrixform_id_temp').value;
|
223 |
+
element = element.split('***');
|
224 |
+
element = element.slice(0,-(rows_count*columns_count+1));
|
225 |
+
element = element.join('***');
|
226 |
+
element += '***'+annnn;
|
227 |
+
document.getElementById('submission_'+id).value=element+'***matrix***';
|
228 |
+
document.getElementById(id+'_matrixform_id_temp').value=element;
|
229 |
+
}
|
230 |
+
|
231 |
+
function change_checkbox_values(a,id,rows_count,columns_count){
|
232 |
+
var annnn="";
|
233 |
+
for(var j=1;j<=rows_count;j++)
|
234 |
+
{
|
235 |
+
for(var k=1;k<=columns_count;k++)
|
236 |
+
{
|
237 |
+
if(document.getElementById(id+'_input_elementform_id_temp'+j+'_'+k).checked==true)
|
238 |
+
annnn += 1+'***';
|
239 |
+
else
|
240 |
+
annnn += 0+'***';
|
241 |
+
}
|
242 |
+
}
|
243 |
+
var element = document.getElementById(id+'_matrixform_id_temp').value;
|
244 |
+
element = element.slice(0,-(4*rows_count*columns_count));
|
245 |
+
element += annnn;
|
246 |
+
document.getElementById('submission_'+id).value=element+'***matrix***';
|
247 |
+
document.getElementById(id+'_matrixform_id_temp').value=element;
|
248 |
+
}
|
249 |
+
|
250 |
+
function change_option_values(a,id,rows_count,columns_count){
|
251 |
+
var annnn="";
|
252 |
+
for(var j=1;j<=rows_count;j++)
|
253 |
+
{
|
254 |
+
for(var k=1;k<=columns_count;k++)
|
255 |
+
{
|
256 |
+
annnn += document.getElementById(id+'_select_yes_noform_id_temp'+j+'_'+k).value+'***';
|
257 |
+
}
|
258 |
+
}
|
259 |
+
var element = document.getElementById(id+'_matrixform_id_temp').value;
|
260 |
+
element = element.split('***');
|
261 |
+
element = element.slice(0,-(rows_count*columns_count+1));
|
262 |
+
element = element.join('***');
|
263 |
+
element += '***'+annnn;
|
264 |
+
document.getElementById('submission_'+id).value=element+'***matrix***';
|
265 |
+
document.getElementById(id+'_matrixform_id_temp').value=element;
|
266 |
+
}
|
267 |
+
|
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,
|
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 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
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':
|
@@ -1902,7 +1901,7 @@ function formOnload(form_id) {
|
|
1902 |
jQuery('#form' + form_id + ' input').on('keypress', function (e) {
|
1903 |
var key_code = (e.keyCode ? e.keyCode : e.which);
|
1904 |
if (key_code == 13) { /*Enter keycode*/
|
1905 |
-
fm_submit_form(form_id)
|
1906 |
return false;
|
1907 |
}
|
1908 |
});
|
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':
|
1901 |
jQuery('#form' + form_id + ' input').on('keypress', function (e) {
|
1902 |
var key_code = (e.keyCode ? e.keyCode : e.which);
|
1903 |
if (key_code == 13) { /*Enter keycode*/
|
1904 |
+
/*fm_submit_form(form_id);*/
|
1905 |
return false;
|
1906 |
}
|
1907 |
});
|
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:
|
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
|
16 |
-
"X-Poedit-SearchPath-0: C
|
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 "
|
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 "
|
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 "
|
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 "
|
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 "
|
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 "
|
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:
|
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
|
16 |
"X-Poedit-SearchPath-0: C:/wamp/www/wordpress/wp-content/plugins/form-maker\n"
|
17 |
-
"X-Poedit-SearchPath-1: C
|
18 |
-
"
|
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 "
|
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
|
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 "
|
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 "
|
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 "
|
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 "
|
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 "
|
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 "
|
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
|
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 |
-
#,
|
229 |
msgid "The year must be between %s and %s"
|
230 |
-
msgstr "
|
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 "
|
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 "
|
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 "
|
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 "
|
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 "
|
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 "
|
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 "
|
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 "
|
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
|
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 "
|
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 "
|
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 "
|
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 "
|
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
|
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
|
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 "
|
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 "
|
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 |
-
#,
|
2664 |
msgid "This field %s requires a unique entry."
|
2665 |
msgstr ""
|
2666 |
-
"Questo campo %s richiede
|
2667 |
-
"
|
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
|
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 "
|
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 |
-
#,
|
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 |
-
"
|
2736 |
-
"
|
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 "
|
2765 |
|
2766 |
#: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:468
|
2767 |
msgid "Failed"
|
2768 |
-
msgstr "
|
2769 |
|
2770 |
#: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:469
|
2771 |
msgid "Held"
|
2772 |
-
msgstr "
|
2773 |
|
2774 |
#: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:470
|
2775 |
msgid "In progress"
|
2776 |
-
msgstr "
|
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 "
|
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 "
|
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 "
|
2805 |
|
2806 |
#: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:478
|
2807 |
msgid "Refused"
|
2808 |
-
msgstr "
|
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 "
|
2817 |
|
2818 |
#: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:481
|
2819 |
msgid "Reversed"
|
2820 |
-
msgstr "
|
2821 |
|
2822 |
#: C:/wamp/www/wordpress/wp-content/plugins/form-maker/frontend/views/form_submissions.php:482
|
2823 |
msgid "Temporary hold"
|
2824 |
-
msgstr "
|
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 "
|
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 "
|
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 "
|
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 "
|
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
@@ -3,7 +3,7 @@ Contributors: webdorado,10web
|
|
3 |
Tags: contact, contact form, email, forms, contact forms, custom form, feedback, form builder, form manager, form maker, forms builder, form builder wordpress
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 4.9
|
6 |
-
Stable tag: 1.12.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -165,7 +165,30 @@ If you want to update the plugin while preserving your existing contact forms, y
|
|
165 |
|
166 |
== Changelog ==
|
167 |
|
168 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
|
170 |
= 1.12.10 =
|
171 |
* Fixed: A minor bug.
|
3 |
Tags: contact, contact form, email, forms, contact forms, custom form, feedback, form builder, form manager, form maker, forms builder, form builder wordpress
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 4.9
|
6 |
+
Stable tag: 1.12.13
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
165 |
|
166 |
== Changelog ==
|
167 |
|
168 |
+
= 1.12.13 =
|
169 |
+
* Fixed: Bug on Popup forms on mobile.
|
170 |
+
* Fixed: "Custom HTML" field label in conditional fields list.
|
171 |
+
* Fixed: Trim data inserted by MySQL mapping.
|
172 |
+
* Changed: Prevent default on form enter.
|
173 |
+
|
174 |
+
= 1.12.12 =
|
175 |
+
* Changed: Improved query to get number of submissions.
|
176 |
+
* Changed: Email field length in database.
|
177 |
+
|
178 |
+
= 1.12.11 =
|
179 |
+
* Fixed: Preview does not show with widget on page with some Wordpress themes.
|
180 |
+
* Fixed: Do not check conditionally hidden required fields.
|
181 |
+
* Fixed: Not embedded forms do not show on form preview page.
|
182 |
+
* Fixed: Post/page search on display options pages.
|
183 |
+
* Fixed: Tooltip in "Add query" popup.
|
184 |
+
* Fixed: Insert demo forms only on activate.
|
185 |
+
* Fixed: Emailing fields with apostrophes in label.
|
186 |
+
* Fixed: Popup forms background.
|
187 |
+
* Changed: Czech translation.
|
188 |
+
* Changed: Italian translation.
|
189 |
+
* Changed: Disable widget in preview page.
|
190 |
+
* Fixed: User manual links.
|
191 |
+
* Fixed: Add new theme.
|
192 |
|
193 |
= 1.12.10 =
|
194 |
* Fixed: A minor bug.
|