shinyapps.io locale

It seems that on shinyapps.io only the following locales are available under free account: C, C.UTF-8, POSIX, en_US.utf8.

output$locales <- renderPrint({
	locales <- system("locale -a", intern = TRUE)
	cat(locales)
})

Is this a limitation of the free account?
Or am I missing something?

Thanks very much in advance for help!

1 Like