usei18n | R Documentation |
This is an auxiliary function needed to monitor the state of the UI for live language translations.
usei18n(translator)
translator |
shiny.i18 Translator object |
if (interactive()) { library(shiny) library(shiny.i18n) # for this example to run make sure that you have a translation file # in the same path i18n <- Translator$new(translation_json_path = "translation.json") i18n$set_translation_language("en") ui <- fluidPage( usei18n(i18n), actionButton("go", "GO!"), h2(i18n$t("Hello Shiny!")) ) server <- shinyServer(function(input, output, session) { observeEvent(input$go,{ update_lang(session, "pl") }) }) shinyApp(ui = ui, server = server) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.