Version Description
- Fixed: CSRF issue.
- Added: Banner to install 10Web manager.
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.13.5 |
Comparing to | |
See all releases |
Code changes from version 1.13.4 to 1.13.5
- admin/models/Manage_fm.php +3 -0
- admin/models/Uninstall_fm.php +3 -0
- admin/views/FMProductOption.php +2 -1
- admin/views/FMSelectDataFromDb.php +5 -0
- admin/views/FMSqlMapping.php +9 -3
- admin/views/Manage_fm.php +11 -7
- admin/views/Submissions_fm.php +10 -2
- admin/views/view.php +0 -1
- css/form_maker_tables.css +8 -0
- form-maker.php +356 -89
- form_maker_update.php +0 -1
- framework/WDW_FM_Library.php +143 -2
- frontend/models/form_maker.php +2 -1
- frontend/views/form_maker.php +4 -2
- images/logo.png +0 -0
- js/add_field.js +11 -11
- js/form_maker_admin.js +2 -0
- js/formmaker_div.js +2 -2
- js/main_div_front_end.js +1 -1
- languages/form_maker-fr_FR.mo +0 -0
- languages/form_maker-fr_FR.po +1130 -1233
- readme.txt +11 -7
admin/models/Manage_fm.php
CHANGED
@@ -139,6 +139,7 @@ class FMModelManage_fm extends FMAdminModel {
|
|
139 |
* @return stdClass
|
140 |
*/
|
141 |
public function get_row_data_new( $id = 0 ) {
|
|
|
142 |
global $wpdb;
|
143 |
if ( $id != 0 ) {
|
144 |
$row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker_backup WHERE backup_id="%d"', $id));
|
@@ -2143,6 +2144,7 @@ class FMModelManage_fm extends FMAdminModel {
|
|
2143 |
$rep = '<div id="wdform_field' . $id . '" type="type_captcha" class="wdform_field" style="display: table-cell;">' . $arrows . '<div align="left" id="' . $id . '_label_sectionform_id_temp" class="' . $param['w_class'] . '" style="display:' . $display_label . '; width: ' . $param['w_field_label_size'] . 'px;"><span id="' . $id . '_element_labelform_id_temp" class="label" style="vertical-align: top;">' . $label . '</span></div><div align="left" id="' . $id . '_element_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $param['w_field_label_pos'] . ';"><input type="hidden" value="type_captcha" name="' . $id . '_typeform_id_temp" id="' . $id . '_typeform_id_temp"><div style="display: table;"><div style="display: table-row;"><div valign="middle" style="display: table-cell;"><img type="captcha" digit="' . $param['w_digit'] . '" src="' . add_query_arg(array(
|
2144 |
'action' => 'formmakerwdcaptcha' . WDFMInstance(self::PLUGIN)->plugin_postfix,
|
2145 |
'digit' => $param['w_digit'],
|
|
|
2146 |
'i' => 'form_id_temp',
|
2147 |
), admin_url('admin-ajax.php')) . '" id="_wd_captchaform_id_temp" class="captcha_img" onclick="captcha_refresh("_wd_captcha","form_id_temp")" ' . $param['attributes'] . '></div><div valign="middle" style="display: table-cell;"><div class="captcha_refresh" id="_element_refreshform_id_temp" onclick="captcha_refresh("_wd_captcha","form_id_temp")" ' . $param['attributes'] . '></div></div></div><div style="display: table-row;"><div style="display: table-cell;"><input type="text" class="captcha_input" id="_wd_captcha_inputform_id_temp" name="captcha_input" style="width: ' . ($param['w_digit'] * 10 + 15) . 'px;" ' . $param['attributes'] . ' disabled/><input type="hidden" value="' . $param['w_hide_label'] . '" name="' . $id . '_hide_labelform_id_temp" id="' . $id . '_hide_labelform_id_temp"/></div></div></div></div></div>';
|
2148 |
break;
|
@@ -2190,6 +2192,7 @@ class FMModelManage_fm extends FMAdminModel {
|
|
2190 |
'action' => 'formmakerwdmathcaptcha' . WDFMInstance(self::PLUGIN)->plugin_postfix,
|
2191 |
'operations_count' => $param['w_count'],
|
2192 |
'operations' => urlencode($param['w_operations']),
|
|
|
2193 |
'i' => 'form_id_temp',
|
2194 |
), admin_url('admin-ajax.php')) . '" id="_wd_arithmetic_captchaform_id_temp" class="arithmetic_captcha_img" onclick="captcha_refresh("_wd_arithmetic_captcha","form_id_temp")" ' . $param['attributes'] . '></div><div style="display: table-cell;"><input type="text" class="arithmetic_captcha_input" id="_wd_arithmetic_captcha_inputform_id_temp" name="arithmetic_captcha_input" onkeypress="return check_isnum(event)" style="width: ' . $param['w_input_size'] . 'px;" ' . $param['attributes'] . ' disabled/><input type="hidden" value="' . $param['w_hide_label'] . '" name="' . $id . '_hide_labelform_id_temp" id="' . $id . '_hide_labelform_id_temp"/></div><div style="display: table-cell; vertical-align: middle;"><div class="captcha_refresh" id="_element_refreshform_id_temp" onclick="captcha_refresh("_wd_arithmetic_captcha","form_id_temp")" ' . $param['attributes'] . '></div></div></div></div></div></div>';
|
2195 |
break;
|
139 |
* @return stdClass
|
140 |
*/
|
141 |
public function get_row_data_new( $id = 0 ) {
|
142 |
+
$fm_nonce = wp_create_nonce('fm_ajax_nonce');
|
143 |
global $wpdb;
|
144 |
if ( $id != 0 ) {
|
145 |
$row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker_backup WHERE backup_id="%d"', $id));
|
2144 |
$rep = '<div id="wdform_field' . $id . '" type="type_captcha" class="wdform_field" style="display: table-cell;">' . $arrows . '<div align="left" id="' . $id . '_label_sectionform_id_temp" class="' . $param['w_class'] . '" style="display:' . $display_label . '; width: ' . $param['w_field_label_size'] . 'px;"><span id="' . $id . '_element_labelform_id_temp" class="label" style="vertical-align: top;">' . $label . '</span></div><div align="left" id="' . $id . '_element_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $param['w_field_label_pos'] . ';"><input type="hidden" value="type_captcha" name="' . $id . '_typeform_id_temp" id="' . $id . '_typeform_id_temp"><div style="display: table;"><div style="display: table-row;"><div valign="middle" style="display: table-cell;"><img type="captcha" digit="' . $param['w_digit'] . '" src="' . add_query_arg(array(
|
2145 |
'action' => 'formmakerwdcaptcha' . WDFMInstance(self::PLUGIN)->plugin_postfix,
|
2146 |
'digit' => $param['w_digit'],
|
2147 |
+
'nonce' => $fm_nonce,
|
2148 |
'i' => 'form_id_temp',
|
2149 |
), admin_url('admin-ajax.php')) . '" id="_wd_captchaform_id_temp" class="captcha_img" onclick="captcha_refresh("_wd_captcha","form_id_temp")" ' . $param['attributes'] . '></div><div valign="middle" style="display: table-cell;"><div class="captcha_refresh" id="_element_refreshform_id_temp" onclick="captcha_refresh("_wd_captcha","form_id_temp")" ' . $param['attributes'] . '></div></div></div><div style="display: table-row;"><div style="display: table-cell;"><input type="text" class="captcha_input" id="_wd_captcha_inputform_id_temp" name="captcha_input" style="width: ' . ($param['w_digit'] * 10 + 15) . 'px;" ' . $param['attributes'] . ' disabled/><input type="hidden" value="' . $param['w_hide_label'] . '" name="' . $id . '_hide_labelform_id_temp" id="' . $id . '_hide_labelform_id_temp"/></div></div></div></div></div>';
|
2150 |
break;
|
2192 |
'action' => 'formmakerwdmathcaptcha' . WDFMInstance(self::PLUGIN)->plugin_postfix,
|
2193 |
'operations_count' => $param['w_count'],
|
2194 |
'operations' => urlencode($param['w_operations']),
|
2195 |
+
'nonce' => $fm_nonce,
|
2196 |
'i' => 'form_id_temp',
|
2197 |
), admin_url('admin-ajax.php')) . '" id="_wd_arithmetic_captchaform_id_temp" class="arithmetic_captcha_img" onclick="captcha_refresh("_wd_arithmetic_captcha","form_id_temp")" ' . $param['attributes'] . '></div><div style="display: table-cell;"><input type="text" class="arithmetic_captcha_input" id="_wd_arithmetic_captcha_inputform_id_temp" name="arithmetic_captcha_input" onkeypress="return check_isnum(event)" style="width: ' . $param['w_input_size'] . 'px;" ' . $param['attributes'] . ' disabled/><input type="hidden" value="' . $param['w_hide_label'] . '" name="' . $id . '_hide_labelform_id_temp" id="' . $id . '_hide_labelform_id_temp"/></div><div style="display: table-cell; vertical-align: middle;"><div class="captcha_refresh" id="_element_refreshform_id_temp" onclick="captcha_refresh("_wd_arithmetic_captcha","form_id_temp")" ' . $param['attributes'] . '></div></div></div></div></div></div>';
|
2198 |
break;
|
admin/models/Uninstall_fm.php
CHANGED
@@ -23,6 +23,9 @@ class FMModelUninstall_fm extends FMAdminModel {
|
|
23 |
delete_option('fmc_settings');
|
24 |
delete_option('fm_subscribe_done');
|
25 |
delete_option('cfm_subscribe_done');
|
|
|
|
|
|
|
26 |
wp_delete_post($email_verification_post_id);
|
27 |
|
28 |
// Delete form js and css files.
|
23 |
delete_option('fmc_settings');
|
24 |
delete_option('fm_subscribe_done');
|
25 |
delete_option('cfm_subscribe_done');
|
26 |
+
delete_option('tenweb_notice_status');
|
27 |
+
delete_option('tenweb_notice_version');
|
28 |
+
delete_option('wd_bk_notice_status');
|
29 |
wp_delete_post($email_verification_post_id);
|
30 |
|
31 |
// Delete form js and css files.
|
admin/views/FMProductOption.php
CHANGED
@@ -10,6 +10,7 @@ class FMViewProduct_option extends FMAdminView {
|
|
10 |
* @param array $params
|
11 |
*/
|
12 |
public function display( $params = array() ) {
|
|
|
13 |
$field_id = $params['field_id'];
|
14 |
$property_id = $params['property_id'];
|
15 |
$url_for_ajax = $params['url_for_ajax'];
|
@@ -149,7 +150,7 @@ class FMViewProduct_option extends FMAdminView {
|
|
149 |
li_label.setAttribute("id", 'label_property_' + i);
|
150 |
li_label.style.cssText = "font-weight:bold; font-size: 13px";
|
151 |
var li_edit = document.createElement('a');
|
152 |
-
li_edit.setAttribute("onclick", "tb_show('', 'admin-ajax.php?action=product_option&field_id=<?php echo $field_id; ?>&property_id=" + i + "&width=530&height=370&TB_iframe=1')");
|
153 |
li_edit.setAttribute("class", "thickbox-preview" + i);
|
154 |
var li_edit_img = document.createElement('span');
|
155 |
li_edit_img.setAttribute("class", 'fm-edit-attribute fm-ico-edit');
|
10 |
* @param array $params
|
11 |
*/
|
12 |
public function display( $params = array() ) {
|
13 |
+
$fm_nonce = wp_create_nonce('fm_ajax_nonce');
|
14 |
$field_id = $params['field_id'];
|
15 |
$property_id = $params['property_id'];
|
16 |
$url_for_ajax = $params['url_for_ajax'];
|
150 |
li_label.setAttribute("id", 'label_property_' + i);
|
151 |
li_label.style.cssText = "font-weight:bold; font-size: 13px";
|
152 |
var li_edit = document.createElement('a');
|
153 |
+
li_edit.setAttribute("onclick", "tb_show('', 'admin-ajax.php?action=product_option&nonce=<?php echo $fm_nonce;?>&field_id=<?php echo $field_id; ?>&property_id=" + i + "&width=530&height=370&TB_iframe=1')");
|
154 |
li_edit.setAttribute("class", "thickbox-preview" + i);
|
155 |
var li_edit_img = document.createElement('span');
|
156 |
li_edit_img.setAttribute("class", 'fm-edit-attribute fm-ico-edit');
|
admin/views/FMSelectDataFromDb.php
CHANGED
@@ -9,7 +9,9 @@ class FMViewSelect_data_from_db extends FMAdminView {
|
|
9 |
*
|
10 |
* @param array $params
|
11 |
*/
|
|
|
12 |
public function display( $params = array() ) {
|
|
|
13 |
wp_print_scripts('jquery');
|
14 |
wp_print_styles(WDFMInstance(self::PLUGIN)->handle_prefix . '-tables');
|
15 |
wp_print_styles(WDFMInstance(self::PLUGIN)->handle_prefix . '-jquery-ui');
|
@@ -35,6 +37,7 @@ class FMViewSelect_data_from_db extends FMAdminView {
|
|
35 |
'task' => 'db_tables',
|
36 |
'width' => '1000',
|
37 |
'height' => '500',
|
|
|
38 |
'TB_iframe' => '1',
|
39 |
), admin_url('admin-ajax.php')); ?>",
|
40 |
data: 'con_type=' + jQuery('input[name=con_type]:checked').val() + '&con_method=' + jQuery('input[name=con_method]:checked').val() + '&host=' + jQuery('#host_rem').val() + '&port=' + jQuery('#port_rem').val() + '&username=' + jQuery('#username_rem').val() + '&password=' + jQuery('#password_rem').val() + '&database=' + jQuery('#database_rem').val() + '&field_type=' + jQuery('#field_type').val() + '&format=row',
|
@@ -630,6 +633,7 @@ class FMViewSelect_data_from_db extends FMAdminView {
|
|
630 |
* @param array $params
|
631 |
*/
|
632 |
public function db_tables( $params = array() ) {
|
|
|
633 |
$form_id = $params['form_id'];
|
634 |
$field_type = $params['field_type'];
|
635 |
$tables = $params['tables'];
|
@@ -656,6 +660,7 @@ class FMViewSelect_data_from_db extends FMAdminView {
|
|
656 |
'task' => 'db_table_struct_select',
|
657 |
'width' => '1000',
|
658 |
'height' => '500',
|
|
|
659 |
'TB_iframe' => '1',
|
660 |
), admin_url('admin-ajax.php')); ?>",
|
661 |
data: 'name=' + jQuery(this).val() + '&con_type=' + jQuery('input[name=con_type]:checked').val() + '&con_method=' + jQuery('input[name=con_method]:checked').val() + '&host=' + jQuery('#host_rem').val() + '&port=' + jQuery('#port_rem').val() + '&username=' + jQuery('#username_rem').val() + '&password=' + jQuery('#password_rem').val() + '&database=' + jQuery('#database_rem').val() + '&format=row&field_type=' + jQuery('#field_type').val(),
|
9 |
*
|
10 |
* @param array $params
|
11 |
*/
|
12 |
+
private $fm_nonce = null;
|
13 |
public function display( $params = array() ) {
|
14 |
+
$this->fm_nonce = wp_create_nonce('fm_ajax_nonce');
|
15 |
wp_print_scripts('jquery');
|
16 |
wp_print_styles(WDFMInstance(self::PLUGIN)->handle_prefix . '-tables');
|
17 |
wp_print_styles(WDFMInstance(self::PLUGIN)->handle_prefix . '-jquery-ui');
|
37 |
'task' => 'db_tables',
|
38 |
'width' => '1000',
|
39 |
'height' => '500',
|
40 |
+
'nonce' => $this->fm_nonce,
|
41 |
'TB_iframe' => '1',
|
42 |
), admin_url('admin-ajax.php')); ?>",
|
43 |
data: 'con_type=' + jQuery('input[name=con_type]:checked').val() + '&con_method=' + jQuery('input[name=con_method]:checked').val() + '&host=' + jQuery('#host_rem').val() + '&port=' + jQuery('#port_rem').val() + '&username=' + jQuery('#username_rem').val() + '&password=' + jQuery('#password_rem').val() + '&database=' + jQuery('#database_rem').val() + '&field_type=' + jQuery('#field_type').val() + '&format=row',
|
633 |
* @param array $params
|
634 |
*/
|
635 |
public function db_tables( $params = array() ) {
|
636 |
+
$this->fm_nonce = wp_create_nonce('fm_ajax_nonce');
|
637 |
$form_id = $params['form_id'];
|
638 |
$field_type = $params['field_type'];
|
639 |
$tables = $params['tables'];
|
660 |
'task' => 'db_table_struct_select',
|
661 |
'width' => '1000',
|
662 |
'height' => '500',
|
663 |
+
'nonce' => $this->fm_nonce,
|
664 |
'TB_iframe' => '1',
|
665 |
), admin_url('admin-ajax.php')); ?>",
|
666 |
data: 'name=' + jQuery(this).val() + '&con_type=' + jQuery('input[name=con_type]:checked').val() + '&con_method=' + jQuery('input[name=con_method]:checked').val() + '&host=' + jQuery('#host_rem').val() + '&port=' + jQuery('#port_rem').val() + '&username=' + jQuery('#username_rem').val() + '&password=' + jQuery('#password_rem').val() + '&database=' + jQuery('#database_rem').val() + '&format=row&field_type=' + jQuery('#field_type').val(),
|
admin/views/FMSqlMapping.php
CHANGED
@@ -2,7 +2,9 @@
|
|
2 |
|
3 |
class FMViewFormMakerSQLMapping extends FMAdminView {
|
4 |
|
|
|
5 |
public function __construct() {
|
|
|
6 |
wp_print_scripts('jquery');
|
7 |
wp_print_scripts('jquery-ui-tooltip');
|
8 |
wp_print_styles(WDFMInstance(self::PLUGIN)->handle_prefix . '-tables');
|
@@ -253,6 +255,7 @@ class FMViewFormMakerSQLMapping extends FMAdminView {
|
|
253 |
'task' => 'update_query',
|
254 |
'width' => '1000',
|
255 |
'height' => '500',
|
|
|
256 |
'TB_iframe' => '1',
|
257 |
), admin_url('admin-ajax.php')); ?>",
|
258 |
data: datatxt,
|
@@ -981,9 +984,10 @@ class FMViewFormMakerSQLMapping extends FMAdminView {
|
|
981 |
'task' => 'db_tables',
|
982 |
'width' => '1000',
|
983 |
'height' => '500',
|
|
|
984 |
'TB_iframe' => '1',
|
985 |
), admin_url('admin-ajax.php')); ?>",
|
986 |
-
data: 'con_type=' + jQuery('input[name=con_type]:checked').val() + '&con_method=' + jQuery('input[name=con_method]:checked').val() + '&host=' + jQuery('#host_rem').val() + '&port=' + jQuery('#port_rem').val() + '&username=' + jQuery('#username_rem').val() + '&password=' + jQuery('#password_rem').val() + '&database=' + jQuery('#database_rem').val() + '&format=row',
|
987 |
success: function (data) {
|
988 |
jQuery("#struct").removeClass("fm_loading");
|
989 |
if (data == 1) {
|
@@ -1207,9 +1211,10 @@ class FMViewFormMakerSQLMapping extends FMAdminView {
|
|
1207 |
'task' => 'db_table_struct',
|
1208 |
'width' => '1000',
|
1209 |
'height' => '500',
|
|
|
1210 |
'TB_iframe' => '1',
|
1211 |
), admin_url('admin-ajax.php')); ?>",
|
1212 |
-
data: 'name=' + jQuery(this).val() + '&con_type=' + jQuery('input[name=con_type]:checked').val() + '&con_method=' + jQuery('input[name=con_method]:checked').val() + '&host=' + jQuery('#host_rem').val() + '&port=' + jQuery('#port_rem').val() + '&username=' + jQuery('#username_rem').val() + '&password=' + jQuery('#password_rem').val() + '&database=' + jQuery('#database_rem').val() + '&format=row',
|
1213 |
success: function (data) {
|
1214 |
jQuery("#table_struct").removeClass("fm_loading");
|
1215 |
jQuery("#table_struct").html(data);
|
@@ -1430,7 +1435,7 @@ class FMViewFormMakerSQLMapping extends FMAdminView {
|
|
1430 |
gen_query();
|
1431 |
}
|
1432 |
jQuery('#details').val(str);
|
1433 |
-
var datatxt = jQuery("#query_form").serialize() + '&form_id=' + jQuery("#form_id").val();
|
1434 |
if (jQuery('#query_txt').val()) {
|
1435 |
jQuery('.c1').html('<div class="fm-loading-container"><div class="fm-loading-content"></div></div>');
|
1436 |
jQuery.ajax({
|
@@ -1442,6 +1447,7 @@ class FMViewFormMakerSQLMapping extends FMAdminView {
|
|
1442 |
'task' => 'save_query',
|
1443 |
'width' => '1000',
|
1444 |
'height' => '500',
|
|
|
1445 |
'TB_iframe' => '1',
|
1446 |
), admin_url('admin-ajax.php')); ?>",
|
1447 |
data: datatxt,
|
2 |
|
3 |
class FMViewFormMakerSQLMapping extends FMAdminView {
|
4 |
|
5 |
+
private $fm_nonce = null;
|
6 |
public function __construct() {
|
7 |
+
$this->fm_nonce = wp_create_nonce('fm_ajax_nonce');
|
8 |
wp_print_scripts('jquery');
|
9 |
wp_print_scripts('jquery-ui-tooltip');
|
10 |
wp_print_styles(WDFMInstance(self::PLUGIN)->handle_prefix . '-tables');
|
255 |
'task' => 'update_query',
|
256 |
'width' => '1000',
|
257 |
'height' => '500',
|
258 |
+
'nonce' => $this->fm_nonce,
|
259 |
'TB_iframe' => '1',
|
260 |
), admin_url('admin-ajax.php')); ?>",
|
261 |
data: datatxt,
|
984 |
'task' => 'db_tables',
|
985 |
'width' => '1000',
|
986 |
'height' => '500',
|
987 |
+
'nonce' => $this->fm_nonce,
|
988 |
'TB_iframe' => '1',
|
989 |
), admin_url('admin-ajax.php')); ?>",
|
990 |
+
data: 'con_type=' + jQuery('input[name=con_type]:checked').val() + '&con_method=' + jQuery('input[name=con_method]:checked').val() + '&host=' + jQuery('#host_rem').val() + '&port=' + jQuery('#port_rem').val() + '&username=' + jQuery('#username_rem').val() + '&password=' + jQuery('#password_rem').val() + '&database=' + jQuery('#database_rem').val() + '&format=row&nonce=<?php echo $this->fm_nonce; ?>',
|
991 |
success: function (data) {
|
992 |
jQuery("#struct").removeClass("fm_loading");
|
993 |
if (data == 1) {
|
1211 |
'task' => 'db_table_struct',
|
1212 |
'width' => '1000',
|
1213 |
'height' => '500',
|
1214 |
+
'nonce' => $this->fm_nonce,
|
1215 |
'TB_iframe' => '1',
|
1216 |
), admin_url('admin-ajax.php')); ?>",
|
1217 |
+
data: 'name=' + jQuery(this).val() + '&con_type=' + jQuery('input[name=con_type]:checked').val() + '&con_method=' + jQuery('input[name=con_method]:checked').val() + '&host=' + jQuery('#host_rem').val() + '&port=' + jQuery('#port_rem').val() + '&username=' + jQuery('#username_rem').val() + '&password=' + jQuery('#password_rem').val() + '&database=' + jQuery('#database_rem').val() + '&format=row&nonce=<?php echo $this->fm_nonce; ?>',
|
1218 |
success: function (data) {
|
1219 |
jQuery("#table_struct").removeClass("fm_loading");
|
1220 |
jQuery("#table_struct").html(data);
|
1435 |
gen_query();
|
1436 |
}
|
1437 |
jQuery('#details').val(str);
|
1438 |
+
var datatxt = jQuery("#query_form").serialize() + '&form_id=' + jQuery("#form_id").val()+'&nonce=<?php echo $this->fm_nonce?>';
|
1439 |
if (jQuery('#query_txt').val()) {
|
1440 |
jQuery('.c1').html('<div class="fm-loading-container"><div class="fm-loading-content"></div></div>');
|
1441 |
jQuery.ajax({
|
1447 |
'task' => 'save_query',
|
1448 |
'width' => '1000',
|
1449 |
'height' => '500',
|
1450 |
+
'nonce' => $this->fm_nonce,
|
1451 |
'TB_iframe' => '1',
|
1452 |
), admin_url('admin-ajax.php')); ?>",
|
1453 |
data: datatxt,
|
admin/views/Manage_fm.php
CHANGED
@@ -4,7 +4,9 @@ class FMViewManage_fm extends FMAdminView {
|
|
4 |
/**
|
5 |
* FMViewManage_fm constructor.
|
6 |
*/
|
|
|
7 |
public function __construct() {
|
|
|
8 |
wp_enqueue_style(WDFMInstance(self::PLUGIN)->handle_prefix . '-tables');
|
9 |
wp_enqueue_style(WDFMInstance(self::PLUGIN)->handle_prefix . '-icons');
|
10 |
|
@@ -416,15 +418,15 @@ class FMViewManage_fm extends FMAdminView {
|
|
416 |
<li id="form_header_tab"><a href="#form_header_tab_content"><?php _e('Form Header', WDFMInstance(self::PLUGIN)->prefix); ?></a></li>
|
417 |
|
418 |
<?php if( $id ) { ?>
|
419 |
-
<li id="form_email_options_tab"><a href="<?php echo add_query_arg(array('action' => 'manage' . WDFMInstance(self::PLUGIN)->menu_postfix, 'task' => 'email_options', 'current_id' => $id), admin_url('admin-ajax.php')) ?>"><?php _e('Email Options', WDFMInstance(self::PLUGIN)->prefix); ?></a></li>
|
420 |
-
<li id="form_display_tab"><a href="<?php echo add_query_arg(array('action' => 'manage' . WDFMInstance(self::PLUGIN)->menu_postfix, 'task' => 'display_options', 'current_id' => $id), admin_url('admin-ajax.php')) ?>"><?php _e('Appearance', WDFMInstance(self::PLUGIN)->prefix); ?></a></li>
|
421 |
<?php if (!empty($params['advanced_layout_url'])) { ?>
|
422 |
-
<li id="form_layout_tab"><a href="<?php echo add_query_arg(array('action' => 'manage' . WDFMInstance(self::PLUGIN)->menu_postfix, 'task' => 'form_layout', 'current_id' => $id), admin_url('admin-ajax.php')) ?>"><?php _e('Layout', WDFMInstance(self::PLUGIN)->prefix); ?></a></li>
|
423 |
<?php } ?>
|
424 |
<?php } ?>
|
425 |
<?php if( $id ) { ?>
|
426 |
|
427 |
-
<li id="form_options_tab"><a href="<?php echo add_query_arg(array('action' => 'manage' . WDFMInstance(self::PLUGIN)->menu_postfix, 'task' => 'form_options', 'current_id' => $id, 'fieldset_id' => $fieldset_id), admin_url('admin-ajax.php')) ?>"><span class="tab-label"><?php _e('Settings', WDFMInstance(self::PLUGIN)->prefix); ?></span></a></li>
|
428 |
<?php } ?>
|
429 |
</ul>
|
430 |
<div id="form_edit_tab_content">
|
@@ -614,7 +616,6 @@ class FMViewManage_fm extends FMAdminView {
|
|
614 |
<label class="wd-label-radio" for="header_hide-1"><?php _e('Yes', WDFMInstance(self::PLUGIN)->prefix); ?></label>
|
615 |
<input type="radio" id="header_hide-0" class="wd-radio" name="header_hide" value="0" data-initial-value="<?php echo $row->header_hide; ?>" <?php echo $row->header_hide == '0' ? 'checked="checked"' : '' ?> />
|
616 |
<label class="wd-label-radio" for="header_hide-0"><?php _e('No', WDFMInstance(self::PLUGIN)->prefix); ?></label>
|
617 |
-
<p class="description"><?php _e('If you enable this option, the header doesn\'t appear in frontend.', WDFMInstance(self::PLUGIN)->prefix); ?></p>
|
618 |
</div>
|
619 |
</div>
|
620 |
</div>
|
@@ -1016,6 +1017,7 @@ class FMViewManage_fm extends FMAdminView {
|
|
1016 |
<a target="_blank" href="<?php echo add_query_arg(array(
|
1017 |
'post' => $params["mail_ver_id"],
|
1018 |
'action' => 'edit',
|
|
|
1019 |
), admin_url('post.php')); ?>"><?php _e('Edit post', WDFMInstance(self::PLUGIN)->prefix); ?></a>
|
1020 |
<p class="description"><?php _e('Use this option to specify a time period (hours), during which the user will be able to verify their email address.', WDFMInstance(self::PLUGIN)->prefix); ?></p>
|
1021 |
</div>
|
@@ -1913,7 +1915,8 @@ class FMViewManage_fm extends FMAdminView {
|
|
1913 |
'form_id' => $row->id,
|
1914 |
'width' => '1000',
|
1915 |
'height' => '500',
|
1916 |
-
|
|
|
1917 |
), admin_url('admin-ajax.php')); ?>'); return false;"><?php _e('Add Query', WDFMInstance(self::PLUGIN)->prefix); ?></button>
|
1918 |
</div>
|
1919 |
<?php if ( $queries ) { ?>
|
@@ -1933,7 +1936,8 @@ class FMViewManage_fm extends FMAdminView {
|
|
1933 |
'form_id' => $row->id,
|
1934 |
'width' => '1000',
|
1935 |
'height' => '500',
|
1936 |
-
'
|
|
|
1937 |
), admin_url('admin-ajax.php'));
|
1938 |
$remove_query = add_query_arg(array(
|
1939 |
'task' => 'remove_query',
|
4 |
/**
|
5 |
* FMViewManage_fm constructor.
|
6 |
*/
|
7 |
+
private $fm_nonce = null;
|
8 |
public function __construct() {
|
9 |
+
$this->fm_nonce = wp_create_nonce('fm_ajax_nonce');
|
10 |
wp_enqueue_style(WDFMInstance(self::PLUGIN)->handle_prefix . '-tables');
|
11 |
wp_enqueue_style(WDFMInstance(self::PLUGIN)->handle_prefix . '-icons');
|
12 |
|
418 |
<li id="form_header_tab"><a href="#form_header_tab_content"><?php _e('Form Header', WDFMInstance(self::PLUGIN)->prefix); ?></a></li>
|
419 |
|
420 |
<?php if( $id ) { ?>
|
421 |
+
<li id="form_email_options_tab"><a href="<?php echo add_query_arg(array('action' => 'manage' . WDFMInstance(self::PLUGIN)->menu_postfix, 'task' => 'email_options', 'current_id' => $id, 'nonce' => $this->fm_nonce), admin_url('admin-ajax.php')) ?>"><?php _e('Email Options', WDFMInstance(self::PLUGIN)->prefix); ?></a></li>
|
422 |
+
<li id="form_display_tab"><a href="<?php echo add_query_arg(array('action' => 'manage' . WDFMInstance(self::PLUGIN)->menu_postfix, 'task' => 'display_options', 'current_id' => $id, 'nonce' => $this->fm_nonce), admin_url('admin-ajax.php')) ?>"><?php _e('Appearance', WDFMInstance(self::PLUGIN)->prefix); ?></a></li>
|
423 |
<?php if (!empty($params['advanced_layout_url'])) { ?>
|
424 |
+
<li id="form_layout_tab"><a href="<?php echo add_query_arg(array('action' => 'manage' . WDFMInstance(self::PLUGIN)->menu_postfix, 'task' => 'form_layout', 'current_id' => $id, 'nonce' => $this->fm_nonce), admin_url('admin-ajax.php')) ?>"><?php _e('Layout', WDFMInstance(self::PLUGIN)->prefix); ?></a></li>
|
425 |
<?php } ?>
|
426 |
<?php } ?>
|
427 |
<?php if( $id ) { ?>
|
428 |
|
429 |
+
<li id="form_options_tab"><a href="<?php echo add_query_arg(array('action' => 'manage' . WDFMInstance(self::PLUGIN)->menu_postfix, 'task' => 'form_options', 'current_id' => $id, 'fieldset_id' => $fieldset_id, 'nonce' => $this->fm_nonce), admin_url('admin-ajax.php')) ?>"><span class="tab-label"><?php _e('Settings', WDFMInstance(self::PLUGIN)->prefix); ?></span></a></li>
|
430 |
<?php } ?>
|
431 |
</ul>
|
432 |
<div id="form_edit_tab_content">
|
616 |
<label class="wd-label-radio" for="header_hide-1"><?php _e('Yes', WDFMInstance(self::PLUGIN)->prefix); ?></label>
|
617 |
<input type="radio" id="header_hide-0" class="wd-radio" name="header_hide" value="0" data-initial-value="<?php echo $row->header_hide; ?>" <?php echo $row->header_hide == '0' ? 'checked="checked"' : '' ?> />
|
618 |
<label class="wd-label-radio" for="header_hide-0"><?php _e('No', WDFMInstance(self::PLUGIN)->prefix); ?></label>
|
|
|
619 |
</div>
|
620 |
</div>
|
621 |
</div>
|
1017 |
<a target="_blank" href="<?php echo add_query_arg(array(
|
1018 |
'post' => $params["mail_ver_id"],
|
1019 |
'action' => 'edit',
|
1020 |
+
'nonce'=>$this->fm_nonce,
|
1021 |
), admin_url('post.php')); ?>"><?php _e('Edit post', WDFMInstance(self::PLUGIN)->prefix); ?></a>
|
1022 |
<p class="description"><?php _e('Use this option to specify a time period (hours), during which the user will be able to verify their email address.', WDFMInstance(self::PLUGIN)->prefix); ?></p>
|
1023 |
</div>
|
1915 |
'form_id' => $row->id,
|
1916 |
'width' => '1000',
|
1917 |
'height' => '500',
|
1918 |
+
'nonce' => $this->fm_nonce,
|
1919 |
+
'TB_iframe' => '1',
|
1920 |
), admin_url('admin-ajax.php')); ?>'); return false;"><?php _e('Add Query', WDFMInstance(self::PLUGIN)->prefix); ?></button>
|
1921 |
</div>
|
1922 |
<?php if ( $queries ) { ?>
|
1936 |
'form_id' => $row->id,
|
1937 |
'width' => '1000',
|
1938 |
'height' => '500',
|
1939 |
+
'nonce'=>$this->fm_nonce,
|
1940 |
+
'TB_iframe' => '1',
|
1941 |
), admin_url('admin-ajax.php'));
|
1942 |
$remove_query = add_query_arg(array(
|
1943 |
'task' => 'remove_query',
|
admin/views/Submissions_fm.php
CHANGED
@@ -5,8 +5,9 @@
|
|
5 |
class FMViewSubmissions_fm extends FMAdminView {
|
6 |
|
7 |
private $model;
|
8 |
-
|
9 |
public function __construct( $model = array() ) {
|
|
|
10 |
$this->model = $model;
|
11 |
wp_enqueue_style('thickbox');
|
12 |
wp_enqueue_style(WDFMInstance(self::PLUGIN)->handle_prefix . '-tables');
|
@@ -479,6 +480,7 @@ class FMViewSubmissions_fm extends FMAdminView {
|
|
479 |
'form_id' => $form_id,
|
480 |
'width' => '600',
|
481 |
'height' => '500',
|
|
|
482 |
'TB_iframe' => '1',
|
483 |
), admin_url('admin-ajax.php'));
|
484 |
|
@@ -492,6 +494,7 @@ class FMViewSubmissions_fm extends FMAdminView {
|
|
492 |
'data_ip' => $data->ip,
|
493 |
'width' => '450',
|
494 |
'height' => '300',
|
|
|
495 |
'TB_iframe' => '1',
|
496 |
), admin_url('admin-ajax.php'));
|
497 |
|
@@ -549,6 +552,7 @@ class FMViewSubmissions_fm extends FMAdminView {
|
|
549 |
'lat' => $map_params[1],
|
550 |
'width' => '620',
|
551 |
'height' => '550',
|
|
|
552 |
'TB_iframe' => '1',
|
553 |
), admin_url('admin-ajax.php')); ?>" title="<?php _e("Show on Map", WDFMInstance(self::PLUGIN)->prefix); ?>"><?php _e("Show on Map", WDFMInstance(self::PLUGIN)->prefix); ?></a>
|
554 |
</td>
|
@@ -588,6 +592,7 @@ class FMViewSubmissions_fm extends FMAdminView {
|
|
588 |
'matrix_params' => str_replace('#', '%23', urlencode($temp[$g]->element_value)),
|
589 |
'width' => '620',
|
590 |
'height' => '550',
|
|
|
591 |
'TB_iframe' => '1',
|
592 |
), admin_url('admin-ajax.php')); ?>" title="<?php _e("Show Matrix", WDFMInstance(self::PLUGIN)->prefix); ?>"><?php _e("Show Matrix", WDFMInstance(self::PLUGIN)->prefix); ?></a>
|
593 |
</td>
|
@@ -672,6 +677,7 @@ class FMViewSubmissions_fm extends FMAdminView {
|
|
672 |
'id' => $i,
|
673 |
'width' => '600',
|
674 |
'height' => '500',
|
|
|
675 |
'TB_iframe' => '1',
|
676 |
), admin_url('admin-ajax.php')); ?>" title="<?php _e("Paypal information", WDFMInstance(self::PLUGIN)->prefix); ?>">
|
677 |
<img src="<?php echo WDFMInstance(self::PLUGIN)->plugin_url . '/images/info.png'; ?>" />
|
@@ -746,7 +752,7 @@ class FMViewSubmissions_fm extends FMAdminView {
|
|
746 |
<div id="div_stats"></div>
|
747 |
</div>
|
748 |
<script>
|
749 |
-
show_stats_url = "<?php echo add_query_arg( array('action' => 'get_stats' . WDFMInstance(self::PLUGIN)->plugin_postfix, 'task' => 'show_stats', 'current_id' => $form_id ), $page_url); ?>";
|
750 |
</script>
|
751 |
<?php
|
752 |
}
|
@@ -890,6 +896,7 @@ class FMViewSubmissions_fm extends FMAdminView {
|
|
890 |
url: "<?php echo add_query_arg(array(
|
891 |
'form_id' => $form_id,
|
892 |
'send_header' => 0,
|
|
|
893 |
), admin_url('admin-ajax.php')); ?>&action=generete_" + type + "<?php echo WDFMInstance(self::PLUGIN)->plugin_postfix; ?>&limitstart=" + limitstart,
|
894 |
data: {
|
895 |
page_num: page_num,
|
@@ -963,6 +970,7 @@ class FMViewSubmissions_fm extends FMAdminView {
|
|
963 |
window.location = "<?php echo add_query_arg(array(
|
964 |
'form_id' => $form_id,
|
965 |
'send_header' => 1,
|
|
|
966 |
), admin_url('admin-ajax.php')); ?>&action=generete_" + type + "<?php echo WDFMInstance(self::PLUGIN)->plugin_postfix; ?>&limitstart=" + limitstart;
|
967 |
|
968 |
}
|
5 |
class FMViewSubmissions_fm extends FMAdminView {
|
6 |
|
7 |
private $model;
|
8 |
+
private $fm_nonce = null;
|
9 |
public function __construct( $model = array() ) {
|
10 |
+
$this->fm_nonce = wp_create_nonce('fm_ajax_nonce');
|
11 |
$this->model = $model;
|
12 |
wp_enqueue_style('thickbox');
|
13 |
wp_enqueue_style(WDFMInstance(self::PLUGIN)->handle_prefix . '-tables');
|
480 |
'form_id' => $form_id,
|
481 |
'width' => '600',
|
482 |
'height' => '500',
|
483 |
+
'nonce' => $this->fm_nonce,
|
484 |
'TB_iframe' => '1',
|
485 |
), admin_url('admin-ajax.php'));
|
486 |
|
494 |
'data_ip' => $data->ip,
|
495 |
'width' => '450',
|
496 |
'height' => '300',
|
497 |
+
'nonce' => $this->fm_nonce,
|
498 |
'TB_iframe' => '1',
|
499 |
), admin_url('admin-ajax.php'));
|
500 |
|
552 |
'lat' => $map_params[1],
|
553 |
'width' => '620',
|
554 |
'height' => '550',
|
555 |
+
'nonce' => $this->fm_nonce,
|
556 |
'TB_iframe' => '1',
|
557 |
), admin_url('admin-ajax.php')); ?>" title="<?php _e("Show on Map", WDFMInstance(self::PLUGIN)->prefix); ?>"><?php _e("Show on Map", WDFMInstance(self::PLUGIN)->prefix); ?></a>
|
558 |
</td>
|
592 |
'matrix_params' => str_replace('#', '%23', urlencode($temp[$g]->element_value)),
|
593 |
'width' => '620',
|
594 |
'height' => '550',
|
595 |
+
'nonce' => $this->fm_nonce,
|
596 |
'TB_iframe' => '1',
|
597 |
), admin_url('admin-ajax.php')); ?>" title="<?php _e("Show Matrix", WDFMInstance(self::PLUGIN)->prefix); ?>"><?php _e("Show Matrix", WDFMInstance(self::PLUGIN)->prefix); ?></a>
|
598 |
</td>
|
677 |
'id' => $i,
|
678 |
'width' => '600',
|
679 |
'height' => '500',
|
680 |
+
'nonce' => $this->fm_nonce,
|
681 |
'TB_iframe' => '1',
|
682 |
), admin_url('admin-ajax.php')); ?>" title="<?php _e("Paypal information", WDFMInstance(self::PLUGIN)->prefix); ?>">
|
683 |
<img src="<?php echo WDFMInstance(self::PLUGIN)->plugin_url . '/images/info.png'; ?>" />
|
752 |
<div id="div_stats"></div>
|
753 |
</div>
|
754 |
<script>
|
755 |
+
show_stats_url = "<?php echo add_query_arg( array('action' => 'get_stats' . WDFMInstance(self::PLUGIN)->plugin_postfix, 'task' => 'show_stats', 'nonce' => $this->fm_nonce, 'current_id' => $form_id ), $page_url); ?>";
|
756 |
</script>
|
757 |
<?php
|
758 |
}
|
896 |
url: "<?php echo add_query_arg(array(
|
897 |
'form_id' => $form_id,
|
898 |
'send_header' => 0,
|
899 |
+
'nonce' => $this->fm_nonce,
|
900 |
), admin_url('admin-ajax.php')); ?>&action=generete_" + type + "<?php echo WDFMInstance(self::PLUGIN)->plugin_postfix; ?>&limitstart=" + limitstart,
|
901 |
data: {
|
902 |
page_num: page_num,
|
970 |
window.location = "<?php echo add_query_arg(array(
|
971 |
'form_id' => $form_id,
|
972 |
'send_header' => 1,
|
973 |
+
'nonce' => $this->fm_nonce,
|
974 |
), admin_url('admin-ajax.php')); ?>&action=generete_" + type + "<?php echo WDFMInstance(self::PLUGIN)->plugin_postfix; ?>&limitstart=" + limitstart;
|
975 |
|
976 |
}
|
admin/views/view.php
CHANGED
@@ -442,7 +442,6 @@ class FMAdminView {
|
|
442 |
),
|
443 |
);
|
444 |
?>
|
445 |
-
<style>#wpbody-content>div:not(.wrap), .wrap .notice:not(.wd-notice) { display: none; }</style>
|
446 |
<div class="fm-head">
|
447 |
<div><img src="<?php echo WDFMInstance(self::PLUGIN)->plugin_url . '/images/FormMaker.png'; ?>"></div>
|
448 |
<ul class="fm-breadcrumbs">
|
442 |
),
|
443 |
);
|
444 |
?>
|
|
|
445 |
<div class="fm-head">
|
446 |
<div><img src="<?php echo WDFMInstance(self::PLUGIN)->plugin_url . '/images/FormMaker.png'; ?>"></div>
|
447 |
<ul class="fm-breadcrumbs">
|
css/form_maker_tables.css
CHANGED
@@ -5445,4 +5445,12 @@ a.fm_not-active {
|
|
5445 |
.fm-col-4 {
|
5446 |
flex: 0 1 calc(25% - 20px) !important;
|
5447 |
width: calc(25% - 20px) !important;;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5448 |
}
|
5445 |
.fm-col-4 {
|
5446 |
flex: 0 1 calc(25% - 20px) !important;
|
5447 |
width: calc(25% - 20px) !important;;
|
5448 |
+
}
|
5449 |
+
|
5450 |
+
#wpbody-content>div:not(.wrap), .wrap .notice:not(.wd-notice) {
|
5451 |
+
display: none;
|
5452 |
+
}
|
5453 |
+
|
5454 |
+
#wpbody-content #v2_tenweb_notice_cont {
|
5455 |
+
display: flex;
|
5456 |
}
|
form-maker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: https://10web.io/plugins/wordpress-form-maker/
|
5 |
* Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
|
6 |
-
* Version: 1.13.
|
7 |
* Author: 10Web Form Builder Team
|
8 |
* Author URI: https://10web.io/plugins/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -95,8 +95,8 @@ final class WDFM {
|
|
95 |
$this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
|
96 |
$this->front_urls = $this->get_front_urls();
|
97 |
$this->main_file = plugin_basename(__FILE__);
|
98 |
-
$this->plugin_version = '1.13.
|
99 |
-
$this->db_version = '2.13.
|
100 |
$this->menu_postfix = ($this->is_free == 2 ? '_fmc' : '_fm');
|
101 |
$this->plugin_postfix = ($this->is_free == 2 ? '_fmc' : '');
|
102 |
$this->menu_slug = 'manage' . $this->menu_postfix;
|
@@ -309,11 +309,12 @@ final class WDFM {
|
|
309 |
$key = 'tw/form-maker';
|
310 |
$key_submissions = 'tw/fm-submissions';
|
311 |
}
|
|
|
312 |
$plugin_name = $this->nicename;
|
313 |
$plugin_name_submissions = __('Submissions', WDFMInstance(self::PLUGIN)->prefix);
|
314 |
$icon_url = $this->plugin_url . '/images/tw-gb/icon_colored.svg';
|
315 |
$icon_svg = $this->plugin_url . '/images/tw-gb/icon.svg';
|
316 |
-
$url = add_query_arg(array('action' => 'FMShortocde' . $this->plugin_postfix, 'task' => 'submissions'), admin_url('admin-ajax.php'));
|
317 |
$data = WDW_FM_Library(self::PLUGIN)->get_shortcode_data();
|
318 |
$blocks[$key] = array(
|
319 |
'title' => $plugin_name,
|
@@ -665,6 +666,16 @@ final class WDFM {
|
|
665 |
}
|
666 |
wp_register_style($this->handle_prefix . '-pricing', $this->plugin_url . '/css/pricing.css', array(), $this->plugin_version);
|
667 |
wp_register_style($this->handle_prefix . '-icons', $this->plugin_url . '/fonts/style.css', array(), '1.0.0');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
668 |
}
|
669 |
|
670 |
/**
|
@@ -695,6 +706,11 @@ final class WDFM {
|
|
695 |
* admin-ajax actions for admin.
|
696 |
*/
|
697 |
public function form_maker_ajax() {
|
|
|
|
|
|
|
|
|
|
|
698 |
$allowed_pages = array(
|
699 |
'manage' . $this->menu_postfix,
|
700 |
'manage' . $this->plugin_postfix,
|
@@ -747,6 +763,11 @@ final class WDFM {
|
|
747 |
* admin-ajax actions for site.
|
748 |
*/
|
749 |
public function form_maker_ajax_frontend() {
|
|
|
|
|
|
|
|
|
|
|
750 |
$allowed_pages = array(
|
751 |
'form_submissions',
|
752 |
'form_maker',
|
@@ -1014,6 +1035,10 @@ final class WDFM {
|
|
1014 |
'date_validation' => addslashes(__('This is not a valid date value.', $this->prefix)),
|
1015 |
'year_validation' => addslashes(sprintf(__('The year must be between %s and %s', $this->prefix), '%%start%%', '%%end%%')),
|
1016 |
));
|
|
|
|
|
|
|
|
|
1017 |
}
|
1018 |
|
1019 |
/**
|
@@ -1265,15 +1290,16 @@ final class WDFM {
|
|
1265 |
* @return string
|
1266 |
*/
|
1267 |
function media_button($context) {
|
|
|
1268 |
ob_start();
|
1269 |
-
$url = add_query_arg(array('action' => 'FMShortocde' . $this->plugin_postfix, 'task' => 'forms', 'TB_iframe' => '1'), admin_url('admin-ajax.php'));
|
1270 |
?>
|
1271 |
<a onclick="tb_click.call(this); fm_set_shortcode_popup_dimensions(400, 140); return false;" href="<?php echo $url; ?>" class="button" title="<?php _e('Insert Form', $this->prefix); ?>">
|
1272 |
<span class="wp-media-buttons-icon" style="background: url('<?php echo $this->plugin_url; ?>/images/fm-media-form-button.png') no-repeat scroll left top rgba(0, 0, 0, 0);"></span>
|
1273 |
<?php _e('Add Form', $this->prefix); ?>
|
1274 |
</a>
|
1275 |
<?php
|
1276 |
-
$url = add_query_arg(array('action' => 'FMShortocde' . $this->plugin_postfix, 'task' => 'submissions', 'TB_iframe' => '1'), admin_url('admin-ajax.php'));
|
1277 |
?>
|
1278 |
<a onclick="tb_click.call(this); fm_set_shortcode_popup_dimensions(520, 570); return false;" href="<?php echo $url; ?>" class="button" title="<?php _e('Insert submissions', $this->prefix); ?>">
|
1279 |
<span class="wp-media-buttons-icon" style="background: url(<?php echo $this->plugin_url; ?>/images/fm-media-submissions-button.png) no-repeat scroll left top rgba(0, 0, 0, 0);"></span>
|
@@ -1395,120 +1421,361 @@ function wd_form_maker($id, $type = 'embedded') {
|
|
1395 |
echo $form;
|
1396 |
}
|
1397 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1398 |
/**
|
1399 |
-
* Show
|
|
|
|
|
1400 |
*/
|
1401 |
-
function
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
}
|
1406 |
|
1407 |
-
//
|
1408 |
-
if (
|
1409 |
-
|
1410 |
}
|
1411 |
|
1412 |
-
$meta_value = get_option('
|
1413 |
if ( $meta_value === '' || $meta_value === FALSE ) {
|
1414 |
ob_start();
|
1415 |
$prefix = WDFMInstance(1)->prefix;
|
1416 |
-
$nicename = WDFMInstance(1)->nicename;
|
1417 |
$url = WDFMInstance(1)->plugin_url;
|
1418 |
-
$dismiss_url = add_query_arg(array( 'action' => '
|
1419 |
-
$
|
1420 |
?>
|
1421 |
-
<div class="notice notice-info wd-notice" id="wd_bp_notice_cont">
|
1422 |
-
<p>
|
1423 |
-
<img id="wd_bp_logo_notice" src="<?php echo $url . '/images/logo.png'; ?>" />
|
1424 |
-
<?php echo sprintf(__("%s advises: Install brand new FREE %s plugin to keep your forms and website safe.", $prefix), $nicename, '<a href="https://wordpress.org/plugins/backup-wd/" title="' . __("More details", $prefix) . '" target="_blank">' . __("Backup WD", $prefix) . '</a>'); ?>
|
1425 |
-
<a class="button button-primary" href="<?php echo $install_url; ?>">
|
1426 |
-
<span onclick="jQuery.post('<?php echo $dismiss_url; ?>');"><?php _e("Install", $prefix); ?></span>
|
1427 |
-
</a>
|
1428 |
-
</p>
|
1429 |
-
<button type="button" class="wd_bp_notice_dissmiss notice-dismiss" onclick="jQuery('#wd_bp_notice_cont').hide(); jQuery.post('<?php echo $dismiss_url; ?>');"><span class="screen-reader-text"></span></button>
|
1430 |
-
</div>
|
1431 |
<style>
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1439 |
}
|
1440 |
-
#
|
1441 |
-
|
1442 |
float: left;
|
1443 |
-
margin-right: 10px;
|
1444 |
}
|
1445 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1446 |
position: relative;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1447 |
}
|
1448 |
-
|
1449 |
-
margin:
|
|
|
1450 |
}
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1459 |
text-align: center;
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1463 |
}
|
1464 |
-
|
1465 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1466 |
}
|
1467 |
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1468 |
<?php
|
|
|
1469 |
echo ob_get_clean();
|
1470 |
}
|
1471 |
}
|
1472 |
|
1473 |
-
if ( !
|
1474 |
-
|
1475 |
}
|
1476 |
|
1477 |
-
if ( !
|
1478 |
-
|
1479 |
-
function wd_bps_install_notice_status() {
|
1480 |
-
update_option('wd_bk_notice_status', '1', 'no');
|
1481 |
-
}
|
1482 |
-
add_action('wp_ajax_wd_bp_dismiss', 'wd_bps_install_notice_status');
|
1483 |
}
|
1484 |
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
$meta_fields[] = "<a href='" . $plugin_url . "' target='_blank'>" . __('Support Forum', $prefix) . "</a>";
|
1490 |
-
$meta_fields[] = "<a href='" . $plugin_url . "/reviews#new-post' target='_blank' title='" . __('Rate', $prefix) . "'>
|
1491 |
-
<i class='wdi-rate-stars'>"
|
1492 |
-
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
1493 |
-
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
1494 |
-
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
1495 |
-
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
1496 |
-
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
1497 |
-
. "</i></a>";
|
1498 |
-
|
1499 |
-
$stars_color = "#ffb900";
|
1500 |
-
|
1501 |
-
echo "<style>"
|
1502 |
-
. ".wdi-rate-stars{display:inline-block;color:" . $stars_color . ";position:relative;top:3px;}"
|
1503 |
-
. ".wdi-rate-stars svg{fill:" . $stars_color . ";}"
|
1504 |
-
. ".wdi-rate-stars svg:hover{fill:" . $stars_color . "}"
|
1505 |
-
. ".wdi-rate-stars svg:hover ~ svg{fill:none;}"
|
1506 |
-
. "</style>";
|
1507 |
}
|
1508 |
-
|
1509 |
-
return $meta_fields;
|
1510 |
}
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1514 |
}
|
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: https://10web.io/plugins/wordpress-form-maker/
|
5 |
* Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
|
6 |
+
* Version: 1.13.5
|
7 |
* Author: 10Web Form Builder Team
|
8 |
* Author URI: https://10web.io/plugins/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
95 |
$this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
|
96 |
$this->front_urls = $this->get_front_urls();
|
97 |
$this->main_file = plugin_basename(__FILE__);
|
98 |
+
$this->plugin_version = '1.13.5';
|
99 |
+
$this->db_version = '2.13.5';
|
100 |
$this->menu_postfix = ($this->is_free == 2 ? '_fmc' : '_fm');
|
101 |
$this->plugin_postfix = ($this->is_free == 2 ? '_fmc' : '');
|
102 |
$this->menu_slug = 'manage' . $this->menu_postfix;
|
309 |
$key = 'tw/form-maker';
|
310 |
$key_submissions = 'tw/fm-submissions';
|
311 |
}
|
312 |
+
$fm_nonce = wp_create_nonce('fm_ajax_nonce');
|
313 |
$plugin_name = $this->nicename;
|
314 |
$plugin_name_submissions = __('Submissions', WDFMInstance(self::PLUGIN)->prefix);
|
315 |
$icon_url = $this->plugin_url . '/images/tw-gb/icon_colored.svg';
|
316 |
$icon_svg = $this->plugin_url . '/images/tw-gb/icon.svg';
|
317 |
+
$url = add_query_arg(array('action' => 'FMShortocde' . $this->plugin_postfix, 'task' => 'submissions', 'nonce' => $fm_nonce), admin_url('admin-ajax.php'));
|
318 |
$data = WDW_FM_Library(self::PLUGIN)->get_shortcode_data();
|
319 |
$blocks[$key] = array(
|
320 |
'title' => $plugin_name,
|
666 |
}
|
667 |
wp_register_style($this->handle_prefix . '-pricing', $this->plugin_url . '/css/pricing.css', array(), $this->plugin_version);
|
668 |
wp_register_style($this->handle_prefix . '-icons', $this->plugin_url . '/fonts/style.css', array(), '1.0.0');
|
669 |
+
|
670 |
+
wp_localize_script($this->handle_prefix . '-admin', 'fm_ajax', array(
|
671 |
+
'ajaxnonce' => wp_create_nonce('fm_ajax_nonce'),
|
672 |
+
));
|
673 |
+
wp_localize_script($this->handle_prefix . '-add-fields', 'fm_ajax', array(
|
674 |
+
'ajaxnonce' => wp_create_nonce('fm_ajax_nonce'),
|
675 |
+
));
|
676 |
+
wp_localize_script($this->handle_prefix . '-formmaker_div', 'fm_ajax', array(
|
677 |
+
'ajaxnonce' => wp_create_nonce('fm_ajax_nonce'),
|
678 |
+
));
|
679 |
}
|
680 |
|
681 |
/**
|
706 |
* admin-ajax actions for admin.
|
707 |
*/
|
708 |
public function form_maker_ajax() {
|
709 |
+
$ajax_nonce = WDW_FM_Library(self::PLUGIN)->get('nonce');
|
710 |
+
if ( wp_verify_nonce($ajax_nonce , 'fm_ajax_nonce') == FALSE ) {
|
711 |
+
die(-1);
|
712 |
+
}
|
713 |
+
|
714 |
$allowed_pages = array(
|
715 |
'manage' . $this->menu_postfix,
|
716 |
'manage' . $this->plugin_postfix,
|
763 |
* admin-ajax actions for site.
|
764 |
*/
|
765 |
public function form_maker_ajax_frontend() {
|
766 |
+
$ajax_nonce = WDW_FM_Library(self::PLUGIN)->get('nonce');
|
767 |
+
if ( wp_verify_nonce($ajax_nonce , 'fm_ajax_nonce') == FALSE ) {
|
768 |
+
die(-1);
|
769 |
+
}
|
770 |
+
|
771 |
$allowed_pages = array(
|
772 |
'form_submissions',
|
773 |
'form_maker',
|
1035 |
'date_validation' => addslashes(__('This is not a valid date value.', $this->prefix)),
|
1036 |
'year_validation' => addslashes(sprintf(__('The year must be between %s and %s', $this->prefix), '%%start%%', '%%end%%')),
|
1037 |
));
|
1038 |
+
|
1039 |
+
wp_localize_script($this->handle_prefix . '-frontend', 'fm_ajax', array(
|
1040 |
+
'ajaxnonce' => wp_create_nonce('fm_ajax_nonce'),
|
1041 |
+
));
|
1042 |
}
|
1043 |
|
1044 |
/**
|
1290 |
* @return string
|
1291 |
*/
|
1292 |
function media_button($context) {
|
1293 |
+
$fm_nonce = wp_create_nonce('fm_ajax_nonce');
|
1294 |
ob_start();
|
1295 |
+
$url = add_query_arg(array('action' => 'FMShortocde' . $this->plugin_postfix, 'task' => 'forms', 'nonce' => $fm_nonce, 'TB_iframe' => '1'), admin_url('admin-ajax.php'));
|
1296 |
?>
|
1297 |
<a onclick="tb_click.call(this); fm_set_shortcode_popup_dimensions(400, 140); return false;" href="<?php echo $url; ?>" class="button" title="<?php _e('Insert Form', $this->prefix); ?>">
|
1298 |
<span class="wp-media-buttons-icon" style="background: url('<?php echo $this->plugin_url; ?>/images/fm-media-form-button.png') no-repeat scroll left top rgba(0, 0, 0, 0);"></span>
|
1299 |
<?php _e('Add Form', $this->prefix); ?>
|
1300 |
</a>
|
1301 |
<?php
|
1302 |
+
$url = add_query_arg(array('action' => 'FMShortocde' . $this->plugin_postfix, 'task' => 'submissions', 'nonce' => $fm_nonce, 'TB_iframe' => '1'), admin_url('admin-ajax.php'));
|
1303 |
?>
|
1304 |
<a onclick="tb_click.call(this); fm_set_shortcode_popup_dimensions(520, 570); return false;" href="<?php echo $url; ?>" class="button" title="<?php _e('Insert submissions', $this->prefix); ?>">
|
1305 |
<span class="wp-media-buttons-icon" style="background: url(<?php echo $this->plugin_url; ?>/images/fm-media-submissions-button.png) no-repeat scroll left top rgba(0, 0, 0, 0);"></span>
|
1421 |
echo $form;
|
1422 |
}
|
1423 |
|
1424 |
+
function fm_add_plugin_meta_links($meta_fields, $file) {
|
1425 |
+
if ( plugin_basename(__FILE__) == $file ) {
|
1426 |
+
$plugin_url = "https://wordpress.org/support/plugin/form-maker";
|
1427 |
+
$prefix = WDFMInstance(1)->prefix;
|
1428 |
+
$meta_fields[] = "<a href='" . $plugin_url . "' target='_blank'>" . __('Support Forum', $prefix) . "</a>";
|
1429 |
+
$meta_fields[] = "<a href='" . $plugin_url . "/reviews#new-post' target='_blank' title='" . __('Rate', $prefix) . "'>
|
1430 |
+
<i class='wdi-rate-stars'>"
|
1431 |
+
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
1432 |
+
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
1433 |
+
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
1434 |
+
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
1435 |
+
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
1436 |
+
. "</i></a>";
|
1437 |
+
|
1438 |
+
$stars_color = "#ffb900";
|
1439 |
+
|
1440 |
+
echo "<style>"
|
1441 |
+
. ".wdi-rate-stars{display:inline-block;color:" . $stars_color . ";position:relative;top:3px;}"
|
1442 |
+
. ".wdi-rate-stars svg{fill:" . $stars_color . ";}"
|
1443 |
+
. ".wdi-rate-stars svg:hover{fill:" . $stars_color . "}"
|
1444 |
+
. ".wdi-rate-stars svg:hover ~ svg{fill:none;}"
|
1445 |
+
. "</style>";
|
1446 |
+
}
|
1447 |
+
|
1448 |
+
return $meta_fields;
|
1449 |
+
}
|
1450 |
+
|
1451 |
+
if ( WDFMInstance(1)->is_free ) {
|
1452 |
+
add_filter("plugin_row_meta", 'fm_add_plugin_meta_links', 10, 2);
|
1453 |
+
}
|
1454 |
+
|
1455 |
/**
|
1456 |
+
* Show 10Web manager plugin install or activate banner.
|
1457 |
+
*
|
1458 |
+
* @return string
|
1459 |
*/
|
1460 |
+
function wdfm_tenweb_install_notice() {
|
1461 |
+
if ( ( !isset($_GET['page']) || strpos(esc_html($_GET['page']), '_fm') === FALSE ) ||
|
1462 |
+
( isset($_GET['task']) && !strpos(esc_html($_GET['task']), 'edit') === TRUE && !(strpos(esc_html($_GET['task']), 'display') > -1))) {
|
1463 |
+
return '';
|
1464 |
}
|
1465 |
|
1466 |
+
// Remove old notice.
|
1467 |
+
if ( get_option('tenweb_notice_status') !== FALSE ) {
|
1468 |
+
update_option('tenweb_notice_status', '1', 'no');
|
1469 |
}
|
1470 |
|
1471 |
+
$meta_value = get_option('tenweb_notice_status');
|
1472 |
if ( $meta_value === '' || $meta_value === FALSE ) {
|
1473 |
ob_start();
|
1474 |
$prefix = WDFMInstance(1)->prefix;
|
|
|
1475 |
$url = WDFMInstance(1)->plugin_url;
|
1476 |
+
$dismiss_url = add_query_arg(array( 'action' => 'wd_tenweb_dismiss' ), admin_url('admin-ajax.php'));
|
1477 |
+
$verify_url = add_query_arg( array ('action' => 'fm_tenweb_status'), admin_url('admin-ajax.php'));
|
1478 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1479 |
<style>
|
1480 |
+
.hide {
|
1481 |
+
display: none !important;
|
1482 |
+
}
|
1483 |
+
#verifyUrl {
|
1484 |
+
display: none
|
1485 |
+
}
|
1486 |
+
#loading {
|
1487 |
+
position: absolute;
|
1488 |
+
right: 20px;
|
1489 |
+
top: 50%;
|
1490 |
+
transform: translateY(-50%);
|
1491 |
+
margin: 0px;
|
1492 |
+
background: url("<?php echo $url . '/images/spinner.gif'; ?>") no-repeat;
|
1493 |
+
background-size: 20px 20px;
|
1494 |
+
filter: alpha(opacity=70);
|
1495 |
}
|
1496 |
+
#wd_tenweb_logo_notice {
|
1497 |
+
height: 32px;
|
1498 |
float: left;
|
|
|
1499 |
}
|
1500 |
+
.error_install, .error_activate {
|
1501 |
+
color: red;
|
1502 |
+
font-size: 10px;
|
1503 |
+
}
|
1504 |
+
/* -------------------Version 2 styles------------------ */
|
1505 |
+
#wpbody-content #v2_tenweb_notice_cont {
|
1506 |
+
display: none;
|
1507 |
+
flex-wrap: wrap;
|
1508 |
+
background: #fff;
|
1509 |
+
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
|
1510 |
position: relative;
|
1511 |
+
margin-left: 0px;
|
1512 |
+
padding: 5px 0;
|
1513 |
+
overflow: hidden;
|
1514 |
+
border-left: 4px solid #0073AA;
|
1515 |
+
font-family: Open Sans, sans-serif;
|
1516 |
+
height: 40px;
|
1517 |
+
min-height: 40px;
|
1518 |
+
box-sizing: initial;
|
1519 |
+
}
|
1520 |
+
.v2_logo {
|
1521 |
+
display: flex;
|
1522 |
+
flex-direction: column;
|
1523 |
+
justify-content: center;
|
1524 |
+
height: inherit;
|
1525 |
+
}
|
1526 |
+
|
1527 |
+
#v2_tenweb_notice_cont {
|
1528 |
+
height: 50px;
|
1529 |
+
padding: 0px;
|
1530 |
+
}
|
1531 |
+
|
1532 |
+
.v2_content {
|
1533 |
+
flex-grow: 1;
|
1534 |
+
height: inherit;
|
1535 |
+
margin-left: 34px;
|
1536 |
}
|
1537 |
+
.v2_content p{
|
1538 |
+
margin: 0px;
|
1539 |
+
padding: 0px;
|
1540 |
}
|
1541 |
+
.v2_content p > span{
|
1542 |
+
font-size: 16px;
|
1543 |
+
color: #333B46;
|
1544 |
+
font-weight: 600;
|
1545 |
+
line-height: 40px;
|
1546 |
+
margin: 0;
|
1547 |
+
}
|
1548 |
+
#wd_tenweb_logo_notice {
|
1549 |
+
margin-left: 35px;
|
1550 |
+
height: 30px;
|
1551 |
+
line-height: 100%;
|
1552 |
+
}
|
1553 |
+
|
1554 |
+
.v2_button {
|
1555 |
+
display: flex;
|
1556 |
+
margin-right: 30px;
|
1557 |
+
flex-direction: column;
|
1558 |
+
justify-content: center;
|
1559 |
+
}
|
1560 |
+
|
1561 |
+
.v2_button #install_now, #activate_now {
|
1562 |
+
width: 112px;
|
1563 |
+
height: 32px;
|
1564 |
+
line-height: 30px;
|
1565 |
+
font-size: 14px;
|
1566 |
text-align: center;
|
1567 |
+
padding: 0;
|
1568 |
+
}
|
1569 |
+
|
1570 |
+
#v2_tenweb_notice_cont .wd_tenweb_notice_dissmiss.notice-dismiss {
|
1571 |
+
top: 3px;
|
1572 |
+
right: 3px;
|
1573 |
+
padding: 0px;
|
1574 |
+
}
|
1575 |
+
|
1576 |
+
.v2_button .button {
|
1577 |
+
position: relative;
|
1578 |
+
}
|
1579 |
+
|
1580 |
+
.v2_button .button #loading {
|
1581 |
+
position: absolute;
|
1582 |
+
right: 10px;
|
1583 |
+
top: 50%;
|
1584 |
+
transform: translateY(-50%);
|
1585 |
+
margin: 0px;
|
1586 |
+
background-size: 12px 12px;
|
1587 |
+
filter: alpha(opacity=70);
|
1588 |
+
width: 12px;
|
1589 |
+
height: 12px;
|
1590 |
+
}
|
1591 |
+
|
1592 |
+
@media only screen and (max-width: 1200px) and (min-width: 821px) {
|
1593 |
+
#wpbody-content #v2_tenweb_notice_cont {
|
1594 |
+
height: 50px;
|
1595 |
+
min-height: 50px;
|
1596 |
+
}
|
1597 |
+
|
1598 |
+
#v2_tenweb_notice_cont {
|
1599 |
+
height: 60px;
|
1600 |
+
}
|
1601 |
+
|
1602 |
+
.v2_content {
|
1603 |
+
margin-left: 25px;
|
1604 |
+
}
|
1605 |
+
.v2_content p {
|
1606 |
+
font-size: 14px;
|
1607 |
+
color: #333B46;
|
1608 |
+
font-weight: 600;
|
1609 |
+
line-height: 20px;
|
1610 |
+
margin-top: 5px;
|
1611 |
+
}
|
1612 |
+
.v2_content p span {
|
1613 |
+
display: block;
|
1614 |
+
}
|
1615 |
+
|
1616 |
+
#wd_tenweb_logo_notice {
|
1617 |
+
margin-left: 25px;
|
1618 |
+
height: 30px;
|
1619 |
+
line-height: 100%;
|
1620 |
+
}
|
1621 |
+
|
1622 |
+
.v2_button {
|
1623 |
+
display: flex;
|
1624 |
+
margin-right: 30px;
|
1625 |
+
flex-direction: column;
|
1626 |
+
justify-content: center;
|
1627 |
+
}
|
1628 |
+
|
1629 |
+
.v2_button #install_now {
|
1630 |
+
width: 112px;
|
1631 |
+
height: 32px;
|
1632 |
+
line-height: 30px;
|
1633 |
+
font-size: 14px;
|
1634 |
+
text-align: center;
|
1635 |
+
padding: 0;
|
1636 |
+
}
|
1637 |
+
|
1638 |
+
#v2_tenweb_notice_cont .wd_tenweb_notice_dissmiss.notice-dismiss {
|
1639 |
+
top: 3px;
|
1640 |
+
right: 3px;
|
1641 |
+
}
|
1642 |
}
|
1643 |
+
|
1644 |
+
@media only screen and (max-width: 820px) and (min-width: 781px) {
|
1645 |
+
|
1646 |
+
#wpbody-content #v2_tenweb_notice_cont {
|
1647 |
+
height: 50px;
|
1648 |
+
min-height: 50px;
|
1649 |
+
}
|
1650 |
+
|
1651 |
+
#v2_tenweb_notice_cont {
|
1652 |
+
height: 60px;
|
1653 |
+
}
|
1654 |
+
|
1655 |
+
.v2_content {
|
1656 |
+
margin-left: 25px;
|
1657 |
+
}
|
1658 |
+
|
1659 |
+
.v2_content p {
|
1660 |
+
font-size: 13px;
|
1661 |
+
color: #333B46;
|
1662 |
+
font-weight: 600;
|
1663 |
+
line-height: 20px;
|
1664 |
+
margin-top: 5px;
|
1665 |
+
}
|
1666 |
+
|
1667 |
+
.v2_content p span {
|
1668 |
+
display: block;
|
1669 |
+
}
|
1670 |
+
|
1671 |
+
}
|
1672 |
+
|
1673 |
+
@media only screen and (max-width: 780px) {
|
1674 |
+
|
1675 |
+
#wpbody-content #v2_tenweb_notice_cont {
|
1676 |
+
height: auto;
|
1677 |
+
min-height: auto;
|
1678 |
+
}
|
1679 |
+
|
1680 |
+
#v2_tenweb_notice_cont {
|
1681 |
+
height: auto;
|
1682 |
+
padding: 5px;
|
1683 |
+
}
|
1684 |
+
|
1685 |
+
.v2_logo {
|
1686 |
+
display: block;
|
1687 |
+
height: auto;
|
1688 |
+
width: 100%;
|
1689 |
+
margin-top: 5px;
|
1690 |
+
}
|
1691 |
+
|
1692 |
+
.v2_content {
|
1693 |
+
display: block;
|
1694 |
+
margin-left: 9px;
|
1695 |
+
margin-top: 10px;
|
1696 |
+
width: calc(100% - 10px);
|
1697 |
+
}
|
1698 |
+
|
1699 |
+
.v2_content p {
|
1700 |
+
line-height: unset;
|
1701 |
+
font-size: 15px;
|
1702 |
+
line-height: 25px;
|
1703 |
+
}
|
1704 |
+
.v2_content p span{
|
1705 |
+
display: block
|
1706 |
+
}
|
1707 |
+
#wd_tenweb_logo_notice {
|
1708 |
+
margin-left: 9px;
|
1709 |
+
}
|
1710 |
+
|
1711 |
+
.v2_button {
|
1712 |
+
margin-left: 9px;
|
1713 |
+
margin-top: 10px;
|
1714 |
+
margin-bottom: 5px;
|
1715 |
+
}
|
1716 |
}
|
1717 |
</style>
|
1718 |
+
<div id="v2_tenweb_notice_cont" class="notice wd-notice">
|
1719 |
+
<div class="v2_logo">
|
1720 |
+
<img id="wd_tenweb_logo_notice" src="<?php echo $url . '/images/form-maker-logo.png'; ?>" />
|
1721 |
+
</div>
|
1722 |
+
<div class="v2_content">
|
1723 |
+
<p>
|
1724 |
+
<?php echo sprintf(__('%sForm Maker advises:%s %sUse Image Optimizer service to optimize your images quickly and easily.%s', $prefix), '<span>','</span>', '<span>','</span>'); ?>
|
1725 |
+
</p>
|
1726 |
+
</div>
|
1727 |
+
<div class="v2_button">
|
1728 |
+
<?php WDW_FM_Library::twbb_install_button(2); ?>
|
1729 |
+
</div>
|
1730 |
+
<button type="button" class="wd_tenweb_notice_dissmiss notice-dismiss" onclick="jQuery('#v2_tenweb_notice_cont').attr('style', 'display: none !important;'); jQuery.post('<?php echo $dismiss_url; ?>');"><span class="screen-reader-text"></span></button>
|
1731 |
+
<div id="verifyUrl" data-url="<?php echo $verify_url; ?>"></div>
|
1732 |
+
</div>
|
1733 |
<?php
|
1734 |
+
|
1735 |
echo ob_get_clean();
|
1736 |
}
|
1737 |
}
|
1738 |
|
1739 |
+
if ( !function_exists('is_plugin_active') ) {
|
1740 |
+
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
1741 |
}
|
1742 |
|
1743 |
+
if ( !is_plugin_active( '10web-manager/10web-manager.php' ) && WDFMInstance(1)->is_free ) {
|
1744 |
+
add_action('admin_notices', 'wdfm_tenweb_install_notice');
|
|
|
|
|
|
|
|
|
1745 |
}
|
1746 |
|
1747 |
+
if ( !function_exists('wd_tenwebps_install_notice_status') ) {
|
1748 |
+
// Add usermeta to DB.
|
1749 |
+
function wd_tenwebps_install_notice_status() {
|
1750 |
+
update_option('tenweb_notice_status', '1', 'no');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1751 |
}
|
1752 |
+
add_action('wp_ajax_wd_tenweb_dismiss', 'wd_tenwebps_install_notice_status');
|
|
|
1753 |
}
|
1754 |
+
// Check status 10web manager install
|
1755 |
+
function fm_check_tenweb_status() {
|
1756 |
+
$status_install = 0;
|
1757 |
+
$status_active = 0;
|
1758 |
+
if ( WDW_FM_Library::is_plugin_installed('10web-manager') ) {
|
1759 |
+
$status_install = 1;
|
1760 |
+
}
|
1761 |
+
else {
|
1762 |
+
if ( is_plugin_active('10web-manager/10web-manager.php') ) {
|
1763 |
+
$status_active = 1;
|
1764 |
+
}
|
1765 |
+
}
|
1766 |
+
if ( WDW_FM_Library::is_plugin_installed('10web-manager') ) {
|
1767 |
+
$old_opt_array = array();
|
1768 |
+
$new_opt_array = array( 'form-maker' => 95 ); // core_id
|
1769 |
+
$key = 'tenweb_manager_installed';
|
1770 |
+
$option = get_option($key);
|
1771 |
+
if ( !empty($option) ) {
|
1772 |
+
$old_opt_array = (array) json_decode($option);
|
1773 |
+
}
|
1774 |
+
$array_installed = array_merge($new_opt_array, $old_opt_array);
|
1775 |
+
update_option($key, json_encode($array_installed));
|
1776 |
+
}
|
1777 |
+
$jsondata = array( 'status_install' => $status_install, 'status_active' => $status_active );
|
1778 |
+
echo json_encode($jsondata);
|
1779 |
+
exit;
|
1780 |
}
|
1781 |
+
add_action('wp_ajax_fm_tenweb_status', 'fm_check_tenweb_status');
|
form_maker_update.php
CHANGED
@@ -263,7 +263,6 @@ class WDFMUpdate {
|
|
263 |
if (version_compare($version, '2.13.0') == -1) {
|
264 |
$wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `header_hide` tinyint(4) NOT NULL DEFAULT '1'");
|
265 |
$wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker_backup` ADD `header_hide` tinyint(4) NOT NULL DEFAULT '1'");
|
266 |
-
$wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker_backup` ADD `date` int(10) NOT NULL");
|
267 |
}
|
268 |
return;
|
269 |
}
|
263 |
if (version_compare($version, '2.13.0') == -1) {
|
264 |
$wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker` ADD `header_hide` tinyint(4) NOT NULL DEFAULT '1'");
|
265 |
$wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker_backup` ADD `header_hide` tinyint(4) NOT NULL DEFAULT '1'");
|
|
|
266 |
}
|
267 |
return;
|
268 |
}
|
framework/WDW_FM_Library.php
CHANGED
@@ -4006,11 +4006,10 @@ class WDW_FM_Library {
|
|
4006 |
return values;
|
4007 |
}
|
4008 |
}
|
4009 |
-
|
4010 |
function ajax_similarity<?php echo $form_id ?>( obj, changing_field_id ) {
|
4011 |
jQuery.ajax({
|
4012 |
type: "POST",
|
4013 |
-
url: '<?php echo add_query_arg( array( 'action' => 'fm_reload_input', 'page' => 'form_maker' ), admin_url('admin-ajax.php') ); ?>',
|
4014 |
dataType: "json",
|
4015 |
data: {
|
4016 |
form_id: <?php echo $form_id ?>,
|
@@ -5497,4 +5496,146 @@ class WDW_FM_Library {
|
|
5497 |
|
5498 |
return $forms;
|
5499 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5500 |
}
|
4006 |
return values;
|
4007 |
}
|
4008 |
}
|
|
|
4009 |
function ajax_similarity<?php echo $form_id ?>( obj, changing_field_id ) {
|
4010 |
jQuery.ajax({
|
4011 |
type: "POST",
|
4012 |
+
url: '<?php echo add_query_arg( array( 'action' => 'fm_reload_input', 'page' => 'form_maker', 'nonce' => wp_create_nonce('fm_ajax_nonce') ), admin_url('admin-ajax.php') ); ?>',
|
4013 |
dataType: "json",
|
4014 |
data: {
|
4015 |
form_id: <?php echo $form_id ?>,
|
5496 |
|
5497 |
return $forms;
|
5498 |
}
|
5499 |
+
|
5500 |
+
/**
|
5501 |
+
* Is plugin active.
|
5502 |
+
*
|
5503 |
+
* @param $plugin_name
|
5504 |
+
*
|
5505 |
+
* @return bool
|
5506 |
+
*/
|
5507 |
+
public static function is_plugin_installed($plugin_name) {
|
5508 |
+
if ( is_dir(WP_PLUGIN_DIR . '/' . $plugin_name . '/') ) {
|
5509 |
+
return TRUE;
|
5510 |
+
}
|
5511 |
+
|
5512 |
+
return FALSE;
|
5513 |
+
}
|
5514 |
+
|
5515 |
+
/**
|
5516 |
+
* Get activation or deactivation link of a plugin
|
5517 |
+
*
|
5518 |
+
* @author Nazmul Ahsan <mail@nazmulahsan.me>
|
5519 |
+
*
|
5520 |
+
* @param string $plugin plugin file name
|
5521 |
+
* @param string $action action to perform. activate or deactivate
|
5522 |
+
*
|
5523 |
+
* @return string $url action url
|
5524 |
+
*/
|
5525 |
+
public static function na_action_link( $plugin, $action = 'activate' ) {
|
5526 |
+
if ( strpos($plugin, '/') ) {
|
5527 |
+
$plugin = str_replace('\/', '%2F', $plugin);
|
5528 |
+
}
|
5529 |
+
$url = sprintf(admin_url('plugins.php?action=' . $action . '&plugin=%s&plugin_status=all&paged=1&s'), $plugin);
|
5530 |
+
$_REQUEST['plugin'] = $plugin;
|
5531 |
+
$url = wp_nonce_url($url, $action . '-plugin_' . $plugin);
|
5532 |
+
|
5533 |
+
return $url;
|
5534 |
+
}
|
5535 |
+
|
5536 |
+
public static function twbb_install_button($v) {
|
5537 |
+
$prefix = WDFMInstance(1)->prefix;
|
5538 |
+
$slug = '10web-manager';
|
5539 |
+
$install_url = esc_url(wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=' . $slug), 'install-plugin_' . $slug));
|
5540 |
+
$activation_url = self::na_action_link($slug . '/10web-manager.php', 'activate');
|
5541 |
+
$tenweb_url = admin_url('admin.php?page=tenweb_menu');
|
5542 |
+
$dismiss_url = add_query_arg(array( 'action' => 'wd_tenweb_dismiss' ), admin_url('admin-ajax.php'));
|
5543 |
+
$activate = self::is_plugin_installed($slug) && !is_plugin_active('10web-manager/manager.php') ? TRUE : FALSE;
|
5544 |
+
?>
|
5545 |
+
<a class="button<?php echo($v == 2 ? ' button-primary' : ''); ?> tenweb_activaion"
|
5546 |
+
id="<?php echo $activate ? 'activate_now' : 'install_now'; ?>"
|
5547 |
+
data-activation="<?php _e("Activation", $prefix); ?>"
|
5548 |
+
data-tenweb-url="<?php echo $tenweb_url; ?>"
|
5549 |
+
data-install-url="<?php echo $install_url; ?>"
|
5550 |
+
data-activate-url="<?php echo $activation_url; ?>">
|
5551 |
+
<span class="tenweb_activaion_text"><?php echo $activate ? __("Activate", $prefix) : __("Install", $prefix); ?></span>
|
5552 |
+
<span class="spinner" id="loading"></span>
|
5553 |
+
</a>
|
5554 |
+
<span class="hide <?php echo $activate ? 'error_activate' : 'error_install tenweb_active'; ?> ">
|
5555 |
+
<?php echo $activate ? __("Activation failed, please try again.", $prefix) : __("Installation failed, please try again.", $prefix); ?>
|
5556 |
+
</span>
|
5557 |
+
<script>
|
5558 |
+
var url = jQuery(".tenweb_activaion").attr("data-install-url");
|
5559 |
+
var activate_url = jQuery(".tenweb_activaion").attr("data-activate-url");
|
5560 |
+
|
5561 |
+
function install_tenweb_plugin() {
|
5562 |
+
jQuery("#loading").addClass('is-active');
|
5563 |
+
jQuery(this).prop('disable', true);
|
5564 |
+
jQuery.ajax({
|
5565 |
+
method: "POST",
|
5566 |
+
url: url,
|
5567 |
+
}).done(function () {
|
5568 |
+
/* Check if plugin installed.*/
|
5569 |
+
jQuery.ajax({
|
5570 |
+
type: 'POST',
|
5571 |
+
dataType: 'json',
|
5572 |
+
url: jQuery("#verifyUrl").attr('data-url'),
|
5573 |
+
error: function () {
|
5574 |
+
jQuery("#loading").removeClass('is-active');
|
5575 |
+
jQuery(".error_install").show();
|
5576 |
+
},
|
5577 |
+
success: function (response) {
|
5578 |
+
if (response.status_install == 1) {
|
5579 |
+
jQuery('#install_now .tenweb_activaion_text').text(jQuery("#install_now").data("activation"));
|
5580 |
+
activate_tenweb_plugin();
|
5581 |
+
}
|
5582 |
+
else {
|
5583 |
+
jQuery("#loading").removeClass('is-active');
|
5584 |
+
jQuery(".error_install").removeClass('hide');
|
5585 |
+
}
|
5586 |
+
}
|
5587 |
+
});
|
5588 |
+
}).fail(function () {
|
5589 |
+
jQuery("#loading").removeClass('is-active');
|
5590 |
+
jQuery(".error_install").removeClass('hide');
|
5591 |
+
});
|
5592 |
+
}
|
5593 |
+
function activate_tenweb_plugin() {
|
5594 |
+
jQuery("#activate_now #loading").addClass('is-active');
|
5595 |
+
jQuery.ajax({
|
5596 |
+
method: "POST",
|
5597 |
+
url: activate_url,
|
5598 |
+
}).done(function () {
|
5599 |
+
jQuery("#loading").removeClass('is-active');
|
5600 |
+
var data_tenweb_url = '';
|
5601 |
+
/* Check if plugin installed.*/
|
5602 |
+
jQuery.ajax({
|
5603 |
+
type: 'POST',
|
5604 |
+
dataType: 'json',
|
5605 |
+
url: jQuery("#verifyUrl").attr('data-url'),
|
5606 |
+
error: function () {
|
5607 |
+
jQuery("#loading").removeClass('is-active');
|
5608 |
+
jQuery(".error_activate").removeClass('hide');
|
5609 |
+
},
|
5610 |
+
success: function (response) {
|
5611 |
+
if (response.status_active == 0) {
|
5612 |
+
//jQuery('#install_now').addClass('hide');
|
5613 |
+
data_tenweb_url = jQuery('.tenweb_activaion').attr('data-tenweb-url');
|
5614 |
+
jQuery.post('<?php echo $dismiss_url; ?>');
|
5615 |
+
}
|
5616 |
+
else {
|
5617 |
+
jQuery("#loading").removeClass('is-active');
|
5618 |
+
jQuery(".error_activate").removeClass('hide');
|
5619 |
+
}
|
5620 |
+
},
|
5621 |
+
complete: function () {
|
5622 |
+
if (data_tenweb_url != '') {
|
5623 |
+
window.location.href = data_tenweb_url;
|
5624 |
+
}
|
5625 |
+
}
|
5626 |
+
});
|
5627 |
+
}).fail(function () {
|
5628 |
+
jQuery("#loading").removeClass('is-active');
|
5629 |
+
});
|
5630 |
+
}
|
5631 |
+
jQuery("#install_now").on("click", function () {
|
5632 |
+
install_tenweb_plugin();
|
5633 |
+
});
|
5634 |
+
jQuery("#activate_now").on("click", function () {
|
5635 |
+
activate_tenweb_plugin();
|
5636 |
+
});
|
5637 |
+
</script>
|
5638 |
+
|
5639 |
+
<?php
|
5640 |
+
}
|
5641 |
}
|
frontend/models/form_maker.php
CHANGED
@@ -1328,6 +1328,7 @@ class FMModelForm_maker {
|
|
1328 |
* @return array( 'error' => true, 'group_id' => $max, 'message' => '' ); in case of error | array('group_id' => $max, 'all_files' => '', 'redirect_url' => '')
|
1329 |
*/
|
1330 |
public function save_db( $id = 0 ) {
|
|
|
1331 |
global $wpdb;
|
1332 |
$wp_userid = '';
|
1333 |
$wp_username = '';
|
@@ -2310,7 +2311,7 @@ class FMModelForm_maker {
|
|
2310 |
$str .= "currency_code=" . $currency;
|
2311 |
$str .= "&business=" . urlencode( $business );
|
2312 |
$str .= "&cmd=" . "_cart";
|
2313 |
-
$str .= "¬ify_url=" . admin_url( 'admin-ajax.php?action=checkpaypal%26form_id=' . $id . '%26group_id=' . $group_id );
|
2314 |
$str .= "&upload=" . "1";
|
2315 |
$str .= "&charset=UTF-8";
|
2316 |
if ( isset( $paypal[ 'shipping' ] ) ) {
|
1328 |
* @return array( 'error' => true, 'group_id' => $max, 'message' => '' ); in case of error | array('group_id' => $max, 'all_files' => '', 'redirect_url' => '')
|
1329 |
*/
|
1330 |
public function save_db( $id = 0 ) {
|
1331 |
+
$fm_nonce = wp_create_nonce('fm_ajax_nonce');
|
1332 |
global $wpdb;
|
1333 |
$wp_userid = '';
|
1334 |
$wp_username = '';
|
2311 |
$str .= "currency_code=" . $currency;
|
2312 |
$str .= "&business=" . urlencode( $business );
|
2313 |
$str .= "&cmd=" . "_cart";
|
2314 |
+
$str .= "¬ify_url=" . admin_url( 'admin-ajax.php?action=checkpaypal%26form_id=' . $id . '%26nonce=' . $fm_nonce . '%26group_id=' . $group_id );
|
2315 |
$str .= "&upload=" . "1";
|
2316 |
$str .= "&charset=UTF-8";
|
2317 |
if ( isset( $paypal[ 'shipping' ] ) ) {
|
frontend/views/form_maker.php
CHANGED
@@ -15,7 +15,9 @@ class FMViewForm_maker {
|
|
15 |
*
|
16 |
* @param $model
|
17 |
*/
|
|
|
18 |
public function __construct( $model = array() ) {
|
|
|
19 |
$this->model = $model;
|
20 |
}
|
21 |
|
@@ -1189,7 +1191,7 @@ class FMViewForm_maker {
|
|
1189 |
|
1190 |
$html = '<img type="captcha"
|
1191 |
digit="' . $param['w_digit'] . '"
|
1192 |
-
src=" ' . add_query_arg(array('action' => 'formmakerwdcaptcha' . WDFMInstance(self::PLUGIN)->plugin_postfix, 'digit' => $param['w_digit'], 'i' => $form_id), admin_url('admin-ajax.php')) . '"
|
1193 |
id="wd_captcha' . $form_id . '"
|
1194 |
class="captcha_img wd-hidden"
|
1195 |
' . $param['attributes'] . ' />';
|
@@ -1255,7 +1257,7 @@ class FMViewForm_maker {
|
|
1255 |
$html = '<img type="captcha"
|
1256 |
operations_count="' . $param['w_count'] . '"
|
1257 |
operations="' . $param['w_operations'] . '"
|
1258 |
-
src="' . add_query_arg(array('action' => 'formmakerwdmathcaptcha' . WDFMInstance(self::PLUGIN)->plugin_postfix, 'operations_count' => $param['w_count'], 'operations' => urlencode($param['w_operations']), 'i' => $form_id), admin_url('admin-ajax.php')) . '"
|
1259 |
id="wd_arithmetic_captcha' . $form_id . '"
|
1260 |
class="arithmetic_captcha_img"
|
1261 |
' . $param['attributes'] . ' />';
|
15 |
*
|
16 |
* @param $model
|
17 |
*/
|
18 |
+
private $fm_nonce = null;
|
19 |
public function __construct( $model = array() ) {
|
20 |
+
$this->fm_nonce = wp_create_nonce('fm_ajax_nonce');
|
21 |
$this->model = $model;
|
22 |
}
|
23 |
|
1191 |
|
1192 |
$html = '<img type="captcha"
|
1193 |
digit="' . $param['w_digit'] . '"
|
1194 |
+
src=" ' . add_query_arg(array('action' => 'formmakerwdcaptcha' . WDFMInstance(self::PLUGIN)->plugin_postfix, 'nonce' => $this->fm_nonce, 'digit' => $param['w_digit'], 'i' => $form_id), admin_url('admin-ajax.php')) . '"
|
1195 |
id="wd_captcha' . $form_id . '"
|
1196 |
class="captcha_img wd-hidden"
|
1197 |
' . $param['attributes'] . ' />';
|
1257 |
$html = '<img type="captcha"
|
1258 |
operations_count="' . $param['w_count'] . '"
|
1259 |
operations="' . $param['w_operations'] . '"
|
1260 |
+
src="' . add_query_arg(array('action' => 'formmakerwdmathcaptcha' . WDFMInstance(self::PLUGIN)->plugin_postfix, 'nonce' => $this->fm_nonce, 'operations_count' => $param['w_count'], 'operations' => urlencode($param['w_operations']), 'i' => $form_id), admin_url('admin-ajax.php')) . '"
|
1261 |
id="wd_arithmetic_captcha' . $form_id . '"
|
1262 |
class="arithmetic_captcha_img"
|
1263 |
' . $param['attributes'] . ' />';
|
images/logo.png
DELETED
Binary file
|
js/add_field.js
CHANGED
@@ -4405,7 +4405,7 @@ function refresh_sel_options(id, type) {
|
|
4405 |
jQuery('#el_choices_add').next().attr("onclick", "alert('This feature is disabled in demo.')");
|
4406 |
}
|
4407 |
else {
|
4408 |
-
jQuery('#el_choices_add').next().attr("onclick", "tb_show('', 'admin-ajax.php?action=select_data_from_db&field_id=" + id + "&field_type=" + type + "&value_disabled=" + jQuery("#" + id + "_value_disabledform_id_temp").val() + "&width=530&height=370&TB_iframe=1');return false;");
|
4409 |
}
|
4410 |
}
|
4411 |
|
@@ -4416,7 +4416,7 @@ function create_select_options(i, w_value_disabled, w_choices, w_choices_params,
|
|
4416 |
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="alert(\'This feature is disabled in demo.\') return false;" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
4417 |
}
|
4418 |
else {
|
4419 |
-
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="tb_show(\'\', \'admin-ajax.php?action=select_data_from_db&field_id=' + i + '&field_type=select&value_disabled=' + w_value_disabled + '&width=530&height=370&TB_iframe=1\'); return false;" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
4420 |
}
|
4421 |
var note = jQuery('<div class="fm-width-100 error">IMPORTANT! Check the "Empty value" checkbox only if you want the option to be considered as empty.</div>');
|
4422 |
var attr_table = jQuery('<div id="choices" class="fm-width-100 ui-sortable"></div>');
|
@@ -5072,7 +5072,7 @@ function create_radio_options(i, w_value_disabled, w_choices, w_choices_params,
|
|
5072 |
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="alert(\'This feature is disabled in demo.\')" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
5073 |
}
|
5074 |
else {
|
5075 |
-
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="tb_show(\'\', \'admin-ajax.php?action=select_data_from_db&field_id=' + i + '&field_type=radio&value_disabled=' + w_value_disabled + '&width=530&height=370&TB_iframe=1\'); return false;" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
5076 |
}
|
5077 |
var attr_table = jQuery('<div id="choices" class="fm-width-100 ui-sortable"></div>');
|
5078 |
var attr_header = jQuery('<div class="fm-width-100"><div class="fm-header-label fm-width-40">Name</div><div class="fm-header-label fm-width-40">Value</div><div class="fm-header-label fm-width-10">Delete</div><div class="fm-header-label fm-width-10">Move</div></div>');
|
@@ -7711,7 +7711,7 @@ function type_mark_map(i, w_field_label, w_field_label_size, w_field_label_pos,
|
|
7711 |
|
7712 |
function create_edit_country_list(i) {
|
7713 |
var label = jQuery('<label class="fm-field-label">Edit country list</label>');
|
7714 |
-
var input = jQuery('<a href="" onclick="tb_show(\'\', \'admin-ajax.php?action=FormMakerEditCountryinPopup&field_id=' + i + '&width=530&height=370&TB_iframe=1\'); return false;" class="thickbox-preview fm-field-recaptcha-label">Edit country list</a>');
|
7715 |
return create_option_container(null, input);
|
7716 |
}
|
7717 |
|
@@ -8633,7 +8633,7 @@ function create_paypal_select_options(i, w_choices, w_choices_params, w_choices_
|
|
8633 |
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="alert(\'This feature is disabled in demo.\')" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
8634 |
}
|
8635 |
else {
|
8636 |
-
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="tb_show(\'\', \'admin-ajax.php?action=select_data_from_db&field_id=' + i + '&field_type=paypal_select&width=530&height=370&TB_iframe=1\'); return false;" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
8637 |
}
|
8638 |
var note = jQuery('<div class="fm-width-100 error">IMPORTANT! Check the "Empty value" checkbox only if you want the option to be considered as empty.</div>');
|
8639 |
var attr_table = jQuery('<div id="choices" class="fm-width-100 ui-sortable"></div>');
|
@@ -8711,7 +8711,7 @@ function add_quantity(i, w_quantity_value) {
|
|
8711 |
|
8712 |
function create_payment_property(i) {
|
8713 |
var label = jQuery('<label class="fm-field-label">Product properties</label>');
|
8714 |
-
var button = jQuery('<a class="thickbox-preview" onClick="tb_show(\'\', \'admin-ajax.php?action=product_option&field_id=' + i + '&width=530&height=370&TB_iframe=1\')"><span class="fm-add-attribute dashicons dashicons-plus-alt" title="Add"></span></a>');
|
8715 |
var attr_table = jQuery('<ul id="option_ul" class="fm-width-100"></ul>');
|
8716 |
|
8717 |
var input = label;
|
@@ -8937,7 +8937,7 @@ function add_properties(id, w_property, w_property_values) {
|
|
8937 |
li_label.style.cssText = "font-weight:bold; font-size: 13px";
|
8938 |
|
8939 |
var li_edit = document.createElement('a');
|
8940 |
-
li_edit.setAttribute("onclick", "tb_show('', 'admin-ajax.php?action=product_option&field_id=" + id + "&property_id=" + i + "&width=530&height=370&TB_iframe=1')");
|
8941 |
li_edit.setAttribute("class", "thickbox-preview");
|
8942 |
|
8943 |
var li_edit_img = document.createElement('span');
|
@@ -9259,7 +9259,7 @@ function create_paypal_radio_options(i, w_choices, w_choices_params, w_choices_p
|
|
9259 |
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="alert(\'This feature is disabled in demo.\')" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
9260 |
}
|
9261 |
else {
|
9262 |
-
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="tb_show(\'\', \'admin-ajax.php?action=select_data_from_db&field_id=' + i + '&field_type=paypal_' + type + '&width=530&height=370&TB_iframe=1\'); return false;" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
9263 |
}
|
9264 |
var attr_table = jQuery('<div id="choices" class="fm-width-100 ui-sortable"></div>');
|
9265 |
var attr_header = jQuery('<div class="fm-width-100"><div class="fm-header-label fm-width-60">Product name</div><div class="fm-header-label fm-width-20">Price</div><div class="fm-header-label fm-width-10">Delete</div><div class="fm-header-label fm-width-10">Move</div></div>');
|
@@ -12750,7 +12750,7 @@ function type_captcha(i,w_field_label, w_field_label_size, w_field_label_pos, w_
|
|
12750 |
var adding = document.createElement(element);
|
12751 |
adding.setAttribute("type", type);
|
12752 |
adding.setAttribute("digit", w_digit);
|
12753 |
-
adding.setAttribute("src", url_for_ajax + "?action=formmakerwdcaptcha&digit=" + w_digit + "&i=form_id_temp");
|
12754 |
adding.setAttribute("id", "_wd_captchaform_id_temp");
|
12755 |
adding.setAttribute("class", "captcha_img");
|
12756 |
adding.setAttribute("onClick", "captcha_refresh('_wd_captcha','form_id_temp')");
|
@@ -12881,7 +12881,7 @@ function change_arithmetic_captcha(value, field) {
|
|
12881 |
arithmetic_captcha.setAttribute("operations_count", oper_count);
|
12882 |
arithmetic_captcha.setAttribute("operations", operations);
|
12883 |
arithmetic_captcha.setAttribute("input_size", input_size);
|
12884 |
-
arithmetic_captcha.setAttribute("src", url_for_ajax + "?action=formmakerwdmathcaptcha&operations_count=" + oper_count + "&operations=" + operations.replace('+', '@') + "&i=form_id_temp");
|
12885 |
}
|
12886 |
|
12887 |
function create_arithmetic_operations_count(i, w_count) {
|
@@ -12948,7 +12948,7 @@ function type_arithmetic_captcha(i,w_field_label, w_field_label_size, w_field_la
|
|
12948 |
adding.setAttribute("operations_count", w_count);
|
12949 |
adding.setAttribute("operations", w_operations);
|
12950 |
adding.setAttribute("input_size", w_input_size);
|
12951 |
-
adding.setAttribute("src", url_for_ajax + "?action=formmakerwdmathcaptcha&operations_count=" + w_count + "&operations=" + w_operations.replace("+", "@") + "&i=form_id_temp");
|
12952 |
adding.setAttribute("id", "_wd_arithmetic_captchaform_id_temp");
|
12953 |
adding.setAttribute("class", "arithmetic_captcha_img");
|
12954 |
adding.setAttribute("onClick", "captcha_refresh('_wd_arithmetic_captcha','form_id_temp')");
|
4405 |
jQuery('#el_choices_add').next().attr("onclick", "alert('This feature is disabled in demo.')");
|
4406 |
}
|
4407 |
else {
|
4408 |
+
jQuery('#el_choices_add').next().attr("onclick", "tb_show('', 'admin-ajax.php?action=select_data_from_db&field_id=" + id + "&nonce=" + fm_ajax.ajaxnonce + "&field_type=" + type + "&value_disabled=" + jQuery("#" + id + "_value_disabledform_id_temp").val() + "&width=530&height=370&TB_iframe=1');return false;");
|
4409 |
}
|
4410 |
}
|
4411 |
|
4416 |
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="alert(\'This feature is disabled in demo.\') return false;" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
4417 |
}
|
4418 |
else {
|
4419 |
+
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="tb_show(\'\', \'admin-ajax.php?action=select_data_from_db&nonce=' + fm_ajax.ajaxnonce + '&field_id=' + i + '&field_type=select&value_disabled=' + w_value_disabled + '&width=530&height=370&TB_iframe=1\'); return false;" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
4420 |
}
|
4421 |
var note = jQuery('<div class="fm-width-100 error">IMPORTANT! Check the "Empty value" checkbox only if you want the option to be considered as empty.</div>');
|
4422 |
var attr_table = jQuery('<div id="choices" class="fm-width-100 ui-sortable"></div>');
|
5072 |
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="alert(\'This feature is disabled in demo.\')" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
5073 |
}
|
5074 |
else {
|
5075 |
+
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="tb_show(\'\', \'admin-ajax.php?action=select_data_from_db&field_id=' + i + '&nonce=' + fm_ajax.ajaxnonce + '&field_type=radio&value_disabled=' + w_value_disabled + '&width=530&height=370&TB_iframe=1\'); return false;" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
5076 |
}
|
5077 |
var attr_table = jQuery('<div id="choices" class="fm-width-100 ui-sortable"></div>');
|
5078 |
var attr_header = jQuery('<div class="fm-width-100"><div class="fm-header-label fm-width-40">Name</div><div class="fm-header-label fm-width-40">Value</div><div class="fm-header-label fm-width-10">Delete</div><div class="fm-header-label fm-width-10">Move</div></div>');
|
7711 |
|
7712 |
function create_edit_country_list(i) {
|
7713 |
var label = jQuery('<label class="fm-field-label">Edit country list</label>');
|
7714 |
+
var input = jQuery('<a href="" onclick="tb_show(\'\', \'admin-ajax.php?action=FormMakerEditCountryinPopup&nonce=' + fm_ajax.ajaxnonce + '&field_id=' + i + '&width=530&height=370&TB_iframe=1\'); return false;" class="thickbox-preview fm-field-recaptcha-label">Edit country list</a>');
|
7715 |
return create_option_container(null, input);
|
7716 |
}
|
7717 |
|
8633 |
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="alert(\'This feature is disabled in demo.\')" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
8634 |
}
|
8635 |
else {
|
8636 |
+
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="tb_show(\'\', \'admin-ajax.php?action=select_data_from_db&nonce=' + fm_ajax.ajaxnonce + '&field_id=' + i + '&field_type=paypal_select&width=530&height=370&TB_iframe=1\'); return false;" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
8637 |
}
|
8638 |
var note = jQuery('<div class="fm-width-100 error">IMPORTANT! Check the "Empty value" checkbox only if you want the option to be considered as empty.</div>');
|
8639 |
var attr_table = jQuery('<div id="choices" class="fm-width-100 ui-sortable"></div>');
|
8711 |
|
8712 |
function create_payment_property(i) {
|
8713 |
var label = jQuery('<label class="fm-field-label">Product properties</label>');
|
8714 |
+
var button = jQuery('<a class="thickbox-preview" onClick="tb_show(\'\', \'admin-ajax.php?action=product_option&nonce=' + fm_ajax.ajaxnonce + '&field_id=' + i + '&width=530&height=370&TB_iframe=1\')"><span class="fm-add-attribute dashicons dashicons-plus-alt" title="Add"></span></a>');
|
8715 |
var attr_table = jQuery('<ul id="option_ul" class="fm-width-100"></ul>');
|
8716 |
|
8717 |
var input = label;
|
8937 |
li_label.style.cssText = "font-weight:bold; font-size: 13px";
|
8938 |
|
8939 |
var li_edit = document.createElement('a');
|
8940 |
+
li_edit.setAttribute("onclick", "tb_show('', 'admin-ajax.php?action=product_option&nonce=" + fm_ajax.ajaxnonce + "&field_id=" + id + "&property_id=" + i + "&width=530&height=370&TB_iframe=1')");
|
8941 |
li_edit.setAttribute("class", "thickbox-preview");
|
8942 |
|
8943 |
var li_edit_img = document.createElement('span');
|
9259 |
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="alert(\'This feature is disabled in demo.\')" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
9260 |
}
|
9261 |
else {
|
9262 |
+
var button2 = jQuery('<button class="fm-add-option button-secondary" onClick="tb_show(\'\', \'admin-ajax.php?action=select_data_from_db&field_id=' + i + '&nonce=' + fm_ajax.ajaxnonce + '&field_type=paypal_' + type + '&width=530&height=370&TB_iframe=1\'); return false;" title="Add options from database"><span class="field-type-button fm-add-attribute dashicons dashicons-plus-alt"></span>From Database</button>');
|
9263 |
}
|
9264 |
var attr_table = jQuery('<div id="choices" class="fm-width-100 ui-sortable"></div>');
|
9265 |
var attr_header = jQuery('<div class="fm-width-100"><div class="fm-header-label fm-width-60">Product name</div><div class="fm-header-label fm-width-20">Price</div><div class="fm-header-label fm-width-10">Delete</div><div class="fm-header-label fm-width-10">Move</div></div>');
|
12750 |
var adding = document.createElement(element);
|
12751 |
adding.setAttribute("type", type);
|
12752 |
adding.setAttribute("digit", w_digit);
|
12753 |
+
adding.setAttribute("src", url_for_ajax + "?action=formmakerwdcaptcha&nonce=" + fm_ajax.ajaxnonce + "&digit=" + w_digit + "&i=form_id_temp");
|
12754 |
adding.setAttribute("id", "_wd_captchaform_id_temp");
|
12755 |
adding.setAttribute("class", "captcha_img");
|
12756 |
adding.setAttribute("onClick", "captcha_refresh('_wd_captcha','form_id_temp')");
|
12881 |
arithmetic_captcha.setAttribute("operations_count", oper_count);
|
12882 |
arithmetic_captcha.setAttribute("operations", operations);
|
12883 |
arithmetic_captcha.setAttribute("input_size", input_size);
|
12884 |
+
arithmetic_captcha.setAttribute("src", url_for_ajax + "?action=formmakerwdmathcaptcha&operations_count=" + oper_count + "&nonce=" + fm_ajax.ajaxnonce + "&operations=" + operations.replace('+', '@') + "&i=form_id_temp");
|
12885 |
}
|
12886 |
|
12887 |
function create_arithmetic_operations_count(i, w_count) {
|
12948 |
adding.setAttribute("operations_count", w_count);
|
12949 |
adding.setAttribute("operations", w_operations);
|
12950 |
adding.setAttribute("input_size", w_input_size);
|
12951 |
+
adding.setAttribute("src", url_for_ajax + "?action=formmakerwdmathcaptcha&operations_count=" + w_count + "&nonce=" + fm_ajax.ajaxnonce + "&operations=" + w_operations.replace("+", "@") + "&i=form_id_temp");
|
12952 |
adding.setAttribute("id", "_wd_arithmetic_captchaform_id_temp");
|
12953 |
adding.setAttribute("class", "arithmetic_captcha_img");
|
12954 |
adding.setAttribute("onClick", "captcha_refresh('_wd_arithmetic_captcha','form_id_temp')");
|
js/form_maker_admin.js
CHANGED
@@ -255,6 +255,7 @@ function fm_ajax_save(form_id) {
|
|
255 |
"task" : "ajax_search",
|
256 |
"ajax_task" : ajax_task,
|
257 |
"image_current_id" : image_current_id,
|
|
|
258 |
},
|
259 |
success: function (data) {
|
260 |
var str = jQuery(data).find('#images_table').html();
|
@@ -1006,6 +1007,7 @@ function show_stats() {
|
|
1006 |
sorted_label_key: jQuery('#sorted_label_key').val(),
|
1007 |
startdate: jQuery('#startstats').val(),
|
1008 |
enddate: jQuery('#endstats').val(),
|
|
|
1009 |
},
|
1010 |
beforeSend: function (response) {},
|
1011 |
error: function (err) {},
|
255 |
"task" : "ajax_search",
|
256 |
"ajax_task" : ajax_task,
|
257 |
"image_current_id" : image_current_id,
|
258 |
+
"nonce": fm_ajax.ajaxnonce
|
259 |
},
|
260 |
success: function (data) {
|
261 |
var str = jQuery(data).find('#images_table').html();
|
1007 |
sorted_label_key: jQuery('#sorted_label_key').val(),
|
1008 |
startdate: jQuery('#startstats').val(),
|
1009 |
enddate: jQuery('#endstats').val(),
|
1010 |
+
nonce:fm_ajax.ajaxnonce
|
1011 |
},
|
1012 |
beforeSend: function (response) {},
|
1013 |
error: function (err) {},
|
js/formmaker_div.js
CHANGED
@@ -126,12 +126,12 @@ function change_captcha_digit(digit) {
|
|
126 |
captcha=document.getElementById('_wd_captchaform_id_temp');
|
127 |
if (document.getElementById('captcha_digit').value) {
|
128 |
captcha.setAttribute("digit", digit);
|
129 |
-
captcha.setAttribute("src", url_for_ajax + "?action=formmakerwdcaptcha&digit="+digit+"&i=form_id_temp");
|
130 |
document.getElementById('_wd_captcha_inputform_id_temp').style.width=(document.getElementById('captcha_digit').value*10+15)+"px";
|
131 |
}
|
132 |
else {
|
133 |
captcha.setAttribute("digit", "6");
|
134 |
-
captcha.setAttribute("src", url_for_ajax+"?action=formmakerwdcaptcha&digit=6&i=form_id_temp");
|
135 |
document.getElementById('_wd_captcha_inputform_id_temp').style.width=(6*10+15)+"px";
|
136 |
}
|
137 |
}
|
126 |
captcha=document.getElementById('_wd_captchaform_id_temp');
|
127 |
if (document.getElementById('captcha_digit').value) {
|
128 |
captcha.setAttribute("digit", digit);
|
129 |
+
captcha.setAttribute("src", url_for_ajax + "?action=formmakerwdcaptcha&digit="+digit+"&nonce=" + fm_ajax.ajaxnonce + "&i=form_id_temp");
|
130 |
document.getElementById('_wd_captcha_inputform_id_temp').style.width=(document.getElementById('captcha_digit').value*10+15)+"px";
|
131 |
}
|
132 |
else {
|
133 |
captcha.setAttribute("digit", "6");
|
134 |
+
captcha.setAttribute("src", url_for_ajax+"?action=formmakerwdcaptcha&digit=6&nonce=" + fm_ajax.ajaxnonce + "&i=form_id_temp");
|
135 |
document.getElementById('_wd_captcha_inputform_id_temp').style.width=(6*10+15)+"px";
|
136 |
}
|
137 |
}
|
js/main_div_front_end.js
CHANGED
@@ -1925,7 +1925,7 @@ function fm_clear_form(form_id) {
|
|
1925 |
jQuery("#form" + form_id + " button").each(function () {
|
1926 |
jQuery(this).attr('disabled', 'disabled');
|
1927 |
});
|
1928 |
-
jQuery.get(fm_objectL10n.form_maker_admin_ajax + '?action=FMClearProg&addon_task=clear_data&form_id=' + form_id).done(function() {
|
1929 |
window.location = jQuery('#form' + form_id).attr('action');
|
1930 |
});
|
1931 |
}
|
1925 |
jQuery("#form" + form_id + " button").each(function () {
|
1926 |
jQuery(this).attr('disabled', 'disabled');
|
1927 |
});
|
1928 |
+
jQuery.get(fm_objectL10n.form_maker_admin_ajax + '?action=FMClearProg&addon_task=clear_data&nonce=' + fm_ajax.ajaxnonce + '&form_id=' + form_id).done(function() {
|
1929 |
window.location = jQuery('#form' + form_id).attr('action');
|
1930 |
});
|
1931 |
}
|
languages/form_maker-fr_FR.mo
CHANGED
Binary file
|
languages/form_maker-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: form_maker\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: fr\n"
|
@@ -12,133 +12,15 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
-
"X-Generator: Poedit 2.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin/controllers/
|
19 |
-
msgid "Import/Export"
|
20 |
-
msgstr ""
|
21 |
-
|
22 |
-
#: admin/controllers/Addons_fm.php:60
|
23 |
-
msgid ""
|
24 |
-
"Form Maker Export/Import WordPress plugin allows exporting and importing "
|
25 |
-
"forms with/without submissions."
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: admin/controllers/Addons_fm.php:67
|
29 |
-
msgid "MailChimp"
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: admin/controllers/Addons_fm.php:68
|
33 |
-
msgid ""
|
34 |
-
"This add-on is an integration of the Form Maker with MailChimp which allows "
|
35 |
-
"to add contacts to your subscription lists just from submitted forms."
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: admin/controllers/Addons_fm.php:75
|
39 |
-
msgid "Registration"
|
40 |
-
msgstr ""
|
41 |
-
|
42 |
-
#: admin/controllers/Addons_fm.php:76
|
43 |
-
msgid ""
|
44 |
-
"User Registration add-on integrates with Form maker forms allowing users to "
|
45 |
-
"create accounts at your website."
|
46 |
-
msgstr ""
|
47 |
-
|
48 |
-
#: admin/controllers/Addons_fm.php:83
|
49 |
-
msgid "Post Generation"
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: admin/controllers/Addons_fm.php:91
|
53 |
-
msgid "Conditional Emails"
|
54 |
-
msgstr ""
|
55 |
-
|
56 |
-
#: admin/controllers/Addons_fm.php:92
|
57 |
-
msgid ""
|
58 |
-
"Conditional Emails add-on allows to send emails to different recipients "
|
59 |
-
"depending on the submitted data ."
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: admin/controllers/Addons_fm.php:99
|
63 |
-
msgid "Dropbox Integration"
|
64 |
-
msgstr ""
|
65 |
-
|
66 |
-
#: admin/controllers/Addons_fm.php:100
|
67 |
-
msgid ""
|
68 |
-
"The Form Maker Dropbox Integration addon is extending the Form Maker "
|
69 |
-
"capabilities allowing to store the form attachments straight to your Dropbox "
|
70 |
-
"account."
|
71 |
-
msgstr ""
|
72 |
-
|
73 |
-
#: admin/controllers/Addons_fm.php:108
|
74 |
-
msgid "Google Drive Integration"
|
75 |
-
msgstr ""
|
76 |
-
|
77 |
-
#: admin/controllers/Addons_fm.php:109
|
78 |
-
msgid ""
|
79 |
-
"The Google Drive Integration add-on integrates Form Maker with Google Drive "
|
80 |
-
"and allows you to send the file uploads to the Google Drive"
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: admin/controllers/Addons_fm.php:116
|
84 |
-
msgid "PDF Integration"
|
85 |
-
msgstr ""
|
86 |
-
|
87 |
-
#: admin/controllers/Addons_fm.php:117
|
88 |
-
msgid ""
|
89 |
-
"The Form Maker PDF Integration add-on allows sending submitted forms in PDF "
|
90 |
-
"format."
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: admin/controllers/Addons_fm.php:124
|
94 |
-
msgid "Pushover"
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: admin/controllers/Addons_fm.php:125
|
98 |
-
msgid ""
|
99 |
-
"Form Maker Pushover integration allows to receive real-time notifications "
|
100 |
-
"when a user submits a new form. This means messages can be pushed to Android "
|
101 |
-
"and Apple devices, as well as desktop notification board."
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: admin/controllers/Addons_fm.php:132
|
105 |
-
#, fuzzy
|
106 |
-
#| msgid "In progress"
|
107 |
-
msgid "Save Progress"
|
108 |
-
msgstr "en cours"
|
109 |
-
|
110 |
-
#: admin/controllers/Addons_fm.php:133
|
111 |
-
msgid ""
|
112 |
-
"The add-on allows to save filled in forms as draft and continue editing them "
|
113 |
-
"subsequently."
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: admin/controllers/Addons_fm.php:140 admin/views/Manage_fm.php:570
|
117 |
-
msgid "Stripe"
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
#: admin/controllers/Addons_fm.php:141
|
121 |
-
msgid ""
|
122 |
-
"Form Maker Stripe Integration Add-on allows to accept direct payments made "
|
123 |
-
"by Credit Cards. Users will remain on your website during the entire process."
|
124 |
-
msgstr ""
|
125 |
-
|
126 |
-
#: admin/controllers/Addons_fm.php:148
|
127 |
-
msgid "Calculator"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: admin/controllers/Addons_fm.php:149
|
131 |
-
msgid ""
|
132 |
-
"The Form Maker Calculator add-on allows creating forms with dynamically "
|
133 |
-
"calculated fields."
|
134 |
-
msgstr ""
|
135 |
-
|
136 |
-
#: admin/controllers/Blocked_ips_fm.php:25 admin/controllers/Manage_fm.php:40
|
137 |
#: admin/controllers/Submissions_fm.php:61 admin/controllers/Themes_fm.php:46
|
138 |
msgid "Delete"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin/controllers/Blocked_ips_fm.php:26 admin/controllers/Manage_fm.php:
|
142 |
#: admin/controllers/Themes_fm.php:47
|
143 |
#, fuzzy
|
144 |
msgid "deleted"
|
@@ -148,43 +30,57 @@ msgstr "Terminé"
|
|
148 |
msgid "Payment information"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: admin/controllers/Manage_fm.php:
|
152 |
msgid "Publish"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin/controllers/Manage_fm.php:
|
156 |
msgid "published"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: admin/controllers/Manage_fm.php:
|
160 |
msgid "Unpublish"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: admin/controllers/Manage_fm.php:
|
164 |
msgid "unpublished"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: admin/controllers/Manage_fm.php:
|
168 |
msgid "Duplicate"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: admin/controllers/Manage_fm.php:
|
172 |
msgid "duplicated"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: admin/controllers/Manage_fm.php:
|
|
|
|
|
|
|
|
|
176 |
msgid "Create new form"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: admin/controllers/Manage_fm.php:
|
180 |
msgid "options"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: admin/controllers/Manage_fm.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
msgid "layout"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: admin/controllers/Manage_fm.php:
|
188 |
msgid "display options"
|
189 |
msgstr ""
|
190 |
|
@@ -209,536 +105,551 @@ msgstr ""
|
|
209 |
msgid "Deleted"
|
210 |
msgstr "Terminé"
|
211 |
|
212 |
-
#: admin/controllers/Submissions_fm.php:
|
213 |
-
#: admin/controllers/Submissions_fm.php:
|
214 |
-
#: form-maker.php:
|
215 |
#, fuzzy
|
216 |
msgid "Submissions"
|
217 |
msgstr "Afficher la soumission"
|
218 |
|
219 |
-
#: admin/controllers/Themes_fm.php:83 form-maker.php:
|
220 |
msgid "Themes"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: admin/controllers/Themes_fm.php:
|
224 |
-
#: admin/controllers/Themes_fm.php:
|
225 |
msgid "Global Parameters"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin/controllers/Themes_fm.php:
|
229 |
msgid "Header"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin/controllers/Themes_fm.php:
|
233 |
msgid "Content"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin/controllers/Themes_fm.php:
|
237 |
msgid "Inputbox"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: admin/controllers/Themes_fm.php:
|
241 |
msgid "Choices"
|
242 |
msgstr "Les choix"
|
243 |
|
244 |
-
#: admin/controllers/Themes_fm.php:
|
245 |
msgid "General Buttons"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: admin/controllers/Themes_fm.php:
|
249 |
msgid "Pagination"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: admin/controllers/Themes_fm.php:
|
253 |
msgid "Buttons"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: admin/controllers/Themes_fm.php:
|
257 |
msgid "Close(Minimize) Button"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin/controllers/Themes_fm.php:
|
261 |
msgid "Minimize Text"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: admin/controllers/Themes_fm.php:
|
265 |
msgid "Other"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: admin/controllers/Themes_fm.php:
|
269 |
msgid "Custom CSS"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: admin/controllers/Themes_fm.php:
|
273 |
#, fuzzy
|
274 |
msgid "Top"
|
275 |
msgstr "à"
|
276 |
|
277 |
-
#: admin/controllers/Themes_fm.php:
|
278 |
-
#: admin/controllers/Themes_fm.php:
|
279 |
msgid "Right"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: admin/controllers/Themes_fm.php:
|
283 |
msgid "Bottom"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: admin/controllers/Themes_fm.php:
|
287 |
-
#: admin/controllers/Themes_fm.php:
|
288 |
msgid "Left"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: admin/controllers/Themes_fm.php:
|
292 |
#, fuzzy
|
293 |
msgid "Center"
|
294 |
msgstr "Cents "
|
295 |
|
296 |
-
#: admin/controllers/Themes_fm.php:
|
297 |
msgid "Font Family"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: admin/controllers/Themes_fm.php:
|
301 |
-
#: admin/controllers/Themes_fm.php:
|
302 |
-
#: admin/controllers/Themes_fm.php:
|
303 |
-
#: admin/controllers/Themes_fm.php:
|
304 |
-
#: admin/controllers/Themes_fm.php:
|
305 |
-
#: admin/controllers/Themes_fm.php:
|
306 |
-
#: admin/controllers/Themes_fm.php:
|
307 |
-
#: admin/controllers/Themes_fm.php:
|
308 |
msgid "Width"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: admin/controllers/Themes_fm.php:
|
312 |
msgid "Width (for scrollbox, popup form types)"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin/controllers/Themes_fm.php:
|
316 |
-
#: admin/controllers/Themes_fm.php:
|
317 |
-
#: admin/controllers/Themes_fm.php:
|
318 |
-
#: admin/controllers/Themes_fm.php:
|
319 |
-
#: admin/controllers/Themes_fm.php:
|
320 |
-
#: admin/controllers/Themes_fm.php:
|
321 |
-
#: admin/controllers/Themes_fm.php:
|
322 |
-
#: admin/controllers/Themes_fm.php:
|
323 |
msgid "Padding"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: admin/controllers/Themes_fm.php:
|
327 |
msgid "e.g. 3px 5px or 3% 5%"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin/controllers/Themes_fm.php:
|
331 |
-
#: admin/controllers/Themes_fm.php:
|
332 |
-
#: admin/controllers/Themes_fm.php:
|
333 |
-
#: admin/controllers/Themes_fm.php:
|
334 |
-
#: admin/controllers/Themes_fm.php:
|
335 |
-
#: admin/controllers/Themes_fm.php:
|
336 |
-
#: admin/controllers/Themes_fm.php:
|
337 |
-
#: admin/controllers/Themes_fm.php:
|
338 |
-
#: admin/controllers/Themes_fm.php:
|
339 |
-
#: admin/controllers/Themes_fm.php:
|
340 |
msgid "Margin"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: admin/controllers/Themes_fm.php:
|
344 |
msgid "e.g. 5px 10px or 5% 10%"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: admin/controllers/Themes_fm.php:
|
348 |
-
#: admin/controllers/Themes_fm.php:
|
349 |
-
#: admin/controllers/Themes_fm.php:
|
350 |
-
#: admin/controllers/Themes_fm.php:
|
351 |
-
#: admin/controllers/Themes_fm.php:
|
352 |
-
#: admin/controllers/Themes_fm.php:
|
353 |
-
#: admin/controllers/Themes_fm.php:
|
354 |
-
#: admin/controllers/Themes_fm.php:
|
355 |
-
#: admin/controllers/Themes_fm.php:
|
356 |
-
#: admin/controllers/Themes_fm.php:
|
357 |
msgid "Border"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: admin/controllers/Themes_fm.php:
|
361 |
-
#: admin/controllers/Themes_fm.php:
|
362 |
-
#: admin/controllers/Themes_fm.php:
|
363 |
-
#: admin/controllers/Themes_fm.php:
|
364 |
-
#: admin/controllers/Themes_fm.php:
|
365 |
-
#: admin/controllers/Themes_fm.php:
|
366 |
-
#: admin/controllers/Themes_fm.php:
|
367 |
-
#: admin/controllers/Themes_fm.php:
|
368 |
-
#: admin/controllers/Themes_fm.php:
|
369 |
-
#: admin/controllers/Themes_fm.php:
|
370 |
msgid "Border Color"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: admin/controllers/Themes_fm.php:
|
374 |
-
#: admin/controllers/Themes_fm.php:
|
375 |
-
#: admin/controllers/Themes_fm.php:
|
376 |
-
#: admin/controllers/Themes_fm.php:
|
377 |
-
#: admin/controllers/Themes_fm.php:
|
378 |
-
#: admin/controllers/Themes_fm.php:
|
379 |
-
#: admin/controllers/Themes_fm.php:
|
380 |
-
#: admin/controllers/Themes_fm.php:
|
381 |
-
#: admin/controllers/Themes_fm.php:
|
382 |
-
#: admin/controllers/Themes_fm.php:
|
383 |
-
#: admin/controllers/Themes_fm.php:
|
384 |
-
#: admin/controllers/Themes_fm.php:
|
385 |
-
#: admin/controllers/Themes_fm.php:
|
386 |
-
#: admin/controllers/Themes_fm.php:
|
387 |
-
#: admin/controllers/Themes_fm.php:
|
388 |
-
#: admin/controllers/Themes_fm.php:
|
389 |
-
#: admin/controllers/Themes_fm.php:
|
390 |
-
#: admin/controllers/Themes_fm.php:
|
391 |
-
#: admin/controllers/Themes_fm.php:
|
392 |
-
#: admin/controllers/Themes_fm.php:
|
393 |
-
#: admin/controllers/Themes_fm.php:
|
394 |
-
#: admin/controllers/Themes_fm.php:
|
395 |
-
#: admin/controllers/Themes_fm.php:
|
396 |
-
#: admin/controllers/Themes_fm.php:
|
397 |
-
#: admin/controllers/Themes_fm.php:
|
398 |
-
#: admin/controllers/Themes_fm.php:
|
399 |
-
#: admin/controllers/Themes_fm.php:
|
400 |
-
#: admin/controllers/Themes_fm.php:
|
401 |
-
#: admin/controllers/Themes_fm.php:
|
402 |
-
#: admin/controllers/Themes_fm.php:
|
403 |
-
#: admin/controllers/Themes_fm.php:
|
404 |
-
#: admin/controllers/Themes_fm.php:
|
405 |
-
#: admin/controllers/Themes_fm.php:
|
406 |
-
#: admin/controllers/Themes_fm.php:
|
407 |
-
#: admin/controllers/Themes_fm.php:
|
408 |
-
#: admin/controllers/Themes_fm.php:
|
409 |
-
#: admin/controllers/Themes_fm.php:
|
410 |
-
#: admin/controllers/Themes_fm.php:
|
411 |
-
#: admin/controllers/Themes_fm.php:
|
412 |
-
#: admin/controllers/Themes_fm.php:
|
413 |
-
#: admin/controllers/Themes_fm.php:
|
414 |
-
#: admin/controllers/Themes_fm.php:
|
415 |
-
#: admin/controllers/Themes_fm.php:
|
416 |
-
#: admin/controllers/Themes_fm.php:
|
417 |
-
#: admin/controllers/Themes_fm.php:
|
418 |
-
#: admin/controllers/Themes_fm.php:
|
419 |
-
#: admin/controllers/Themes_fm.php:
|
420 |
-
#: admin/controllers/Themes_fm.php:
|
421 |
-
#: admin/controllers/Themes_fm.php:
|
422 |
-
#: admin/controllers/Themes_fm.php:
|
423 |
-
#: admin/controllers/Themes_fm.php:
|
424 |
-
#: admin/controllers/Themes_fm.php:
|
425 |
-
#: admin/controllers/Themes_fm.php:
|
426 |
-
#: admin/controllers/Themes_fm.php:
|
427 |
-
#: admin/controllers/Themes_fm.php:
|
428 |
-
#: admin/controllers/Themes_fm.php:2884
|
429 |
msgid "e.g."
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin/controllers/Themes_fm.php:
|
433 |
-
#: admin/controllers/Themes_fm.php:
|
434 |
-
#: admin/controllers/Themes_fm.php:
|
435 |
-
#: admin/controllers/Themes_fm.php:
|
436 |
-
#: admin/controllers/Themes_fm.php:
|
437 |
-
#: admin/controllers/Themes_fm.php:
|
438 |
-
#: admin/controllers/Themes_fm.php:
|
439 |
-
#: admin/controllers/Themes_fm.php:
|
440 |
-
#: admin/controllers/Themes_fm.php:
|
441 |
-
#: admin/controllers/Themes_fm.php:
|
442 |
msgid "Border Type"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin/controllers/Themes_fm.php:
|
446 |
-
#: admin/controllers/Themes_fm.php:
|
447 |
-
#: admin/controllers/Themes_fm.php:
|
448 |
-
#: admin/controllers/Themes_fm.php:
|
449 |
-
#: admin/controllers/Themes_fm.php:
|
450 |
-
#: admin/controllers/Themes_fm.php:
|
451 |
-
#: admin/controllers/Themes_fm.php:
|
452 |
-
#: admin/controllers/Themes_fm.php:
|
453 |
-
#: admin/controllers/Themes_fm.php:
|
454 |
-
#: admin/controllers/Themes_fm.php:
|
455 |
msgid "Border Width"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: admin/controllers/Themes_fm.php:
|
459 |
-
#: admin/controllers/Themes_fm.php:
|
460 |
-
#: admin/controllers/Themes_fm.php:
|
461 |
-
#: admin/controllers/Themes_fm.php:
|
462 |
-
#: admin/controllers/Themes_fm.php:
|
463 |
-
#: admin/controllers/Themes_fm.php:
|
464 |
-
#: admin/controllers/Themes_fm.php:
|
465 |
-
#: admin/controllers/Themes_fm.php:
|
466 |
msgid "Border Radius"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: admin/controllers/Themes_fm.php:
|
470 |
-
#: admin/controllers/Themes_fm.php:
|
471 |
-
#: admin/controllers/Themes_fm.php:
|
472 |
-
#: admin/controllers/Themes_fm.php:
|
473 |
msgid "Box Shadow"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: admin/controllers/Themes_fm.php:
|
477 |
msgid "General Parameters"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: admin/controllers/Themes_fm.php:
|
481 |
-
#: admin/controllers/Themes_fm.php:
|
482 |
-
#: admin/controllers/Themes_fm.php:
|
483 |
msgid "Alignment"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: admin/controllers/Themes_fm.php:
|
487 |
-
#: admin/controllers/Themes_fm.php:
|
488 |
-
#: admin/controllers/Themes_fm.php:
|
489 |
-
#: admin/controllers/Themes_fm.php:
|
490 |
-
#: admin/controllers/Themes_fm.php:
|
491 |
-
#: admin/controllers/Themes_fm.php:
|
492 |
-
#: admin/controllers/Themes_fm.php:
|
493 |
-
#: admin/controllers/Themes_fm.php:
|
494 |
-
#: admin/controllers/Themes_fm.php:
|
495 |
-
#: admin/controllers/Themes_fm.php:
|
496 |
-
#: admin/controllers/Themes_fm.php:
|
497 |
msgid "Background Color"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: admin/controllers/Themes_fm.php:
|
501 |
msgid "Width (for topbar form type)"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: admin/controllers/Themes_fm.php:
|
505 |
msgid "Text Align"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: admin/controllers/Themes_fm.php:
|
509 |
msgid "Title Parameters"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: admin/controllers/Themes_fm.php:
|
513 |
-
#: admin/controllers/Themes_fm.php:
|
514 |
-
#: admin/controllers/Themes_fm.php:
|
515 |
-
#: admin/controllers/Themes_fm.php:
|
516 |
-
#: admin/controllers/Themes_fm.php:
|
517 |
-
#: admin/controllers/Themes_fm.php:
|
518 |
msgid "Font Size"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: admin/controllers/Themes_fm.php:
|
522 |
-
#: admin/controllers/Themes_fm.php:
|
523 |
-
#: admin/controllers/Themes_fm.php:
|
524 |
-
#: admin/controllers/Themes_fm.php:
|
525 |
-
#: admin/controllers/Themes_fm.php:
|
526 |
-
#: admin/controllers/Themes_fm.php:
|
527 |
msgid "Font Weight"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: admin/controllers/Themes_fm.php:
|
531 |
-
#: admin/controllers/Themes_fm.php:
|
532 |
-
#: admin/controllers/Themes_fm.php:
|
533 |
-
#: admin/controllers/Themes_fm.php:
|
534 |
-
#: admin/controllers/Themes_fm.php:
|
535 |
-
#: admin/controllers/Themes_fm.php:
|
536 |
-
#: admin/controllers/Themes_fm.php:
|
537 |
-
#: admin/controllers/Themes_fm.php:
|
538 |
-
#: admin/controllers/Themes_fm.php:
|
539 |
-
#: admin/controllers/Themes_fm.php:
|
540 |
-
#: admin/controllers/Themes_fm.php:
|
541 |
msgid "Color"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/controllers/Themes_fm.php:
|
545 |
msgid "Description Parameters"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/controllers/Themes_fm.php:
|
549 |
msgid "Image Parameters"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin/controllers/Themes_fm.php:
|
553 |
-
#: admin/controllers/Themes_fm.php:
|
554 |
-
#: admin/controllers/Themes_fm.php:
|
555 |
-
#: admin/controllers/Themes_fm.php:
|
556 |
-
#: admin/controllers/Themes_fm.php:
|
557 |
-
#: admin/controllers/Themes_fm.php:
|
558 |
msgid "Height"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: admin/controllers/Themes_fm.php:
|
562 |
-
#: admin/controllers/Themes_fm.php:
|
563 |
msgid "Background URL"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: admin/controllers/Themes_fm.php:
|
567 |
-
#: admin/controllers/Themes_fm.php:
|
568 |
msgid "Background Repeat"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: admin/controllers/Themes_fm.php:
|
572 |
-
#: admin/controllers/Themes_fm.php:
|
573 |
msgid "Background Position"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: admin/controllers/Themes_fm.php:
|
577 |
msgid "Background Size"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: admin/controllers/Themes_fm.php:
|
581 |
msgid "Mini labels (name, phone, address, checkbox, radio) Parameters"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: admin/controllers/Themes_fm.php:
|
585 |
msgid "Section Parameters"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: admin/controllers/Themes_fm.php:
|
589 |
msgid "Section Column Parameters"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: admin/controllers/Themes_fm.php:
|
593 |
msgid "Footer Parameters"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: admin/controllers/Themes_fm.php:
|
597 |
msgid "Dropdown additional"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: admin/controllers/Themes_fm.php:
|
601 |
msgid "Appearance"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: admin/controllers/Themes_fm.php:
|
605 |
#, fuzzy
|
606 |
msgid "Single Choice"
|
607 |
msgstr "Les choix"
|
608 |
|
609 |
-
#: admin/controllers/Themes_fm.php:
|
610 |
msgid "Checked Parameters"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: admin/controllers/Themes_fm.php:
|
614 |
msgid "Multiple Choice"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: admin/controllers/Themes_fm.php:
|
618 |
msgid "Submit"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: admin/controllers/Themes_fm.php:
|
622 |
-
#: admin/controllers/Themes_fm.php:
|
623 |
-
#: admin/controllers/Themes_fm.php:
|
624 |
msgid "Hover Parameters"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: admin/controllers/Themes_fm.php:
|
628 |
msgid "Reset"
|
629 |
msgstr "remettre "
|
630 |
|
631 |
-
#: admin/controllers/Themes_fm.php:
|
632 |
msgid "Active"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: admin/controllers/Themes_fm.php:
|
636 |
-
#: admin/controllers/Themes_fm.php:
|
637 |
msgid "Line Height"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: admin/controllers/Themes_fm.php:
|
641 |
msgid "Inactive"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: admin/controllers/Themes_fm.php:
|
645 |
msgid "Steps"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: admin/controllers/Themes_fm.php:
|
649 |
msgid "Percentage"
|
650 |
msgstr "Pourcentage"
|
651 |
|
652 |
-
#: admin/controllers/Themes_fm.php:
|
653 |
msgid "Next Button Parameters"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: admin/controllers/Themes_fm.php:
|
657 |
msgid "Previous Button Parameters"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: admin/controllers/Themes_fm.php:
|
661 |
msgid "Position"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: admin/controllers/Themes_fm.php:
|
665 |
msgid "Inactive Text"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: admin/controllers/Themes_fm.php:
|
669 |
msgid "Font Style"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: admin/controllers/Themes_fm.php:
|
673 |
msgid "Required"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: admin/controllers/Themes_fm.php:
|
677 |
msgid "File Upload"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: admin/controllers/Themes_fm.php:
|
681 |
msgid "Grading"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: admin/controllers/Themes_fm.php:
|
685 |
msgid "Text Width"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: admin/controllers/
|
689 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: admin/
|
|
|
|
|
|
|
|
|
693 |
msgid "Section Break"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: admin/models/Manage_fm.php:
|
697 |
msgid "Custom HTML"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: admin/models/Manage_fm.php:
|
|
|
701 |
msgid "No preview available for reCAPTCHA."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: admin/models/Submissions_fm.php:
|
705 |
msgid "Street Address"
|
706 |
msgstr "Adresse 1"
|
707 |
|
708 |
-
#: admin/models/Submissions_fm.php:
|
709 |
msgid "Street Address Line 2"
|
710 |
msgstr "Adresse 2"
|
711 |
|
712 |
-
#: admin/models/Submissions_fm.php:
|
713 |
msgid "City"
|
714 |
msgstr "Ville"
|
715 |
|
716 |
-
#: admin/models/Submissions_fm.php:
|
717 |
msgid "State / Province / Region"
|
718 |
msgstr "Province"
|
719 |
|
720 |
-
#: admin/models/Submissions_fm.php:
|
721 |
msgid "Postal / Zip Code"
|
722 |
msgstr "Code postal / Zip"
|
723 |
|
724 |
-
#: admin/models/Submissions_fm.php:
|
725 |
msgid "Country"
|
726 |
msgstr "Pays"
|
727 |
|
728 |
-
#: admin/views/
|
729 |
-
msgid "Compatible with Premium version only"
|
730 |
-
msgstr ""
|
731 |
-
|
732 |
-
#: admin/views/Blocked_ips_fm.php:55 form-maker.php:246
|
733 |
msgid "Blocked IPs"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: admin/views/Blocked_ips_fm.php:76 framework/WDW_FM_Library.php:
|
737 |
msgid "IP"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: admin/views/Blocked_ips_fm.php:116 admin/views/Manage_fm.php:
|
741 |
-
#: admin/views/Submissions_fm.php:
|
742 |
msgid "Do you want to delete selected item?"
|
743 |
msgstr ""
|
744 |
|
@@ -746,308 +657,320 @@ msgstr ""
|
|
746 |
msgid "Connection type"
|
747 |
msgstr "Type de connexion"
|
748 |
|
749 |
-
#: admin/views/FMShortocde.php:
|
750 |
msgid "Unpublished"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: admin/views/FMShortocde.php:
|
754 |
msgid "Front end submissions are available in Premium version"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: admin/views/FMSqlMapping.php:
|
758 |
-
#: admin/views/Manage_fm.php:
|
759 |
msgid "Type"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: admin/views/FMSqlMapping.php:
|
763 |
msgid "Null"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: admin/views/FMSqlMapping.php:
|
767 |
msgid "Key"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: admin/views/FMSqlMapping.php:
|
771 |
#: admin/views/Themes_fm.php:71
|
772 |
msgid "Default"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: admin/views/FMSqlMapping.php:
|
776 |
msgid "Extra"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: admin/views/FormMakerSubmits.php:
|
780 |
msgid "Date"
|
781 |
-
msgstr "
|
782 |
|
783 |
-
#: admin/views/Manage_fm.php:
|
784 |
msgid "Forms"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: admin/views/Manage_fm.php:
|
788 |
#: admin/views/Themes_fm.php:145
|
789 |
msgid "Title"
|
790 |
msgstr "Titre"
|
791 |
|
792 |
-
#: admin/views/Manage_fm.php:
|
793 |
msgid "Shortcode"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: admin/views/Manage_fm.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
797 |
msgid "BASIC FIELDS"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: admin/views/Manage_fm.php:
|
801 |
msgid "Single Line Text"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: admin/views/Manage_fm.php:
|
805 |
msgid "Paragraph Text"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: admin/views/Manage_fm.php:
|
809 |
#, fuzzy
|
810 |
msgid "Number"
|
811 |
msgstr "novembre"
|
812 |
|
813 |
-
#: admin/views/Manage_fm.php:
|
814 |
#, fuzzy
|
815 |
msgid "Select"
|
816 |
msgstr "Sélectionnez une date"
|
817 |
|
818 |
-
#: admin/views/Manage_fm.php:
|
819 |
msgid "Recaptcha"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: admin/views/Manage_fm.php:
|
823 |
msgid "Simple Captcha"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: admin/views/Manage_fm.php:
|
827 |
msgid "USER INFO FIELDS"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: admin/views/Manage_fm.php:
|
831 |
msgid "Name"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: admin/views/Manage_fm.php:
|
835 |
msgid "Email"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: admin/views/Manage_fm.php:
|
839 |
msgid "Phone"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: admin/views/Manage_fm.php:
|
843 |
msgid "Address"
|
844 |
msgstr "Adresse"
|
845 |
|
846 |
-
#: admin/views/Manage_fm.php:
|
847 |
#, fuzzy
|
848 |
msgid "Mark on Map"
|
849 |
msgstr "Afficher sur la carte"
|
850 |
|
851 |
-
#: admin/views/Manage_fm.php:
|
852 |
#, fuzzy
|
853 |
msgid "Country List"
|
854 |
msgstr "Pays"
|
855 |
|
856 |
-
#: admin/views/Manage_fm.php:
|
857 |
msgid "Date of Birth"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: admin/views/Manage_fm.php:
|
861 |
-
msgid "
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: admin/views/Manage_fm.php:
|
865 |
msgid "HTML"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: admin/views/Manage_fm.php:
|
869 |
-
msgid "Section"
|
870 |
-
msgstr ""
|
871 |
-
|
872 |
-
#: admin/views/Manage_fm.php:543
|
873 |
-
msgid "Page"
|
874 |
-
msgstr ""
|
875 |
-
|
876 |
-
#: admin/views/Manage_fm.php:545
|
877 |
-
msgid "ADVANCED"
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: admin/views/Manage_fm.php:547
|
881 |
#, fuzzy
|
882 |
msgid "Map"
|
883 |
msgstr "Mai"
|
884 |
|
885 |
-
#: admin/views/Manage_fm.php:
|
886 |
msgid "Time"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: admin/views/Manage_fm.php:
|
890 |
msgid "Receive Copy"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: admin/views/Manage_fm.php:
|
894 |
msgid "Date Range"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: admin/views/Manage_fm.php:
|
898 |
msgid "Stars"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: admin/views/Manage_fm.php:
|
902 |
msgid "Rating"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: admin/views/Manage_fm.php:
|
906 |
msgid "Slider"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: admin/views/Manage_fm.php:
|
910 |
msgid "Range"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: admin/views/Manage_fm.php:
|
914 |
msgid "Grades"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: admin/views/Manage_fm.php:
|
918 |
#, fuzzy
|
919 |
msgid "Table of Fields"
|
920 |
msgstr "Sélectionnez un champ "
|
921 |
|
922 |
-
#: admin/views/Manage_fm.php:
|
923 |
msgid "Hidden Input"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: admin/views/Manage_fm.php:
|
927 |
msgid "Custom Button"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: admin/views/Manage_fm.php:
|
931 |
msgid "Password"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: admin/views/Manage_fm.php:
|
935 |
#, fuzzy
|
936 |
msgid "Phone-Area Code"
|
937 |
msgstr "Code de zone"
|
938 |
|
939 |
-
#: admin/views/Manage_fm.php:
|
940 |
msgid "Arithmetic Captcha"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: admin/views/Manage_fm.php:
|
944 |
msgid "PAYMENT"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: admin/views/Manage_fm.php:
|
948 |
msgid "Price"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: admin/views/Manage_fm.php:
|
952 |
msgid "Payment Select"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: admin/views/Manage_fm.php:
|
956 |
msgid "Payment Single Choice"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: admin/views/Manage_fm.php:
|
960 |
msgid "Payment Multiple Choice"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: admin/views/Manage_fm.php:
|
964 |
msgid "Shipping"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: admin/views/Manage_fm.php:
|
968 |
-
#: frontend/views/form_submissions.php:
|
969 |
msgid "Total"
|
970 |
msgstr "Total"
|
971 |
|
972 |
-
#: admin/views/Manage_fm.php:
|
|
|
|
|
|
|
|
|
973 |
msgid "Toggle panel:"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: admin/views/Manage_fm.php:
|
977 |
msgid "This field type is available in Premium version"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: admin/views/Manage_fm.php:
|
981 |
-
msgid "STRIPE
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: admin/views/Manage_fm.php:
|
985 |
msgid "This feature is available only in the Premium version"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: admin/views/Manage_fm.php:
|
989 |
-
msgid "Requires STRIPE
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: admin/views/Manage_fm.php:
|
993 |
-
msgid "This feature requires STRIPE
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: admin/views/Manage_fm.php:
|
997 |
msgid "Buy"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: admin/views/Manage_fm.php:
|
1001 |
-
|
1002 |
-
msgid "Update"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: admin/views/Manage_fm.php:
|
1006 |
-
|
1007 |
-
msgid "Back to Form"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: admin/views/Manage_fm.php:
|
1011 |
-
|
|
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: admin/views/Manage_fm.php:
|
1015 |
-
msgid "
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: admin/views/Manage_fm.php:
|
1019 |
-
#: framework/WDW_FM_Library.php:
|
1020 |
msgid "Misc"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: admin/views/
|
|
|
|
|
|
|
|
|
1024 |
msgid "Options"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: admin/views/Options_fm.php:
|
1028 |
msgid "Save"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: admin/views/Options_fm.php:
|
1032 |
#, php-format
|
1033 |
msgid "%s for your site from ReCaptcha website and copy the provided here."
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: admin/views/Options_fm.php:
|
1037 |
msgid "Get ReCaptcha Site and Secret Keys"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: admin/views/
|
1041 |
#, php-format
|
1042 |
-
msgid "
|
|
|
|
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: admin/views/Submissions_fm.php:
|
1046 |
#, fuzzy
|
1047 |
msgid "Show Filters"
|
1048 |
msgstr "Afficher la matrice"
|
1049 |
|
1050 |
-
#: admin/views/Submissions_fm.php:
|
1051 |
msgid "Hide Filters"
|
1052 |
msgstr ""
|
1053 |
|
@@ -1056,140 +979,237 @@ msgstr ""
|
|
1056 |
msgid "Title: "
|
1057 |
msgstr "Titre"
|
1058 |
|
1059 |
-
#: admin/views/Themes_fm.php:
|
1060 |
msgid ""
|
1061 |
"This theme is outdated. Theme Options are only available in new themes "
|
1062 |
"provided by Form Maker. You can use Custom CSS panel to edit form styling, "
|
1063 |
"or alternatively select a new theme for your form."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: admin/views/
|
1067 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: admin/views/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1071 |
msgid "Premium Version"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: admin/views/view.php:
|
1075 |
msgid "Upgrade"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: form-maker.php:
|
|
|
|
|
|
|
|
|
1079 |
msgid "Form Maker"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: form-maker.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1083 |
msgid "Uninstall"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: form-maker.php:
|
1087 |
msgid "Number of items per page:"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: form-maker.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1091 |
#, fuzzy
|
1092 |
msgid "Nothing found."
|
1093 |
msgstr "Rien n'a été soumis."
|
1094 |
|
1095 |
-
#: form-maker.php:
|
1096 |
msgid "The captcha already has been created."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: form-maker.php:
|
|
|
|
|
|
|
|
|
1100 |
#, fuzzy
|
1101 |
msgid "Add"
|
1102 |
msgstr "Adresse"
|
1103 |
|
1104 |
-
#: form-maker.php:
|
1105 |
-
msgid "Add Field"
|
1106 |
-
msgstr ""
|
1107 |
-
|
1108 |
-
#: form-maker.php:403
|
1109 |
msgid "Edit Field"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: form-maker.php:
|
1113 |
msgid ""
|
1114 |
"To use this feature, please go to Form Options > Payment Options and select "
|
1115 |
"\"Stripe\" as the Payment Method."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: form-maker.php:
|
1119 |
msgid "Sunday"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: form-maker.php:
|
1123 |
msgid "Monday"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: form-maker.php:
|
1127 |
msgid "Tuesday"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: form-maker.php:
|
1131 |
msgid "Wednesday"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: form-maker.php:
|
1135 |
msgid "Thursday"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: form-maker.php:
|
1139 |
msgid "Friday"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: form-maker.php:
|
1143 |
msgid "Saturday"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: form-maker.php:
|
1147 |
msgid "Leave empty to set the width to 100%."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: form-maker.php:
|
1151 |
msgid ""
|
1152 |
"The free version is limited up to 7 fields to add. If you need this "
|
1153 |
"functionality, you need to buy the commercial version."
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: form-maker.php:
|
1157 |
-
msgid "No preview available."
|
1158 |
-
msgstr ""
|
1159 |
-
|
1160 |
-
#: form-maker.php:416
|
1161 |
#, php-format
|
1162 |
msgid ""
|
1163 |
"%s Old reCAPTCHA keys will not work for %s. Please make sure to enable the "
|
1164 |
"API keys for Invisible reCAPTCHA."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: form-maker.php:
|
1168 |
msgid "Note:"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: form-maker.php:
|
1172 |
msgid "Invisible reCAPTCHA"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: form-maker.php:
|
1176 |
#, fuzzy
|
1177 |
msgid "This field is a single line text input."
|
1178 |
msgstr ""
|
1179 |
"Ce champ %s nécessite une entrée unique et cette valeur a déjà été soumis."
|
1180 |
|
1181 |
-
#: form-maker.php:
|
1182 |
-
#: form-maker.php:
|
1183 |
msgid "To set a default value, just fill the field above."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: form-maker.php:
|
1187 |
msgid ""
|
1188 |
"You can set the text input as Required, making sure the submitter provides a "
|
1189 |
"value for it."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: form-maker.php:
|
1193 |
msgid ""
|
1194 |
"Validation (RegExp.) option in Advanced options lets you configure Regular "
|
1195 |
"Expression for your Single Line Text field. Use Common Regular Expressions "
|
@@ -1198,86 +1218,86 @@ msgid ""
|
|
1198 |
"corresponding options of Common Regular Expressions drop-down."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: form-maker.php:
|
1202 |
msgid ""
|
1203 |
"Additionally, you can add HTML attributes to your form fields with "
|
1204 |
"Additional Attributes."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: form-maker.php:
|
1208 |
msgid ""
|
1209 |
"This field adds a textarea box to your form. Users can write alphanumeric "
|
1210 |
"text, special characters and line breaks."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: form-maker.php:
|
1214 |
msgid "Set the width and height of the textarea box using Size(px) option."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: form-maker.php:
|
1218 |
msgid ""
|
1219 |
"This is an input text that accepts only numbers. Users can type a number "
|
1220 |
"directly, or use the spinner arrows to specify it."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: form-maker.php:
|
1224 |
msgid ""
|
1225 |
"Step option defines the number to increment/decrement the spinner value, "
|
1226 |
"when the users press up or down arrows."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: form-maker.php:
|
1230 |
msgid ""
|
1231 |
"Use Min Value and Max Value options to set lower and upper limitation for "
|
1232 |
"the value of this Number field."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: form-maker.php:
|
1236 |
msgid ""
|
1237 |
"This field allows the submitter to choose values from select box. Just click "
|
1238 |
"(+) Option button and fill in all options you will need or click (+) From "
|
1239 |
"Database to fill the options from a database table."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: form-maker.php:
|
1243 |
msgid ""
|
1244 |
"In case you need to have option values to be different from option names, "
|
1245 |
"mark Enable option's value from Advanced options as checked."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: form-maker.php:
|
1249 |
msgid ""
|
1250 |
"Using this field you can add a list of Radio buttons to your form. Just "
|
1251 |
"click (+) Option button and fill in all options you will need or click (+) "
|
1252 |
"From Database to fill the options from a database table."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: form-maker.php:
|
1256 |
msgid ""
|
1257 |
"Relative Position lets you choose the position of options in relation to "
|
1258 |
"each other. Whereas Option Label Position lets you select the position of "
|
1259 |
"radio button label."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: form-maker.php:
|
1263 |
msgid ""
|
1264 |
"And by enabling Allow other, you can let the user to write their own "
|
1265 |
"specific value."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: form-maker.php:
|
1269 |
msgid ""
|
1270 |
"Multiple Choice field lets you have a list of Checkboxes. This field allows "
|
1271 |
"the submitter to choose more than one values."
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: form-maker.php:
|
1275 |
msgid ""
|
1276 |
"Just click (+) Option button and fill in all options you will need or click "
|
1277 |
"(+) From Database to fill the options from a database table."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: form-maker.php:
|
1281 |
#, php-format
|
1282 |
msgid ""
|
1283 |
"Form Maker is integrated with Google ReCaptcha, which protects your forms "
|
@@ -1285,71 +1305,71 @@ msgid ""
|
|
1285 |
"Site and Secret Keys by registering your website on %s"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: form-maker.php:
|
1289 |
msgid "Google ReCaptcha website"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: form-maker.php:
|
1293 |
msgid ""
|
1294 |
"After registering and creating the keys, copy them to Form Maker > Options "
|
1295 |
"page."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: form-maker.php:
|
1299 |
msgid ""
|
1300 |
"The Submit button validates all form field values, saves them on MySQL "
|
1301 |
"database of your website, sends emails and performs other actions configured "
|
1302 |
"in Form Options. You can have more than one submit button in your form."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: form-maker.php:
|
1306 |
msgid ""
|
1307 |
"You can use this field as an alternative to ReCaptcha to protect your forms "
|
1308 |
"against spambots. It’s a random combination of numbers and letters, and "
|
1309 |
"users need to type them in correctly to submit the form."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: form-maker.php:
|
1313 |
msgid ""
|
1314 |
"You can specify the number of symbols in Simple Captcha using Symbols (3 - "
|
1315 |
"9) option."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: form-maker.php:
|
1319 |
msgid "This field lets the user write their name."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: form-maker.php:
|
1323 |
msgid ""
|
1324 |
"Enabling Autofill with user name setting will automatically fill in Name "
|
1325 |
"field with the name of the logged in user."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: form-maker.php:
|
1329 |
msgid ""
|
1330 |
"In case you do not wish to receive the same data for the same Name field "
|
1331 |
"twice, activate Allow only unique values option."
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: form-maker.php:
|
1335 |
#, fuzzy
|
1336 |
#| msgid "This is not a valid email address."
|
1337 |
msgid "This field is an input field that accepts an email address."
|
1338 |
msgstr "Ceci n'est pas une adresse e-mail valide"
|
1339 |
|
1340 |
-
#: form-maker.php:
|
1341 |
msgid ""
|
1342 |
"Using Confirmation Email setting in Advanced Options you can require the "
|
1343 |
"submitter to re-type their email address."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: form-maker.php:
|
1347 |
msgid ""
|
1348 |
"Autofill with user email will autofill Email field with the email address of "
|
1349 |
"the logged in user."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: form-maker.php:
|
1353 |
msgid ""
|
1354 |
"Upon successful submission of the Form, you have the option to send the "
|
1355 |
"submitted data (or just a confirmation message) to the email address entered "
|
@@ -1357,187 +1377,187 @@ msgid ""
|
|
1357 |
"Email Options page."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: form-maker.php:
|
1361 |
msgid ""
|
1362 |
"This field is an input for a phone number. It provides a list of country "
|
1363 |
"flags, which users can select and have their country code automatically "
|
1364 |
"added to the phone number."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: form-maker.php:
|
1368 |
msgid ""
|
1369 |
"In case you do not wish to receive the same data for the same Phone field "
|
1370 |
"more than once, activate Allow only unique values setting from Advanced "
|
1371 |
"options."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: form-maker.php:
|
1375 |
msgid ""
|
1376 |
"This field lets you skip a few steps and quickly add one set for requesting "
|
1377 |
"the address of the submitter. Use Overall size(px) option to set the width "
|
1378 |
"of Address field."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: form-maker.php:
|
1382 |
msgid ""
|
1383 |
"You can enable or disable elements of Address field using Disable Field(s) "
|
1384 |
"setting in Advanced Options."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: form-maker.php:
|
1388 |
msgid ""
|
1389 |
"You can turn State/Province/Region field into a list of US states by "
|
1390 |
"activating Use list for US states setting from Advanced Options. Note: This "
|
1391 |
"only works in case United States is selected for Country select box."
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: form-maker.php:
|
1395 |
msgid ""
|
1396 |
"Mark on Map field lets users to drag the map pin and drop it on their "
|
1397 |
"selected location. You can specify a default address for the location pin "
|
1398 |
"with Address option."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: form-maker.php:
|
1402 |
msgid ""
|
1403 |
"In addition, Marker Info setting allows you to provide additional details "
|
1404 |
"about the location. It will appear after users click on the location pin."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: form-maker.php:
|
1408 |
msgid ""
|
1409 |
"Country List is a select box which provides a list of all countries in "
|
1410 |
"alphabetical order."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: form-maker.php:
|
1414 |
msgid ""
|
1415 |
"You can include/exclude specific countries from the list using the Edit "
|
1416 |
"country list setting in Advanced Options."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: form-maker.php:
|
1420 |
msgid "Users can specify their birthday or any date with this field."
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: form-maker.php:
|
1424 |
msgid ""
|
1425 |
"Use Fields separator setting in Advanced options to change the divider "
|
1426 |
"between day, month and year boxes."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: form-maker.php:
|
1430 |
msgid ""
|
1431 |
"You can set the fields to be text inputs or select boxes using Day field "
|
1432 |
"type, Month field type and Year field type options."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: form-maker.php:
|
1436 |
msgid ""
|
1437 |
"In addition, you can specify the width of day, month and year fields using "
|
1438 |
"Day field size(px), Month field size(px) and Year field size(px) settings."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: form-maker.php:
|
1442 |
msgid ""
|
1443 |
"You can allow users to upload single or multiple documents, images and "
|
1444 |
"various files through your form."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: form-maker.php:
|
1448 |
msgid ""
|
1449 |
"Use Allowed file extensions option to specify all acceptable file formats. "
|
1450 |
"Make sure to separate them with commas."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: form-maker.php:
|
1454 |
msgid ""
|
1455 |
"Mark Allow Uploading Multiple Files option in Advanced Options to allow "
|
1456 |
"users to select and upload multiple files."
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: form-maker.php:
|
1460 |
msgid ""
|
1461 |
"Map field can be used for pinning one or more locations on Google Map and "
|
1462 |
"displaying them on your form."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: form-maker.php:
|
1466 |
msgid "Press the small Plus icon to add a location pin."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: form-maker.php:
|
1470 |
msgid ""
|
1471 |
"Time field of Form Maker plugin will allow users to specify time value. Set "
|
1472 |
"the time format of the field to 24-hour or 12-hour using Time Format option."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: form-maker.php:
|
1476 |
msgid ""
|
1477 |
"When users fill in an email address using Email Field, this checkbox will "
|
1478 |
"allow them to choose if they wish to receive a copy of the submission email."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: form-maker.php:
|
1482 |
msgid "Note: Make sure to configure Form Options > Email Options of your form."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: form-maker.php:
|
1486 |
msgid ""
|
1487 |
"Add Star rating field to your form with this field. You can display as many "
|
1488 |
"stars, as you will need, set the number using Number of Stars option."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: form-maker.php:
|
1492 |
msgid ""
|
1493 |
"Place Rating field on your form to have radio buttons, which indicate rating "
|
1494 |
"from worst to best. You can set many radio buttons to display using Scale "
|
1495 |
"Range option."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: form-maker.php:
|
1499 |
msgid ""
|
1500 |
"Slider field lets users specify the field value by dragging its handle from "
|
1501 |
"Min Value to Max Value."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: form-maker.php:
|
1505 |
msgid ""
|
1506 |
"You can use this field to let users choose a numeric range by providing "
|
1507 |
"values for 2 number inputs. Its Step option allows to set the increment/"
|
1508 |
"decrement of spinners’ values, when users click on up or down arrows."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: form-maker.php:
|
1512 |
msgid ""
|
1513 |
"Users will be able to grade specified items with this field. The sum of all "
|
1514 |
"values will appear below the field with Total parameter."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: form-maker.php:
|
1518 |
msgid "Items option allows you to add multiple options to your Grades field."
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: form-maker.php:
|
1522 |
msgid ""
|
1523 |
"Table of Fields lets you place a matrix on your form, which will let the "
|
1524 |
"submitter to answer a few questions with one field."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: form-maker.php:
|
1528 |
msgid ""
|
1529 |
"It allows you to configure the matrix with radio buttons, checkboxes, text "
|
1530 |
"boxes or drop-downs. Use Input Type option to set this."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: form-maker.php:
|
1534 |
msgid ""
|
1535 |
"Hidden Input field is similar to Single Line Text field, but it is not "
|
1536 |
"visible to users. Hidden Fields are handy, in case you need to run a custom "
|
1537 |
"Javascript and submit the result with the info on your form."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: form-maker.php:
|
1541 |
msgid ""
|
1542 |
"Name option of this field is mandatory. Note: we highly recommend you to "
|
1543 |
"avoid using spaces or special characters in Hidden Input name. You can write "
|
@@ -1545,197 +1565,204 @@ msgid ""
|
|
1545 |
"page."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: form-maker.php:
|
1549 |
msgid ""
|
1550 |
"In case you wish to run custom Javascript on your form, you can place Custom "
|
1551 |
"Button on your form. Its lets you call the script with its OnClick function."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: form-maker.php:
|
1555 |
msgid ""
|
1556 |
"You can write the custom Javascript code using the editor on Form Options > "
|
1557 |
"Javascript page."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: form-maker.php:
|
1561 |
msgid ""
|
1562 |
"Password input can be used to allow users provide secret text, such as "
|
1563 |
"passwords. All symbols written in this field are replaced with dots."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: form-maker.php:
|
1567 |
msgid ""
|
1568 |
"You can activate Password Confirmation option to ask users to repeat the "
|
1569 |
"password."
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: form-maker.php:
|
1573 |
msgid ""
|
1574 |
"Phone-Area Code is a Phone type field, which allows users to write Area Code "
|
1575 |
"and Phone Number into separate inputs."
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: form-maker.php:
|
1579 |
msgid ""
|
1580 |
"Arithmetic Captcha is quite similar to Simple Captcha. However, instead of "
|
1581 |
"showing random symbols, it displays arithmetic operations."
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: form-maker.php:
|
1585 |
msgid ""
|
1586 |
"You can set the operations using Operations option. The field can use "
|
1587 |
"addition (+), subtraction (-), multiplication (*) and division (/)."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: form-maker.php:
|
1591 |
msgid "Make sure to separate the operations with commas."
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: form-maker.php:
|
1595 |
msgid ""
|
1596 |
"Users can set a payment amount of their choice with Price field. Assigns "
|
1597 |
"minimum and maximum limits on its value using Range option."
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: form-maker.php:
|
1601 |
msgid ""
|
1602 |
"Additionally, you can activate Readonly attribute. This way, users will not "
|
1603 |
"be able to edit the value of Price."
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: form-maker.php:
|
1607 |
msgid ""
|
1608 |
"Note: Make sure to configure Form Options > Payment Options of your form."
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: form-maker.php:
|
1612 |
msgid ""
|
1613 |
"Payment Select field lets you create lists of products, one of which the "
|
1614 |
"submitter can choose to buy through your form. Add or edit list items using "
|
1615 |
"Options setting of the fields."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: form-maker.php:
|
1619 |
msgid ""
|
1620 |
"Enable Quantity property from Advanced Options, in case you would like the "
|
1621 |
"users to mention the quantity of items they purchase."
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: form-maker.php:
|
1625 |
msgid ""
|
1626 |
"Also, you can configure custom or built-in Product Properties for your "
|
1627 |
"products, such as Color, T-Shirt Size or Print Size."
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: form-maker.php:
|
1631 |
msgid ""
|
1632 |
"Payment Single Choice field lets you create lists of products, one of which "
|
1633 |
"the submitter can choose to buy through your form. Add or edit list items "
|
1634 |
"using Options setting of the fields."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: form-maker.php:
|
1638 |
msgid ""
|
1639 |
"Payment Multiple Choice field lets you create lists of products, which the "
|
1640 |
"submitter can choose to buy through your form. Add or edit list items using "
|
1641 |
"Options setting of the fields."
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: form-maker.php:
|
1645 |
msgid ""
|
1646 |
"Shipping allows you to configure shipping types, set price for each of them "
|
1647 |
"and display them on your form as radio buttons."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: form-maker.php:
|
1651 |
msgid ""
|
1652 |
"Please Total field to your payment form to sum up the values of Payment "
|
1653 |
"fields. "
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: form-maker.php:
|
1657 |
msgid ""
|
1658 |
"This field adds the credit card details inputs (card number, expiration "
|
1659 |
"date, etc.) and allows you to accept direct payments made by credit cards."
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: form-maker.php:
|
1663 |
msgid "Do you want to delete selected items?"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: form-maker.php:
|
1667 |
msgid "You must select at least one item."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: form-maker.php:
|
1671 |
msgid "Add placeholder"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: form-maker.php:
|
1675 |
msgid "You must select a form"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: form-maker.php:
|
1679 |
msgid "Sorry, you are not allowed to access this page."
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: form-maker.php:
|
1683 |
msgid "Can not upload this type of file"
|
1684 |
msgstr "Impossible de télécharger ce type de fichier"
|
1685 |
|
1686 |
-
#: form-maker.php:
|
1687 |
msgid "Field is required"
|
1688 |
msgstr "Champ requis"
|
1689 |
|
1690 |
-
#: form-maker.php:
|
1691 |
msgid "The "
|
1692 |
msgstr "le"
|
1693 |
|
1694 |
-
#: form-maker.php:
|
1695 |
msgid " value must be between "
|
1696 |
msgstr "La valeur doit être comprise entre"
|
1697 |
|
1698 |
-
#: form-maker.php:
|
1699 |
msgid "Value must be between "
|
1700 |
msgstr "La valeur doit être comprise entre"
|
1701 |
|
1702 |
-
#: form-maker.php:
|
1703 |
msgid "Are you sure you want to clear saved data?"
|
1704 |
msgstr "Voulez-vous vraiment effacer les données enregistrées?"
|
1705 |
|
1706 |
-
#: form-maker.php:
|
1707 |
msgid "Your score should be less than"
|
1708 |
msgstr "Votre note doit être inférieure à "
|
1709 |
|
1710 |
-
#: form-maker.php:
|
1711 |
#, fuzzy
|
1712 |
msgid "This is not a valid time value."
|
1713 |
msgstr "Ce n'est pas un format de date valide."
|
1714 |
|
1715 |
-
#: form-maker.php:
|
1716 |
#, fuzzy
|
1717 |
msgid "This is not a valid number value."
|
1718 |
msgstr "Ceci n'est pas une adresse e-mail valide"
|
1719 |
|
1720 |
-
#: form-maker.php:
|
1721 |
#, fuzzy
|
1722 |
msgid "This is not a valid date value."
|
1723 |
msgstr "Ce n'est pas un format de date valide."
|
1724 |
|
1725 |
-
#: form-maker.php:
|
1726 |
#, fuzzy, php-format
|
1727 |
msgid "The year must be between %s and %s"
|
1728 |
msgstr "La valeur doit être comprise entre"
|
1729 |
|
1730 |
-
#: form-maker.php:
|
1731 |
msgid ""
|
1732 |
"Oops! Seems like you installed the update over a quite old version of Form "
|
1733 |
"Maker. Unfortunately, this version is deprecated.<br />Please contact 10Web "
|
1734 |
-
"support team at support@10web.io. We will take care of this "
|
1735 |
-
"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: form-maker.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1739 |
msgid ""
|
1740 |
"Form Maker plugin is a modern and advanced tool for easy and fast creating "
|
1741 |
"of a WordPress Form. The backend interface is intuitive and user friendly "
|
@@ -1743,1485 +1770,1544 @@ msgid ""
|
|
1743 |
"Forms."
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: form-maker.php:
|
1747 |
msgid "Easy to Use"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: form-maker.php:
|
1751 |
msgid ""
|
1752 |
"This responsive form maker plugin is one of the most easy-to-use form "
|
1753 |
"builder solutions available on the market. Simple, yet powerful plugin "
|
1754 |
"allows you to quickly and easily build any complex forms."
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: form-maker.php:
|
1758 |
msgid "Customizable Fields"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: form-maker.php:
|
1762 |
msgid ""
|
1763 |
"All the fields of Form Maker plugin are highly customizable, which allows "
|
1764 |
"you to change almost every detail in the form and make it look exactly like "
|
1765 |
"you want it to be."
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: form-maker.php:
|
1769 |
msgid ""
|
1770 |
"You can view the submissions for each form you have. The plugin allows to "
|
1771 |
"view submissions statistics, filter submission data and export in csv or xml "
|
1772 |
"formats."
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: form-maker.php:
|
1776 |
msgid "Multi-Page Forms"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: form-maker.php:
|
1780 |
msgid ""
|
1781 |
"With the form builder plugin you can create muilti-page forms. Simply use "
|
1782 |
"the page break field to separate the pages in your forms."
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: form-maker.php:
|
1786 |
msgid ""
|
1787 |
"The WordPress Form Maker plugin comes with a wide range of customizable "
|
1788 |
"themes. You can choose from a list of existing themes or simply create the "
|
1789 |
"one that better fits your brand and website."
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: form-maker.php:
|
1793 |
msgid "Installing"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: form-maker.php:
|
1797 |
msgid "Creating a new Form"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: form-maker.php:
|
1801 |
msgid "Configuring Form Options"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: form-maker.php:
|
1805 |
msgid "Description of The Form Fields"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: form-maker.php:
|
1809 |
msgid "Selecting Options from Database"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: form-maker.php:
|
1813 |
msgid "Publishing the Created Form"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: form-maker.php:
|
1817 |
msgid "Blocking IPs"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#: form-maker.php:
|
1821 |
msgid "Managing Submissions"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: form-maker.php:
|
1825 |
msgid "Publishing Submissions"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: form-maker.php:
|
1829 |
#, php-format
|
1830 |
-
msgid "
|
|
|
|
|
|
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#: form-maker.php:
|
1834 |
#, php-format
|
1835 |
-
msgid "
|
|
|
|
|
|
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: form-maker.php:
|
1839 |
#, php-format
|
1840 |
msgid ""
|
1841 |
"%s advises: Install brand new FREE %s plugin to keep your forms and website "
|
1842 |
"safe."
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#: form-maker.php:
|
1846 |
msgid "More details"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
-
#: form-maker.php:
|
1850 |
msgid "Backup WD"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#: form-maker.php:
|
1854 |
msgid "Support Forum"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: form-maker.php:
|
1858 |
msgid "Rate"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
-
#: framework/WDW_FM_Library.php:
|
1862 |
msgid ""
|
1863 |
"You cannot select former dates. Choose a date starting from the current one."
|
1864 |
msgstr ""
|
1865 |
"Vous ne pouvez pas sélectionner anciens dates. Choisissez une date à partir "
|
1866 |
"de l'actuel."
|
1867 |
|
1868 |
-
#: framework/WDW_FM_Library.php:
|
1869 |
msgid "field is required."
|
1870 |
msgstr "Champ est obligatoire"
|
1871 |
|
1872 |
-
#: framework/WDW_FM_Library.php:
|
1873 |
msgid "The"
|
1874 |
msgstr "la "
|
1875 |
|
1876 |
-
#: framework/WDW_FM_Library.php:
|
1877 |
msgid "value must be between"
|
1878 |
msgstr "valeur doit être comprise entre "
|
1879 |
|
1880 |
-
#: framework/WDW_FM_Library.php:
|
1881 |
-
#: framework/WDW_FM_Library.php:
|
1882 |
-
#: frontend/views/form_maker.php:
|
1883 |
msgid "Quantity"
|
1884 |
msgstr "Quantité "
|
1885 |
|
1886 |
-
#: framework/WDW_FM_Library.php:
|
1887 |
#, php-format
|
1888 |
msgid "No %s found."
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: framework/WDW_FM_Library.php:
|
1892 |
msgid "Afghanistan"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: framework/WDW_FM_Library.php:
|
1896 |
msgid "Albania"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: framework/WDW_FM_Library.php:
|
1900 |
msgid "Algeria"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: framework/WDW_FM_Library.php:
|
1904 |
msgid "Andorra"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: framework/WDW_FM_Library.php:
|
1908 |
msgid "Angola"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: framework/WDW_FM_Library.php:
|
1912 |
msgid "Antigua and Barbuda"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: framework/WDW_FM_Library.php:
|
1916 |
msgid "Argentina"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#: framework/WDW_FM_Library.php:
|
1920 |
msgid "Armenia"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: framework/WDW_FM_Library.php:
|
1924 |
msgid "Australia"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: framework/WDW_FM_Library.php:
|
1928 |
msgid "Austria"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: framework/WDW_FM_Library.php:
|
1932 |
msgid "Azerbaijan"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: framework/WDW_FM_Library.php:
|
1936 |
msgid "Bahamas"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: framework/WDW_FM_Library.php:
|
1940 |
msgid "Bahrain"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: framework/WDW_FM_Library.php:
|
1944 |
msgid "Bangladesh"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: framework/WDW_FM_Library.php:
|
1948 |
msgid "Barbados"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: framework/WDW_FM_Library.php:
|
1952 |
msgid "Belarus"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: framework/WDW_FM_Library.php:
|
1956 |
msgid "Belgium"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: framework/WDW_FM_Library.php:
|
1960 |
msgid "Belize"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: framework/WDW_FM_Library.php:
|
1964 |
msgid "Benin"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: framework/WDW_FM_Library.php:
|
1968 |
msgid "Bhutan"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: framework/WDW_FM_Library.php:
|
1972 |
msgid "Bolivia"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: framework/WDW_FM_Library.php:
|
1976 |
msgid "Bosnia and Herzegovina"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: framework/WDW_FM_Library.php:
|
1980 |
msgid "Botswana"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: framework/WDW_FM_Library.php:
|
1984 |
msgid "Brazil"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#: framework/WDW_FM_Library.php:
|
1988 |
msgid "Brunei"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#: framework/WDW_FM_Library.php:
|
1992 |
msgid "Bulgaria"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: framework/WDW_FM_Library.php:
|
1996 |
msgid "Burkina Faso"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: framework/WDW_FM_Library.php:
|
2000 |
msgid "Burundi"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: framework/WDW_FM_Library.php:
|
2004 |
msgid "Cambodia"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: framework/WDW_FM_Library.php:
|
2008 |
msgid "Cameroon"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: framework/WDW_FM_Library.php:
|
2012 |
msgid "Canada"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: framework/WDW_FM_Library.php:
|
2016 |
msgid "Cape Verde"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: framework/WDW_FM_Library.php:
|
2020 |
msgid "Central African Republic"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: framework/WDW_FM_Library.php:
|
2024 |
msgid "Chad"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: framework/WDW_FM_Library.php:
|
2028 |
msgid "Chile"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: framework/WDW_FM_Library.php:
|
2032 |
msgid "China"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: framework/WDW_FM_Library.php:
|
2036 |
msgid "Colombia"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: framework/WDW_FM_Library.php:
|
2040 |
msgid "Comoros"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: framework/WDW_FM_Library.php:
|
2044 |
msgid "Congo (Brazzaville)"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: framework/WDW_FM_Library.php:
|
2048 |
msgid "Congo"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: framework/WDW_FM_Library.php:
|
2052 |
msgid "Costa Rica"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: framework/WDW_FM_Library.php:
|
2056 |
msgid "Cote d'Ivoire"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: framework/WDW_FM_Library.php:
|
2060 |
msgid "Croatia"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: framework/WDW_FM_Library.php:
|
2064 |
msgid "Cuba"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: framework/WDW_FM_Library.php:
|
2068 |
msgid "Curacao"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: framework/WDW_FM_Library.php:
|
2072 |
msgid "Cyprus"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: framework/WDW_FM_Library.php:
|
2076 |
msgid "Czech Republic"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: framework/WDW_FM_Library.php:
|
2080 |
msgid "Denmark"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: framework/WDW_FM_Library.php:
|
2084 |
msgid "Djibouti"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: framework/WDW_FM_Library.php:
|
2088 |
msgid "Dominica"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: framework/WDW_FM_Library.php:
|
2092 |
msgid "Dominican Republic"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: framework/WDW_FM_Library.php:
|
2096 |
msgid "East Timor (Timor Timur)"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: framework/WDW_FM_Library.php:
|
2100 |
msgid "Ecuador"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
-
#: framework/WDW_FM_Library.php:
|
2104 |
msgid "Egypt"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: framework/WDW_FM_Library.php:
|
2108 |
msgid "El Salvador"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: framework/WDW_FM_Library.php:
|
2112 |
msgid "Equatorial Guinea"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: framework/WDW_FM_Library.php:
|
2116 |
msgid "Eritrea"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: framework/WDW_FM_Library.php:
|
2120 |
msgid "Estonia"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: framework/WDW_FM_Library.php:
|
2124 |
msgid "Ethiopia"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: framework/WDW_FM_Library.php:
|
2128 |
msgid "Fiji"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: framework/WDW_FM_Library.php:
|
2132 |
msgid "Finland"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#: framework/WDW_FM_Library.php:
|
2136 |
msgid "France"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: framework/WDW_FM_Library.php:
|
2140 |
msgid "Gabon"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: framework/WDW_FM_Library.php:
|
2144 |
msgid "Gambia, The"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: framework/WDW_FM_Library.php:
|
2148 |
msgid "Georgia"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: framework/WDW_FM_Library.php:
|
2152 |
msgid "Germany"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: framework/WDW_FM_Library.php:
|
2156 |
msgid "Ghana"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: framework/WDW_FM_Library.php:
|
2160 |
msgid "Greece"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: framework/WDW_FM_Library.php:
|
2164 |
msgid "Grenada"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: framework/WDW_FM_Library.php:
|
2168 |
msgid "Guatemala"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: framework/WDW_FM_Library.php:
|
2172 |
msgid "Guinea"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: framework/WDW_FM_Library.php:
|
2176 |
msgid "Guinea-Bissau"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: framework/WDW_FM_Library.php:
|
2180 |
msgid "Guyana"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: framework/WDW_FM_Library.php:
|
2184 |
msgid "Haiti"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: framework/WDW_FM_Library.php:
|
2188 |
msgid "Honduras"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: framework/WDW_FM_Library.php:
|
2192 |
msgid "Hong Kong"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: framework/WDW_FM_Library.php:
|
2196 |
msgid "Hungary"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: framework/WDW_FM_Library.php:
|
2200 |
msgid "Iceland"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: framework/WDW_FM_Library.php:
|
2204 |
msgid "India"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: framework/WDW_FM_Library.php:
|
2208 |
msgid "Indonesia"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: framework/WDW_FM_Library.php:
|
2212 |
msgid "Iran"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: framework/WDW_FM_Library.php:
|
2216 |
msgid "Iraq"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: framework/WDW_FM_Library.php:
|
2220 |
msgid "Ireland"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: framework/WDW_FM_Library.php:
|
2224 |
msgid "Israel"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: framework/WDW_FM_Library.php:
|
2228 |
msgid "Italy"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: framework/WDW_FM_Library.php:
|
2232 |
msgid "Jamaica"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: framework/WDW_FM_Library.php:
|
2236 |
msgid "Japan"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: framework/WDW_FM_Library.php:
|
2240 |
msgid "Jordan"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: framework/WDW_FM_Library.php:
|
2244 |
msgid "Kazakhstan"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#: framework/WDW_FM_Library.php:
|
2248 |
msgid "Kenya"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: framework/WDW_FM_Library.php:
|
2252 |
msgid "Kiribati"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: framework/WDW_FM_Library.php:
|
2256 |
msgid "Korea, North"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: framework/WDW_FM_Library.php:
|
2260 |
msgid "Korea, South"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: framework/WDW_FM_Library.php:
|
2264 |
msgid "Kuwait"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: framework/WDW_FM_Library.php:
|
2268 |
msgid "Kyrgyzstan"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: framework/WDW_FM_Library.php:
|
2272 |
msgid "Laos"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#: framework/WDW_FM_Library.php:
|
2276 |
msgid "Latvia"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: framework/WDW_FM_Library.php:
|
2280 |
msgid "Lebanon"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: framework/WDW_FM_Library.php:
|
2284 |
msgid "Lesotho"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: framework/WDW_FM_Library.php:
|
2288 |
msgid "Liberia"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: framework/WDW_FM_Library.php:
|
2292 |
msgid "Libya"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: framework/WDW_FM_Library.php:
|
2296 |
msgid "Liechtenstein"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: framework/WDW_FM_Library.php:
|
2300 |
msgid "Lithuania"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: framework/WDW_FM_Library.php:
|
2304 |
msgid "Luxembourg"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: framework/WDW_FM_Library.php:
|
2308 |
msgid "Macedonia"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: framework/WDW_FM_Library.php:
|
2312 |
msgid "Madagascar"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: framework/WDW_FM_Library.php:
|
2316 |
msgid "Malawi"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: framework/WDW_FM_Library.php:
|
2320 |
msgid "Malaysia"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: framework/WDW_FM_Library.php:
|
2324 |
msgid "Maldives"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: framework/WDW_FM_Library.php:
|
2328 |
msgid "Mali"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: framework/WDW_FM_Library.php:
|
2332 |
msgid "Malta"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: framework/WDW_FM_Library.php:
|
2336 |
msgid "Marshall Islands"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: framework/WDW_FM_Library.php:
|
2340 |
msgid "Mauritania"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: framework/WDW_FM_Library.php:
|
2344 |
msgid "Mauritius"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: framework/WDW_FM_Library.php:
|
2348 |
msgid "Mexico"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: framework/WDW_FM_Library.php:
|
2352 |
msgid "Micronesia"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: framework/WDW_FM_Library.php:
|
2356 |
msgid "Moldova"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: framework/WDW_FM_Library.php:
|
2360 |
msgid "Monaco"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: framework/WDW_FM_Library.php:
|
2364 |
msgid "Mongolia"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: framework/WDW_FM_Library.php:
|
2368 |
msgid "Morocco"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: framework/WDW_FM_Library.php:
|
2372 |
msgid "Mozambique"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: framework/WDW_FM_Library.php:
|
2376 |
msgid "Myanmar"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: framework/WDW_FM_Library.php:
|
2380 |
msgid "Namibia"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: framework/WDW_FM_Library.php:
|
2384 |
msgid "Nauru"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: framework/WDW_FM_Library.php:
|
2388 |
msgid "Nepal"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: framework/WDW_FM_Library.php:
|
2392 |
msgid "Netherlands"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: framework/WDW_FM_Library.php:
|
2396 |
msgid "New Zealand"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: framework/WDW_FM_Library.php:
|
2400 |
msgid "Nicaragua"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: framework/WDW_FM_Library.php:
|
2404 |
msgid "Niger"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: framework/WDW_FM_Library.php:
|
2408 |
msgid "Nigeria"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: framework/WDW_FM_Library.php:
|
2412 |
msgid "Norway"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: framework/WDW_FM_Library.php:
|
2416 |
msgid "Oman"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: framework/WDW_FM_Library.php:
|
2420 |
msgid "Pakistan"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: framework/WDW_FM_Library.php:
|
2424 |
msgid "Palau"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: framework/WDW_FM_Library.php:
|
|
|
|
|
|
|
|
|
2428 |
msgid "Panama"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: framework/WDW_FM_Library.php:
|
2432 |
msgid "Papua New Guinea"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: framework/WDW_FM_Library.php:
|
2436 |
msgid "Paraguay"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: framework/WDW_FM_Library.php:
|
2440 |
msgid "Peru"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: framework/WDW_FM_Library.php:
|
2444 |
msgid "Philippines"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: framework/WDW_FM_Library.php:
|
2448 |
msgid "Poland"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: framework/WDW_FM_Library.php:
|
2452 |
msgid "Portugal"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: framework/WDW_FM_Library.php:
|
2456 |
msgid "Puerto Rico"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: framework/WDW_FM_Library.php:
|
2460 |
msgid "Qatar"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: framework/WDW_FM_Library.php:
|
2464 |
msgid "Romania"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: framework/WDW_FM_Library.php:
|
2468 |
msgid "Russia"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: framework/WDW_FM_Library.php:
|
2472 |
msgid "Rwanda"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: framework/WDW_FM_Library.php:
|
2476 |
msgid "Saint Kitts and Nevis"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: framework/WDW_FM_Library.php:
|
2480 |
msgid "Saint Lucia"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#: framework/WDW_FM_Library.php:
|
2484 |
msgid "Saint Vincent"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: framework/WDW_FM_Library.php:
|
2488 |
msgid "Samoa"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: framework/WDW_FM_Library.php:
|
2492 |
msgid "San Marino"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: framework/WDW_FM_Library.php:
|
2496 |
msgid "Sao Tome and Principe"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: framework/WDW_FM_Library.php:
|
2500 |
msgid "Saudi Arabia"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: framework/WDW_FM_Library.php:
|
2504 |
msgid "Senegal"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: framework/WDW_FM_Library.php:
|
2508 |
msgid "Serbia and Montenegro"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: framework/WDW_FM_Library.php:
|
2512 |
msgid "Seychelles"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: framework/WDW_FM_Library.php:
|
2516 |
msgid "Sierra Leone"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: framework/WDW_FM_Library.php:
|
2520 |
msgid "Singapore"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: framework/WDW_FM_Library.php:
|
2524 |
msgid "Slovakia"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: framework/WDW_FM_Library.php:
|
2528 |
msgid "Slovenia"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: framework/WDW_FM_Library.php:
|
2532 |
msgid "Solomon Islands"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: framework/WDW_FM_Library.php:
|
2536 |
msgid "Somalia"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: framework/WDW_FM_Library.php:
|
2540 |
msgid "South Africa"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: framework/WDW_FM_Library.php:
|
2544 |
msgid "Spain"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: framework/WDW_FM_Library.php:
|
2548 |
msgid "Sri Lanka"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: framework/WDW_FM_Library.php:
|
2552 |
msgid "Sudan"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: framework/WDW_FM_Library.php:
|
2556 |
msgid "Suriname"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: framework/WDW_FM_Library.php:
|
2560 |
msgid "Swaziland"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: framework/WDW_FM_Library.php:
|
2564 |
msgid "Sweden"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: framework/WDW_FM_Library.php:
|
2568 |
msgid "Switzerland"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: framework/WDW_FM_Library.php:
|
2572 |
msgid "Syria"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: framework/WDW_FM_Library.php:
|
2576 |
msgid "Taiwan"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#: framework/WDW_FM_Library.php:
|
2580 |
msgid "Tajikistan"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: framework/WDW_FM_Library.php:
|
2584 |
msgid "Tanzania"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#: framework/WDW_FM_Library.php:
|
2588 |
msgid "Thailand"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: framework/WDW_FM_Library.php:
|
2592 |
msgid "Togo"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: framework/WDW_FM_Library.php:
|
2596 |
msgid "Tonga"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: framework/WDW_FM_Library.php:
|
2600 |
msgid "Trinidad and Tobago"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: framework/WDW_FM_Library.php:
|
2604 |
msgid "Tunisia"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: framework/WDW_FM_Library.php:
|
2608 |
msgid "Turkey"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#: framework/WDW_FM_Library.php:
|
2612 |
msgid "Turkmenistan"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
-
#: framework/WDW_FM_Library.php:
|
2616 |
msgid "Tuvalu"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
-
#: framework/WDW_FM_Library.php:
|
2620 |
msgid "Uganda"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: framework/WDW_FM_Library.php:
|
2624 |
msgid "Ukraine"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: framework/WDW_FM_Library.php:
|
2628 |
msgid "United Arab Emirates"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#: framework/WDW_FM_Library.php:
|
2632 |
msgid "United Kingdom"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: framework/WDW_FM_Library.php:
|
2636 |
msgid "United States"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#: framework/WDW_FM_Library.php:
|
2640 |
msgid "Uruguay"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
#: framework/WDW_FM_Library.php:
|
2644 |
msgid "Uzbekistan"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
-
#: framework/WDW_FM_Library.php:
|
2648 |
msgid "Vanuatu"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: framework/WDW_FM_Library.php:
|
2652 |
msgid "Vatican City"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: framework/WDW_FM_Library.php:
|
2656 |
msgid "Venezuela"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
-
#: framework/WDW_FM_Library.php:
|
2660 |
msgid "Vietnam"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
-
#: framework/WDW_FM_Library.php:
|
2664 |
msgid "Wales"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#: framework/WDW_FM_Library.php:
|
2668 |
msgid "Yemen"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
-
#: framework/WDW_FM_Library.php:
|
2672 |
msgid "Zambia"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
-
#: framework/WDW_FM_Library.php:
|
2676 |
msgid "Zimbabwe"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: framework/WDW_FM_Library.php:
|
2680 |
msgid "Alabama"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
-
#: framework/WDW_FM_Library.php:
|
2684 |
msgid "Alaska"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
-
#: framework/WDW_FM_Library.php:
|
2688 |
msgid "Arizona"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
-
#: framework/WDW_FM_Library.php:
|
2692 |
msgid "Arkansas"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
-
#: framework/WDW_FM_Library.php:
|
2696 |
msgid "California"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
-
#: framework/WDW_FM_Library.php:
|
2700 |
msgid "Colorado"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
#: framework/WDW_FM_Library.php:
|
2704 |
#, fuzzy
|
2705 |
msgid "Connecticut"
|
2706 |
msgstr "Type de connexion"
|
2707 |
|
2708 |
-
#: framework/WDW_FM_Library.php:
|
2709 |
msgid "Delaware"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: framework/WDW_FM_Library.php:
|
2713 |
msgid "District Of Columbia"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#: framework/WDW_FM_Library.php:
|
2717 |
msgid "Florida"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: framework/WDW_FM_Library.php:
|
2721 |
msgid "Hawaii"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: framework/WDW_FM_Library.php:
|
2725 |
msgid "Idaho"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: framework/WDW_FM_Library.php:
|
2729 |
msgid "Illinois"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: framework/WDW_FM_Library.php:
|
2733 |
msgid "Indiana"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: framework/WDW_FM_Library.php:
|
2737 |
msgid "Iowa"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: framework/WDW_FM_Library.php:
|
2741 |
msgid "Kansas"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: framework/WDW_FM_Library.php:
|
2745 |
msgid "Kentucky"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: framework/WDW_FM_Library.php:
|
2749 |
msgid "Louisiana"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: framework/WDW_FM_Library.php:
|
2753 |
msgid "Maine"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: framework/WDW_FM_Library.php:
|
2757 |
msgid "Maryland"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: framework/WDW_FM_Library.php:
|
2761 |
msgid "Massachusetts"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: framework/WDW_FM_Library.php:
|
2765 |
msgid "Michigan"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: framework/WDW_FM_Library.php:
|
2769 |
msgid "Minnesota"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: framework/WDW_FM_Library.php:
|
2773 |
msgid "Mississippi"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: framework/WDW_FM_Library.php:
|
2777 |
msgid "Missouri"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: framework/WDW_FM_Library.php:
|
2781 |
msgid "Montana"
|
2782 |
msgstr ""
|
2783 |
|
2784 |
-
#: framework/WDW_FM_Library.php:
|
2785 |
msgid "Nebraska"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
-
#: framework/WDW_FM_Library.php:
|
2789 |
msgid "Nevada"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
-
#: framework/WDW_FM_Library.php:
|
2793 |
msgid "New Hampshire"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
-
#: framework/WDW_FM_Library.php:
|
2797 |
msgid "New Jersey"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
-
#: framework/WDW_FM_Library.php:
|
2801 |
msgid "New Mexico"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: framework/WDW_FM_Library.php:
|
2805 |
msgid "New York"
|
2806 |
msgstr ""
|
2807 |
|
2808 |
-
#: framework/WDW_FM_Library.php:
|
2809 |
msgid "North Carolina"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: framework/WDW_FM_Library.php:
|
2813 |
msgid "North Dakota"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: framework/WDW_FM_Library.php:
|
2817 |
msgid "Ohio"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: framework/WDW_FM_Library.php:
|
2821 |
msgid "Oklahoma"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: framework/WDW_FM_Library.php:
|
2825 |
msgid "Oregon"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: framework/WDW_FM_Library.php:
|
2829 |
msgid "Pennsylvania"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: framework/WDW_FM_Library.php:
|
2833 |
msgid "Rhode Island"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: framework/WDW_FM_Library.php:
|
2837 |
msgid "South Carolina"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: framework/WDW_FM_Library.php:
|
2841 |
msgid "South Dakota"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#: framework/WDW_FM_Library.php:
|
2845 |
msgid "Tennessee"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: framework/WDW_FM_Library.php:
|
2849 |
msgid "Texas"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: framework/WDW_FM_Library.php:
|
2853 |
msgid "Utah"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
-
#: framework/WDW_FM_Library.php:
|
2857 |
msgid "Vermont"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
-
#: framework/WDW_FM_Library.php:
|
2861 |
msgid "Virginia"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
-
#: framework/WDW_FM_Library.php:
|
2865 |
msgid "Washington"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
-
#: framework/WDW_FM_Library.php:
|
2869 |
msgid "West Virginia"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
-
#: framework/WDW_FM_Library.php:
|
2873 |
msgid "Wisconsin"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
-
#: framework/WDW_FM_Library.php:
|
2877 |
msgid "Wyoming"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
-
#: framework/WDW_FM_Library.php:
|
2881 |
msgid "Done"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
-
#: framework/WDW_FM_Library.php:
|
2885 |
msgid "Prev"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
-
#: framework/WDW_FM_Library.php:
|
2889 |
msgid "Next"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
-
#: framework/WDW_FM_Library.php:
|
2893 |
msgid "Today"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
-
#: framework/WDW_FM_Library.php:
|
2897 |
msgid "January"
|
2898 |
msgstr "Janvier"
|
2899 |
|
2900 |
-
#: framework/WDW_FM_Library.php:
|
2901 |
msgid "February"
|
2902 |
msgstr "février"
|
2903 |
|
2904 |
-
#: framework/WDW_FM_Library.php:
|
2905 |
msgid "March"
|
2906 |
msgstr "mars"
|
2907 |
|
2908 |
-
#: framework/WDW_FM_Library.php:
|
2909 |
msgid "April"
|
2910 |
msgstr "Avril"
|
2911 |
|
2912 |
-
#: framework/WDW_FM_Library.php:
|
2913 |
-
#: frontend/views/form_maker.php:
|
2914 |
msgid "May"
|
2915 |
msgstr "Mai"
|
2916 |
|
2917 |
-
#: framework/WDW_FM_Library.php:
|
2918 |
msgid "June"
|
2919 |
msgstr "juin"
|
2920 |
|
2921 |
-
#: framework/WDW_FM_Library.php:
|
2922 |
msgid "July"
|
2923 |
msgstr "Juillet"
|
2924 |
|
2925 |
-
#: framework/WDW_FM_Library.php:
|
2926 |
msgid "August"
|
2927 |
msgstr "août"
|
2928 |
|
2929 |
-
#: framework/WDW_FM_Library.php:
|
2930 |
msgid "September"
|
2931 |
msgstr "Septembre"
|
2932 |
|
2933 |
-
#: framework/WDW_FM_Library.php:
|
2934 |
msgid "October"
|
2935 |
msgstr "octobre"
|
2936 |
|
2937 |
-
#: framework/WDW_FM_Library.php:
|
2938 |
msgid "November"
|
2939 |
msgstr "novembre"
|
2940 |
|
2941 |
-
#: framework/WDW_FM_Library.php:
|
2942 |
msgid "December"
|
2943 |
msgstr "Décembre"
|
2944 |
|
2945 |
-
#: framework/WDW_FM_Library.php:
|
2946 |
#, fuzzy
|
2947 |
msgid "Jan"
|
2948 |
msgstr "Janvier"
|
2949 |
|
2950 |
-
#: framework/WDW_FM_Library.php:
|
2951 |
msgid "Feb"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: framework/WDW_FM_Library.php:
|
2955 |
#, fuzzy
|
2956 |
msgid "Mar"
|
2957 |
msgstr "mars"
|
2958 |
|
2959 |
-
#: framework/WDW_FM_Library.php:
|
2960 |
#, fuzzy
|
2961 |
msgid "Apr"
|
2962 |
msgstr "Avril"
|
2963 |
|
2964 |
-
#: framework/WDW_FM_Library.php:
|
2965 |
#, fuzzy
|
2966 |
msgid "Jun"
|
2967 |
msgstr "juin"
|
2968 |
|
2969 |
-
#: framework/WDW_FM_Library.php:
|
2970 |
#, fuzzy
|
2971 |
msgid "Jul"
|
2972 |
msgstr "Juillet"
|
2973 |
|
2974 |
-
#: framework/WDW_FM_Library.php:
|
2975 |
#, fuzzy
|
2976 |
msgid "Aug"
|
2977 |
msgstr "août"
|
2978 |
|
2979 |
-
#: framework/WDW_FM_Library.php:
|
2980 |
msgid "Sep"
|
2981 |
msgstr ""
|
2982 |
|
2983 |
-
#: framework/WDW_FM_Library.php:
|
2984 |
#, fuzzy
|
2985 |
msgid "Oct"
|
2986 |
msgstr "octobre"
|
2987 |
|
2988 |
-
#: framework/WDW_FM_Library.php:
|
2989 |
msgid "Nov"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#: framework/WDW_FM_Library.php:
|
2993 |
msgid "Dec"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
-
#: framework/WDW_FM_Library.php:
|
2997 |
msgid "Sun"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
-
#: framework/WDW_FM_Library.php:
|
3001 |
msgid "Mon"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
-
#: framework/WDW_FM_Library.php:
|
3005 |
#, fuzzy
|
3006 |
msgid "Tue"
|
3007 |
msgstr "la "
|
3008 |
|
3009 |
-
#: framework/WDW_FM_Library.php:
|
3010 |
msgid "Wed"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: framework/WDW_FM_Library.php:
|
3014 |
#, fuzzy
|
3015 |
msgid "Thu"
|
3016 |
msgstr "la "
|
3017 |
|
3018 |
-
#: framework/WDW_FM_Library.php:
|
3019 |
msgid "Fri"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: framework/WDW_FM_Library.php:
|
3023 |
msgid "Sat"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: framework/WDW_FM_Library.php:
|
3027 |
msgid "Su"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: framework/WDW_FM_Library.php:
|
3031 |
msgid "Mo"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: framework/WDW_FM_Library.php:
|
3035 |
msgid "Tu"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: framework/WDW_FM_Library.php:
|
3039 |
msgid "We"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: framework/WDW_FM_Library.php:
|
3043 |
#, fuzzy
|
3044 |
msgid "Th"
|
3045 |
msgstr "la "
|
3046 |
|
3047 |
-
#: framework/WDW_FM_Library.php:
|
3048 |
#, fuzzy
|
3049 |
msgid "Fr"
|
3050 |
msgstr "à partir de "
|
3051 |
|
3052 |
-
#: framework/WDW_FM_Library.php:
|
3053 |
msgid "Sa"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
-
#: framework/WDW_FM_Library.php:
|
3057 |
msgid "All fields list"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
-
#: framework/WDW_FM_Library.php:
|
3061 |
msgid "Form fields"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
-
#: framework/WDW_FM_Library.php:
|
3065 |
#, fuzzy
|
3066 |
#| msgid "Title"
|
3067 |
msgid "Form Title"
|
3068 |
msgstr "Titre"
|
3069 |
|
3070 |
-
#: framework/WDW_FM_Library.php:
|
3071 |
#, fuzzy
|
3072 |
msgid "Submission ID"
|
3073 |
msgstr "Afficher la soumission"
|
3074 |
|
3075 |
-
#: framework/WDW_FM_Library.php:
|
3076 |
msgid "Admin Email"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
-
#: framework/WDW_FM_Library.php:
|
3080 |
#, fuzzy
|
3081 |
msgid "User Email"
|
3082 |
msgstr "Consultez le guide de l'utilisateur"
|
3083 |
|
3084 |
-
#: framework/WDW_FM_Library.php:
|
3085 |
#, fuzzy
|
3086 |
msgid "User Name"
|
3087 |
msgstr "Consultez le guide de l'utilisateur"
|
3088 |
|
3089 |
-
#: framework/WDW_FM_Library.php:
|
3090 |
msgid "Page Url"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#: framework/WDW_FM_Library.php:
|
3094 |
#, fuzzy
|
3095 |
#| msgid "Verification link is invalid."
|
3096 |
msgid "Verification Link"
|
3097 |
msgstr "Lien de vérification est invalide."
|
3098 |
|
3099 |
-
#:
|
3100 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3101 |
msgstr ""
|
3102 |
|
3103 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3104 |
msgid "The form you are trying to view does not have Embedded display type."
|
3105 |
msgstr ""
|
3106 |
|
3107 |
-
#: frontend/models/form_maker.php:
|
3108 |
msgid "The form you are trying to view has been unpublished."
|
3109 |
msgstr ""
|
3110 |
|
3111 |
-
#: frontend/models/form_maker.php:
|
3112 |
-
#: frontend/models/form_maker.php:
|
3113 |
msgid "Error, incorrect Security code."
|
3114 |
msgstr "Erreur, le code de sécurité incorrect."
|
3115 |
|
3116 |
-
#: frontend/models/form_maker.php:
|
3117 |
#, fuzzy
|
3118 |
#| msgid "Error, incorrect Security code."
|
3119 |
msgid "Error, incorrect secret code."
|
3120 |
msgstr "Erreur, le code de sécurité incorrect."
|
3121 |
|
3122 |
-
#: frontend/models/form_maker.php:
|
3123 |
-
#: frontend/models/form_maker.php:
|
3124 |
#, fuzzy
|
3125 |
#| msgid "Verification link is invalid."
|
3126 |
msgid "Verification failed."
|
3127 |
msgstr "Lien de vérification est invalide."
|
3128 |
|
3129 |
-
#: frontend/models/form_maker.php:
|
3130 |
msgid "Your ip is blacklisted. Please contact the website administrator."
|
3131 |
msgstr ""
|
3132 |
"Votre ip est blacklisté. S'il vous plaît contactez l'administrateur du site. "
|
3133 |
|
3134 |
-
#: frontend/models/form_maker.php:
|
3135 |
msgid "This is not a valid date format."
|
3136 |
msgstr "Ce n'est pas un format de date valide."
|
3137 |
|
3138 |
-
#: frontend/models/form_maker.php:
|
3139 |
#, fuzzy, php-format
|
3140 |
#| msgid "The file exceeds the allowed size of"
|
3141 |
msgid "The file exceeds the allowed size of %s KB."
|
3142 |
msgstr "Le fichier dépasse la taille autorisée des"
|
3143 |
|
3144 |
-
#: frontend/models/form_maker.php:
|
3145 |
#, fuzzy
|
3146 |
#| msgid "Can not upload this type of file"
|
3147 |
msgid "Can not upload this type of file."
|
3148 |
msgstr "Impossible de télécharger ce type de fichier"
|
3149 |
|
3150 |
-
#: frontend/models/form_maker.php:
|
3151 |
msgid "Error, file cannot be moved."
|
3152 |
msgstr "Erreur, le fichier ne peut pas être déplacé."
|
3153 |
|
3154 |
-
#: frontend/models/form_maker.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3155 |
#, fuzzy, php-format
|
3156 |
msgid "This field %s requires a unique entry."
|
3157 |
msgstr ""
|
3158 |
"Ce champ %s nécessite une entrée unique et cette valeur a déjà été soumis."
|
3159 |
|
3160 |
-
#: frontend/models/form_maker.php:
|
3161 |
-
#: frontend/models/form_maker.php:
|
3162 |
-
#: frontend/models/form_maker.php:
|
3163 |
msgid "Database error occurred. Please try again."
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: frontend/models/form_maker.php:
|
3167 |
msgid "Nothing was submitted."
|
3168 |
msgstr "Rien n'a été soumis."
|
3169 |
|
3170 |
-
#: frontend/models/form_maker.php:
|
3171 |
-
#: frontend/views/form_maker.php:91
|
3172 |
msgid "Your form was successfully submitted."
|
3173 |
msgstr "Votre formulaire a été soumis avec succès."
|
3174 |
|
3175 |
-
#: frontend/models/form_maker.php:
|
3176 |
msgid "Error, email was not sent."
|
3177 |
msgstr "Erreur, e-mail n'a pas été envoyé."
|
3178 |
|
3179 |
-
#: frontend/models/form_submissions.php:
|
3180 |
#, fuzzy
|
3181 |
msgid "You have no permissions to download"
|
3182 |
msgstr "Vous n'êtes pas autorisé à consulter les soumissions."
|
3183 |
|
3184 |
-
#: frontend/models/verify_email.php:
|
3185 |
msgid "Your email address is already verified."
|
3186 |
msgstr "Votre adresse e-mail est déjà vérifiée."
|
3187 |
|
3188 |
-
#: frontend/models/verify_email.php:
|
3189 |
msgid "Your email verification has timed out."
|
3190 |
msgstr "Votre courriel de vérification a expiré."
|
3191 |
|
3192 |
-
#: frontend/models/verify_email.php:
|
3193 |
msgid "Your email has been successfully verified."
|
3194 |
msgstr "Votre email a été vérifiée avec succès."
|
3195 |
|
3196 |
-
#: frontend/models/verify_email.php:
|
3197 |
msgid "Verification link is invalid."
|
3198 |
msgstr "Lien de vérification est invalide."
|
3199 |
|
3200 |
-
#: frontend/views/form_maker.php:
|
3201 |
msgid "Password values don't match"
|
3202 |
msgstr "Les valeurs de mot de passe ne correspondent pas"
|
3203 |
|
3204 |
-
#: frontend/views/form_maker.php:
|
3205 |
msgid "The email addresses don't match"
|
3206 |
msgstr "Les adresses e-mail ne correspondent pas"
|
3207 |
|
3208 |
-
#: frontend/views/form_maker.php:
|
3209 |
msgid "This is not a valid email address."
|
3210 |
msgstr "Ceci n'est pas une adresse e-mail valide"
|
3211 |
|
3212 |
-
#: frontend/views/form_maker.php:
|
3213 |
msgid "AM"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
-
#: frontend/views/form_maker.php:
|
3217 |
msgid "PM"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
-
#: frontend/views/form_submissions.php:
|
3221 |
msgid "You have no permission to view submissions."
|
3222 |
msgstr "Vous n'êtes pas autorisé à consulter les soumissions."
|
3223 |
|
3224 |
-
#: frontend/views/form_submissions.php:
|
3225 |
#, fuzzy, php-format
|
3226 |
msgid ""
|
3227 |
"%s of %s submissions are not shown, as the field you sorted by is missing in "
|
@@ -3230,127 +3316,123 @@ msgstr ""
|
|
3230 |
"Les soumissions ne sont pas affichées, car le champ que vous avez trié est "
|
3231 |
"manquant dans ces soumissions."
|
3232 |
|
3233 |
-
#: frontend/views/form_submissions.php:
|
3234 |
msgid "From"
|
3235 |
msgstr "à partir de "
|
3236 |
|
3237 |
-
#: frontend/views/form_submissions.php:
|
3238 |
msgid "To"
|
3239 |
msgstr "à"
|
3240 |
|
3241 |
-
#: frontend/views/form_submissions.php:
|
3242 |
msgid "Canceled"
|
3243 |
msgstr "Annulé"
|
3244 |
|
3245 |
-
#: frontend/views/form_submissions.php:
|
3246 |
msgid "Cleared"
|
3247 |
msgstr "Effacé"
|
3248 |
|
3249 |
-
#: frontend/views/form_submissions.php:
|
3250 |
msgid "Cleared by payment review"
|
3251 |
msgstr "Effacé par l'examen de paiement"
|
3252 |
|
3253 |
-
#: frontend/views/form_submissions.php:
|
3254 |
msgid "Completed"
|
3255 |
msgstr "Terminé"
|
3256 |
|
3257 |
-
#: frontend/views/form_submissions.php:
|
3258 |
msgid "Denied"
|
3259 |
msgstr "Refusé"
|
3260 |
|
3261 |
-
#: frontend/views/form_submissions.php:
|
3262 |
msgid "Failed"
|
3263 |
msgstr "Échoué"
|
3264 |
|
3265 |
-
#: frontend/views/form_submissions.php:
|
3266 |
msgid "Held"
|
3267 |
msgstr "Tenu"
|
3268 |
|
3269 |
-
#: frontend/views/form_submissions.php:
|
3270 |
msgid "In progress"
|
3271 |
msgstr "en cours"
|
3272 |
|
3273 |
-
#: frontend/views/form_submissions.php:
|
3274 |
msgid "On hold"
|
3275 |
msgstr "En attente"
|
3276 |
|
3277 |
-
#: frontend/views/form_submissions.php:
|
3278 |
msgid "Paid"
|
3279 |
msgstr "Payé"
|
3280 |
|
3281 |
-
#: frontend/views/form_submissions.php:
|
3282 |
msgid "Partially refunded"
|
3283 |
msgstr "Partiellement remboursé"
|
3284 |
|
3285 |
-
#: frontend/views/form_submissions.php:
|
3286 |
msgid "Pending verification"
|
3287 |
msgstr "En Attente de Vérification"
|
3288 |
|
3289 |
-
#: frontend/views/form_submissions.php:
|
3290 |
msgid "Placed"
|
3291 |
msgstr "Mis"
|
3292 |
|
3293 |
-
#: frontend/views/form_submissions.php:
|
3294 |
msgid "Processing"
|
3295 |
msgstr "En traitement"
|
3296 |
|
3297 |
-
#: frontend/views/form_submissions.php:
|
3298 |
msgid "Refunded"
|
3299 |
msgstr "Remboursé"
|
3300 |
|
3301 |
-
#: frontend/views/form_submissions.php:
|
3302 |
msgid "Refused"
|
3303 |
msgstr "Refusé"
|
3304 |
|
3305 |
-
#: frontend/views/form_submissions.php:
|
3306 |
msgid "Removed"
|
3307 |
msgstr "Supprimé"
|
3308 |
|
3309 |
-
#: frontend/views/form_submissions.php:
|
3310 |
msgid "Returned"
|
3311 |
msgstr "Revenu"
|
3312 |
|
3313 |
-
#: frontend/views/form_submissions.php:
|
3314 |
msgid "Reversed"
|
3315 |
msgstr "Renversé"
|
3316 |
|
3317 |
-
#: frontend/views/form_submissions.php:
|
3318 |
msgid "Temporary hold"
|
3319 |
msgstr "Retenue temporaire"
|
3320 |
|
3321 |
-
#: frontend/views/form_submissions.php:
|
3322 |
msgid "Unclaimed"
|
3323 |
msgstr "Non réclamés"
|
3324 |
|
3325 |
-
#: frontend/views/form_submissions.php:
|
3326 |
msgid "Show on Map"
|
3327 |
msgstr "Afficher sur la carte"
|
3328 |
|
3329 |
-
#: frontend/views/form_submissions.php:
|
3330 |
msgid "Show Matrix"
|
3331 |
msgstr "Afficher la matrice"
|
3332 |
|
3333 |
-
#: frontend/views/form_submissions.php:
|
3334 |
msgid "Please select the field!"
|
3335 |
msgstr "Veuillez sélectionner le champ!"
|
3336 |
|
3337 |
-
#: wd/includes/deactivate.php:
|
3338 |
msgid "Technical problems / hard to use"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: wd/includes/deactivate.php:
|
3342 |
msgid "Free version is limited"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#: wd/includes/deactivate.php:
|
3346 |
-
msgid "Premium is expensive"
|
3347 |
-
msgstr ""
|
3348 |
-
|
3349 |
-
#: wd/includes/deactivate.php:47
|
3350 |
msgid "Upgrading to paid version"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
-
#: wd/includes/deactivate.php:
|
3354 |
#, fuzzy
|
3355 |
msgid "Temporary deactivation"
|
3356 |
msgstr "Retenue temporaire"
|
@@ -3384,216 +3466,35 @@ msgstr "Peut-être plus tard"
|
|
3384 |
msgid "Never show again"
|
3385 |
msgstr "Ne plus afficher"
|
3386 |
|
3387 |
-
#: wd/
|
3388 |
-
msgid "Welcome"
|
3389 |
-
msgstr ""
|
3390 |
-
|
3391 |
-
#: wd/includes/overview.php:31
|
3392 |
-
#, fuzzy
|
3393 |
-
msgid "User Guide"
|
3394 |
-
msgstr "Consultez le guide de l'utilisateur"
|
3395 |
-
|
3396 |
-
#: wd/includes/overview.php:35
|
3397 |
-
msgid "Deals"
|
3398 |
-
msgstr ""
|
3399 |
-
|
3400 |
-
#: wd/includes/overview.php:39
|
3401 |
-
msgid "Support"
|
3402 |
-
msgstr ""
|
3403 |
-
|
3404 |
-
#: wd/includes/overview.php:43
|
3405 |
-
msgid "Submit Your Idea"
|
3406 |
-
msgstr ""
|
3407 |
-
|
3408 |
-
#: wd/includes/overview.php:47
|
3409 |
-
msgid "Forum"
|
3410 |
-
msgstr ""
|
3411 |
-
|
3412 |
-
#: wd/includes/overview.php:87
|
3413 |
-
msgid "Wordpress form builder plugin"
|
3414 |
-
msgstr ""
|
3415 |
-
|
3416 |
-
#: wd/includes/overview.php:88
|
3417 |
-
msgid ""
|
3418 |
-
"Form Maker is a modern and advanced tool for creating WordPress forms easily "
|
3419 |
-
"and fast."
|
3420 |
-
msgstr ""
|
3421 |
-
|
3422 |
-
#: wd/includes/overview.php:93
|
3423 |
-
msgid "WordPress Photo Gallery plugin"
|
3424 |
-
msgstr ""
|
3425 |
-
|
3426 |
-
#: wd/includes/overview.php:94
|
3427 |
-
msgid ""
|
3428 |
-
"Photo Gallery is a fully responsive WordPress Gallery plugin with advanced "
|
3429 |
-
"functionality."
|
3430 |
-
msgstr ""
|
3431 |
-
|
3432 |
-
#: wd/includes/overview.php:99
|
3433 |
-
msgid "WordPress calendar plugin"
|
3434 |
-
msgstr ""
|
3435 |
-
|
3436 |
-
#: wd/includes/overview.php:100
|
3437 |
-
msgid ""
|
3438 |
-
"Organize and publish your events in an easy and elegant way using Event "
|
3439 |
-
"Calendar WD."
|
3440 |
-
msgstr ""
|
3441 |
-
|
3442 |
-
#: wd/includes/overview.php:105
|
3443 |
-
msgid "WD Google Maps plugin"
|
3444 |
-
msgstr ""
|
3445 |
-
|
3446 |
-
#: wd/includes/overview.php:106
|
3447 |
-
msgid ""
|
3448 |
-
"Google Maps WD is an intuitive tool for creating Google maps with advanced "
|
3449 |
-
"markers, custom layers and overlays for your website."
|
3450 |
-
msgstr ""
|
3451 |
-
|
3452 |
-
#: wd/includes/overview.php:111
|
3453 |
-
msgid "WordPress slider plugin"
|
3454 |
-
msgstr ""
|
3455 |
-
|
3456 |
-
#: wd/includes/overview.php:112
|
3457 |
-
msgid ""
|
3458 |
-
"Create responsive, highly configurable sliders with various effects for your "
|
3459 |
-
"WordPress site."
|
3460 |
-
msgstr ""
|
3461 |
-
|
3462 |
-
#: wd/includes/overview.php:117
|
3463 |
-
msgid "WordPress event calendar plugin"
|
3464 |
-
msgstr ""
|
3465 |
-
|
3466 |
-
#: wd/includes/overview.php:118
|
3467 |
-
msgid ""
|
3468 |
-
"Spider Event Calendar is a highly configurable product which allows you to "
|
3469 |
-
"have multiple organized events."
|
3470 |
-
msgstr ""
|
3471 |
-
|
3472 |
-
#: wd/includes/overview.php:123
|
3473 |
-
msgid "WordPress Instagram Feed plugin"
|
3474 |
-
msgstr ""
|
3475 |
-
|
3476 |
-
#: wd/includes/overview.php:124
|
3477 |
-
msgid ""
|
3478 |
-
"WD Instagram Feed is a user-friendly tool for displaying user or hashtag-"
|
3479 |
-
"based feeds on your website."
|
3480 |
-
msgstr ""
|
3481 |
-
|
3482 |
-
#: wd/includes/overview.php:177
|
3483 |
-
msgid "Not set"
|
3484 |
-
msgstr ""
|
3485 |
-
|
3486 |
-
#: wd/includes/overview.php:182
|
3487 |
-
msgid "On"
|
3488 |
-
msgstr ""
|
3489 |
-
|
3490 |
-
#: wd/includes/overview.php:184
|
3491 |
-
msgid "Off"
|
3492 |
-
msgstr ""
|
3493 |
-
|
3494 |
-
#: wd/includes/overview.php:193 wd/includes/overview.php:201
|
3495 |
-
#: wd/includes/overview.php:208 wd/includes/overview.php:215
|
3496 |
-
#: wd/includes/overview.php:223 wd/includes/overview.php:230
|
3497 |
-
msgid "N/A"
|
3498 |
-
msgstr ""
|
3499 |
-
|
3500 |
-
#: wd/includes/overview.php:228
|
3501 |
-
msgid " MByte"
|
3502 |
-
msgstr ""
|
3503 |
-
|
3504 |
-
#: wd/includes/overview.php:235 wd/includes/overview.php:242
|
3505 |
-
#: wd/includes/overview.php:249 wd/includes/overview.php:259
|
3506 |
-
msgid "Yes"
|
3507 |
-
msgstr ""
|
3508 |
-
|
3509 |
-
#: wd/includes/overview.php:237 wd/includes/overview.php:244
|
3510 |
-
#: wd/includes/overview.php:251 wd/includes/overview.php:254
|
3511 |
-
#: wd/includes/overview.php:259
|
3512 |
-
msgid "No"
|
3513 |
-
msgstr ""
|
3514 |
-
|
3515 |
-
#: wd/includes/subscribe.php:43
|
3516 |
-
msgid "Your name &"
|
3517 |
-
msgstr ""
|
3518 |
-
|
3519 |
-
#: wd/includes/subscribe.php:44
|
3520 |
-
#, fuzzy
|
3521 |
-
msgid "Email address"
|
3522 |
-
msgstr "Adresse"
|
3523 |
-
|
3524 |
-
#: wd/includes/subscribe.php:48
|
3525 |
-
msgid "Site URL"
|
3526 |
-
msgstr ""
|
3527 |
-
|
3528 |
-
#: wd/includes/subscribe.php:49
|
3529 |
-
msgid "Wordpress version"
|
3530 |
-
msgstr ""
|
3531 |
-
|
3532 |
-
#: wd/includes/subscribe.php:53
|
3533 |
-
msgid "List of plugins"
|
3534 |
-
msgstr ""
|
3535 |
-
|
3536 |
-
#: wd/templates/display_overview.php:8
|
3537 |
#, php-format
|
3538 |
-
msgid "
|
3539 |
msgstr ""
|
3540 |
|
3541 |
-
#: wd/templates/
|
3542 |
#, php-format
|
3543 |
-
msgid "
|
3544 |
-
|
3545 |
-
|
3546 |
-
|
3547 |
-
#, php-format
|
3548 |
-
msgid "Get %s"
|
3549 |
-
msgstr ""
|
3550 |
-
|
3551 |
-
#: wd/templates/display_overview_deals.php:13
|
3552 |
-
msgid "plugins"
|
3553 |
-
msgstr ""
|
3554 |
-
|
3555 |
-
#: wd/templates/display_overview_deals.php:14
|
3556 |
-
#: wd/templates/display_overview_deals.php:58
|
3557 |
-
msgid "for"
|
3558 |
-
msgstr ""
|
3559 |
-
|
3560 |
-
#: wd/templates/display_overview_deals.php:14
|
3561 |
-
#: wd/templates/display_overview_deals.php:58
|
3562 |
-
msgid "only"
|
3563 |
-
msgstr ""
|
3564 |
-
|
3565 |
-
#: wd/templates/display_overview_deals.php:16
|
3566 |
-
msgid "Save 80%"
|
3567 |
-
msgstr ""
|
3568 |
-
|
3569 |
-
#: wd/templates/display_overview_deals.php:57
|
3570 |
-
msgid "Get all 11 themes"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
-
#: wd/
|
3574 |
-
msgid "
|
3575 |
msgstr ""
|
3576 |
|
3577 |
-
|
3578 |
-
|
3579 |
-
msgid ""
|
3580 |
-
|
3581 |
-
"professional support or have any questions. You can also fill in the form to "
|
3582 |
-
"leave your comments or feedback."
|
3583 |
-
msgstr ""
|
3584 |
|
3585 |
-
|
3586 |
-
|
3587 |
-
|
3588 |
-
"Allow %s to collect some usage data. This will allow you to get more out of "
|
3589 |
-
"your plugin experience - get awesome customer support, receive exclusive "
|
3590 |
-
"deals and discounts on premium products and more. You can choose to skip "
|
3591 |
-
"this step, %s will still work just fine."
|
3592 |
-
msgstr ""
|
3593 |
|
3594 |
-
|
3595 |
-
msgid "
|
3596 |
-
msgstr ""
|
3597 |
|
3598 |
#, fuzzy
|
3599 |
#~ msgid "Address line 1"
|
@@ -3603,10 +3504,6 @@ msgstr ""
|
|
3603 |
#~ msgid "Address line 2"
|
3604 |
#~ msgstr "Adresse 2"
|
3605 |
|
3606 |
-
#, fuzzy
|
3607 |
-
#~ msgid "Field is required."
|
3608 |
-
#~ msgstr "Champ requis"
|
3609 |
-
|
3610 |
#~ msgid "Hey! How's It Going?"
|
3611 |
#~ msgstr "Hey! Comment ça va?"
|
3612 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: form_maker\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-25 15:18+0400\n"
|
6 |
+
"PO-Revision-Date: 2019-03-25 15:19+0400\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: fr\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.2\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin/controllers/Blocked_ips_fm.php:25 admin/controllers/Manage_fm.php:42
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
#: admin/controllers/Submissions_fm.php:61 admin/controllers/Themes_fm.php:46
|
20 |
msgid "Delete"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: admin/controllers/Blocked_ips_fm.php:26 admin/controllers/Manage_fm.php:43
|
24 |
#: admin/controllers/Themes_fm.php:47
|
25 |
#, fuzzy
|
26 |
msgid "deleted"
|
30 |
msgid "Payment information"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: admin/controllers/Manage_fm.php:30 admin/views/Manage_fm.php:144
|
34 |
msgid "Publish"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: admin/controllers/Manage_fm.php:31
|
38 |
msgid "published"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: admin/controllers/Manage_fm.php:34 admin/views/Manage_fm.php:144
|
42 |
msgid "Unpublish"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: admin/controllers/Manage_fm.php:35
|
46 |
msgid "unpublished"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: admin/controllers/Manage_fm.php:38 admin/controllers/Themes_fm.php:42
|
50 |
msgid "Duplicate"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: admin/controllers/Manage_fm.php:39 admin/controllers/Themes_fm.php:43
|
54 |
msgid "duplicated"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: admin/controllers/Manage_fm.php:290 admin/controllers/Themes_fm.php:188
|
58 |
+
msgid "Copy"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: admin/controllers/Manage_fm.php:387
|
62 |
msgid "Create new form"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: admin/controllers/Manage_fm.php:539
|
66 |
msgid "options"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: admin/controllers/Manage_fm.php:867 admin/models/Manage_fm.php:57
|
70 |
+
#: admin/models/Manage_fm.php:64 admin/models/Manage_fm.php:127
|
71 |
+
#: admin/models/Manage_fm.php:147 admin/models/Manage_fm.php:154
|
72 |
+
#: admin/models/Manage_fm.php:237 frontend/models/form_maker.php:1358
|
73 |
+
#: frontend/models/form_maker.php:1365 frontend/views/form_maker.php:220
|
74 |
+
msgid ""
|
75 |
+
"I consent collecting this data and processing it according to "
|
76 |
+
"{{privacy_policy}} of this website."
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: admin/controllers/Manage_fm.php:943
|
80 |
msgid "layout"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: admin/controllers/Manage_fm.php:993
|
84 |
msgid "display options"
|
85 |
msgstr ""
|
86 |
|
105 |
msgid "Deleted"
|
106 |
msgstr "Terminé"
|
107 |
|
108 |
+
#: admin/controllers/Submissions_fm.php:155
|
109 |
+
#: admin/controllers/Submissions_fm.php:173 form-maker.php:313
|
110 |
+
#: form-maker.php:405 form-maker.php:1181
|
111 |
#, fuzzy
|
112 |
msgid "Submissions"
|
113 |
msgstr "Afficher la soumission"
|
114 |
|
115 |
+
#: admin/controllers/Themes_fm.php:83 form-maker.php:409 form-maker.php:1189
|
116 |
msgid "Themes"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: admin/controllers/Themes_fm.php:223 admin/controllers/Themes_fm.php:1408
|
120 |
+
#: admin/controllers/Themes_fm.php:2074
|
121 |
msgid "Global Parameters"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin/controllers/Themes_fm.php:224
|
125 |
msgid "Header"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin/controllers/Themes_fm.php:225
|
129 |
msgid "Content"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin/controllers/Themes_fm.php:226
|
133 |
msgid "Inputbox"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: admin/controllers/Themes_fm.php:227
|
137 |
msgid "Choices"
|
138 |
msgstr "Les choix"
|
139 |
|
140 |
+
#: admin/controllers/Themes_fm.php:228
|
141 |
msgid "General Buttons"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin/controllers/Themes_fm.php:229
|
145 |
msgid "Pagination"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: admin/controllers/Themes_fm.php:230
|
149 |
msgid "Buttons"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: admin/controllers/Themes_fm.php:231
|
153 |
msgid "Close(Minimize) Button"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: admin/controllers/Themes_fm.php:232
|
157 |
msgid "Minimize Text"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: admin/controllers/Themes_fm.php:233
|
161 |
msgid "Other"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: admin/controllers/Themes_fm.php:234 admin/controllers/Themes_fm.php:2927
|
165 |
msgid "Custom CSS"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: admin/controllers/Themes_fm.php:253 admin/controllers/Themes_fm.php:2468
|
169 |
#, fuzzy
|
170 |
msgid "Top"
|
171 |
msgstr "à"
|
172 |
|
173 |
+
#: admin/controllers/Themes_fm.php:254 admin/controllers/Themes_fm.php:273
|
174 |
+
#: admin/controllers/Themes_fm.php:2477
|
175 |
msgid "Right"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: admin/controllers/Themes_fm.php:255 admin/controllers/Themes_fm.php:2486
|
179 |
msgid "Bottom"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: admin/controllers/Themes_fm.php:256 admin/controllers/Themes_fm.php:273
|
183 |
+
#: admin/controllers/Themes_fm.php:2495
|
184 |
msgid "Left"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: admin/controllers/Themes_fm.php:273
|
188 |
#, fuzzy
|
189 |
msgid "Center"
|
190 |
msgstr "Cents "
|
191 |
|
192 |
+
#: admin/controllers/Themes_fm.php:328
|
193 |
msgid "Font Family"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: admin/controllers/Themes_fm.php:337 admin/controllers/Themes_fm.php:449
|
197 |
+
#: admin/controllers/Themes_fm.php:605 admin/controllers/Themes_fm.php:656
|
198 |
+
#: admin/controllers/Themes_fm.php:906 admin/controllers/Themes_fm.php:1111
|
199 |
+
#: admin/controllers/Themes_fm.php:1202 admin/controllers/Themes_fm.php:1250
|
200 |
+
#: admin/controllers/Themes_fm.php:1373 admin/controllers/Themes_fm.php:1440
|
201 |
+
#: admin/controllers/Themes_fm.php:1625 admin/controllers/Themes_fm.php:2048
|
202 |
+
#: admin/controllers/Themes_fm.php:2063 admin/controllers/Themes_fm.php:2114
|
203 |
+
#: admin/controllers/Themes_fm.php:2290
|
204 |
msgid "Width"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: admin/controllers/Themes_fm.php:345
|
208 |
msgid "Width (for scrollbox, popup form types)"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin/controllers/Themes_fm.php:353 admin/controllers/Themes_fm.php:465
|
212 |
+
#: admin/controllers/Themes_fm.php:733 admin/controllers/Themes_fm.php:825
|
213 |
+
#: admin/controllers/Themes_fm.php:858 admin/controllers/Themes_fm.php:882
|
214 |
+
#: admin/controllers/Themes_fm.php:914 admin/controllers/Themes_fm.php:984
|
215 |
+
#: admin/controllers/Themes_fm.php:1482 admin/controllers/Themes_fm.php:1667
|
216 |
+
#: admin/controllers/Themes_fm.php:1854 admin/controllers/Themes_fm.php:1972
|
217 |
+
#: admin/controllers/Themes_fm.php:2147 admin/controllers/Themes_fm.php:2323
|
218 |
+
#: admin/controllers/Themes_fm.php:2539 admin/controllers/Themes_fm.php:2710
|
219 |
msgid "Padding"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: admin/controllers/Themes_fm.php:357
|
223 |
msgid "e.g. 3px 5px or 3% 5%"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: admin/controllers/Themes_fm.php:362 admin/controllers/Themes_fm.php:474
|
227 |
+
#: admin/controllers/Themes_fm.php:742 admin/controllers/Themes_fm.php:834
|
228 |
+
#: admin/controllers/Themes_fm.php:867 admin/controllers/Themes_fm.php:891
|
229 |
+
#: admin/controllers/Themes_fm.php:923 admin/controllers/Themes_fm.php:993
|
230 |
+
#: admin/controllers/Themes_fm.php:1127 admin/controllers/Themes_fm.php:1218
|
231 |
+
#: admin/controllers/Themes_fm.php:1266 admin/controllers/Themes_fm.php:1389
|
232 |
+
#: admin/controllers/Themes_fm.php:1491 admin/controllers/Themes_fm.php:1676
|
233 |
+
#: admin/controllers/Themes_fm.php:1863 admin/controllers/Themes_fm.php:1981
|
234 |
+
#: admin/controllers/Themes_fm.php:2156 admin/controllers/Themes_fm.php:2332
|
235 |
+
#: admin/controllers/Themes_fm.php:2548 admin/controllers/Themes_fm.php:2719
|
236 |
msgid "Margin"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: admin/controllers/Themes_fm.php:367
|
240 |
msgid "e.g. 5px 10px or 5% 10%"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: admin/controllers/Themes_fm.php:371 admin/controllers/Themes_fm.php:492
|
244 |
+
#: admin/controllers/Themes_fm.php:751 admin/controllers/Themes_fm.php:1002
|
245 |
+
#: admin/controllers/Themes_fm.php:1136 admin/controllers/Themes_fm.php:1275
|
246 |
+
#: admin/controllers/Themes_fm.php:1500 admin/controllers/Themes_fm.php:1575
|
247 |
+
#: admin/controllers/Themes_fm.php:1685 admin/controllers/Themes_fm.php:1760
|
248 |
+
#: admin/controllers/Themes_fm.php:1872 admin/controllers/Themes_fm.php:1990
|
249 |
+
#: admin/controllers/Themes_fm.php:2165 admin/controllers/Themes_fm.php:2240
|
250 |
+
#: admin/controllers/Themes_fm.php:2341 admin/controllers/Themes_fm.php:2416
|
251 |
+
#: admin/controllers/Themes_fm.php:2557 admin/controllers/Themes_fm.php:2623
|
252 |
+
#: admin/controllers/Themes_fm.php:2728 admin/controllers/Themes_fm.php:2794
|
253 |
msgid "Border"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: admin/controllers/Themes_fm.php:379 admin/controllers/Themes_fm.php:500
|
257 |
+
#: admin/controllers/Themes_fm.php:759 admin/controllers/Themes_fm.php:1010
|
258 |
+
#: admin/controllers/Themes_fm.php:1144 admin/controllers/Themes_fm.php:1283
|
259 |
+
#: admin/controllers/Themes_fm.php:1508 admin/controllers/Themes_fm.php:1583
|
260 |
+
#: admin/controllers/Themes_fm.php:1693 admin/controllers/Themes_fm.php:1768
|
261 |
+
#: admin/controllers/Themes_fm.php:1880 admin/controllers/Themes_fm.php:1998
|
262 |
+
#: admin/controllers/Themes_fm.php:2173 admin/controllers/Themes_fm.php:2248
|
263 |
+
#: admin/controllers/Themes_fm.php:2349 admin/controllers/Themes_fm.php:2424
|
264 |
+
#: admin/controllers/Themes_fm.php:2565 admin/controllers/Themes_fm.php:2631
|
265 |
+
#: admin/controllers/Themes_fm.php:2736 admin/controllers/Themes_fm.php:2802
|
266 |
msgid "Border Color"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin/controllers/Themes_fm.php:383 admin/controllers/Themes_fm.php:418
|
270 |
+
#: admin/controllers/Themes_fm.php:444 admin/controllers/Themes_fm.php:469
|
271 |
+
#: admin/controllers/Themes_fm.php:479 admin/controllers/Themes_fm.php:504
|
272 |
+
#: admin/controllers/Themes_fm.php:562 admin/controllers/Themes_fm.php:585
|
273 |
+
#: admin/controllers/Themes_fm.php:634 admin/controllers/Themes_fm.php:704
|
274 |
+
#: admin/controllers/Themes_fm.php:717 admin/controllers/Themes_fm.php:737
|
275 |
+
#: admin/controllers/Themes_fm.php:747 admin/controllers/Themes_fm.php:820
|
276 |
+
#: admin/controllers/Themes_fm.php:829 admin/controllers/Themes_fm.php:838
|
277 |
+
#: admin/controllers/Themes_fm.php:853 admin/controllers/Themes_fm.php:862
|
278 |
+
#: admin/controllers/Themes_fm.php:871 admin/controllers/Themes_fm.php:886
|
279 |
+
#: admin/controllers/Themes_fm.php:895 admin/controllers/Themes_fm.php:918
|
280 |
+
#: admin/controllers/Themes_fm.php:927 admin/controllers/Themes_fm.php:970
|
281 |
+
#: admin/controllers/Themes_fm.php:979 admin/controllers/Themes_fm.php:988
|
282 |
+
#: admin/controllers/Themes_fm.php:997 admin/controllers/Themes_fm.php:1014
|
283 |
+
#: admin/controllers/Themes_fm.php:1049 admin/controllers/Themes_fm.php:1064
|
284 |
+
#: admin/controllers/Themes_fm.php:1106 admin/controllers/Themes_fm.php:1131
|
285 |
+
#: admin/controllers/Themes_fm.php:1148 admin/controllers/Themes_fm.php:1182
|
286 |
+
#: admin/controllers/Themes_fm.php:1197 admin/controllers/Themes_fm.php:1245
|
287 |
+
#: admin/controllers/Themes_fm.php:1270 admin/controllers/Themes_fm.php:1287
|
288 |
+
#: admin/controllers/Themes_fm.php:1322 admin/controllers/Themes_fm.php:1337
|
289 |
+
#: admin/controllers/Themes_fm.php:1365 admin/controllers/Themes_fm.php:1393
|
290 |
+
#: admin/controllers/Themes_fm.php:1435 admin/controllers/Themes_fm.php:1477
|
291 |
+
#: admin/controllers/Themes_fm.php:1486 admin/controllers/Themes_fm.php:1495
|
292 |
+
#: admin/controllers/Themes_fm.php:1512 admin/controllers/Themes_fm.php:1546
|
293 |
+
#: admin/controllers/Themes_fm.php:1561 admin/controllers/Themes_fm.php:1570
|
294 |
+
#: admin/controllers/Themes_fm.php:1587 admin/controllers/Themes_fm.php:1620
|
295 |
+
#: admin/controllers/Themes_fm.php:1662 admin/controllers/Themes_fm.php:1671
|
296 |
+
#: admin/controllers/Themes_fm.php:1680 admin/controllers/Themes_fm.php:1697
|
297 |
+
#: admin/controllers/Themes_fm.php:1731 admin/controllers/Themes_fm.php:1746
|
298 |
+
#: admin/controllers/Themes_fm.php:1755 admin/controllers/Themes_fm.php:1772
|
299 |
+
#: admin/controllers/Themes_fm.php:1807 admin/controllers/Themes_fm.php:1833
|
300 |
+
#: admin/controllers/Themes_fm.php:1858 admin/controllers/Themes_fm.php:1867
|
301 |
+
#: admin/controllers/Themes_fm.php:1884 admin/controllers/Themes_fm.php:1925
|
302 |
+
#: admin/controllers/Themes_fm.php:1951 admin/controllers/Themes_fm.php:1976
|
303 |
+
#: admin/controllers/Themes_fm.php:1985 admin/controllers/Themes_fm.php:2002
|
304 |
+
#: admin/controllers/Themes_fm.php:2067 admin/controllers/Themes_fm.php:2109
|
305 |
+
#: admin/controllers/Themes_fm.php:2142 admin/controllers/Themes_fm.php:2151
|
306 |
+
#: admin/controllers/Themes_fm.php:2160 admin/controllers/Themes_fm.php:2177
|
307 |
+
#: admin/controllers/Themes_fm.php:2211 admin/controllers/Themes_fm.php:2226
|
308 |
+
#: admin/controllers/Themes_fm.php:2235 admin/controllers/Themes_fm.php:2252
|
309 |
+
#: admin/controllers/Themes_fm.php:2285 admin/controllers/Themes_fm.php:2318
|
310 |
+
#: admin/controllers/Themes_fm.php:2327 admin/controllers/Themes_fm.php:2336
|
311 |
+
#: admin/controllers/Themes_fm.php:2353 admin/controllers/Themes_fm.php:2387
|
312 |
+
#: admin/controllers/Themes_fm.php:2402 admin/controllers/Themes_fm.php:2411
|
313 |
+
#: admin/controllers/Themes_fm.php:2428 admin/controllers/Themes_fm.php:2472
|
314 |
+
#: admin/controllers/Themes_fm.php:2481 admin/controllers/Themes_fm.php:2490
|
315 |
+
#: admin/controllers/Themes_fm.php:2499 admin/controllers/Themes_fm.php:2508
|
316 |
+
#: admin/controllers/Themes_fm.php:2534 admin/controllers/Themes_fm.php:2543
|
317 |
+
#: admin/controllers/Themes_fm.php:2552 admin/controllers/Themes_fm.php:2569
|
318 |
+
#: admin/controllers/Themes_fm.php:2609 admin/controllers/Themes_fm.php:2618
|
319 |
+
#: admin/controllers/Themes_fm.php:2635 admin/controllers/Themes_fm.php:2670
|
320 |
+
#: admin/controllers/Themes_fm.php:2696 admin/controllers/Themes_fm.php:2714
|
321 |
+
#: admin/controllers/Themes_fm.php:2723 admin/controllers/Themes_fm.php:2740
|
322 |
+
#: admin/controllers/Themes_fm.php:2780 admin/controllers/Themes_fm.php:2789
|
323 |
+
#: admin/controllers/Themes_fm.php:2840 admin/controllers/Themes_fm.php:2896
|
|
|
324 |
msgid "e.g."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: admin/controllers/Themes_fm.php:388 admin/controllers/Themes_fm.php:509
|
328 |
+
#: admin/controllers/Themes_fm.php:767 admin/controllers/Themes_fm.php:1019
|
329 |
+
#: admin/controllers/Themes_fm.php:1153 admin/controllers/Themes_fm.php:1292
|
330 |
+
#: admin/controllers/Themes_fm.php:1517 admin/controllers/Themes_fm.php:1592
|
331 |
+
#: admin/controllers/Themes_fm.php:1702 admin/controllers/Themes_fm.php:1777
|
332 |
+
#: admin/controllers/Themes_fm.php:1889 admin/controllers/Themes_fm.php:2007
|
333 |
+
#: admin/controllers/Themes_fm.php:2182 admin/controllers/Themes_fm.php:2257
|
334 |
+
#: admin/controllers/Themes_fm.php:2358 admin/controllers/Themes_fm.php:2433
|
335 |
+
#: admin/controllers/Themes_fm.php:2574 admin/controllers/Themes_fm.php:2640
|
336 |
+
#: admin/controllers/Themes_fm.php:2745 admin/controllers/Themes_fm.php:2810
|
337 |
msgid "Border Type"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: admin/controllers/Themes_fm.php:397 admin/controllers/Themes_fm.php:518
|
341 |
+
#: admin/controllers/Themes_fm.php:776 admin/controllers/Themes_fm.php:1028
|
342 |
+
#: admin/controllers/Themes_fm.php:1162 admin/controllers/Themes_fm.php:1301
|
343 |
+
#: admin/controllers/Themes_fm.php:1526 admin/controllers/Themes_fm.php:1601
|
344 |
+
#: admin/controllers/Themes_fm.php:1711 admin/controllers/Themes_fm.php:1786
|
345 |
+
#: admin/controllers/Themes_fm.php:1898 admin/controllers/Themes_fm.php:2016
|
346 |
+
#: admin/controllers/Themes_fm.php:2191 admin/controllers/Themes_fm.php:2266
|
347 |
+
#: admin/controllers/Themes_fm.php:2367 admin/controllers/Themes_fm.php:2442
|
348 |
+
#: admin/controllers/Themes_fm.php:2583 admin/controllers/Themes_fm.php:2649
|
349 |
+
#: admin/controllers/Themes_fm.php:2754 admin/controllers/Themes_fm.php:2819
|
350 |
msgid "Border Width"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: admin/controllers/Themes_fm.php:405 admin/controllers/Themes_fm.php:526
|
354 |
+
#: admin/controllers/Themes_fm.php:784 admin/controllers/Themes_fm.php:1036
|
355 |
+
#: admin/controllers/Themes_fm.php:1170 admin/controllers/Themes_fm.php:1226
|
356 |
+
#: admin/controllers/Themes_fm.php:1310 admin/controllers/Themes_fm.php:1398
|
357 |
+
#: admin/controllers/Themes_fm.php:1534 admin/controllers/Themes_fm.php:1719
|
358 |
+
#: admin/controllers/Themes_fm.php:1906 admin/controllers/Themes_fm.php:2024
|
359 |
+
#: admin/controllers/Themes_fm.php:2199 admin/controllers/Themes_fm.php:2375
|
360 |
+
#: admin/controllers/Themes_fm.php:2591 admin/controllers/Themes_fm.php:2762
|
361 |
msgid "Border Radius"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: admin/controllers/Themes_fm.php:413 admin/controllers/Themes_fm.php:1044
|
365 |
+
#: admin/controllers/Themes_fm.php:1178 admin/controllers/Themes_fm.php:1318
|
366 |
+
#: admin/controllers/Themes_fm.php:1542 admin/controllers/Themes_fm.php:1727
|
367 |
+
#: admin/controllers/Themes_fm.php:2207 admin/controllers/Themes_fm.php:2383
|
368 |
msgid "Box Shadow"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: admin/controllers/Themes_fm.php:424 admin/controllers/Themes_fm.php:623
|
372 |
msgid "General Parameters"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: admin/controllers/Themes_fm.php:431 admin/controllers/Themes_fm.php:596
|
376 |
+
#: admin/controllers/Themes_fm.php:672 admin/controllers/Themes_fm.php:1415
|
377 |
+
#: admin/controllers/Themes_fm.php:2039
|
378 |
msgid "Alignment"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin/controllers/Themes_fm.php:440 admin/controllers/Themes_fm.php:630
|
382 |
+
#: admin/controllers/Themes_fm.php:849 admin/controllers/Themes_fm.php:966
|
383 |
+
#: admin/controllers/Themes_fm.php:1102 admin/controllers/Themes_fm.php:1193
|
384 |
+
#: admin/controllers/Themes_fm.php:1241 admin/controllers/Themes_fm.php:1333
|
385 |
+
#: admin/controllers/Themes_fm.php:1431 admin/controllers/Themes_fm.php:1557
|
386 |
+
#: admin/controllers/Themes_fm.php:1616 admin/controllers/Themes_fm.php:1742
|
387 |
+
#: admin/controllers/Themes_fm.php:1803 admin/controllers/Themes_fm.php:1921
|
388 |
+
#: admin/controllers/Themes_fm.php:2105 admin/controllers/Themes_fm.php:2222
|
389 |
+
#: admin/controllers/Themes_fm.php:2281 admin/controllers/Themes_fm.php:2398
|
390 |
+
#: admin/controllers/Themes_fm.php:2504 admin/controllers/Themes_fm.php:2605
|
391 |
+
#: admin/controllers/Themes_fm.php:2666 admin/controllers/Themes_fm.php:2776
|
392 |
msgid "Background Color"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: admin/controllers/Themes_fm.php:457 admin/controllers/Themes_fm.php:664
|
396 |
msgid "Width (for topbar form type)"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: admin/controllers/Themes_fm.php:483 admin/controllers/Themes_fm.php:2701
|
400 |
msgid "Text Align"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: admin/controllers/Themes_fm.php:534
|
404 |
msgid "Title Parameters"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: admin/controllers/Themes_fm.php:541 admin/controllers/Themes_fm.php:573
|
408 |
+
#: admin/controllers/Themes_fm.php:639 admin/controllers/Themes_fm.php:799
|
409 |
+
#: admin/controllers/Themes_fm.php:949 admin/controllers/Themes_fm.php:1456
|
410 |
+
#: admin/controllers/Themes_fm.php:1641 admin/controllers/Themes_fm.php:1812
|
411 |
+
#: admin/controllers/Themes_fm.php:1930 admin/controllers/Themes_fm.php:2081
|
412 |
+
#: admin/controllers/Themes_fm.php:2513 admin/controllers/Themes_fm.php:2675
|
413 |
msgid "Font Size"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: admin/controllers/Themes_fm.php:549 admin/controllers/Themes_fm.php:647
|
417 |
+
#: admin/controllers/Themes_fm.php:807 admin/controllers/Themes_fm.php:957
|
418 |
+
#: admin/controllers/Themes_fm.php:1464 admin/controllers/Themes_fm.php:1649
|
419 |
+
#: admin/controllers/Themes_fm.php:1820 admin/controllers/Themes_fm.php:1938
|
420 |
+
#: admin/controllers/Themes_fm.php:2089 admin/controllers/Themes_fm.php:2521
|
421 |
+
#: admin/controllers/Themes_fm.php:2683
|
422 |
msgid "Font Weight"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: admin/controllers/Themes_fm.php:558 admin/controllers/Themes_fm.php:581
|
426 |
+
#: admin/controllers/Themes_fm.php:725 admin/controllers/Themes_fm.php:816
|
427 |
+
#: admin/controllers/Themes_fm.php:975 admin/controllers/Themes_fm.php:1473
|
428 |
+
#: admin/controllers/Themes_fm.php:1566 admin/controllers/Themes_fm.php:1658
|
429 |
+
#: admin/controllers/Themes_fm.php:1751 admin/controllers/Themes_fm.php:1829
|
430 |
+
#: admin/controllers/Themes_fm.php:1947 admin/controllers/Themes_fm.php:2138
|
431 |
+
#: admin/controllers/Themes_fm.php:2231 admin/controllers/Themes_fm.php:2314
|
432 |
+
#: admin/controllers/Themes_fm.php:2407 admin/controllers/Themes_fm.php:2530
|
433 |
+
#: admin/controllers/Themes_fm.php:2614 admin/controllers/Themes_fm.php:2692
|
434 |
+
#: admin/controllers/Themes_fm.php:2785 admin/controllers/Themes_fm.php:2836
|
435 |
+
#: admin/controllers/Themes_fm.php:2859
|
436 |
msgid "Color"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: admin/controllers/Themes_fm.php:567
|
440 |
msgid "Description Parameters"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: admin/controllers/Themes_fm.php:590
|
444 |
msgid "Image Parameters"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin/controllers/Themes_fm.php:613 admin/controllers/Themes_fm.php:941
|
448 |
+
#: admin/controllers/Themes_fm.php:1119 admin/controllers/Themes_fm.php:1210
|
449 |
+
#: admin/controllers/Themes_fm.php:1258 admin/controllers/Themes_fm.php:1381
|
450 |
+
#: admin/controllers/Themes_fm.php:1448 admin/controllers/Themes_fm.php:1633
|
451 |
+
#: admin/controllers/Themes_fm.php:1838 admin/controllers/Themes_fm.php:1956
|
452 |
+
#: admin/controllers/Themes_fm.php:2122 admin/controllers/Themes_fm.php:2298
|
453 |
msgid "Height"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: admin/controllers/Themes_fm.php:681 admin/controllers/Themes_fm.php:1069
|
457 |
+
#: admin/controllers/Themes_fm.php:1342 admin/controllers/Themes_fm.php:2873
|
458 |
msgid "Background URL"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: admin/controllers/Themes_fm.php:690 admin/controllers/Themes_fm.php:1078
|
462 |
+
#: admin/controllers/Themes_fm.php:1351 admin/controllers/Themes_fm.php:2882
|
463 |
msgid "Background Repeat"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: admin/controllers/Themes_fm.php:699 admin/controllers/Themes_fm.php:1360
|
467 |
+
#: admin/controllers/Themes_fm.php:2891
|
468 |
msgid "Background Position"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: admin/controllers/Themes_fm.php:712
|
472 |
msgid "Background Size"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: admin/controllers/Themes_fm.php:792
|
476 |
msgid "Mini labels (name, phone, address, checkbox, radio) Parameters"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin/controllers/Themes_fm.php:843
|
480 |
msgid "Section Parameters"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/controllers/Themes_fm.php:876
|
484 |
msgid "Section Column Parameters"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/controllers/Themes_fm.php:900
|
488 |
msgid "Footer Parameters"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: admin/controllers/Themes_fm.php:1053
|
492 |
msgid "Dropdown additional"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/controllers/Themes_fm.php:1060
|
496 |
msgid "Appearance"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: admin/controllers/Themes_fm.php:1095 admin/views/Manage_fm.php:1048
|
500 |
#, fuzzy
|
501 |
msgid "Single Choice"
|
502 |
msgstr "Les choix"
|
503 |
|
504 |
+
#: admin/controllers/Themes_fm.php:1187 admin/controllers/Themes_fm.php:1327
|
505 |
msgid "Checked Parameters"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: admin/controllers/Themes_fm.php:1234 admin/views/Manage_fm.php:1049
|
509 |
msgid "Multiple Choice"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin/controllers/Themes_fm.php:1424 admin/views/Manage_fm.php:1051
|
513 |
msgid "Submit"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: admin/controllers/Themes_fm.php:1551 admin/controllers/Themes_fm.php:1736
|
517 |
+
#: admin/controllers/Themes_fm.php:2216 admin/controllers/Themes_fm.php:2392
|
518 |
+
#: admin/controllers/Themes_fm.php:2599 admin/controllers/Themes_fm.php:2770
|
519 |
msgid "Hover Parameters"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: admin/controllers/Themes_fm.php:1609
|
523 |
msgid "Reset"
|
524 |
msgstr "remettre "
|
525 |
|
526 |
+
#: admin/controllers/Themes_fm.php:1796
|
527 |
msgid "Active"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: admin/controllers/Themes_fm.php:1846 admin/controllers/Themes_fm.php:1964
|
531 |
+
#: admin/controllers/Themes_fm.php:2130 admin/controllers/Themes_fm.php:2306
|
532 |
msgid "Line Height"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: admin/controllers/Themes_fm.php:1914
|
536 |
msgid "Inactive"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: admin/controllers/Themes_fm.php:2032
|
540 |
msgid "Steps"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: admin/controllers/Themes_fm.php:2056
|
544 |
msgid "Percentage"
|
545 |
msgstr "Pourcentage"
|
546 |
|
547 |
+
#: admin/controllers/Themes_fm.php:2098
|
548 |
msgid "Next Button Parameters"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: admin/controllers/Themes_fm.php:2274
|
552 |
msgid "Previous Button Parameters"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/controllers/Themes_fm.php:2459
|
556 |
msgid "Position"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: admin/controllers/Themes_fm.php:2829
|
560 |
msgid "Inactive Text"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: admin/controllers/Themes_fm.php:2845
|
564 |
msgid "Font Style"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: admin/controllers/Themes_fm.php:2853
|
568 |
msgid "Required"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: admin/controllers/Themes_fm.php:2867 admin/views/Manage_fm.php:1065
|
572 |
msgid "File Upload"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: admin/controllers/Themes_fm.php:2904
|
576 |
msgid "Grading"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: admin/controllers/Themes_fm.php:2910
|
580 |
msgid "Text Width"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: admin/controllers/Uninstall_fm.php:52 admin/views/Options_fm.php:132
|
584 |
+
#, php-format
|
585 |
+
msgid "Uninstall %s"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: admin/controllers/Widget.php:18
|
589 |
+
#, php-format
|
590 |
+
msgid "Add %s widget."
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: admin/controllers/elementorWidget.php:24
|
594 |
+
#: admin/controllers/elementorWidget.php:52
|
595 |
+
msgid "Form"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: admin/controllers/elementorWidget.php:61
|
599 |
+
msgid "Select the form to display."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: admin/controllers/elementorWidget.php:61
|
603 |
+
msgid "Edit form"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: admin/models/Manage_fm.php:383
|
607 |
msgid "Section Break"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: admin/models/Manage_fm.php:394
|
611 |
msgid "Custom HTML"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: admin/models/Manage_fm.php:2237 form-maker.php:588
|
615 |
+
#: frontend/views/form_maker.php:1283
|
616 |
msgid "No preview available for reCAPTCHA."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: admin/models/Submissions_fm.php:359
|
620 |
msgid "Street Address"
|
621 |
msgstr "Adresse 1"
|
622 |
|
623 |
+
#: admin/models/Submissions_fm.php:362
|
624 |
msgid "Street Address Line 2"
|
625 |
msgstr "Adresse 2"
|
626 |
|
627 |
+
#: admin/models/Submissions_fm.php:365
|
628 |
msgid "City"
|
629 |
msgstr "Ville"
|
630 |
|
631 |
+
#: admin/models/Submissions_fm.php:368
|
632 |
msgid "State / Province / Region"
|
633 |
msgstr "Province"
|
634 |
|
635 |
+
#: admin/models/Submissions_fm.php:371
|
636 |
msgid "Postal / Zip Code"
|
637 |
msgstr "Code postal / Zip"
|
638 |
|
639 |
+
#: admin/models/Submissions_fm.php:374
|
640 |
msgid "Country"
|
641 |
msgstr "Pays"
|
642 |
|
643 |
+
#: admin/views/Blocked_ips_fm.php:55 form-maker.php:408
|
|
|
|
|
|
|
|
|
644 |
msgid "Blocked IPs"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: admin/views/Blocked_ips_fm.php:76 framework/WDW_FM_Library.php:5261
|
648 |
msgid "IP"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: admin/views/Blocked_ips_fm.php:116 admin/views/Manage_fm.php:148
|
652 |
+
#: admin/views/Submissions_fm.php:506 admin/views/Themes_fm.php:96
|
653 |
msgid "Do you want to delete selected item?"
|
654 |
msgstr ""
|
655 |
|
657 |
msgid "Connection type"
|
658 |
msgstr "Type de connexion"
|
659 |
|
660 |
+
#: admin/views/FMShortocde.php:46 admin/views/FMShortocde.php:90
|
661 |
msgid "Unpublished"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: admin/views/FMShortocde.php:74
|
665 |
msgid "Front end submissions are available in Premium version"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: admin/views/FMSqlMapping.php:829 admin/views/FMSqlMapping.php:1809
|
669 |
+
#: admin/views/Manage_fm.php:82
|
670 |
msgid "Type"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: admin/views/FMSqlMapping.php:832 admin/views/FMSqlMapping.php:1812
|
674 |
msgid "Null"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: admin/views/FMSqlMapping.php:835 admin/views/FMSqlMapping.php:1815
|
678 |
msgid "Key"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: admin/views/FMSqlMapping.php:838 admin/views/FMSqlMapping.php:1818
|
682 |
#: admin/views/Themes_fm.php:71
|
683 |
msgid "Default"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: admin/views/FMSqlMapping.php:841 admin/views/FMSqlMapping.php:1821
|
687 |
msgid "Extra"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: admin/views/FormMakerSubmits.php:51 admin/views/Manage_fm.php:1046
|
691 |
msgid "Date"
|
692 |
+
msgstr "Horodatage"
|
693 |
|
694 |
+
#: admin/views/Manage_fm.php:57 admin/views/view.php:431 form-maker.php:404
|
695 |
msgid "Forms"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: admin/views/Manage_fm.php:81 admin/views/Themes_fm.php:70
|
699 |
#: admin/views/Themes_fm.php:145
|
700 |
msgid "Title"
|
701 |
msgstr "Titre"
|
702 |
|
703 |
+
#: admin/views/Manage_fm.php:84
|
704 |
msgid "Shortcode"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: admin/views/Manage_fm.php:311 admin/views/Manage_fm.php:316
|
708 |
+
msgid "Loading..."
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: admin/views/Manage_fm.php:373
|
712 |
+
#, php-format
|
713 |
+
msgid ""
|
714 |
+
"You need to click the \"Restore this revision\" button to save the changes. "
|
715 |
+
"Revision number %u %s"
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#: admin/views/Manage_fm.php:552
|
719 |
+
msgid "Current"
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#: admin/views/Manage_fm.php:1042 admin/views/Manage_fm.php:1121
|
723 |
msgid "BASIC FIELDS"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: admin/views/Manage_fm.php:1043
|
727 |
msgid "Single Line Text"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: admin/views/Manage_fm.php:1044
|
731 |
msgid "Paragraph Text"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: admin/views/Manage_fm.php:1045
|
735 |
#, fuzzy
|
736 |
msgid "Number"
|
737 |
msgstr "novembre"
|
738 |
|
739 |
+
#: admin/views/Manage_fm.php:1047
|
740 |
#, fuzzy
|
741 |
msgid "Select"
|
742 |
msgstr "Sélectionnez une date"
|
743 |
|
744 |
+
#: admin/views/Manage_fm.php:1050
|
745 |
msgid "Recaptcha"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: admin/views/Manage_fm.php:1052
|
749 |
msgid "Simple Captcha"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: admin/views/Manage_fm.php:1054
|
753 |
msgid "USER INFO FIELDS"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: admin/views/Manage_fm.php:1055
|
757 |
msgid "Name"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: admin/views/Manage_fm.php:1056
|
761 |
msgid "Email"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: admin/views/Manage_fm.php:1057
|
765 |
msgid "Phone"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: admin/views/Manage_fm.php:1058
|
769 |
msgid "Address"
|
770 |
msgstr "Adresse"
|
771 |
|
772 |
+
#: admin/views/Manage_fm.php:1059
|
773 |
#, fuzzy
|
774 |
msgid "Mark on Map"
|
775 |
msgstr "Afficher sur la carte"
|
776 |
|
777 |
+
#: admin/views/Manage_fm.php:1060
|
778 |
#, fuzzy
|
779 |
msgid "Country List"
|
780 |
msgstr "Pays"
|
781 |
|
782 |
+
#: admin/views/Manage_fm.php:1061
|
783 |
msgid "Date of Birth"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: admin/views/Manage_fm.php:1063
|
787 |
+
msgid "ADVANCED"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: admin/views/Manage_fm.php:1064
|
791 |
msgid "HTML"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: admin/views/Manage_fm.php:1066
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
795 |
#, fuzzy
|
796 |
msgid "Map"
|
797 |
msgstr "Mai"
|
798 |
|
799 |
+
#: admin/views/Manage_fm.php:1067
|
800 |
msgid "Time"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: admin/views/Manage_fm.php:1068
|
804 |
msgid "Receive Copy"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: admin/views/Manage_fm.php:1069
|
808 |
msgid "Date Range"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: admin/views/Manage_fm.php:1070
|
812 |
msgid "Stars"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: admin/views/Manage_fm.php:1071
|
816 |
msgid "Rating"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: admin/views/Manage_fm.php:1072
|
820 |
msgid "Slider"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: admin/views/Manage_fm.php:1073
|
824 |
msgid "Range"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: admin/views/Manage_fm.php:1074
|
828 |
msgid "Grades"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: admin/views/Manage_fm.php:1075
|
832 |
#, fuzzy
|
833 |
msgid "Table of Fields"
|
834 |
msgstr "Sélectionnez un champ "
|
835 |
|
836 |
+
#: admin/views/Manage_fm.php:1076
|
837 |
msgid "Hidden Input"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: admin/views/Manage_fm.php:1077
|
841 |
msgid "Custom Button"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: admin/views/Manage_fm.php:1078
|
845 |
msgid "Password"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: admin/views/Manage_fm.php:1079
|
849 |
#, fuzzy
|
850 |
msgid "Phone-Area Code"
|
851 |
msgstr "Code de zone"
|
852 |
|
853 |
+
#: admin/views/Manage_fm.php:1080
|
854 |
msgid "Arithmetic Captcha"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: admin/views/Manage_fm.php:1082
|
858 |
msgid "PAYMENT"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: admin/views/Manage_fm.php:1083
|
862 |
msgid "Price"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: admin/views/Manage_fm.php:1084
|
866 |
msgid "Payment Select"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: admin/views/Manage_fm.php:1085
|
870 |
msgid "Payment Single Choice"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: admin/views/Manage_fm.php:1086
|
874 |
msgid "Payment Multiple Choice"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: admin/views/Manage_fm.php:1087
|
878 |
msgid "Shipping"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: admin/views/Manage_fm.php:1088 frontend/views/form_maker.php:4484
|
882 |
+
#: frontend/views/form_submissions.php:642
|
883 |
msgid "Total"
|
884 |
msgstr "Total"
|
885 |
|
886 |
+
#: admin/views/Manage_fm.php:1089
|
887 |
+
msgid "Stripe"
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: admin/views/Manage_fm.php:1123 admin/views/Manage_fm.php:2064
|
891 |
msgid "Toggle panel:"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: admin/views/Manage_fm.php:1150
|
895 |
msgid "This field type is available in Premium version"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: admin/views/Manage_fm.php:1155 admin/views/Manage_fm.php:1549
|
899 |
+
msgid "STRIPE extension compatible with Premium version only"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: admin/views/Manage_fm.php:1160 admin/views/Manage_fm.php:1557
|
903 |
msgid "This feature is available only in the Premium version"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: admin/views/Manage_fm.php:1160 admin/views/Manage_fm.php:1557
|
907 |
+
msgid "Requires STRIPE extension."
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: admin/views/Manage_fm.php:1163 admin/views/Manage_fm.php:1560
|
911 |
+
msgid "This feature requires STRIPE extension"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: admin/views/Manage_fm.php:1163 admin/views/Manage_fm.php:1560
|
915 |
msgid "Buy"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: admin/views/Manage_fm.php:1325
|
919 |
+
msgid "This functionality is available in Premium version"
|
|
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: admin/views/Manage_fm.php:1495
|
923 |
+
msgid "PAYPAL is available in Premium version"
|
|
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: admin/views/Manage_fm.php:1989
|
927 |
+
#, php-format
|
928 |
+
msgid "You can manage your privacy settings %s."
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: admin/views/Manage_fm.php:1989
|
932 |
+
msgid "here"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: admin/views/Manage_fm.php:2062 framework/WDW_FM_Library.php:5258
|
936 |
+
#: framework/WDW_FM_Library.php:5268
|
937 |
msgid "Misc"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: admin/views/Manage_fm.php:2423
|
941 |
+
msgid "All categories"
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#: admin/views/Options_fm.php:25 form-maker.php:410
|
945 |
msgid "Options"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: admin/views/Options_fm.php:31 admin/views/Themes_fm.php:143
|
949 |
msgid "Save"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: admin/views/Options_fm.php:78
|
953 |
#, php-format
|
954 |
msgid "%s for your site from ReCaptcha website and copy the provided here."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: admin/views/Options_fm.php:78
|
958 |
msgid "Get ReCaptcha Site and Secret Keys"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: admin/views/Submissions_fm.php:96
|
962 |
#, php-format
|
963 |
+
msgid ""
|
964 |
+
"An unexpected error occurred while exporting data. %s Please contact 10Web "
|
965 |
+
"Customer Care. %s"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: admin/views/Submissions_fm.php:209
|
969 |
#, fuzzy
|
970 |
msgid "Show Filters"
|
971 |
msgstr "Afficher la matrice"
|
972 |
|
973 |
+
#: admin/views/Submissions_fm.php:209
|
974 |
msgid "Hide Filters"
|
975 |
msgstr ""
|
976 |
|
979 |
msgid "Title: "
|
980 |
msgstr "Titre"
|
981 |
|
982 |
+
#: admin/views/Themes_fm.php:225
|
983 |
msgid ""
|
984 |
"This theme is outdated. Theme Options are only available in new themes "
|
985 |
"provided by Form Maker. You can use Custom CSS panel to edit form styling, "
|
986 |
"or alternatively select a new theme for your form."
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: admin/views/Uninstall_fm.php:48
|
990 |
+
msgid "support team"
|
991 |
+
msgstr ""
|
992 |
+
|
993 |
+
#: admin/views/Uninstall_fm.php:49
|
994 |
+
msgid "Contact us"
|
995 |
+
msgstr ""
|
996 |
+
|
997 |
+
#: admin/views/Uninstall_fm.php:50
|
998 |
+
#, php-format
|
999 |
+
msgid ""
|
1000 |
+
"Before uninstalling the plugin, please Contact our %s. We'll do our best to "
|
1001 |
+
"help you out with your issue. We value each and every user and value what's "
|
1002 |
+
"right for our users in everything we do.<br />\n"
|
1003 |
+
" However, if anyway you have made a decision to uninstall the plugin, "
|
1004 |
+
"please take a minute to %s and tell what you didn't like for our plugins "
|
1005 |
+
"further improvement and development. Thank you !!!"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: admin/views/Uninstall_fm.php:54
|
1009 |
+
#, php-format
|
1010 |
+
msgid ""
|
1011 |
+
"Deactivating %s plugin does not remove any data that may have been created. "
|
1012 |
+
"To completely remove this plugin, you can uninstall it here."
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: admin/views/Uninstall_fm.php:82
|
1016 |
+
#, php-format
|
1017 |
+
msgid "Do you really want to uninstall %s?"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: admin/views/Uninstall_fm.php:92
|
1021 |
+
msgid "UNINSTALL"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: admin/views/Uninstall_fm.php:94
|
1025 |
+
#, php-format
|
1026 |
+
msgid ""
|
1027 |
+
"You are About to Uninstall %s from WordPress. This Action Is Not Reversible."
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: admin/views/view.php:436
|
1031 |
+
msgid "Extensions"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: admin/views/view.php:441
|
1035 |
msgid "Premium Version"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: admin/views/view.php:441 admin/views/view.php:481
|
1039 |
msgid "Upgrade"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: form-maker.php:107
|
1043 |
+
msgid "Contact Form"
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: form-maker.php:107
|
1047 |
msgid "Form Maker"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: form-maker.php:255
|
1051 |
+
msgid "10WEB Plugins"
|
1052 |
+
msgstr ""
|
1053 |
+
|
1054 |
+
#: form-maker.php:265
|
1055 |
+
msgid ""
|
1056 |
+
"When you leave a comment on this site, we send your name, email\n"
|
1057 |
+
" address, IP address and comment text to example.com. Example.com "
|
1058 |
+
"does\n"
|
1059 |
+
" not retain your personal data."
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: form-maker.php:320 form-maker.php:328
|
1063 |
+
#, fuzzy, php-format
|
1064 |
+
msgid "Select %s"
|
1065 |
+
msgstr "Sélectionnez une date"
|
1066 |
+
|
1067 |
+
#: form-maker.php:355
|
1068 |
+
#, fuzzy
|
1069 |
+
#| msgid "Nothing was submitted."
|
1070 |
+
msgid "Nothing selected."
|
1071 |
+
msgstr "Rien n'a été soumis."
|
1072 |
+
|
1073 |
+
#: form-maker.php:356
|
1074 |
+
#, fuzzy
|
1075 |
+
msgid "- Select -"
|
1076 |
+
msgstr "Sélectionnez une date"
|
1077 |
+
|
1078 |
+
#: form-maker.php:411
|
1079 |
msgid "Uninstall"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: form-maker.php:461
|
1083 |
msgid "Number of items per page:"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: form-maker.php:556
|
1087 |
+
#, fuzzy
|
1088 |
+
msgid "Enter a valid value."
|
1089 |
+
msgstr "Ce n'est pas un format de date valide."
|
1090 |
+
|
1091 |
+
#: form-maker.php:557
|
1092 |
+
#, fuzzy
|
1093 |
+
msgid "Field is required."
|
1094 |
+
msgstr "Champ requis"
|
1095 |
+
|
1096 |
+
#: form-maker.php:558 frontend/models/form_maker.php:2107
|
1097 |
+
#, fuzzy
|
1098 |
+
#| msgid "This is not a valid email address."
|
1099 |
+
msgid "Enter a valid email address."
|
1100 |
+
msgstr "Ceci n'est pas une adresse e-mail valide"
|
1101 |
+
|
1102 |
+
#: form-maker.php:563 form-maker.php:575
|
1103 |
+
msgid "Add Field"
|
1104 |
+
msgstr ""
|
1105 |
+
|
1106 |
+
#: form-maker.php:564
|
1107 |
+
msgid "Add Column"
|
1108 |
+
msgstr ""
|
1109 |
+
|
1110 |
+
#: form-maker.php:565
|
1111 |
+
msgid "Add Section"
|
1112 |
+
msgstr ""
|
1113 |
+
|
1114 |
+
#: form-maker.php:571
|
1115 |
#, fuzzy
|
1116 |
msgid "Nothing found."
|
1117 |
msgstr "Rien n'a été soumis."
|
1118 |
|
1119 |
+
#: form-maker.php:572
|
1120 |
msgid "The captcha already has been created."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: form-maker.php:573 form-maker.php:687
|
1124 |
+
msgid "Update"
|
1125 |
+
msgstr ""
|
1126 |
+
|
1127 |
+
#: form-maker.php:574
|
1128 |
#, fuzzy
|
1129 |
msgid "Add"
|
1130 |
msgstr "Adresse"
|
1131 |
|
1132 |
+
#: form-maker.php:576
|
|
|
|
|
|
|
|
|
1133 |
msgid "Edit Field"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: form-maker.php:577
|
1137 |
msgid ""
|
1138 |
"To use this feature, please go to Form Options > Payment Options and select "
|
1139 |
"\"Stripe\" as the Payment Method."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: form-maker.php:578 framework/WDW_FM_Library.php:4744
|
1143 |
msgid "Sunday"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: form-maker.php:579 framework/WDW_FM_Library.php:4744
|
1147 |
msgid "Monday"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: form-maker.php:580 framework/WDW_FM_Library.php:4744
|
1151 |
msgid "Tuesday"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: form-maker.php:581 framework/WDW_FM_Library.php:4744
|
1155 |
msgid "Wednesday"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: form-maker.php:582 framework/WDW_FM_Library.php:4744
|
1159 |
msgid "Thursday"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: form-maker.php:583 framework/WDW_FM_Library.php:4744
|
1163 |
msgid "Friday"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: form-maker.php:584 framework/WDW_FM_Library.php:4744
|
1167 |
msgid "Saturday"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: form-maker.php:585
|
1171 |
msgid "Leave empty to set the width to 100%."
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: form-maker.php:587
|
1175 |
msgid ""
|
1176 |
"The free version is limited up to 7 fields to add. If you need this "
|
1177 |
"functionality, you need to buy the commercial version."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: form-maker.php:589
|
|
|
|
|
|
|
|
|
1181 |
#, php-format
|
1182 |
msgid ""
|
1183 |
"%s Old reCAPTCHA keys will not work for %s. Please make sure to enable the "
|
1184 |
"API keys for Invisible reCAPTCHA."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: form-maker.php:589
|
1188 |
msgid "Note:"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: form-maker.php:589
|
1192 |
msgid "Invisible reCAPTCHA"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: form-maker.php:590
|
1196 |
#, fuzzy
|
1197 |
msgid "This field is a single line text input."
|
1198 |
msgstr ""
|
1199 |
"Ce champ %s nécessite une entrée unique et cette valeur a déjà été soumis."
|
1200 |
|
1201 |
+
#: form-maker.php:590 form-maker.php:592 form-maker.php:599 form-maker.php:600
|
1202 |
+
#: form-maker.php:621
|
1203 |
msgid "To set a default value, just fill the field above."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: form-maker.php:590 form-maker.php:591
|
1207 |
msgid ""
|
1208 |
"You can set the text input as Required, making sure the submitter provides a "
|
1209 |
"value for it."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: form-maker.php:590
|
1213 |
msgid ""
|
1214 |
"Validation (RegExp.) option in Advanced options lets you configure Regular "
|
1215 |
"Expression for your Single Line Text field. Use Common Regular Expressions "
|
1218 |
"corresponding options of Common Regular Expressions drop-down."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: form-maker.php:590
|
1222 |
msgid ""
|
1223 |
"Additionally, you can add HTML attributes to your form fields with "
|
1224 |
"Additional Attributes."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: form-maker.php:591
|
1228 |
msgid ""
|
1229 |
"This field adds a textarea box to your form. Users can write alphanumeric "
|
1230 |
"text, special characters and line breaks."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: form-maker.php:591
|
1234 |
msgid "Set the width and height of the textarea box using Size(px) option."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: form-maker.php:592
|
1238 |
msgid ""
|
1239 |
"This is an input text that accepts only numbers. Users can type a number "
|
1240 |
"directly, or use the spinner arrows to specify it."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: form-maker.php:592
|
1244 |
msgid ""
|
1245 |
"Step option defines the number to increment/decrement the spinner value, "
|
1246 |
"when the users press up or down arrows."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: form-maker.php:592
|
1250 |
msgid ""
|
1251 |
"Use Min Value and Max Value options to set lower and upper limitation for "
|
1252 |
"the value of this Number field."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: form-maker.php:593
|
1256 |
msgid ""
|
1257 |
"This field allows the submitter to choose values from select box. Just click "
|
1258 |
"(+) Option button and fill in all options you will need or click (+) From "
|
1259 |
"Database to fill the options from a database table."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: form-maker.php:593 form-maker.php:594 form-maker.php:595
|
1263 |
msgid ""
|
1264 |
"In case you need to have option values to be different from option names, "
|
1265 |
"mark Enable option's value from Advanced options as checked."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: form-maker.php:594
|
1269 |
msgid ""
|
1270 |
"Using this field you can add a list of Radio buttons to your form. Just "
|
1271 |
"click (+) Option button and fill in all options you will need or click (+) "
|
1272 |
"From Database to fill the options from a database table."
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: form-maker.php:594 form-maker.php:595
|
1276 |
msgid ""
|
1277 |
"Relative Position lets you choose the position of options in relation to "
|
1278 |
"each other. Whereas Option Label Position lets you select the position of "
|
1279 |
"radio button label."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: form-maker.php:594 form-maker.php:595
|
1283 |
msgid ""
|
1284 |
"And by enabling Allow other, you can let the user to write their own "
|
1285 |
"specific value."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: form-maker.php:595
|
1289 |
msgid ""
|
1290 |
"Multiple Choice field lets you have a list of Checkboxes. This field allows "
|
1291 |
"the submitter to choose more than one values."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: form-maker.php:595
|
1295 |
msgid ""
|
1296 |
"Just click (+) Option button and fill in all options you will need or click "
|
1297 |
"(+) From Database to fill the options from a database table."
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: form-maker.php:596
|
1301 |
#, php-format
|
1302 |
msgid ""
|
1303 |
"Form Maker is integrated with Google ReCaptcha, which protects your forms "
|
1305 |
"Site and Secret Keys by registering your website on %s"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: form-maker.php:596
|
1309 |
msgid "Google ReCaptcha website"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: form-maker.php:596
|
1313 |
msgid ""
|
1314 |
"After registering and creating the keys, copy them to Form Maker > Options "
|
1315 |
"page."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: form-maker.php:597
|
1319 |
msgid ""
|
1320 |
"The Submit button validates all form field values, saves them on MySQL "
|
1321 |
"database of your website, sends emails and performs other actions configured "
|
1322 |
"in Form Options. You can have more than one submit button in your form."
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: form-maker.php:598
|
1326 |
msgid ""
|
1327 |
"You can use this field as an alternative to ReCaptcha to protect your forms "
|
1328 |
"against spambots. It’s a random combination of numbers and letters, and "
|
1329 |
"users need to type them in correctly to submit the form."
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: form-maker.php:598
|
1333 |
msgid ""
|
1334 |
"You can specify the number of symbols in Simple Captcha using Symbols (3 - "
|
1335 |
"9) option."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: form-maker.php:599
|
1339 |
msgid "This field lets the user write their name."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: form-maker.php:599
|
1343 |
msgid ""
|
1344 |
"Enabling Autofill with user name setting will automatically fill in Name "
|
1345 |
"field with the name of the logged in user."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: form-maker.php:599
|
1349 |
msgid ""
|
1350 |
"In case you do not wish to receive the same data for the same Name field "
|
1351 |
"twice, activate Allow only unique values option."
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: form-maker.php:600
|
1355 |
#, fuzzy
|
1356 |
#| msgid "This is not a valid email address."
|
1357 |
msgid "This field is an input field that accepts an email address."
|
1358 |
msgstr "Ceci n'est pas une adresse e-mail valide"
|
1359 |
|
1360 |
+
#: form-maker.php:600
|
1361 |
msgid ""
|
1362 |
"Using Confirmation Email setting in Advanced Options you can require the "
|
1363 |
"submitter to re-type their email address."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: form-maker.php:600
|
1367 |
msgid ""
|
1368 |
"Autofill with user email will autofill Email field with the email address of "
|
1369 |
"the logged in user."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: form-maker.php:600
|
1373 |
msgid ""
|
1374 |
"Upon successful submission of the Form, you have the option to send the "
|
1375 |
"submitted data (or just a confirmation message) to the email address entered "
|
1377 |
"Email Options page."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: form-maker.php:601
|
1381 |
msgid ""
|
1382 |
"This field is an input for a phone number. It provides a list of country "
|
1383 |
"flags, which users can select and have their country code automatically "
|
1384 |
"added to the phone number."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: form-maker.php:601
|
1388 |
msgid ""
|
1389 |
"In case you do not wish to receive the same data for the same Phone field "
|
1390 |
"more than once, activate Allow only unique values setting from Advanced "
|
1391 |
"options."
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: form-maker.php:602
|
1395 |
msgid ""
|
1396 |
"This field lets you skip a few steps and quickly add one set for requesting "
|
1397 |
"the address of the submitter. Use Overall size(px) option to set the width "
|
1398 |
"of Address field."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: form-maker.php:602
|
1402 |
msgid ""
|
1403 |
"You can enable or disable elements of Address field using Disable Field(s) "
|
1404 |
"setting in Advanced Options."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: form-maker.php:602
|
1408 |
msgid ""
|
1409 |
"You can turn State/Province/Region field into a list of US states by "
|
1410 |
"activating Use list for US states setting from Advanced Options. Note: This "
|
1411 |
"only works in case United States is selected for Country select box."
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: form-maker.php:603
|
1415 |
msgid ""
|
1416 |
"Mark on Map field lets users to drag the map pin and drop it on their "
|
1417 |
"selected location. You can specify a default address for the location pin "
|
1418 |
"with Address option."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: form-maker.php:603
|
1422 |
msgid ""
|
1423 |
"In addition, Marker Info setting allows you to provide additional details "
|
1424 |
"about the location. It will appear after users click on the location pin."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: form-maker.php:604
|
1428 |
msgid ""
|
1429 |
"Country List is a select box which provides a list of all countries in "
|
1430 |
"alphabetical order."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: form-maker.php:604
|
1434 |
msgid ""
|
1435 |
"You can include/exclude specific countries from the list using the Edit "
|
1436 |
"country list setting in Advanced Options."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: form-maker.php:605
|
1440 |
msgid "Users can specify their birthday or any date with this field."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: form-maker.php:605
|
1444 |
msgid ""
|
1445 |
"Use Fields separator setting in Advanced options to change the divider "
|
1446 |
"between day, month and year boxes."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: form-maker.php:605
|
1450 |
msgid ""
|
1451 |
"You can set the fields to be text inputs or select boxes using Day field "
|
1452 |
"type, Month field type and Year field type options."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: form-maker.php:605
|
1456 |
msgid ""
|
1457 |
"In addition, you can specify the width of day, month and year fields using "
|
1458 |
"Day field size(px), Month field size(px) and Year field size(px) settings."
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: form-maker.php:606
|
1462 |
msgid ""
|
1463 |
"You can allow users to upload single or multiple documents, images and "
|
1464 |
"various files through your form."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: form-maker.php:606
|
1468 |
msgid ""
|
1469 |
"Use Allowed file extensions option to specify all acceptable file formats. "
|
1470 |
"Make sure to separate them with commas."
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: form-maker.php:606
|
1474 |
msgid ""
|
1475 |
"Mark Allow Uploading Multiple Files option in Advanced Options to allow "
|
1476 |
"users to select and upload multiple files."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: form-maker.php:607
|
1480 |
msgid ""
|
1481 |
"Map field can be used for pinning one or more locations on Google Map and "
|
1482 |
"displaying them on your form."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: form-maker.php:607
|
1486 |
msgid "Press the small Plus icon to add a location pin."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: form-maker.php:608
|
1490 |
msgid ""
|
1491 |
"Time field of Form Maker plugin will allow users to specify time value. Set "
|
1492 |
"the time format of the field to 24-hour or 12-hour using Time Format option."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: form-maker.php:609
|
1496 |
msgid ""
|
1497 |
"When users fill in an email address using Email Field, this checkbox will "
|
1498 |
"allow them to choose if they wish to receive a copy of the submission email."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: form-maker.php:609
|
1502 |
msgid "Note: Make sure to configure Form Options > Email Options of your form."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: form-maker.php:610
|
1506 |
msgid ""
|
1507 |
"Add Star rating field to your form with this field. You can display as many "
|
1508 |
"stars, as you will need, set the number using Number of Stars option."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: form-maker.php:611
|
1512 |
msgid ""
|
1513 |
"Place Rating field on your form to have radio buttons, which indicate rating "
|
1514 |
"from worst to best. You can set many radio buttons to display using Scale "
|
1515 |
"Range option."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: form-maker.php:612
|
1519 |
msgid ""
|
1520 |
"Slider field lets users specify the field value by dragging its handle from "
|
1521 |
"Min Value to Max Value."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: form-maker.php:613
|
1525 |
msgid ""
|
1526 |
"You can use this field to let users choose a numeric range by providing "
|
1527 |
"values for 2 number inputs. Its Step option allows to set the increment/"
|
1528 |
"decrement of spinners’ values, when users click on up or down arrows."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: form-maker.php:614
|
1532 |
msgid ""
|
1533 |
"Users will be able to grade specified items with this field. The sum of all "
|
1534 |
"values will appear below the field with Total parameter."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: form-maker.php:614
|
1538 |
msgid "Items option allows you to add multiple options to your Grades field."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: form-maker.php:615
|
1542 |
msgid ""
|
1543 |
"Table of Fields lets you place a matrix on your form, which will let the "
|
1544 |
"submitter to answer a few questions with one field."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: form-maker.php:615
|
1548 |
msgid ""
|
1549 |
"It allows you to configure the matrix with radio buttons, checkboxes, text "
|
1550 |
"boxes or drop-downs. Use Input Type option to set this."
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: form-maker.php:616
|
1554 |
msgid ""
|
1555 |
"Hidden Input field is similar to Single Line Text field, but it is not "
|
1556 |
"visible to users. Hidden Fields are handy, in case you need to run a custom "
|
1557 |
"Javascript and submit the result with the info on your form."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: form-maker.php:616
|
1561 |
msgid ""
|
1562 |
"Name option of this field is mandatory. Note: we highly recommend you to "
|
1563 |
"avoid using spaces or special characters in Hidden Input name. You can write "
|
1565 |
"page."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: form-maker.php:617
|
1569 |
msgid ""
|
1570 |
"In case you wish to run custom Javascript on your form, you can place Custom "
|
1571 |
"Button on your form. Its lets you call the script with its OnClick function."
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: form-maker.php:617
|
1575 |
msgid ""
|
1576 |
"You can write the custom Javascript code using the editor on Form Options > "
|
1577 |
"Javascript page."
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: form-maker.php:618
|
1581 |
msgid ""
|
1582 |
"Password input can be used to allow users provide secret text, such as "
|
1583 |
"passwords. All symbols written in this field are replaced with dots."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: form-maker.php:618
|
1587 |
msgid ""
|
1588 |
"You can activate Password Confirmation option to ask users to repeat the "
|
1589 |
"password."
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: form-maker.php:619
|
1593 |
msgid ""
|
1594 |
"Phone-Area Code is a Phone type field, which allows users to write Area Code "
|
1595 |
"and Phone Number into separate inputs."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: form-maker.php:620
|
1599 |
msgid ""
|
1600 |
"Arithmetic Captcha is quite similar to Simple Captcha. However, instead of "
|
1601 |
"showing random symbols, it displays arithmetic operations."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: form-maker.php:620
|
1605 |
msgid ""
|
1606 |
"You can set the operations using Operations option. The field can use "
|
1607 |
"addition (+), subtraction (-), multiplication (*) and division (/)."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: form-maker.php:620
|
1611 |
msgid "Make sure to separate the operations with commas."
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: form-maker.php:621
|
1615 |
msgid ""
|
1616 |
"Users can set a payment amount of their choice with Price field. Assigns "
|
1617 |
"minimum and maximum limits on its value using Range option."
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: form-maker.php:621
|
1621 |
msgid ""
|
1622 |
"Additionally, you can activate Readonly attribute. This way, users will not "
|
1623 |
"be able to edit the value of Price."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: form-maker.php:621 form-maker.php:622 form-maker.php:623 form-maker.php:624
|
1627 |
msgid ""
|
1628 |
"Note: Make sure to configure Form Options > Payment Options of your form."
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: form-maker.php:622
|
1632 |
msgid ""
|
1633 |
"Payment Select field lets you create lists of products, one of which the "
|
1634 |
"submitter can choose to buy through your form. Add or edit list items using "
|
1635 |
"Options setting of the fields."
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: form-maker.php:622 form-maker.php:623 form-maker.php:624
|
1639 |
msgid ""
|
1640 |
"Enable Quantity property from Advanced Options, in case you would like the "
|
1641 |
"users to mention the quantity of items they purchase."
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: form-maker.php:622 form-maker.php:623 form-maker.php:624
|
1645 |
msgid ""
|
1646 |
"Also, you can configure custom or built-in Product Properties for your "
|
1647 |
"products, such as Color, T-Shirt Size or Print Size."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: form-maker.php:623
|
1651 |
msgid ""
|
1652 |
"Payment Single Choice field lets you create lists of products, one of which "
|
1653 |
"the submitter can choose to buy through your form. Add or edit list items "
|
1654 |
"using Options setting of the fields."
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: form-maker.php:624
|
1658 |
msgid ""
|
1659 |
"Payment Multiple Choice field lets you create lists of products, which the "
|
1660 |
"submitter can choose to buy through your form. Add or edit list items using "
|
1661 |
"Options setting of the fields."
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: form-maker.php:625
|
1665 |
msgid ""
|
1666 |
"Shipping allows you to configure shipping types, set price for each of them "
|
1667 |
"and display them on your form as radio buttons."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: form-maker.php:626
|
1671 |
msgid ""
|
1672 |
"Please Total field to your payment form to sum up the values of Payment "
|
1673 |
"fields. "
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: form-maker.php:627
|
1677 |
msgid ""
|
1678 |
"This field adds the credit card details inputs (card number, expiration "
|
1679 |
"date, etc.) and allows you to accept direct payments made by credit cards."
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: form-maker.php:648
|
1683 |
msgid "Do you want to delete selected items?"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: form-maker.php:649
|
1687 |
msgid "You must select at least one item."
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: form-maker.php:650
|
1691 |
msgid "Add placeholder"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: form-maker.php:686
|
1695 |
msgid "You must select a form"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: form-maker.php:815
|
1699 |
msgid "Sorry, you are not allowed to access this page."
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: form-maker.php:1005
|
1703 |
msgid "Can not upload this type of file"
|
1704 |
msgstr "Impossible de télécharger ce type de fichier"
|
1705 |
|
1706 |
+
#: form-maker.php:1006
|
1707 |
msgid "Field is required"
|
1708 |
msgstr "Champ requis"
|
1709 |
|
1710 |
+
#: form-maker.php:1007
|
1711 |
msgid "The "
|
1712 |
msgstr "le"
|
1713 |
|
1714 |
+
#: form-maker.php:1008
|
1715 |
msgid " value must be between "
|
1716 |
msgstr "La valeur doit être comprise entre"
|
1717 |
|
1718 |
+
#: form-maker.php:1009
|
1719 |
msgid "Value must be between "
|
1720 |
msgstr "La valeur doit être comprise entre"
|
1721 |
|
1722 |
+
#: form-maker.php:1010
|
1723 |
msgid "Are you sure you want to clear saved data?"
|
1724 |
msgstr "Voulez-vous vraiment effacer les données enregistrées?"
|
1725 |
|
1726 |
+
#: form-maker.php:1011 framework/WDW_FM_Library.php:3887
|
1727 |
msgid "Your score should be less than"
|
1728 |
msgstr "Votre note doit être inférieure à "
|
1729 |
|
1730 |
+
#: form-maker.php:1012
|
1731 |
#, fuzzy
|
1732 |
msgid "This is not a valid time value."
|
1733 |
msgstr "Ce n'est pas un format de date valide."
|
1734 |
|
1735 |
+
#: form-maker.php:1013
|
1736 |
#, fuzzy
|
1737 |
msgid "This is not a valid number value."
|
1738 |
msgstr "Ceci n'est pas une adresse e-mail valide"
|
1739 |
|
1740 |
+
#: form-maker.php:1014
|
1741 |
#, fuzzy
|
1742 |
msgid "This is not a valid date value."
|
1743 |
msgstr "Ce n'est pas un format de date valide."
|
1744 |
|
1745 |
+
#: form-maker.php:1015
|
1746 |
#, fuzzy, php-format
|
1747 |
msgid "The year must be between %s and %s"
|
1748 |
msgstr "La valeur doit être comprise entre"
|
1749 |
|
1750 |
+
#: form-maker.php:1093
|
1751 |
msgid ""
|
1752 |
"Oops! Seems like you installed the update over a quite old version of Form "
|
1753 |
"Maker. Unfortunately, this version is deprecated.<br />Please contact 10Web "
|
1754 |
+
"support team at support@10web.io. We will take care of this issue as soon as "
|
1755 |
+
"possible."
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: form-maker.php:1170
|
1759 |
+
msgid ""
|
1760 |
+
"WordPress Contact Form Maker is a simple contact form builder, which allows "
|
1761 |
+
"the user with almost no knowledge of programming to create and edit "
|
1762 |
+
"different type of contact forms."
|
1763 |
+
msgstr ""
|
1764 |
+
|
1765 |
+
#: form-maker.php:1170
|
1766 |
msgid ""
|
1767 |
"Form Maker plugin is a modern and advanced tool for easy and fast creating "
|
1768 |
"of a WordPress Form. The backend interface is intuitive and user friendly "
|
1770 |
"Forms."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: form-maker.php:1173
|
1774 |
msgid "Easy to Use"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: form-maker.php:1174
|
1778 |
msgid ""
|
1779 |
"This responsive form maker plugin is one of the most easy-to-use form "
|
1780 |
"builder solutions available on the market. Simple, yet powerful plugin "
|
1781 |
"allows you to quickly and easily build any complex forms."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: form-maker.php:1177
|
1785 |
msgid "Customizable Fields"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: form-maker.php:1178
|
1789 |
msgid ""
|
1790 |
"All the fields of Form Maker plugin are highly customizable, which allows "
|
1791 |
"you to change almost every detail in the form and make it look exactly like "
|
1792 |
"you want it to be."
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: form-maker.php:1182
|
1796 |
msgid ""
|
1797 |
"You can view the submissions for each form you have. The plugin allows to "
|
1798 |
"view submissions statistics, filter submission data and export in csv or xml "
|
1799 |
"formats."
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: form-maker.php:1185
|
1803 |
msgid "Multi-Page Forms"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: form-maker.php:1186
|
1807 |
msgid ""
|
1808 |
"With the form builder plugin you can create muilti-page forms. Simply use "
|
1809 |
"the page break field to separate the pages in your forms."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: form-maker.php:1190
|
1813 |
msgid ""
|
1814 |
"The WordPress Form Maker plugin comes with a wide range of customizable "
|
1815 |
"themes. You can choose from a list of existing themes or simply create the "
|
1816 |
"one that better fits your brand and website."
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: form-maker.php:1195
|
1820 |
msgid "Installing"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: form-maker.php:1200
|
1824 |
msgid "Creating a new Form"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: form-maker.php:1205
|
1828 |
msgid "Configuring Form Options"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: form-maker.php:1210
|
1832 |
msgid "Description of The Form Fields"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: form-maker.php:1214
|
1836 |
msgid "Selecting Options from Database"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: form-maker.php:1220
|
1840 |
msgid "Publishing the Created Form"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: form-maker.php:1225
|
1844 |
msgid "Blocking IPs"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: form-maker.php:1230
|
1848 |
msgid "Managing Submissions"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: form-maker.php:1235
|
1852 |
msgid "Publishing Submissions"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: form-maker.php:1337
|
1856 |
#, php-format
|
1857 |
+
msgid ""
|
1858 |
+
"The current version of %s extension is not compatible with Form Maker. Some "
|
1859 |
+
"functions may not work correctly. Please update the extension to fully use "
|
1860 |
+
"its features."
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: form-maker.php:1338
|
1864 |
#, php-format
|
1865 |
+
msgid ""
|
1866 |
+
"The current version of %s extensions are not compatible with Form Maker. "
|
1867 |
+
"Some functions may not work correctly. Please update the extensions to fully "
|
1868 |
+
"use its features."
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: form-maker.php:1424
|
1872 |
#, php-format
|
1873 |
msgid ""
|
1874 |
"%s advises: Install brand new FREE %s plugin to keep your forms and website "
|
1875 |
"safe."
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: form-maker.php:1424
|
1879 |
msgid "More details"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: form-maker.php:1424
|
1883 |
msgid "Backup WD"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: form-maker.php:1489
|
1887 |
msgid "Support Forum"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: form-maker.php:1490
|
1891 |
msgid "Rate"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: framework/WDW_FM_Library.php:2632
|
1895 |
msgid ""
|
1896 |
"You cannot select former dates. Choose a date starting from the current one."
|
1897 |
msgstr ""
|
1898 |
"Vous ne pouvez pas sélectionner anciens dates. Choisissez une date à partir "
|
1899 |
"de l'actuel."
|
1900 |
|
1901 |
+
#: framework/WDW_FM_Library.php:3210
|
1902 |
msgid "field is required."
|
1903 |
msgstr "Champ est obligatoire"
|
1904 |
|
1905 |
+
#: framework/WDW_FM_Library.php:3240
|
1906 |
msgid "The"
|
1907 |
msgstr "la "
|
1908 |
|
1909 |
+
#: framework/WDW_FM_Library.php:3240
|
1910 |
msgid "value must be between"
|
1911 |
msgstr "valeur doit être comprise entre "
|
1912 |
|
1913 |
+
#: framework/WDW_FM_Library.php:3377 framework/WDW_FM_Library.php:3457
|
1914 |
+
#: framework/WDW_FM_Library.php:3536 frontend/views/form_maker.php:2300
|
1915 |
+
#: frontend/views/form_maker.php:2495 frontend/views/form_maker.php:2698
|
1916 |
msgid "Quantity"
|
1917 |
msgstr "Quantité "
|
1918 |
|
1919 |
+
#: framework/WDW_FM_Library.php:4398
|
1920 |
#, php-format
|
1921 |
msgid "No %s found."
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: framework/WDW_FM_Library.php:4463
|
1925 |
msgid "Afghanistan"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: framework/WDW_FM_Library.php:4464
|
1929 |
msgid "Albania"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: framework/WDW_FM_Library.php:4465
|
1933 |
msgid "Algeria"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: framework/WDW_FM_Library.php:4466
|
1937 |
msgid "Andorra"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: framework/WDW_FM_Library.php:4467
|
1941 |
msgid "Angola"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: framework/WDW_FM_Library.php:4468
|
1945 |
msgid "Antigua and Barbuda"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: framework/WDW_FM_Library.php:4469
|
1949 |
msgid "Argentina"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: framework/WDW_FM_Library.php:4470
|
1953 |
msgid "Armenia"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: framework/WDW_FM_Library.php:4471
|
1957 |
msgid "Australia"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: framework/WDW_FM_Library.php:4472
|
1961 |
msgid "Austria"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: framework/WDW_FM_Library.php:4473
|
1965 |
msgid "Azerbaijan"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: framework/WDW_FM_Library.php:4474
|
1969 |
msgid "Bahamas"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: framework/WDW_FM_Library.php:4475
|
1973 |
msgid "Bahrain"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: framework/WDW_FM_Library.php:4476
|
1977 |
msgid "Bangladesh"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: framework/WDW_FM_Library.php:4477
|
1981 |
msgid "Barbados"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: framework/WDW_FM_Library.php:4478
|
1985 |
msgid "Belarus"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: framework/WDW_FM_Library.php:4479
|
1989 |
msgid "Belgium"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: framework/WDW_FM_Library.php:4480
|
1993 |
msgid "Belize"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: framework/WDW_FM_Library.php:4481
|
1997 |
msgid "Benin"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: framework/WDW_FM_Library.php:4482
|
2001 |
msgid "Bhutan"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: framework/WDW_FM_Library.php:4483
|
2005 |
msgid "Bolivia"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: framework/WDW_FM_Library.php:4484
|
2009 |
msgid "Bosnia and Herzegovina"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: framework/WDW_FM_Library.php:4485
|
2013 |
msgid "Botswana"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: framework/WDW_FM_Library.php:4486
|
2017 |
msgid "Brazil"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: framework/WDW_FM_Library.php:4487
|
2021 |
msgid "Brunei"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: framework/WDW_FM_Library.php:4488
|
2025 |
msgid "Bulgaria"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: framework/WDW_FM_Library.php:4489
|
2029 |
msgid "Burkina Faso"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: framework/WDW_FM_Library.php:4490
|
2033 |
msgid "Burundi"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: framework/WDW_FM_Library.php:4491
|
2037 |
msgid "Cambodia"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: framework/WDW_FM_Library.php:4492
|
2041 |
msgid "Cameroon"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: framework/WDW_FM_Library.php:4493
|
2045 |
msgid "Canada"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: framework/WDW_FM_Library.php:4494
|
2049 |
msgid "Cape Verde"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: framework/WDW_FM_Library.php:4495
|
2053 |
msgid "Central African Republic"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: framework/WDW_FM_Library.php:4496
|
2057 |
msgid "Chad"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: framework/WDW_FM_Library.php:4497
|
2061 |
msgid "Chile"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: framework/WDW_FM_Library.php:4498
|
2065 |
msgid "China"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: framework/WDW_FM_Library.php:4499
|
2069 |
msgid "Colombia"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: framework/WDW_FM_Library.php:4500
|
2073 |
msgid "Comoros"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: framework/WDW_FM_Library.php:4501
|
2077 |
msgid "Congo (Brazzaville)"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: framework/WDW_FM_Library.php:4502
|
2081 |
msgid "Congo"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: framework/WDW_FM_Library.php:4503
|
2085 |
msgid "Costa Rica"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: framework/WDW_FM_Library.php:4504
|
2089 |
msgid "Cote d'Ivoire"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: framework/WDW_FM_Library.php:4505
|
2093 |
msgid "Croatia"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: framework/WDW_FM_Library.php:4506
|
2097 |
msgid "Cuba"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: framework/WDW_FM_Library.php:4507
|
2101 |
msgid "Curacao"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: framework/WDW_FM_Library.php:4508
|
2105 |
msgid "Cyprus"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: framework/WDW_FM_Library.php:4509
|
2109 |
msgid "Czech Republic"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: framework/WDW_FM_Library.php:4510
|
2113 |
msgid "Denmark"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: framework/WDW_FM_Library.php:4511
|
2117 |
msgid "Djibouti"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: framework/WDW_FM_Library.php:4512
|
2121 |
msgid "Dominica"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: framework/WDW_FM_Library.php:4513
|
2125 |
msgid "Dominican Republic"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: framework/WDW_FM_Library.php:4514
|
2129 |
msgid "East Timor (Timor Timur)"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: framework/WDW_FM_Library.php:4515
|
2133 |
msgid "Ecuador"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: framework/WDW_FM_Library.php:4516
|
2137 |
msgid "Egypt"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: framework/WDW_FM_Library.php:4517
|
2141 |
msgid "El Salvador"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: framework/WDW_FM_Library.php:4518
|
2145 |
msgid "Equatorial Guinea"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: framework/WDW_FM_Library.php:4519
|
2149 |
msgid "Eritrea"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: framework/WDW_FM_Library.php:4520
|
2153 |
msgid "Estonia"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: framework/WDW_FM_Library.php:4521
|
2157 |
msgid "Ethiopia"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: framework/WDW_FM_Library.php:4522
|
2161 |
msgid "Fiji"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: framework/WDW_FM_Library.php:4523
|
2165 |
msgid "Finland"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: framework/WDW_FM_Library.php:4524
|
2169 |
msgid "France"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: framework/WDW_FM_Library.php:4525
|
2173 |
msgid "Gabon"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: framework/WDW_FM_Library.php:4526
|
2177 |
msgid "Gambia, The"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: framework/WDW_FM_Library.php:4527 framework/WDW_FM_Library.php:4684
|
2181 |
msgid "Georgia"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: framework/WDW_FM_Library.php:4528
|
2185 |
msgid "Germany"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: framework/WDW_FM_Library.php:4529
|
2189 |
msgid "Ghana"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: framework/WDW_FM_Library.php:4530
|
2193 |
msgid "Greece"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: framework/WDW_FM_Library.php:4531
|
2197 |
msgid "Grenada"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: framework/WDW_FM_Library.php:4532
|
2201 |
msgid "Guatemala"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: framework/WDW_FM_Library.php:4533
|
2205 |
msgid "Guinea"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: framework/WDW_FM_Library.php:4534
|
2209 |
msgid "Guinea-Bissau"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: framework/WDW_FM_Library.php:4535
|
2213 |
msgid "Guyana"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: framework/WDW_FM_Library.php:4536
|
2217 |
msgid "Haiti"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: framework/WDW_FM_Library.php:4537
|
2221 |
msgid "Honduras"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: framework/WDW_FM_Library.php:4538
|
2225 |
msgid "Hong Kong"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: framework/WDW_FM_Library.php:4539
|
2229 |
msgid "Hungary"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: framework/WDW_FM_Library.php:4540
|
2233 |
msgid "Iceland"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: framework/WDW_FM_Library.php:4541
|
2237 |
msgid "India"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: framework/WDW_FM_Library.php:4542
|
2241 |
msgid "Indonesia"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: framework/WDW_FM_Library.php:4543
|
2245 |
msgid "Iran"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: framework/WDW_FM_Library.php:4544
|
2249 |
msgid "Iraq"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: framework/WDW_FM_Library.php:4545
|
2253 |
msgid "Ireland"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: framework/WDW_FM_Library.php:4546
|
2257 |
msgid "Israel"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: framework/WDW_FM_Library.php:4547
|
2261 |
msgid "Italy"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: framework/WDW_FM_Library.php:4548
|
2265 |
msgid "Jamaica"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: framework/WDW_FM_Library.php:4549
|
2269 |
msgid "Japan"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: framework/WDW_FM_Library.php:4550
|
2273 |
msgid "Jordan"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: framework/WDW_FM_Library.php:4551
|
2277 |
msgid "Kazakhstan"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: framework/WDW_FM_Library.php:4552
|
2281 |
msgid "Kenya"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: framework/WDW_FM_Library.php:4553
|
2285 |
msgid "Kiribati"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: framework/WDW_FM_Library.php:4554
|
2289 |
msgid "Korea, North"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: framework/WDW_FM_Library.php:4555
|
2293 |
msgid "Korea, South"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: framework/WDW_FM_Library.php:4556
|
2297 |
msgid "Kuwait"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: framework/WDW_FM_Library.php:4557
|
2301 |
msgid "Kyrgyzstan"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: framework/WDW_FM_Library.php:4558
|
2305 |
msgid "Laos"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: framework/WDW_FM_Library.php:4559
|
2309 |
msgid "Latvia"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: framework/WDW_FM_Library.php:4560
|
2313 |
msgid "Lebanon"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: framework/WDW_FM_Library.php:4561
|
2317 |
msgid "Lesotho"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: framework/WDW_FM_Library.php:4562
|
2321 |
msgid "Liberia"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: framework/WDW_FM_Library.php:4563
|
2325 |
msgid "Libya"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: framework/WDW_FM_Library.php:4564
|
2329 |
msgid "Liechtenstein"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: framework/WDW_FM_Library.php:4565
|
2333 |
msgid "Lithuania"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: framework/WDW_FM_Library.php:4566
|
2337 |
msgid "Luxembourg"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: framework/WDW_FM_Library.php:4567
|
2341 |
msgid "Macedonia"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: framework/WDW_FM_Library.php:4568
|
2345 |
msgid "Madagascar"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: framework/WDW_FM_Library.php:4569
|
2349 |
msgid "Malawi"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: framework/WDW_FM_Library.php:4570
|
2353 |
msgid "Malaysia"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: framework/WDW_FM_Library.php:4571
|
2357 |
msgid "Maldives"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: framework/WDW_FM_Library.php:4572
|
2361 |
msgid "Mali"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: framework/WDW_FM_Library.php:4573
|
2365 |
msgid "Malta"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: framework/WDW_FM_Library.php:4574
|
2369 |
msgid "Marshall Islands"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: framework/WDW_FM_Library.php:4575
|
2373 |
msgid "Mauritania"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: framework/WDW_FM_Library.php:4576
|
2377 |
msgid "Mauritius"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: framework/WDW_FM_Library.php:4577
|
2381 |
msgid "Mexico"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: framework/WDW_FM_Library.php:4578
|
2385 |
msgid "Micronesia"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: framework/WDW_FM_Library.php:4579
|
2389 |
msgid "Moldova"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: framework/WDW_FM_Library.php:4580
|
2393 |
msgid "Monaco"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: framework/WDW_FM_Library.php:4581
|
2397 |
msgid "Mongolia"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
+
#: framework/WDW_FM_Library.php:4582
|
2401 |
msgid "Morocco"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: framework/WDW_FM_Library.php:4583
|
2405 |
msgid "Mozambique"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: framework/WDW_FM_Library.php:4584
|
2409 |
msgid "Myanmar"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: framework/WDW_FM_Library.php:4585
|
2413 |
msgid "Namibia"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: framework/WDW_FM_Library.php:4586
|
2417 |
msgid "Nauru"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: framework/WDW_FM_Library.php:4587
|
2421 |
msgid "Nepal"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: framework/WDW_FM_Library.php:4588
|
2425 |
msgid "Netherlands"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: framework/WDW_FM_Library.php:4589
|
2429 |
msgid "New Zealand"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: framework/WDW_FM_Library.php:4590
|
2433 |
msgid "Nicaragua"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: framework/WDW_FM_Library.php:4591
|
2437 |
msgid "Niger"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: framework/WDW_FM_Library.php:4592
|
2441 |
msgid "Nigeria"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: framework/WDW_FM_Library.php:4593
|
2445 |
msgid "Norway"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: framework/WDW_FM_Library.php:4594
|
2449 |
msgid "Oman"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: framework/WDW_FM_Library.php:4595
|
2453 |
msgid "Pakistan"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: framework/WDW_FM_Library.php:4596
|
2457 |
msgid "Palau"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: framework/WDW_FM_Library.php:4597
|
2461 |
+
msgid "Palestine"
|
2462 |
+
msgstr ""
|
2463 |
+
|
2464 |
+
#: framework/WDW_FM_Library.php:4598
|
2465 |
msgid "Panama"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: framework/WDW_FM_Library.php:4599
|
2469 |
msgid "Papua New Guinea"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: framework/WDW_FM_Library.php:4600
|
2473 |
msgid "Paraguay"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: framework/WDW_FM_Library.php:4601
|
2477 |
msgid "Peru"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: framework/WDW_FM_Library.php:4602
|
2481 |
msgid "Philippines"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: framework/WDW_FM_Library.php:4603
|
2485 |
msgid "Poland"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: framework/WDW_FM_Library.php:4604
|
2489 |
msgid "Portugal"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: framework/WDW_FM_Library.php:4605
|
2493 |
msgid "Puerto Rico"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: framework/WDW_FM_Library.php:4606
|
2497 |
msgid "Qatar"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
+
#: framework/WDW_FM_Library.php:4607
|
2501 |
msgid "Romania"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
+
#: framework/WDW_FM_Library.php:4608
|
2505 |
msgid "Russia"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: framework/WDW_FM_Library.php:4609
|
2509 |
msgid "Rwanda"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: framework/WDW_FM_Library.php:4610
|
2513 |
msgid "Saint Kitts and Nevis"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: framework/WDW_FM_Library.php:4611
|
2517 |
msgid "Saint Lucia"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
+
#: framework/WDW_FM_Library.php:4612
|
2521 |
msgid "Saint Vincent"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: framework/WDW_FM_Library.php:4613
|
2525 |
msgid "Samoa"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: framework/WDW_FM_Library.php:4614
|
2529 |
msgid "San Marino"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: framework/WDW_FM_Library.php:4615
|
2533 |
msgid "Sao Tome and Principe"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: framework/WDW_FM_Library.php:4616
|
2537 |
msgid "Saudi Arabia"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: framework/WDW_FM_Library.php:4617
|
2541 |
msgid "Senegal"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: framework/WDW_FM_Library.php:4618
|
2545 |
msgid "Serbia and Montenegro"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
+
#: framework/WDW_FM_Library.php:4619
|
2549 |
msgid "Seychelles"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: framework/WDW_FM_Library.php:4620
|
2553 |
msgid "Sierra Leone"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: framework/WDW_FM_Library.php:4621
|
2557 |
msgid "Singapore"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: framework/WDW_FM_Library.php:4622
|
2561 |
msgid "Slovakia"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: framework/WDW_FM_Library.php:4623
|
2565 |
msgid "Slovenia"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: framework/WDW_FM_Library.php:4624
|
2569 |
msgid "Solomon Islands"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: framework/WDW_FM_Library.php:4625
|
2573 |
msgid "Somalia"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: framework/WDW_FM_Library.php:4626
|
2577 |
msgid "South Africa"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: framework/WDW_FM_Library.php:4627
|
2581 |
msgid "Spain"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: framework/WDW_FM_Library.php:4628
|
2585 |
msgid "Sri Lanka"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: framework/WDW_FM_Library.php:4629
|
2589 |
msgid "Sudan"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: framework/WDW_FM_Library.php:4630
|
2593 |
msgid "Suriname"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: framework/WDW_FM_Library.php:4631
|
2597 |
msgid "Swaziland"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: framework/WDW_FM_Library.php:4632
|
2601 |
msgid "Sweden"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: framework/WDW_FM_Library.php:4633
|
2605 |
msgid "Switzerland"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: framework/WDW_FM_Library.php:4634
|
2609 |
msgid "Syria"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: framework/WDW_FM_Library.php:4635
|
2613 |
msgid "Taiwan"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: framework/WDW_FM_Library.php:4636
|
2617 |
msgid "Tajikistan"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: framework/WDW_FM_Library.php:4637
|
2621 |
msgid "Tanzania"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: framework/WDW_FM_Library.php:4638
|
2625 |
msgid "Thailand"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: framework/WDW_FM_Library.php:4639
|
2629 |
msgid "Togo"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: framework/WDW_FM_Library.php:4640
|
2633 |
msgid "Tonga"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: framework/WDW_FM_Library.php:4641
|
2637 |
msgid "Trinidad and Tobago"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: framework/WDW_FM_Library.php:4642
|
2641 |
msgid "Tunisia"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: framework/WDW_FM_Library.php:4643
|
2645 |
msgid "Turkey"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: framework/WDW_FM_Library.php:4644
|
2649 |
msgid "Turkmenistan"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: framework/WDW_FM_Library.php:4645
|
2653 |
msgid "Tuvalu"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: framework/WDW_FM_Library.php:4646
|
2657 |
msgid "Uganda"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: framework/WDW_FM_Library.php:4647
|
2661 |
msgid "Ukraine"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: framework/WDW_FM_Library.php:4648
|
2665 |
msgid "United Arab Emirates"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: framework/WDW_FM_Library.php:4649
|
2669 |
msgid "United Kingdom"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: framework/WDW_FM_Library.php:4650
|
2673 |
msgid "United States"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: framework/WDW_FM_Library.php:4651
|
2677 |
msgid "Uruguay"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: framework/WDW_FM_Library.php:4652
|
2681 |
msgid "Uzbekistan"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: framework/WDW_FM_Library.php:4653
|
2685 |
msgid "Vanuatu"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: framework/WDW_FM_Library.php:4654
|
2689 |
msgid "Vatican City"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: framework/WDW_FM_Library.php:4655
|
2693 |
msgid "Venezuela"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: framework/WDW_FM_Library.php:4656
|
2697 |
msgid "Vietnam"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: framework/WDW_FM_Library.php:4657
|
2701 |
msgid "Wales"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: framework/WDW_FM_Library.php:4658
|
2705 |
msgid "Yemen"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: framework/WDW_FM_Library.php:4659
|
2709 |
msgid "Zambia"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: framework/WDW_FM_Library.php:4660
|
2713 |
msgid "Zimbabwe"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
+
#: framework/WDW_FM_Library.php:4674
|
2717 |
msgid "Alabama"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: framework/WDW_FM_Library.php:4675
|
2721 |
msgid "Alaska"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: framework/WDW_FM_Library.php:4676
|
2725 |
msgid "Arizona"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: framework/WDW_FM_Library.php:4677
|
2729 |
msgid "Arkansas"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: framework/WDW_FM_Library.php:4678
|
2733 |
msgid "California"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: framework/WDW_FM_Library.php:4679
|
2737 |
msgid "Colorado"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
#: framework/WDW_FM_Library.php:4680
|
2741 |
#, fuzzy
|
2742 |
msgid "Connecticut"
|
2743 |
msgstr "Type de connexion"
|
2744 |
|
2745 |
+
#: framework/WDW_FM_Library.php:4681
|
2746 |
msgid "Delaware"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
+
#: framework/WDW_FM_Library.php:4682
|
2750 |
msgid "District Of Columbia"
|
2751 |
msgstr ""
|
2752 |
|
2753 |
+
#: framework/WDW_FM_Library.php:4683
|
2754 |
msgid "Florida"
|
2755 |
msgstr ""
|
2756 |
|
2757 |
+
#: framework/WDW_FM_Library.php:4685
|
2758 |
msgid "Hawaii"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
#: framework/WDW_FM_Library.php:4686
|
2762 |
msgid "Idaho"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: framework/WDW_FM_Library.php:4687
|
2766 |
msgid "Illinois"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: framework/WDW_FM_Library.php:4688
|
2770 |
msgid "Indiana"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: framework/WDW_FM_Library.php:4689
|
2774 |
msgid "Iowa"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
+
#: framework/WDW_FM_Library.php:4690
|
2778 |
msgid "Kansas"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
+
#: framework/WDW_FM_Library.php:4691
|
2782 |
msgid "Kentucky"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
+
#: framework/WDW_FM_Library.php:4692
|
2786 |
msgid "Louisiana"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
+
#: framework/WDW_FM_Library.php:4693
|
2790 |
msgid "Maine"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
+
#: framework/WDW_FM_Library.php:4694
|
2794 |
msgid "Maryland"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
+
#: framework/WDW_FM_Library.php:4695
|
2798 |
msgid "Massachusetts"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
+
#: framework/WDW_FM_Library.php:4696
|
2802 |
msgid "Michigan"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
+
#: framework/WDW_FM_Library.php:4697
|
2806 |
msgid "Minnesota"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
+
#: framework/WDW_FM_Library.php:4698
|
2810 |
msgid "Mississippi"
|
2811 |
msgstr ""
|
2812 |
|
2813 |
+
#: framework/WDW_FM_Library.php:4699
|
2814 |
msgid "Missouri"
|
2815 |
msgstr ""
|
2816 |
|
2817 |
+
#: framework/WDW_FM_Library.php:4700
|
2818 |
msgid "Montana"
|
2819 |
msgstr ""
|
2820 |
|
2821 |
+
#: framework/WDW_FM_Library.php:4701
|
2822 |
msgid "Nebraska"
|
2823 |
msgstr ""
|
2824 |
|
2825 |
+
#: framework/WDW_FM_Library.php:4702
|
2826 |
msgid "Nevada"
|
2827 |
msgstr ""
|
2828 |
|
2829 |
+
#: framework/WDW_FM_Library.php:4703
|
2830 |
msgid "New Hampshire"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
+
#: framework/WDW_FM_Library.php:4704
|
2834 |
msgid "New Jersey"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
+
#: framework/WDW_FM_Library.php:4705
|
2838 |
msgid "New Mexico"
|
2839 |
msgstr ""
|
2840 |
|
2841 |
+
#: framework/WDW_FM_Library.php:4706
|
2842 |
msgid "New York"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
+
#: framework/WDW_FM_Library.php:4707
|
2846 |
msgid "North Carolina"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
+
#: framework/WDW_FM_Library.php:4708
|
2850 |
msgid "North Dakota"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
+
#: framework/WDW_FM_Library.php:4709
|
2854 |
msgid "Ohio"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
+
#: framework/WDW_FM_Library.php:4710
|
2858 |
msgid "Oklahoma"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
+
#: framework/WDW_FM_Library.php:4711
|
2862 |
msgid "Oregon"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
+
#: framework/WDW_FM_Library.php:4712
|
2866 |
msgid "Pennsylvania"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
+
#: framework/WDW_FM_Library.php:4713
|
2870 |
msgid "Rhode Island"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
+
#: framework/WDW_FM_Library.php:4714
|
2874 |
msgid "South Carolina"
|
2875 |
msgstr ""
|
2876 |
|
2877 |
+
#: framework/WDW_FM_Library.php:4715
|
2878 |
msgid "South Dakota"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
+
#: framework/WDW_FM_Library.php:4716
|
2882 |
msgid "Tennessee"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#: framework/WDW_FM_Library.php:4717
|
2886 |
msgid "Texas"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
+
#: framework/WDW_FM_Library.php:4718
|
2890 |
msgid "Utah"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
+
#: framework/WDW_FM_Library.php:4719
|
2894 |
msgid "Vermont"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: framework/WDW_FM_Library.php:4720
|
2898 |
msgid "Virginia"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
+
#: framework/WDW_FM_Library.php:4721
|
2902 |
msgid "Washington"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
+
#: framework/WDW_FM_Library.php:4722
|
2906 |
msgid "West Virginia"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
+
#: framework/WDW_FM_Library.php:4723
|
2910 |
msgid "Wisconsin"
|
2911 |
msgstr ""
|
2912 |
|
2913 |
+
#: framework/WDW_FM_Library.php:4724
|
2914 |
msgid "Wyoming"
|
2915 |
msgstr ""
|
2916 |
|
2917 |
+
#: framework/WDW_FM_Library.php:4738
|
2918 |
msgid "Done"
|
2919 |
msgstr ""
|
2920 |
|
2921 |
+
#: framework/WDW_FM_Library.php:4739
|
2922 |
msgid "Prev"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
+
#: framework/WDW_FM_Library.php:4740
|
2926 |
msgid "Next"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
+
#: framework/WDW_FM_Library.php:4741
|
2930 |
msgid "Today"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
+
#: framework/WDW_FM_Library.php:4742 frontend/views/form_maker.php:3680
|
2934 |
msgid "January"
|
2935 |
msgstr "Janvier"
|
2936 |
|
2937 |
+
#: framework/WDW_FM_Library.php:4742 frontend/views/form_maker.php:3680
|
2938 |
msgid "February"
|
2939 |
msgstr "février"
|
2940 |
|
2941 |
+
#: framework/WDW_FM_Library.php:4742 frontend/views/form_maker.php:3680
|
2942 |
msgid "March"
|
2943 |
msgstr "mars"
|
2944 |
|
2945 |
+
#: framework/WDW_FM_Library.php:4742 frontend/views/form_maker.php:3680
|
2946 |
msgid "April"
|
2947 |
msgstr "Avril"
|
2948 |
|
2949 |
+
#: framework/WDW_FM_Library.php:4742 framework/WDW_FM_Library.php:4743
|
2950 |
+
#: frontend/views/form_maker.php:3680
|
2951 |
msgid "May"
|
2952 |
msgstr "Mai"
|
2953 |
|
2954 |
+
#: framework/WDW_FM_Library.php:4742 frontend/views/form_maker.php:3680
|
2955 |
msgid "June"
|
2956 |
msgstr "juin"
|
2957 |
|
2958 |
+
#: framework/WDW_FM_Library.php:4742 frontend/views/form_maker.php:3680
|
2959 |
msgid "July"
|
2960 |
msgstr "Juillet"
|
2961 |
|
2962 |
+
#: framework/WDW_FM_Library.php:4742 frontend/views/form_maker.php:3680
|
2963 |
msgid "August"
|
2964 |
msgstr "août"
|
2965 |
|
2966 |
+
#: framework/WDW_FM_Library.php:4742 frontend/views/form_maker.php:3680
|
2967 |
msgid "September"
|
2968 |
msgstr "Septembre"
|
2969 |
|
2970 |
+
#: framework/WDW_FM_Library.php:4742 frontend/views/form_maker.php:3680
|
2971 |
msgid "October"
|
2972 |
msgstr "octobre"
|
2973 |
|
2974 |
+
#: framework/WDW_FM_Library.php:4742 frontend/views/form_maker.php:3680
|
2975 |
msgid "November"
|
2976 |
msgstr "novembre"
|
2977 |
|
2978 |
+
#: framework/WDW_FM_Library.php:4742 frontend/views/form_maker.php:3680
|
2979 |
msgid "December"
|
2980 |
msgstr "Décembre"
|
2981 |
|
2982 |
+
#: framework/WDW_FM_Library.php:4743
|
2983 |
#, fuzzy
|
2984 |
msgid "Jan"
|
2985 |
msgstr "Janvier"
|
2986 |
|
2987 |
+
#: framework/WDW_FM_Library.php:4743
|
2988 |
msgid "Feb"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
+
#: framework/WDW_FM_Library.php:4743
|
2992 |
#, fuzzy
|
2993 |
msgid "Mar"
|
2994 |
msgstr "mars"
|
2995 |
|
2996 |
+
#: framework/WDW_FM_Library.php:4743
|
2997 |
#, fuzzy
|
2998 |
msgid "Apr"
|
2999 |
msgstr "Avril"
|
3000 |
|
3001 |
+
#: framework/WDW_FM_Library.php:4743
|
3002 |
#, fuzzy
|
3003 |
msgid "Jun"
|
3004 |
msgstr "juin"
|
3005 |
|
3006 |
+
#: framework/WDW_FM_Library.php:4743
|
3007 |
#, fuzzy
|
3008 |
msgid "Jul"
|
3009 |
msgstr "Juillet"
|
3010 |
|
3011 |
+
#: framework/WDW_FM_Library.php:4743
|
3012 |
#, fuzzy
|
3013 |
msgid "Aug"
|
3014 |
msgstr "août"
|
3015 |
|
3016 |
+
#: framework/WDW_FM_Library.php:4743
|
3017 |
msgid "Sep"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: framework/WDW_FM_Library.php:4743
|
3021 |
#, fuzzy
|
3022 |
msgid "Oct"
|
3023 |
msgstr "octobre"
|
3024 |
|
3025 |
+
#: framework/WDW_FM_Library.php:4743
|
3026 |
msgid "Nov"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
+
#: framework/WDW_FM_Library.php:4743
|
3030 |
msgid "Dec"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
+
#: framework/WDW_FM_Library.php:4745
|
3034 |
msgid "Sun"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: framework/WDW_FM_Library.php:4745
|
3038 |
msgid "Mon"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: framework/WDW_FM_Library.php:4745
|
3042 |
#, fuzzy
|
3043 |
msgid "Tue"
|
3044 |
msgstr "la "
|
3045 |
|
3046 |
+
#: framework/WDW_FM_Library.php:4745
|
3047 |
msgid "Wed"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: framework/WDW_FM_Library.php:4745
|
3051 |
#, fuzzy
|
3052 |
msgid "Thu"
|
3053 |
msgstr "la "
|
3054 |
|
3055 |
+
#: framework/WDW_FM_Library.php:4745
|
3056 |
msgid "Fri"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
+
#: framework/WDW_FM_Library.php:4745
|
3060 |
msgid "Sat"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
+
#: framework/WDW_FM_Library.php:4746
|
3064 |
msgid "Su"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
+
#: framework/WDW_FM_Library.php:4746
|
3068 |
msgid "Mo"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
+
#: framework/WDW_FM_Library.php:4746
|
3072 |
msgid "Tu"
|
3073 |
msgstr ""
|
3074 |
|
3075 |
+
#: framework/WDW_FM_Library.php:4746
|
3076 |
msgid "We"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
+
#: framework/WDW_FM_Library.php:4746
|
3080 |
#, fuzzy
|
3081 |
msgid "Th"
|
3082 |
msgstr "la "
|
3083 |
|
3084 |
+
#: framework/WDW_FM_Library.php:4746
|
3085 |
#, fuzzy
|
3086 |
msgid "Fr"
|
3087 |
msgstr "à partir de "
|
3088 |
|
3089 |
+
#: framework/WDW_FM_Library.php:4746
|
3090 |
msgid "Sa"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: framework/WDW_FM_Library.php:5244
|
3094 |
msgid "All fields list"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: framework/WDW_FM_Library.php:5257
|
3098 |
msgid "Form fields"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: framework/WDW_FM_Library.php:5259 framework/WDW_FM_Library.php:5351
|
3102 |
#, fuzzy
|
3103 |
#| msgid "Title"
|
3104 |
msgid "Form Title"
|
3105 |
msgstr "Titre"
|
3106 |
|
3107 |
+
#: framework/WDW_FM_Library.php:5260
|
3108 |
#, fuzzy
|
3109 |
msgid "Submission ID"
|
3110 |
msgstr "Afficher la soumission"
|
3111 |
|
3112 |
+
#: framework/WDW_FM_Library.php:5262
|
3113 |
msgid "Admin Email"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
+
#: framework/WDW_FM_Library.php:5263
|
3117 |
#, fuzzy
|
3118 |
msgid "User Email"
|
3119 |
msgstr "Consultez le guide de l'utilisateur"
|
3120 |
|
3121 |
+
#: framework/WDW_FM_Library.php:5264
|
3122 |
#, fuzzy
|
3123 |
msgid "User Name"
|
3124 |
msgstr "Consultez le guide de l'utilisateur"
|
3125 |
|
3126 |
+
#: framework/WDW_FM_Library.php:5265
|
3127 |
msgid "Page Url"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: framework/WDW_FM_Library.php:5266
|
3131 |
#, fuzzy
|
3132 |
#| msgid "Verification link is invalid."
|
3133 |
msgid "Verification Link"
|
3134 |
msgstr "Lien de vérification est invalide."
|
3135 |
|
3136 |
+
#: framework/WDW_FM_Library.php:5358
|
3137 |
+
#, fuzzy
|
3138 |
+
msgid "Submitter Name"
|
3139 |
+
msgstr "Consultez le guide de l'utilisateur"
|
3140 |
+
|
3141 |
+
#: framework/WDW_FM_Library.php:5362
|
3142 |
+
#, fuzzy
|
3143 |
+
msgid "Submitter Email"
|
3144 |
+
msgstr "Consultez le guide de l'utilisateur"
|
3145 |
+
|
3146 |
+
#: framework/WDW_FM_Library.php:5367
|
3147 |
+
msgid "Submitter IP"
|
3148 |
+
msgstr ""
|
3149 |
+
|
3150 |
+
#: framework/WDW_FM_Library.php:5371
|
3151 |
+
#, fuzzy
|
3152 |
+
msgid "Submission Date"
|
3153 |
+
msgstr "Afficher la soumission"
|
3154 |
+
|
3155 |
+
#: framework/WDW_FM_Library.php:5386
|
3156 |
+
#, fuzzy
|
3157 |
+
msgid " Submissions"
|
3158 |
+
msgstr "Afficher la soumission"
|
3159 |
+
|
3160 |
+
#: framework/WDW_FM_Library.php:5408
|
3161 |
+
#, php-format
|
3162 |
+
msgid ""
|
3163 |
+
"All personal data and submissions of this user found in %s plugin were "
|
3164 |
+
"removed."
|
3165 |
+
msgstr ""
|
3166 |
+
|
3167 |
+
#: framework/WDW_FM_Library.php:5456
|
3168 |
+
msgid "Privacy Policy"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
+
#: framework/WDW_FM_Library.php:5493
|
3172 |
+
#, fuzzy
|
3173 |
+
msgid "Select a form"
|
3174 |
+
msgstr "Sélectionnez une date"
|
3175 |
+
|
3176 |
+
#: frontend/controllers/form_maker.php:224 frontend/models/form_maker.php:1185
|
3177 |
+
msgid "Error, something went wrong."
|
3178 |
+
msgstr ""
|
3179 |
+
|
3180 |
+
#: frontend/models/form_maker.php:27
|
3181 |
+
msgid "There is no form selected or the form was deleted."
|
3182 |
+
msgstr ""
|
3183 |
+
|
3184 |
+
#: frontend/models/form_maker.php:32
|
3185 |
msgid "The form you are trying to view does not have Embedded display type."
|
3186 |
msgstr ""
|
3187 |
|
3188 |
+
#: frontend/models/form_maker.php:39
|
3189 |
msgid "The form you are trying to view has been unpublished."
|
3190 |
msgstr ""
|
3191 |
|
3192 |
+
#: frontend/models/form_maker.php:1112 frontend/models/form_maker.php:1122
|
3193 |
+
#: frontend/models/form_maker.php:1173
|
3194 |
msgid "Error, incorrect Security code."
|
3195 |
msgstr "Erreur, le code de sécurité incorrect."
|
3196 |
|
3197 |
+
#: frontend/models/form_maker.php:1146
|
3198 |
#, fuzzy
|
3199 |
#| msgid "Error, incorrect Security code."
|
3200 |
msgid "Error, incorrect secret code."
|
3201 |
msgstr "Erreur, le code de sécurité incorrect."
|
3202 |
|
3203 |
+
#: frontend/models/form_maker.php:1153 frontend/models/form_maker.php:1159
|
3204 |
+
#: frontend/models/form_maker.php:1166
|
3205 |
#, fuzzy
|
3206 |
#| msgid "Verification link is invalid."
|
3207 |
msgid "Verification failed."
|
3208 |
msgstr "Lien de vérification est invalide."
|
3209 |
|
3210 |
+
#: frontend/models/form_maker.php:1194
|
3211 |
msgid "Your ip is blacklisted. Please contact the website administrator."
|
3212 |
msgstr ""
|
3213 |
"Votre ip est blacklisté. S'il vous plaît contactez l'administrateur du site. "
|
3214 |
|
3215 |
+
#: frontend/models/form_maker.php:1460
|
3216 |
msgid "This is not a valid date format."
|
3217 |
msgstr "Ce n'est pas un format de date valide."
|
3218 |
|
3219 |
+
#: frontend/models/form_maker.php:1576
|
3220 |
#, fuzzy, php-format
|
3221 |
#| msgid "The file exceeds the allowed size of"
|
3222 |
msgid "The file exceeds the allowed size of %s KB."
|
3223 |
msgstr "Le fichier dépasse la taille autorisée des"
|
3224 |
|
3225 |
+
#: frontend/models/form_maker.php:1590
|
3226 |
#, fuzzy
|
3227 |
#| msgid "Can not upload this type of file"
|
3228 |
msgid "Can not upload this type of file."
|
3229 |
msgstr "Impossible de télécharger ce type de fichier"
|
3230 |
|
3231 |
+
#: frontend/models/form_maker.php:1697 frontend/models/form_maker.php:2600
|
3232 |
msgid "Error, file cannot be moved."
|
3233 |
msgstr "Erreur, le fichier ne peut pas être déplacé."
|
3234 |
|
3235 |
+
#: frontend/models/form_maker.php:2104
|
3236 |
+
#, fuzzy, php-format
|
3237 |
+
#| msgid "field is required."
|
3238 |
+
msgid "%s field is required."
|
3239 |
+
msgstr "Champ est obligatoire"
|
3240 |
+
|
3241 |
+
#: frontend/models/form_maker.php:2136
|
3242 |
#, fuzzy, php-format
|
3243 |
msgid "This field %s requires a unique entry."
|
3244 |
msgstr ""
|
3245 |
"Ce champ %s nécessite une entrée unique et cette valeur a déjà été soumis."
|
3246 |
|
3247 |
+
#: frontend/models/form_maker.php:2177 frontend/models/form_maker.php:2279
|
3248 |
+
#: frontend/models/form_maker.php:2293 frontend/models/form_maker.php:2302
|
3249 |
+
#: frontend/models/form_maker.php:2372
|
3250 |
msgid "Database error occurred. Please try again."
|
3251 |
msgstr ""
|
3252 |
|
3253 |
+
#: frontend/models/form_maker.php:2380
|
3254 |
msgid "Nothing was submitted."
|
3255 |
msgstr "Rien n'a été soumis."
|
3256 |
|
3257 |
+
#: frontend/models/form_maker.php:3412 frontend/views/form_maker.php:93
|
|
|
3258 |
msgid "Your form was successfully submitted."
|
3259 |
msgstr "Votre formulaire a été soumis avec succès."
|
3260 |
|
3261 |
+
#: frontend/models/form_maker.php:3418 frontend/views/form_maker.php:90
|
3262 |
msgid "Error, email was not sent."
|
3263 |
msgstr "Erreur, e-mail n'a pas été envoyé."
|
3264 |
|
3265 |
+
#: frontend/models/form_submissions.php:371
|
3266 |
#, fuzzy
|
3267 |
msgid "You have no permissions to download"
|
3268 |
msgstr "Vous n'êtes pas autorisé à consulter les soumissions."
|
3269 |
|
3270 |
+
#: frontend/models/verify_email.php:32
|
3271 |
msgid "Your email address is already verified."
|
3272 |
msgstr "Votre adresse e-mail est déjà vérifiée."
|
3273 |
|
3274 |
+
#: frontend/models/verify_email.php:46
|
3275 |
msgid "Your email verification has timed out."
|
3276 |
msgstr "Votre courriel de vérification a expiré."
|
3277 |
|
3278 |
+
#: frontend/models/verify_email.php:61
|
3279 |
msgid "Your email has been successfully verified."
|
3280 |
msgstr "Votre email a été vérifiée avec succès."
|
3281 |
|
3282 |
+
#: frontend/models/verify_email.php:66
|
3283 |
msgid "Verification link is invalid."
|
3284 |
msgstr "Lien de vérification est invalide."
|
3285 |
|
3286 |
+
#: frontend/views/form_maker.php:530
|
3287 |
msgid "Password values don't match"
|
3288 |
msgstr "Les valeurs de mot de passe ne correspondent pas"
|
3289 |
|
3290 |
+
#: frontend/views/form_maker.php:1049
|
3291 |
msgid "The email addresses don't match"
|
3292 |
msgstr "Les adresses e-mail ne correspondent pas"
|
3293 |
|
3294 |
+
#: frontend/views/form_maker.php:1050
|
3295 |
msgid "This is not a valid email address."
|
3296 |
msgstr "Ceci n'est pas une adresse e-mail valide"
|
3297 |
|
3298 |
+
#: frontend/views/form_maker.php:3965
|
3299 |
msgid "AM"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
+
#: frontend/views/form_maker.php:3966
|
3303 |
msgid "PM"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: frontend/views/form_submissions.php:19
|
3307 |
msgid "You have no permission to view submissions."
|
3308 |
msgstr "Vous n'êtes pas autorisé à consulter les soumissions."
|
3309 |
|
3310 |
+
#: frontend/views/form_submissions.php:247
|
3311 |
#, fuzzy, php-format
|
3312 |
msgid ""
|
3313 |
"%s of %s submissions are not shown, as the field you sorted by is missing in "
|
3316 |
"Les soumissions ne sont pas affichées, car le champ que vous avez trié est "
|
3317 |
"manquant dans ces soumissions."
|
3318 |
|
3319 |
+
#: frontend/views/form_submissions.php:410
|
3320 |
msgid "From"
|
3321 |
msgstr "à partir de "
|
3322 |
|
3323 |
+
#: frontend/views/form_submissions.php:417
|
3324 |
msgid "To"
|
3325 |
msgstr "à"
|
3326 |
|
3327 |
+
#: frontend/views/form_submissions.php:473
|
3328 |
msgid "Canceled"
|
3329 |
msgstr "Annulé"
|
3330 |
|
3331 |
+
#: frontend/views/form_submissions.php:474
|
3332 |
msgid "Cleared"
|
3333 |
msgstr "Effacé"
|
3334 |
|
3335 |
+
#: frontend/views/form_submissions.php:475
|
3336 |
msgid "Cleared by payment review"
|
3337 |
msgstr "Effacé par l'examen de paiement"
|
3338 |
|
3339 |
+
#: frontend/views/form_submissions.php:476
|
3340 |
msgid "Completed"
|
3341 |
msgstr "Terminé"
|
3342 |
|
3343 |
+
#: frontend/views/form_submissions.php:477
|
3344 |
msgid "Denied"
|
3345 |
msgstr "Refusé"
|
3346 |
|
3347 |
+
#: frontend/views/form_submissions.php:478
|
3348 |
msgid "Failed"
|
3349 |
msgstr "Échoué"
|
3350 |
|
3351 |
+
#: frontend/views/form_submissions.php:479
|
3352 |
msgid "Held"
|
3353 |
msgstr "Tenu"
|
3354 |
|
3355 |
+
#: frontend/views/form_submissions.php:480
|
3356 |
msgid "In progress"
|
3357 |
msgstr "en cours"
|
3358 |
|
3359 |
+
#: frontend/views/form_submissions.php:481
|
3360 |
msgid "On hold"
|
3361 |
msgstr "En attente"
|
3362 |
|
3363 |
+
#: frontend/views/form_submissions.php:482
|
3364 |
msgid "Paid"
|
3365 |
msgstr "Payé"
|
3366 |
|
3367 |
+
#: frontend/views/form_submissions.php:483
|
3368 |
msgid "Partially refunded"
|
3369 |
msgstr "Partiellement remboursé"
|
3370 |
|
3371 |
+
#: frontend/views/form_submissions.php:484
|
3372 |
msgid "Pending verification"
|
3373 |
msgstr "En Attente de Vérification"
|
3374 |
|
3375 |
+
#: frontend/views/form_submissions.php:485
|
3376 |
msgid "Placed"
|
3377 |
msgstr "Mis"
|
3378 |
|
3379 |
+
#: frontend/views/form_submissions.php:486
|
3380 |
msgid "Processing"
|
3381 |
msgstr "En traitement"
|
3382 |
|
3383 |
+
#: frontend/views/form_submissions.php:487
|
3384 |
msgid "Refunded"
|
3385 |
msgstr "Remboursé"
|
3386 |
|
3387 |
+
#: frontend/views/form_submissions.php:488
|
3388 |
msgid "Refused"
|
3389 |
msgstr "Refusé"
|
3390 |
|
3391 |
+
#: frontend/views/form_submissions.php:489
|
3392 |
msgid "Removed"
|
3393 |
msgstr "Supprimé"
|
3394 |
|
3395 |
+
#: frontend/views/form_submissions.php:490
|
3396 |
msgid "Returned"
|
3397 |
msgstr "Revenu"
|
3398 |
|
3399 |
+
#: frontend/views/form_submissions.php:491
|
3400 |
msgid "Reversed"
|
3401 |
msgstr "Renversé"
|
3402 |
|
3403 |
+
#: frontend/views/form_submissions.php:492
|
3404 |
msgid "Temporary hold"
|
3405 |
msgstr "Retenue temporaire"
|
3406 |
|
3407 |
+
#: frontend/views/form_submissions.php:493
|
3408 |
msgid "Unclaimed"
|
3409 |
msgstr "Non réclamés"
|
3410 |
|
3411 |
+
#: frontend/views/form_submissions.php:603
|
3412 |
msgid "Show on Map"
|
3413 |
msgstr "Afficher sur la carte"
|
3414 |
|
3415 |
+
#: frontend/views/form_submissions.php:654
|
3416 |
msgid "Show Matrix"
|
3417 |
msgstr "Afficher la matrice"
|
3418 |
|
3419 |
+
#: frontend/views/form_submissions.php:784
|
3420 |
msgid "Please select the field!"
|
3421 |
msgstr "Veuillez sélectionner le champ!"
|
3422 |
|
3423 |
+
#: wd/includes/deactivate.php:37
|
3424 |
msgid "Technical problems / hard to use"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: wd/includes/deactivate.php:41
|
3428 |
msgid "Free version is limited"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: wd/includes/deactivate.php:45
|
|
|
|
|
|
|
|
|
3432 |
msgid "Upgrading to paid version"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
+
#: wd/includes/deactivate.php:49
|
3436 |
#, fuzzy
|
3437 |
msgid "Temporary deactivation"
|
3438 |
msgstr "Retenue temporaire"
|
3466 |
msgid "Never show again"
|
3467 |
msgstr "Ne plus afficher"
|
3468 |
|
3469 |
+
#: wd/templates/display_overview.php:10 wd/templates/display_overview.php:119
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3470 |
#, php-format
|
3471 |
+
msgid "Get Premium %s and Other Solutions Essential for Your WordPress Site."
|
3472 |
msgstr ""
|
3473 |
|
3474 |
+
#: wd/templates/display_subscribe.php:8
|
3475 |
#, php-format
|
3476 |
+
msgid ""
|
3477 |
+
"This will allow you to get more out of your plugin experience - get awesome "
|
3478 |
+
"customer support, receive exclusive deals and discounts on premium products "
|
3479 |
+
"and more. You can choose to skip this step, %s will still work just fine."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3480 |
msgstr ""
|
3481 |
|
3482 |
+
#: wd/wd.php:72 wd/wd.php:76
|
3483 |
+
msgid "Premium"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
+
#, fuzzy
|
3487 |
+
#~| msgid "In progress"
|
3488 |
+
#~ msgid "Save Progress"
|
3489 |
+
#~ msgstr "en cours"
|
|
|
|
|
|
|
3490 |
|
3491 |
+
#, fuzzy
|
3492 |
+
#~ msgid "User Guide"
|
3493 |
+
#~ msgstr "Consultez le guide de l'utilisateur"
|
|
|
|
|
|
|
|
|
|
|
3494 |
|
3495 |
+
#, fuzzy
|
3496 |
+
#~ msgid "Email address"
|
3497 |
+
#~ msgstr "Adresse"
|
3498 |
|
3499 |
#, fuzzy
|
3500 |
#~ msgid "Address line 1"
|
3504 |
#~ msgid "Address line 2"
|
3505 |
#~ msgstr "Adresse 2"
|
3506 |
|
|
|
|
|
|
|
|
|
3507 |
#~ msgid "Hey! How's It Going?"
|
3508 |
#~ msgstr "Hey! Comment ça va?"
|
3509 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: webdorado,10web,wdsupport,formmakersupport
|
|
3 |
Tags: form, forms, form builder, contact form, feedback, custom form, contact, web contact form, captcha, email, form manager, survey
|
4 |
Requires at least: 4.6
|
5 |
Tested up to: 5.1
|
6 |
-
Stable tag: 1.13.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -79,15 +79,18 @@ _\* Premium version only_
|
|
79 |
== Form Maker Extensions ==
|
80 |
_[Available in Plugins Bundle](https://10web.io/plugins/wordpress-form-maker/#product_pricing)_
|
81 |
|
|
|
|
|
|
|
82 |
**Save Form Progress**
|
83 |
Your users can save unfinished entries and continue anytime.
|
84 |
|
|
|
|
|
|
|
85 |
**Conditional Mailing**
|
86 |
Send out emails to user groups based on submitted forms.
|
87 |
|
88 |
-
**Export/Import**
|
89 |
-
Export form entries and forms in the XML format and import them into another site afterwards.
|
90 |
-
|
91 |
**Pushover**
|
92 |
Get a notification on your phone whenever there is an entry submission.
|
93 |
|
@@ -106,9 +109,6 @@ Store attachments received from form entries in your Dropbox.
|
|
106 |
**Google Drive Integration**
|
107 |
Upload received form attachments straight to your Google Drive.
|
108 |
|
109 |
-
**PDF Integration**
|
110 |
-
Use content from submitted entries to create PDFs.
|
111 |
-
|
112 |
**Stripe**
|
113 |
Your users can make credit card payments via Stripe, and we’ll transfer them to your bank account automatically.
|
114 |
|
@@ -522,6 +522,10 @@ Where **{{field_id}}** is the ID of the field you wish to prefill. Also, **{{par
|
|
522 |
|
523 |
== Changelog ==
|
524 |
|
|
|
|
|
|
|
|
|
525 |
= 1.13.4 =
|
526 |
* Fixed: Vulnerability on submissions page.
|
527 |
|
3 |
Tags: form, forms, form builder, contact form, feedback, custom form, contact, web contact form, captcha, email, form manager, survey
|
4 |
Requires at least: 4.6
|
5 |
Tested up to: 5.1
|
6 |
+
Stable tag: 1.13.5
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
79 |
== Form Maker Extensions ==
|
80 |
_[Available in Plugins Bundle](https://10web.io/plugins/wordpress-form-maker/#product_pricing)_
|
81 |
|
82 |
+
**Export/Import**
|
83 |
+
Export form entries and forms in the XML format and import them into another site afterwards.
|
84 |
+
|
85 |
**Save Form Progress**
|
86 |
Your users can save unfinished entries and continue anytime.
|
87 |
|
88 |
+
**PDF Integration**
|
89 |
+
Use content from submitted entries to create PDFs.
|
90 |
+
|
91 |
**Conditional Mailing**
|
92 |
Send out emails to user groups based on submitted forms.
|
93 |
|
|
|
|
|
|
|
94 |
**Pushover**
|
95 |
Get a notification on your phone whenever there is an entry submission.
|
96 |
|
109 |
**Google Drive Integration**
|
110 |
Upload received form attachments straight to your Google Drive.
|
111 |
|
|
|
|
|
|
|
112 |
**Stripe**
|
113 |
Your users can make credit card payments via Stripe, and we’ll transfer them to your bank account automatically.
|
114 |
|
522 |
|
523 |
== Changelog ==
|
524 |
|
525 |
+
= 1.13.5 =
|
526 |
+
* Fixed: CSRF issue.
|
527 |
+
* Added: Banner to install 10Web manager.
|
528 |
+
|
529 |
= 1.13.4 =
|
530 |
* Fixed: Vulnerability on submissions page.
|
531 |
|