Nothing
.CURRENT_DICT <- NULL
.LAST_LOCALE <- NULL
#' @importFrom utils modifyList
cache_dictionary <- function() {
assignInMyNamespace(".LAST_LOCALE", getOption("translated_locale"))
ret <- access_dict_by_locale(.LAST_LOCALE)
inherit <- ret[["config"]][["inherit"]]
while (!is.null(inherit)) {
add <- access_dict_by_locale(inherit)
inherit <- add[["config"]][["inherit"]]
ret <- modifyList(add, ret)
}
ret[["config"]][["plural"]] <- preprocess_plural(ret[["config"]][["plural"]])
assignInMyNamespace(".CURRENT_DICT", ret)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.