| View previous topic :: View next topic |
| Author |
Message |
fmeyer
Joined: 16 Jan 2006 Posts: 10 Location: France

|
Posted: Sun Jun 22, 2008 2:41 pm Post subject: new updated french translation files (menus and help) |
|
|
Hello,
attached are updated French translated files for HSOconnect (menus and help)
Some errors or previous file has been corrected, and the Help file has also been now translated.
you just need to extract the tar.gz file in /usr/share/HSOconnect/languages/French and rename text_french.cfg by text.cfg and Help_HSOconnect_french.html by help.html.
I hope that helps.
Franz
| Description: |
|
 Download |
| Filename: |
HSOconnect_French_language&help.tar.gz |
| Filesize: |
5.19 KB |
| Downloaded: |
90 Time(s) |
|
|
| Back to top |
|
 |
Vesa
Joined: 22 May 2008 Posts: 4

|
Posted: Mon Jun 23, 2008 10:35 pm Post subject: |
|
|
Hello Paul,
I was wondering whether you got my finnish translation file a couple of weeks ago? I sent it to your email and I haven't got a reply from you since then.
If you want to, I can send the file again if you don't have the last one.
Sincerely,
Vesa
|
|
| Back to top |
|
 |
Paul Site Admin
Joined: 08 Oct 2004 Posts: 510 Location: UK and Belgium

|
Posted: Mon Jun 23, 2008 10:49 pm Post subject: |
|
|
| Vesa wrote: | Hello Paul,
I was wondering whether you got my finnish translation file a couple of weeks ago? I sent it to your email and I haven't got a reply from you since then.
If you want to, I can send the file again if you don't have the last one.
Sincerely,
Vesa |
Hi Vesa,
Yes I got your mail and thank you for the file, sorry I didn't reply in good time. I was hoping to release a new version last week with all the languages included but I got distracted by real work and my dbus investigation.
I am creating a dbus server interface which will allow other programs to control HSOconnect - window control (show/hide), connect/disconnect, report status. This will allow a panel applet to be created or shell script control without modifying too much the main HSOconnect code.
I am also trying to control Network Manager but I am not finding much useful information on the API.
Cheers,
Paul
|
|
| Back to top |
|
 |
Paul Site Admin
Joined: 08 Oct 2004 Posts: 510 Location: UK and Belgium

|
Posted: Mon Jun 23, 2008 10:53 pm Post subject: Re: new updated french translation files (menus and help) |
|
|
| fmeyer wrote: | Hello,
attached are updated French translated files for HSOconnect (menus and help)
Some errors or previous file has been corrected, and the Help file has also been now translated.
you just need to extract the tar.gz file in /usr/share/HSOconnect/languages/French and rename text_french.cfg by text.cfg and Help_HSOconnect_french.html by help.html.
I hope that helps.
Franz |
Thanks Franz, I will add in the update ASAP. Thank you for the news on RHEL5.
Cheers,
Paul
|
|
| Back to top |
|
 |
Vesa
Joined: 22 May 2008 Posts: 4

|
Posted: Mon Jun 23, 2008 10:56 pm Post subject: |
|
|
| Paul wrote: | | Yes I got your mail and thank you for the file, sorry I didn't reply in good time. I was hoping to release a new version last week with all the languages included but I got distracted by real work and my dbus investigation. | Ok, good to know.
Just to mention (maybe I've mentioned this before) that in the language configuration file there isn't an option for every line of text, so when I'd use the language file it would show me english in some points of the program. The "Connect" button is a great example, since it's text can't be changed via language files.
Thanks for a fast reply!
Vesa
P.S.
My writing might be hard to understand since it's 2 AM here + i'm suffering from flu.
|
|
| Back to top |
|
 |
jnethack
Joined: 24 Jun 2008 Posts: 2 Location: Japan

|
|
| Back to top |
|
 |
Paul Site Admin
Joined: 08 Oct 2004 Posts: 510 Location: UK and Belgium

|
Posted: Tue Jun 24, 2008 6:45 pm Post subject: Re: JP translation ;-) |
|
|
| jnethack wrote: | Paul,
Thanks for drivers and also CM. So far it is working quite fine here. I'm trying to find something that I can contribute this Linux stuff
BRs, |
Hi jnethack,
Welcome to the forum. Many thanks for your contribution
Cheers,
Paul
|
|
| Back to top |
|
 |
lord_alan
Joined: 28 Jun 2008 Posts: 1

|
Posted: Sat Jun 28, 2008 12:28 pm Post subject: |
|
|
| Paul wrote: |
I am creating a dbus server interface which will allow other programs to control HSOconnect - window control (show/hide), connect/disconnect, report status. This will allow a panel applet to be created or shell script control without modifying too much the main HSOconnect code.
...
|
I've been trying to get HSOconnect to load automatically using a udev rule. It *almost* works...
Here's the udev rule in z20_hso-udev.rules:
| Code: | # Start the HSOconnect client via our shell script
SUBSYSTEMS=="scsi", ATTRS{vendor}=="ZCOPTION", KERNEL=="sg[0-9]*", RUN+="/usr/bin/hsoconnect.sh"
|
and here's my shell script.
| Code: |
#!/bin/bash
# Shell script to start the HSOConnect Python application from udev
if ps -ef | grep -v grep | grep "python2.5 -m hsoc" > /dev/null
then
#Program is already running, die quietly
exit 0
else
#Start HSOConnect independantly
( python2.5 -m hsoc 2>&1 > /dev/null &) &
exit 0
fi
|
When I plug in the dongle, the client is launched, but it runs as root and does not display in my X display. It's the first time I've done any udev stuff so if anyone can suggest how to get this to load into *my* desktop and preferably as *me* rather than root, it would be great. But maybe that's why you working on hal support?
Secondly, how difficult do you think it would be to extend the functionality of your client to work with other Dongles such as the Huawei series?
Thanks for a great resource and your contribution. It has helped me a great deal to get the Option225 running on Ubuntu.
Al
|
|
| Back to top |
|
 |
atlas95
Joined: 08 Jul 2008 Posts: 8

|
Posted: Tue Jul 08, 2008 9:02 pm Post subject: |
|
|
lord_alan: I'm trying too to do the udev rules but same problem as you, we must search with!
| Code: | export DISPLAY=":0.0" ?
sudo -u $USER commandline ? |
Could you help us please ?
What are the new function which will become for hsoconnect? I really love this project :p
|
|
| Back to top |
|
 |
atlas95
Joined: 08 Jul 2008 Posts: 8

|
Posted: Thu Jul 24, 2008 1:41 pm Post subject: |
|
|
| Hey? Anybody here now?
|
|
| Back to top |
|
 |
steffe77
Joined: 28 Jul 2008 Posts: 2

|
Posted: Mon Jul 28, 2008 8:43 pm Post subject: Problem with Ubuntu 8.04 and Option icon 225 |
|
|
Hi Paul!
I've got a problem with Options iCon 225 and Ubuntu 8.04
I have tried following the HowTo, but when i come to start HSOconnect i've got problems.
When I try start HSOConnect from the console "python -m hsoc' HSOconnect starts up correctly, it founds my mobile operator and all seens fine. Except some output in the console.
Output i console:
| Quote: |
False
Serial(port='/dev/ttyHS1', baudrate=115200, bytesize=8, parity='N', stopbits=1, timeout=1, xonxoff=0, rtscts=0)
|
When i Click Connect HSO Connect went grey. After a short while it looks normal again, unconnected.
When i look in the console the following messeages has been added
| Quote: |
Did not finish AT commands.
Closed port
Quit gtk.main
Serial(port='/dev/ttyHS1', baudrate=115200, bytesize=8, parity='N', stopbits=1, timeout=1, xonxoff=0, rtscts=0)
|
/Stefan
|
|
| Back to top |
|
 |
erik78se
Joined: 09 Aug 2008 Posts: 2

|
Posted: Sat Aug 09, 2008 4:43 pm Post subject: Problems when pressing "Connect" |
|
|
I have the same problem as steffe77 - post above.
When I press the "Connect" button, it grays out for a while. Yeah, exectly like steffe77 describes.
Anyone figured out why?
I'm using Ubuntu 8.04, i686... just normal stuff.
/Erik
|
|
| Back to top |
|
 |
erik78se
Joined: 09 Aug 2008 Posts: 2

|
Posted: Sat Aug 09, 2008 8:16 pm Post subject: [solved] Did not finish AT commands. |
|
|
[Disregard of my last post.
I found out that I didn't configured the "Profile" correcly.
I have glocalnet (Sweden) and I needed to set the APN in the profile:
APN=bredband.glocalnet.se
USERNAME=[leave empty]
PASSWORD=[leave empty]
After this, the connection works good.
Worth notice is that you wont get a default gateway (it is set to 0.0.0.0) from glocalnet and the /etc/resolv.conf is modified. I'm not sure if this will conflict with network manager in ubuntu, but its worth it for now =)
Thanx for a good tutorial on how to get this to work.
|
|
| Back to top |
|
 |
gunnar-eee
Joined: 28 Aug 2008 Posts: 3 Location: Stockholm, Sweden

|
|
| Back to top |
|
 |
itavy
Joined: 28 Oct 2008 Posts: 1

|
Posted: Tue Oct 28, 2008 7:41 pm Post subject: |
|
|
i have installed this aplication on my eee pc 1000h. on it i have open suse 11.0 with python 2.5.2-26.1.
it gave me a strange error :
| Code: | itavyeee:~/hso # rpm -ivh hsoconnect-py2.5-1.1.83-2.noarch.rpm
error: Failed dependencies:
python(abi) = 2.5 is needed by hsoconnect-py2.5-1.1.83-2.noarch |
after a few (more) searches on the net i found an article wich i say i shall try it and it worked for me:
http://exelearning.org/HowTos/OpenSUSE:
1.install python-imaging, python-zopeinterface, python-xml
2. rpm -ivh --nodeps hsoconnect-py2.5-1.1.83-2.noarch.rpm
but this i have tried only after i have installed all other steps described in this article http://www.pharscape.org/component/option,com_forum/Itemid,68/page,viewtopic/t,476/ and right now i am writin connected trough an 3g card ICON 225
hope this one helps other people who are trying to install in on opensuse
|
|
| Back to top |
|
 |
|