]> git.pld-linux.org Git - packages/evolution.git/blame - evolution-GG-IM.patch
- merged freetz's changes from AC-branch:
[packages/evolution.git] / evolution-GG-IM.patch
CommitLineData
68e289a5 1diff -urN aa/evolution-2.1.5/addressbook/gui/contact-editor/e-contact-editor.c evolution-2.1.5/addressbook/gui/contact-editor/e-contact-editor.c
2--- aa/evolution-2.1.5/addressbook/gui/contact-editor/e-contact-editor.c 2005-01-28 19:40:16.000000000 +0100
3+++ evolution-2.1.5/addressbook/gui/contact-editor/e-contact-editor.c 2005-02-12 22:29:33.797115680 +0100
4@@ -182,6 +182,7 @@
1ec59cd2 5 { E_CONTACT_IM_AIM, N_ ("AIM") },
6 { E_CONTACT_IM_JABBER, N_ ("Jabber") },
7 { E_CONTACT_IM_YAHOO, N_ ("Yahoo") },
8+ { E_CONTACT_IM_GADUGADU, N_ ("Gadu-Gadu") },
9 { E_CONTACT_IM_MSN, N_ ("MSN") },
10 { E_CONTACT_IM_ICQ, N_ ("ICQ") },
11 { E_CONTACT_IM_GROUPWISE, N_ ("GroupWise") }
68e289a5 12@@ -2819,6 +2820,7 @@
13 E_CONTACT_IM_GROUPWISE,
14 E_CONTACT_IM_JABBER,
15 E_CONTACT_IM_YAHOO,
16+ E_CONTACT_IM_GADUGADU,
17 E_CONTACT_IM_MSN,
18 E_CONTACT_IM_ICQ,
19 E_CONTACT_PHOTO,
20diff -urN aa/evolution-2.1.5/addressbook/gui/contact-editor/e-contact-editor-im.c evolution-2.1.5/addressbook/gui/contact-editor/e-contact-editor-im.c
21--- aa/evolution-2.1.5/addressbook/gui/contact-editor/e-contact-editor-im.c 2004-11-26 16:51:28.000000000 +0100
22+++ evolution-2.1.5/addressbook/gui/contact-editor/e-contact-editor-im.c 2005-02-12 22:28:24.788606568 +0100
1ec59cd2 23@@ -63,6 +63,7 @@
24 N_("Novell Groupwise"),
25 N_("Jabber"),
26 N_("Yahoo Messenger"),
27+ N_("Gadu-Gadu Messenger"),
28 N_("MSN Messenger"),
29 N_("ICQ")
30 };
31@@ -72,6 +73,7 @@
32 "im-nov",
33 "im-jabber",
34 "im-yahoo",
35+ "im-gadugadu",
36 "im-msn",
37 "im-icq"
38 };
68e289a5 39diff -urN aa/evolution-2.1.5/addressbook/gui/widgets/eab-contact-display.c evolution-2.1.5/addressbook/gui/widgets/eab-contact-display.c
40--- aa/evolution-2.1.5/addressbook/gui/widgets/eab-contact-display.c 2005-01-24 18:28:37.000000000 +0100
41+++ evolution-2.1.5/addressbook/gui/widgets/eab-contact-display.c 2005-02-12 22:33:05.345955368 +0100
42@@ -57,6 +57,7 @@
1ec59cd2 43 #define JABBER_ICON "im-jabber"
44 #define MSN_ICON "im-msn"
45 #define YAHOO_ICON "im-yahoo"
68e289a5 46+#define GADUGADU_ICON "im-gadugadu"
1ec59cd2 47 #define VIDEOCONF_ICON "stock_video-conferencing"
48
49 #define MAX_COMPACT_IMAGE_DIMENSION 48
68e289a5 50@@ -349,6 +350,7 @@
51 accum_multival_attribute (accum, contact, _("Jabber"), E_CONTACT_IM_JABBER, JABBER_ICON, 0);
52 accum_multival_attribute (accum, contact, _("MSN"), E_CONTACT_IM_MSN, MSN_ICON, 0);
53 accum_multival_attribute (accum, contact, _("Yahoo"), E_CONTACT_IM_YAHOO, YAHOO_ICON, 0);
54+ accum_multival_attribute (accum, contact, _("Gadu-Gadu"), E_CONTACT_IM_GADUGADU, GADUGADU_ICON, 0);
1ec59cd2 55
c0e646e4 56 if (accum->len > 0)
68e289a5 57 gtk_html_stream_printf (html_stream, accum->str);
58diff -urN aa/evolution-2.1.5/plugins/bbdb/gaimbuddies.c evolution-2.1.5/plugins/bbdb/gaimbuddies.c
59--- aa/evolution-2.1.5/plugins/bbdb/gaimbuddies.c 2005-01-31 19:34:41.000000000 +0100
60+++ evolution-2.1.5/plugins/bbdb/gaimbuddies.c 2005-02-12 22:37:40.473129680 +0100
61@@ -286,6 +286,8 @@
62 return E_CONTACT_IM_YAHOO;
63 if (! strcmp (proto, "prpl-jabber"))
64 return E_CONTACT_IM_JABBER;
65+ if (! strcmp (proto, "prpl-gg"))
66+ return E_CONTACT_IM_GADUGADU;
67
68 return E_CONTACT_IM_AIM;
69 }
This page took 0.127347 seconds and 4 git commands to generate.