9 lines
192 B
Go
9 lines
192 B
Go
package i18n
|
|
|
|
func FormatDistance(langPack LangPack, meters float64) string {
|
|
if meters < 1000 {
|
|
return UNITS_METER.Text(langPack, meters)
|
|
}
|
|
return UNITS_KM.Text(langPack, meters/1000)
|
|
}
|