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_bg_bg.go

56 lines
1.3 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 "bg_BG" locale: Bulgarian (Bulgaria)
// ============================================================
var longDayNamesBgBG = map[string]string{
"Sunday": "Неделя",
"Monday": "Понеделник",
"Tuesday": "Вторник",
"Wednesday": "Сряда",
"Thursday": "Четвъртък",
"Friday": "Петък",
"Saturday": "Събота",
}
var shortDayNamesBgBG = map[string]string{
"Sun": "Нд",
"Mon": "Пн",
"Tue": "Вт",
"Wed": "Ср",
"Thu": "Чt",
"Fri": "Пт",
"Sat": "Сб",
}
var longMonthNamesBgBG = map[string]string{
"January": "Януари",
"February": "Февруари",
"March": "Март",
"April": "Април",
"May": "Май",
"June": "Юни",
"July": "Юли",
"August": "Август",
"September": "Септември",
"October": "Октомври",
"November": "Ноември",
"December": "Декември",
}
var shortMonthNamesBgBG = map[string]string{
"Jan": "Яну",
"Feb": "Фев",
"Mar": "Мар",
"Apr": "Апр",
"May": "Май",
"Jun": "Юни",
"Jul": "Юли",
"Aug": "Авг",
"Sep": "Сеп",
"Oct": "Окт",
"Nov": "Ное",
"Dec": "Дек",
}