func ParseWithLocale()

in lunes.go [115:122]


func ParseWithLocale(layout string, value string, locale Locale) (time.Time, error) {
	pv, err := TranslateWithLocale(layout, value, locale)
	if err != nil {
		return time.Time{}, err
	}

	return time.Parse(layout, pv)
}