Skip to content

Commit 0087213

Browse files
jinrong-ncugemini-code-assist[bot]Ronin
authored
feat: add Tagalog (tl_PH) locale for picker (#969)
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Ronin <roninxincu@gmail.com>
1 parent 843422d commit 0087213

1 file changed

Lines changed: 48 additions & 0 deletions

File tree

src/locale/tl_PH.ts

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
import { commonLocale } from './common';
2+
import type { Locale } from '../interface';
3+
4+
const locale: Locale = {
5+
...commonLocale,
6+
locale: 'tl_PH',
7+
today: 'Ngayon',
8+
now: 'Ngayon',
9+
backToToday: 'Bumalik sa ngayon',
10+
ok: 'OK',
11+
clear: 'Burahin',
12+
week: 'Linggo',
13+
month: 'Buwan',
14+
year: 'Taon',
15+
timeSelect: 'Pumili ng oras',
16+
dateSelect: 'Pumili ng petsa',
17+
weekSelect: 'Pumili ng linggo',
18+
monthSelect: 'Pumili ng buwan',
19+
yearSelect: 'Pumili ng taon',
20+
decadeSelect: 'Pumili ng dekada',
21+
22+
previousMonth: 'Nakaraang buwan (PageUp)',
23+
nextMonth: 'Susunod na buwan (PageDown)',
24+
previousYear: 'Nakaraang taon (Control + left)',
25+
nextYear: 'Susunod na taon (Control + right)',
26+
previousDecade: 'Nakaraang dekada',
27+
nextDecade: 'Susunod na dekada',
28+
previousCentury: 'Nakaraang siglo',
29+
nextCentury: 'Susunod na siglo',
30+
31+
shortWeekDays: ['Lin', 'Lun', 'Mar', 'Miy', 'Huw', 'Biy', 'Sab'],
32+
shortMonths: [
33+
'Ene',
34+
'Peb',
35+
'Mar',
36+
'Abr',
37+
'May',
38+
'Hun',
39+
'Hul',
40+
'Ago',
41+
'Set',
42+
'Okt',
43+
'Nob',
44+
'Dis',
45+
],
46+
};
47+
48+
export default locale;

0 commit comments

Comments
 (0)