Move all strings to a common resource (or even better, to JSON)
For cleaning up the code base. Would make translations easier, in case we decide to go this route.
I could try to do this one.
I understand you want to just move strings to a common resource, you don't want translations yet.
Do you have an example on how to do this? 2 years ago I did something related at LazyGit https://github.com/jesseduffield/lazygit/pull/2852 I am a beginner with Go, I am just wondering why you didn't use the "Good first issue" label here, I believe this task may not be so simple to do...
@KarlHeitmann Actually, I'm not sure whether this is really worth the effort, as the game has only like 1-2 browser plays per day.
I have no experience with translations. A first step could be to put strings into an embedded JSON file. JSON handling is Go is really easy, and certainly useful if you want to learn Go.
Thank you Martin!
I'm a newbie in Go (I've completed some courses in udemy), but I think a good way to improve my skills in a new language is doing this kind of work (that may be tedious). And if I get to know how to manage JSON in Go, it is a good plus.
Also, you are already handling JSON files, so it shouldn't be so difficult.
If I've got the time to do it, I'll give it a try. Thank you.