toSpanish2 | R Documentation |
toSpanish2
translates a text from an available language into Spanish
using DeepL API Free. Use available_languages2
to list all supported languages.
An authentication key is required to use this service. With the DeepL API Free package,
developers can translate up to 500,000 characters per month for free.
toSpanish2(
text,
source_lang = NULL,
split_sentences = TRUE,
preserve_formatting = FALSE,
get_detect = FALSE,
auth_key = "your_key"
)
text |
character vector to be translated. Only UTF8-encoded plain text is supported. An element can contain several sentences, but should not exceed 30kbytes. |
source_lang |
language of the text to be translated. If parameter |
split_sentences |
if |
preserve_formatting |
if |
get_detect |
if |
auth_key |
Authentication key. |
To get an authentication key, you need to register for a DeepL API Free account (https://www.deepl.com/pro#developer).
If get_detect
is set to FALSE
a character vector
containing the
translation is returned. Otherwise, a (tibble
) is returned with the following columns:
translation
the translated text.
source_lang
detected or specified language of the input text.
## Not run:
# Translate a single text
toSpanish2("Hallo Welt!", auth_key = "my_key")
# Translate multiple texts and return the detected language
texts <- c("My name is Fred.", "Je suis médecin.", "Ich komme aus der Schweiz.")
toSpanish2(texts, get_detect = T, auth_key = "x")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.