]> git.0d.be Git - empathy.git/commitdiff
Stop generating gschema from .in file
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Mon, 23 Apr 2012 12:17:49 +0000 (14:17 +0200)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Mon, 23 Apr 2012 13:06:48 +0000 (15:06 +0200)
intltool now supports translating gschema files properly so we don't need to
do this crack any more.

https://bugzilla.gnome.org/show_bug.cgi?id=672619

configure.ac
data/.gitignore
data/Makefile.am
data/org.gnome.Empathy.gschema.xml [new file with mode: 0644]
data/org.gnome.Empathy.gschema.xml.in [deleted file]
po/POTFILES.in

index cf711bbf84ed0c9e6bd0a1105915dc6fc2e6f62c..2f41feccf1fd6e2159031cd4527a8030ec3b7bf2 100644 (file)
@@ -259,7 +259,7 @@ fi
 # -----------------------------------------------------------
 # Language Support
 # -----------------------------------------------------------
-IT_PROG_INTLTOOL([0.40.0])
+IT_PROG_INTLTOOL([0.50.0])
 
 GETTEXT_PACKAGE=empathy
 AC_SUBST(GETTEXT_PACKAGE)
index 2d4a96f0ca671a9b04aa170060c1ebf4638b657d..1b5fab599a2bdd4fd66628b374cf51f00eb088d5 100644 (file)
@@ -1,7 +1,6 @@
 empathy.desktop
 empathy.desktop.in
 org.gnome.Empathy.gschema.valid
-org.gnome.Empathy.gschema.xml
 gschemas.compiled
 org.freedesktop.Telepathy.Client.Empathy.Chat.service
 org.freedesktop.Telepathy.Client.Empathy.AudioVideo.service
index a2be750cfe7f0cc76fecbfbf942de4c81885a9af..9a2dd880f40a3bb4a401006bd2dc39e6f7325f28 100644 (file)
@@ -8,11 +8,7 @@ desktop_in_files = \
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
 @INTLTOOL_DESKTOP_RULE@
 
-gsettings_files = \
-       org.gnome.Empathy.gschema.xml.in \
-       $(NULL)
-gsettings_SCHEMAS = $(gsettings_files:.xml.in=.xml)
-@INTLTOOL_XML_NOMERGE_RULE@
+gsettings_SCHEMAS = org.gnome.Empathy.gschema.xml
 @GSETTINGS_RULES@
 
 # We need to compile schemas at make time
@@ -81,7 +77,7 @@ EXTRA_DIST =                          \
        $(html_DATA)                    \
        $(clientfile_DATA)              \
        $(servicefile_in_files)         \
-       $(gsettings_files)              \
+       $(gsettings_SCHEMAS)            \
        $(NULL)
 
 DISTCLEANFILES =               \
diff --git a/data/org.gnome.Empathy.gschema.xml b/data/org.gnome.Empathy.gschema.xml
new file mode 100644 (file)
index 0000000..583eaca
--- /dev/null
@@ -0,0 +1,303 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<schemalist>
+
+  <enum id="position">
+    <value nick="top-left" value="1"/>
+    <value nick="top-right" value="2"/>
+    <value nick="bottom-left" value="3"/>
+    <value nick="bottom-right" value="4"/>
+  </enum>
+
+  <schema id="org.gnome.Empathy" path="/org/gnome/empathy/">
+    <key name="use-conn" type="b">
+      <default>true</default>
+      <summary>Connection managers should be used</summary>
+      <description>Whether connectivity managers should be used to automatically disconnect/reconnect.</description>
+    </key>
+    <key name="autoconnect" type="b">
+      <default>true</default>
+      <summary>Empathy should auto-connect on startup</summary>
+      <description>Whether Empathy should automatically log into your accounts on startup.</description>
+    </key>
+    <key name="autoaway" type="b">
+      <default>true</default>
+      <summary>Empathy should auto-away when idle</summary>
+      <description>Whether Empathy should go into away mode automatically if the user is idle.</description>
+    </key>
+    <key name="file-transfer-default-folder" type="s">
+      <default>''</default>
+      <summary>Empathy default download folder</summary>
+      <description>The default folder to save file transfers in.</description>
+    </key>
+    <key name="sanity-cleaning-number" type="u">
+      <default>0</default>
+      <!-- translators: Automatic tasks which are run once to port/update account settings. Ideally, this shouldn't be exposed to users at all, we just use a gsettings key here as an optimization to only run it only once. -->
+      <summary>Magic number used to check if sanity cleaning tasks should be run</summary>
+      <description>empathy-sanity-cleaning.c uses this number to check if the cleaning tasks should be executed or not. Users should not change this key manually.</description>
+    </key>
+    <child name="ui" schema="org.gnome.Empathy.ui"/>
+    <child name="contacts" schema="org.gnome.Empathy.contacts"/>
+    <child name="sounds" schema="org.gnome.Empathy.sounds"/>
+    <child name="notifications" schema="org.gnome.Empathy.notifications"/>
+    <child name="conversation" schema="org.gnome.Empathy.conversation"/>
+    <child name="hints" schema="org.gnome.Empathy.hints"/>
+    <child name="location" schema="org.gnome.Empathy.location"/>
+  </schema>
+  <schema id="org.gnome.Empathy.ui" path="/org/gnome/empathy/ui/">
+    <key name="show-offline" type="b">
+      <default>true</default>
+      <summary>Show offline contacts</summary>
+      <description>Whether to show contacts that are offline in the contact list.</description>
+    </key>
+    <key name="show-avatars" type="b">
+      <default>true</default>
+      <summary>Show avatars</summary>
+      <description>Whether to show avatars for contacts in the contact list and chat windows.</description>
+    </key>
+    <key name="show-protocols" type="b">
+      <default>false</default>
+      <summary>Show protocols</summary>
+      <description>Whether to show protocols for contacts in the contact list.</description>
+    </key>
+    <key name="show-balance-in-roster" type="b">
+      <default>false</default>
+      <summary>Show Balance in contact list</summary>
+      <description>Whether to show account balances in the contact list.</description>
+    </key>
+    <key name="compact-contact-list" type="b">
+      <default>false</default>
+      <summary>Compact contact list</summary>
+      <description>Whether to show the contact list in compact mode.</description>
+    </key>
+    <key name="main-window-hidden" type="b">
+      <default>false</default>
+      <summary>Hide main window</summary>
+      <description>Hide the main window.</description>
+    </key>
+    <key name="avatar-directory" type="s">
+      <default>''</default>
+      <summary>Default directory to select an avatar image from</summary>
+      <description>The last directory that an avatar image was chosen from.</description>
+    </key>
+    <key name="separate-chat-windows" type="b">
+      <default>false</default>
+      <summary>Open new chats in separate windows</summary>
+      <description>Always open a separate chat window for new chats.</description>
+    </key>
+    <key name="events-notify-area" type="b">
+      <default>true</default>
+      <summary>Display incoming events in the status area</summary>
+      <description>Display incoming events in the status area. If false,
+present them to the user immediately.</description>
+    </key>
+    <key name="chat-window-paned-pos" type="i">
+      <default>0</default>
+      <summary>The position for the chat window side pane</summary>
+      <description>The stored position (in pixels) of the chat window side pane.</description>
+    </key>
+    <key name="show-groups" type="b">
+      <default>true</default>
+      <summary>Show contact groups</summary>
+      <description>Whether to show groups in the contact list.</description>
+    </key>
+  </schema>
+  <schema id="org.gnome.Empathy.contacts" path="/org/gnome/empathy/contacts/">
+    <key name="sort-criterium" type="s">
+      <default>'state'</default>
+      <summary>Contact list sort criterion</summary>
+      <description>Which criterion to use when sorting the contact list. Default is to sort by the contact's state with the value "state". A value of "name" will sort the contact list by name.</description>
+    </key>
+  </schema>
+  <schema id="org.gnome.Empathy.sounds" path="/org/gnome/empathy/sounds/">
+    <key name="sounds-enabled" type="b">
+      <default>true</default>
+      <summary>Use notification sounds</summary>
+      <description>Whether to play a sound to notify of events.</description>
+    </key>
+    <key name="sounds-disabled-away" type="b">
+      <default>true</default>
+      <summary>Disable sounds when away</summary>
+      <description>Whether to play sound notifications when away or busy.</description>
+    </key>
+    <key name="sounds-incoming-message" type="b">
+      <default>true</default>
+      <summary>Play a sound for incoming messages</summary>
+      <description>Whether to play a sound to notify of incoming messages.</description>
+    </key>
+    <key name="sounds-outgoing-message" type="b">
+      <default>false</default>
+      <summary>Play a sound for outgoing messages</summary>
+      <description>Whether to play a sound to notify of outgoing messages.</description>
+    </key>
+    <key name="sounds-new-conversation" type="b">
+      <default>true</default>
+      <summary>Play a sound for new conversations</summary>
+      <description>Whether to play a sound to notify of new conversations.</description>
+    </key>
+    <key name="sounds-contact-login" type="b">
+      <default>false</default>
+      <summary>Play a sound when a contact logs in</summary>
+      <description>Whether to play a sound to notify of contacts logging into the network.</description>
+    </key>
+    <key name="sounds-contact-logout" type="b">
+      <default>false</default>
+      <summary>Play a sound when a contact logs out</summary>
+      <description>Whether to play a sound to notify of contacts logging out of the network.</description>
+    </key>
+    <key name="sounds-service-login" type="b">
+      <default>false</default>
+      <summary>Play a sound when we log in</summary>
+      <description>Whether to play a sound when logging into a network.</description>
+    </key>
+    <key name="sounds-service-logout" type="b">
+      <default>false</default>
+      <summary>Play a sound when we log out</summary>
+      <description>Whether to play a sound when logging out of a network.</description>
+    </key>
+  </schema>
+  <schema id="org.gnome.Empathy.notifications" path="/org/gnome/empathy/notifications/">
+    <key name="notifications-enabled" type="b">
+      <default>true</default>
+      <summary>Enable popup notifications for new messages</summary>
+      <description>Whether to show a popup notification when receiving a new message.</description>
+    </key>
+    <key name="notifications-disabled-away" type="b">
+      <default>true</default>
+      <summary>Disable popup notifications when away</summary>
+      <description>Whether to show popup notifications when away or busy.</description>
+    </key>
+    <key name="notifications-focus" type="b">
+      <default>false</default>
+      <summary>Pop up notifications if the chat isn't focused</summary>
+      <description>Whether to show a popup notification when receiving a new message even if the chat is already opened, but not focused.</description>
+    </key>
+    <key name="notifications-contact-signin" type="b">
+      <default>false</default>
+      <summary>Pop up notifications when a contact logs in</summary>
+      <description>Whether to show a popup notification when a contact goes online.</description>
+    </key>
+    <key name="notifications-contact-signout" type="b">
+      <default>false</default>
+      <summary>Pop up notifications when a contact logs out</summary>
+      <description>Whether to show a popup notification when a contact goes offline.</description>
+    </key>
+  </schema>
+  <schema id="org.gnome.Empathy.conversation" path="/org/gnome/empathy/conversation/">
+    <key name="graphical-smileys" type="b">
+      <default>true</default>
+      <summary>Use graphical smileys</summary>
+      <description>Whether to convert smileys into graphical images in conversations.</description>
+    </key>
+    <key name="show-contacts-in-rooms" type="b">
+      <default>true</default>
+      <summary>Show contact list in rooms</summary>
+      <description>Whether to show the contact list in chat rooms.</description>
+    </key>
+    <key name="theme" type="s">
+      <default>'classic'</default>
+      <summary>Chat window theme</summary>
+      <description>The theme that is used to display the conversation in chat windows.</description>
+    </key>
+    <key name="theme-variant" type="s">
+      <default>''</default>
+      <summary>Chat window theme variant</summary>
+      <description>The theme variant that is used to display the conversation in chat windows.</description>
+    </key>
+    <key name="adium-path" type="s">
+      <default>''</default>
+      <summary>Path of the Adium theme to use</summary>
+      <description>Path of the Adium theme to use if the theme used for chat is Adium.</description>
+    </key>
+    <key name="enable-webkit-developer-tools" type="b">
+      <default>false</default>
+      <summary>Enable WebKit Developer Tools</summary>
+      <description>Whether WebKit developer tools, such as the Web Inspector, should be enabled.</description>
+    </key>
+    <key name="send-chat-states" type="b">
+      <default>true</default>
+      <summary>Inform other users when you are typing to them</summary>
+      <description>Whether to send the 'composing' or 'paused' chat states. Does not currently affect the 'gone' state.</description>
+    </key>
+    <key name="theme-chat-room" type="b">
+      <default>true</default>
+      <summary>Use theme for chat rooms</summary>
+      <description>Whether to use the theme for chat rooms.</description>
+    </key>
+    <key name="spell-checker-languages" type="s">
+      <default>'en'</default>
+      <summary>Spell checking languages</summary>
+      <description>Comma-separated list of spell checker languages to use (e.g. "en, fr, nl").</description>
+    </key>
+    <key name="spell-checker-enabled" type="b">
+      <default>true</default>
+      <summary>Enable spell checker</summary>
+      <description>Whether to check words typed against the languages you want to check with.</description>
+    </key>
+    <key name="nick-completion-char" type="s">
+      <default>':'</default>
+      <summary>Nick completed character</summary>
+      <description>Character to add after nickname when using nick completion (tab) in group chat.</description>
+    </key>
+    <key name="avatar-in-icon" type="b">
+      <default>false</default>
+      <summary>Empathy should use the avatar of the contact as the chat window icon</summary>
+      <description>Whether Empathy should use the avatar of the contact as the chat window icon.</description>
+    </key>
+    <key name="room-last-account" type="o">
+      <default>"/"</default>
+      <summary>Last account selected in Join Room dialog</summary>
+      <description>D-Bus object path of the last account selected to join a room.</description>
+    </key>
+  </schema>
+  <schema id="org.gnome.Empathy.call" path="/org/gnome/empathy/call/">
+    <key name="camera-device" type="s">
+      <default>''</default>
+      <summary>Camera device</summary>
+      <description>Default camera device to use in video calls, e.g. /dev/video0.</description>
+    </key>
+    <key name="camera-position" enum="position">
+      <default>'bottom-left'</default>
+      <summary>Camera position</summary>
+      <description>Position the camera preview should be during a call.</description>
+    </key>
+    <key name="echo-cancellation" type="b">
+      <default>true</default>
+      <summary>Echo cancellation support</summary>
+      <description>Whether to enable Pulseaudio's echo cancellation filter.</description>
+    </key>
+  </schema>
+  <schema id="org.gnome.Empathy.hints" path="/org/gnome/empathy/hints/">
+    <key name="close-main-window" type="b">
+      <default>true</default>
+      <summary>Show hint about closing the main window</summary>
+      <description>Whether to show the message dialog about closing the main window with the 'x' button in the title bar.</description>
+    </key>
+  </schema>
+  <schema id="org.gnome.Empathy.location" path="/org/gnome/empathy/location/">
+    <key name="publish" type="b">
+      <default>false</default>
+      <summary>Empathy can publish the user's location</summary>
+      <description>Whether Empathy can publish the user's location to their contacts.</description>
+    </key>
+    <key name="resource-network" type="b">
+      <default>true</default>
+      <summary>Empathy can use the network to guess the location</summary>
+      <description>Whether Empathy can use the network to guess the location.</description>
+    </key>
+    <key name="resource-cell" type="b">
+      <default>true</default>
+      <summary>Empathy can use the cellular network to guess the location</summary>
+      <description>Whether Empathy can use the cellular network to guess the location.</description>
+    </key>
+    <key name="resource-gps" type="b">
+      <default>false</default>
+      <summary>Empathy can use the GPS to guess the location</summary>
+      <description>Whether Empathy can use the GPS to guess the location.</description>
+    </key>
+    <key name="reduce-accuracy" type="b">
+      <default>true</default>
+      <summary>Empathy should reduce the location's accuracy</summary>
+      <description>Whether Empathy should reduce the location's accuracy for privacy reasons.</description>
+    </key>
+  </schema>
+</schemalist>
diff --git a/data/org.gnome.Empathy.gschema.xml.in b/data/org.gnome.Empathy.gschema.xml.in
deleted file mode 100644 (file)
index c1ac758..0000000
+++ /dev/null
@@ -1,302 +0,0 @@
-<schemalist>
-
-  <enum id="position">
-    <value nick="top-left" value="1"/>
-    <value nick="top-right" value="2"/>
-    <value nick="bottom-left" value="3"/>
-    <value nick="bottom-right" value="4"/>
-  </enum>
-
-  <schema id="org.gnome.Empathy" path="/org/gnome/empathy/">
-    <key name="use-conn" type="b">
-      <default>true</default>
-      <_summary>Connection managers should be used</_summary>
-      <_description>Whether connectivity managers should be used to automatically disconnect/reconnect.</_description>
-    </key>
-    <key name="autoconnect" type="b">
-      <default>true</default>
-      <_summary>Empathy should auto-connect on startup</_summary>
-      <_description>Whether Empathy should automatically log into your accounts on startup.</_description>
-    </key>
-    <key name="autoaway" type="b">
-      <default>true</default>
-      <_summary>Empathy should auto-away when idle</_summary>
-      <_description>Whether Empathy should go into away mode automatically if the user is idle.</_description>
-    </key>
-    <key name="file-transfer-default-folder" type="s">
-      <default>''</default>
-      <_summary>Empathy default download folder</_summary>
-      <_description>The default folder to save file transfers in.</_description>
-    </key>
-    <key name="sanity-cleaning-number" type="u">
-      <default>0</default>
-      <!-- translators: Automatic tasks which are run once to port/update account settings. Ideally, this shouldn't be exposed to users at all, we just use a gsettings key here as an optimization to only run it only once. -->
-      <_summary>Magic number used to check if sanity cleaning tasks should be run</_summary>
-      <_description>empathy-sanity-cleaning.c uses this number to check if the cleaning tasks should be executed or not. Users should not change this key manually.</_description>
-    </key>
-    <child name="ui" schema="org.gnome.Empathy.ui"/>
-    <child name="contacts" schema="org.gnome.Empathy.contacts"/>
-    <child name="sounds" schema="org.gnome.Empathy.sounds"/>
-    <child name="notifications" schema="org.gnome.Empathy.notifications"/>
-    <child name="conversation" schema="org.gnome.Empathy.conversation"/>
-    <child name="hints" schema="org.gnome.Empathy.hints"/>
-    <child name="location" schema="org.gnome.Empathy.location"/>
-  </schema>
-  <schema id="org.gnome.Empathy.ui" path="/org/gnome/empathy/ui/">
-    <key name="show-offline" type="b">
-      <default>true</default>
-      <_summary>Show offline contacts</_summary>
-      <_description>Whether to show contacts that are offline in the contact list.</_description>
-    </key>
-    <key name="show-avatars" type="b">
-      <default>true</default>
-      <_summary>Show avatars</_summary>
-      <_description>Whether to show avatars for contacts in the contact list and chat windows.</_description>
-    </key>
-    <key name="show-protocols" type="b">
-      <default>false</default>
-      <_summary>Show protocols</_summary>
-      <_description>Whether to show protocols for contacts in the contact list.</_description>
-    </key>
-    <key name="show-balance-in-roster" type="b">
-      <default>false</default>
-      <_summary>Show Balance in contact list</_summary>
-      <_description>Whether to show account balances in the contact list.</_description>
-    </key>
-    <key name="compact-contact-list" type="b">
-      <default>false</default>
-      <_summary>Compact contact list</_summary>
-      <_description>Whether to show the contact list in compact mode.</_description>
-    </key>
-    <key name="main-window-hidden" type="b">
-      <default>false</default>
-      <_summary>Hide main window</_summary>
-      <_description>Hide the main window.</_description>
-    </key>
-    <key name="avatar-directory" type="s">
-      <default>''</default>
-      <_summary>Default directory to select an avatar image from</_summary>
-      <_description>The last directory that an avatar image was chosen from.</_description>
-    </key>
-    <key name="separate-chat-windows" type="b">
-      <default>false</default>
-      <_summary>Open new chats in separate windows</_summary>
-      <_description>Always open a separate chat window for new chats.</_description>
-    </key>
-    <key name="events-notify-area" type="b">
-      <default>true</default>
-      <_summary>Display incoming events in the status area</_summary>
-      <_description>Display incoming events in the status area. If false,
-present them to the user immediately.</_description>
-    </key>
-    <key name="chat-window-paned-pos" type="i">
-      <default>0</default>
-      <_summary>The position for the chat window side pane</_summary>
-      <_description>The stored position (in pixels) of the chat window side pane.</_description>
-    </key>
-    <key name="show-groups" type="b">
-      <default>true</default>
-      <_summary>Show contact groups</_summary>
-      <_description>Whether to show groups in the contact list.</_description>
-    </key>
-  </schema>
-  <schema id="org.gnome.Empathy.contacts" path="/org/gnome/empathy/contacts/">
-    <key name="sort-criterium" type="s">
-      <default>'state'</default>
-      <_summary>Contact list sort criterion</_summary>
-      <_description>Which criterion to use when sorting the contact list. Default is to sort by the contact's state with the value "state". A value of "name" will sort the contact list by name.</_description>
-    </key>
-  </schema>
-  <schema id="org.gnome.Empathy.sounds" path="/org/gnome/empathy/sounds/">
-    <key name="sounds-enabled" type="b">
-      <default>true</default>
-      <_summary>Use notification sounds</_summary>
-      <_description>Whether to play a sound to notify of events.</_description>
-    </key>
-    <key name="sounds-disabled-away" type="b">
-      <default>true</default>
-      <_summary>Disable sounds when away</_summary>
-      <_description>Whether to play sound notifications when away or busy.</_description>
-    </key>
-    <key name="sounds-incoming-message" type="b">
-      <default>true</default>
-      <_summary>Play a sound for incoming messages</_summary>
-      <_description>Whether to play a sound to notify of incoming messages.</_description>
-    </key>
-    <key name="sounds-outgoing-message" type="b">
-      <default>false</default>
-      <_summary>Play a sound for outgoing messages</_summary>
-      <_description>Whether to play a sound to notify of outgoing messages.</_description>
-    </key>
-    <key name="sounds-new-conversation" type="b">
-      <default>true</default>
-      <_summary>Play a sound for new conversations</_summary>
-      <_description>Whether to play a sound to notify of new conversations.</_description>
-    </key>
-    <key name="sounds-contact-login" type="b">
-      <default>false</default>
-      <_summary>Play a sound when a contact logs in</_summary>
-      <_description>Whether to play a sound to notify of contacts logging into the network.</_description>
-    </key>
-    <key name="sounds-contact-logout" type="b">
-      <default>false</default>
-      <_summary>Play a sound when a contact logs out</_summary>
-      <_description>Whether to play a sound to notify of contacts logging out of the network.</_description>
-    </key>
-    <key name="sounds-service-login" type="b">
-      <default>false</default>
-      <_summary>Play a sound when we log in</_summary>
-      <_description>Whether to play a sound when logging into a network.</_description>
-    </key>
-    <key name="sounds-service-logout" type="b">
-      <default>false</default>
-      <_summary>Play a sound when we log out</_summary>
-      <_description>Whether to play a sound when logging out of a network.</_description>
-    </key>
-  </schema>
-  <schema id="org.gnome.Empathy.notifications" path="/org/gnome/empathy/notifications/">
-    <key name="notifications-enabled" type="b">
-      <default>true</default>
-      <_summary>Enable popup notifications for new messages</_summary>
-      <_description>Whether to show a popup notification when receiving a new message.</_description>
-    </key>
-    <key name="notifications-disabled-away" type="b">
-      <default>true</default>
-      <_summary>Disable popup notifications when away</_summary>
-      <_description>Whether to show popup notifications when away or busy.</_description>
-    </key>
-    <key name="notifications-focus" type="b">
-      <default>false</default>
-      <_summary>Pop up notifications if the chat isn't focused</_summary>
-      <_description>Whether to show a popup notification when receiving a new message even if the chat is already opened, but not focused.</_description>
-    </key>
-    <key name="notifications-contact-signin" type="b">
-      <default>false</default>
-      <_summary>Pop up notifications when a contact logs in</_summary>
-      <_description>Whether to show a popup notification when a contact goes online.</_description>
-    </key>
-    <key name="notifications-contact-signout" type="b">
-      <default>false</default>
-      <_summary>Pop up notifications when a contact logs out</_summary>
-      <_description>Whether to show a popup notification when a contact goes offline.</_description>
-    </key>
-  </schema>
-  <schema id="org.gnome.Empathy.conversation" path="/org/gnome/empathy/conversation/">
-    <key name="graphical-smileys" type="b">
-      <default>true</default>
-      <_summary>Use graphical smileys</_summary>
-      <_description>Whether to convert smileys into graphical images in conversations.</_description>
-    </key>
-    <key name="show-contacts-in-rooms" type="b">
-      <default>true</default>
-      <_summary>Show contact list in rooms</_summary>
-      <_description>Whether to show the contact list in chat rooms.</_description>
-    </key>
-    <key name="theme" type="s">
-      <default>'classic'</default>
-      <_summary>Chat window theme</_summary>
-      <_description>The theme that is used to display the conversation in chat windows.</_description>
-    </key>
-    <key name="theme-variant" type="s">
-      <default>''</default>
-      <_summary>Chat window theme variant</_summary>
-      <_description>The theme variant that is used to display the conversation in chat windows.</_description>
-    </key>
-    <key name="adium-path" type="s">
-      <default>''</default>
-      <_summary>Path of the Adium theme to use</_summary>
-      <_description>Path of the Adium theme to use if the theme used for chat is Adium.</_description>
-    </key>
-    <key name="enable-webkit-developer-tools" type="b">
-      <default>false</default>
-      <_summary>Enable WebKit Developer Tools</_summary>
-      <_description>Whether WebKit developer tools, such as the Web Inspector, should be enabled.</_description>
-    </key>
-    <key name="send-chat-states" type="b">
-      <default>true</default>
-      <_summary>Inform other users when you are typing to them</_summary>
-      <_description>Whether to send the 'composing' or 'paused' chat states. Does not currently affect the 'gone' state.</_description>
-    </key>
-    <key name="theme-chat-room" type="b">
-      <default>true</default>
-      <_summary>Use theme for chat rooms</_summary>
-      <_description>Whether to use the theme for chat rooms.</_description>
-    </key>
-    <key name="spell-checker-languages" type="s">
-      <default>'en'</default>
-      <_summary>Spell checking languages</_summary>
-      <_description>Comma-separated list of spell checker languages to use (e.g. "en, fr, nl").</_description>
-    </key>
-    <key name="spell-checker-enabled" type="b">
-      <default>true</default>
-      <_summary>Enable spell checker</_summary>
-      <_description>Whether to check words typed against the languages you want to check with.</_description>
-    </key>
-    <key name="nick-completion-char" type="s">
-      <default>':'</default>
-      <_summary>Nick completed character</_summary>
-      <_description>Character to add after nickname when using nick completion (tab) in group chat.</_description>
-    </key>
-    <key name="avatar-in-icon" type="b">
-      <default>false</default>
-      <_summary>Empathy should use the avatar of the contact as the chat window icon</_summary>
-      <_description>Whether Empathy should use the avatar of the contact as the chat window icon.</_description>
-    </key>
-    <key name="room-last-account" type="o">
-      <default>"/"</default>
-      <_summary>Last account selected in Join Room dialog</_summary>
-      <_description>D-Bus object path of the last account selected to join a room.</_description>
-    </key>
-  </schema>
-  <schema id="org.gnome.Empathy.call" path="/org/gnome/empathy/call/">
-    <key name="camera-device" type="s">
-      <default>''</default>
-      <_summary>Camera device</_summary>
-      <_description>Default camera device to use in video calls, e.g. /dev/video0.</_description>
-    </key>
-    <key name="camera-position" enum="position">
-      <default>'bottom-left'</default>
-      <_summary>Camera position</_summary>
-      <_description>Position the camera preview should be during a call.</_description>
-    </key>
-    <key name="echo-cancellation" type="b">
-      <default>true</default>
-      <_summary>Echo cancellation support</_summary>
-      <_description>Whether to enable Pulseaudio's echo cancellation filter.</_description>
-    </key>
-  </schema>
-  <schema id="org.gnome.Empathy.hints" path="/org/gnome/empathy/hints/">
-    <key name="close-main-window" type="b">
-      <default>true</default>
-      <_summary>Show hint about closing the main window</_summary>
-      <_description>Whether to show the message dialog about closing the main window with the 'x' button in the title bar.</_description>
-    </key>
-  </schema>
-  <schema id="org.gnome.Empathy.location" path="/org/gnome/empathy/location/">
-    <key name="publish" type="b">
-      <default>false</default>
-      <_summary>Empathy can publish the user's location</_summary>
-      <_description>Whether Empathy can publish the user's location to their contacts.</_description>
-    </key>
-    <key name="resource-network" type="b">
-      <default>true</default>
-      <_summary>Empathy can use the network to guess the location</_summary>
-      <_description>Whether Empathy can use the network to guess the location.</_description>
-    </key>
-    <key name="resource-cell" type="b">
-      <default>true</default>
-      <_summary>Empathy can use the cellular network to guess the location</_summary>
-      <_description>Whether Empathy can use the cellular network to guess the location.</_description>
-    </key>
-    <key name="resource-gps" type="b">
-      <default>false</default>
-      <_summary>Empathy can use the GPS to guess the location</_summary>
-      <_description>Whether Empathy can use the GPS to guess the location.</_description>
-    </key>
-    <key name="reduce-accuracy" type="b">
-      <default>true</default>
-      <_summary>Empathy should reduce the location's accuracy</_summary>
-      <_description>Whether Empathy should reduce the location's accuracy for privacy reasons.</_description>
-    </key>
-  </schema>
-</schemalist>
index 597cf8620bb354cfdc8639dae63443e35193aac7..fbde5fbd52856e5b016d09c42b78ef0bd8a12045 100644 (file)
@@ -3,7 +3,7 @@
 
 data/empathy.desktop.in.in
 data/empathy-accounts.desktop.in.in
-data/org.gnome.Empathy.gschema.xml.in
+data/org.gnome.Empathy.gschema.xml
 
 libempathy/empathy-ft-handler.c
 libempathy/empathy-message.c