diff options
author | infirit <[email protected]> | 2015-09-06 21:55:35 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2015-09-06 21:55:35 +0200 |
commit | df7a7488950139e3884972e2363294051e33d45d (patch) | |
tree | c442d94aba98b29a69a743701bf9a7d7a1086950 /battstat/org.mate.panel.applet.battstat.gschema.xml.in | |
parent | 6bfc67fc80ba929a740d20edd9ba34927dfefafe (diff) | |
download | mate-applets-df7a7488950139e3884972e2363294051e33d45d.tar.bz2 mate-applets-df7a7488950139e3884972e2363294051e33d45d.tar.xz |
Rework gsettings schema building
* Bump intltool required version for gsettings support
* Extract strings with intltool directly
* Let autoconf generate the xml files
Diffstat (limited to 'battstat/org.mate.panel.applet.battstat.gschema.xml.in')
-rw-r--r-- | battstat/org.mate.panel.applet.battstat.gschema.xml.in | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/battstat/org.mate.panel.applet.battstat.gschema.xml.in b/battstat/org.mate.panel.applet.battstat.gschema.xml.in new file mode 100644 index 00000000..7deb8d54 --- /dev/null +++ b/battstat/org.mate.panel.applet.battstat.gschema.xml.in @@ -0,0 +1,49 @@ +<schemalist gettext-domain="@GETTEXT_PACKAGE@"> + <schema id="org.mate.panel.applet.battstat"> + <key name="red-value" type="i"> + <default>15</default> + <summary>Red value level</summary> + <description>The battery level below which the battery is displayed as red. Also the value at which the low battery warning is displayed.</description> + </key> + <key name="red-value-is-time" type="b"> + <default>false</default> + <summary>Warn on low time rather than low percentage</summary> + <description>Use the value defined in red_value as a time remaining to show the warning dialog rather than a percentage.</description> + </key> + <key name="low-battery-notification" type="b"> + <default>true</default> + <summary>Low Battery Notification</summary> + <description>Notify user when the battery is low.</description> + </key> + <key name="full-battery-notification" type="b"> + <default>false</default> + <summary>Full Battery Notification</summary> + <description>Notify user when the battery is full.</description> + </key> + <key name="beep" type="b"> + <default>false</default> + <summary>Beep for warnings</summary> + <description>Beep when displaying a warning.</description> + </key> + <key name="drain-from-top" type="b"> + <default>false</default> + <summary>Drain from top</summary> + <description>Show the battery meter draining from the top of the battery. Only implemented for traditional battery view.</description> + </key> + <key name="show-status" type="b"> + <default>true</default> + <summary>Upright (small) battery</summary> + <description>Show the upright, smaller battery on the panel.</description> + </key> + <key name="show-battery" type="b"> + <default>false</default> + <summary>Show the horizontal battery</summary> + <description>Show the traditional, horizontal battery on the panel.</description> + </key> + <key name="show-text" type="i"> + <default>0</default> + <summary>Show the time/percent label</summary> + <description>0 for no label, 1 for percentage and 2 for time remaining.</description> + </key> + </schema> +</schemalist> |