bancuri, glume, imagini, video, fun, bancuri online, bancuri tari, imagini haioase, videoclipuri haioase, distractie online Pe HaiSaRadem.ro vei gasi bancuri, glume, imagini, video, fun, bancuri online, bancuri tari, imagini haioase, videoclipuri haioase, distractie online. Nu ne crede pe cuvant, intra pe HaiSaRadem.ro ca sa te convingi.

Simple Deepl Free API Python example

Deepl Free API Python example

import requests, sys

# Usage: python DeeplFreeAPI.py RO “Was ist das?”

# Response: {“translations”:[{“detected_source_language”:”DE”,”text”:”Ce este?”}]}

auth_key = ‘your_API_key_here’
target_lang = sys.argv[1]
text = sys.argv[2]
data = {
‘auth_key’: auth_key,
‘text’: text,
‘target_lang’: target_lang}

response = requests.post(‘https://api-free.deepl.com/v2/translate’, data=data)

print(response.json()[“translations”][0][“text”])

Traduceri ale landurilor germane în limba română + capitale

Land în germană Land în română Capitală
Baden-Württemberg Baden-Württemberg Stuttgart
Freistaat Bayern Statul Liber Bavaria München
Freistaat Berlin Orașul Liber Berlin Berlin
Brandenburg Brandenburg Potsdam
Freie und Hansestadt Bremen Orașul Liber și Hanseatic Brema (Brema și Bremerhaven)
Freie und Hansestadt Hamburg Orașul Liber și Hanseatic Hamburg Hamburg
Hessen Hessa Wiesbaden
Mecklenburg-Vorpommern Mecklenburg – Pomerania Inferioară Schwerin
Niedersachsen Saxonia Inferioară Hannover (Hanovra)
Nordrhein-Westfalen Renania de Nord – Westfalia Düsseldorf
Rheinland-Pfalz Renania-Palatinat Mainz
Saarland Saarland Saarbrücken
Freistaat Sachsen Statul Liber Saxonia Dresden (Dresda)
Sachsen-Anhalt Saxonia-Anhalt Magdeburg
Schleswig-Holstein Schleswig-Holstein Kiel
Freistaat Thüringen Statul Liber Turingia Erfurt

Convert Trados sdlxliff file to tmx with Tikal

tikal -2tmx -fc okf_xliff-sdl “file.sdlxliff” -sl de-DE -tl ro-RO

Or convert all files in the directory:

tikal -2tmx -fc okf_xliff-sdl *.sdlxliff -sl de-DE -tl ro-RO

At least version M35 is needed.
From the Tikal WIKI:
Convert to TMX Format

Creates a TMX document for the give input file. If the input file is multilingual (like a PO or a TS file), the source and target will be in the TMX document.

The syntax of this command is:

-2tmx [options] inputFile [inputFile2…]

Where the options are:
-fc configId The identifier of the filter configuration to use for the input files.
-ie encoding The encoding name of the input files. this is used only if the filter cannot detect the encoding from the input file itself.
-sl srcLang The code of the source language of the input files. See more details…
-tl trgLang The code of the target language. See more details…
-trgsource|
-trgempty Forces the content of the output target field to be either a copy of the source or empty. If neither option is set the content of the target field is the target text or empty.
-all Allows entries that have no text to be converted. If this option is not set (the default), the entries that are empty, or contains only codes or whitespaces are not included in the output file. If this option is set all entries are included in the output.
-approved If this option is set only approved entries are included.
-rd rootDirectory The root directory (by default the user’s home directory).

For example:

tikal -2tmx data.po -sl EN -tl ZU

Creates a TMX document from the PO file data.po. The source language is English and the target Zulu.

tikal -2tmx data.tmx -sl EN -tl DE -trgempty

Creates a TMX document from another TMX document named data.tmx. The source language is English and the target German. The content of the elements for the German will be empty.

Autohotkey to simulate Ctr-Insert in MemoQ to copy target segment into source segment

In MemoQ, to copy target segment into source segment, you press Ctr+Alt+S.
In SDL Studio, to copy target segment into source segment, you press Ctr+Insert.
This AutoHotKey script simulates the same shortcut in MemoQ, that is, if you press Ctr+Insert in MemoQ, you can copy the source segment into the target segment, having the same shortcut as in SDL Studio, which I find to be easier and more logical.
Copy the code, paste it in a text file and rename the extension to AHK. In order to run, AutoHotKey must be installed.

^Insert:: ; Simulate Ctr+Insert in MemoQ
WinGetActiveTitle, Title
IfInString, Title, memoQ
{
Send ^+s
Send {Left}
}
Else
Send ^{Ins}
Return