adrema/resources/lang/de/validation.php

201 lines
9.4 KiB
PHP
Raw Normal View History

2020-04-10 23:39:05 +02:00
<?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages.
|
*/
2022-09-01 23:56:34 +02:00
'accepted' => ':attribute muss akzeptiert werden.',
'active_url' => ':attribute ist keine gültige Internet-Adresse.',
'after' => ':attribute muss ein Datum nach dem :date sein.',
'after_or_equal' => ':attribute muss ein Datum nach dem :date oder gleich dem :date sein.',
'alpha' => ':attribute darf nur aus Buchstaben bestehen.',
'alpha_dash' => ':attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen.',
'alpha_num' => ':attribute darf nur aus Buchstaben und Zahlen bestehen.',
'array' => ':attribute muss ein Array sein.',
'before' => ':attribute muss ein Datum vor dem :date sein.',
2020-04-10 23:39:05 +02:00
'before_or_equal' => ':attribute muss ein Datum vor dem :date oder gleich dem :date sein.',
2022-09-01 23:56:34 +02:00
'between' => [
2020-04-10 23:39:05 +02:00
'numeric' => ':attribute muss zwischen :min & :max liegen.',
2022-09-01 23:56:34 +02:00
'file' => ':attribute muss zwischen :min & :max Kilobytes groß sein.',
'string' => ':attribute muss zwischen :min & :max Zeichen lang sein.',
'array' => ':attribute muss zwischen :min & :max Elemente haben.',
2020-04-10 23:39:05 +02:00
],
2022-12-14 23:20:05 +01:00
'boolean' => ':attribute muss ein Wahrheitswert sein.',
2022-09-01 23:56:34 +02:00
'confirmed' => ':attribute stimmt nicht mit der Bestätigung überein.',
'date' => ':attribute muss ein gültiges Datum sein.',
'date_equals' => ':attribute muss ein Datum gleich :date sein.',
'date_format' => ':attribute entspricht nicht dem gültigen Format für :format.',
'different' => ':attribute und :other müssen sich unterscheiden.',
'digits' => ':attribute muss :digits Stellen haben.',
2020-04-10 23:39:05 +02:00
'digits_between' => ':attribute muss zwischen :min und :max Stellen haben.',
2022-09-01 23:56:34 +02:00
'dimensions' => ':attribute hat ungültige Bildabmessungen.',
'distinct' => ':attribute beinhaltet einen bereits vorhandenen Wert.',
'email' => ':attribute muss eine gültige E-Mail-Adresse sein.',
'ends_with' => ':attribute muss eine der folgenden Endungen aufweisen: :values',
'exists' => ':attribute ist nicht vorhanden.',
'file' => ':attribute muss eine Datei sein.',
'filled' => ':attribute muss ausgefüllt sein.',
'gt' => [
2020-04-10 23:39:05 +02:00
'numeric' => ':attribute muss größer als :value sein.',
2022-09-01 23:56:34 +02:00
'file' => ':attribute muss größer als :value Kilobytes sein.',
'string' => ':attribute muss länger als :value Zeichen sein.',
'array' => ':attribute muss mehr als :value Elemente haben.',
2020-04-10 23:39:05 +02:00
],
'gte' => [
'numeric' => ':attribute muss größer oder gleich :value sein.',
2022-09-01 23:56:34 +02:00
'file' => ':attribute muss größer oder gleich :value Kilobytes sein.',
'string' => ':attribute muss mindestens :value Zeichen lang sein.',
'array' => ':attribute muss mindestens :value Elemente haben.',
2020-04-10 23:39:05 +02:00
],
2022-09-01 23:56:34 +02:00
'image' => ':attribute muss ein Bild sein.',
'in' => 'Der gewählte Wert für :attribute ist ungültig.',
2020-04-10 23:39:05 +02:00
'in_array' => 'Der gewählte Wert für :attribute kommt nicht in :other vor.',
2022-09-01 23:56:34 +02:00
'integer' => ':attribute muss eine ganze Zahl sein.',
'ip' => ':attribute muss eine gültige IP-Adresse sein.',
'ipv4' => ':attribute muss eine gültige IPv4-Adresse sein.',
'ipv6' => ':attribute muss eine gültige IPv6-Adresse sein.',
'json' => ':attribute muss ein gültiger JSON-String sein.',
'lt' => [
2020-04-10 23:39:05 +02:00
'numeric' => ':attribute muss kleiner als :value sein.',
2022-09-01 23:56:34 +02:00
'file' => ':attribute muss kleiner als :value Kilobytes sein.',
'string' => ':attribute muss kürzer als :value Zeichen sein.',
'array' => ':attribute muss weniger als :value Elemente haben.',
2020-04-10 23:39:05 +02:00
],
'lte' => [
'numeric' => ':attribute muss kleiner oder gleich :value sein.',
2022-09-01 23:56:34 +02:00
'file' => ':attribute muss kleiner oder gleich :value Kilobytes sein.',
'string' => ':attribute darf maximal :value Zeichen lang sein.',
'array' => ':attribute darf maximal :value Elemente haben.',
2020-04-10 23:39:05 +02:00
],
'max' => [
'numeric' => ':attribute darf maximal :max sein.',
2022-09-01 23:56:34 +02:00
'file' => ':attribute darf maximal :max Kilobytes groß sein.',
'string' => ':attribute darf maximal :max Zeichen haben.',
'array' => ':attribute darf maximal :max Elemente haben.',
2020-04-10 23:39:05 +02:00
],
2022-09-01 23:56:34 +02:00
'mimes' => ':attribute muss den Dateityp :values haben.',
2020-04-10 23:39:05 +02:00
'mimetypes' => ':attribute muss den Dateityp :values haben.',
2022-09-01 23:56:34 +02:00
'min' => [
2020-04-10 23:39:05 +02:00
'numeric' => ':attribute muss mindestens :min sein.',
2022-09-01 23:56:34 +02:00
'file' => ':attribute muss mindestens :min Kilobytes groß sein.',
'string' => ':attribute muss mindestens :min Zeichen lang sein.',
'array' => ':attribute muss mindestens :min Elemente haben.',
2020-04-10 23:39:05 +02:00
],
2022-09-01 23:56:34 +02:00
'not_in' => 'Der gewählte Wert für :attribute ist ungültig.',
'not_regex' => ':attribute hat ein ungültiges Format.',
'numeric' => ':attribute muss eine Zahl sein.',
'password' => 'Das Passwort ist falsch.',
'present' => ':attribute muss vorhanden sein.',
'regex' => ':attribute Format ist ungültig.',
'required' => ':attribute ist erforderlich.',
'required_if' => ':attribute muss ausgefüllt werden, wenn :other den Wert :value hat.',
'required_unless' => ':attribute muss ausgefüllt werden, wenn :other nicht den Wert :values hat.',
'required_with' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.',
'required_with_all' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.',
'required_without' => ':attribute muss ausgefüllt werden, wenn :values nicht ausgefüllt wurde.',
2020-04-10 23:39:05 +02:00
'required_without_all' => ':attribute muss ausgefüllt werden, wenn keines der Felder :values ausgefüllt wurde.',
2022-09-01 23:56:34 +02:00
'same' => ':attribute und :other müssen übereinstimmen.',
'size' => [
2020-04-10 23:39:05 +02:00
'numeric' => ':attribute muss gleich :size sein.',
2022-09-01 23:56:34 +02:00
'file' => ':attribute muss :size Kilobyte groß sein.',
'string' => ':attribute muss :size Zeichen lang sein.',
'array' => ':attribute muss genau :size Elemente haben.',
2020-04-10 23:39:05 +02:00
],
'starts_with' => ':attribute muss mit einem der folgenden Anfänge aufweisen: :values',
2022-09-01 23:56:34 +02:00
'string' => ':attribute muss ein String sein.',
'timezone' => ':attribute muss eine gültige Zeitzone sein.',
'unique' => ':attribute ist bereits vergeben.',
'uploaded' => ':attribute konnte nicht hochgeladen werden.',
'url' => ':attribute muss eine URL sein.',
'uuid' => ':attribute muss ein UUID sein.',
2023-03-03 00:30:33 +01:00
'phone_number' => ':attribute ist keine valide Nummer.',
2020-04-10 23:39:05 +02:00
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute.rule" to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap attribute place-holders
| with something more reader friendly such as E-Mail Address instead
| of "email". This simply helps us make messages a little cleaner.
|
*/
'attributes' => [
2022-09-01 23:56:34 +02:00
'name' => 'Name',
'username' => 'Benutzername',
'email' => 'E-Mail Adresse',
'first_name' => 'Vorname',
'last_name' => 'Nachname',
'password' => 'Passwort',
2020-04-10 23:39:05 +02:00
'password_confirmation' => 'Passwort Bestätigung',
2022-09-01 23:56:34 +02:00
'city' => 'Stadt',
'country' => 'Land',
'address' => 'Adresse',
'phone' => 'Telefonnummer',
'mobile' => 'Handynummer',
'age' => 'Alter',
'sex' => 'Geschlecht',
'gender' => 'Geschlecht',
'day' => 'Tag',
'month' => 'Monat',
'year' => 'Jahr',
'hour' => 'Stunde',
'minute' => 'Minute',
'second' => 'Sekunde',
'title' => 'Titel',
'content' => 'Inhalt',
'description' => 'Beschreibung',
'excerpt' => 'Auszug',
'date' => 'Datum',
'time' => 'Uhrzeit',
'available' => 'verfügbar',
'size' => 'Größe',
'mglnr' => 'Mitgliedsnummer',
'groupid' => 'Gruppierungsnummer',
2021-06-22 23:00:14 +02:00
'firstname' => 'Vorname',
'lastname' => 'Nachname',
'birthday' => 'Geburtsdatum',
'country_id' => 'Land',
'joined_at' => 'Eintrittsdatum',
'zip' => 'PLZ',
'location' => 'Ort',
'nationality_id' => 'Staatsangehörigkeit',
2021-06-23 01:05:17 +02:00
'first_group_id' => 'Erste Untertätigkeit',
'first_activity_id' => 'Erste Tätigkeit',
'first_subactivity_id' => 'Erste Untergliederung',
2021-06-24 00:12:47 +02:00
'fee_id' => 'Beitragsart',
2021-11-19 22:58:27 +01:00
'course_id' => 'Baustein',
'completed_at' => 'Datum',
'event_name' => 'Veranstaltung',
'organizer' => 'Veranstalter',
'subscription_id' => 'Beitragsart',
2023-02-15 01:36:59 +01:00
'subactivities' => 'Untergliederungen',
2020-04-10 23:39:05 +02:00
],
];