Skip to content

Commit

Permalink
Update DanishLanguage.cs
Browse files Browse the repository at this point in the history
Changed danish text for:
NotEmptyValidator
NotEqualValidator
NotNullValidator

Using the word "må" (english: must) instead of "bør" (english: should). And in the "NotNullValidator" the word "tomme" is changed to "tom". "Tomme" is plural.
  • Loading branch information
cfaagaard authored and JeremySkinner committed Sep 19, 2022
1 parent c39536a commit 1c7cf0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/FluentValidation/Resources/Languages/DanishLanguage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ internal class DanishLanguage {
"MaximumLengthValidator" => "'{PropertyName}' skal være mindre end eller lig med {MaxLength} tegn. Du indtastede {TotalLength} tegn.",
"LessThanOrEqualValidator" => "'{PropertyName}' skal være mindre end eller lig med '{ComparisonValue}'.",
"LessThanValidator" => "'{PropertyName}' skal være mindre end '{ComparisonValue}'.",
"NotEmptyValidator" => "'{PropertyName}' bør ikke være tom.",
"NotEqualValidator" => "'{PropertyName}' bør ikke være lig med '{ComparisonValue}'.",
"NotNullValidator" => "'{PropertyName}' må ikke være tomme.",
"NotEmptyValidator" => "'{PropertyName}' ikke være tom.",
"NotEqualValidator" => "'{PropertyName}' ikke være lig med '{ComparisonValue}'.",
"NotNullValidator" => "'{PropertyName}' må ikke være tom.",
"PredicateValidator" => "Den angivne betingelse var ikke opfyldt for '{PropertyName}'.",
"AsyncPredicateValidator" => "Den angivne betingelse var ikke opfyldt for '{PropertyName}'.",
"RegularExpressionValidator" => "'{PropertyName}' er ikke i det rigtige format.",
Expand Down

0 comments on commit 1c7cf0f

Please sign in to comment.