You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/vendor/github.com/goodsign/monday/format_el_gr.go

78 lines
1.9 KiB
Go

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package monday
// ============================================================
// Format rules for "el_GR" locale: Greek (Greece)
// ============================================================
var longDayNamesElGR = map[string]string{
"Sunday": "Κυριακή",
"Monday": "Δευτέρα",
"Tuesday": "Τρίτη",
"Wednesday": "Τετάρτη",
"Thursday": "Πέμπτη",
"Friday": "Παρασκευή",
"Saturday": "Σάββατο",
}
var shortDayNamesElGR = map[string]string{
"Sun": "Κυρ",
"Mon": "Δευ",
"Tue": "Τρι",
"Wed": "Τετ",
"Thu": "Πεμ",
"Fri": "Παρ",
"Sat": "Σαβ",
}
var longMonthNamesElGR = map[string]string{
"January": "Ιανουάριος",
"February": "Φεβρουάριος",
"March": "Μάρτιος",
"April": "Απρίλιος",
"May": "Μάιος",
"June": "Ιούνιος",
"July": "Ιούλιος",
"August": "Αύγουστος",
"September": "Σεπτέμβριος",
"October": "Οκτώβριος",
"November": "Νοέμβριος",
"December": "Δεκέμβριος",
}
var longMonthNamesGenitiveElGR = map[string]string{
"January": "Ιανουαρίου",
"February": "Φεβρουαρίου",
"March": "Μαρτίου",
"April": "Απριλίου",
"May": "Μαΐου",
"June": "Ιουνίου",
"July": "Ιουλίου",
"August": "Αυγούστου",
"September": "Σεπτεμβρίου",
"October": "Οκτωβρίου",
"November": "Νοεμβρίου",
"December": "Δεκεμβρίου",
}
var shortMonthNamesElGR = map[string]string{
"Jan": "Ιαν",
"Feb": "Φεβ",
"Mar": "Μαρ",
"Apr": "Απρ",
"May": "Μαϊ",
"Jun": "Ιουν",
"Jul": "Ιουλ",
"Aug": "Αυγ",
"Sep": "Σεπ",
"Oct": "Οκτ",
"Nov": "Νοε",
"Dec": "Δεκ",
}
var periodsElGR = map[string]string{
"am": "πμ",
"pm": "μμ",
"AM": "ΠΜ",
"PM": "ΜΜ",
}