diff options
Diffstat (limited to 'tests/cases/test.schemas.in')
-rw-r--r-- | tests/cases/test.schemas.in | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/cases/test.schemas.in b/tests/cases/test.schemas.in new file mode 100644 index 0000000..41284cb --- /dev/null +++ b/tests/cases/test.schemas.in @@ -0,0 +1,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> |