Skip to content

Commit 8e9599b

Browse files
committed
Fixed issues from PR
1 parent 85b9fc6 commit 8e9599b

File tree

4 files changed

+47
-15
lines changed

4 files changed

+47
-15
lines changed

README.md

Lines changed: 38 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

@@ -21,6 +21,36 @@ Moreover, with more than 20+ custom field, you can swiftly build contact forms,
2121

2222
So weForms is an all-in-one form builder created with the global users in mind. Its minimalistic design is not only modern but also super fast and user-friendly. Everything works on a single page. Feel no delay – because your time is precious!
2323

24+
## Development ##
25+
26+
### Installing Dependencies ###
27+
Before you can use the development version of this plugin you must install the dependencies.
28+
29+
```
30+
npm install
31+
```
32+
33+
### Workflow ###
34+
Before editing or making changes check to make sure you are not editing any concatenated files. Check the Gruntfile.js in the concat: section for details. If you edit a concatenated file and run the build process any of your changes will be overwritten.
35+
36+
Once you have made the changes and are ready to test run the following command.
37+
38+
```
39+
grunt concat:(specified source)
40+
```
41+
42+
#### Minify JS ####
43+
If you want to test changes with SCRIPT_DEBUG set to false. You will need to make sure the scripts are minified.
44+
To minify Javascript for testing run the following command.
45+
46+
```
47+
grunt uglify:main
48+
```
49+
50+
### Build Process ###
51+
When you are ready to build for release or QA make sure all branchs are merge that will be in the release and follow:
52+
[Release Process https://github.com/BoldGrid/weforms/wiki/Release-Process]
53+
2454
### Quick Overview of weForms ###
2555
[youtube https://www.youtube.com/watch?v=4uYi0833Kjw]
2656

assets/js-templates/spa-components.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -827,10 +827,11 @@
827827
<div class="inside">
828828
<p class="help">
829829
<?php
830-
// translators: 1: Strong tag with text.
830+
// translators: 1: Opening strong tag. 2: closing strong tag
831831
printf(
832-
esc_html__( 'Export your form entries/submissions as a %1$s file.', 'weforms' ),
833-
'<strong>CSV</strong>',
832+
esc_html__( 'Export your form entries/submissions as a %1$sCSV%2$S file.', 'weforms' ),
833+
'<strong>',
834+
'</strong>'
834835
);
835836
?>
836837
</p>
@@ -863,8 +864,9 @@
863864
<p><?php
864865
// translators: 1: Strong tag with text.
865866
printf(
866-
esc_html__( 'Press %1$s button, we will do the rest for you.', 'weforms' ),
867-
'<strong>Import</strong>',
867+
esc_html__( 'Press %1$s Import button, we will do the rest for you.', 'weforms' ),
868+
'<strong>',
869+
'</strong>'
868870
);
869871
?>
870872
</p>

assets/js/utils/vendor-assets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44

55
module.exports = [
6-
'assets/wpuf/vendor/vue/vue.js',
6+
'assets/wpuf/vendor/vue/vue.min.js',
77
'assets/wpuf/vendor/vuex/vuex.js',
88
'assets/js/vendor/vue-router.js',
99
'assets/js/vendor/nprogress.js',

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.9",
4+
"version": "1.6.10",
55
"license": "GPL-2.0",
66
"repository": {
77
"type": "git",

0 commit comments

Comments
 (0)