View source: R/create_translation_table.R
create_translation_table | R Documentation |
This function generates a translation table by translating a list of words into multiple languages.
create_translation_table(words, languages)
words |
A character vector containing the words to be translated. |
languages |
A character vector specifying the target languages for translation. |
A data frame representing the translation table with original words and translations in each language.
## Not run:
words <- c("Hello", "Translate", "Table", "Script")
languages <- c("es", "fr", "de", "nl")
translations <- create_translation_table(words, languages)
print(translations)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.