en_US.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  1. (function($) {
  2. /**
  3. * Default English package. It's included in the dist, so you do NOT need to include it to your head tag
  4. * The only reason I put it here is that you can clone it, and translate it into your language
  5. */
  6. $.fn.bootstrapValidator.i18n = $.extend(true, $.fn.bootstrapValidator.i18n, {
  7. base64: {
  8. 'default': 'Please enter a valid base 64 encoded'
  9. },
  10. between: {
  11. 'default': 'Please enter a value between %s and %s',
  12. notInclusive: 'Please enter a value between %s and %s strictly'
  13. },
  14. callback: {
  15. 'default': 'Please enter a valid value'
  16. },
  17. choice: {
  18. 'default': 'Please enter a valid value',
  19. less: 'Please choose %s options at minimum',
  20. more: 'Please choose %s options at maximum',
  21. between: 'Please choose %s - %s options'
  22. },
  23. creditCard: {
  24. 'default': 'Please enter a valid credit card number'
  25. },
  26. cusip: {
  27. 'default': 'Please enter a valid CUSIP number'
  28. },
  29. cvv: {
  30. 'default': 'Please enter a valid CVV number'
  31. },
  32. date: {
  33. 'default': 'Please enter a valid date'
  34. },
  35. different: {
  36. 'default': 'Please enter a different value'
  37. },
  38. digits: {
  39. 'default': 'Please enter only digits'
  40. },
  41. ean: {
  42. 'default': 'Please enter a valid EAN number'
  43. },
  44. emailAddress: {
  45. 'default': 'Please enter a valid email address'
  46. },
  47. file: {
  48. 'default': 'Please choose a valid file'
  49. },
  50. greaterThan: {
  51. 'default': 'Please enter a value greater than or equal to %s',
  52. notInclusive: 'Please enter a value greater than %s'
  53. },
  54. grid: {
  55. 'default': 'Please enter a valid GRId number'
  56. },
  57. hex: {
  58. 'default': 'Please enter a valid hexadecimal number'
  59. },
  60. hexColor: {
  61. 'default': 'Please enter a valid hex color'
  62. },
  63. iban: {
  64. 'default': 'Please enter a valid IBAN number',
  65. countryNotSupported: 'The country code %s is not supported',
  66. country: 'Please enter a valid IBAN number in %s',
  67. countries: {
  68. AD: 'Andorra',
  69. AE: 'United Arab Emirates',
  70. AL: 'Albania',
  71. AO: 'Angola',
  72. AT: 'Austria',
  73. AZ: 'Azerbaijan',
  74. BA: 'Bosnia and Herzegovina',
  75. BE: 'Belgium',
  76. BF: 'Burkina Faso',
  77. BG: 'Bulgaria',
  78. BH: 'Bahrain',
  79. BI: 'Burundi',
  80. BJ: 'Benin',
  81. BR: 'Brazil',
  82. CH: 'Switzerland',
  83. CI: 'Ivory Coast',
  84. CM: 'Cameroon',
  85. CR: 'Costa Rica',
  86. CV: 'Cape Verde',
  87. CY: 'Cyprus',
  88. CZ: 'Czech',
  89. DE: 'Germany',
  90. DK: 'Denmark',
  91. DO: 'Dominica',
  92. DZ: 'Algeria',
  93. EE: 'Estonia',
  94. ES: 'Spain',
  95. FI: 'Finland',
  96. FO: 'Faroe Islands',
  97. FR: 'France',
  98. GB: 'United Kingdom',
  99. GE: 'Georgia',
  100. GI: 'Gibraltar',
  101. GL: 'Greenland',
  102. GR: 'Greece',
  103. GT: 'Guatemala',
  104. HR: 'Croatia',
  105. HU: 'Hungary',
  106. IE: 'Ireland',
  107. IL: 'Israel',
  108. IR: 'Iran',
  109. IS: 'Iceland',
  110. IT: 'Italy',
  111. JO: 'Jordan',
  112. KW: 'Kuwait',
  113. KZ: 'Kazakhstan',
  114. LB: 'Lebanon',
  115. LI: 'Liechtenstein',
  116. LT: 'Lithuania',
  117. LU: 'Luxembourg',
  118. LV: 'Latvia',
  119. MC: 'Monaco',
  120. MD: 'Moldova',
  121. ME: 'Montenegro',
  122. MG: 'Madagascar',
  123. MK: 'Macedonia',
  124. ML: 'Mali',
  125. MR: 'Mauritania',
  126. MT: 'Malta',
  127. MU: 'Mauritius',
  128. MZ: 'Mozambique',
  129. NL: 'Netherlands',
  130. NO: 'Norway',
  131. PK: 'Pakistan',
  132. PL: 'Poland',
  133. PS: 'Palestine',
  134. PT: 'Portugal',
  135. QA: 'Qatar',
  136. RO: 'Romania',
  137. RS: 'Serbia',
  138. SA: 'Saudi Arabia',
  139. SE: 'Sweden',
  140. SI: 'Slovenia',
  141. SK: 'Slovakia',
  142. SM: 'San Marino',
  143. SN: 'Senegal',
  144. TN: 'Tunisia',
  145. TR: 'Turkey',
  146. VG: 'Virgin Islands, British'
  147. }
  148. },
  149. id: {
  150. 'default': 'Please enter a valid identification number',
  151. countryNotSupported: 'The country code %s is not supported',
  152. country: 'Please enter a valid identification number in %s',
  153. countries: {
  154. BA: 'Bosnia and Herzegovina',
  155. BG: 'Bulgaria',
  156. BR: 'Brazil',
  157. CH: 'Switzerland',
  158. CL: 'Chile',
  159. CN: 'China',
  160. CZ: 'Czech',
  161. DK: 'Denmark',
  162. EE: 'Estonia',
  163. ES: 'Spain',
  164. FI: 'Finland',
  165. HR: 'Croatia',
  166. IE: 'Ireland',
  167. IS: 'Iceland',
  168. LT: 'Lithuania',
  169. LV: 'Latvia',
  170. ME: 'Montenegro',
  171. MK: 'Macedonia',
  172. NL: 'Netherlands',
  173. RO: 'Romania',
  174. RS: 'Serbia',
  175. SE: 'Sweden',
  176. SI: 'Slovenia',
  177. SK: 'Slovakia',
  178. SM: 'San Marino',
  179. TH: 'Thailand',
  180. ZA: 'South Africa'
  181. }
  182. },
  183. identical: {
  184. 'default': 'Please enter the same value'
  185. },
  186. imei: {
  187. 'default': 'Please enter a valid IMEI number'
  188. },
  189. imo: {
  190. 'default': 'Please enter a valid IMO number'
  191. },
  192. integer: {
  193. 'default': 'Please enter a valid number'
  194. },
  195. ip: {
  196. 'default': 'Please enter a valid IP address',
  197. ipv4: 'Please enter a valid IPv4 address',
  198. ipv6: 'Please enter a valid IPv6 address'
  199. },
  200. isbn: {
  201. 'default': 'Please enter a valid ISBN number'
  202. },
  203. isin: {
  204. 'default': 'Please enter a valid ISIN number'
  205. },
  206. ismn: {
  207. 'default': 'Please enter a valid ISMN number'
  208. },
  209. issn: {
  210. 'default': 'Please enter a valid ISSN number'
  211. },
  212. lessThan: {
  213. 'default': 'Please enter a value less than or equal to %s',
  214. notInclusive: 'Please enter a value less than %s'
  215. },
  216. mac: {
  217. 'default': 'Please enter a valid MAC address'
  218. },
  219. meid: {
  220. 'default': 'Please enter a valid MEID number'
  221. },
  222. notEmpty: {
  223. 'default': 'Please enter a value'
  224. },
  225. numeric: {
  226. 'default': 'Please enter a valid float number'
  227. },
  228. phone: {
  229. 'default': 'Please enter a valid phone number',
  230. countryNotSupported: 'The country code %s is not supported',
  231. country: 'Please enter a valid phone number in %s',
  232. countries: {
  233. BR: 'Brazil',
  234. CN: 'China',
  235. DK: 'Denmark',
  236. ES: 'Spain',
  237. FR: 'France',
  238. GB: 'United Kingdom',
  239. MA: 'Morocco',
  240. PK: 'Pakistan',
  241. RO: 'Romania',
  242. RU: 'Russia',
  243. TH: 'Thailand',
  244. US: 'USA',
  245. VE: 'Venezuela'
  246. }
  247. },
  248. regexp: {
  249. 'default': 'Please enter a value matching the pattern'
  250. },
  251. remote: {
  252. 'default': 'Please enter a valid value'
  253. },
  254. rtn: {
  255. 'default': 'Please enter a valid RTN number'
  256. },
  257. sedol: {
  258. 'default': 'Please enter a valid SEDOL number'
  259. },
  260. siren: {
  261. 'default': 'Please enter a valid SIREN number'
  262. },
  263. siret: {
  264. 'default': 'Please enter a valid SIRET number'
  265. },
  266. step: {
  267. 'default': 'Please enter a valid step of %s'
  268. },
  269. stringCase: {
  270. 'default': 'Please enter only lowercase characters',
  271. upper: 'Please enter only uppercase characters'
  272. },
  273. stringLength: {
  274. 'default': 'Please enter a value with valid length',
  275. less: 'Please enter less than %s characters',
  276. more: 'Please enter more than %s characters',
  277. between: 'Please enter value between %s and %s characters long'
  278. },
  279. uri: {
  280. 'default': 'Please enter a valid URI'
  281. },
  282. uuid: {
  283. 'default': 'Please enter a valid UUID number',
  284. version: 'Please enter a valid UUID version %s number'
  285. },
  286. vat: {
  287. 'default': 'Please enter a valid VAT number',
  288. countryNotSupported: 'The country code %s is not supported',
  289. country: 'Please enter a valid VAT number in %s',
  290. countries: {
  291. AT: 'Austria',
  292. BE: 'Belgium',
  293. BG: 'Bulgaria',
  294. BR: 'Brazil',
  295. CH: 'Switzerland',
  296. CY: 'Cyprus',
  297. CZ: 'Czech',
  298. DE: 'Germany',
  299. DK: 'Denmark',
  300. EE: 'Estonia',
  301. ES: 'Spain',
  302. FI: 'Finland',
  303. FR: 'France',
  304. GB: 'United Kingdom',
  305. GR: 'Greece',
  306. EL: 'Greece',
  307. HU: 'Hungary',
  308. HR: 'Croatia',
  309. IE: 'Ireland',
  310. IS: 'Iceland',
  311. IT: 'Italy',
  312. LT: 'Lithuania',
  313. LU: 'Luxembourg',
  314. LV: 'Latvia',
  315. MT: 'Malta',
  316. NL: 'Netherlands',
  317. NO: 'Norway',
  318. PL: 'Poland',
  319. PT: 'Portugal',
  320. RO: 'Romania',
  321. RU: 'Russia',
  322. RS: 'Serbia',
  323. SE: 'Sweden',
  324. SI: 'Slovenia',
  325. SK: 'Slovakia',
  326. VE: 'Venezuela',
  327. ZA: 'South Africa'
  328. }
  329. },
  330. vin: {
  331. 'default': 'Please enter a valid VIN number'
  332. },
  333. zipCode: {
  334. 'default': 'Please enter a valid postal code',
  335. countryNotSupported: 'The country code %s is not supported',
  336. country: 'Please enter a valid postal code in %s',
  337. countries: {
  338. BR: 'Brazil',
  339. CA: 'Canada',
  340. DK: 'Denmark',
  341. GB: 'United Kingdom',
  342. IT: 'Italy',
  343. MA: 'Morocco',
  344. NL: 'Netherlands',
  345. RO: 'Romania',
  346. RU: 'Russia',
  347. SE: 'Sweden',
  348. SG: 'Singapore',
  349. US: 'USA'
  350. }
  351. }
  352. });
  353. }(window.jQuery));