Bug fixes
February 29, 2012 —
BarryK
I have been off-line all day and haven't had a chance to go to the Forum to pm these guys. I have found and fixed a couple of bugs, and while I remember, before I go to bed:
rodin.s,
This applies to all translators, a simple mistake when using gettext. Script /lib/modules/all-firmware/pgprs/pgprs-setup was broken. There were two lines, for example:
xmessage -center -title "$(gettext 'PGPRS SETUP')" "$(gettext \"Connect to the Internet using 'PGPRS Connect' in the 'Network' menu.\")"
...you do not back-slash the " around the gettext string, it causes a syntax error. Corrected:
xmessage -center -title "$(gettext 'PGPRS SETUP')" "$(gettext "Connect to the Internet using 'PGPRS Connect' in the 'Network' menu.")"
This was something that I pointed out in a recent blog post, a difference compared with using "`gettext ..... `"
L18L,
A small thing that you need to fix in your langpack_de. /usr/local/apps/Connect/AppInfo.xml is broken. You have put in a lot of </summary> which should be </label> tag ends.
Comments
re bug fixesUsername: L18L
done thank you
Tags: woof