forked from goodsign/monday
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/goodsign/monday
- Loading branch information
Showing
12 changed files
with
361 additions
and
9 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
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,55 @@ | ||
package monday | ||
|
||
// ============================================================ | ||
// Format rules for "et_EE" locale: Estonian (Estonia) | ||
// ============================================================ | ||
|
||
var longDayNamesEtEE = map[string]string{ | ||
"Sunday": "pühapäev", | ||
"Monday": "esmaspäev", | ||
"Tuesday": "teisipäev", | ||
"Wednesday": "kolmapäev", | ||
"Thursday": "neljapäev", | ||
"Friday": "reede", | ||
"Saturday": "laupäev", | ||
} | ||
|
||
var shortDayNamesEtEE = map[string]string{ | ||
"Sun": "P", | ||
"Mon": "E", | ||
"Tue": "T", | ||
"Wed": "K", | ||
"Thu": "N", | ||
"Fri": "R", | ||
"Sat": "L", | ||
} | ||
|
||
var longMonthNamesEtEE = map[string]string{ | ||
"January": "jaanuar", | ||
"February": "veebruar", | ||
"March": "märts", | ||
"April": "aprill", | ||
"May": "mai", | ||
"June": "juuni", | ||
"July": "juuli", | ||
"August": "august", | ||
"September": "september", | ||
"October": "oktoober", | ||
"November": "november", | ||
"December": "detsember", | ||
} | ||
|
||
var shortMonthNamesEtEE = map[string]string{ | ||
"Jan": "jaan", | ||
"Feb": "veebr", | ||
"Mar": "märts", | ||
"Apr": "apr", | ||
"May": "mai", | ||
"Jun": "juuni", | ||
"Jul": "juuli", | ||
"Aug": "aug", | ||
"Sep": "sept", | ||
"Oct": "okt", | ||
"Nov": "nov", | ||
"Dec": "dets", | ||
} |
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,55 @@ | ||
package monday | ||
|
||
// ============================================================ | ||
// Format rules for "hr_HR" locale: Croatian (Croatia) | ||
// ============================================================ | ||
|
||
var longDayNamesHrHR = map[string]string{ | ||
"Sunday": "nedjelja", | ||
"Monday": "ponedjeljak", | ||
"Tuesday": "utorak", | ||
"Wednesday": "srijeda", | ||
"Thursday": "četvrtak", | ||
"Friday": "petak", | ||
"Saturday": "subota", | ||
} | ||
|
||
var shortDayNamesHrHR = map[string]string{ | ||
"Sun": "ned", | ||
"Mon": "pon", | ||
"Tue": "uto", | ||
"Wed": "sri", | ||
"Thu": "čet", | ||
"Fri": "pet", | ||
"Sat": "sub", | ||
} | ||
|
||
var longMonthNamesHrHR = map[string]string{ | ||
"January": "siječanj", | ||
"February": "veljača", | ||
"March": "ožujak", | ||
"April": "travanj", | ||
"May": "svibanj", | ||
"June": "lipanj", | ||
"July": "srpanj", | ||
"August": "kolovoz", | ||
"September": "rujan", | ||
"October": "listopad", | ||
"November": "studeni", | ||
"December": "prosinac", | ||
} | ||
|
||
var shortMonthNamesHrHR = map[string]string{ | ||
"Jan": "sij", | ||
"Feb": "velj", | ||
"Mar": "ožu", | ||
"Apr": "tra", | ||
"May": "svi", | ||
"Jun": "lip", | ||
"Jul": "srp", | ||
"Aug": "kol", | ||
"Sep": "ruj", | ||
"Oct": "lis", | ||
"Nov": "stu", | ||
"Dec": "pro", | ||
} |
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,55 @@ | ||
package monday | ||
|
||
// ============================================================ | ||
// Format rules for "lv_LV" locale: Latvian (Latvia) | ||
// ============================================================ | ||
|
||
var longDayNamesLvLV = map[string]string{ | ||
"Sunday": "Svētdiena", | ||
"Monday": "Pirmdiena", | ||
"Tuesday": "Otrdiena", | ||
"Wednesday": "Trešdiena", | ||
"Thursday": "Ceturtdiena", | ||
"Friday": "Piektdiena", | ||
"Saturday": "Sestdiena", | ||
} | ||
|
||
var shortDayNamesLvLV = map[string]string{ | ||
"Sun": "Svētd", | ||
"Mon": "Pirmd", | ||
"Tue": "Otrd", | ||
"Wed": "Trešd", | ||
"Thu": "Ceturtd", | ||
"Fri": "Piektd", | ||
"Sat": "Sestd", | ||
} | ||
|
||
var longMonthNamesLvLV = map[string]string{ | ||
"January": "janvāris", | ||
"February": "februāris", | ||
"March": "marts", | ||
"April": "aprīlis", | ||
"May": "maijs", | ||
"June": "jūnijs", | ||
"July": "jūlijs", | ||
"August": "augusts", | ||
"September": "septembris", | ||
"October": "oktobris", | ||
"November": "novembris", | ||
"December": "decembris", | ||
} | ||
|
||
var shortMonthNamesLvLV = map[string]string{ | ||
"Jan": "janv", | ||
"Feb": "febr", | ||
"Mar": "marts", | ||
"Apr": "apr", | ||
"May": "maijs", | ||
"Jun": "jūn", | ||
"Jul": "jūl", | ||
"Aug": "aug", | ||
"Sep": "sept", | ||
"Oct": "okt", | ||
"Nov": "nov", | ||
"Dec": "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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
package monday | ||
|
||
// ============================================================ | ||
// Format rules for "sk_SK" locale: Slovak (Slovakia) | ||
// ============================================================ | ||
|
||
var longDayNamesSkSK = map[string]string{ | ||
"Sunday": "nedeľa", | ||
"Monday": "pondelok", | ||
"Tuesday": "utorok", | ||
"Wednesday": "streda", | ||
"Thursday": "štvrtok", | ||
"Friday": "piatok", | ||
"Saturday": "sobota", | ||
} | ||
|
||
var shortDayNamesSkSK = map[string]string{ | ||
"Sun": "ne", | ||
"Mon": "po", | ||
"Tue": "ut", | ||
"Wed": "st", | ||
"Thu": "št", | ||
"Fri": "pi", | ||
"Sat": "so", | ||
} | ||
|
||
var longMonthNamesSkSK = map[string]string{ | ||
"January": "január", | ||
"February": "február", | ||
"March": "marec", | ||
"April": "apríl", | ||
"May": "máj", | ||
"June": "jún", | ||
"July": "júl", | ||
"August": "august", | ||
"September": "september", | ||
"October": "október", | ||
"November": "november", | ||
"December": "december", | ||
} | ||
|
||
var shortMonthNamesSkSK = map[string]string{ | ||
"Jan": "jan", | ||
"Feb": "feb", | ||
"Mar": "mar", | ||
"Apr": "apr", | ||
"May": "máj", | ||
"Jun": "jún", | ||
"Jul": "júl", | ||
"Aug": "aug", | ||
"Sep": "sep", | ||
"Oct": "okt", | ||
"Nov": "nov", | ||
"Dec": "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
Oops, something went wrong.