blob: b3567e96ccc00b903bc3790b270fe3ef37c804f2 (
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>
|