Gibt es ein Plugin, welches die Seite in eine ander Sprche übersetzt wie z.B. Englisch oder Spanisch?
Plugin für Sprachübersetzungen der Webseite...
-
Gerschon -
12. Februar 2014 um 14:57 -
Erledigt
-
-
Es gibt Erweiterungen https://addons.mozilla.org/de/firefox/search/?q=translate
Eine Übersetzung lässt sich auch einfach mit einem Bookmarklet erreichen.
Deutsch
Codejavascript:var%20t=((window.getSelection&&window.getSelection())||(document.getSelection&&document.getSelection())||(document.selection&&document.selection.createRange&&document.selection.createRange().text));var%20e=(document.charset||document.characterSet);if(t!=''){location.href='http://translate.google.com/?text='+t+'&hl=de&langpair=auto|de&tbb=1&ie='+e;}else{location.href='http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&hl=de&langpair=auto|de&tbb=1&ie='+e;};
EnglischCodejavascript:var%20t=((window.getSelection&&window.getSelection())||(document.getSelection&&document.getSelection())||(document.selection&&document.selection.createRange&&document.selection.createRange().text));var%20e=(document.charset||document.characterSet);if(t!=''){location.href='http://translate.google.com/?text='+t+'&hl=en&langpair=auto|en&tbb=1&ie='+e;}else{location.href='http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&hl=en&langpair=auto|en&tbb=1&ie='+e;};
SpanischCodejavascript:var%20t=((window.getSelection&&window.getSelection())||(document.getSelection&&document.getSelection())||(document.selection&&document.selection.createRange&&document.selection.createRange().text));var%20e=(document.charset||document.characterSet);if(t!=''){location.href='http://translate.google.com/?text='+t+'&hl=es&langpair=auto|es&tbb=1&ie='+e;}else{location.href='http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&hl=es&langpair=auto|es&tbb=1&ie='+e;};