mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-31 12:17:54 +01:00
feat(locale): add Lithuanian language (#4171)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
@@ -24,6 +24,7 @@ export { default as ja } from './ja'
|
|||||||
export { default as kk } from './kk'
|
export { default as kk } from './kk'
|
||||||
export { default as km } from './km'
|
export { default as km } from './km'
|
||||||
export { default as ko } from './ko'
|
export { default as ko } from './ko'
|
||||||
|
export { default as lt } from './lt'
|
||||||
export { default as ms } from './ms'
|
export { default as ms } from './ms'
|
||||||
export { default as nb_no } from './nb_no'
|
export { default as nb_no } from './nb_no'
|
||||||
export { default as nl } from './nl'
|
export { default as nl } from './nl'
|
||||||
|
|||||||
56
src/runtime/locale/lt.ts
Normal file
56
src/runtime/locale/lt.ts
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
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ų'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user