Übersetzungsanwendung EN->DE

translations = { 'hello': 'hallo', 'world': 'welt', 'cat': 'katze', 'dog': 'hund' } def translate(): word = Element('inputWord').value translation = translations.get(word.lower(), 'Nicht gefunden') Element('result').element.innerHTML = f"Übersetzung: {translation}"