reprogl
1package utils2
3import "time"4
5func RuMonthName(m time.Month, genitive bool) (res string) {6months := []string{7"Янв",8"Февр",9"Март",10"Апр",11"Май",12"Июнь",13"Июль",14"Авг",15"Сент",16"Окт",17"Нояб",18"Дек",19}20
21if genitive {22months[2] = "Марта"23months[4] = "Мая"24months[5] = "Июня"25months[6] = "Июля"26}27
28return months[int(m)-1]29}
30