| 1723 zephyr_protocol_new(void) { |
1723 zephyr_protocol_new(void) { |
| 1724 return PURPLE_PROTOCOL(g_object_new( |
1724 return PURPLE_PROTOCOL(g_object_new( |
| 1725 ZEPHYR_TYPE_PROTOCOL, |
1725 ZEPHYR_TYPE_PROTOCOL, |
| 1726 "id", "prpl-zephyr", |
1726 "id", "prpl-zephyr", |
| 1727 "name", "Zephyr", |
1727 "name", "Zephyr", |
| 1728 "description", "Zephyr is an instant messaging protocol, created at MIT", |
1728 "description", _("The chat component of Project Athena."), |
| 1729 "icon-name", "im-zephyr", |
1729 "icon-name", "im-zephyr", |
| 1730 "icon-resource-path", "/im/pidgin/libpurple/zephyr/icons", |
1730 "icon-resource-path", "/im/pidgin/libpurple/zephyr/icons", |
| 1731 "options", OPT_PROTO_CHAT_TOPIC | OPT_PROTO_NO_PASSWORD, |
1731 "options", OPT_PROTO_CHAT_TOPIC | OPT_PROTO_NO_PASSWORD, |
| 1732 NULL)); |
1732 NULL)); |
| 1733 } |
1733 } |