Talk:Configure SHR for German-speaking use

From Openmoko

(Difference between revisions)
Jump to: navigation, search
(What do you think about: new section)
(What do you think about)
Line 87: Line 87:
 
== What do you think about ==
 
== What do you think about ==
  
<nowiki>#install German
+
#install German
opkg list_installed | cut -d " " -f1 | grep -v "kernel-module"> /tmp/opkgi.txt
+
opkg list_installed | cut -d " " -f1 | grep -v "kernel-module"> /tmp/opkgi.txt
opkg list | cut -d " " -f1 | grep -v "kernel-module"> /tmp/opkg.txt
+
opkg list | cut -d " " -f1 | grep -v "kernel-module"> /tmp/opkg.txt
grep locale-de /tmp/opkg.txt > /tmp/opkg_de.txt
+
grep locale-de /tmp/opkg.txt > /tmp/opkg_de.txt
grep i18n /tmp/opkg.txt >> /tmp/opkg_de.txt
+
grep i18n /tmp/opkg.txt >> /tmp/opkg_de.txt
for ip in $(cat /tmp/opkgi.txt)
+
for ip in $(cat /tmp/opkgi.txt)
do
+
do
 
     prog=$(grep $ip /tmp/opkg_de.txt)
 
     prog=$(grep $ip /tmp/opkg_de.txt)
 
     if [ $prog ]
 
     if [ $prog ]
 
     then
 
     then
echo found $prog
+
echo found $prog
install="$install $prog"
+
install="$install $prog"
 
     fi
 
     fi
done
+
done
opkg install $install
+
opkg install $install
</nowiki>
+

Revision as of 14:37, 29 November 2009

(please sign your feedback, thanks)

Feedback

great work. It would be nice if the script for downloading germany.bin can be added and the dictionary setting de_AT resp. de_DE be an option during installation, so that only one script for Germany Language use can be maintained instead of one for Austria (dictionary de_AT) and one for Germany (dictionary setting de_DE). Maybe the heading could be change to German Language Use later.

--Niebert 07:40, 27 September 2009 (UTC)

i'll do that if 1 of 2 things happen:

a) many people use this (for 2 users its too much to do)

or

b) someone (you?) help me

--zoff99 12:04, 3 October 2009 (UTC)

  • mdbus warnings

Yeah, great work! Thanks for doing this and writing this guide! It worked flawlessly for me. I guess the following warnings can be safely ignored?

after

mdbus -s org.freesmartphone.ousaged /org/freesmartphone/Usage org.freesmartphone.Usage.SetResourcePolicy Display enabled

I got

Using **pending_return in dbus_connection_send_with_reply_setup() without pending_setup is deprecated and strongly discouraged
Using **pending_return in dbus_connection_send_with_reply_setup() without pending_setup is deprecated and strongly discouraged
Using **pending_return in dbus_connection_send_with_reply_setup() without pending_setup is deprecated and strongly discouraged
Using **pending_return in dbus_connection_send_with_reply_setup() without pending_setup is deprecated and strongly discouraged
Service name not found

Thanks again!

--Guido 22:09, 5 October 2009 (UTC)

yeah those warnings are normal, and can be ignored but "Service name not found" should not normally happen. when did it occur?

--zoff99 10:06, 6 October 2009 (UTC)

Problem using settings

great work. but i've 2 problems(?) First: Using Settings: Using: Settings => Power => Please wait... Loading 4 modules

That's all. No more action. It is only possible to kill the settings-process. One time after the first update it works. But after the next reboot settings doesn't work any more. Can anyone help me, to fix this problem ?

Second: I got the error message: Service name not found too. (After using: mdbus -s org.freesmartphone.ousaged /org/freesmartphone/Usage org.freesmartphone.Usage.SetResourcePolicy Display enabled)

Many thanks. Andre

--Steigera 09:47, 18 October 2009 (UTC)


did you do update & upgrade also? if not, do so

and did you start settings right after boot-up? because frameworkd is really really slow, and needs a couple of minutes to have everything loaded.

if that does not help start "shr-settings" on the ssh-console and put the output here

--zoff99 11:17, 18 October 2009 (UTC)

yes. I've tried to use settings very fast after boot-up. Now after some minutes it works :-)). Thanks for your fast response. But another question: it is a little bit extensive to modify the power-settings after every boot-up. e.g: Backlight Is there a possibility to modify these settings so it will be used after next boot-up ?

--Steigera 18 October 2009 (UTC)

PLEASE use the "sign" button when writing here!!

sure there is a way, write a script with "mdbus -s XXX YYY" and put it somewhere after system startup.

--zoff99 17:08, 18 October 2009 (UTC)

What do you think about

#install German
opkg list_installed | cut -d " " -f1 | grep -v "kernel-module"> /tmp/opkgi.txt
opkg list | cut -d " " -f1 | grep -v "kernel-module"> /tmp/opkg.txt
grep locale-de /tmp/opkg.txt > /tmp/opkg_de.txt
grep i18n /tmp/opkg.txt >> /tmp/opkg_de.txt
for ip in $(cat /tmp/opkgi.txt)
do
   prog=$(grep $ip /tmp/opkg_de.txt)
   if [ $prog ]
   then
	echo found $prog
	install="$install $prog"
   fi
done
opkg install $install
Personal tools

(please sign your feedback, thanks)

Feedback

great work. It would be nice if the script for downloading germany.bin can be added and the dictionary setting de_AT resp. de_DE be an option during installation, so that only one script for Germany Language use can be maintained instead of one for Austria (dictionary de_AT) and one for Germany (dictionary setting de_DE). Maybe the heading could be change to German Language Use later.

--Niebert 07:40, 27 September 2009 (UTC)

i'll do that if 1 of 2 things happen:

a) many people use this (for 2 users its too much to do)

or

b) someone (you?) help me

--zoff99 12:04, 3 October 2009 (UTC)

  • mdbus warnings

Yeah, great work! Thanks for doing this and writing this guide! It worked flawlessly for me. I guess the following warnings can be safely ignored?

after

mdbus -s org.freesmartphone.ousaged /org/freesmartphone/Usage org.freesmartphone.Usage.SetResourcePolicy Display enabled

I got

Using **pending_return in dbus_connection_send_with_reply_setup() without pending_setup is deprecated and strongly discouraged
Using **pending_return in dbus_connection_send_with_reply_setup() without pending_setup is deprecated and strongly discouraged
Using **pending_return in dbus_connection_send_with_reply_setup() without pending_setup is deprecated and strongly discouraged
Using **pending_return in dbus_connection_send_with_reply_setup() without pending_setup is deprecated and strongly discouraged
Service name not found

Thanks again!

--Guido 22:09, 5 October 2009 (UTC)

yeah those warnings are normal, and can be ignored but "Service name not found" should not normally happen. when did it occur?

--zoff99 10:06, 6 October 2009 (UTC)

Problem using settings

great work. but i've 2 problems(?) First: Using Settings: Using: Settings => Power => Please wait... Loading 4 modules

That's all. No more action. It is only possible to kill the settings-process. One time after the first update it works. But after the next reboot settings doesn't work any more. Can anyone help me, to fix this problem ?

Second: I got the error message: Service name not found too. (After using: mdbus -s org.freesmartphone.ousaged /org/freesmartphone/Usage org.freesmartphone.Usage.SetResourcePolicy Display enabled)

Many thanks. Andre

--Steigera 09:47, 18 October 2009 (UTC)


did you do update & upgrade also? if not, do so

and did you start settings right after boot-up? because frameworkd is really really slow, and needs a couple of minutes to have everything loaded.

if that does not help start "shr-settings" on the ssh-console and put the output here

--zoff99 11:17, 18 October 2009 (UTC)

yes. I've tried to use settings very fast after boot-up. Now after some minutes it works :-)). Thanks for your fast response. But another question: it is a little bit extensive to modify the power-settings after every boot-up. e.g: Backlight Is there a possibility to modify these settings so it will be used after next boot-up ?

--Steigera 18 October 2009 (UTC)

PLEASE use the "sign" button when writing here!!

sure there is a way, write a script with "mdbus -s XXX YYY" and put it somewhere after system startup.

--zoff99 17:08, 18 October 2009 (UTC)

What do you think about

#install German
opkg list_installed | cut -d " " -f1 | grep -v "kernel-module"> /tmp/opkgi.txt
opkg list | cut -d " " -f1 | grep -v "kernel-module"> /tmp/opkg.txt
grep locale-de /tmp/opkg.txt > /tmp/opkg_de.txt
grep i18n /tmp/opkg.txt >> /tmp/opkg_de.txt
for ip in $(cat /tmp/opkgi.txt)
do
   prog=$(grep $ip /tmp/opkg_de.txt)
   if [ $prog ]
   then
	echo found $prog
	install="$install $prog"
   fi
done
opkg install $install