5

Question: Anyone has any idea about localisation of applications ( Desktop, mobile )? Like how to convert the user interface text elements into local languages... etc..
Any other suggestion for localization events also welcome 😊

Comments
  • 1
    I can help with JavaFX and Java Android but I am struggling with web internationalization.
  • 1
    I have rarely ever touched localization, but iirc its handled via translate files and templating, so you have your variable and it gets replaced with the users current language text from the file.
  • 3
    Android has a pretty good system for handling multiple languages for an app (try it with Android Studio, it will yell on you if you don't use it). Try implenting the same system for your environment or find a similar library/workframe.
  • 0
    So jaa betaπŸ˜‚πŸ˜‚
  • 2
    And I just remembered having worked with CodeIgniter, a PHP framework that allows to use multiple user languages. It works the same way as explained above. I think most high level programming languages have an existing framework facilitating what you want to do
  • 0
    I've rarely dealt with localization. I used translation templates
Add Comment