Skip to content

Commit 8672cd2

Browse files
authored
Turkish translation file added
1 parent 4964104 commit 8672cd2

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

src/translations/tr.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import type { TranslationsType } from './utils'
2+
3+
const tr: TranslationsType = {
4+
save: 'Kaydet',
5+
selectSingle: 'Tarih seç',
6+
selectMultiple: 'Tarihleri seç',
7+
selectRange: 'Periyot seç',
8+
notAccordingToDateFormat: (inputFormat) =>
9+
`Tarih formatı ${inputFormat} olmalı`,
10+
mustBeHigherThan: (date) => `${date} tarihinden sonra olmalı`,
11+
mustBeLowerThan: (date) => `${date} tarihinden önce olmalı`,
12+
mustBeBetween: (startDate, endDate) =>
13+
`${startDate} - ${endDate} tarihleri arasında olmalı`,
14+
dateIsDisabled: 'Gün seçilemez',
15+
previous: 'Önceki',
16+
next: 'Sonraki',
17+
typeInDate: 'Tarihi yazın',
18+
pickDateFromCalendar: 'Takvimden tarih seçin',
19+
close: 'Kapat',
20+
}
21+
export default tr

0 commit comments

Comments
 (0)