Skip to content

Commit d86956e

Browse files
zikjubenjamincanac
andauthored
feat(locale): add Lithuanian language (#4171)
Co-authored-by: Benjamin Canac <[email protected]>
1 parent 23e4f0e commit d86956e

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

src/runtime/locale/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export { default as ja } from './ja'
2424
export { default as kk } from './kk'
2525
export { default as km } from './km'
2626
export { default as ko } from './ko'
27+
export { default as lt } from './lt'
2728
export { default as ms } from './ms'
2829
export { default as nb_no } from './nb_no'
2930
export { default as nl } from './nl'

src/runtime/locale/lt.ts

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
import type { Messages } from '../types'
2+
import { defineLocale } from '../composables/defineLocale'
3+
4+
export default defineLocale<Messages>({
5+
name: 'Lietuvių',
6+
code: 'lt',
7+
messages: {
8+
inputMenu: {
9+
noMatch: 'Nėra atitinkančių duomenų',
10+
noData: 'Nėra duomenų',
11+
create: 'Sukurti „{label}“'
12+
},
13+
calendar: {
14+
prevYear: 'Ankstesni metai',
15+
nextYear: 'Kiti metai',
16+
prevMonth: 'Ankstesnis mėnuo',
17+
nextMonth: 'Kitas mėnuo'
18+
},
19+
inputNumber: {
20+
increment: 'Padidinti',
21+
decrement: 'Sumažinti'
22+
},
23+
commandPalette: {
24+
placeholder: 'Įveskite komandą arba ieškokite...',
25+
noMatch: 'Nėra atitinkančių duomenų',
26+
noData: 'Nėra duomenų',
27+
close: 'Uždaryti'
28+
},
29+
selectMenu: {
30+
noMatch: 'Nėra atitinkančių duomenų',
31+
noData: 'Nėra duomenų',
32+
create: 'Sukurti „{label}“',
33+
search: 'Ieškoti...'
34+
},
35+
toast: {
36+
close: 'Uždaryti'
37+
},
38+
carousel: {
39+
prev: 'Atgal',
40+
next: 'Pirmyn',
41+
goto: 'Eiti į skaidrę {slide}'
42+
},
43+
modal: {
44+
close: 'Uždaryti'
45+
},
46+
slideover: {
47+
close: 'Uždaryti'
48+
},
49+
alert: {
50+
close: 'Uždaryti'
51+
},
52+
table: {
53+
noData: 'Nėra duomenų'
54+
}
55+
}
56+
})

0 commit comments

Comments
 (0)