Interpreting the R Shiny App

I want to make a multilingual R Shiny app, but I don't know where to start. Are there libraries or Shiny widgets for switching languages ​​in a Shiny app?

More generally, what are the best internationalization practices in R? Are there any textbooks? I know there is a gettext command that comes from GNU gettext, but it’s not very convenient for me. Should I read the GNU gettext manual first (and which chapters will be enough for beginners)?

+5
source share
1 answer

I was looking to do the same and found this . The creator explains how this works, and there is a github repository if you want to use its code in your application.

This works fine for me, as it looks like the implementation of the Zend Framework that I have already used in the past.

+1
source

Source: https://habr.com/ru/post/1271459/


All Articles