Skip to content

Commit c40d7c2

Browse files
authored
added lithuanian language (#119)
1 parent 640f1d8 commit c40d7c2

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

src/locale/lt_LT.ts

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import { Locale } from '../interface';
2+
3+
const locale: Locale = {
4+
locale: 'lt_LT',
5+
today: 'Šiandien',
6+
now: 'Dabar',
7+
backToToday: 'Rodyti šiandien',
8+
ok: 'Gerai',
9+
clear: 'Išvalyti',
10+
month: 'Mėnesis',
11+
year: 'Metai',
12+
timeSelect: 'Pasirinkti laiką',
13+
dateSelect: 'Pasirinkti datą',
14+
monthSelect: 'Pasirinkti mėnesį',
15+
yearSelect: 'Pasirinkti metus',
16+
decadeSelect: 'Pasirinkti dešimtmetį',
17+
yearFormat: 'YYYY',
18+
dateFormat: 'YYYY-MM-DD',
19+
dayFormat: 'DD',
20+
dateTimeFormat: 'YYYY-MM-DD HH:MM:SS',
21+
monthBeforeYear: true,
22+
previousMonth: 'Buvęs mėnesis (PageUp)',
23+
nextMonth: 'Sekantis mėnesis (PageDown)',
24+
previousYear: 'Buvę metai (Control + left)',
25+
nextYear: 'Sekantis metai (Control + right)',
26+
previousDecade: 'Buvęs dešimtmetis',
27+
nextDecade: 'Sekantis dešimtmetis',
28+
previousCentury: 'Buvęs amžius',
29+
nextCentury: 'Sekantis amžius',
30+
};
31+
32+
export default locale;

0 commit comments

Comments
 (0)