forked from react-component/picker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
401ae47
commit 3b2fe1e
Showing
1 changed file
with
33 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,33 @@ | ||
import { Locale } from '../interface'; | ||
|
||
const locale: Locale = { | ||
locale: 'az_AZ', | ||
today: 'Bugün', | ||
now: 'İndi', | ||
backToToday: 'Bugünə qayıt', | ||
ok: 'Təsdiq', | ||
clear: 'Təmizlə', | ||
month: 'Ay', | ||
year: 'İl', | ||
timeSelect: 'vaxtı seç', | ||
dateSelect: 'tarixi seç', | ||
weekSelect: 'Həftə seç', | ||
monthSelect: 'Ay seç', | ||
yearSelect: 'il seç', | ||
decadeSelect: 'Onillik seçin', | ||
yearFormat: 'YYYY', | ||
dateFormat: 'D.M.YYYY', | ||
dayFormat: 'D', | ||
dateTimeFormat: 'D.M.YYYY HH:mm:ss', | ||
monthBeforeYear: true, | ||
previousMonth: 'Əvvəlki ay (PageUp)', | ||
nextMonth: 'Növbəti ay (PageDown)', | ||
previousYear: 'Sonuncu il (Control + left)', | ||
nextYear: 'Növbəti il (Control + right)', | ||
previousDecade: 'Sonuncu onillik', | ||
nextDecade: 'Növbəti onillik', | ||
previousCentury: 'Sonuncu əsr', | ||
nextCentury: 'Növbəti əsr', | ||
}; | ||
|
||
export default locale; |