[增添]添加了datasource的setting数据库以及默认值
This commit is contained in:
482
vendor/filament/tables/resources/lang/lt/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/lt/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Užklausos kūrimas',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Palyginimas',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Grupės',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Blokas (ARBA)',
|
||||
'or' => 'ARBA',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Taisyklės',
|
||||
|
||||
'item' => [
|
||||
'and' => 'IR',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Nėra taisyklių)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'IR',
|
||||
'or' => 'ARBA',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Užpildyta',
|
||||
'inverse' => 'Neužpildyta',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute užpildyta',
|
||||
'inverse' => ':attribute neužpildyta',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra teigiamas',
|
||||
'inverse' => 'Nėra teigiamas',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra teigiamas',
|
||||
'inverse' => ':attribute nėra teigiamas',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra po',
|
||||
'inverse' => 'Nėra po',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra po :date',
|
||||
'inverse' => ':attribute nėra po :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra prieš',
|
||||
'inverse' => 'Nėra prieš',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra prieš :date',
|
||||
'inverse' => ':attribute nėra prieš :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra data',
|
||||
'inverse' => 'Nėra data',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra :date',
|
||||
'inverse' => ':attribute nėra :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra mėnesis',
|
||||
'inverse' => 'Nėra mėnesis',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra :month',
|
||||
'inverse' => ':attribute nėra :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra metai',
|
||||
'inverse' => 'Nėra metai',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra :year',
|
||||
'inverse' => ':attribute nėra :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Data',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Mėnesis',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Metai',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Lygu',
|
||||
'inverse' => 'Nelygu',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute lygu :number',
|
||||
'inverse' => ':attribute nelygu :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra didžiausias',
|
||||
'inverse' => 'Yra didesnis už',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra didžiausias :number',
|
||||
'inverse' => ':attribute yra didesnis už :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra mažiausias',
|
||||
'inverse' => 'Yra mažesnis už',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra mažiausias :number',
|
||||
'inverse' => ':attribute yra mažesnis už :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Vidurkis',
|
||||
'summary' => ':attribute vidurkis',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Maksimumas',
|
||||
'summary' => 'Didžiausias :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Minimumas',
|
||||
'summary' => 'Mažiausias :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Suma',
|
||||
'summary' => ':attribute suma',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Suminis rodiklis',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Skaičius',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Turi',
|
||||
'inverse' => 'Neturi',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Turi :count :relationship',
|
||||
'inverse' => 'Neturi :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Turi daugiausiai',
|
||||
'inverse' => 'Turi daugiau nei',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Turi daugiausiai :count :relationship',
|
||||
'inverse' => 'Turi daugiau nei :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Turi mažiausiai',
|
||||
'inverse' => 'Turi mažiau nei',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Turi mažiausiai :count :relationship',
|
||||
'inverse' => 'Turi mažiau nei :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra tuščias',
|
||||
'inverse' => 'Nėra tuščias',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship yra tuščias',
|
||||
'inverse' => ':relationship nėra tuščias',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Yra',
|
||||
'inverse' => 'Nėra',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Yra vienas iš',
|
||||
'inverse' => 'Nėra nė vienas iš',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship yra :values',
|
||||
'inverse' => ':relationship nėra :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship turi :values',
|
||||
'inverse' => ':relationship neturi :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' arba ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Reikšmė',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Reikšmės',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Kiekis',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra',
|
||||
'inverse' => 'Nėra',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra :values',
|
||||
'inverse' => ':attribute nėra :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' arba ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Reikšmė',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Reikšmės',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Turi',
|
||||
'inverse' => 'Neturi',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute turi :text',
|
||||
'inverse' => ':attribute neturi :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Turi pabaigą',
|
||||
'inverse' => 'Neturi pabaigos',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute baigiasi :text',
|
||||
'inverse' => ':attribute nesibaigia :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra',
|
||||
'inverse' => 'Nėra',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute lygus :text',
|
||||
'inverse' => ':attribute nelygus :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Turi pradžią',
|
||||
'inverse' => 'Neturi pradžios',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute prasideda :text',
|
||||
'inverse' => ':attribute neprasideda :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Tekstas',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Pridėti taisyklę',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Pridėti taisyklių grupę',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
227
vendor/filament/tables/resources/lang/lt/table.php
vendored
Normal file
227
vendor/filament/tables/resources/lang/lt/table.php
vendored
Normal file
@@ -0,0 +1,227 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Stulpeliai',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Slėpti :count',
|
||||
'expand_list' => 'Rodyti dar :count',
|
||||
],
|
||||
|
||||
'more_list_items' => 'ir dar :count',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Pažymėti/atžymėti visus įrašus masiniam veiksmui.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Pažymėti/atžymėti įrašą :key masiniam veiksmui.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Pažymėti/atžymėti grupę :title masiniam veiksmui.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Paieška',
|
||||
'placeholder' => 'Paieška',
|
||||
'indicator' => 'Paieška',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Santrauka',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Viso :label',
|
||||
'group' => ':group santrauka',
|
||||
'page' => 'Šis puslapis',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Vidurkis',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Viso',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Suma',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Pabaik pertvarkyti įrašus',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Pertvarkyti įrašus',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtras',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupė',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Atidaryti veiksmus',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Perjungti stulpelius',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Nerasta įrašų',
|
||||
|
||||
'description' => 'Norėdami pradėti, sukurkite :model.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Taikyti filtrus',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Pašalinti filtrą',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Pašalinti visus filtrus',
|
||||
'tooltip' => 'Pašalinti visus filtrus',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Nustatyti filtrus iš naujo',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtrai',
|
||||
|
||||
'indicator' => 'Aktyvūs filtrai',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Visi',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Visi',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Ištrinti įrašai',
|
||||
|
||||
'only_trashed' => 'Tik ištrinti įrašai',
|
||||
|
||||
'with_trashed' => 'Su ištrintais įrašais',
|
||||
|
||||
'without_trashed' => 'Be ištrintų įrašų',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupuoti pagal',
|
||||
'placeholder' => 'Grupuoti pagal',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Grupės kryptis',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Didėjančia tvarka',
|
||||
'desc' => 'Mažėjančia tvarka',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Vilkite ir paleiskite įrašų rikiavimui.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 įrašas pasirinktas|:count įrašai pasirinkti',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Pažymėti visus :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Atžymėti visus',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Rūšiuoti pagal',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Rūšiavimo kryptis',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Didėjimo tvarka',
|
||||
'desc' => 'Mažėjimo tvarka',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user