-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from ED-iitu/kazakh-locale
kazakh locale added
- Loading branch information
Showing
6 changed files
with
121 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
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
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,85 @@ | ||
package monday | ||
|
||
// ============================================================ | ||
// Format rules for "kk_KZ" locale: Kazakh (Kazakhstan) | ||
// ============================================================ | ||
|
||
var longDayNamesKkKZ = map[string]string{ | ||
"Sunday": "Жексенбі", | ||
"Monday": "Дүйсенбі", | ||
"Tuesday": "Сейсенбі", | ||
"Wednesday": "Сәрсенбі", | ||
"Thursday": "Бейсенбі", | ||
"Friday": "Жұма", | ||
"Saturday": "Сенбі", | ||
} | ||
|
||
var shortDayNamesKkKZ = map[string]string{ | ||
"Sun": "Жс", | ||
"Mon": "Дс", | ||
"Tue": "Сс", | ||
"Wed": "Ср", | ||
"Thu": "Бс", | ||
"Fri": "Жм", | ||
"Sat": "Сб", | ||
} | ||
|
||
var longMonthNamesKkKZ = map[string]string{ | ||
"January": "Қаңтар", | ||
"February": "Ақпан", | ||
"March": "Наурыз", | ||
"April": "Сәуір", | ||
"May": "Мамыр", | ||
"June": "Маусым", | ||
"July": "Шілде", | ||
"August": "Тамыз", | ||
"September": "Қыркүйек", | ||
"October": "Қазан", | ||
"November": "Қараша", | ||
"December": "Желтоқсан", | ||
} | ||
|
||
var longMonthNamesGenitiveKkKZ = map[string]string{ | ||
"January": "қаңтар", | ||
"February": "ақпан", | ||
"March": "наурыз", | ||
"April": "сәуір", | ||
"May": "мамыр", | ||
"June": "маусым", | ||
"July": "шілде", | ||
"August": "тамыз", | ||
"September": "қыркүйек", | ||
"October": "қазан", | ||
"November": "қараша", | ||
"December": "желтоқсан", | ||
} | ||
|
||
var shortMonthNamesKkKZ = map[string]string{ | ||
"Jan": "Қаң", | ||
"Feb": "Ақп", | ||
"Mar": "Нау", | ||
"Apr": "Сәу", | ||
"May": "Мам", | ||
"Jun": "Мау", | ||
"Jul": "Шіл", | ||
"Aug": "Там", | ||
"Sep": "Қыр", | ||
"Oct": "Қаз", | ||
"Nov": "Қар", | ||
"Dec": "Жел", | ||
} | ||
|
||
var shortMonthNamesGenitiveKkKZ = map[string]string{ | ||
"Jan": "қаң", | ||
"Feb": "ақп", | ||
"Mar": "нау", | ||
"Apr": "сәу", | ||
"May": "мам", | ||
"Jun": "мау", | ||
"Jul": "шіл", | ||
"Aug": "там", | ||
"Sep": "қыр", | ||
"Oct": "қаз", | ||
"Nov": "қар", | ||
"Dec": "жел", | ||
} |
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
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
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