1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
<schemalist>
<enum id='org.gnome.evolution-data-server.calendar.Duration'>
<value nick='minutes' value='0'/>
<value nick='hours' value='1'/>
<value nick='days' value='2'/>
</enum>
<schema gettext-domain="evolution-data-server" id="org.gnome.evolution-data-server.calendar" path="/org/gnome/evolution-data-server/calendar/">
<key name="contacts-reminder-enabled" type="b">
<default>false</default>
<summary>Birthday and anniversary reminder</summary>
<description>Whether to set a reminder for birthdays and anniversaries</description>
</key>
<key name="contacts-reminder-interval" type="i">
<default>15</default>
<summary>Birthday and anniversary reminder value</summary>
<description>Number of units for determining a birthday or anniversary reminder</description>
</key>
<key name="contacts-reminder-units" enum='org.gnome.evolution-data-server.calendar.Duration'>
<default>'minutes'</default>
<summary>Birthday and anniversary reminder units</summary>
<description>Units for a birthday or anniversary reminder, “minutes”, “hours” or “days”</description>
</key>
<key name="defall-reminder-enabled" type="b">
<default>false</default>
<summary>Default reminder for all events in chosen calendars</summary>
<description>Whether to show a specified reminder for all events in chosen calendars</description>
</key>
<key name="defall-reminder-interval" type="i">
<default>15</default>
<summary>Interval of the default reminder for all events in chosen calendars</summary>
<description>Number of units for determining the reminder</description>
</key>
<key name="defall-reminder-units" enum='org.gnome.evolution-data-server.calendar.Duration'>
<default>'minutes'</default>
<summary>Units of the default reminder for all events in chosen calendars</summary>
<description>Units for the default reminder for all events in chosen calendars, “minutes”, “hours” or “days”</description>
</key>
<key name="reminders-past" type="as">
<default>['']</default>
<summary>Past reminders for EReminderWatcher</summary>
</key>
<key name="reminders-snoozed" type="as">
<default>['']</default>
<summary>Snoozed reminders for EReminderWatcher</summary>
</key>
<key name="reminders-past-days" type="i">
<default>7</default>
<summary>How many days the reminders-past can hold back. Reminders older than these days are automatically removed from the list of the past reminders. Use '0' to not remove old reminders.</summary>
</key>
<key name="notify-programs" type="as">
<default>[]</default>
<summary>Reminder programs</summary>
<description>Programs that are allowed to be run by reminders</description>
</key>
<key name="notify-enable-display" type="b">
<default>true</default>
<summary>Enable desktop notifications</summary>
<description>When set to true, the desktop/system notifications are shown</description>
</key>
<key name="notify-enable-audio" type="b">
<default>true</default>
<summary>Enable audio notifications</summary>
<description>When set to true, the audio reminders will be played, otherwise audio reminders will be silently ignored</description>
</key>
<key name="notify-with-tray" type="b">
<default>true</default>
<summary>Show reminders in notification tray only</summary>
<description>When set to true, the reminders are shown only in the notification tray, otherwise the reminders dialog is shown immediately</description>
</key>
<key name="notify-window-on-top" type="b">
<default>true</default>
<summary>Show reminder notification dialog always on top</summary>
<description>Whether or not to show reminder notification dialog always on top. Note this works only as a hint for the window manager, which may or may not obey it.</description>
</key>
<key name="notify-window-x" type="i">
<default>-1</default>
<summary>X position of the reminder notification dialog</summary>
</key>
<key name="notify-window-y" type="i">
<default>-1</default>
<summary>Y position of the reminder notification dialog</summary>
</key>
<key name="notify-window-width" type="i">
<default>-1</default>
<summary>Width of the reminder notification dialog</summary>
</key>
<key name="notify-window-height" type="i">
<default>-1</default>
<summary>Height of the reminder notification dialog</summary>
</key>
<key name="notify-window-paned-position" type="i">
<default>-1</default>
<summary>Size in pixels of the event list in the reminder notification dialog</summary>
</key>
<key name="notify-completed-tasks" type="b">
<default>true</default>
<summary>Show reminder notification for completed tasks</summary>
</key>
<key name="notify-past-events" type="b">
<default>false</default>
<summary>Show reminder notification for past events</summary>
</key>
<key name="notify-last-snooze-minutes" type="i">
<default>5</default>
<summary>The last used snooze time, in minutes</summary>
</key>
<key name="notify-custom-snooze-minutes" type="ai">
<default>[]</default>
<summary>User-defined snooze times, in minutes</summary>
</key>
<key name="delete-meeting-on-decline" type="b">
<default>true</default>
<summary>Delete meeting from calendar on Decline</summary>
</key>
</schema>
</schemalist>
|