Questions tagged [deepl]

DeepL is a translation engine that also offers an API for integration into any program.

DeepL is a free translation engine that also offers a paid API named DeepL Pro for integration into any program. It provides measurably better results than Google, Microsoft and others.

59 questions
0
votes
0 answers

Struggling with DeepL API

I tried to run the DeepL API but code ends up without a result. Here's the code I tried: public void Test() { Console.WriteLine("Starting translation ..................."); Console.WriteLine(Translation("Hello world!", "DE").Result.Text); …
seeker
  • 1
0
votes
1 answer

Issues with DeepL Api not translating past new line in Axios

This may not be the correct forum to ask this question, but perhaps some have experience with implementing the DeepL API. I make a Get request via Axios for a sample letter, containing paragraphs, however while the variable that is passed in…
seanberlin
  • 161
  • 1
  • 8
0
votes
0 answers

Invalid authorization for DeepL API gossary creation

I am trying to create a glossary using DeepL's api. This is DeepL's api for creating glossaries: https://www.deepl.com/en/docs-api/managing-glossaries/ Under the documentation, I should be able to set an authorization header, and send a body of…
0
votes
1 answer

How to translate with Scrapy and DeepL API?

How can I translate the items ['devicecount'] and ['released'] using the DeepL API? Here is my code: import scrapy from gsm.items import GsmItem class GsmSpider(scrapy.Spider): name = 'gsm' allowed_domains = ['gsmarena.com'] start_urls…
Alexander
  • 45
  • 10
0
votes
0 answers

Postman POST request is giving a 403 exception

I'm attempting to send a POST request to DeepL API, and I send my request I receive a 403 Forbidden Error, which says that the request 'is a legal request but the server refuses to respond to it' and I can't figure out why. I will attach the logs…
user16741832
0
votes
1 answer

Do not translate specific elements with DeepL and DeepL WordPress plugin

I want to translate all text, except those contained inside of specific elements, for example: Please open the page Settings to configure your system. DeepL should translate everything except for items inside the element. I read the doc…
Jesse
  • 2,790
  • 1
  • 20
  • 36
0
votes
1 answer

DeepL API returns error for long text translation

I am using DeepL API to translate text and it is working fine. But if there is more than 4000 characters, it returns status as error without translating data. https://api.deepl.com/v2/translate?&target_lang=en&auth_key=&text=dummy…
0
votes
2 answers

How can multiple "text" parameters be passed to the DeepL API using Python?

I am trying to pass multiple text variables with the DeepL API using Python 3's requests library, but as yet have been unable to pass multiple text parameters to a request. The documentation states that "Up to 50 text parameters can be submitted in…
Thomas
  • 192
  • 2
  • 10
0
votes
1 answer

Using variable as data parameter in a POST request with Deepl API

I am using this script to make a POST request to the Deepl API. In this case the text parameter is passed as a data parameter. I want to pass the text as a variable so I can use it in other scripts, but I can't make the post request if it is not a…
Folleloide
  • 39
  • 8
0
votes
1 answer

Why does DeepL not translate single words correctly? Russian-> Polish / Polish-> Russian

Why does DeepL not translate single words correctly? Example: Wrong: **przekrzywić наклон przekrzywić się наклон** Correct: **przekrzywić перекосить przekrzywić się перекоситься** This is a small example, but I checked many thousands of words and…
Nero
  • 7
  • 2
0
votes
1 answer

Right-click to translate (look up) with DeepL translator on MacOS

There is an article (https://medium.com/@mrdoro/fast-translation-with-google-translator-and-mac-osx-817e32233b7a) from Lukasz Dorosz about using Apple Automator to integrate Google translator with macOS. I did it and it works. My question is - How…
Dimitri
  • 1
  • 2
0
votes
1 answer

How to retrieve sentences from HTML in order to translate them and insert them back into the HTML?

In our company we have people from different countries that translate texts into their mother tongue. Few years ago, we developed a translation tool. With that tool both translators and people that need translations can handle this translation…
Adrián Rodriguez
  • 430
  • 11
  • 26
-1
votes
2 answers

Best way to translate inputs

Good evening, Today I've encountered a question/problem. I'll get right into it. So basically I have form which is used to create meal. Meal table (migration) looks like…
-2
votes
1 answer

I want to POST from C # to DeepL API

I want to POST from C # to DeepL API. It just doesn't work. Can anyone please tell me how? var httpWebRequest = (HttpWebRequest)WebRequest.Create("https://api-free.deepl.com/v2/translate"); httpWebRequest.Method = "POST"; httpWebRequest.ContentType…
user45545
  • 11
  • 2
1 2 3
4