mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-17 05:28:09 +01:00
57 lines
1.3 KiB
TypeScript
57 lines
1.3 KiB
TypeScript
import type { Messages } from '../types'
|
|
import { defineLocale } from '../composables/defineLocale'
|
|
|
|
export default defineLocale<Messages>({
|
|
name: 'Lietuvių',
|
|
code: 'lt',
|
|
messages: {
|
|
inputMenu: {
|
|
noMatch: 'Nėra atitinkančių duomenų',
|
|
noData: 'Nėra duomenų',
|
|
create: 'Sukurti „{label}“'
|
|
},
|
|
calendar: {
|
|
prevYear: 'Ankstesni metai',
|
|
nextYear: 'Kiti metai',
|
|
prevMonth: 'Ankstesnis mėnuo',
|
|
nextMonth: 'Kitas mėnuo'
|
|
},
|
|
inputNumber: {
|
|
increment: 'Padidinti',
|
|
decrement: 'Sumažinti'
|
|
},
|
|
commandPalette: {
|
|
placeholder: 'Įveskite komandą arba ieškokite...',
|
|
noMatch: 'Nėra atitinkančių duomenų',
|
|
noData: 'Nėra duomenų',
|
|
close: 'Uždaryti'
|
|
},
|
|
selectMenu: {
|
|
noMatch: 'Nėra atitinkančių duomenų',
|
|
noData: 'Nėra duomenų',
|
|
create: 'Sukurti „{label}“',
|
|
search: 'Ieškoti...'
|
|
},
|
|
toast: {
|
|
close: 'Uždaryti'
|
|
},
|
|
carousel: {
|
|
prev: 'Atgal',
|
|
next: 'Pirmyn',
|
|
goto: 'Eiti į skaidrę {slide}'
|
|
},
|
|
modal: {
|
|
close: 'Uždaryti'
|
|
},
|
|
slideover: {
|
|
close: 'Uždaryti'
|
|
},
|
|
alert: {
|
|
close: 'Uždaryti'
|
|
},
|
|
table: {
|
|
noData: 'Nėra duomenų'
|
|
}
|
|
}
|
|
})
|