Hey guys, I've been making a really simple platformer and I wanted to upload it to the SFML projects section, but I realized I made it all in Spanish.
My question would be how do you do multi-language support on videogames?
Do you have something like this for every string there is in the game?
//code
sf::String myString;
if(languageIsEnglish){
myString.setString("Hi");
}
else if(languageIsSpanish){
myString.setString("Hola");
}
//more code