blob: d294cfecc3c622dfd8e997365ca3c7acef9cbcfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0"?>
<schemalist gettext-domain="@GETTEXT_PACKAGE@">
<enum id="org.mate.pluma.plugins.time.PromptType">
<value nick="prompt-selected-format" value="0"/>
<value nick="prompt-custom-format" value="1"/>
<value nick="use-selected-format" value="2"/>
<value nick="use-custom-format" value="3"/>
</enum>
<schema id="org.mate.pluma.plugins.time" path="/org/mate/pluma/plugins/time/">
<key name="prompt-type" enum="org.mate.pluma.plugins.time.PromptType">
<default>'prompt-selected-format'</default>
<_summary>Prompt type</_summary>
</key>
<key name="selected-format" type="s">
<default>'%c'</default>
<_summary>Selected format</_summary>
</key>
<key name="custom-format" type="s">
<default>'%d/%m/%Y %H:%M:%S'</default>
<_summary>Custom format</_summary>
</key>
</schema>
</schemalist>
|