OlfSoftware.DeepL.ClientLib Unit

*************************************************************************** DeepL API client library for Delphi Copyright 2020-2024 Patrick Prémartin under AGPL 3.0 license. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *************************************************************************** DeepL is an online text and document translation tool, also available as software and APIs. This project is a client library in Pascal for Delphi to use the main translation API. Examples of use are also proposed. To use the API of DeepL you must have a free or paid account. *************************************************************************** Author(s) : Patrick PREMARTIN Site : https://deepl4delphi.developpeur-pascal.fr Project site : https://github.com/DeveloppeurPascal/DeepL4Delphi *************************************************************************** File last update : 04/08/2024 07:56:16 Signature : dc624178028740235135fa88f275713da3713fcb ***************************************************************************

Package: Translate
 NameDescription
TOnTextTranslatedErrorEvent

Callback method/event when translation has an error

TOnTextTranslatedErrorProc

Callback procedure when translation has an error

TOnTextTranslatedEvent

Callback method/event when translation is ok

TOnTextTranslatedProc

Callback procedure when translation is ok

Top
 NameDescription
DeepLSetAPIURL

Call to initialize DeepL API URL. If you forget to do, you will be on Free API.

DeepLTranslateTextASync

Overloaded. call DeepL API to translate the text from source_lang to target_lang (asynchrone - don't freeze current thread)

DeepLTranslateTextASync

Overloaded. call DeepL API to translate the text from source_lang to target_lang (asynchrone - don't freeze current thread)

DeepLTranslateTextSync

call DeepL API to translate the text from source_lang to target_lang (synchrone - current thread is freezed during process)

Top