Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix german translation #63

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# any constraints
org.valiktor.constraints.Null.message=Muss vorhanden sein
org.valiktor.constraints.NotNull.message=Darf nicht vorhanden sein
org.valiktor.constraints.Null.message=Darf nicht vorhanden sein
org.valiktor.constraints.NotNull.message=Muss vorhanden sein
org.valiktor.constraints.Equals.message=Muss gleich {value} sein
org.valiktor.constraints.NotEquals.message=Darf nicht gleich {value} sein
org.valiktor.constraints.In.message=Muss in {values} sein
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class NullTest {
assertThat(Null.interpolatedMessages()).containsExactly(
entry(SupportedLocales.DEFAULT, "Must be null"),
entry(SupportedLocales.CA, "Ha de ser nul"),
entry(SupportedLocales.DE, "Muss vorhanden sein"),
entry(SupportedLocales.DE, "Darf nicht vorhanden sein"),
entry(SupportedLocales.EN, "Must be null"),
entry(SupportedLocales.ES, "Tiene que ser nulo"),
entry(SupportedLocales.JA, "null である必要があります"),
Expand All @@ -45,7 +45,7 @@ class NotNullTest {
assertThat(NotNull.interpolatedMessages()).containsExactly(
entry(SupportedLocales.DEFAULT, "Must not be null"),
entry(SupportedLocales.CA, "No pot ser nul"),
entry(SupportedLocales.DE, "Darf nicht vorhanden sein"),
entry(SupportedLocales.DE, "Muss vorhanden sein"),
entry(SupportedLocales.EN, "Must not be null"),
entry(SupportedLocales.ES, "No puede ser nulo"),
entry(SupportedLocales.JA, "null 以外である必要があります"),
Expand Down