Skip to content

Commit 575ae05

Browse files
authored
Merge pull request #146 from BoldGrid/hotfix-1.6.10
Fixes fatal error on translator
2 parents 23b9d2a + 73edd63 commit 575ae05

File tree

7 files changed

+21
-15
lines changed

7 files changed

+21
-15
lines changed

README.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# weForms - Easy Drag & Drop Contact Form Builder For WordPress #
2-
**Contributors:** [tareq1988](https://profiles.wordpress.org/tareq1988), [nizamuddinbabu](https://profiles.wordpress.org/nizamuddinbabu), [boldgrid](https://profiles.wordpress.org/boldgrid), [joemoto](https://profiles.wordpress.org/joemoto), [jamesros161](https://profiles.wordpress.org/jamesros161)
3-
**Tags:** forms, contact form, contact form plugin, custom form, form builder, form, form creator, form manager, form creation, contact forms, custom forms, forms builder, forms creator, forms manager, forms creation
4-
**Requires at least:** 4.4
5-
**Requires PHP:** 5.6.20
6-
**Tested up to:** 5.7
7-
**Stable tag:** 1.6.10
8-
**License:** GPLv2 or later
9-
**License URI:** https://www.gnu.org/licenses/gpl-2.0.html
2+
**Contributors:** [tareq1988](https://profiles.wordpress.org/tareq1988), [nizamuddinbabu](https://profiles.wordpress.org/nizamuddinbabu), [boldgrid](https://profiles.wordpress.org/boldgrid), [joemoto](https://profiles.wordpress.org/joemoto), [jamesros161](https://profiles.wordpress.org/jamesros161)
3+
**Tags:** forms, contact form, contact form plugin, custom form, form builder, form, form creator, form manager, form creation, contact forms, custom forms, forms builder, forms creator, forms manager, forms creation
4+
**Requires at least:** 4.4
5+
**Requires PHP:** 5.6.20
6+
**Tested up to:** 5.7
7+
**Stable tag:** 1.6.10
8+
**License:** GPLv2 or later
9+
**License URI:** https://www.gnu.org/licenses/gpl-2.0.html
1010

1111
The easiest & fastest Contact Form on WordPress. Multiple templates, drag-&-drop live builder, submission listing, reCaptcha & more!
1212

@@ -249,6 +249,9 @@ weForms is the most beginner friendly and fastest WordPress contact form plugin
249249

250250
## Changelog ##
251251

252+
### Version 1.6.11 (05 January, 2022) ###
253+
* **Fix:** Fixes fatal error in translator.
254+
252255
### Version 1.6.10 (05 January, 2022) ###
253256
* **Update:** Axios from 0.21.1 to 0.21.2.
254257
* **Update:** Set-value from 3.0.2 to 4.0.1.

assets/js-templates/spa-components.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@
829829
<?php
830830
// translators: 1: Opening strong tag. 2: closing strong tag
831831
printf(
832-
esc_html__( 'Export your form entries/submissions as a %1$sCSV%2$S file.', 'weforms' ),
832+
esc_html__( 'Export your form entries/submissions as a %1$sCSV%2$s file.', 'weforms' ),
833833
'<strong>',
834834
'</strong>'
835835
);
@@ -864,7 +864,7 @@
864864
<p><?php
865865
// translators: 1: Opening strong tag. 2: closing strong tag.
866866
printf(
867-
esc_html__( 'Press %1$s Import button, we will do the rest for you.', 'weforms' ),
867+
esc_html__( 'Press %1$sImport%2$s button, we will do the rest for you.', 'weforms' ),
868868
'<strong>',
869869
'</strong>'
870870
);

languages/weforms.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the GPL2 or later.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: weForms 1.6.10\n"
5+
"Project-Id-Version: weForms 1.6.11\n"
66
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
77
"POT-Creation-Date: 2022-01-06 15:20:17+00:00\n"
88
"MIME-Version: 1.0\n"

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "weForms",
33
"author": "BoldGrid",
4-
"version": "1.6.10",
4+
"version": "1.6.11",
55
"license": "GPL-2.0",
66
"repository": {
77
"type": "git",

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: forms, contact form, contact form plugin, custom form, form builder, form,
44
Requires at least: 4.4
55
Requires PHP: 5.6.20
66
Tested up to: 5.7
7-
Stable tag: 1.6.10
7+
Stable tag: 1.6.11
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -249,6 +249,9 @@ weForms is the most beginner friendly and fastest WordPress contact form plugin
249249

250250
== Changelog ==
251251

252+
= Version 1.6.11 (05 January, 2022) =
253+
* **Fix:** Fixes fatal error in translator.
254+
252255
= Version 1.6.10 (05 January, 2022) =
253256
* **Update:** Axios from 0.21.1 to 0.21.2.
254257
* **Update:** Set-value from 3.0.2 to 4.0.1.

weforms.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ final class WeForms {
5555
*
5656
* @var string
5757
*/
58-
public $version = '1.6.10';
58+
public $version = '1.6.11';
5959

6060
/**
6161
* Form field value seperator

0 commit comments

Comments
 (0)