Browse Source

#385: Add unnecessary English package

nghuuphuoc 11 years ago
parent
commit
63ee43bd18
50 changed files with 769 additions and 119 deletions
  1. 57 57
      dist/js/bootstrapValidator.js
  2. 3 3
      dist/js/bootstrapValidator.min.js
  3. 325 0
      dist/js/languages/en_US.js
  4. 1 1
      dist/js/languages/vi_VN.js
  5. 325 0
      src/js/languages/en_US.js
  6. 1 1
      src/js/languages/vi_VN.js
  7. 1 1
      src/js/validator/base64.js
  8. 2 2
      src/js/validator/between.js
  9. 1 1
      src/js/validator/callback.js
  10. 1 1
      src/js/validator/choice.js
  11. 1 1
      src/js/validator/creditCard.js
  12. 1 1
      src/js/validator/cusip.js
  13. 1 1
      src/js/validator/cvv.js
  14. 1 1
      src/js/validator/date.js
  15. 1 1
      src/js/validator/digits.js
  16. 1 1
      src/js/validator/ean.js
  17. 1 1
      src/js/validator/emailAddress.js
  18. 1 1
      src/js/validator/file.js
  19. 2 2
      src/js/validator/greaterThan.js
  20. 1 1
      src/js/validator/grid.js
  21. 1 1
      src/js/validator/hex.js
  22. 1 1
      src/js/validator/hexColor.js
  23. 2 2
      src/js/validator/iban.js
  24. 2 2
      src/js/validator/id.js
  25. 1 1
      src/js/validator/imei.js
  26. 1 1
      src/js/validator/integer.js
  27. 1 1
      src/js/validator/ip.js
  28. 1 1
      src/js/validator/isbn.js
  29. 1 1
      src/js/validator/isin.js
  30. 1 1
      src/js/validator/ismn.js
  31. 1 1
      src/js/validator/issn.js
  32. 2 2
      src/js/validator/lessThan.js
  33. 1 1
      src/js/validator/mac.js
  34. 1 1
      src/js/validator/notEmpty.js
  35. 1 1
      src/js/validator/numeric.js
  36. 2 2
      src/js/validator/phone.js
  37. 1 1
      src/js/validator/regexp.js
  38. 1 1
      src/js/validator/remote.js
  39. 1 1
      src/js/validator/rtn.js
  40. 1 1
      src/js/validator/sedol.js
  41. 1 1
      src/js/validator/siren.js
  42. 1 1
      src/js/validator/siret.js
  43. 1 1
      src/js/validator/step.js
  44. 2 2
      src/js/validator/stringCase.js
  45. 4 4
      src/js/validator/stringLength.js
  46. 1 1
      src/js/validator/uri.js
  47. 2 2
      src/js/validator/uuid.js
  48. 2 2
      src/js/validator/vat.js
  49. 1 1
      src/js/validator/vin.js
  50. 2 2
      src/js/validator/zipCode.js

+ 57 - 57
dist/js/bootstrapValidator.js

@@ -1512,7 +1512,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.base64 = $.extend($.fn.bootstrapValidator.i18n.base64 || {}, {
-        'default': 'The value is not a valid base 64 encoded'
+        'default': 'Please enter a valid base 64 encoded'
     });
 
     $.fn.bootstrapValidator.validators.base64 = {
@@ -1537,8 +1537,8 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.between = $.extend($.fn.bootstrapValidator.i18n.between || {}, {
-        'default': 'The value must be between %s and %s',
-        notInclusive: 'The value must be between %s and %s strictly',
+        'default': 'Please enter a value between %s and %s',
+        notInclusive: 'Please enter a value between %s and %s strictly',
 
         getMessage: function(options) {
             return (options.inclusive === true || options.inclusive == undefined)
@@ -1593,7 +1593,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.callback = $.extend($.fn.bootstrapValidator.i18n.callback || {}, {
-        'default': 'The value is not valid'
+        'default': 'Please enter a valid value'
     });
 
     $.fn.bootstrapValidator.validators.callback = {
@@ -1626,7 +1626,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.choice = $.extend($.fn.bootstrapValidator.i18n.choice || {}, {
-        'default': 'The value is not valid',
+        'default': 'Please enter a valid value',
         less: 'Please choose %s options at minimum',
         more: 'Please choose %s options at maximum',
         between: 'Please choose %s - %s options',
@@ -1679,7 +1679,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.creditCard = $.extend($.fn.bootstrapValidator.i18n.creditCard || {}, {
-        'default': 'The value is not a valid credit card number'
+        'default': 'Please enter a valid credit card number'
     });
 
     $.fn.bootstrapValidator.validators.creditCard = {
@@ -1782,7 +1782,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.cusip = $.extend($.fn.bootstrapValidator.i18n.cusip || {}, {
-        'default': 'The value is not a valid CUSIP number'
+        'default': 'Please enter a valid CUSIP number'
     });
 
     $.fn.bootstrapValidator.validators.cusip = {
@@ -1837,7 +1837,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.cvv = $.extend($.fn.bootstrapValidator.i18n.cvv || {}, {
-        'default': 'The value is not a valid CVV number'
+        'default': 'Please enter a valid CVV number'
     });
 
     $.fn.bootstrapValidator.validators.cvv = {
@@ -1953,7 +1953,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.date = $.extend($.fn.bootstrapValidator.i18n.date || {}, {
-        'default': 'The value is not a valid date'
+        'default': 'Please enter a valid date'
     });
 
     $.fn.bootstrapValidator.validators.date = {
@@ -2108,7 +2108,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.digits = $.extend($.fn.bootstrapValidator.i18n.digits || {}, {
-        'default': 'The value can contain only digits'
+        'default': 'Please enter only digits'
     });
 
     $.fn.bootstrapValidator.validators.digits = {
@@ -2132,7 +2132,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.ean = $.extend($.fn.bootstrapValidator.i18n.ean || {}, {
-        'default': 'The value is not a valid EAN number'
+        'default': 'Please enter a valid EAN number'
     });
 
     $.fn.bootstrapValidator.validators.ean = {
@@ -2172,7 +2172,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.emailAddress = $.extend($.fn.bootstrapValidator.i18n.emailAddress || {}, {
-        'default': 'The value is not a valid email address'
+        'default': 'Please enter a valid email address'
     });
 
     $.fn.bootstrapValidator.validators.emailAddress = {
@@ -2203,7 +2203,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.file = $.extend($.fn.bootstrapValidator.i18n.file || {}, {
-        'default': 'The selected file is not valid'
+        'default': 'Please choose a valid file'
     });
 
     $.fn.bootstrapValidator.validators.file = {
@@ -2272,8 +2272,8 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.greaterThan = $.extend($.fn.bootstrapValidator.i18n.greaterThan || {}, {
-        'default': 'The value must be greater than or equal to %s',
-        notInclusive: 'The value must be greater than %s',
+        'default': 'Please enter a value greater than or equal to %s',
+        notInclusive: 'Please enter a value greater than %s',
 
         getMessage: function(options) {
             return (options.inclusive === true || options.inclusive == undefined)
@@ -2323,7 +2323,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.grid = $.extend($.fn.bootstrapValidator.i18n.grid || {}, {
-        'default': 'The value is not a valid GRId number'
+        'default': 'Please enter a valid GRId number'
     });
 
     $.fn.bootstrapValidator.validators.grid = {
@@ -2360,7 +2360,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.hex = $.extend($.fn.bootstrapValidator.i18n.hex || {}, {
-        'default': 'The value is not a valid hexadecimal number'
+        'default': 'Please enter a valid hexadecimal number'
     });
 
     $.fn.bootstrapValidator.validators.hex = {
@@ -2385,7 +2385,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.hexColor = $.extend($.fn.bootstrapValidator.i18n.hexColor || {}, {
-        'default': 'The value is not a valid hex color'
+        'default': 'Please enter a valid hex color'
     });
 
     $.fn.bootstrapValidator.validators.hexColor = {
@@ -2413,9 +2413,9 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.iban = $.extend($.fn.bootstrapValidator.i18n.iban || {}, {
-        'default': 'The value is not a valid IBAN number',
+        'default': 'Please enter a valid IBAN number',
         countryNotSupported: 'The country code %s is not supported',
-        country: 'The value is not a valid IBAN number in %s',
+        country: 'Please enter a valid IBAN number in %s',
         countries: {
             AD: 'Andorra',
             AE: 'United Arab Emirates',
@@ -2652,9 +2652,9 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.id = $.extend($.fn.bootstrapValidator.i18n.id || {}, {
-        'default': 'The value is not a valid identification number',
+        'default': 'Please enter a valid identification number',
         countryNotSupported: 'The country code %s is not supported',
-        country: 'The value is not a valid %s identification number',
+        country: 'Please enter a valid %s identification number',
         countries: {
             BA: 'Bosnia and Herzegovina',
             BG: 'Bulgarian',
@@ -3502,7 +3502,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.imei = $.extend($.fn.bootstrapValidator.i18n.imei || {}, {
-        'default': 'The value is not a valid IMEI number'
+        'default': 'Please enter a valid IMEI number'
     });
 
     $.fn.bootstrapValidator.validators.imei = {
@@ -3547,7 +3547,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.integer = $.extend($.fn.bootstrapValidator.i18n.integer || {}, {
-        'default': 'The value is not a valid number'
+        'default': 'Please enter a valid number'
     });
 
     $.fn.bootstrapValidator.validators.integer = {
@@ -3575,7 +3575,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.ip = $.extend($.fn.bootstrapValidator.i18n.ip || {}, {
-        'default': 'The value is not a valid IP address'
+        'default': 'Please enter a valid IP address'
     });
 
     $.fn.bootstrapValidator.validators.ip = {
@@ -3614,7 +3614,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.isbn = $.extend($.fn.bootstrapValidator.i18n.isbn || {}, {
-        'default': 'The value is not a valid ISBN number'
+        'default': 'Please enter a valid ISBN number'
     });
 
     $.fn.bootstrapValidator.validators.isbn = {
@@ -3699,7 +3699,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.isin = $.extend($.fn.bootstrapValidator.i18n.isin || {}, {
-        'default': 'The value is not a valid ISIN number'
+        'default': 'Please enter a valid ISIN number'
     });
 
     $.fn.bootstrapValidator.validators.isin = {
@@ -3758,7 +3758,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.ismn = $.extend($.fn.bootstrapValidator.i18n.ismn || {}, {
-        'default': 'The value is not a valid ISMN number'
+        'default': 'Please enter a valid ISMN number'
     });
 
     $.fn.bootstrapValidator.validators.ismn = {
@@ -3817,7 +3817,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.issn = $.extend($.fn.bootstrapValidator.i18n.issn || {}, {
-        'default': 'The value is not a valid ISSN number'
+        'default': 'Please enter a valid ISSN number'
     });
 
     $.fn.bootstrapValidator.validators.issn = {
@@ -3863,8 +3863,8 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.lessThan = $.extend($.fn.bootstrapValidator.i18n.lessThan || {}, {
-        'default': 'The value must be less than or equal to %s',
-        notInclusive: 'The value must be less than %s',
+        'default': 'Please enter a value less than or equal to %s',
+        notInclusive: 'Please enter a value less than %s',
 
         getMessage: function(options) {
             return (options.inclusive === true || options.inclusive == undefined)
@@ -3914,7 +3914,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.mac = $.extend($.fn.bootstrapValidator.i18n.mac || {}, {
-        'default': 'The value is not a valid MAC address'
+        'default': 'Please enter a valid MAC address'
     });
 
     $.fn.bootstrapValidator.validators.mac = {
@@ -3939,7 +3939,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.notEmpty = $.extend($.fn.bootstrapValidator.i18n.notEmpty || {}, {
-        'default': 'The value is required'
+        'default': 'Please enter a value'
     });
 
     $.fn.bootstrapValidator.validators.notEmpty = {
@@ -3971,7 +3971,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.numeric = $.extend($.fn.bootstrapValidator.i18n.numeric || {}, {
-        'default': 'The value is not a valid number'
+        'default': 'Please enter a valid float number'
     });
 
     $.fn.bootstrapValidator.validators.numeric = {
@@ -4006,9 +4006,9 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.phone = $.extend($.fn.bootstrapValidator.i18n.phone || {}, {
-        'default': 'The value is not a valid phone number',
+        'default': 'Please enter a valid phone number',
         countryNotSupported: 'The country code %s is not supported',
-        country: 'The value is not a valid phone number in %s',
+        country: 'Please enter a valid phone number in %s',
         countries: {
             GB: 'United Kingdom',
             US: 'USA'
@@ -4080,7 +4080,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.regexp = $.extend($.fn.bootstrapValidator.i18n.regexp || {}, {
-        'default': 'The value does not match the pattern'
+        'default': 'Please enter a value matching the pattern'
     });
 
     $.fn.bootstrapValidator.validators.regexp = {
@@ -4122,7 +4122,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.remote = $.extend($.fn.bootstrapValidator.i18n.remote || {}, {
-        'default': 'The value is not valid'
+        'default': 'Please enter a valid value'
     });
 
     $.fn.bootstrapValidator.validators.remote = {
@@ -4192,7 +4192,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.rtn = $.extend($.fn.bootstrapValidator.i18n.rtn || {}, {
-        'default': 'The value is not a valid RTN number'
+        'default': 'Please enter a valid RTN number'
     });
 
     $.fn.bootstrapValidator.validators.rtn = {
@@ -4230,7 +4230,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.sedol = $.extend($.fn.bootstrapValidator.i18n.sedol || {}, {
-        'default': 'The value is not a valid SEDOL number'
+        'default': 'Please enter a valid SEDOL number'
     });
 
     $.fn.bootstrapValidator.validators.sedol = {
@@ -4270,7 +4270,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.siren = $.extend($.fn.bootstrapValidator.i18n.siren || {}, {
-        'default': 'The value is not a valid siren number'
+        'default': 'Please enter a valid SIREN number'
     });
 
 	$.fn.bootstrapValidator.validators.siren = {
@@ -4298,7 +4298,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.siret = $.extend($.fn.bootstrapValidator.i18n.siret || {}, {
-        'default': 'The value is not a valid siret number'
+        'default': 'Please enter a valid SIRET number'
     });
 
 	$.fn.bootstrapValidator.validators.siret = {
@@ -4336,7 +4336,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.step = $.extend($.fn.bootstrapValidator.i18n.step || {}, {
-        'default': 'The value is not a valid step of %s',
+        'default': 'Please enter a valid step of %s',
 
         getMessage: function(options) {
             return $.fn.bootstrapValidator.helpers.format(this['default'], [options.step]);
@@ -4401,8 +4401,8 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.stringCase = $.extend($.fn.bootstrapValidator.i18n.stringCase || {}, {
-        'default': 'The value must be lowercase',
-        upper: 'The value must be uppercase',
+        'default': 'Please enter only lowercase characters',
+        upper: 'Please enter only uppercase characters',
 
         getMessage: function(options) {
             var stringCase = (options['case'] || 'lower').toLowerCase();
@@ -4451,10 +4451,10 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.stringLength = $.extend($.fn.bootstrapValidator.i18n.stringLength || {}, {
-        'default': 'The value length is not valid',
-        less: 'The value must be less than %s characters long',
-        more: 'The value must be more than %s characters long',
-        between: 'The value must be between %s and %s characters long',
+        'default': 'Please enter a value with valid length',
+        less: 'Please enter less than %s characters',
+        more: 'Please enter more than %s characters',
+        between: 'Please enter value between %s and %s characters long',
 
         getMessage: function(options) {
             switch (true) {
@@ -4518,7 +4518,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.uri = $.extend($.fn.bootstrapValidator.i18n.uri || {}, {
-        'default': 'The value is not a valid URI'
+        'default': 'Please enter a valid URI'
     });
 
     $.fn.bootstrapValidator.validators.uri = {
@@ -4619,8 +4619,8 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.uuid = $.extend($.fn.bootstrapValidator.i18n.uuid || {}, {
-        'default': 'The value is not a valid UUID',
-        version: 'The value is not a valid UUID version %s',
+        'default': 'Please enter a valid UUID number',
+        version: 'Please enter a valid UUID version %s number',
 
         getMessage: function(options) {
             return (options.version)
@@ -4666,9 +4666,9 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.vat = $.extend($.fn.bootstrapValidator.i18n.vat || {}, {
-        'default': 'The value is not a valid VAT number',
+        'default': 'Please enter a valid VAT number',
         countryNotSupported: 'The country code %s is not supported',
-        country: 'The value is not a valid %s VAT number',
+        country: 'Please enter a valid %s VAT number',
         countries: {
             AT: 'Austrian',
             BE: 'Belgian',
@@ -5880,7 +5880,7 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.vin = $.extend($.fn.bootstrapValidator.i18n.vin || {}, {
-        'default': 'The value is not a valid VIN number'
+        'default': 'Please enter a valid VIN number'
     });
 
     $.fn.bootstrapValidator.validators.vin = {
@@ -5929,9 +5929,9 @@
 }(window.jQuery));
 ;(function($) {
     $.fn.bootstrapValidator.i18n.zipCode = $.extend($.fn.bootstrapValidator.i18n.zipCode || {}, {
-        'default': 'The value is not a valid zip code',
+        'default': 'Please enter a valid zip code',
         countryNotSupported: 'The country code %s is not supported',
-        country: 'The value is not a valid %s',
+        country: 'Please enter a valid %s',
         countries: {
             'CA': 'Canadian postal code',
             'DK': 'Danish postal code',

File diff suppressed because it is too large
+ 3 - 3
dist/js/bootstrapValidator.min.js


+ 325 - 0
dist/js/languages/en_US.js

@@ -0,0 +1,325 @@
+(function($) {
+    /**
+     * Default English package
+     * It's included in the dist, so you do NOT need to include it to your head tag
+     * The only reason I put it here is that you can clone it, and translate it into your language
+     */
+    $.fn.bootstrapValidator.i18n = $.extend(true, $.fn.bootstrapValidator.i18n, {
+        base64: {
+            'default': 'Please enter a valid base 64 encoded'
+        },
+        between: {
+            'default': 'Please enter a value between %s and %s',
+            notInclusive: 'Please enter a value between %s and %s strictly'
+        },
+        callback: {
+            'default': 'Please enter a valid value'
+        },
+        choice: {
+            'default': 'Please enter a valid value',
+            less: 'Please choose %s options at minimum',
+            more: 'Please choose %s options at maximum',
+            between: 'Please choose %s - %s options'
+        },
+        creditCard: {
+            'default': 'Please enter a valid credit card number'
+        },
+        cusip: {
+            'default': 'Please enter a valid CUSIP number'
+        },
+        cvv: {
+            'default': 'Please enter a valid CVV number'
+        },
+        date: {
+            'default': 'Please enter a valid date'
+        },
+        different: {
+            'default': 'Please enter a different value'
+        },
+        digits: {
+             'default': 'Please enter only digits'
+        },
+        ean: {
+            'default': 'Please enter a valid EAN number'
+        },
+        emailAddress: {
+            'default': 'Please enter a valid email address'
+        },
+        file: {
+            'default': 'Please choose a valid file'
+        },
+        greaterThan: {
+            'default': 'Please enter a value greater than or equal to %s',
+            notInclusive: 'Please enter a value greater than %s'
+        },
+        grid: {
+            'default': 'Please enter a valid GRId number'
+        },
+        hex: {
+            'default': 'Please enter a valid hexadecimal number'
+        },
+        hexColor: {
+            'default': 'Please enter a valid hex color'
+        },
+        iban: {
+            'default': 'Please enter a valid IBAN number',
+            countryNotSupported: 'The country code %s is not supported',
+            country: 'Please enter a valid IBAN number in %s',
+            countries: {
+                AD: 'Andorra',
+                AE: 'United Arab Emirates',
+                AL: 'Albania',
+                AO: 'Angola',
+                AT: 'Austria',
+                AZ: 'Azerbaijan',
+                BA: 'Bosnia and Herzegovina',
+                BE: 'Belgium',
+                BF: 'Burkina Faso',
+                BG: 'Bulgaria',
+                BH: 'Bahrain',
+                BI: 'Burundi',
+                BJ: 'Benin',
+                BR: 'Brazil',
+                CH: 'Switzerland',
+                CI: 'Ivory Coast',
+                CM: 'Cameroon',
+                CR: 'Costa Rica',
+                CV: 'Cape Verde',
+                CY: 'Cyprus',
+                CZ: 'Czech Republic',
+                DE: 'Germany',
+                DK: 'Denmark',
+                DO: 'Dominican Republic',
+                DZ: 'Algeria',
+                EE: 'Estonia',
+                ES: 'Spain',
+                FI: 'Finland',
+                FO: 'Faroe Islands',
+                FR: 'France',
+                GB: 'United Kingdom',
+                GE: 'Georgia',
+                GI: 'Gibraltar',
+                GL: 'Greenland',
+                GR: 'Greece',
+                GT: 'Guatemala',
+                HR: 'Croatia',
+                HU: 'Hungary',
+                IE: 'Ireland',
+                IL: 'Israel',
+                IR: 'Iran',
+                IS: 'Iceland',
+                IT: 'Italy',
+                JO: 'Jordan',
+                KW: 'Kuwait',
+                KZ: 'Kazakhstan',
+                LB: 'Lebanon',
+                LI: 'Liechtenstein',
+                LT: 'Lithuania',
+                LU: 'Luxembourg',
+                LV: 'Latvia',
+                MC: 'Monaco',
+                MD: 'Moldova',
+                ME: 'Montenegro',
+                MG: 'Madagascar',
+                MK: 'Macedonia',
+                ML: 'Mali',
+                MR: 'Mauritania',
+                MT: 'Malta',
+                MU: 'Mauritius',
+                MZ: 'Mozambique',
+                NL: 'Netherlands',
+                NO: 'Norway',
+                PK: 'Pakistan',
+                PL: 'Poland',
+                PS: 'Palestinian',
+                PT: 'Portugal',
+                QA: 'Qatar',
+                RO: 'Romania',
+                RS: 'Serbia',
+                SA: 'Saudi Arabia',
+                SE: 'Sweden',
+                SI: 'Slovenia',
+                SK: 'Slovakia',
+                SM: 'San Marino',
+                SN: 'Senegal',
+                TN: 'Tunisia',
+                TR: 'Turkey',
+                VG: 'Virgin Islands, British'
+            }
+        },
+        id: {
+            'default': 'Please enter a valid identification number',
+            countryNotSupported: 'The country code %s is not supported',
+            country: 'Please enter a valid %s identification number',
+            countries: {
+                BA: 'Bosnia and Herzegovina',
+                BG: 'Bulgarian',
+                BR: 'Brazilian',
+                CH: 'Swiss',
+                CL: 'Chilean',
+                CZ: 'Czech',
+                DK: 'Danish',
+                EE: 'Estonian',
+                ES: 'Spanish',
+                FI: 'Finnish',
+                HR: 'Croatian',
+                IE: 'Irish',
+                IS: 'Iceland',
+                LT: 'Lithuanian',
+                LV: 'Latvian',
+                ME: 'Montenegro',
+                MK: 'Macedonian',
+                NL: 'Dutch',
+                RO: 'Romanian',
+                RS: 'Serbian',
+                SE: 'Swedish',
+                SI: 'Slovenian',
+                SK: 'Slovak',
+                SM: 'San Marino',
+                ZA: 'South African'
+            }
+        },
+        identical: {
+            'default': 'Please enter the same value'
+        },
+        imei: {
+            'default': 'Please enter a valid IMEI number'
+        },
+        integer: {
+            'default': 'Please enter a valid number'
+        },
+        ip: {
+            'default': 'Please enter a valid IP address'
+        },
+        isbn: {
+            'default': 'Please enter a valid ISBN number'
+        },
+        isin: {
+            'default': 'Please enter a valid ISIN number'
+        },
+        ismn: {
+            'default': 'Please enter a valid ISMN number'
+        },
+        issn: {
+            'default': 'Please enter a valid ISSN number'
+        },
+        lessThan: {
+            'default': 'Please enter a value less than or equal to %s',
+            notInclusive: 'Please enter a value less than %s'
+        },
+        mac: {
+            'default': 'Please enter a valid MAC address'
+        },
+        notEmpty: {
+            'default': 'Please enter a value'
+        },
+        numeric: {
+            'default': 'Please enter a valid float number'
+        },
+        phone: {
+            'default': 'Please enter a valid phone number',
+            countryNotSupported: 'The country code %s is not supported',
+            country: 'Please enter a valid phone number in %s',
+            countries: {
+                GB: 'United Kingdom',
+                US: 'USA'
+            }
+        },
+        regexp: {
+            'default': 'Please enter a value matching the pattern'
+        },
+        remote: {
+            'default': 'Please enter a valid value'
+        },
+        rtn: {
+            'default': 'Please enter a valid RTN number'
+        },
+        sedol: {
+            'default': 'Please enter a valid SEDOL number'
+        },
+        siren: {
+            'default': 'Please enter a valid SIREN number'
+        },
+        siret: {
+            'default': 'Please enter a valid SIRET number'
+        },
+        step: {
+            'default': 'Please enter a valid step of %s',
+        },
+        stringCase: {
+            'default': 'Please enter only lowercase characters',
+            upper: 'Please enter only uppercase characters'
+        },
+        stringLength: {
+            'default': 'Please enter a value with valid length',
+            less: 'Please enter less than %s characters',
+            more: 'Please enter more than %s characters',
+            between: 'Please enter value between %s and %s characters long'
+        },
+        uri: {
+            'default': 'Please enter a valid URI'
+        },
+        uuid: {
+            'default': 'Please enter a valid UUID number',
+            version: 'Please enter a valid UUID version %s number'
+        },
+        vat: {
+            'default': 'Please enter a valid VAT number',
+            countryNotSupported: 'The country code %s is not supported',
+            country: 'Please enter a valid %s VAT number',
+            countries: {
+                AT: 'Austrian',
+                BE: 'Belgian',
+                BG: 'Bulgarian',
+                CH: 'Swiss',
+                CY: 'Cypriot',
+                CZ: 'Czech',
+                DE: 'German',
+                DK: 'Danish',
+                EE: 'Estonian',
+                ES: 'Spanish',
+                FI: 'Finnish',
+                FR: 'French',
+                GB: 'United Kingdom',
+                GR: 'Greek',
+                EL: 'Greek',
+                HU: 'Hungarian',
+                HR: 'Croatian',
+                IE: 'Irish',
+                IT: 'Italian',
+                LT: 'Lithuanian',
+                LU: 'Luxembourg',
+                LV: 'Latvian',
+                MT: 'Maltese',
+                NL: 'Dutch',
+                NO: 'Norwegian',
+                PL: 'Polish',
+                PT: 'Portuguese',
+                RO: 'Romanian',
+                RU: 'Russian',
+                RS: 'Serbian',
+                SE: 'Swedish',
+                SI: 'Slovenian',
+                SK: 'Slovak'
+            }
+        },
+        vin: {
+            'default': 'Please enter a valid VIN number'
+        },
+        zipCode: {
+            'default': 'Please enter a valid zip code',
+            countryNotSupported: 'The country code %s is not supported',
+            country: 'Please enter a valid %s',
+            countries: {
+                'CA': 'Canadian postal code',
+                'DK': 'Danish postal code',
+                'GB': 'United Kingdom postal code',
+                'IT': 'Italian postal code',
+                'NL': 'Dutch postal code',
+                'SE': 'Swiss postal code',
+                'SG': 'Singapore postal code',
+                'US': 'US zip code'
+            }
+        }
+    });
+}(window.jQuery));

+ 1 - 1
dist/js/languages/vi_VN.js

@@ -89,7 +89,7 @@
                 EE: 'Estonia',
                 ES: 'Tây Ban Nha',
                 FI: 'Phần Lan',
-                FO: 'đảo Faroe',
+                FO: 'Đảo Faroe',
                 FR: 'Pháp',
                 GB: 'Vương quốc Anh',
                 GE: 'Georgia',

+ 325 - 0
src/js/languages/en_US.js

@@ -0,0 +1,325 @@
+(function($) {
+    /**
+     * Default English package
+     * It's included in the dist, so you do NOT need to include it to your head tag
+     * The only reason I put it here is that you can clone it, and translate it into your language
+     */
+    $.fn.bootstrapValidator.i18n = $.extend(true, $.fn.bootstrapValidator.i18n, {
+        base64: {
+            'default': 'Please enter a valid base 64 encoded'
+        },
+        between: {
+            'default': 'Please enter a value between %s and %s',
+            notInclusive: 'Please enter a value between %s and %s strictly'
+        },
+        callback: {
+            'default': 'Please enter a valid value'
+        },
+        choice: {
+            'default': 'Please enter a valid value',
+            less: 'Please choose %s options at minimum',
+            more: 'Please choose %s options at maximum',
+            between: 'Please choose %s - %s options'
+        },
+        creditCard: {
+            'default': 'Please enter a valid credit card number'
+        },
+        cusip: {
+            'default': 'Please enter a valid CUSIP number'
+        },
+        cvv: {
+            'default': 'Please enter a valid CVV number'
+        },
+        date: {
+            'default': 'Please enter a valid date'
+        },
+        different: {
+            'default': 'Please enter a different value'
+        },
+        digits: {
+             'default': 'Please enter only digits'
+        },
+        ean: {
+            'default': 'Please enter a valid EAN number'
+        },
+        emailAddress: {
+            'default': 'Please enter a valid email address'
+        },
+        file: {
+            'default': 'Please choose a valid file'
+        },
+        greaterThan: {
+            'default': 'Please enter a value greater than or equal to %s',
+            notInclusive: 'Please enter a value greater than %s'
+        },
+        grid: {
+            'default': 'Please enter a valid GRId number'
+        },
+        hex: {
+            'default': 'Please enter a valid hexadecimal number'
+        },
+        hexColor: {
+            'default': 'Please enter a valid hex color'
+        },
+        iban: {
+            'default': 'Please enter a valid IBAN number',
+            countryNotSupported: 'The country code %s is not supported',
+            country: 'Please enter a valid IBAN number in %s',
+            countries: {
+                AD: 'Andorra',
+                AE: 'United Arab Emirates',
+                AL: 'Albania',
+                AO: 'Angola',
+                AT: 'Austria',
+                AZ: 'Azerbaijan',
+                BA: 'Bosnia and Herzegovina',
+                BE: 'Belgium',
+                BF: 'Burkina Faso',
+                BG: 'Bulgaria',
+                BH: 'Bahrain',
+                BI: 'Burundi',
+                BJ: 'Benin',
+                BR: 'Brazil',
+                CH: 'Switzerland',
+                CI: 'Ivory Coast',
+                CM: 'Cameroon',
+                CR: 'Costa Rica',
+                CV: 'Cape Verde',
+                CY: 'Cyprus',
+                CZ: 'Czech Republic',
+                DE: 'Germany',
+                DK: 'Denmark',
+                DO: 'Dominican Republic',
+                DZ: 'Algeria',
+                EE: 'Estonia',
+                ES: 'Spain',
+                FI: 'Finland',
+                FO: 'Faroe Islands',
+                FR: 'France',
+                GB: 'United Kingdom',
+                GE: 'Georgia',
+                GI: 'Gibraltar',
+                GL: 'Greenland',
+                GR: 'Greece',
+                GT: 'Guatemala',
+                HR: 'Croatia',
+                HU: 'Hungary',
+                IE: 'Ireland',
+                IL: 'Israel',
+                IR: 'Iran',
+                IS: 'Iceland',
+                IT: 'Italy',
+                JO: 'Jordan',
+                KW: 'Kuwait',
+                KZ: 'Kazakhstan',
+                LB: 'Lebanon',
+                LI: 'Liechtenstein',
+                LT: 'Lithuania',
+                LU: 'Luxembourg',
+                LV: 'Latvia',
+                MC: 'Monaco',
+                MD: 'Moldova',
+                ME: 'Montenegro',
+                MG: 'Madagascar',
+                MK: 'Macedonia',
+                ML: 'Mali',
+                MR: 'Mauritania',
+                MT: 'Malta',
+                MU: 'Mauritius',
+                MZ: 'Mozambique',
+                NL: 'Netherlands',
+                NO: 'Norway',
+                PK: 'Pakistan',
+                PL: 'Poland',
+                PS: 'Palestinian',
+                PT: 'Portugal',
+                QA: 'Qatar',
+                RO: 'Romania',
+                RS: 'Serbia',
+                SA: 'Saudi Arabia',
+                SE: 'Sweden',
+                SI: 'Slovenia',
+                SK: 'Slovakia',
+                SM: 'San Marino',
+                SN: 'Senegal',
+                TN: 'Tunisia',
+                TR: 'Turkey',
+                VG: 'Virgin Islands, British'
+            }
+        },
+        id: {
+            'default': 'Please enter a valid identification number',
+            countryNotSupported: 'The country code %s is not supported',
+            country: 'Please enter a valid %s identification number',
+            countries: {
+                BA: 'Bosnia and Herzegovina',
+                BG: 'Bulgarian',
+                BR: 'Brazilian',
+                CH: 'Swiss',
+                CL: 'Chilean',
+                CZ: 'Czech',
+                DK: 'Danish',
+                EE: 'Estonian',
+                ES: 'Spanish',
+                FI: 'Finnish',
+                HR: 'Croatian',
+                IE: 'Irish',
+                IS: 'Iceland',
+                LT: 'Lithuanian',
+                LV: 'Latvian',
+                ME: 'Montenegro',
+                MK: 'Macedonian',
+                NL: 'Dutch',
+                RO: 'Romanian',
+                RS: 'Serbian',
+                SE: 'Swedish',
+                SI: 'Slovenian',
+                SK: 'Slovak',
+                SM: 'San Marino',
+                ZA: 'South African'
+            }
+        },
+        identical: {
+            'default': 'Please enter the same value'
+        },
+        imei: {
+            'default': 'Please enter a valid IMEI number'
+        },
+        integer: {
+            'default': 'Please enter a valid number'
+        },
+        ip: {
+            'default': 'Please enter a valid IP address'
+        },
+        isbn: {
+            'default': 'Please enter a valid ISBN number'
+        },
+        isin: {
+            'default': 'Please enter a valid ISIN number'
+        },
+        ismn: {
+            'default': 'Please enter a valid ISMN number'
+        },
+        issn: {
+            'default': 'Please enter a valid ISSN number'
+        },
+        lessThan: {
+            'default': 'Please enter a value less than or equal to %s',
+            notInclusive: 'Please enter a value less than %s'
+        },
+        mac: {
+            'default': 'Please enter a valid MAC address'
+        },
+        notEmpty: {
+            'default': 'Please enter a value'
+        },
+        numeric: {
+            'default': 'Please enter a valid float number'
+        },
+        phone: {
+            'default': 'Please enter a valid phone number',
+            countryNotSupported: 'The country code %s is not supported',
+            country: 'Please enter a valid phone number in %s',
+            countries: {
+                GB: 'United Kingdom',
+                US: 'USA'
+            }
+        },
+        regexp: {
+            'default': 'Please enter a value matching the pattern'
+        },
+        remote: {
+            'default': 'Please enter a valid value'
+        },
+        rtn: {
+            'default': 'Please enter a valid RTN number'
+        },
+        sedol: {
+            'default': 'Please enter a valid SEDOL number'
+        },
+        siren: {
+            'default': 'Please enter a valid SIREN number'
+        },
+        siret: {
+            'default': 'Please enter a valid SIRET number'
+        },
+        step: {
+            'default': 'Please enter a valid step of %s',
+        },
+        stringCase: {
+            'default': 'Please enter only lowercase characters',
+            upper: 'Please enter only uppercase characters'
+        },
+        stringLength: {
+            'default': 'Please enter a value with valid length',
+            less: 'Please enter less than %s characters',
+            more: 'Please enter more than %s characters',
+            between: 'Please enter value between %s and %s characters long'
+        },
+        uri: {
+            'default': 'Please enter a valid URI'
+        },
+        uuid: {
+            'default': 'Please enter a valid UUID number',
+            version: 'Please enter a valid UUID version %s number'
+        },
+        vat: {
+            'default': 'Please enter a valid VAT number',
+            countryNotSupported: 'The country code %s is not supported',
+            country: 'Please enter a valid %s VAT number',
+            countries: {
+                AT: 'Austrian',
+                BE: 'Belgian',
+                BG: 'Bulgarian',
+                CH: 'Swiss',
+                CY: 'Cypriot',
+                CZ: 'Czech',
+                DE: 'German',
+                DK: 'Danish',
+                EE: 'Estonian',
+                ES: 'Spanish',
+                FI: 'Finnish',
+                FR: 'French',
+                GB: 'United Kingdom',
+                GR: 'Greek',
+                EL: 'Greek',
+                HU: 'Hungarian',
+                HR: 'Croatian',
+                IE: 'Irish',
+                IT: 'Italian',
+                LT: 'Lithuanian',
+                LU: 'Luxembourg',
+                LV: 'Latvian',
+                MT: 'Maltese',
+                NL: 'Dutch',
+                NO: 'Norwegian',
+                PL: 'Polish',
+                PT: 'Portuguese',
+                RO: 'Romanian',
+                RU: 'Russian',
+                RS: 'Serbian',
+                SE: 'Swedish',
+                SI: 'Slovenian',
+                SK: 'Slovak'
+            }
+        },
+        vin: {
+            'default': 'Please enter a valid VIN number'
+        },
+        zipCode: {
+            'default': 'Please enter a valid zip code',
+            countryNotSupported: 'The country code %s is not supported',
+            country: 'Please enter a valid %s',
+            countries: {
+                'CA': 'Canadian postal code',
+                'DK': 'Danish postal code',
+                'GB': 'United Kingdom postal code',
+                'IT': 'Italian postal code',
+                'NL': 'Dutch postal code',
+                'SE': 'Swiss postal code',
+                'SG': 'Singapore postal code',
+                'US': 'US zip code'
+            }
+        }
+    });
+}(window.jQuery));

+ 1 - 1
src/js/languages/vi_VN.js

@@ -89,7 +89,7 @@
                 EE: 'Estonia',
                 ES: 'Tây Ban Nha',
                 FI: 'Phần Lan',
-                FO: 'đảo Faroe',
+                FO: 'Đảo Faroe',
                 FR: 'Pháp',
                 GB: 'Vương quốc Anh',
                 GE: 'Georgia',

+ 1 - 1
src/js/validator/base64.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.base64 = $.extend($.fn.bootstrapValidator.i18n.base64 || {}, {
-        'default': 'The value is not a valid base 64 encoded'
+        'default': 'Please enter a valid base 64 encoded'
     });
 
     $.fn.bootstrapValidator.validators.base64 = {

+ 2 - 2
src/js/validator/between.js

@@ -1,7 +1,7 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.between = $.extend($.fn.bootstrapValidator.i18n.between || {}, {
-        'default': 'The value must be between %s and %s',
-        notInclusive: 'The value must be between %s and %s strictly',
+        'default': 'Please enter a value between %s and %s',
+        notInclusive: 'Please enter a value between %s and %s strictly',
 
         getMessage: function(options) {
             return (options.inclusive === true || options.inclusive == undefined)

+ 1 - 1
src/js/validator/callback.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.callback = $.extend($.fn.bootstrapValidator.i18n.callback || {}, {
-        'default': 'The value is not valid'
+        'default': 'Please enter a valid value'
     });
 
     $.fn.bootstrapValidator.validators.callback = {

+ 1 - 1
src/js/validator/choice.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.choice = $.extend($.fn.bootstrapValidator.i18n.choice || {}, {
-        'default': 'The value is not valid',
+        'default': 'Please enter a valid value',
         less: 'Please choose %s options at minimum',
         more: 'Please choose %s options at maximum',
         between: 'Please choose %s - %s options',

+ 1 - 1
src/js/validator/creditCard.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.creditCard = $.extend($.fn.bootstrapValidator.i18n.creditCard || {}, {
-        'default': 'The value is not a valid credit card number'
+        'default': 'Please enter a valid credit card number'
     });
 
     $.fn.bootstrapValidator.validators.creditCard = {

+ 1 - 1
src/js/validator/cusip.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.cusip = $.extend($.fn.bootstrapValidator.i18n.cusip || {}, {
-        'default': 'The value is not a valid CUSIP number'
+        'default': 'Please enter a valid CUSIP number'
     });
 
     $.fn.bootstrapValidator.validators.cusip = {

+ 1 - 1
src/js/validator/cvv.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.cvv = $.extend($.fn.bootstrapValidator.i18n.cvv || {}, {
-        'default': 'The value is not a valid CVV number'
+        'default': 'Please enter a valid CVV number'
     });
 
     $.fn.bootstrapValidator.validators.cvv = {

+ 1 - 1
src/js/validator/date.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.date = $.extend($.fn.bootstrapValidator.i18n.date || {}, {
-        'default': 'The value is not a valid date'
+        'default': 'Please enter a valid date'
     });
 
     $.fn.bootstrapValidator.validators.date = {

+ 1 - 1
src/js/validator/digits.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.digits = $.extend($.fn.bootstrapValidator.i18n.digits || {}, {
-        'default': 'The value can contain only digits'
+        'default': 'Please enter only digits'
     });
 
     $.fn.bootstrapValidator.validators.digits = {

+ 1 - 1
src/js/validator/ean.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.ean = $.extend($.fn.bootstrapValidator.i18n.ean || {}, {
-        'default': 'The value is not a valid EAN number'
+        'default': 'Please enter a valid EAN number'
     });
 
     $.fn.bootstrapValidator.validators.ean = {

+ 1 - 1
src/js/validator/emailAddress.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.emailAddress = $.extend($.fn.bootstrapValidator.i18n.emailAddress || {}, {
-        'default': 'The value is not a valid email address'
+        'default': 'Please enter a valid email address'
     });
 
     $.fn.bootstrapValidator.validators.emailAddress = {

+ 1 - 1
src/js/validator/file.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.file = $.extend($.fn.bootstrapValidator.i18n.file || {}, {
-        'default': 'The selected file is not valid'
+        'default': 'Please choose a valid file'
     });
 
     $.fn.bootstrapValidator.validators.file = {

+ 2 - 2
src/js/validator/greaterThan.js

@@ -1,7 +1,7 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.greaterThan = $.extend($.fn.bootstrapValidator.i18n.greaterThan || {}, {
-        'default': 'The value must be greater than or equal to %s',
-        notInclusive: 'The value must be greater than %s',
+        'default': 'Please enter a value greater than or equal to %s',
+        notInclusive: 'Please enter a value greater than %s',
 
         getMessage: function(options) {
             return (options.inclusive === true || options.inclusive == undefined)

+ 1 - 1
src/js/validator/grid.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.grid = $.extend($.fn.bootstrapValidator.i18n.grid || {}, {
-        'default': 'The value is not a valid GRId number'
+        'default': 'Please enter a valid GRId number'
     });
 
     $.fn.bootstrapValidator.validators.grid = {

+ 1 - 1
src/js/validator/hex.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.hex = $.extend($.fn.bootstrapValidator.i18n.hex || {}, {
-        'default': 'The value is not a valid hexadecimal number'
+        'default': 'Please enter a valid hexadecimal number'
     });
 
     $.fn.bootstrapValidator.validators.hex = {

+ 1 - 1
src/js/validator/hexColor.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.hexColor = $.extend($.fn.bootstrapValidator.i18n.hexColor || {}, {
-        'default': 'The value is not a valid hex color'
+        'default': 'Please enter a valid hex color'
     });
 
     $.fn.bootstrapValidator.validators.hexColor = {

+ 2 - 2
src/js/validator/iban.js

@@ -1,8 +1,8 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.iban = $.extend($.fn.bootstrapValidator.i18n.iban || {}, {
-        'default': 'The value is not a valid IBAN number',
+        'default': 'Please enter a valid IBAN number',
         countryNotSupported: 'The country code %s is not supported',
-        country: 'The value is not a valid IBAN number in %s',
+        country: 'Please enter a valid IBAN number in %s',
         countries: {
             AD: 'Andorra',
             AE: 'United Arab Emirates',

+ 2 - 2
src/js/validator/id.js

@@ -1,8 +1,8 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.id = $.extend($.fn.bootstrapValidator.i18n.id || {}, {
-        'default': 'The value is not a valid identification number',
+        'default': 'Please enter a valid identification number',
         countryNotSupported: 'The country code %s is not supported',
-        country: 'The value is not a valid %s identification number',
+        country: 'Please enter a valid %s identification number',
         countries: {
             BA: 'Bosnia and Herzegovina',
             BG: 'Bulgarian',

+ 1 - 1
src/js/validator/imei.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.imei = $.extend($.fn.bootstrapValidator.i18n.imei || {}, {
-        'default': 'The value is not a valid IMEI number'
+        'default': 'Please enter a valid IMEI number'
     });
 
     $.fn.bootstrapValidator.validators.imei = {

+ 1 - 1
src/js/validator/integer.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.integer = $.extend($.fn.bootstrapValidator.i18n.integer || {}, {
-        'default': 'The value is not a valid number'
+        'default': 'Please enter a valid number'
     });
 
     $.fn.bootstrapValidator.validators.integer = {

+ 1 - 1
src/js/validator/ip.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.ip = $.extend($.fn.bootstrapValidator.i18n.ip || {}, {
-        'default': 'The value is not a valid IP address'
+        'default': 'Please enter a valid IP address'
     });
 
     $.fn.bootstrapValidator.validators.ip = {

+ 1 - 1
src/js/validator/isbn.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.isbn = $.extend($.fn.bootstrapValidator.i18n.isbn || {}, {
-        'default': 'The value is not a valid ISBN number'
+        'default': 'Please enter a valid ISBN number'
     });
 
     $.fn.bootstrapValidator.validators.isbn = {

+ 1 - 1
src/js/validator/isin.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.isin = $.extend($.fn.bootstrapValidator.i18n.isin || {}, {
-        'default': 'The value is not a valid ISIN number'
+        'default': 'Please enter a valid ISIN number'
     });
 
     $.fn.bootstrapValidator.validators.isin = {

+ 1 - 1
src/js/validator/ismn.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.ismn = $.extend($.fn.bootstrapValidator.i18n.ismn || {}, {
-        'default': 'The value is not a valid ISMN number'
+        'default': 'Please enter a valid ISMN number'
     });
 
     $.fn.bootstrapValidator.validators.ismn = {

+ 1 - 1
src/js/validator/issn.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.issn = $.extend($.fn.bootstrapValidator.i18n.issn || {}, {
-        'default': 'The value is not a valid ISSN number'
+        'default': 'Please enter a valid ISSN number'
     });
 
     $.fn.bootstrapValidator.validators.issn = {

+ 2 - 2
src/js/validator/lessThan.js

@@ -1,7 +1,7 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.lessThan = $.extend($.fn.bootstrapValidator.i18n.lessThan || {}, {
-        'default': 'The value must be less than or equal to %s',
-        notInclusive: 'The value must be less than %s',
+        'default': 'Please enter a value less than or equal to %s',
+        notInclusive: 'Please enter a value less than %s',
 
         getMessage: function(options) {
             return (options.inclusive === true || options.inclusive == undefined)

+ 1 - 1
src/js/validator/mac.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.mac = $.extend($.fn.bootstrapValidator.i18n.mac || {}, {
-        'default': 'The value is not a valid MAC address'
+        'default': 'Please enter a valid MAC address'
     });
 
     $.fn.bootstrapValidator.validators.mac = {

+ 1 - 1
src/js/validator/notEmpty.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.notEmpty = $.extend($.fn.bootstrapValidator.i18n.notEmpty || {}, {
-        'default': 'The value is required'
+        'default': 'Please enter a value'
     });
 
     $.fn.bootstrapValidator.validators.notEmpty = {

+ 1 - 1
src/js/validator/numeric.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.numeric = $.extend($.fn.bootstrapValidator.i18n.numeric || {}, {
-        'default': 'The value is not a valid number'
+        'default': 'Please enter a valid float number'
     });
 
     $.fn.bootstrapValidator.validators.numeric = {

+ 2 - 2
src/js/validator/phone.js

@@ -1,8 +1,8 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.phone = $.extend($.fn.bootstrapValidator.i18n.phone || {}, {
-        'default': 'The value is not a valid phone number',
+        'default': 'Please enter a valid phone number',
         countryNotSupported: 'The country code %s is not supported',
-        country: 'The value is not a valid phone number in %s',
+        country: 'Please enter a valid phone number in %s',
         countries: {
             GB: 'United Kingdom',
             US: 'USA'

+ 1 - 1
src/js/validator/regexp.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.regexp = $.extend($.fn.bootstrapValidator.i18n.regexp || {}, {
-        'default': 'The value does not match the pattern'
+        'default': 'Please enter a value matching the pattern'
     });
 
     $.fn.bootstrapValidator.validators.regexp = {

+ 1 - 1
src/js/validator/remote.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.remote = $.extend($.fn.bootstrapValidator.i18n.remote || {}, {
-        'default': 'The value is not valid'
+        'default': 'Please enter a valid value'
     });
 
     $.fn.bootstrapValidator.validators.remote = {

+ 1 - 1
src/js/validator/rtn.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.rtn = $.extend($.fn.bootstrapValidator.i18n.rtn || {}, {
-        'default': 'The value is not a valid RTN number'
+        'default': 'Please enter a valid RTN number'
     });
 
     $.fn.bootstrapValidator.validators.rtn = {

+ 1 - 1
src/js/validator/sedol.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.sedol = $.extend($.fn.bootstrapValidator.i18n.sedol || {}, {
-        'default': 'The value is not a valid SEDOL number'
+        'default': 'Please enter a valid SEDOL number'
     });
 
     $.fn.bootstrapValidator.validators.sedol = {

+ 1 - 1
src/js/validator/siren.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.siren = $.extend($.fn.bootstrapValidator.i18n.siren || {}, {
-        'default': 'The value is not a valid siren number'
+        'default': 'Please enter a valid SIREN number'
     });
 
 	$.fn.bootstrapValidator.validators.siren = {

+ 1 - 1
src/js/validator/siret.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.siret = $.extend($.fn.bootstrapValidator.i18n.siret || {}, {
-        'default': 'The value is not a valid siret number'
+        'default': 'Please enter a valid SIRET number'
     });
 
 	$.fn.bootstrapValidator.validators.siret = {

+ 1 - 1
src/js/validator/step.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.step = $.extend($.fn.bootstrapValidator.i18n.step || {}, {
-        'default': 'The value is not a valid step of %s',
+        'default': 'Please enter a valid step of %s',
 
         getMessage: function(options) {
             return $.fn.bootstrapValidator.helpers.format(this['default'], [options.step]);

+ 2 - 2
src/js/validator/stringCase.js

@@ -1,7 +1,7 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.stringCase = $.extend($.fn.bootstrapValidator.i18n.stringCase || {}, {
-        'default': 'The value must be lowercase',
-        upper: 'The value must be uppercase',
+        'default': 'Please enter only lowercase characters',
+        upper: 'Please enter only uppercase characters',
 
         getMessage: function(options) {
             var stringCase = (options['case'] || 'lower').toLowerCase();

+ 4 - 4
src/js/validator/stringLength.js

@@ -1,9 +1,9 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.stringLength = $.extend($.fn.bootstrapValidator.i18n.stringLength || {}, {
-        'default': 'The value length is not valid',
-        less: 'The value must be less than %s characters long',
-        more: 'The value must be more than %s characters long',
-        between: 'The value must be between %s and %s characters long',
+        'default': 'Please enter a value with valid length',
+        less: 'Please enter less than %s characters',
+        more: 'Please enter more than %s characters',
+        between: 'Please enter value between %s and %s characters long',
 
         getMessage: function(options) {
             switch (true) {

+ 1 - 1
src/js/validator/uri.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.uri = $.extend($.fn.bootstrapValidator.i18n.uri || {}, {
-        'default': 'The value is not a valid URI'
+        'default': 'Please enter a valid URI'
     });
 
     $.fn.bootstrapValidator.validators.uri = {

+ 2 - 2
src/js/validator/uuid.js

@@ -1,7 +1,7 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.uuid = $.extend($.fn.bootstrapValidator.i18n.uuid || {}, {
-        'default': 'The value is not a valid UUID',
-        version: 'The value is not a valid UUID version %s',
+        'default': 'Please enter a valid UUID number',
+        version: 'Please enter a valid UUID version %s number',
 
         getMessage: function(options) {
             return (options.version)

+ 2 - 2
src/js/validator/vat.js

@@ -1,8 +1,8 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.vat = $.extend($.fn.bootstrapValidator.i18n.vat || {}, {
-        'default': 'The value is not a valid VAT number',
+        'default': 'Please enter a valid VAT number',
         countryNotSupported: 'The country code %s is not supported',
-        country: 'The value is not a valid %s VAT number',
+        country: 'Please enter a valid %s VAT number',
         countries: {
             AT: 'Austrian',
             BE: 'Belgian',

+ 1 - 1
src/js/validator/vin.js

@@ -1,6 +1,6 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.vin = $.extend($.fn.bootstrapValidator.i18n.vin || {}, {
-        'default': 'The value is not a valid VIN number'
+        'default': 'Please enter a valid VIN number'
     });
 
     $.fn.bootstrapValidator.validators.vin = {

+ 2 - 2
src/js/validator/zipCode.js

@@ -1,8 +1,8 @@
 (function($) {
     $.fn.bootstrapValidator.i18n.zipCode = $.extend($.fn.bootstrapValidator.i18n.zipCode || {}, {
-        'default': 'The value is not a valid zip code',
+        'default': 'Please enter a valid zip code',
         countryNotSupported: 'The country code %s is not supported',
-        country: 'The value is not a valid %s',
+        country: 'Please enter a valid %s',
         countries: {
             'CA': 'Canadian postal code',
             'DK': 'Danish postal code',