pidgin/pidgin

Remove colons from chat entry names

18 months ago, Elliott Sales de Andrade
e99a5581eb72
Parents 9898678c8cbd
Children 55a099a1e619
Remove colons from chat entry names

If a UI wants a colon, it can add them, but it probably doesn't.

Testing Done:
Compiled and opened 'Add a Chat' dialog, and saw no colons in the protocol-specific part.

Reviewed at https://reviews.imfreedom.org/r/2044/
--- a/libpurple/protocols/facebook/facebook.c Mon Nov 07 01:42:33 2022 -0600
+++ b/libpurple/protocols/facebook/facebook.c Mon Nov 07 21:51:11 2022 -0600
@@ -1276,7 +1276,7 @@
PurpleProtocolChatEntry *pce;
pce = g_new0(PurpleProtocolChatEntry, 1);
- pce->label = _("Chat _Name:");
+ pce->label = _("Chat _Name");
pce->identifier = "name";
pce->required = TRUE;
pces = g_list_prepend(pces, pce);
--- a/libpurple/protocols/gg/chat.c Mon Nov 07 01:42:33 2022 -0600
+++ b/libpurple/protocols/gg/chat.c Mon Nov 07 21:51:11 2022 -0600
@@ -301,7 +301,7 @@
PurpleProtocolChatEntry *pce;
pce = g_new0(PurpleProtocolChatEntry, 1);
- pce->label = _("_Conference identifier:");
+ pce->label = _("_Conference identifier");
pce->identifier = "id";
pce->required = FALSE;
m = g_list_append(m, pce);
--- a/libpurple/protocols/irc/irc.c Mon Nov 07 01:42:33 2022 -0600
+++ b/libpurple/protocols/irc/irc.c Mon Nov 07 21:51:11 2022 -0600
@@ -496,13 +496,13 @@
PurpleProtocolChatEntry *pce;
pce = g_new0(PurpleProtocolChatEntry, 1);
- pce->label = _("_Channel:");
+ pce->label = _("_Channel");
pce->identifier = "channel";
pce->required = TRUE;
m = g_list_append(m, pce);
pce = g_new0(PurpleProtocolChatEntry, 1);
- pce->label = _("_Password:");
+ pce->label = _("_Password");
pce->identifier = "password";
pce->secret = TRUE;
m = g_list_append(m, pce);
--- a/libpurple/protocols/jabber/chat.c Mon Nov 07 01:42:33 2022 -0600
+++ b/libpurple/protocols/jabber/chat.c Mon Nov 07 21:51:11 2022 -0600
@@ -39,25 +39,25 @@
PurpleProtocolChatEntry *pce;
pce = g_new0(PurpleProtocolChatEntry, 1);
- pce->label = _("_Room:");
+ pce->label = _("_Room");
pce->identifier = "room";
pce->required = TRUE;
m = g_list_append(m, pce);
pce = g_new0(PurpleProtocolChatEntry, 1);
- pce->label = _("_Server:");
+ pce->label = _("_Server");
pce->identifier = "server";
pce->required = TRUE;
m = g_list_append(m, pce);
pce = g_new0(PurpleProtocolChatEntry, 1);
- pce->label = _("_Handle:");
+ pce->label = _("_Handle");
pce->identifier = "handle";
pce->required = TRUE;
m = g_list_append(m, pce);
pce = g_new0(PurpleProtocolChatEntry, 1);
- pce->label = _("_Password:");
+ pce->label = _("_Password");
pce->identifier = "password";
pce->secret = TRUE;
m = g_list_append(m, pce);