Skip to content

Commit 831a64a

Browse files
committed
fixed issue victorjonsson#234
1 parent 7d49e87 commit 831a64a

File tree

10 files changed

+13
-12
lines changed

10 files changed

+13
-12
lines changed

form-validator/date.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @website http://formvalidator.net/#location-validators
1212
* @license Dual licensed under the MIT or GPL Version 2 licenses
13-
* @version 2.2.beta.60
13+
* @version 2.2.beta.62
1414
*/
1515
(function($) {
1616

form-validator/file.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @website http://formvalidator.net/
1212
* @license Dual licensed under the MIT or GPL Version 2 licenses
13-
* @version 2.2.beta.60
13+
* @version 2.2.beta.62
1414
*/
1515
(function($, window) {
1616

form-validator/html5.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*
1818
* @website http://formvalidator.net/
1919
* @license Dual licensed under the MIT or GPL Version 2 licenses
20-
* @version 2.2.beta.60
20+
* @version 2.2.beta.62
2121
*/
2222
(function($, window) {
2323

form-validator/jquery.form-validator.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* @website http://formvalidator.net/
77
* @license Dual licensed under the MIT or GPL Version 2 licenses
8-
* @version 2.2.beta.60
8+
* @version 2.2.beta.62
99
*/
1010
(function($) {
1111

@@ -1337,6 +1337,7 @@
13371337
badDomain : 'Incorrect domain value',
13381338
badUrl : 'The input value is not a correct URL',
13391339
badCustomVal : 'The input value is incorrect',
1340+
andSpaces : ' and spaces ',
13401341
badInt : 'The input value was not a correct number',
13411342
badSecurityNumber : 'Your social security number was incorrect',
13421343
badUKVatAnswer : 'Incorrect UK VAT Number',
@@ -1557,7 +1558,7 @@
15571558
var extra = additionalChars.replace(/\\/g, '');
15581559
if( extra.indexOf(' ') > -1 ) {
15591560
extra = extra.replace(' ', '');
1560-
extra += ' and spaces ';
1561+
extra += language.andSpaces || $.formUtils.LANG.andSpaces;
15611562
}
15621563
this.errorMessage = language.badAlphaNumeric + language.badAlphaNumericExtra + extra;
15631564
} else {

form-validator/jquery.form-validator.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

form-validator/jsconf.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* @website http://formvalidator.net/#location-validators
99
* @license Dual licensed under the MIT or GPL Version 2 licenses
10-
* @version 2.2.beta.60
10+
* @version 2.2.beta.62
1111
*/
1212
(function($) {
1313

form-validator/location.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @website http://formvalidator.net/#location-validators
1212
* @license Dual licensed under the MIT or GPL Version 2 licenses
13-
* @version 2.2.beta.60
13+
* @version 2.2.beta.62
1414
*/
1515
(function($) {
1616

form-validator/security.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* - cvv
1414
*
1515
* @website http://formvalidator.net/#security-validators
16-
* @version 2.2.beta.60
16+
* @version 2.2.beta.62
1717
*/
1818
(function($, window) {
1919

form-validator/sweden.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* @website http://formvalidator.net/#swedish-validators
1515
* @license Dual licensed under the MIT or GPL Version 2 licenses
16-
* @version 2.2.beta.60
16+
* @version 2.2.beta.62
1717
*/
1818
(function($, window) {
1919

form-validator/uk.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
* @website http://formvalidator.net/#uk-validators
1111
* @license Dual licensed under the MIT or GPL Version 2 licenses
12-
* @version 2.2.beta.60
12+
* @version 2.2.beta.62
1313
*/
1414
$.formUtils.addValidator({
1515
name : 'ukvatnumber',

0 commit comments

Comments
 (0)