[增添]添加了datasource的setting数据库以及默认值
This commit is contained in:
228
vendor/filament/tables/resources/lang/fi/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/fi/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Kolumnit',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Näytä :count vähemmän',
|
||||
'expand_list' => 'Näytä :count lisää',
|
||||
],
|
||||
|
||||
'more_list_items' => 'ja :count lisää',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Aseta/poista massatoiminnon valinta kaikista kohteista.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Aseta/poista massatoiminnon valinta kohteelle :key.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Aseta/poista massatoiminnon valinta ryhmälle :title.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Etsi',
|
||||
'placeholder' => 'Etsi',
|
||||
'indicator' => 'Etsi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Yhteenveto',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Kaikki :label',
|
||||
'group' => ':group yhteenveto',
|
||||
'page' => 'Tämä sivu',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Keskiarvo',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Määrä',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Summa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Viimeistele tietueiden järjestely',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Järjestele tietueita',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Suodata',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Ryhmä',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Avaa toiminnot',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Näytä kolumnit',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Ei :model',
|
||||
|
||||
'description' => 'Luo :model aloittaaksesi.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Käytä suodattimet',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Poista suodatin',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Poista suodattimet',
|
||||
'tooltip' => 'Poista suodattimet',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Tyhjennä suodattimet',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Suodattimet',
|
||||
|
||||
'indicator' => 'Aktiiviset suodattimet',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Kaikki',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Kaikki',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Poistetut tietueet',
|
||||
|
||||
'only_trashed' => 'Vain poistetut tietueet',
|
||||
|
||||
'with_trashed' => 'Poistettujen tietueiden kanssa',
|
||||
|
||||
'without_trashed' => 'Ilman poistettuja tietueita',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Ryhmittele',
|
||||
'placeholder' => 'Ryhmittele',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Ryhmittelyn suunta',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Nousevasti',
|
||||
'desc' => 'Laskevasti',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Raahaa ja pudota tietueet järjestykseen.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 tietue valittu|:count tietuetta valittu',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Valitse kaikki :count tietuetta',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Poista valinta kaikista',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Järjestele',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Järjestyksen suunta',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Nousevasti',
|
||||
'desc' => 'Laskevasti',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user