Skip to content

Add missing "de" vars and fix translation issues #32

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

Merged
merged 2 commits into from
Apr 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/Resources/i18n/de.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
'rule.ipv4' => ':attribute muss eine gültige IPv4-Adresse sein',
'rule.ipv6' => ':attribute muss eine gültige IPv6-Adresse sein',
'rule.json' => ':attribute muss eine gültige Zeichenkette im JSON-Format sein',
'rule.length' => ':attribute muss eine Zeichenkette aus genau :length Zeichen sein',
'rule.lowercase' => ':attribute darf nur Kleinbuchstaben enthalten',
'rule.max' => 'Der größte erlaubte Wert für :attribute ist :max',
'rule.mimes' => 'Der Dateityp von :attribute muss einer der folgenden sein :allowed_types',
Expand All @@ -48,8 +49,9 @@
'rule.regex' => ':attribute entspricht nicht dem erwarteten Format',
'rule.rejected' => ':attribute muss einen der folgenden Werte enthalten: :rejected',
'rule.required' => ':attribute ist erforderlich',
'rule.required_if' => ':attribute ist erforderlich, :field dem folgenden Wert entspricht: :values',
'rule.required_unless' => ':attribute ist erforderlich, wenn :fields einem der folgenden Werte entspricht :values',
'rule.requires' => ':attribute erfordert :fields',
'rule.required_if' => ':attribute ist erforderlich, wenn :field einem der folgenden Werte entspricht: :values',
'rule.required_unless' => ':attribute ist erforderlich, außer wenn :field einem der folgenden Werte entspricht :values',
'rule.required_with' => ':attribute ist zusammen mit den folgenden Feldern erforderlich: :fields',
'rule.required_with_all' => ':attribute ist zusammen mit allen der folgenden Felder erforderlich: :fields',
'rule.required_without' => ':attribute ist erforderlich, wenn folgende Feldler leer sind: :fields',
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/i18n/en.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
'rule.required' => ':attribute is required',
'rule.requires' => ':attribute requires :fields',
'rule.required_if' => ':attribute is required if :field has a value of :values',
'rule.required_unless' => ':attribute is required if :fields has one of :values',
'rule.required_unless' => ':attribute is required if :field has one of :values',
'rule.required_with' => ':attribute is required with :fields',
'rule.required_with_all' => ':attribute is required with all of :fields',
'rule.required_without' => ':attribute is required when :fields are empty',
Expand Down