Using Streamlit I was able to make use of the format_func option in widgets in order to write an app in English but support multiple languages. Is there an equivalent or workaround to facilitate this same type of functionality in Panel? Here is the Streamlit code I was using for a selectbox widget:
The objective would be to utilize only English terms in the code itself but display Spanish to the customer. When they then picked “Contra” (for against) it would be reverse translated to “Against” so that it could be processed using English in the code. That’s sort of how it works using that Streamlit example. Giving the appearance that the app is in Spanish when, in fact, it’s all in English under the hood. Thanks!