-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from BaldFabi/master
Feat: Add localization for german
- Loading branch information
Showing
3 changed files
with
76 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
package valgo | ||
|
||
func getLocaleDe() *Locale { | ||
return &Locale{ | ||
ErrorKeyBetween: "{{title}} muss zwischen \"{{min}}\" und \"{{max}}\" sein", | ||
ErrorKeyNotBetween: "{{title}} darf nicht zwischen \"{{min}}\" und \"{{max}}\" sein", | ||
|
||
ErrorKeyBlank: "{{title}} darf nicht ausgefüllt sein", | ||
ErrorKeyNotBlank: "{{title}} muss ausgefüllt sein", | ||
|
||
ErrorKeyEmpty: "{{title}} muss leer sein", | ||
ErrorKeyNotEmpty: "{{title}} darf nicht leer sein", | ||
|
||
ErrorKeyEqualTo: "{{title}} muss identisch zu \"{{value}}\" sein", | ||
ErrorKeyNotEqualTo: "{{title}} darf nicht identisch zu \"{{value}}\" sein", | ||
|
||
ErrorKeyFalse: "{{title}} muss \"false\" sein", | ||
ErrorKeyNotFalse: "{{title}} darf nicht \"false\" sein", | ||
|
||
ErrorKeyGreaterOrEqualTo: "{{title}} muss größer oder gleich als \"{{value}}\" sein", | ||
ErrorKeyNotGreaterOrEqualTo: "{{title}} darf nicht größer oder gleich als \"{{value}}\" sein", | ||
|
||
ErrorKeyGreaterThan: "{{title}} muss größer als \"{{value}}\" sein", | ||
ErrorKeyNotGreaterThan: "{{title}} darf nicht größer als \"{{value}}\" sein", | ||
|
||
ErrorKeyInSlice: "{{title}} ist nicht gültig", | ||
ErrorKeyNotInSlice: "{{title}} ist nicht gültig", | ||
|
||
ErrorKeyLength: "{{title}} muss exakt \"{{length}}\" Zeichen lang sein", | ||
ErrorKeyNotLength: "{{title}} darf nicht \"{{length}}\" Zeichen lang sein", | ||
|
||
ErrorKeyLengthBetween: "{{title}} muss zwischen \"{{min}}\" und \"{{max}}\" Zeichen lang sein", | ||
ErrorKeyNotLengthBetween: "{{title}} darf nicht zwischen \"{{min}}\" und \"{{max}}\" Zeichen lang sein", | ||
|
||
ErrorKeyLessOrEqualTo: "{{title}} muss kleiner oder gleich als \"{{value}}\" sein", | ||
ErrorKeyNotLessOrEqualTo: "{{title}} darf nicht kleiner oder gleich als \"{{value}}\" sein", | ||
|
||
ErrorKeyLessThan: "{{title}} muss weniger als \"{{value}}\" sein", | ||
ErrorKeyNotLessThan: "{{title}} darf nicht weniger als \"{{value}}\" sein", | ||
|
||
ErrorKeyMatchingTo: "{{title}} muss \"{{regexp}}\" entsprechen", | ||
ErrorKeyNotMatchingTo: "{{title}} darf nicht \"{{regexp}}\" entsprechen", | ||
|
||
ErrorKeyMaxLength: "{{title}} darf nicht länger als \"{{length}}\" sein", | ||
ErrorKeyNotMaxLength: "{{title}} muss länger als \"{{length}}\" sein", | ||
|
||
ErrorKeyMinLength: "{{title}} darf nicht kürzer als \"{{length}}\" sein", | ||
ErrorKeyNotMinLength: "{{title}} muss kürzer als \"{{length}}\" sein", | ||
|
||
ErrorKeyNil: "{{title}} muss \"nil\" sein", | ||
ErrorKeyNotNil: "{{title}} darf nicht \"nil\" sein", | ||
|
||
ErrorKeyPassing: "{{title}} ist nicht gültig", | ||
ErrorKeyNotPassing: "{{title}} ist nicht gültig", | ||
|
||
ErrorKeyTrue: "{{title}} muss \"true\" sein", | ||
ErrorKeyNotTrue: "{{title}} darf nicht \"true\" sein", | ||
|
||
ErrorKeyZero: "{{title}} muss 0 sein", | ||
ErrorKeyNotZero: "{{title}} darf nicht 0 sein", | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters