diff options
author | Stefano Karapetsas <[email protected]> | 2012-10-04 17:46:05 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-10-04 17:46:05 +0200 |
commit | 5a1ce4568d566302c3c230e2bf66dc6d556cda6d (patch) | |
tree | 38e18ae245a83d4968997cc371e1451f461a6c52 /schemas/org.mate.peripherals-keyboard.gschema.xml.in | |
parent | 5191d24d7245551677c35a3cffed5701fd9c59e5 (diff) | |
download | mate-desktop-5a1ce4568d566302c3c230e2bf66dc6d556cda6d.tar.bz2 mate-desktop-5a1ce4568d566302c3c230e2bf66dc6d556cda6d.tar.xz |
add internationalization support for gsettings schemas
Diffstat (limited to 'schemas/org.mate.peripherals-keyboard.gschema.xml.in')
-rw-r--r-- | schemas/org.mate.peripherals-keyboard.gschema.xml.in | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/schemas/org.mate.peripherals-keyboard.gschema.xml.in b/schemas/org.mate.peripherals-keyboard.gschema.xml.in new file mode 100644 index 0000000..03c7a43 --- /dev/null +++ b/schemas/org.mate.peripherals-keyboard.gschema.xml.in @@ -0,0 +1,49 @@ +<schemalist gettext-domain="@GETTEXT_PACKAGE@"> + <enum id="org.mate.peripherals-keyboard.NumLockState"> + <value nick="off" value="0"/> + <value nick="on" value="1"/> + <value nick="unknown" value="2"/> + </enum> + <schema id="org.mate.peripherals-keyboard" path="/desktop/mate/peripherals/keyboard/"> + <key name="repeat" type="b"> + <default>true</default> + </key> + <key name="click" type="b"> + <default>true</default> + </key> + <key name="rate" type="i"> + <default>30</default> + </key> + <key name="delay" type="i"> + <default>500</default> + </key> + <key name="click-volume" type="i"> + <default>0</default> + </key> + <key name="bell-mode" type="s"> + <default>'on'</default> + <_description>possible values are "on", "off", and "custom".</_description> + </key> + <key name="bell-pitch" type="i"> + <default>400</default> + </key> + <key name="bell-duration" type="i"> + <default>100</default> + </key> + <key name="bell-custom-file" type="s"> + <default>''</default> + <_summary>Keyboard Bell Custom Filename</_summary> + <_description>File name of the bell sound to be played.</_description> + </key> + <key name="remember-numlock-state" type="b"> + <default>true</default> + <_summary>Remember NumLock state</_summary> + <_description>When set to true, MATE will remember the state of the NumLock LED between sessions.</_description> + </key> + <key name="numlock-state" enum="org.mate.peripherals-keyboard.NumLockState"> + <default>'unknown'</default> + <_summary>NumLock state</_summary> + <_description>The remembered state of the NumLock LED.</_description> + </key> + </schema> +</schemalist> |