diff options
author | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-14 22:40:30 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-15 17:26:58 +0800 |
commit | 0886cc544f0616f90383d4d51709a45da42dea37 (patch) | |
tree | d66b09f17b5f82a5ca6b4aca9bde839f7327aed3 /data | |
parent | dcccd31fafe805bb2f1a01c6d19c12e881ba58c6 (diff) | |
download | gsoc2013-evolution-0886cc544f0616f90383d4d51709a45da42dea37.tar.gz gsoc2013-evolution-0886cc544f0616f90383d4d51709a45da42dea37.tar.zst gsoc2013-evolution-0886cc544f0616f90383d4d51709a45da42dea37.zip |
Port event/task/meeting editor 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 643e5d68ee..ad6c946579 100644 --- a/data/evolution.convert +++ b/data/evolution.convert @@ -32,6 +32,12 @@ vpane-position = /apps/evolution/addressbook/display/vpane_position show-preview = /apps/evolution/addressbook/display/show_preview [org.gnome.evolution.calendar] +editor-show-categories = /apps/evolution/calendar/display/show_categories +editor-show-role = /apps/evolution/calendar/display/show_role +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 [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 3cd7f77435..c10a1000cf 100644 --- a/data/org.gnome.evolution.calendar.gschema.xml.in +++ b/data/org.gnome.evolution.calendar.gschema.xml.in @@ -1,4 +1,34 @@ <schemalist> <schema gettext-domain="evolution" id="org.gnome.evolution.calendar" path="/apps/evolution/calendar/"> </schema> + <key name="editor-show-categories" type="b"> + <default>false</default> + <_summary>Show categories field in the event/meeting/task editor</_summary> + <_description>Whether to show categories field in the event/meeting editor</_description> + </key> + <key name="editor-show-role" type="b"> + <default>true</default> + <_summary>Show Role field in the event/task/meeting editor</_summary> + <_description>Whether to show role field in the event/task/meeting editor</_description> + </key> + <key name="editor-show-rsvp" type="b"> + <default>false</default> + <_summary>Show RSVP field in the event/task/meeting editor</_summary> + <_description>Whether to show RSVP field in the event/task/meeting editor</_description> + </key> + <key name="editor-show-status" type="b"> + <default>false</default> + <_summary>Show status field in the event/task/meeting editor</_summary> + <_description>Whether to show status field in the event/task/meeting editor</_description> + </key> + <key name="editor-show-timezone" type="b"> + <default>false</default> + <_summary>Show timezone field in the event/meeting editor</_summary> + <_description>Whether to show timezone field in the event/meeting editor</_description> + </key> + <key name="editor-show-type" type="b"> + <default>false</default> + <_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> </schemalist> |