View source: R/create_transliteration_table.R
create_transliteration_table | R Documentation |
This function generates a transliteration table by transliterating a list of words into multiple languages.
create_transliteration_table(words, languages)
words |
A character vector containing the words to be transliterated. |
languages |
A character vector specifying the target languages for transliteration. |
A data frame representing the transliteration table with original words and transliterations in each language.
## Not run:
words <- c("Hello world", "Goodbye", "Thank you", "Please")
languages <- c("ar", "he", "el", "ru", "fa")
transliterations <- create_transliteration_table(words, languages)
print(transliterations)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.