Version Description
- Fixed: Bug on Google reCapthcha v3.
- Fixed: Upload file broken link in post content (Post Generation extension).
Download this release
Release Info
Developer | 10web |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.13.31 |
Comparing to | |
See all releases |
Code changes from version 1.13.30 to 1.13.31
- form-maker.php +3 -3
- frontend/models/form_maker.php +24 -22
- languages/form_maker-pl_PL.mo +0 -0
- languages/form_maker-pl_PL.po +20 -62
- readme.txt +6 -2
- wd/assets/img/spinner.gif +0 -0
form-maker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: https://10web.io/plugins/wordpress-form-maker/?utm_source=form_maker&utm_medium=free_plugin
|
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/?utm_source=form_maker&utm_medium=free_plugin
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -98,8 +98,8 @@ final class WDFM {
|
|
98 |
$this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
|
99 |
$this->front_urls = $this->get_front_urls();
|
100 |
$this->main_file = plugin_basename(__FILE__);
|
101 |
-
$this->plugin_version = '1.13.
|
102 |
-
$this->db_version = '2.13.
|
103 |
$this->menu_postfix = ($this->is_free == 2 ? '_fmc' : '_fm');
|
104 |
$this->plugin_postfix = ($this->is_free == 2 ? '_fmc' : '');
|
105 |
$this->menu_slug = 'manage' . $this->menu_postfix;
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: https://10web.io/plugins/wordpress-form-maker/?utm_source=form_maker&utm_medium=free_plugin
|
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.31
|
7 |
* Author: 10Web Form Builder Team
|
8 |
* Author URI: https://10web.io/plugins/?utm_source=form_maker&utm_medium=free_plugin
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
98 |
$this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
|
99 |
$this->front_urls = $this->get_front_urls();
|
100 |
$this->main_file = plugin_basename(__FILE__);
|
101 |
+
$this->plugin_version = '1.13.31';
|
102 |
+
$this->db_version = '2.13.31';
|
103 |
$this->menu_postfix = ($this->is_free == 2 ? '_fmc' : '_fm');
|
104 |
$this->plugin_postfix = ($this->is_free == 2 ? '_fmc' : '');
|
105 |
$this->menu_slug = 'manage' . $this->menu_postfix;
|
frontend/models/form_maker.php
CHANGED
@@ -1191,28 +1191,6 @@ class FMModelForm_maker {
|
|
1191 |
$_SESSION['error_or_no' . $id] = 1;
|
1192 |
}
|
1193 |
}
|
1194 |
-
elseif ( isset($_POST["g-recaptcha-response"]) ) {
|
1195 |
-
$privatekey = isset($fm_settings['private_key']) ? $fm_settings['private_key'] : '';
|
1196 |
-
$captcha = $_POST['g-recaptcha-response'];
|
1197 |
-
$url = 'https://www.google.com/recaptcha/api/siteverify';
|
1198 |
-
$data = array(
|
1199 |
-
'secret' => $privatekey,
|
1200 |
-
'response' => $captcha,
|
1201 |
-
'remoteip' => $_SERVER['REMOTE_ADDR'],
|
1202 |
-
);
|
1203 |
-
$response = wp_remote_post($url, array( 'body' => $data ));
|
1204 |
-
if ( !is_wp_error($response) ) {
|
1205 |
-
$jsonResponse = json_decode(wp_remote_retrieve_body($response), TRUE);
|
1206 |
-
if ( $jsonResponse['success'] == "true" ) {
|
1207 |
-
$success = TRUE;
|
1208 |
-
}
|
1209 |
-
else {
|
1210 |
-
$_SESSION['massage_after_submit' . $id] = addslashes(addslashes(__('Submission has failed due to the unsuccessful ReCaptcha verification. Please try to submit the form again.', WDFMInstance(self::PLUGIN)->prefix)));
|
1211 |
-
$_SESSION['message_captcha'] = $_SESSION['massage_after_submit' . $id];
|
1212 |
-
$_SESSION['error_or_no' . $id] = 1;
|
1213 |
-
}
|
1214 |
-
}
|
1215 |
-
}
|
1216 |
elseif ( isset($_POST["recaptcha_response" . $id]) ) {
|
1217 |
// Build POST request:
|
1218 |
$recaptcha_url = 'https://www.google.com/recaptcha/api/siteverify';
|
@@ -1243,6 +1221,28 @@ class FMModelForm_maker {
|
|
1243 |
$_SESSION['error_or_no' . $id] = 1;
|
1244 |
}
|
1245 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1246 |
elseif ( preg_match('(type_arithmetic_captcha|type_captcha|type_recaptcha)', $form->label_order_current) === 1 ) {
|
1247 |
$_SESSION['massage_after_submit' . $id] = addslashes(addslashes(__('Error, incorrect Security code.', WDFMInstance(self::PLUGIN)->prefix)));
|
1248 |
$_SESSION['message_captcha'] = $_SESSION['massage_after_submit' . $id];
|
@@ -3621,6 +3621,7 @@ class FMModelForm_maker {
|
|
3621 |
* @return null|string $new_value
|
3622 |
*/
|
3623 |
public static function custom_fields_mail( $type = '', $key = '', $id = 0, $attachment = array(), $form_currency = '', $file_upload_link = 0, $mail_mode = 1 ) {
|
|
|
3624 |
$new_value = "";
|
3625 |
if ( $type != "type_submit_reset" or $type != "type_map" or $type != "type_editor" or $type != "type_captcha" or $type != "type_arithmetic_captcha" or $type != "type_recaptcha" or $type != "type_button" ) {
|
3626 |
switch ( $type ) {
|
@@ -3655,6 +3656,7 @@ class FMModelForm_maker {
|
|
3655 |
$uploadedFileExtension = array_pop( $uploadedFileNameParts );
|
3656 |
$file_name = explode( '/', $attach );
|
3657 |
$file_name = end( $file_name );
|
|
|
3658 |
if ( $file_upload_link == 1 ) {
|
3659 |
$new_value .= '<a href="' . $attach . '">' . $file_name . '</a><br />';
|
3660 |
} else {
|
1191 |
$_SESSION['error_or_no' . $id] = 1;
|
1192 |
}
|
1193 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1194 |
elseif ( isset($_POST["recaptcha_response" . $id]) ) {
|
1195 |
// Build POST request:
|
1196 |
$recaptcha_url = 'https://www.google.com/recaptcha/api/siteverify';
|
1221 |
$_SESSION['error_or_no' . $id] = 1;
|
1222 |
}
|
1223 |
}
|
1224 |
+
elseif ( isset($_POST["g-recaptcha-response"]) ) {
|
1225 |
+
$privatekey = isset($fm_settings['private_key']) ? $fm_settings['private_key'] : '';
|
1226 |
+
$captcha = $_POST['g-recaptcha-response'];
|
1227 |
+
$url = 'https://www.google.com/recaptcha/api/siteverify';
|
1228 |
+
$data = array(
|
1229 |
+
'secret' => $privatekey,
|
1230 |
+
'response' => $captcha,
|
1231 |
+
'remoteip' => $_SERVER['REMOTE_ADDR'],
|
1232 |
+
);
|
1233 |
+
$response = wp_remote_post($url, array( 'body' => $data ));
|
1234 |
+
if ( !is_wp_error($response) ) {
|
1235 |
+
$jsonResponse = json_decode(wp_remote_retrieve_body($response), TRUE);
|
1236 |
+
if ( $jsonResponse['success'] == "true" ) {
|
1237 |
+
$success = TRUE;
|
1238 |
+
}
|
1239 |
+
else {
|
1240 |
+
$_SESSION['massage_after_submit' . $id] = addslashes(addslashes(__('Submission has failed due to the unsuccessful ReCaptcha verification. Please try to submit the form again.', WDFMInstance(self::PLUGIN)->prefix)));
|
1241 |
+
$_SESSION['message_captcha'] = $_SESSION['massage_after_submit' . $id];
|
1242 |
+
$_SESSION['error_or_no' . $id] = 1;
|
1243 |
+
}
|
1244 |
+
}
|
1245 |
+
}
|
1246 |
elseif ( preg_match('(type_arithmetic_captcha|type_captcha|type_recaptcha)', $form->label_order_current) === 1 ) {
|
1247 |
$_SESSION['massage_after_submit' . $id] = addslashes(addslashes(__('Error, incorrect Security code.', WDFMInstance(self::PLUGIN)->prefix)));
|
1248 |
$_SESSION['message_captcha'] = $_SESSION['massage_after_submit' . $id];
|
3621 |
* @return null|string $new_value
|
3622 |
*/
|
3623 |
public static function custom_fields_mail( $type = '', $key = '', $id = 0, $attachment = array(), $form_currency = '', $file_upload_link = 0, $mail_mode = 1 ) {
|
3624 |
+
$front_urls = WDFMInstance(self::PLUGIN)->get_front_urls();
|
3625 |
$new_value = "";
|
3626 |
if ( $type != "type_submit_reset" or $type != "type_map" or $type != "type_editor" or $type != "type_captcha" or $type != "type_arithmetic_captcha" or $type != "type_recaptcha" or $type != "type_button" ) {
|
3627 |
switch ( $type ) {
|
3656 |
$uploadedFileExtension = array_pop( $uploadedFileNameParts );
|
3657 |
$file_name = explode( '/', $attach );
|
3658 |
$file_name = end( $file_name );
|
3659 |
+
$attach = $front_urls['upload_url'] . $attach;
|
3660 |
if ( $file_upload_link == 1 ) {
|
3661 |
$new_value .= '<a href="' . $attach . '">' . $file_name . '</a><br />';
|
3662 |
} else {
|
languages/form_maker-pl_PL.mo
CHANGED
Binary file
|
languages/form_maker-pl_PL.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: form_maker\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2018-05-02 18:46+0400\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: pl\n"
|
@@ -12,7 +12,7 @@ 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/Addons_fm.php:59
|
@@ -265,7 +265,6 @@ msgid "Custom CSS"
|
|
265 |
msgstr ""
|
266 |
|
267 |
#: admin/controllers/Themes_fm.php:252 admin/controllers/Themes_fm.php:2456
|
268 |
-
#, fuzzy
|
269 |
msgid "Top"
|
270 |
msgstr "Na"
|
271 |
|
@@ -284,7 +283,6 @@ msgid "Left"
|
|
284 |
msgstr ""
|
285 |
|
286 |
#: admin/controllers/Themes_fm.php:272
|
287 |
-
#, fuzzy
|
288 |
msgid "Center"
|
289 |
msgstr "Centów"
|
290 |
|
@@ -620,7 +618,7 @@ msgstr ""
|
|
620 |
|
621 |
#: admin/controllers/Themes_fm.php:1597
|
622 |
msgid "Reset"
|
623 |
-
msgstr "
|
624 |
|
625 |
#: admin/controllers/Themes_fm.php:1784
|
626 |
msgid "Active"
|
@@ -800,12 +798,10 @@ msgid "Paragraph Text"
|
|
800 |
msgstr ""
|
801 |
|
802 |
#: admin/views/Manage_fm.php:522
|
803 |
-
#, fuzzy
|
804 |
msgid "Number"
|
805 |
msgstr "Listopad"
|
806 |
|
807 |
#: admin/views/Manage_fm.php:524
|
808 |
-
#, fuzzy
|
809 |
msgid "Select"
|
810 |
msgstr "Wybierz datę"
|
811 |
|
@@ -842,7 +838,6 @@ msgid "Mark on Map"
|
|
842 |
msgstr ""
|
843 |
|
844 |
#: admin/views/Manage_fm.php:537
|
845 |
-
#, fuzzy
|
846 |
msgid "Country List"
|
847 |
msgstr "Kraj"
|
848 |
|
@@ -871,7 +866,6 @@ msgid "ADVANCED"
|
|
871 |
msgstr ""
|
872 |
|
873 |
#: admin/views/Manage_fm.php:547
|
874 |
-
#, fuzzy
|
875 |
msgid "Map"
|
876 |
msgstr "Maj"
|
877 |
|
@@ -908,7 +902,6 @@ msgid "Grades"
|
|
908 |
msgstr ""
|
909 |
|
910 |
#: admin/views/Manage_fm.php:556
|
911 |
-
#, fuzzy
|
912 |
msgid "Table of Fields"
|
913 |
msgstr "Wybierz pole"
|
914 |
|
@@ -925,7 +918,6 @@ msgid "Password"
|
|
925 |
msgstr ""
|
926 |
|
927 |
#: admin/views/Manage_fm.php:560
|
928 |
-
#, fuzzy
|
929 |
msgid "Phone-Area Code"
|
930 |
msgstr "Numer kierunkowy"
|
931 |
|
@@ -1044,9 +1036,8 @@ msgid "Hide Filters"
|
|
1044 |
msgstr ""
|
1045 |
|
1046 |
#: admin/views/Themes_fm.php:151
|
1047 |
-
#, fuzzy
|
1048 |
msgid "Title: "
|
1049 |
-
msgstr "Stanowisko/Funkcja"
|
1050 |
|
1051 |
#: admin/views/Themes_fm.php:224
|
1052 |
msgid ""
|
@@ -1080,7 +1071,6 @@ msgid "Number of items per page:"
|
|
1080 |
msgstr ""
|
1081 |
|
1082 |
#: form-maker.php:398
|
1083 |
-
#, fuzzy
|
1084 |
msgid "Nothing found."
|
1085 |
msgstr "Nic nie zostało złożone."
|
1086 |
|
@@ -1164,7 +1154,6 @@ msgid "Invisible reCAPTCHA"
|
|
1164 |
msgstr ""
|
1165 |
|
1166 |
#: form-maker.php:417
|
1167 |
-
#, fuzzy
|
1168 |
msgid "This field is a single line text input."
|
1169 |
msgstr "To pole %s wymaga unikalną pozycję i wartość ta została już złożone."
|
1170 |
|
@@ -1322,8 +1311,6 @@ msgid ""
|
|
1322 |
msgstr ""
|
1323 |
|
1324 |
#: form-maker.php:427
|
1325 |
-
#, fuzzy
|
1326 |
-
#| msgid "This is not a valid email address."
|
1327 |
msgid "This field is an input field that accepts an email address."
|
1328 |
msgstr "To nie jest prawidłowy adres email."
|
1329 |
|
@@ -1670,28 +1657,24 @@ msgid "Sorry, you are not allowed to access this page."
|
|
1670 |
msgstr ""
|
1671 |
|
1672 |
#: form-maker.php:753
|
1673 |
-
#, fuzzy
|
1674 |
msgid "Can not upload this type of file"
|
1675 |
-
msgstr "Przepraszamy, nie możesz wgrać tego typu pliku
|
1676 |
|
1677 |
#: form-maker.php:754
|
1678 |
-
#, fuzzy
|
1679 |
msgid "Field is required"
|
1680 |
-
msgstr "Pole jest wymagane
|
1681 |
|
1682 |
#: form-maker.php:755
|
1683 |
msgid "The "
|
1684 |
msgstr ""
|
1685 |
|
1686 |
#: form-maker.php:756
|
1687 |
-
#, fuzzy
|
1688 |
msgid " value must be between "
|
1689 |
-
msgstr "Wartość musi być między"
|
1690 |
|
1691 |
#: form-maker.php:757
|
1692 |
-
#, fuzzy
|
1693 |
msgid "Value must be between "
|
1694 |
-
msgstr "Wartość musi być między"
|
1695 |
|
1696 |
#: form-maker.php:758
|
1697 |
msgid "Are you sure you want to clear saved data?"
|
@@ -1699,34 +1682,31 @@ msgstr ""
|
|
1699 |
|
1700 |
#: form-maker.php:759 framework/WDW_FM_Library.php:3767
|
1701 |
msgid "Your score should be less than"
|
1702 |
-
msgstr "Twój wynik powinien być niższy niż
|
1703 |
|
1704 |
#: form-maker.php:760
|
1705 |
-
#, fuzzy
|
1706 |
msgid "This is not a valid time value."
|
1707 |
msgstr "To nie jest prawidłowy adres email."
|
1708 |
|
1709 |
#: form-maker.php:761
|
1710 |
-
#, fuzzy
|
1711 |
msgid "This is not a valid number value."
|
1712 |
msgstr "To nie jest prawidłowy adres email."
|
1713 |
|
1714 |
#: form-maker.php:762
|
1715 |
-
#, fuzzy
|
1716 |
msgid "This is not a valid date value."
|
1717 |
msgstr "To nie jest prawidłowy adres email."
|
1718 |
|
1719 |
#: form-maker.php:763
|
1720 |
-
#,
|
1721 |
msgid "The year must be between %s and %s"
|
1722 |
-
msgstr "
|
1723 |
|
1724 |
#: form-maker.php:819
|
1725 |
msgid ""
|
1726 |
"Oops! Seems like you installed the update over a quite old version of Form "
|
1727 |
"Maker. Unfortunately, this version is deprecated.<br />Please contact 10Web "
|
1728 |
-
"support team at support@10web.io. We will take care of this "
|
1729 |
-
"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
#: form-maker.php:882
|
@@ -1859,7 +1839,7 @@ msgstr "Nie można wybrać byłych termin. Wybierz datę, od obecnego."
|
|
1859 |
|
1860 |
#: framework/WDW_FM_Library.php:3110
|
1861 |
msgid "field is required."
|
1862 |
-
msgstr "
|
1863 |
|
1864 |
#: framework/WDW_FM_Library.php:3140
|
1865 |
msgid "The"
|
@@ -1867,7 +1847,7 @@ msgstr "The"
|
|
1867 |
|
1868 |
#: framework/WDW_FM_Library.php:3140
|
1869 |
msgid "value must be between"
|
1870 |
-
msgstr "
|
1871 |
|
1872 |
#: framework/WDW_FM_Library.php:3266 framework/WDW_FM_Library.php:3348
|
1873 |
#: framework/WDW_FM_Library.php:3430 frontend/views/form_maker.php:2192
|
@@ -2934,7 +2914,6 @@ msgid "December"
|
|
2934 |
msgstr "Grudzień"
|
2935 |
|
2936 |
#: framework/WDW_FM_Library.php:4523
|
2937 |
-
#, fuzzy
|
2938 |
msgid "Jan"
|
2939 |
msgstr "Styczeń"
|
2940 |
|
@@ -2943,27 +2922,22 @@ msgid "Feb"
|
|
2943 |
msgstr ""
|
2944 |
|
2945 |
#: framework/WDW_FM_Library.php:4523
|
2946 |
-
#, fuzzy
|
2947 |
msgid "Mar"
|
2948 |
msgstr "Marzec"
|
2949 |
|
2950 |
#: framework/WDW_FM_Library.php:4523
|
2951 |
-
#, fuzzy
|
2952 |
msgid "Apr"
|
2953 |
msgstr "Kwiecień"
|
2954 |
|
2955 |
#: framework/WDW_FM_Library.php:4523
|
2956 |
-
#, fuzzy
|
2957 |
msgid "Jun"
|
2958 |
msgstr "Czerwiec"
|
2959 |
|
2960 |
#: framework/WDW_FM_Library.php:4523
|
2961 |
-
#, fuzzy
|
2962 |
msgid "Jul"
|
2963 |
msgstr "Lipiec"
|
2964 |
|
2965 |
#: framework/WDW_FM_Library.php:4523
|
2966 |
-
#, fuzzy
|
2967 |
msgid "Aug"
|
2968 |
msgstr "Sierpień"
|
2969 |
|
@@ -2972,7 +2946,6 @@ msgid "Sep"
|
|
2972 |
msgstr ""
|
2973 |
|
2974 |
#: framework/WDW_FM_Library.php:4523
|
2975 |
-
#, fuzzy
|
2976 |
msgid "Oct"
|
2977 |
msgstr "Październik"
|
2978 |
|
@@ -2993,7 +2966,6 @@ msgid "Mon"
|
|
2993 |
msgstr ""
|
2994 |
|
2995 |
#: framework/WDW_FM_Library.php:4525
|
2996 |
-
#, fuzzy
|
2997 |
msgid "Tue"
|
2998 |
msgstr "The"
|
2999 |
|
@@ -3002,7 +2974,6 @@ msgid "Wed"
|
|
3002 |
msgstr ""
|
3003 |
|
3004 |
#: framework/WDW_FM_Library.php:4525
|
3005 |
-
#, fuzzy
|
3006 |
msgid "Thu"
|
3007 |
msgstr "The"
|
3008 |
|
@@ -3031,12 +3002,10 @@ msgid "We"
|
|
3031 |
msgstr ""
|
3032 |
|
3033 |
#: framework/WDW_FM_Library.php:4526
|
3034 |
-
#, fuzzy
|
3035 |
msgid "Th"
|
3036 |
msgstr "The"
|
3037 |
|
3038 |
#: framework/WDW_FM_Library.php:4526
|
3039 |
-
#, fuzzy
|
3040 |
msgid "Fr"
|
3041 |
msgstr "Od"
|
3042 |
|
@@ -3053,8 +3022,6 @@ msgid "Form fields"
|
|
3053 |
msgstr ""
|
3054 |
|
3055 |
#: framework/WDW_FM_Library.php:5038
|
3056 |
-
#, fuzzy
|
3057 |
-
#| msgid "Title"
|
3058 |
msgid "Form Title"
|
3059 |
msgstr "Stanowisko/Funkcja"
|
3060 |
|
@@ -3079,10 +3046,8 @@ msgid "Page Url"
|
|
3079 |
msgstr ""
|
3080 |
|
3081 |
#: framework/WDW_FM_Library.php:5045
|
3082 |
-
#, fuzzy
|
3083 |
-
#| msgid "Verification link is invalid."
|
3084 |
msgid "Verification Link"
|
3085 |
-
msgstr "Link Weryfikacja jest nieprawidłowy
|
3086 |
|
3087 |
#: frontend/models/form_maker.php:23
|
3088 |
msgid "Something went wrong when trying to display this form."
|
@@ -3102,15 +3067,11 @@ msgid "Error, incorrect Security code."
|
|
3102 |
msgstr "Podano niepoprawny kod bezpieczeństwa."
|
3103 |
|
3104 |
#: frontend/models/form_maker.php:1115
|
3105 |
-
#, fuzzy
|
3106 |
-
#| msgid "Error, incorrect Security code."
|
3107 |
msgid "Error, incorrect secret code."
|
3108 |
msgstr "Podano niepoprawny kod bezpieczeństwa."
|
3109 |
|
3110 |
#: frontend/models/form_maker.php:1122 frontend/models/form_maker.php:1128
|
3111 |
#: frontend/models/form_maker.php:1135
|
3112 |
-
#, fuzzy
|
3113 |
-
#| msgid "Verification link is invalid."
|
3114 |
msgid "Verification failed."
|
3115 |
msgstr "Link Weryfikacja jest nieprawidłowy."
|
3116 |
|
@@ -3118,21 +3079,18 @@ msgstr "Link Weryfikacja jest nieprawidłowy."
|
|
3118 |
msgid "Your ip is blacklisted. Please contact the website administrator."
|
3119 |
msgstr ""
|
3120 |
"Twoje IP jest na czarnej liście. Proszę skontaktować się z administratorem "
|
3121 |
-
"strony"
|
3122 |
|
3123 |
#: frontend/models/form_maker.php:1350
|
3124 |
-
#, fuzzy
|
3125 |
msgid "This is not a valid date format."
|
3126 |
msgstr "To nie jest prawidłowy adres email."
|
3127 |
|
3128 |
#: frontend/models/form_maker.php:1444
|
3129 |
-
#,
|
3130 |
-
#| msgid "The file exceeds the allowed size of"
|
3131 |
msgid "The file exceeds the allowed size of %s KB."
|
3132 |
-
msgstr "Plik przekracza
|
3133 |
|
3134 |
#: frontend/models/form_maker.php:1458
|
3135 |
-
#, fuzzy
|
3136 |
msgid "Can not upload this type of file."
|
3137 |
msgstr "Przepraszamy, nie możesz wgrać tego typu pliku."
|
3138 |
|
@@ -3141,7 +3099,7 @@ msgid "Error, file cannot be moved."
|
|
3141 |
msgstr "Błąd, plik nie może być przeniesiona."
|
3142 |
|
3143 |
#: frontend/models/form_maker.php:1915
|
3144 |
-
#,
|
3145 |
msgid "This field %s requires a unique entry."
|
3146 |
msgstr "To pole %s wymaga unikalną pozycję i wartość ta została już złożone."
|
3147 |
|
3 |
"Project-Id-Version: form_maker\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2018-05-02 18:46+0400\n"
|
6 |
+
"PO-Revision-Date: 2020-03-23 11:34+0400\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: pl\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.3\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin/controllers/Addons_fm.php:59
|
265 |
msgstr ""
|
266 |
|
267 |
#: admin/controllers/Themes_fm.php:252 admin/controllers/Themes_fm.php:2456
|
|
|
268 |
msgid "Top"
|
269 |
msgstr "Na"
|
270 |
|
283 |
msgstr ""
|
284 |
|
285 |
#: admin/controllers/Themes_fm.php:272
|
|
|
286 |
msgid "Center"
|
287 |
msgstr "Centów"
|
288 |
|
618 |
|
619 |
#: admin/controllers/Themes_fm.php:1597
|
620 |
msgid "Reset"
|
621 |
+
msgstr "Zresetować"
|
622 |
|
623 |
#: admin/controllers/Themes_fm.php:1784
|
624 |
msgid "Active"
|
798 |
msgstr ""
|
799 |
|
800 |
#: admin/views/Manage_fm.php:522
|
|
|
801 |
msgid "Number"
|
802 |
msgstr "Listopad"
|
803 |
|
804 |
#: admin/views/Manage_fm.php:524
|
|
|
805 |
msgid "Select"
|
806 |
msgstr "Wybierz datę"
|
807 |
|
838 |
msgstr ""
|
839 |
|
840 |
#: admin/views/Manage_fm.php:537
|
|
|
841 |
msgid "Country List"
|
842 |
msgstr "Kraj"
|
843 |
|
866 |
msgstr ""
|
867 |
|
868 |
#: admin/views/Manage_fm.php:547
|
|
|
869 |
msgid "Map"
|
870 |
msgstr "Maj"
|
871 |
|
902 |
msgstr ""
|
903 |
|
904 |
#: admin/views/Manage_fm.php:556
|
|
|
905 |
msgid "Table of Fields"
|
906 |
msgstr "Wybierz pole"
|
907 |
|
918 |
msgstr ""
|
919 |
|
920 |
#: admin/views/Manage_fm.php:560
|
|
|
921 |
msgid "Phone-Area Code"
|
922 |
msgstr "Numer kierunkowy"
|
923 |
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: admin/views/Themes_fm.php:151
|
|
|
1039 |
msgid "Title: "
|
1040 |
+
msgstr "Stanowisko/Funkcja "
|
1041 |
|
1042 |
#: admin/views/Themes_fm.php:224
|
1043 |
msgid ""
|
1071 |
msgstr ""
|
1072 |
|
1073 |
#: form-maker.php:398
|
|
|
1074 |
msgid "Nothing found."
|
1075 |
msgstr "Nic nie zostało złożone."
|
1076 |
|
1154 |
msgstr ""
|
1155 |
|
1156 |
#: form-maker.php:417
|
|
|
1157 |
msgid "This field is a single line text input."
|
1158 |
msgstr "To pole %s wymaga unikalną pozycję i wartość ta została już złożone."
|
1159 |
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: form-maker.php:427
|
|
|
|
|
1314 |
msgid "This field is an input field that accepts an email address."
|
1315 |
msgstr "To nie jest prawidłowy adres email."
|
1316 |
|
1657 |
msgstr ""
|
1658 |
|
1659 |
#: form-maker.php:753
|
|
|
1660 |
msgid "Can not upload this type of file"
|
1661 |
+
msgstr "Przepraszamy, nie możesz wgrać tego typu pliku"
|
1662 |
|
1663 |
#: form-maker.php:754
|
|
|
1664 |
msgid "Field is required"
|
1665 |
+
msgstr "Pole jest wymagane"
|
1666 |
|
1667 |
#: form-maker.php:755
|
1668 |
msgid "The "
|
1669 |
msgstr ""
|
1670 |
|
1671 |
#: form-maker.php:756
|
|
|
1672 |
msgid " value must be between "
|
1673 |
+
msgstr " Wartość musi być między "
|
1674 |
|
1675 |
#: form-maker.php:757
|
|
|
1676 |
msgid "Value must be between "
|
1677 |
+
msgstr "Wartość musi być między "
|
1678 |
|
1679 |
#: form-maker.php:758
|
1680 |
msgid "Are you sure you want to clear saved data?"
|
1682 |
|
1683 |
#: form-maker.php:759 framework/WDW_FM_Library.php:3767
|
1684 |
msgid "Your score should be less than"
|
1685 |
+
msgstr "Twój wynik powinien być niższy niż"
|
1686 |
|
1687 |
#: form-maker.php:760
|
|
|
1688 |
msgid "This is not a valid time value."
|
1689 |
msgstr "To nie jest prawidłowy adres email."
|
1690 |
|
1691 |
#: form-maker.php:761
|
|
|
1692 |
msgid "This is not a valid number value."
|
1693 |
msgstr "To nie jest prawidłowy adres email."
|
1694 |
|
1695 |
#: form-maker.php:762
|
|
|
1696 |
msgid "This is not a valid date value."
|
1697 |
msgstr "To nie jest prawidłowy adres email."
|
1698 |
|
1699 |
#: form-maker.php:763
|
1700 |
+
#, php-format
|
1701 |
msgid "The year must be between %s and %s"
|
1702 |
+
msgstr "Rok musi wynosić od% s do% s"
|
1703 |
|
1704 |
#: form-maker.php:819
|
1705 |
msgid ""
|
1706 |
"Oops! Seems like you installed the update over a quite old version of Form "
|
1707 |
"Maker. Unfortunately, this version is deprecated.<br />Please contact 10Web "
|
1708 |
+
"support team at support@10web.io. We will take care of this issue as soon as "
|
1709 |
+
"possible."
|
1710 |
msgstr ""
|
1711 |
|
1712 |
#: form-maker.php:882
|
1839 |
|
1840 |
#: framework/WDW_FM_Library.php:3110
|
1841 |
msgid "field is required."
|
1842 |
+
msgstr "pole jest wymagane."
|
1843 |
|
1844 |
#: framework/WDW_FM_Library.php:3140
|
1845 |
msgid "The"
|
1847 |
|
1848 |
#: framework/WDW_FM_Library.php:3140
|
1849 |
msgid "value must be between"
|
1850 |
+
msgstr "wartość musi być między"
|
1851 |
|
1852 |
#: framework/WDW_FM_Library.php:3266 framework/WDW_FM_Library.php:3348
|
1853 |
#: framework/WDW_FM_Library.php:3430 frontend/views/form_maker.php:2192
|
2914 |
msgstr "Grudzień"
|
2915 |
|
2916 |
#: framework/WDW_FM_Library.php:4523
|
|
|
2917 |
msgid "Jan"
|
2918 |
msgstr "Styczeń"
|
2919 |
|
2922 |
msgstr ""
|
2923 |
|
2924 |
#: framework/WDW_FM_Library.php:4523
|
|
|
2925 |
msgid "Mar"
|
2926 |
msgstr "Marzec"
|
2927 |
|
2928 |
#: framework/WDW_FM_Library.php:4523
|
|
|
2929 |
msgid "Apr"
|
2930 |
msgstr "Kwiecień"
|
2931 |
|
2932 |
#: framework/WDW_FM_Library.php:4523
|
|
|
2933 |
msgid "Jun"
|
2934 |
msgstr "Czerwiec"
|
2935 |
|
2936 |
#: framework/WDW_FM_Library.php:4523
|
|
|
2937 |
msgid "Jul"
|
2938 |
msgstr "Lipiec"
|
2939 |
|
2940 |
#: framework/WDW_FM_Library.php:4523
|
|
|
2941 |
msgid "Aug"
|
2942 |
msgstr "Sierpień"
|
2943 |
|
2946 |
msgstr ""
|
2947 |
|
2948 |
#: framework/WDW_FM_Library.php:4523
|
|
|
2949 |
msgid "Oct"
|
2950 |
msgstr "Październik"
|
2951 |
|
2966 |
msgstr ""
|
2967 |
|
2968 |
#: framework/WDW_FM_Library.php:4525
|
|
|
2969 |
msgid "Tue"
|
2970 |
msgstr "The"
|
2971 |
|
2974 |
msgstr ""
|
2975 |
|
2976 |
#: framework/WDW_FM_Library.php:4525
|
|
|
2977 |
msgid "Thu"
|
2978 |
msgstr "The"
|
2979 |
|
3002 |
msgstr ""
|
3003 |
|
3004 |
#: framework/WDW_FM_Library.php:4526
|
|
|
3005 |
msgid "Th"
|
3006 |
msgstr "The"
|
3007 |
|
3008 |
#: framework/WDW_FM_Library.php:4526
|
|
|
3009 |
msgid "Fr"
|
3010 |
msgstr "Od"
|
3011 |
|
3022 |
msgstr ""
|
3023 |
|
3024 |
#: framework/WDW_FM_Library.php:5038
|
|
|
|
|
3025 |
msgid "Form Title"
|
3026 |
msgstr "Stanowisko/Funkcja"
|
3027 |
|
3046 |
msgstr ""
|
3047 |
|
3048 |
#: framework/WDW_FM_Library.php:5045
|
|
|
|
|
3049 |
msgid "Verification Link"
|
3050 |
+
msgstr "Link Weryfikacja jest nieprawidłowy"
|
3051 |
|
3052 |
#: frontend/models/form_maker.php:23
|
3053 |
msgid "Something went wrong when trying to display this form."
|
3067 |
msgstr "Podano niepoprawny kod bezpieczeństwa."
|
3068 |
|
3069 |
#: frontend/models/form_maker.php:1115
|
|
|
|
|
3070 |
msgid "Error, incorrect secret code."
|
3071 |
msgstr "Podano niepoprawny kod bezpieczeństwa."
|
3072 |
|
3073 |
#: frontend/models/form_maker.php:1122 frontend/models/form_maker.php:1128
|
3074 |
#: frontend/models/form_maker.php:1135
|
|
|
|
|
3075 |
msgid "Verification failed."
|
3076 |
msgstr "Link Weryfikacja jest nieprawidłowy."
|
3077 |
|
3079 |
msgid "Your ip is blacklisted. Please contact the website administrator."
|
3080 |
msgstr ""
|
3081 |
"Twoje IP jest na czarnej liście. Proszę skontaktować się z administratorem "
|
3082 |
+
"strony."
|
3083 |
|
3084 |
#: frontend/models/form_maker.php:1350
|
|
|
3085 |
msgid "This is not a valid date format."
|
3086 |
msgstr "To nie jest prawidłowy adres email."
|
3087 |
|
3088 |
#: frontend/models/form_maker.php:1444
|
3089 |
+
#, php-format
|
|
|
3090 |
msgid "The file exceeds the allowed size of %s KB."
|
3091 |
+
msgstr "Plik przekracza dozwolony rozmiar% s KB."
|
3092 |
|
3093 |
#: frontend/models/form_maker.php:1458
|
|
|
3094 |
msgid "Can not upload this type of file."
|
3095 |
msgstr "Przepraszamy, nie możesz wgrać tego typu pliku."
|
3096 |
|
3099 |
msgstr "Błąd, plik nie może być przeniesiona."
|
3100 |
|
3101 |
#: frontend/models/form_maker.php:1915
|
3102 |
+
#, php-format
|
3103 |
msgid "This field %s requires a unique entry."
|
3104 |
msgstr "To pole %s wymaga unikalną pozycję i wartość ta została już złożone."
|
3105 |
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
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.
|
6 |
-
Stable tag: 1.13.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -562,6 +562,10 @@ Where **{{field_id}}** is the ID of the field you wish to prefill. Also, **{{par
|
|
562 |
|
563 |
== Changelog ==
|
564 |
|
|
|
|
|
|
|
|
|
565 |
= 1.13.30 =
|
566 |
* Improved: Security.
|
567 |
* Fixed: Make Slider field to work with floating steps.
|
2 |
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.4
|
6 |
+
Stable tag: 1.13.31
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
562 |
|
563 |
== Changelog ==
|
564 |
|
565 |
+
= 1.13.31 =
|
566 |
+
* Fixed: Bug on Google reCapthcha v3.
|
567 |
+
* Fixed: Upload file broken link in post content (Post Generation extension).
|
568 |
+
|
569 |
= 1.13.30 =
|
570 |
* Improved: Security.
|
571 |
* Fixed: Make Slider field to work with floating steps.
|
wd/assets/img/spinner.gif
DELETED
Binary file
|