summaryrefslogtreecommitdiff
path: root/data/org.mate.calc.gschema.xml.in
diff options
context:
space:
mode:
authorWu Xiaotian <[email protected]>2019-05-21 14:47:33 +0800
committerraveit65 <[email protected]>2019-06-12 14:56:17 +0200
commit9ee7e00057ce3d7b4dc6cf22074fc54bf8f48b3e (patch)
tree2e12ec97814602601e9cc3a1d05fcf36bd977d0f /data/org.mate.calc.gschema.xml.in
parent5d8846ee43d02abbfa844657e13ab555676bcff9 (diff)
downloadmate-calc-9ee7e00057ce3d7b4dc6cf22074fc54bf8f48b3e.tar.bz2
mate-calc-9ee7e00057ce3d7b4dc6cf22074fc54bf8f48b3e.tar.xz
Migrate from intltools into gettext
Diffstat (limited to 'data/org.mate.calc.gschema.xml.in')
-rw-r--r--data/org.mate.calc.gschema.xml.in86
1 files changed, 0 insertions, 86 deletions
diff --git a/data/org.mate.calc.gschema.xml.in b/data/org.mate.calc.gschema.xml.in
deleted file mode 100644
index 37295c1..0000000
--- a/data/org.mate.calc.gschema.xml.in
+++ /dev/null
@@ -1,86 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<schemalist>
- <enum id="org.mate.calc.NumberFormat">
- <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"/>
- <value value="1" nick="advanced"/>
- <value value="2" nick="financial"/>
- <value value="3" nick="programming"/>
- </enum>
- <enum id="org.mate.calc.AngleUnit">
- <value value="0" nick="radians"/>
- <value value="1" nick="degrees"/>
- <value value="2" nick="gradians"/>
- </enum>
-
- <schema path="/org/mate/calc/" id="org.mate.calc" gettext-domain="mate-calc">
- <key type="i" name="accuracy">
- <default>9</default>
- <range min="0" max="15"/>
- <summary>Accuracy value</summary>
- <description>The number of digits displayed after the numeric point</description>
- </key>
- <key type="i" name="word-size">
- <default>64</default>
- <range min="8" max="64"/>
- <summary>Word size</summary>
- <description>The size of the words used in bitwise operations</description>
- </key>
- <key type="i" name="base">
- <default>10</default>
- <range min="2" max="16"/>
- <summary>Numeric Base</summary>
- <description>The numeric base</description>
- </key>
- <key type="b" name="show-thousands">
- <default>false</default>
- <summary>Show Thousands Separators</summary>
- <description>Indicates whether thousands separators are shown in large numbers.</description>
- </key>
- <key type="b" name="show-zeroes">
- <default>false</default>
- <summary>Show Trailing Zeroes</summary>
- <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>'automatic'</default>
- <summary>Number format</summary>
- <description>The format to display numbers in</description>
- </key>
- <key name="angle-units" enum="org.mate.calc.AngleUnit">
- <default>'degrees'</default>
- <summary>Angle units</summary>
- <description>The angle units to use</description>
- </key>
- <key name="button-mode" enum="org.mate.calc.ButtonMode">
- <default>'basic'</default>
- <summary>Button mode</summary>
- <description>The button mode</description>
- </key>
- <key type="s" name="source-currency">
- <default>''</default>
- <summary>Source currency</summary>
- <description>Currency of the current calculation</description>
- </key>
- <key type="s" name="target-currency">
- <default>''</default>
- <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>