I appreciate your response!
Within my app I have spaces where users can create content, that is, they can put each new line of text, so I need a plugin (selection preference) where the user can choose in which language they want to see the app.
I donāt know of any that could do that. Also, if you were to be translating user generated content for every user who makes a choice to see it translated into another language of their preference that could cost a lot of money over time, as I am unaware of any free translation services. You may have luck searching the plugin marketplace, and maybe find something that does free translations.
Otherwise, youād want to setup an API call either to google translate or openai to translate the text into the different languages you offer when the user creates and saves the content, then you also save the translations to the database.
@graficosmorales The built in Language tool in the settings/language tab is not setup for the purposes of translating user generated content. It is intended and only able to be used for static texts that are setup manually in the app editor and do not have any functionality available for running workflow actions to populate them with user generated content.
Hello,
Please help me.
I canāt get my translated application to appear with the Google translate APi even though Iāve configured everything as described by Bubble and when I use a VPN to simulate that Iām in England for example, my application remains in French whereas Iād like it to be translated into English.
This is just a note for future people who come by this post. One thing that I have done during development which should help me loads in the long runā¦
Whenever I create a word using the apptext so it can check translations, I know I will have to go through every spreadsheet every time I add new words or features. So I decide to only release them in English and then catch up the translations when I can. This means I am not editing the spreadsheet every single time I add a word.
So I did a .find&replace to make it english until I have time to get to the spread sheets. Apptext.find&replace (no translation) with text. Then when I do add the spreadsheet information it will all update at once without slowing down development time.