-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(i18n:turkish): create tr-TR.ts (#634)
- Loading branch information
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import { NzLocale } from '../nz-locale.class'; | ||
|
||
export const trTR: NzLocale = { | ||
locale: 'tr-TR', | ||
|
||
Pagination: { | ||
itemsPerPage: '%num% / sayfa', | ||
jumpTo: 'Goto', | ||
page: '', | ||
forwardPage: '%num% sayfa ileri', | ||
backwardPage: '%num% sayfa geri', | ||
prevPage: 'Önceki sayfa', | ||
nextPage: 'Sonraki sayfa', | ||
firstPage: 'İlk Sayfa', | ||
lastPage: 'Son sayfa: %page%', | ||
totalItems: '%total% öğe', | ||
}, | ||
|
||
DateTime: { | ||
clear: 'Temiz', | ||
chooseMonth: 'Bir ay seçin', | ||
chooseYear: 'Bir yıl seçin', | ||
chooseDecade: 'On Yıl seçin', | ||
nYear: '%num%', | ||
nMonth: '%num%', | ||
nDay: '%num%', | ||
prevYear: 'Önceki yıl', | ||
nextYear: 'Sonraki yıl', | ||
prevMonth: 'Önceki ay', | ||
nextMonth: 'Sonraki ay', | ||
prevDecade: 'Önceki on yıl', | ||
nextDecade: 'Sonraki on yıl', | ||
chooseTime: 'Saat seçin', | ||
chooseDate: 'Tarih seçin', | ||
chooseTimePlease: 'Saat seçin', | ||
chooseDatePlease: 'Tarih seçin', | ||
thisMoment: 'Şimdi', | ||
today: 'Bugün', | ||
ok: 'Tamam', | ||
}, | ||
|
||
Modal: { | ||
okText: 'Tamam', | ||
cancelText: 'İptal', | ||
understood: 'Anladım', | ||
}, | ||
|
||
Table: { | ||
emptyText: 'Veri yok', | ||
}, | ||
|
||
Select: { | ||
notFoundContent: 'Bulunamadı', | ||
}, | ||
|
||
Transfer: { | ||
titles: ',', | ||
notFoundContent: 'Bulunamadı', | ||
searchPlaceholder: 'Burada ara', | ||
itemUnit: 'öğe', | ||
itemsUnit: 'öğeler', | ||
} | ||
}; |