func ParseInLocationWithLocale()

in lunes.go [139:146]


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

	return time.ParseInLocation(layout, pv, location)
}