[增添]添加了datasource的setting数据库以及默认值

This commit is contained in:
makotocc0107
2024-08-27 09:57:44 +08:00
parent d111dfaea4
commit 72eb990970
10955 changed files with 978898 additions and 0 deletions

View File

@@ -0,0 +1,75 @@
.fi-pagination-overview {
display: none;
}
.fi-pagination-records-per-page-select:not(.fi-compact) {
display: none;
}
.fi-pagination-items {
display: none;
}
@supports (container-type: inline-size) {
.fi-pagination {
container-type: inline-size;
}
@container (min-width: 28rem) {
.fi-pagination-records-per-page-select.fi-compact {
display: none;
}
.fi-pagination-records-per-page-select:not(.fi-compact) {
display: inline;
}
}
@container (min-width: 56rem) {
.fi-pagination:not(.fi-simple) > .fi-pagination-previous-btn {
display: none;
}
.fi-pagination-overview {
display: inline;
}
.fi-pagination:not(.fi-simple) > .fi-pagination-next-btn {
display: none;
}
.fi-pagination-items {
display: flex;
}
}
}
@supports not (container-type: inline-size) {
@media (min-width: 640px) {
.fi-pagination-records-per-page-select.fi-compact {
display: none;
}
.fi-pagination-records-per-page-select:not(.fi-compact) {
display: inline;
}
}
@media (min-width: 768px) {
.fi-pagination:not(.fi-simple) > .fi-pagination-previous-btn {
display: none;
}
.fi-pagination-overview {
display: inline;
}
.fi-pagination:not(.fi-simple) > .fi-pagination-next-btn {
display: none;
}
.fi-pagination-items {
display: flex;
}
}
}

View File

@@ -0,0 +1,3 @@
.fi-sortable-ghost {
@apply opacity-30;
}

View File

@@ -0,0 +1,116 @@
import AlpineFloatingUI from '@awcodes/alpine-floating-ui'
import AlpineLazyLoadAssets from 'alpine-lazy-load-assets'
// import { clearAllBodyScrollLocks, disableBodyScroll } from 'body-scroll-lock'
import { md5 } from 'js-md5'
import Sortable from './sortable'
import Tooltip from '@ryangjchandler/alpine-tooltip'
import '../css/components/pagination.css'
import 'tippy.js/dist/tippy.css'
import 'tippy.js/themes/light.css'
import '../css/sortable.css'
document.addEventListener('alpine:init', () => {
window.Alpine.plugin(AlpineFloatingUI)
window.Alpine.plugin(AlpineLazyLoadAssets)
window.Alpine.plugin(Sortable)
window.Alpine.plugin(Tooltip)
})
// document.addEventListener('livewire:navigating', () => {
// clearAllBodyScrollLocks()
// })
// https://github.com/laravel/framework/blob/5299c22321c0f1ea8ff770b84a6c6469c4d6edec/src/Illuminate/Translation/MessageSelector.php#L15
const pluralize = function (text, number, variables) {
function extract(segments, number) {
for (const part of segments) {
const line = extractFromString(part, number)
if (line !== null) {
return line
}
}
}
function extractFromString(part, number) {
const matches = part.match(/^[\{\[]([^\[\]\{\}]*)[\}\]](.*)/s)
if (matches === null || matches.length !== 3) {
return null
}
const condition = matches[1]
const value = matches[2]
if (condition.includes(',')) {
const [from, to] = condition.split(',', 2)
if (to === '*' && number >= from) {
return value
} else if (from === '*' && number <= to) {
return value
} else if (number >= from && number <= to) {
return value
}
}
return condition == number ? value : null
}
function ucfirst(string) {
return (
string.toString().charAt(0).toUpperCase() +
string.toString().slice(1)
)
}
function replace(line, replace) {
if (replace.length === 0) {
return line
}
const shouldReplace = {}
for (let [key, value] of Object.entries(replace)) {
shouldReplace[':' + ucfirst(key ?? '')] = ucfirst(value ?? '')
shouldReplace[':' + key.toUpperCase()] = value
.toString()
.toUpperCase()
shouldReplace[':' + key] = value
}
Object.entries(shouldReplace).forEach(([key, value]) => {
line = line.replaceAll(key, value)
})
return line
}
function stripConditions(segments) {
return segments.map((part) =>
part.replace(/^[\{\[]([^\[\]\{\}]*)[\}\]]/, ''),
)
}
let segments = text.split('|')
const value = extract(segments, number)
if (value !== null && value !== undefined) {
return replace(value.trim(), variables)
}
segments = stripConditions(segments)
return replace(
segments.length > 1 && number > 1 ? segments[1] : segments[0],
variables,
)
}
// window.clearAllBodyScrollLocks = clearAllBodyScrollLocks
// window.disableBodyScroll = disableBodyScroll
window.jsMd5 = md5
window.pluralize = pluralize

View File

@@ -0,0 +1,22 @@
import Sortable from 'sortablejs'
window.Sortable = Sortable
export default (Alpine) => {
Alpine.directive('sortable', (el) => {
let animation = parseInt(el.dataset?.sortableAnimationDuration)
if (animation !== 0 && !animation) {
animation = 300
}
el.sortable = Sortable.create(el, {
group: el.getAttribute('x-sortable-group'),
draggable: '[x-sortable-item]',
handle: '[x-sortable-handle]',
dataIdAttr: 'x-sortable-item',
animation: animation,
ghostClass: 'fi-sortable-ghost',
})
})
}

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'جاري رفع الملف...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'تم النسخ',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'إغلاق',
],
],
];

View File

@@ -0,0 +1,39 @@
<?php
return [
'label' => 'التنقل بين الصفحات',
'overview' => '{1} عرض نتيجة واحدة|[3,10] عرض :first إلى :last من :total نتائج|[2,*] عرض :first إلى :last من :total نتيجة',
'fields' => [
'records_per_page' => [
'label' => 'لكل صفحة',
'options' => [
'all' => 'الكل',
],
],
],
'actions' => [
'go_to_page' => [
'label' => 'انتقل إلى صفحة :page',
],
'next' => [
'label' => 'التالي',
],
'previous' => [
'label' => 'السابق',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Fayl yüklənir...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Kopyalandı',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Bağla',
],
],
];

View File

@@ -0,0 +1,37 @@
<?php
return [
'label' => 'Səhifələndirmə Naviqasiyası',
'overview' => 'Toplam :total nəticədən :first ile :last arası göstərilir',
'fields' => [
'records_per_page' => [
'label' => 'səhifə başına',
'options' => [
'all' => 'Hamısı',
],
],
],
'actions' => [
'go_to_page' => [
'label' => ':page. səhifəyə get',
],
'next' => [
'label' => 'Sonrakı',
],
'previous' => [
'label' => 'Əvvəlki',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Качване на файл...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Копирано',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Затвори',
],
],
];

View File

@@ -0,0 +1,47 @@
<?php
return [
'label' => 'Наигация на странициране',
'overview' => '{1} Показване на 1 резултат|[2,*] Показване на :first до :last от общо :total резултата',
'fields' => [
'records_per_page' => [
'label' => 'Резултати на страница',
'options' => [
'all' => 'Всички',
],
],
],
'actions' => [
'first' => [
'label' => 'Първа',
],
'go_to_page' => [
'label' => 'Отиди на страница :page',
],
'last' => [
'label' => 'Последна',
],
'next' => [
'label' => 'Следваща',
],
'previous' => [
'label' => 'Предишна',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'নথি আপলোড হচ্ছে...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'অনুকৃত',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'বন্ধ করুন',
],
],
];

View File

@@ -0,0 +1,39 @@
<?php
return [
'label' => 'পৃষ্ঠা সংখ্যাগুলো',
'overview' => ':total এর, :first থেকে :last পর্যন্ত দেখানো হচ্ছে',
'fields' => [
'records_per_page' => [
'label' => 'প্রতি পৃষ্ঠা',
'options' => [
'all' => 'সব',
],
],
],
'actions' => [
'go_to_page' => [
'label' => ':page পৃষ্টায় যান',
],
'next' => [
'label' => 'পরবর্তী',
],
'previous' => [
'label' => 'পূর্ববর্তী',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Učitavanje fajlova...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Kopirano',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Zatvoriti',
],
],
];

View File

@@ -0,0 +1,39 @@
<?php
return [
'label' => 'Navigacija po stranicama',
'overview' => '{1} Prikazuje 1 rezultat|[2,*]Prikazivanje :first od :last od ukupno :total rezultata',
'fields' => [
'records_per_page' => [
'label' => 'po stranici',
'options' => [
'all' => 'Svi',
],
],
],
'actions' => [
'go_to_page' => [
'label' => 'Idite na stranicu :page',
],
'next' => [
'label' => 'Dalje',
],
'previous' => [
'label' => 'Nazad',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Pujant arxiu...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Copiat',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Tancar',
],
],
];

View File

@@ -0,0 +1,47 @@
<?php
return [
'label' => 'Paginació',
'overview' => '{1} Mostrant 1 resultat|[2,*] Mostrant :first a :last de :total resultats',
'fields' => [
'records_per_page' => [
'label' => 'Per pàgina',
'options' => [
'all' => 'Tots',
],
],
],
'actions' => [
'first' => [
'label' => 'Primera',
],
'go_to_page' => [
'label' => 'Anar a la pàgina :page',
],
'last' => [
'label' => 'Última',
],
'next' => [
'label' => 'Següent',
],
'previous' => [
'label' => 'Anterior',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'بارکردنی فایل...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'لەبەرگیرا',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'داخستن',
],
],
];

View File

@@ -0,0 +1,39 @@
<?php
return [
'label' => 'ڕێنوێیی پەڕەکردن',
'overview' => '{1} پشاندانی ئەنجامێک|[2,*] پیشاندانی :first بۆ :last لە :total ئەنجام',
'fields' => [
'records_per_page' => [
'label' => 'بۆ هەر پەڕەیەک',
'options' => [
'all' => 'هەموو',
],
],
],
'actions' => [
'go_to_page' => [
'label' => 'بڕۆ بۆ پەڕەی :page',
],
'next' => [
'label' => 'دواتر',
],
'previous' => [
'label' => 'پێشوو',
],
],
];

View File

@@ -0,0 +1,11 @@
<?php
return [
'messages' => [
'uploading_file' => 'Nahrávání souboru...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Zkopírováno',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Zavřít',
],
],
];

View File

@@ -0,0 +1,45 @@
<?php
return [
'label' => 'Stránkování',
'overview' => '{1} Zobrazuji 1 výsledek|[2,*] Zobrazuji :first až :last z :total výsledků',
'fields' => [
'records_per_page' => [
'label' => 'na stránku',
'options' => [
'all' => 'Vše',
],
],
],
'actions' => [
'first' => [
'label' => 'První',
],
'go_to_page' => [
'label' => 'Jít na stránku :page',
],
'last' => [
'label' => 'Poslední',
],
'next' => [
'label' => 'Další',
],
'previous' => [
'label' => 'Předchozí',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Wedi Copïo',
],
];

View File

@@ -0,0 +1,39 @@
<?php
return [
'label' => 'Gwe-lywio tudalennau',
'overview' => '{1} Dangos 1 canlyniad|[2,*] Yn dangos :first i :last o :total canlyniadau',
'fields' => [
'records_per_page' => [
'label' => 'fesul tudalen',
'options' => [
'all' => 'Pawb',
],
],
],
'actions' => [
'go_to_page' => [
'label' => 'Ewch i dudalen :page',
],
'next' => [
'label' => 'Nesaf',
],
'previous' => [
'label' => 'Blaenorol',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Uploader fil...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Kopieret',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Luk',
],
],
];

View File

@@ -0,0 +1,39 @@
<?php
return [
'label' => 'Paginering Navigation',
'overview' => 'Viser :first til :last af :total resultater',
'fields' => [
'records_per_page' => [
'label' => 'per side',
'options' => [
'all' => 'Alle',
],
],
],
'actions' => [
'go_to_page' => [
'label' => 'Gå til side :page',
],
'next' => [
'label' => 'Næste',
],
'previous' => [
'label' => 'Forrige',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Datei wird hochgeladen...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Kopiert',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Schließen',
],
],
];

View File

@@ -0,0 +1,47 @@
<?php
return [
'label' => 'Seitennavigation',
'overview' => '{1} Zeige 1 Ergebnis|[2,*] Zeige :first bis :last von :total Ergebnissen',
'fields' => [
'records_per_page' => [
'label' => 'pro Seite',
'options' => [
'all' => 'Alle',
],
],
],
'actions' => [
'first' => [
'label' => 'Erste',
],
'go_to_page' => [
'label' => 'Weiter zur Seite :page',
],
'last' => [
'label' => 'Letzte',
],
'next' => [
'label' => 'Nächste',
],
'previous' => [
'label' => 'Vorherige',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Uploading file...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Αντιγράφηκε',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Άκυρο',
],
],
];

View File

@@ -0,0 +1,47 @@
<?php
return [
'label' => 'Pagination navigation',
'overview' => '{1} Προβολή 1 αποτελέσματος|[2,*] Προβολή :first έως :last (από :total αποτελέσματα)',
'fields' => [
'records_per_page' => [
'label' => 'Ανά σελίδα',
'options' => [
'all' => 'Όλα',
],
],
],
'actions' => [
'first' => [
'label' => 'Πρώτη σελίδα',
],
'go_to_page' => [
'label' => 'Πήγαινε στη σελίδα :page',
],
'last' => [
'label' => 'Τελευταία σελίδα',
],
'next' => [
'label' => 'Επόμενη',
],
'previous' => [
'label' => 'Προηγούμενη',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Uploading file...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Copied',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Close',
],
],
];

View File

@@ -0,0 +1,47 @@
<?php
return [
'label' => 'Pagination navigation',
'overview' => '{1} Showing 1 result|[2,*] Showing :first to :last of :total results',
'fields' => [
'records_per_page' => [
'label' => 'Per page',
'options' => [
'all' => 'All',
],
],
],
'actions' => [
'first' => [
'label' => 'First',
],
'go_to_page' => [
'label' => 'Go to page :page',
],
'last' => [
'label' => 'Last',
],
'next' => [
'label' => 'Next',
],
'previous' => [
'label' => 'Previous',
],
],
];

View File

@@ -0,0 +1,11 @@
<?php
return [
'messages' => [
'uploading_file' => 'Subiendo archivo...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Copiado',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Cerrar',
],
],
];

View File

@@ -0,0 +1,47 @@
<?php
return [
'label' => 'Navegación de paginación',
'overview' => '{1} Se muestra un resultado|[2,*] Se muestran de :first a :last de :total resultados',
'fields' => [
'records_per_page' => [
'label' => 'por página',
'options' => [
'all' => 'Todos',
],
],
],
'actions' => [
'first' => [
'label' => 'Primera',
],
'go_to_page' => [
'label' => 'Ir a la página :page',
],
'last' => [
'label' => 'Última',
],
'next' => [
'label' => 'Siguiente',
],
'previous' => [
'label' => 'Anterior',
],
],
];

View File

@@ -0,0 +1,11 @@
<?php
return [
'messages' => [
'uploading_file' => 'Artxiboa igotzen...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Kopiatuta',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Itxi',
],
],
];

View File

@@ -0,0 +1,39 @@
<?php
return [
'label' => 'Paginazioaren nabigazioa',
'overview' => '{1} Emaitza bat erakusten da|[2,*] :total emaitzatik :firstetik :lastera erakusten dira',
'fields' => [
'records_per_page' => [
'label' => 'orriko',
'options' => [
'all' => 'Denak',
],
],
],
'actions' => [
'go_to_page' => [
'label' => 'Joan :page orrira',
],
'next' => [
'label' => 'Hurrengoa',
],
'previous' => [
'label' => 'Aurrekoa',
],
],
];

View File

@@ -0,0 +1,11 @@
<?php
return [
'messages' => [
'uploading_file' => 'درحال آپلود فایل...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'کپی شد',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'بستن',
],
],
];

View File

@@ -0,0 +1,39 @@
<?php
return [
'label' => 'صفحه بندی',
'overview' => 'در حال نمایش :first به :last از :total نتیجه',
'fields' => [
'records_per_page' => [
'label' => 'در هر صفحه',
'options' => [
'all' => 'همه',
],
],
],
'actions' => [
'go_to_page' => [
'label' => 'برو به صفحه :page',
],
'next' => [
'label' => 'بعدی',
],
'previous' => [
'label' => 'قبلی',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Siirretään tiedostoa...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Kopioitu',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Sulje',
],
],
];

View File

@@ -0,0 +1,47 @@
<?php
return [
'label' => 'Sivujen navigointi',
'overview' => '{1} Näytetään 1 tulos|[2,*] Näytetään :first - :last / :total tulosta',
'fields' => [
'records_per_page' => [
'label' => 'per sivu',
'options' => [
'all' => 'Kaikki',
],
],
],
'actions' => [
'first' => [
'label' => 'Ensimmäinen',
],
'go_to_page' => [
'label' => 'Mene sivulle :page',
],
'last' => [
'label' => 'Viimeinen',
],
'next' => [
'label' => 'Seuraava',
],
'previous' => [
'label' => 'Edellinen',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Chargement du fichier...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Copié',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Fermer',
],
],
];

View File

@@ -0,0 +1,47 @@
<?php
return [
'label' => 'Navigation par pagination',
'overview' => '{1} Affichage de 1 résultat|[2,*] Affichage de :first à :last sur :total résultats',
'fields' => [
'records_per_page' => [
'label' => 'par page',
'options' => [
'all' => 'Tous',
],
],
],
'actions' => [
'go_to_page' => [
'label' => 'Aller à la page :page',
],
'next' => [
'label' => 'Suivant',
],
'previous' => [
'label' => 'Précédent',
],
'first' => [
'label' => 'Première',
],
'last' => [
'label' => 'Dernière',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'מעלה קבצים...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'הועתק',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'סגור',
],
],
];

View File

@@ -0,0 +1,39 @@
<?php
return [
'label' => 'הצגת רשומות',
'overview' => 'מציג :first - :last מתוך :total תוצאות',
'fields' => [
'records_per_page' => [
'label' => 'בעמוד',
'options' => [
'all' => 'הכל',
],
],
],
'actions' => [
'go_to_page' => [
'label' => 'נווט לעמוד :page',
],
'next' => [
'label' => 'הבא',
],
'previous' => [
'label' => 'הקודם',
],
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'label' => 'पृष्ठ मार्गदर्शन',
'overview' => ':first से :last प्रविष्टियां :total में से',
'fields' => [
'records_per_page' => [
'label' => 'प्रति पृष्ठ',
],
],
'actions' => [
'go_to_page' => [
'label' => 'पृष्ठ :page पर जाएं',
],
'next' => [
'label' => 'अगला',
],
'previous' => [
'label' => 'पिछला',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Prenosim datoteku...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Kopirano',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Zatvori',
],
],
];

View File

@@ -0,0 +1,39 @@
<?php
return [
'label' => 'Navigacija stranicama',
'overview' => '{1} Prikazuje se 1 rezultat|[2,*] Prikazuje se :first do :last od ukupno :total rezultata',
'fields' => [
'records_per_page' => [
'label' => 'Po stranici',
'options' => [
'all' => 'Sve',
],
],
],
'actions' => [
'go_to_page' => [
'label' => 'Idi na stranicu :page',
],
'next' => [
'label' => 'Naprijed',
],
'previous' => [
'label' => 'Natrag',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Fájl feltöltése...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Kimásolva',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Bezárás',
],
],
];

View File

@@ -0,0 +1,39 @@
<?php
return [
'label' => 'Lapozás',
'overview' => ':first / :last megjelenítve a(z) :total találatból',
'fields' => [
'records_per_page' => [
'label' => 'Sorok száma:',
'options' => [
'all' => 'Összes',
],
],
],
'actions' => [
'go_to_page' => [
'label' => 'Ugrás az oldalra: :page',
],
'next' => [
'label' => 'Következő',
],
'previous' => [
'label' => 'Előző',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Ֆայլի բեռնում...',
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'label' => 'Էջավորման նավիգացիա',
'overview' => 'Ցուցադրվում են :total արդյունքներից :first֊ից :last֊ը',
'fields' => [
'records_per_page' => [
'label' => 'մեկ էջում',
],
],
'actions' => [
'go_to_page' => [
'label' => 'Գնալ էջ :page',
],
'next' => [
'label' => 'Հաջորդը',
],
'previous' => [
'label' => 'Նախորդ',
],
],
];

View File

@@ -0,0 +1,11 @@
<?php
return [
'messages' => [
'uploading_file' => 'Mengunggah berkas...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Disalin',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Tutup',
],
],
];

View File

@@ -0,0 +1,47 @@
<?php
return [
'label' => 'Navigasi halaman',
'overview' => 'Menampilkan :first sampai :last dari :total hasil',
'fields' => [
'records_per_page' => [
'label' => 'per halaman',
'options' => [
'all' => 'Semua',
],
],
],
'actions' => [
'first' => [
'label' => 'Pertama',
],
'go_to_page' => [
'label' => 'Ke halaman :page',
],
'last' => [
'label' => 'Terakhir',
],
'next' => [
'label' => 'Selanjutnya',
],
'previous' => [
'label' => 'Sebelumnya',
],
],
];

View File

@@ -0,0 +1,11 @@
<?php
return [
'messages' => [
'uploading_file' => 'Caricamento file...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Copiato',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Chiudi',
],
],
];

View File

@@ -0,0 +1,39 @@
<?php
return [
'label' => 'Navigazione paginazione',
'overview' => 'Mostrati da :first a :last di :total risultati',
'fields' => [
'records_per_page' => [
'label' => 'per pagina',
'options' => [
'all' => 'Tutti',
],
],
],
'actions' => [
'go_to_page' => [
'label' => 'Vai a pagina :page',
],
'next' => [
'label' => 'Successivo',
],
'previous' => [
'label' => 'Precedente',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'ファイルをアップロード中...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'コピーしました',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => '閉じる',
],
],
];

Some files were not shown because too many files have changed in this diff Show More