Skip to content

Commit

Permalink
fix #222
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Oct 11, 2024
1 parent f671295 commit f77aa58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/core/module_utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ getModuleI18nTerms <- function(){
#i18n
i18n <- function(term){
i18n_term <- appConfig$i18n[[appConfig$language]][[term]]
if(is.null(i18n_term)) i18n_term <- tags$span(paste0("<",term,"_", toupper(appConfig$language),">"), style = "color:red;")
if(is.null(i18n_term)) i18n_term <- paste0("[",term,"_", toupper(appConfig$language),"]")
return(i18n_term)
}

Expand Down

0 comments on commit f77aa58

Please sign in to comment.