nicksnyder / go-i18n

Translate your Go program into multiple languages.
MIT License
3.03k stars 277 forks source link

fix: option in TextParser is not used #335

Closed cazeaux closed 1 month ago

cazeaux commented 1 month ago

Resolves #334

nicksnyder commented 1 month ago

Ugh, thanks for finding this. Option in TextParser really should have been a []string, but changing now would be backwards incompatible. There is only one supported option today, so this is moot for now.

I want to avoid pulling in an extra library just for one test so am going to push some changes.