| German | — | Român |
|---|---|---|
| Schleifscheibe | f | piatră, piatră de șlefuit, disc de șlefuit, piatră de rectificat |
| Treiber | m | driver, dispozitiv de acționare |
| Schlichten | n | finiție |
| Fertigschleifen | n | finiție |
| Schleifspindel | f | broșă, arbore port-piatră, arbore port-piatră al mașinii de rectificat |
| SL | f | prescurtare de la Schleifspindel – broșă, arbore port-piatră, arbore port-piatră al mașinii de rectificat |
| Vorschleifen | n | degroșare |
| Fertigmaß | n | dimensiune finală, cotă finală |
| Aufmaß | n | adaos, adaos de prelucrare |
| Bordmaß | n | dimensiune bord |
| Abrichtposition | f | poziție de diamantare |
| Abrichtwinkel | m | unghi de diamantare |
| Ausfeuern | n | scânteiere |
| Vorabrichten | n | prediamantare, diamantare preliminară |
| Vorabrichtbetrag | m | adâncime de prediamantare |
| Zwischenabrichten | n | diamantare intermediară |
| vorprofiliert | adj | preprofilat |
| Umschutz | m | ușă de protecție |
| Umfanggeschwindigkeit | f | viteză periferică |
| Bohrungsschleifen | n | rectificare interioară |
| SR | n | degroșare |
| Schruppen | n | degroșare |
| Abrichtung | f | diamantare |
| Abrichter | r | diamant |
| Versatz | m | excentric, centrarea inelului pe diametrul exterior |
| Maßkorrektur | f | corecție a cotei |
| Auflagefläche | f | suprafață de contact |
| hartgearbeitet | adj | prelucrat după călire |
| Laufbahn | f | cale de rulare |
| Laufbahnschleifen | n | rectificarea căii de rulare |
| Honabtrag | m | adaos de honuire |
| Rollenkranz | m | ansamblu role și colivie, inel de rulare (la un rulment cu role) |
| Schleifmaß | n | cotă de rectificare |
| Maßverkörperung | f | etalon |
| Vorschleifmaß | n | cotă de degroșare |
| Rollenmantel | r | suprafață de rulare a rolei |
| gehärtet und angelassen | adj | călit și revenit |
| Hartbearbeitung | f | prelucrare termică |
| Fertigmaß | n | cotă la gata, cotă finală |
| Maßschuh | m | papuc pentru cotă |
| Stützschuh | m | papuc de sprijin |
| Schuhversatz | m | excentric papuc |
| Einstichschleifen | n | rectificare prin puncție |
| Aufwurf | m | refulare |
| Aufwerfung | f | refulare |
| Wälzkörper | m | element rulant |
| Lunker | m | retasură |
| Grübchen | n | por |
| Einschluss | m | incluziune |
| Abschürfung | f | abraziune |
| Schliffbild | n | tipar de rectificare |
| Beschickung | f | alimentare (cu material) |
Author: letconex
My Autohotkey special character bindings
Autohotkey special character bindings
::nbs:: ; non-breaking space ” ” Chr(160) SendInput {U+00a0} % Chr(160)
SendInput {U+00a0}
return
::ccx:: ; ^ circumflex, caret – Chr(94) {ASC 0094} {U+005E}
SendInput {U+005E}
return
::sqt:: ; ` grave/accent – {U+0060} {ASC 0096}
SendInput {U+0060}
return
::aps:: ; apostrophe ‘ `{U+0039} {ASC 0039} ALT+039
SendInput {U+0027}
Return
::uds:: ; Underscore _ {U+005F} {ASC 0095} ALT+095 _
SendInput {U+005F}
Return
::phi:: ; Diameter symbol Ø {U+00D8} {ASC 0216} ALT+0216 Ø Ø ~
SendInput {U+00D8}
Return
::ac1:: ; alt+123 { {U+007B} {ASC 0123}
SendInput {U+007B}
return
::ac2:: ; alt+125 } {ASC 0125} {U+007d}
SendInput {U+007d}
return
::a2::ä
::A2::Ä
::u2::ü
::U2::Ü
::o2::ö
::O2::Ö
::sfs::ß
::dz::#
::g1::„ ; Alt+0132 „
::g2::” ; Alt+0148 ”
::g3::” ; Alt+034 “
::gs1::«
::gs2::»
::sk::ș ; ș {U+0219} ş alt+0186 U015F New comma bellow
::skm::Ș ; Ș {U+0218} Ş ; alt+0170 U015E New comma bellow
::tk::ț ; ț {U+021B} ţ alt+0254 U0163 New comma bellow
::tkm::Ț ; Ț {U+021A} Ţ alt+0222 U0162 New comma bellow
::sc::ş ; ș {U+0219} ş alt+0186 U015F
::scm::Ş ; Ș {U+0218} Ş ; alt+0170 U015E
::tc::ţ ; ț {U+021B} ţ alt+0254 U0163
::tcm::Ţ ; Ț {U+021A} Ţ alt+0222 U0162
::+-::±
::lln::{U+02015} ; — EM dash 8212 {U+02014} ― Horizontal bar 8213 {U+02015}
::blt::•
::pgf::§
::bks::\
::trm::®
::cpr::©
::eur::€
::px::| ; Chr(124) Sheffer stroke (in logic), verti-bar, vbar, stick, vertical line, vertical slash, bar, obelisk, pike, pipe
::tld::~ ; ~ Tilde chr(126) Alt +126 {ASC 126}
::pp1::[
::pp2::]
::m1::<
::m2::>
::ms1::≤
::ms2::≥
:O:tb::{U+0009} ; Send raw {TAB} {U+0009} %A_Tab% :O: Omit the ending character of auto-replace hotstrings when the replacement is produced. Write without trailing space.
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”])

