mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
20c513be6e
* Show download count info in release list * Use go-humanize
25 lines
371 B
Go
Vendored
25 lines
371 B
Go
Vendored
package humanize
|
|
|
|
import "strconv"
|
|
|
|
// Ordinal gives you the input number in a rank/ordinal format.
|
|
//
|
|
// Ordinal(3) -> 3rd
|
|
func Ordinal(x int) string {
|
|
suffix := "th"
|
|
switch x % 10 {
|
|
case 1:
|
|
if x%100 != 11 {
|
|
suffix = "st"
|
|
}
|
|
case 2:
|
|
if x%100 != 12 {
|
|
suffix = "nd"
|
|
}
|
|
case 3:
|
|
if x%100 != 13 {
|
|
suffix = "rd"
|
|
}
|
|
}
|
|
return strconv.Itoa(x) + suffix
|
|
}
|