[增添]添加了datasource的setting数据库以及默认值
This commit is contained in:
482
vendor/filament/tables/resources/lang/de/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/de/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Abfragegenerator',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operator',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Gruppen',
|
||||
|
||||
'block' => [
|
||||
'label' => '(ODER) Trennung',
|
||||
'or' => 'ODER',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Bedingungen',
|
||||
|
||||
'item' => [
|
||||
'and' => 'UND',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Keine Bedinungen)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'UND',
|
||||
'or' => 'ODER',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ausgefüllt',
|
||||
'inverse' => 'leer',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':Attribut ist vorhangen',
|
||||
'inverse' => ':Attribut ist nicht vorhanden',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist wahr',
|
||||
'inverse' => 'ist falsch',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist wahr',
|
||||
'inverse' => ':attribute ist falsch',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'nach',
|
||||
'inverse' => 'vor',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is after :date',
|
||||
'inverse' => ':attribute is not after :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist vor',
|
||||
'inverse' => 'ist nach',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist vor :date',
|
||||
'inverse' => ':attribute ist nicht vor :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist Datum',
|
||||
'inverse' => 'ist kein Datum',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist :date',
|
||||
'inverse' => ':attribute ist kein :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist ein ',
|
||||
'inverse' => 'ist kein Monat',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist :month',
|
||||
'inverse' => ':attribute ist kein :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist ein Jahr',
|
||||
'inverse' => 'ist kein Jahr',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist ein :year',
|
||||
'inverse' => ':attribute ist kein :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Datum',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Monat',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Jahr',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist gleich',
|
||||
'inverse' => 'ist nicht gleich',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist gleich :number',
|
||||
'inverse' => ':attribute ist nicht gleich :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Maximal',
|
||||
'inverse' => 'Größer als',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist maximal :number',
|
||||
'inverse' => ':attribute ist größer als :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Minimum',
|
||||
'inverse' => 'ist kleiner als',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist Minimum von :number',
|
||||
'inverse' => ':attribute ist kleiner als :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Durchschnitt',
|
||||
'summary' => 'Durchschnittliches :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Max',
|
||||
'summary' => 'Max :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Min',
|
||||
'summary' => 'Min :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Gesamt',
|
||||
'summary' => 'Gesamt von :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Verknüpfung',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Zahl',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Hat',
|
||||
'inverse' => 'Hat nicht',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Hat :count :relationship',
|
||||
'inverse' => 'Hat nicht :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Hat Maximal',
|
||||
'inverse' => 'Hat mehr als',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Hat maximal :count :relationship',
|
||||
'inverse' => 'Hat mehr als :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Hat mindestens',
|
||||
'inverse' => 'Hat weniger als',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Hat mindestens :count :relationship',
|
||||
'inverse' => 'Hat weniger als:count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist leer',
|
||||
'inverse' => 'ist nicht leer',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship ist leer',
|
||||
'inverse' => ':relationship ist nicht leer',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'ist',
|
||||
'inverse' => 'ist nicht',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Beinhaltet',
|
||||
'inverse' => 'Beinhaltet nicht',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship ist :values',
|
||||
'inverse' => ':relationship ist nicht :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship beinhaltet :values',
|
||||
'inverse' => ':relationship beinhaltet nicht :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' oder ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Wert',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Werte',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Anzahl',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist',
|
||||
'inverse' => 'ist nicht',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist :values',
|
||||
'inverse' => ':attribute ist nicht :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' oder ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Wert',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Werte',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Beinhaltet',
|
||||
'inverse' => 'Beinhaltet nicht',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute beinhaltet :text',
|
||||
'inverse' => ':attribute beinhaltet nicht :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Endet mit',
|
||||
'inverse' => 'Endet nicht mit',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute endet mit :text',
|
||||
'inverse' => ':attribute endet nicht mit :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ist gleich',
|
||||
'inverse' => 'Ist nicht gleich',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist gleich :text',
|
||||
'inverse' => ':attribute ist nicht gleich :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Beginnt mit',
|
||||
'inverse' => 'Beginnt nicht mit',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute beginnt mit :text',
|
||||
'inverse' => ':attribute beginnt nicht mit :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Bedingung hinzufügen',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Bedingungsgruppe hinzufügen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
227
vendor/filament/tables/resources/lang/de/table.php
vendored
Normal file
227
vendor/filament/tables/resources/lang/de/table.php
vendored
Normal file
@@ -0,0 +1,227 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Spalten',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => ':count weniger anzeigen',
|
||||
'expand_list' => ':count weitere anzeigen',
|
||||
],
|
||||
|
||||
'more_list_items' => 'und :count weitere',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Alle Einträge für Stapelverarbeitung auswählen/abwählen.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Eintrag :key für Stapelverarbeitung auswählen/abwählen.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Gruppe auswählen/abwählen :title für Stapelverarbeitung.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Suche',
|
||||
'placeholder' => 'Suche',
|
||||
'indicator' => 'Suche',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Zusammenfassung',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Alle :label',
|
||||
'group' => ':group Zusammenfassung',
|
||||
'page' => 'Diese Seite',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Durchschnitt',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Anzahl',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Summe',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Sortieren beenden',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Einträge sortieren',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtern',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Gruppe',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Aktionen öffnen',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Spalten auswählen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Keine :model',
|
||||
|
||||
'description' => 'Erstelle ein(e) :model um zu beginnen.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => ' Filter anwenden',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Filter löschen',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Alle Filter löschen',
|
||||
'tooltip' => 'Alle Filter löschen',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Filter zurücksetzen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filter',
|
||||
|
||||
'indicator' => 'Aktive Filter',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Alle',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Alle',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Gelöschte Einträge',
|
||||
|
||||
'only_trashed' => 'Nur gelöschte Einträge',
|
||||
|
||||
'with_trashed' => 'Mit gelöschten Einträgen',
|
||||
|
||||
'without_trashed' => 'Ohne gelöschte Einträge',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Gruppieren nach',
|
||||
'placeholder' => 'Gruppieren nach',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Gruppierungsrichtung',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Aufsteigend',
|
||||
'desc' => 'Absteigend',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Zum Sortieren die Einträge per Drag & Drop in die richtige Reihenfolge ziehen.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 Datensatz ausgewählt|:count Datensätze ausgewählt',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Alle :count Datensätze auswählen',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Auswahl aufheben',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Sortieren nach',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Sortierrichtung',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Aufsteigend',
|
||||
'desc' => 'Absteigend',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user