Skip to content

Commit

Permalink
Localization: Add missing format method (#2075)
Browse files Browse the repository at this point in the history
Closes #2065
  • Loading branch information
RobJohnston authored and Arkni committed Sep 19, 2017
1 parent c62e0d9 commit 3abd20f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/localization/messages_fr.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ $.extend( $.validator.messages, {
creditcardtypes: "Veuillez fournir un numéro de carte de crédit valide.",
ipv4: "Veuillez fournir une adresse IP v4 valide.",
ipv6: "Veuillez fournir une adresse IP v6 valide.",
require_from_group: "Veuillez fournir au moins {0} de ces champs.",
require_from_group: $.validator.format( "Veuillez fournir au moins {0} de ces champs." ),
nifES: "Veuillez fournir un numéro NIF valide.",
nieES: "Veuillez fournir un numéro NIE valide.",
cifES: "Veuillez fournir un numéro CIF valide.",
Expand Down
2 changes: 1 addition & 1 deletion src/localization/messages_tr.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ $.extend( $.validator.messages, {
range: $.validator.format( "Lütfen {0} ile {1} arasında bir değer giriniz." ),
max: $.validator.format( "Lütfen {0} değerine eşit ya da daha küçük bir değer giriniz." ),
min: $.validator.format( "Lütfen {0} değerine eşit ya da daha büyük bir değer giriniz." ),
require_from_group: "Lütfen bu alanların en az {0} tanesini doldurunuz."
require_from_group: $.validator.format( "Lütfen bu alanların en az {0} tanesini doldurunuz." )
} );

0 comments on commit 3abd20f

Please sign in to comment.