From d86956e1d57482b3e98eef2d34bff13544284b0b Mon Sep 17 00:00:00 2001 From: zikju <2260866+zikju@users.noreply.github.com> Date: Mon, 19 May 2025 11:53:02 +0300 Subject: [PATCH] feat(locale): add Lithuanian language (#4171) Co-authored-by: Benjamin Canac --- src/runtime/locale/index.ts | 1 + src/runtime/locale/lt.ts | 56 +++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 src/runtime/locale/lt.ts diff --git a/src/runtime/locale/index.ts b/src/runtime/locale/index.ts index 586f970c..82a087f1 100644 --- a/src/runtime/locale/index.ts +++ b/src/runtime/locale/index.ts @@ -24,6 +24,7 @@ export { default as ja } from './ja' export { default as kk } from './kk' export { default as km } from './km' export { default as ko } from './ko' +export { default as lt } from './lt' export { default as ms } from './ms' export { default as nb_no } from './nb_no' export { default as nl } from './nl' diff --git a/src/runtime/locale/lt.ts b/src/runtime/locale/lt.ts new file mode 100644 index 00000000..3be6918a --- /dev/null +++ b/src/runtime/locale/lt.ts @@ -0,0 +1,56 @@ +import type { Messages } from '../types' +import { defineLocale } from '../composables/defineLocale' + +export default defineLocale({ + 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ų' + } + } +})