1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
<!-- This is a test. Please DON'T CHANGE it. -->
<gconfschemafile>
<schemalist>
<schema>
<key>/schemas/apps/clock_applet/prefs/hour_format</key>
<owner>clock-applet</owner>
<type>int</type>
<locale name="C">
<default><!-- default value for /schemas/apps/clock_applet/prefs/hour_format
The translation should only include the localized default
eg. 12 or 24 -->24</default>
<short>Hour format</short>
<long>Sets the hour format, may be either 12 or 24</long>
</locale>
<locale name="en_US">
<default>12</default>
<short>Hour format</short>
<long>Sets the hour format, may be either 12 or 24</long>
</locale>
</schema>
<schema>
<key>/schemas/apps/clock_applet/prefs/show_seconds</key>
<owner>clock-applet</owner>
<type>bool</type>
<default>true</default>
<locale name="C">
<long>Display seconds in time</long>
</locale>
</schema>
<schema>
<key>some random key</key>
<owner>clock-applet</owner>
<type>int</type>
<locale name="C">
<default>12</default>
<short>Something random..even has > </short>
<long>Puh long.</long>
</locale>
</schema>
</gconfschemafile>
|