Skip to content

Commit f3cc765

Browse files
jinrong-ncugemini-code-assist[bot]Ronin
authored
feat: add Filipino (fil_PH) locale support (#967)
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 30c896c commit f3cc765

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

src/locale/fil_PH.ts

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import { commonLocale } from './common';
2+
import type { Locale } from '../interface';
3+
4+
const locale: Locale = {
5+
...commonLocale,
6+
locale: 'fil_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+
32+
export default locale;

0 commit comments

Comments
 (0)