Package: gwget Version: 1.0.2-1 during install the gwget.schemas.in is mangled and, because there is no "c" locale (only "C") some locale keys are removed from it. Later, when gconf-schemas is ran users get cryptic messages. attached patch fixes gwget.schemas.in to use the capitalized C for locale.
I've forwarded the patch upstream but the project is mostly dead so I don't know when, if at all, it's going to get fixed. -- Sent from Ubuntu
Description: There is no "c" locale so it gets removed during build and the <locale> key is missing. gconf-schemas doesn't like it and complains. Bug-Ubuntu: http://launchpad.net/bugs/648516 Forwarded: no Index: gwget2-1.0.4/data/gwget.schemas.in =================================================================== --- gwget2-1.0.4.orig/data/gwget.schemas.in 2010-09-27 18:50:04.810592152 +0200 +++ gwget2-1.0.4/data/gwget.schemas.in 2010-09-27 18:50:23.050592153 +0200 @@ -344,7 +344,7 @@ <owner>gwget</owner> <type>string</type> <default></default> - <locale name="c"> + <locale name="C"> <short></short> <long></long> </locale> @@ -356,7 +356,7 @@ <owner>gwget</owner> <type>int</type> <default>8080</default> - <locale name="c"> + <locale name="C"> <short></short> <long></long> </locale> @@ -368,7 +368,7 @@ <owner>gwget</owner> <type>bool</type> <default>false</default> - <locale name="c"> + <locale name="C"> <short></short> <long></long> </locale> @@ -380,7 +380,7 @@ <owner>gwget</owner> <type>string</type> <default></default> - <locale name="c"> + <locale name="C"> <short></short> <long></long> </locale> @@ -392,7 +392,7 @@ <owner>gwget</owner> <type>string</type> <default></default> - <locale name="c"> + <locale name="C"> <short></short> <long></long> </locale>

