I’d like one of my strings to display the play count, and say “play” after the number if it’s 1 and “plays” after for anything other than 1.
For example:
1 play
2 plays
0 plays
I’m trying to create a custom string and have gotten as far as showing “plays” if the playcount != 1, but is there a sort of else operator I can use to have it show “play” if playcount == 1?