Page 2 of 4

Posted: Fri 22 Apr 2011, 09:42
by vovchik
Dear mcewanw (William),

Thanks. Please have a look at the parsing stuff. My sed skills are really lacklustre, and we could do a more thourogh clean in the BaCon bit. In fact, using gtrayapp or Doyle's quick tray app might be a nice idea as a launcher, since the prog would always be available in the taskbar. Goot does that bit well. And a language swap would be nice.

I am also trying to understand pcreole and will find some nice uses.

With kind regards,
vovchik

speed of gxlat

Posted: Thu 12 May 2011, 14:18
by L18L
#
# time wget -qO- "http://ajax.googleapis.com/ajax/service ... 1.0&q=Dear vovchik, I like your program and I am thinking it is worth to be improved&langpair=en|ru"
{"responseData": {"translatedText":"Уважаемый Вовчик, мне нравит

gxlat timeouts

Posted: Thu 12 May 2011, 18:48
by vovchik
Dear L18L,

I think the timeout problem is related to my timeout setting in bing (bacon program, the source should be there). As you have shown, gxlat really does not inherently slow anything down :). The timeouts result from bing reporting slow DNS resolution. :(

With kind regards,
vovchik

PS. Es ist einfach das Zeug zu ändern/verbessern. Bezüglich Netzwerkverbindungen, Gxlat funktioniert bei mir tadellos - in Wien und sogar in der Ukraine.

Posted: Thu 12 May 2011, 19:10
by mcewanw
vovchik wrote:Dear mcewanw (William),

Thanks. Please have a look at the parsing stuff.
Sorry vovchik, I said I would do that, but I got really busy, and now I have too much ahead for a long while. I don't think I'll be able to afterall, but I trust you have everything solved to your satisfaction now anyway. I have matters on the personal front coming up so I'm expecting to be going quiet on the computing front for some time, though I'll be back thereafter.

Best wishes

William

Re: gxlat timeouts

Posted: Fri 13 May 2011, 12:34
by L18L
vovchik wrote:PS. Es ist einfach das Zeug zu ändern/verbessern. Bezüglich Netzwerkverbindungen, Gxlat funktioniert bei mir tadellos - in Wien und sogar in der Ukraine.
and here is the translation that gxlat wrote:PS. It's just what it takes to change / improve. Regarding network connectivity, Gxlat works perfectly for me - in Vienna and even in Ukraine.
"It's just what it takes"....mh
It was not that simle....
But anyhow here is my improvement for users outside Vienna.

Code: Select all

# *********************
# MAIN
# *********************

init_vars
#check_inet
# replacement for check_inet part 1 L18L
yaf-splash -placement center -bg yellow -fontsize large -text "`gettext "Please wait, probing primary remote site..."`" &
YPID=$!
for n in 3 2 1 0
do
 myDUMMY_TEXT=`wget -qO- "http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&q=dummy&langpair=en|de" | sed 's/.*"translatedText":"\([^"]*\)".*}/\1\n/' `
 [ "$myDUMMY_TEXT" != "" ] && break
 sleep `echo $n`
 #echo -n $n
done
# end replacement for check_inet part 1 L18L

make_help_gui
make_readme_gui
make_gui
export -f swap_langs
export -f strip_lang_name
export -f translate
#gtkdialog3 -p MAIN
# replacement for check_inet part 2 L18L
if [ "$myDUMMY_TEXT" != "" ] 
then
 kill $YPID
 gtkdialog3 -p MAIN
else
 T_noco=$(gettext "Don't wait, no connection to remote site...")
 echo "$T_noco"
 yaf-splash -placement center -bg yellow -fontsize large -text "$T_noco"
fi 
# end replacement for check_inet part 2 L18L

# *********************
# END MAIN
# *********************
tested with "Disconnected from network" too.
When connected it is retrying 3 times to to enable the use of this nice program. :)

nice improgvement

Posted: Fri 13 May 2011, 12:54
by vovchik
Dear L18L,

Much better! Thanks. Do you want to post a revised pet or should I? Very nice mod.

With kind regards,
vovchik

Re: nice improvement

Posted: Fri 13 May 2011, 13:56
by L18L
vovchik wrote:Dear L18L,

Much better! Thanks. Do you want to post a revised pet or should I? Very nice mod.

With kind regards,
vovchik
You should do...

I will make the internationalization.

I would like to convert it to BaCon later (with working SWAP button). The translations which have to be made from this shell version can also be used by the BaCon version.

Re: nice improgvement

Posted: Sat 14 May 2011, 12:27
by L18L
vovchik wrote:Do you want to post a revised pet or should I?
Revised yes but no pet. Feel free to delete comments and beautify sources.

Image

The image is showing usage of variables.
Translated once - used twice

gxlat - urlencoding problem ?

Posted: Fri 27 May 2011, 09:44
by L18L
Hi all
Привет в

Privet vsem

Posted: Sat 28 May 2011, 15:04
by vovchik
Dear L18L,

This isn't a gxlat problem. Please see my screenshot. Nothing like yours. It could be that your font isn't showing utf-8 properly or your LANG setting is weird. Mine is set to en_US and I see cyrillic just fine.

With kind regards,
vovchik

Re: Privet vsem

Posted: Sun 29 May 2011, 08:33
by L18L
Dear Vovchik
you wrote:...
your font isn't showing utf-8
...
Yes, that was it ! Stupid me. :oops:

I was developping as fido in latest wary.
Now in shinobar's good old multilingual wary.

With kind regards
L18L

Edit
upload of BaCon version coming soon...

gxlat

Posted: Sun 29 May 2011, 14:02
by L18L
Close buttons do close now and
swap button swaps languages.

No pet.

gxlat - Desktop Google Translator redux

Posted: Mon 06 Jun 2011, 19:30
by L18L
Dear Vovchik,
this version displays correctly < > " & ' (without changing them)
except: some languages seem to be trained to translate & as and.

I have filtered from_text and to_text using sed, see dat/flt_upstream and flt_downstream and
SUB translate
FUNCTION extract_translated_text()

Having finished this I discovered your html_clean.bac , too late.
My sed solution has the advantage that you can play with the filters without recompiling.

Added some tooltips and changed help to display buttons.

Regards

Posted: Tue 07 Jun 2011, 05:23
by aragon
for your info: afaik the translate-api is deprecated and will be 'closed' on december.

see here for details
http://code.google.com/intl/de-DE/apis/ ... rview.html

aragon

Re: gxlat - Desktop Google Translator redux

Posted: Thu 15 Sep 2011, 04:08
by otropogo
L18L wrote:Dear Vovchik,
this version displays correctly < > " & ' (without changing them)
except: some languages seem to be trained to translate & as and.

I have filtered from_text and to_text using sed, see dat/flt_upstream and flt_downstream and
SUB translate
FUNCTION extract_translated_text()

Having finished this I discovered your html_clean.bac , too late.
My sed solution has the advantage that you can play with the filters without recompiling.

Added some tooltips and changed help to display buttons.

Regards
When this thread started, I seemed to think I understood what it was about. But a few months and a couple of pages of comments later, I'm not so sure.

I assume the above is the latest version, and but am not clear on installation or functions available.

I'm looking for a convenient translation program, especially for Chinese, in which Google is not very good. Can this app do Chinese? If so, both simplified and traditional?

I'm also interested in being able to enter Chinese characters via pen tablet. I've got a electronic pen from ReadIris that handles Chinese, and a Hyundai mouse with a built in tablet I picked up in China recently. Does anyone have an idea how I could get them to work in Puppy 5.28?

Re: gxlat - Desktop Google Translator redux

Posted: Thu 29 Sep 2011, 18:05
by L18L
otropogo wrote:...
I'm looking for a convenient translation program, especially for Chinese, in which Google is not very good. Can this app do Chinese? If so, both simplified and traditional?
...
So this gxlat - Desktop Google Translator redux cannot be better :wink:

And yes, this version was the latest and is the last, see aragon's post

If you want to use it you must download and click and click...the executable file is gxlat in a directory gxlat where you liked to have it have extracted.

Re: gxlat - Desktop Google Translator redux

Posted: Fri 30 Sep 2011, 05:28
by otropogo
L18L wrote:
otropogo wrote:...
I'm looking for a convenient translation program, especially for Chinese, in which Google is not very good. Can this app do Chinese? If so, both simplified and traditional?
...
So this gxlat - Desktop Google Translator redux cannot be better :wink:

And yes, this version was the latest and is the last, see aragon's post

If you want to use it you must download and click and click...the executable file is gxlat in a directory gxlat where you liked to have it have extracted.
I'm not sure I understand you. Could you repeat that in German? Or maybe direct me to some documentation online? I really don't have the vaguest idea what this gxlat does.

Posted: Fri 30 Sep 2011, 05:52
by disciple
It just gets Google to translate some text for you.

Posted: Fri 30 Sep 2011, 06:26
by otropogo
disciple wrote:It just gets Google to translate some text for you.
Thanks

Posted: Fri 30 Sep 2011, 06:27
by aragon
Hi otropogo,

in german:
Gxlat ist nur ein 'anderes' Frontend für den Google-Translate Service. Es nutzt die Programmier-Schnittstelle (API), um die Daten per http an den Service zu senden und die Antwort wieder in der Oberfläche darzustellen. In diesem Sinne entsprechen die Fähigkeiten von gxlat (maximal) denen von Google translate.

Da es aber zu grobem Missbrauch dieser Schnittstelle gekommen ist (Google Formulierung) wird diese, freie, Variante der API am 01.12. 'geschlossen'. Ab diesem Zeitpunkt ist nur noch die kostenpflichtige Variante der API (Version 2) verfügbar.

Ich hoffe, die Erklärung hilft dir weiter.

aragon