blob: b966bc25e8d985b566126b763ef0e3dc65b9e2ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gaphor">
<enum id="org.gaphor.Gaphor.StyleVariant">
<value nick="System" value="0"/>
<value nick="Dark" value="1"/>
<value nick="Light" value="2"/>
</enum>
<schema id="org.gaphor.Gaphor" path="/org/gaphor/gaphor/">
<key name="style-variant" enum="org.gaphor.Gaphor.StyleVariant">
<default>'System'</default>
<summary>Style Variant</summary>
<description>Use the light or dark variant of the theme.</description>
</key>
<key name="use-english" type="b">
<default>false</default>
<summary>Use English</summary>
<description>Override language to English.</description>
</key>
</schema>
</schemalist>
|