diff options
author | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-15 17:24:25 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-15 17:26:58 +0800 |
commit | 035eda3f14857100bbf53b70173442ed5b929b19 (patch) | |
tree | 909f35c43f9d94edd9881764404f2e9dd43fc96b /data | |
parent | 0886cc544f0616f90383d4d51709a45da42dea37 (diff) | |
download | gsoc2013-evolution-035eda3f14857100bbf53b70173442ed5b929b19.tar.gz gsoc2013-evolution-035eda3f14857100bbf53b70173442ed5b929b19.tar.zst gsoc2013-evolution-035eda3f14857100bbf53b70173442ed5b929b19.zip |
Port alarm-notify configuration to GSettings
Diffstat (limited to 'data')
-rw-r--r-- | data/evolution.convert | 6 | ||||
-rw-r--r-- | data/org.gnome.evolution.calendar.gschema.xml.in | 30 |
2 files changed, 36 insertions, 0 deletions
diff --git a/data/evolution.convert b/data/evolution.convert index ad6c946579..45954be817 100644 --- a/data/evolution.convert +++ b/data/evolution.convert @@ -38,6 +38,12 @@ editor-show-rsvp = /apps/evolution/calendar/display/show_rsvp editor-show-status = /apps/evolution/calendar/display/show_status editor-show-timezone = /apps/evolution/calendar/display/show_timezone editor-show-type = /apps/evolution/calendar/display/show_type +last-notification-time = /apps/evolution/calendar/notify/last_notification_time +notify-programs = /apps/evolution/calendar/notify/programs +notify-with-tray = /apps/evolution/calendar/notify/notify_with_tray +timezone = /apps/evolution/calendar/display/timezone +use-24hour-format = /apps/evolution/calendar/display/use_24hour_format +use-system-timezone = /apps/evolution/calendar/display/use_system_timezone [org.gnome.evolution.mail] check-if-default-mailer = /apps/evolution/mail/prompts/checkdefault diff --git a/data/org.gnome.evolution.calendar.gschema.xml.in b/data/org.gnome.evolution.calendar.gschema.xml.in index c10a1000cf..9c0050f8f2 100644 --- a/data/org.gnome.evolution.calendar.gschema.xml.in +++ b/data/org.gnome.evolution.calendar.gschema.xml.in @@ -31,4 +31,34 @@ <_summary>Show type field in the event/task/meeting editor</_summary> <_description>Whether to show type field in the event/task/meeting editor</_description> </key> + <key name="last-notification-time" type="i"> + <default>1</default> + <_summary>Last reminder time</_summary> + <_description>Time the last reminder ran, in time_t</_description> + </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-with-tray" type="b"> + <default>false</default> + <_summary>Show display reminders in notification tray</_summary> + <_description>Whether or not to use the notification tray for display reminders</_description> + </key> + <key name="timezone" type="s"> + <default>'UTC'</default> + <_summary>Timezone</_summary> + <_description>The default timezone to use for dates and times in the calendar, as an untranslated Olsen timezone database location like "America/New York"</_description> + </key> + <key name="use-24hour-format" type="b"> + <default>false</default> + <_summary>Twenty four hour time format</_summary> + <_description>Whether to show times in twenty four hour format instead of using am/pm</_description> + </key> + <key name="use-system-timezone" type="b"> + <default>true</default> + <_summary>Use system timezone</_summary> + <_description>Use the system timezone instead of the timezone selected in Evolution</_description> + </key> </schemalist> |