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.applications-office.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.applications-office.gschema.xml.in')
-rw-r--r-- | schemas/org.mate.applications-office.gschema.xml.in | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/schemas/org.mate.applications-office.gschema.xml.in b/schemas/org.mate.applications-office.gschema.xml.in new file mode 100644 index 0000000..c891a86 --- /dev/null +++ b/schemas/org.mate.applications-office.gschema.xml.in @@ -0,0 +1,30 @@ +<schemalist gettext-domain="@GETTEXT_PACKAGE@"> + <schema id="org.mate.applications-office" path="/desktop/mate/applications/"> + <child name="calendar" schema="org.mate.applications-office.calendar"/> + <child name="tasks" schema="org.mate.applications-office.tasks"/> + </schema> + <schema id="org.mate.applications-office.calendar" path="/desktop/mate/applications/calendar/"> + <key name="exec" type="s"> + <default>'evolution'</default> + <_summary>Default calendar</_summary> + <_description>Default calendar application</_description> + </key> + <key name="needs-term" type="b"> + <default>false</default> + <_summary>Calendar needs terminal</_summary> + <_description>Whether the default calendar application needs a terminal to run</_description> + </key> + </schema> + <schema id="org.mate.applications-office.tasks" path="/desktop/mate/applications/tasks/"> + <key name="exec" type="s"> + <default>'evolution'</default> + <_summary>Default tasks</_summary> + <_description>Default tasks application</_description> + </key> + <key name="needs-term" type="b"> + <default>false</default> + <_summary>Tasks needs terminal</_summary> + <_description>Whether the default tasks application needs a terminal to run</_description> + </key> + </schema> +</schemalist> |