diff options
Diffstat (limited to 'data/org.mate.calc.gschema.xml.in')
-rw-r--r-- | data/org.mate.calc.gschema.xml.in | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/data/org.mate.calc.gschema.xml.in b/data/org.mate.calc.gschema.xml.in index 4f0f79b..a268aaf 100644 --- a/data/org.mate.calc.gschema.xml.in +++ b/data/org.mate.calc.gschema.xml.in @@ -1,9 +1,10 @@ <?xml version="1.0" encoding="UTF-8"?> <schemalist> <enum id="org.mate.calc.NumberFormat"> - <value value="0" nick="fixed"/> - <value value="1" nick="scientific"/> - <value value="2" nick="engineering"/> + <value value="0" nick="automatic"/> + <value value="1" nick="fixed"/> + <value value="2" nick="scientific"/> + <value value="3" nick="engineering"/> </enum> <enum id="org.mate.calc.ButtonMode"> <value value="0" nick="basic"/> @@ -47,7 +48,7 @@ <_description>Indicates whether any trailing zeroes after the numeric point should be shown in the display value.</_description> </key> <key name="number-format" enum="org.mate.calc.NumberFormat"> - <default>'fixed'</default> + <default>'automatic'</default> <_summary>Number format</_summary> <_description>The format to display numbers in</_description> </key> @@ -71,5 +72,15 @@ <_summary>Target currency</_summary> <_description>Currency to convert the current calculation into</_description> </key> + <key type="s" name="source-units"> + <default>'degree'</default> + <_summary>Source units</_summary> + <_description>Units of the current calculation</_description> + </key> + <key type="s" name="target-units"> + <default>'radian'</default> + <_summary>Target units</_summary> + <_description>Units to convert the current calculation into</_description> + </key> </schema> </schemalist> |