Skip to content

Commit 9169ff8

Browse files
authored
fix: locale date formats and short names in Turkish language (#749)
1 parent c3b4f7e commit 9169ff8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/locale/tr_TR.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ const locale: Locale = {
1515
yearSelect: 'Yıl Seç',
1616
decadeSelect: 'On Yıl Seç',
1717
yearFormat: 'YYYY',
18-
dateFormat: 'M/D/YYYY',
18+
dateFormat: 'DD/MM/YYYY',
1919
dayFormat: 'D',
20-
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
20+
dateTimeFormat: 'DD/MM/YYYY HH:mm:ss',
2121
monthBeforeYear: true,
2222
previousMonth: 'Önceki Ay (PageUp)',
2323
nextMonth: 'Sonraki Ay (PageDown)',
@@ -27,6 +27,8 @@ const locale: Locale = {
2727
nextDecade: 'Sonraki On Yıl',
2828
previousCentury: 'Önceki Yüzyıl',
2929
nextCentury: 'Sonraki Yüzyıl',
30+
shortWeekDays: ['Pzt', 'Sal', 'Çar', 'Per', 'Cum', 'Cmt', 'Paz'],
31+
shortMonths: ['Oca', 'Şub', 'Mar', 'Nis', 'May', 'Haz', 'Tem', 'Ağu', 'Eyl', 'Eki', 'Kas', 'Ara'],
3032
};
3133

3234
export default locale;

0 commit comments

Comments
 (0)