Bookmarklet para Internostrum
Por Luis Peralta
interNOSTRUM es un traductor del catalán al castellano y viceversa que funciona bastante bien (gracias Jose). El caso es que es un peñazo tenerse que ir a la web a poner la palabrita o texto a traducir, así que me hice el otro día un bookmarklet para hacer la tarea más cómoda.
Para utilizarlo, sólo tienes que arrastrar mi [bookmarklet de internostrum](javascript: ( function() { document.open(); Qr=document.getSelection();if(!Qr){void(Qr=prompt(‘Traductor internostrum (castellà-català):’,''))}if(Qr) { uri=‘http://web.archive.org/web/20231206190409/http://www.internostrum.com/tradquadtext.php'; f = document.createElement(‘form’); f.method = ‘post’; f.action = uri; i0 = document.createElement(‘input’); i0.type = ‘text’; i0.name = ‘quadretext’; i0.value = Qr; i1 = document.createElement(‘input’); i1.type = ‘text’; i1.name = ‘tipus’; i1.value = ‘txt’; i2 = document.createElement(‘input’); i2.type = ‘text’; i2.name = ‘direccio’; i2.value = ‘es-ca’; f.appendChild(i0); f.appendChild(i1); f.appendChild(i2); b = document.createElement(‘body’); b.appendChild(f); h = document.getElementsByTagName(‘html’)[0]; h.appendChild(b); f.submit(); }})() “Traductor InterNostrum”) a tu barra de bookmarks.
Es mi primer bookmarklet, así que acepto todo tipo de sugerencias y consejos.