Import Upstream version 2.72.4
This commit is contained in:
commit
4ef3ff9793
2003 changed files with 1332420 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
<schemalist>
|
||||
<schema id="test">
|
||||
<key name="test" type="as">
|
||||
<choices>
|
||||
<choice value="first" />
|
||||
<choice value="last" />
|
||||
</choices>
|
||||
<default>["first","last","second"]</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
14
gio/tests/schema-tests/bad-choice.gschema.xml
Normal file
14
gio/tests/schema-tests/bad-choice.gschema.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='s'>
|
||||
<default>'how'</default>
|
||||
<choices>
|
||||
<choice value='who'/>
|
||||
<choice value='what'/>
|
||||
<choice value='where'/>
|
||||
<choice value='when'/>
|
||||
<choice value='why'/>
|
||||
</choices>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/bad-key.gschema.xml
Normal file
7
gio/tests/schema-tests/bad-key.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id="no-default" path="/tests/">
|
||||
<key name="bad_key" type="s">
|
||||
<default>''</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/bad-key2.gschema.xml
Normal file
7
gio/tests/schema-tests/bad-key2.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id="no-default" path="/tests/">
|
||||
<key name="BAD-key" type="s">
|
||||
<default>''</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/bad-key3.gschema.xml
Normal file
7
gio/tests/schema-tests/bad-key3.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id="no-default" path="/tests/">
|
||||
<key name="bad--key" type="s">
|
||||
<default>''</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/bad-key4.gschema.xml
Normal file
7
gio/tests/schema-tests/bad-key4.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id="no-default" path="/tests/">
|
||||
<key name="bad-key-" type="s">
|
||||
<default>''</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/bad-type.gschema.xml
Normal file
7
gio/tests/schema-tests/bad-type.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id="bad-type" path="/tests/">
|
||||
<key name="test" type="-%$#*(a!">
|
||||
<default></default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/bare-alias.gschema.xml
Normal file
7
gio/tests/schema-tests/bare-alias.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='s'>
|
||||
<aliases/>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/cdata.gschema.xml
Normal file
7
gio/tests/schema-tests/cdata.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id="no-default" path="/tests/">
|
||||
<key name="bla" type="as">
|
||||
<default><![CDATA[['<bla>','<bla>']]]></default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
15
gio/tests/schema-tests/choice-alias.gschema.xml
Normal file
15
gio/tests/schema-tests/choice-alias.gschema.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='s'>
|
||||
<choices>
|
||||
<choice value='before'/>
|
||||
<choice value='after'/>
|
||||
</choices>
|
||||
<aliases>
|
||||
<alias value='pre' target='before'/>
|
||||
<alias value='post' target='after'/>
|
||||
</aliases>
|
||||
<default>'after'</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
14
gio/tests/schema-tests/choice-bad.gschema.xml
Normal file
14
gio/tests/schema-tests/choice-bad.gschema.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='s'>
|
||||
<choices>
|
||||
<choice value='who'/>
|
||||
<choice value='what'/>
|
||||
<choice value='where'/>
|
||||
<choice value='when'/>
|
||||
<choice value='why'/>
|
||||
</choices>
|
||||
<default>'how'</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/choice-badtype.gschema.xml
Normal file
7
gio/tests/schema-tests/choice-badtype.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='i'>
|
||||
<choices/>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
15
gio/tests/schema-tests/choice-invalid-alias.gschema.xml
Normal file
15
gio/tests/schema-tests/choice-invalid-alias.gschema.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='s'>
|
||||
<choices>
|
||||
<choice value='before'/>
|
||||
<choice value='after'/>
|
||||
</choices>
|
||||
<aliases>
|
||||
<alias value='pre' target='befor'/>
|
||||
<alias value='post' target='after'/>
|
||||
</aliases>
|
||||
<default>'after'</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
10
gio/tests/schema-tests/choice-missing-value.gschema.xml
Normal file
10
gio/tests/schema-tests/choice-missing-value.gschema.xml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<schemalist>
|
||||
<schema id="test">
|
||||
<key name="test" type="s">
|
||||
<choices>
|
||||
<choice />
|
||||
</choices>
|
||||
<default>"a"</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
14
gio/tests/schema-tests/choice-shadowed-alias.gschema.xml
Normal file
14
gio/tests/schema-tests/choice-shadowed-alias.gschema.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='s'>
|
||||
<choices>
|
||||
<choice value='before'/>
|
||||
<choice value='after'/>
|
||||
</choices>
|
||||
<aliases>
|
||||
<alias value='before' target='after'/>
|
||||
</aliases>
|
||||
<default>'after'</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
14
gio/tests/schema-tests/choice-upside-down.gschema.xml
Normal file
14
gio/tests/schema-tests/choice-upside-down.gschema.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='s'>
|
||||
<choices>
|
||||
<choice value='who'/>
|
||||
<choice value='what'/>
|
||||
<choice value='where'/>
|
||||
<choice value='when'/>
|
||||
<choice value='why'/>
|
||||
</choices>
|
||||
<default>'who'</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
14
gio/tests/schema-tests/choice.gschema.xml
Normal file
14
gio/tests/schema-tests/choice.gschema.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='s'>
|
||||
<default>'who'</default>
|
||||
<choices>
|
||||
<choice value='who'/>
|
||||
<choice value='what'/>
|
||||
<choice value='where'/>
|
||||
<choice value='when'/>
|
||||
<choice value='why'/>
|
||||
</choices>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
8
gio/tests/schema-tests/choices-wrong-type.gschema.xml
Normal file
8
gio/tests/schema-tests/choices-wrong-type.gschema.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<schemalist>
|
||||
<schema id="test">
|
||||
<key name="test" type="(is)">
|
||||
<choices />
|
||||
<default>(1,"a")</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
15
gio/tests/schema-tests/default-in-aliases.gschema.xml
Normal file
15
gio/tests/schema-tests/default-in-aliases.gschema.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='s'>
|
||||
<choices>
|
||||
<choice value='before'/>
|
||||
<choice value='after'/>
|
||||
</choices>
|
||||
<aliases>
|
||||
<alias value='pre' target='before'/>
|
||||
<alias value='post' target='after'/>
|
||||
</aliases>
|
||||
<default>'pre'</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
11
gio/tests/schema-tests/default-not-in-choices.gschema.xml
Normal file
11
gio/tests/schema-tests/default-not-in-choices.gschema.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<schemalist>
|
||||
<schema id="test">
|
||||
<key name="test" type="s">
|
||||
<choices>
|
||||
<choice value="first" />
|
||||
<choice value="last" />
|
||||
</choices>
|
||||
<default>"next-to-last"</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
8
gio/tests/schema-tests/default-out-of-range.gschema.xml
Normal file
8
gio/tests/schema-tests/default-out-of-range.gschema.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<schemalist>
|
||||
<schema id="test">
|
||||
<key name="test" type="i">
|
||||
<range min="0" max="100" />
|
||||
<default>-1</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
13
gio/tests/schema-tests/description-xmllang.gschema.xml
Normal file
13
gio/tests/schema-tests/description-xmllang.gschema.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<schemalist>
|
||||
<schema path="/org/gnome/gnome-screenshot/" id="org.gnome.gnome-screenshot">
|
||||
<key type="b" name="take-window-shot">
|
||||
<default>false</default>
|
||||
<summary>Bla</summary>
|
||||
<description>Window-specific screenshot (deprecated)</description>
|
||||
<description xml:lang="an">Captura especifica de finestra (obsoleto)</description>
|
||||
<description xml:lang="ar">لقطة شاشة مختصّة بنافذة (مُبطل)</description>
|
||||
<description xml:lang="as">উইন্ডোৰ ক্ষেত্ৰত নিৰ্দিষ্ট স্ক্ৰিনশ্বট (স্খলিত)</description>
|
||||
<description xml:lang="ast">Captura específica de ventana (obsoleto)</description>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/empty-key.gschema.xml
Normal file
7
gio/tests/schema-tests/empty-key.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id="no-default" path="/tests/">
|
||||
<key name="" type="s">
|
||||
<default></default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
20
gio/tests/schema-tests/enum-with-aliases.gschema.xml
Normal file
20
gio/tests/schema-tests/enum-with-aliases.gschema.xml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<schemalist>
|
||||
<enum id='org.gtk.test.MyEnum'>
|
||||
<value nick='nospam' value='0'/>
|
||||
<value nick='spam' value='1'/>
|
||||
<value nick='ham' value='2'/>
|
||||
<value nick='eggs' value='3'/>
|
||||
<value nick='bangers' value='4'/>
|
||||
<value nick='mash' value='5'/>
|
||||
</enum>
|
||||
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' enum='org.gtk.test.MyEnum'>
|
||||
<default>'spam'</default>
|
||||
|
||||
<aliases>
|
||||
<alias value='sausages' target='bangers'/>
|
||||
</aliases>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
16
gio/tests/schema-tests/enum-with-bad-default.gschema.xml
Normal file
16
gio/tests/schema-tests/enum-with-bad-default.gschema.xml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<schemalist>
|
||||
<enum id='org.gtk.test.MyEnum'>
|
||||
<value nick='nospam' value='0'/>
|
||||
<value nick='spam' value='1'/>
|
||||
<value nick='ham' value='2'/>
|
||||
<value nick='eggs' value='3'/>
|
||||
<value nick='bangers' value='4'/>
|
||||
<value nick='mash' value='5'/>
|
||||
</enum>
|
||||
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' enum='org.gtk.test.MyEnum'>
|
||||
<default>'nie'</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
21
gio/tests/schema-tests/enum-with-chained-alias.gschema.xml
Normal file
21
gio/tests/schema-tests/enum-with-chained-alias.gschema.xml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<schemalist>
|
||||
<enum id='org.gtk.test.MyEnum'>
|
||||
<value nick='nospam' value='0'/>
|
||||
<value nick='spam' value='1'/>
|
||||
<value nick='ham' value='2'/>
|
||||
<value nick='eggs' value='3'/>
|
||||
<value nick='bangers' value='4'/>
|
||||
<value nick='mash' value='5'/>
|
||||
</enum>
|
||||
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' enum='org.gtk.test.MyEnum'>
|
||||
<default>'spam'</default>
|
||||
|
||||
<aliases>
|
||||
<alias value='sausages' target='bangers'/>
|
||||
<alias value='wurst' target='sausages'/>
|
||||
</aliases>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
17
gio/tests/schema-tests/enum-with-choice.gschema.xml
Normal file
17
gio/tests/schema-tests/enum-with-choice.gschema.xml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<schemalist>
|
||||
<enum id='org.gtk.test.MyEnum'>
|
||||
<value nick='nospam' value='0'/>
|
||||
<value nick='spam' value='1'/>
|
||||
<value nick='ham' value='2'/>
|
||||
<value nick='eggs' value='3'/>
|
||||
<value nick='bangers' value='4'/>
|
||||
<value nick='mash' value='5'/>
|
||||
</enum>
|
||||
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' enum='org.gtk.test.MyEnum'>
|
||||
<default>'spam'</default>
|
||||
<choices/>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
20
gio/tests/schema-tests/enum-with-invalid-alias.gschema.xml
Normal file
20
gio/tests/schema-tests/enum-with-invalid-alias.gschema.xml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<schemalist>
|
||||
<enum id='org.gtk.test.MyEnum'>
|
||||
<value nick='nospam' value='0'/>
|
||||
<value nick='spam' value='1'/>
|
||||
<value nick='ham' value='2'/>
|
||||
<value nick='eggs' value='3'/>
|
||||
<value nick='bangers' value='4'/>
|
||||
<value nick='mash' value='5'/>
|
||||
</enum>
|
||||
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' enum='org.gtk.test.MyEnum'>
|
||||
<default>'spam'</default>
|
||||
|
||||
<aliases>
|
||||
<alias value='sausages' target='banger'/>
|
||||
</aliases>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
10
gio/tests/schema-tests/enum-with-invalid-value.gschema.xml
Normal file
10
gio/tests/schema-tests/enum-with-invalid-value.gschema.xml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<schemalist>
|
||||
<enum id='org.gtk.test.MyEnum'>
|
||||
<value nick='nospam' value='*'/>
|
||||
<value nick='spam' value='1'/>
|
||||
<value nick='ham' value='2'/>
|
||||
<value nick='eggs' value='3'/>
|
||||
<value nick='bangers' value='4'/>
|
||||
<value nick='mash' value='5'/>
|
||||
</enum>
|
||||
</schemalist>
|
||||
21
gio/tests/schema-tests/enum-with-repeated-alias.gschema.xml
Normal file
21
gio/tests/schema-tests/enum-with-repeated-alias.gschema.xml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<schemalist>
|
||||
<enum id='org.gtk.test.MyEnum'>
|
||||
<value nick='nospam' value='0'/>
|
||||
<value nick='spam' value='1'/>
|
||||
<value nick='ham' value='2'/>
|
||||
<value nick='eggs' value='3'/>
|
||||
<value nick='bangers' value='4'/>
|
||||
<value nick='mash' value='5'/>
|
||||
</enum>
|
||||
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' enum='org.gtk.test.MyEnum'>
|
||||
<default>'spam'</default>
|
||||
|
||||
<aliases>
|
||||
<alias value='sausages' target='bangers'/>
|
||||
<alias value='sausages' target='mash'/>
|
||||
</aliases>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
10
gio/tests/schema-tests/enum-with-repeated-nick.gschema.xml
Normal file
10
gio/tests/schema-tests/enum-with-repeated-nick.gschema.xml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<schemalist>
|
||||
<enum id='org.gtk.test.MyEnum'>
|
||||
<value nick='nospam' value='0'/>
|
||||
<value nick='spam' value='1'/>
|
||||
<value nick='ham' value='2'/>
|
||||
<value nick='eggs' value='3'/>
|
||||
<value nick='bangers' value='4'/>
|
||||
<value nick='spam' value='5'/>
|
||||
</enum>
|
||||
</schemalist>
|
||||
10
gio/tests/schema-tests/enum-with-repeated-value.gschema.xml
Normal file
10
gio/tests/schema-tests/enum-with-repeated-value.gschema.xml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<schemalist>
|
||||
<enum id='org.gtk.test.MyEnum'>
|
||||
<value nick='nospam' value='0'/>
|
||||
<value nick='spam' value='1'/>
|
||||
<value nick='ham' value='2'/>
|
||||
<value nick='eggs' value='3'/>
|
||||
<value nick='bangers' value='4'/>
|
||||
<value nick='mash' value='1'/>
|
||||
</enum>
|
||||
</schemalist>
|
||||
20
gio/tests/schema-tests/enum-with-shadow-alias.gschema.xml
Normal file
20
gio/tests/schema-tests/enum-with-shadow-alias.gschema.xml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<schemalist>
|
||||
<enum id='org.gtk.test.MyEnum'>
|
||||
<value nick='nospam' value='0'/>
|
||||
<value nick='spam' value='1'/>
|
||||
<value nick='ham' value='2'/>
|
||||
<value nick='eggs' value='3'/>
|
||||
<value nick='bangers' value='4'/>
|
||||
<value nick='mash' value='5'/>
|
||||
</enum>
|
||||
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' enum='org.gtk.test.MyEnum'>
|
||||
<default>'spam'</default>
|
||||
|
||||
<aliases>
|
||||
<alias value='mash' target='bangers'/>
|
||||
</aliases>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
16
gio/tests/schema-tests/enum.gschema.xml
Normal file
16
gio/tests/schema-tests/enum.gschema.xml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<schemalist>
|
||||
<enum id='org.gtk.test.MyEnum'>
|
||||
<value nick='nospam' value='0'/>
|
||||
<value nick='spam' value='1'/>
|
||||
<value nick='ham' value='2'/>
|
||||
<value nick='eggs' value='3'/>
|
||||
<value nick='bangers' value='4'/>
|
||||
<value nick='mash' value='5'/>
|
||||
</enum>
|
||||
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' enum='org.gtk.test.MyEnum'>
|
||||
<default>'spam'</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
<schemalist>
|
||||
<schema id='a'>
|
||||
<key name='foo' type='s'>
|
||||
<default>''</default>
|
||||
</key>
|
||||
</schema>
|
||||
|
||||
<schema id='b' extends='a'>
|
||||
<key name='bar' type='s'>
|
||||
<default>''</default>
|
||||
</key>
|
||||
</schema>
|
||||
|
||||
<schema id='c' extends='b'>
|
||||
<key name='foo' type='s'/>
|
||||
</schema>
|
||||
</schemalist>
|
||||
17
gio/tests/schema-tests/extend-and-shadow.gschema.xml
Normal file
17
gio/tests/schema-tests/extend-and-shadow.gschema.xml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<schemalist>
|
||||
<schema id='a'>
|
||||
<key name='foo' type='s'>
|
||||
<default>''</default>
|
||||
</key>
|
||||
</schema>
|
||||
|
||||
<schema id='b' extends='a'>
|
||||
<key name='bar' type='s'>
|
||||
<default>''</default>
|
||||
</key>
|
||||
</schema>
|
||||
|
||||
<schema id='c' extends='a'>
|
||||
<key name='foo' type='s'/>
|
||||
</schema>
|
||||
</schemalist>
|
||||
3
gio/tests/schema-tests/extend-missing.gschema.xml
Normal file
3
gio/tests/schema-tests/extend-missing.gschema.xml
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<schemalist>
|
||||
<schema id='a' extends='x'/>
|
||||
</schemalist>
|
||||
4
gio/tests/schema-tests/extend-nonlist.gschema.xml
Normal file
4
gio/tests/schema-tests/extend-nonlist.gschema.xml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<schemalist>
|
||||
<schema id='a'/> <schema id='x'/>
|
||||
<schema id='b' list-of='x' extends='a'/>
|
||||
</schemalist>
|
||||
3
gio/tests/schema-tests/extend-self.gschema.xml
Normal file
3
gio/tests/schema-tests/extend-self.gschema.xml
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<schemalist>
|
||||
<schema id='a' extends='a'/>
|
||||
</schemalist>
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<schemalist>
|
||||
<schema id='x'/> <schema id='y'/>
|
||||
<schema id='lx' list-of='x'/>
|
||||
<schema id='lx2' extends='lx'/>
|
||||
<schema id='ly' extends='lx2' list-of='y'/>
|
||||
</schemalist>
|
||||
5
gio/tests/schema-tests/extend-wrong-list.gschema.xml
Normal file
5
gio/tests/schema-tests/extend-wrong-list.gschema.xml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<schemalist>
|
||||
<schema id='x'/> <schema id='y'/>
|
||||
<schema id='lx' list-of='x'/>
|
||||
<schema id='ly' extends='lx' list-of='y'/>
|
||||
</schemalist>
|
||||
21
gio/tests/schema-tests/extending.gschema.xml
Normal file
21
gio/tests/schema-tests/extending.gschema.xml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<schemalist>
|
||||
<!-- c extends b extends a -->
|
||||
<schema id='a'/>
|
||||
<schema id='b' extends='a'/>
|
||||
<schema id='c' extends='b'/>
|
||||
|
||||
<!-- lists of each -->
|
||||
<schema id='la' list-of='a'/>
|
||||
<schema id='lb' list-of='b'/>
|
||||
<schema id='lc' list-of='c'/>
|
||||
|
||||
<!-- extend 'la', override the list-of to 'b' -->
|
||||
<schema id='lb-la' list-of='b' extends='la'/>
|
||||
|
||||
<!-- extend 'la', override the list-of to 'c' -->
|
||||
<schema id='lc-la' list-of='c' extends='la'/>
|
||||
<!-- extend 'lb', override the list-of to 'c' -->
|
||||
<schema id='lc-lb' list-of='c' extends='lb'/>
|
||||
<!-- extend 'lb-la', override the list-of to 'c' -->
|
||||
<schema id='lc-lb-la' list-of='c' extends='lb-la'/>
|
||||
</schemalist>
|
||||
19
gio/tests/schema-tests/flags-aliased-default.gschema.xml
Normal file
19
gio/tests/schema-tests/flags-aliased-default.gschema.xml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<schemalist>
|
||||
<flags id='flags'>
|
||||
<value nick='none' value='0'/>
|
||||
<value nick='mourning' value='1'/>
|
||||
<value nick='laughing' value='2'/>
|
||||
<value nick='talking' value='4'/>
|
||||
<value nick='walking' value='8'/>
|
||||
</flags>
|
||||
|
||||
<schema id='xyz'>
|
||||
<key name='abc' flags='flags'>
|
||||
<aliases>
|
||||
<alias value='speaking' target='talking'/>
|
||||
</aliases>
|
||||
<default>['speaking']</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
|
||||
16
gio/tests/schema-tests/flags-bad-default.gschema.xml
Normal file
16
gio/tests/schema-tests/flags-bad-default.gschema.xml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<schemalist>
|
||||
<flags id='flags'>
|
||||
<value nick='none' value='0'/>
|
||||
<value nick='mourning' value='1'/>
|
||||
<value nick='laughing' value='2'/>
|
||||
<value nick='talking' value='4'/>
|
||||
<value nick='walking' value='8'/>
|
||||
</flags>
|
||||
|
||||
<schema id='xyz'>
|
||||
<key name='abc' flags='flags'>
|
||||
<default>['speaking']</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
|
||||
10
gio/tests/schema-tests/flags-more-than-one-bit.gschema.xml
Normal file
10
gio/tests/schema-tests/flags-more-than-one-bit.gschema.xml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<schemalist>
|
||||
<flags id='flags'>
|
||||
<value nick='none' value='0'/>
|
||||
<value nick='mourning' value='1'/>
|
||||
<value nick='laughing' value='2'/>
|
||||
<value nick='talking' value='4'/>
|
||||
<value nick='walking' value='24'/>
|
||||
</flags>
|
||||
</schemalist>
|
||||
|
||||
14
gio/tests/schema-tests/flags-with-enum-attr.gschema.xml
Normal file
14
gio/tests/schema-tests/flags-with-enum-attr.gschema.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<schemalist>
|
||||
<flags id='flags'>
|
||||
<value nick='none' value='0'/>
|
||||
<value nick='mourning' value='1'/>
|
||||
<value nick='laughing' value='2'/>
|
||||
<value nick='talking' value='4'/>
|
||||
<value nick='walking' value='8'/>
|
||||
</flags>
|
||||
|
||||
<schema id='foo'>
|
||||
<key name='xyz' enum='flags'/>
|
||||
</schema>
|
||||
</schemalist>
|
||||
|
||||
14
gio/tests/schema-tests/flags-with-enum-tag.gschema.xml
Normal file
14
gio/tests/schema-tests/flags-with-enum-tag.gschema.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<schemalist>
|
||||
<enum id='flags'>
|
||||
<value nick='none' value='0'/>
|
||||
<value nick='mourning' value='1'/>
|
||||
<value nick='laughing' value='2'/>
|
||||
<value nick='talking' value='4'/>
|
||||
<value nick='walking' value='8'/>
|
||||
</enum>
|
||||
|
||||
<schema id='foo'>
|
||||
<key name='xyz' flags='flags'/>
|
||||
</schema>
|
||||
</schemalist>
|
||||
|
||||
34
gio/tests/schema-tests/from-docs.gschema.xml
Normal file
34
gio/tests/schema-tests/from-docs.gschema.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<schemalist>
|
||||
<!-- from the GSettings docs. Should work, I guess :) -->
|
||||
|
||||
<enum id="myenum">
|
||||
<value nick="first" value="1"/>
|
||||
<value nick="second" value="2"/>
|
||||
</enum>
|
||||
|
||||
<schema id="org.gtk.test">
|
||||
|
||||
<key name="key-with-range" type="i">
|
||||
<range min="1" max="100"/>
|
||||
<default>10</default>
|
||||
</key>
|
||||
|
||||
<key name="key-with-choices" type="s">
|
||||
<choices>
|
||||
<choice value='Elisabeth'/>
|
||||
<choice value='Annabeth'/>
|
||||
<choice value='Joe'/>
|
||||
</choices>
|
||||
<aliases>
|
||||
<alias value='Anna' target='Annabeth'/>
|
||||
<alias value='Beth' target='Elisabeth'/>
|
||||
</aliases>
|
||||
<default>'Joe'</default>
|
||||
</key>
|
||||
|
||||
<key name='enumerated-key' enum='myenum'>
|
||||
<default>'first'</default>
|
||||
</key>
|
||||
|
||||
</schema>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/incomplete-list.gschema.xml
Normal file
7
gio/tests/schema-tests/incomplete-list.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id="incomplete-list" path="/tests/">
|
||||
<key name="test" type="ai">
|
||||
<default>[1,2,3</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<schemalist gettext-domain="foo">
|
||||
<schema id="bar">
|
||||
<key name="baz" type="s">
|
||||
<default l10n="messages" context="foobar">'value'</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
3
gio/tests/schema-tests/invalid-path.gschema.xml
Normal file
3
gio/tests/schema-tests/invalid-path.gschema.xml
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<schemalist>
|
||||
<schema id='invalid-path' path='/app/myapp'/>
|
||||
</schemalist>
|
||||
8
gio/tests/schema-tests/key-in-list-indirect.gschema.xml
Normal file
8
gio/tests/schema-tests/key-in-list-indirect.gschema.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<schemalist>
|
||||
<schema id='y'/>
|
||||
<schema id='x' list-of='y'/>
|
||||
|
||||
<schema id='z' extends='x'>
|
||||
<key name='foo' type='s'/>
|
||||
</schema>
|
||||
</schemalist>
|
||||
6
gio/tests/schema-tests/key-in-list.gschema.xml
Normal file
6
gio/tests/schema-tests/key-in-list.gschema.xml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<schemalist>
|
||||
<schema id='y'/>
|
||||
<schema id='x' list-of='y'>
|
||||
<key name='foo' type='s'/>
|
||||
</schema>
|
||||
</schemalist>
|
||||
3
gio/tests/schema-tests/list-of-missing.gschema.xml
Normal file
3
gio/tests/schema-tests/list-of-missing.gschema.xml
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<schemalist>
|
||||
<schema id='a' list-of='x'/>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/missing-quotes.gschema.xml
Normal file
7
gio/tests/schema-tests/missing-quotes.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id="missing-quotes" path="/tests/">
|
||||
<key name="test" type="s">
|
||||
<default>foo</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
6
gio/tests/schema-tests/no-default.gschema.xml
Normal file
6
gio/tests/schema-tests/no-default.gschema.xml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<schemalist>
|
||||
<schema id="no-default" path="/tests/">
|
||||
<key name="test" type="s">
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/overflow.gschema.xml
Normal file
7
gio/tests/schema-tests/overflow.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id="test">
|
||||
<key name="test" type="y">
|
||||
<default>512</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
11
gio/tests/schema-tests/override-missing.gschema.xml
Normal file
11
gio/tests/schema-tests/override-missing.gschema.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<schemalist>
|
||||
<schema id='base'>
|
||||
<key name='foo' type='s'>
|
||||
<default>'bar'</default>
|
||||
</key>
|
||||
</schema>
|
||||
|
||||
<schema id='sub' extends='base'>
|
||||
<override name='bar'>'baz'</override>
|
||||
</schema>
|
||||
</schemalist>
|
||||
12
gio/tests/schema-tests/override-range-error.gschema.xml
Normal file
12
gio/tests/schema-tests/override-range-error.gschema.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<schemalist>
|
||||
<schema id='base'>
|
||||
<key name='ranged' type='i'>
|
||||
<range min='0' max='22'/>
|
||||
<default>10</default>
|
||||
</key>
|
||||
</schema>
|
||||
|
||||
<schema id='sub' extends='base'>
|
||||
<override name='ranged'>77</override>
|
||||
</schema>
|
||||
</schemalist>
|
||||
15
gio/tests/schema-tests/override-then-key.gschema.xml
Normal file
15
gio/tests/schema-tests/override-then-key.gschema.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<schemalist>
|
||||
<schema id='base'>
|
||||
<key name='foo' type='s'>
|
||||
<default>'bar'</default>
|
||||
</key>
|
||||
</schema>
|
||||
|
||||
<schema id='sub' extends='base'>
|
||||
<override name='foo'>'baz'</override>
|
||||
</schema>
|
||||
|
||||
<schema id='sub2' extends='sub'>
|
||||
<key name='foo' type='s'/>
|
||||
</schema>
|
||||
</schemalist>
|
||||
12
gio/tests/schema-tests/override-twice.gschema.xml
Normal file
12
gio/tests/schema-tests/override-twice.gschema.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<schemalist>
|
||||
<schema id='base'>
|
||||
<key name='foo' type='s'>
|
||||
<default>'bar'</default>
|
||||
</key>
|
||||
</schema>
|
||||
|
||||
<schema id='sub' extends='base'>
|
||||
<override name='foo'>'baz'</override>
|
||||
<override name='foo'>'baz'</override>
|
||||
</schema>
|
||||
</schemalist>
|
||||
11
gio/tests/schema-tests/override-type-error.gschema.xml
Normal file
11
gio/tests/schema-tests/override-type-error.gschema.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<schemalist>
|
||||
<schema id='base'>
|
||||
<key name='foo' type='i'>
|
||||
<default>10</default>
|
||||
</key>
|
||||
</schema>
|
||||
|
||||
<schema id='sub' extends='base'>
|
||||
<override name='foo'>37.5</override>
|
||||
</schema>
|
||||
</schemalist>
|
||||
34
gio/tests/schema-tests/override.gschema.xml
Normal file
34
gio/tests/schema-tests/override.gschema.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<schemalist>
|
||||
<schema id='base'>
|
||||
<key name='foo' type='s'>
|
||||
<default>'bar'</default>
|
||||
</key>
|
||||
|
||||
<key name='ranged' type='i'>
|
||||
<range min='0' max='22'/>
|
||||
<default>10</default>
|
||||
</key>
|
||||
|
||||
<key name='choice' type='s'>
|
||||
<choices>
|
||||
<choice value='a'/>
|
||||
<choice value='aaa'/>
|
||||
<choice value='aaaaa'/>
|
||||
</choices>
|
||||
<default>'aaaaa'</default>
|
||||
</key>
|
||||
</schema>
|
||||
|
||||
<schema id='sub' extends='base'>
|
||||
</schema>
|
||||
|
||||
<schema id='sub2' extends='base'>
|
||||
<override name='foo'>'baz'</override>
|
||||
<override name='ranged'>0</override>
|
||||
<override name='choice'>'aaa'</override>
|
||||
</schema>
|
||||
|
||||
<schema id='sub3' extends='sub2'>
|
||||
<override name='foo'>'foo'</override>
|
||||
</schema>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/range-badtype.gschema.xml
Normal file
7
gio/tests/schema-tests/range-badtype.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='s'>
|
||||
<range min='22' max='27'/>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
8
gio/tests/schema-tests/range-default-high.gschema.xml
Normal file
8
gio/tests/schema-tests/range-default-high.gschema.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='i'>
|
||||
<default>28</default>
|
||||
<range min='22' max='27'/>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
8
gio/tests/schema-tests/range-default-low.gschema.xml
Normal file
8
gio/tests/schema-tests/range-default-low.gschema.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='i'>
|
||||
<default>21</default>
|
||||
<range min='22' max='27'/>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
8
gio/tests/schema-tests/range-high-default.gschema.xml
Normal file
8
gio/tests/schema-tests/range-high-default.gschema.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='i'>
|
||||
<range min='22' max='27'/>
|
||||
<default>28</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
8
gio/tests/schema-tests/range-low-default.gschema.xml
Normal file
8
gio/tests/schema-tests/range-low-default.gschema.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='i'>
|
||||
<range min='22' max='27'/>
|
||||
<default>21</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
8
gio/tests/schema-tests/range-missing-max.gschema.xml
Normal file
8
gio/tests/schema-tests/range-missing-max.gschema.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<schemalist>
|
||||
<schema id="test">
|
||||
<key name="test" type="i">
|
||||
<range min="100"/>
|
||||
<default>200</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
8
gio/tests/schema-tests/range-missing-min.gschema.xml
Normal file
8
gio/tests/schema-tests/range-missing-min.gschema.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<schemalist>
|
||||
<schema id="test">
|
||||
<key name="test" type="i">
|
||||
<range max="100" />
|
||||
<default>2</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
8
gio/tests/schema-tests/range-parse-error.gschema.xml
Normal file
8
gio/tests/schema-tests/range-parse-error.gschema.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='i'>
|
||||
<range min='22.5' max='27'/>
|
||||
<default>25</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
76
gio/tests/schema-tests/range-type-test.gschema.xml
Normal file
76
gio/tests/schema-tests/range-type-test.gschema.xml
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
<schemalist>
|
||||
<schema id="test">
|
||||
|
||||
<key name="y-min" type="y">
|
||||
<range min="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
<key name="y-max" type="y">
|
||||
<range max="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
|
||||
<key name="n-min" type="n">
|
||||
<range min="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
<key name="n-max" type="n">
|
||||
<range max="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
|
||||
<key name="q-min" type="q">
|
||||
<range min="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
<key name="q-max" type="q">
|
||||
<range max="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
|
||||
<key name="i-min" type="i">
|
||||
<range min="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
<key name="i-max" type="i">
|
||||
<range max="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
|
||||
<key name="u-min" type="u">
|
||||
<range min="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
<key name="u-max" type="u">
|
||||
<range max="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
|
||||
<key name="x-min" type="x">
|
||||
<range min="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
<key name="x-max" type="x">
|
||||
<range max="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
|
||||
<key name="t-min" type="t">
|
||||
<range min="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
<key name="t-max" type="t">
|
||||
<range max="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
|
||||
<key name="d-min" type="d">
|
||||
<range min="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
<key name="d-max" type="d">
|
||||
<range max="0"/>
|
||||
<default>0</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
8
gio/tests/schema-tests/range-wrong-type.gschema.xml
Normal file
8
gio/tests/schema-tests/range-wrong-type.gschema.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<schemalist>
|
||||
<schema id="test">
|
||||
<key name="test" type="s">
|
||||
<range min="a" max="z" />
|
||||
<default>"a"</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
8
gio/tests/schema-tests/range.gschema.xml
Normal file
8
gio/tests/schema-tests/range.gschema.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<schemalist>
|
||||
<schema id='org.gtk.test.schema'>
|
||||
<key name='test' type='i'>
|
||||
<range min='22' max='27'/>
|
||||
<default>25</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
13
gio/tests/schema-tests/summary-xmllang-and-attrs.gschema.xml
Normal file
13
gio/tests/schema-tests/summary-xmllang-and-attrs.gschema.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<schemalist>
|
||||
<schema path="/org/gnome/gnome-screenshot/" id="org.gnome.gnome-screenshot">
|
||||
<key type="b" name="take-window-shot">
|
||||
<default>false</default>
|
||||
<summary>Window-specific screenshot (deprecated)</summary>
|
||||
<summary lang="an">Captura especifica de finestra (obsoleto)</summary>
|
||||
<summary lang="ar">لقطة شاشة مختصّة بنافذة (مُبطل)</summary>
|
||||
<summary lang="as">উইন্ডোৰ ক্ষেত্ৰত নিৰ্দিষ্ট স্ক্ৰিনশ্বট (স্খলিত)</summary>
|
||||
<summary lang="ast">Captura específica de ventana (obsoleto)</summary>
|
||||
<description>Bla</description>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
13
gio/tests/schema-tests/summary-xmllang.gschema.xml
Normal file
13
gio/tests/schema-tests/summary-xmllang.gschema.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<schemalist>
|
||||
<schema path="/org/gnome/gnome-screenshot/" id="org.gnome.gnome-screenshot">
|
||||
<key type="b" name="take-window-shot">
|
||||
<default>false</default>
|
||||
<summary>Window-specific screenshot (deprecated)</summary>
|
||||
<summary xml:lang="an">Captura especifica de finestra (obsoleto)</summary>
|
||||
<summary xml:lang="ar">لقطة شاشة مختصّة بنافذة (مُبطل)</summary>
|
||||
<summary xml:lang="as">উইন্ডোৰ ক্ষেত্ৰত নিৰ্দিষ্ট স্ক্ৰিনশ্বট (স্খলিত)</summary>
|
||||
<summary xml:lang="ast">Captura específica de ventana (obsoleto)</summary>
|
||||
<description>Bla</description>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
7
gio/tests/schema-tests/wrong-category.gschema.xml
Normal file
7
gio/tests/schema-tests/wrong-category.gschema.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<schemalist>
|
||||
<schema id="wrong-category" path="/tests/" gettext-domain="test">
|
||||
<key name="test" type="s">
|
||||
<default l10n="not-a-category">'foo'</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
Loading…
Add table
Add a link
Reference in a new issue