summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0fd321e)
raw | patch | inline | side by side (parent: 0fd321e)
author | daleharvey <daleharvey@users.sourceforge.net> | |
Sun, 2 Jul 2006 20:45:39 +0000 (20:45 +0000) | ||
committer | daleharvey <daleharvey@users.sourceforge.net> | |
Sun, 2 Jul 2006 20:45:39 +0000 (20:45 +0000) |
src/jabber_whiteboard/message-queue.cpp | patch | blob | history | |
src/jabber_whiteboard/message-utilities.cpp | patch | blob | history |
index b2c5d28d464fe28b24b3abf5f5f3b5b47dccb7eb..b56c1453c57dee199cecc0a24ea3891f60f2d5bc 100644 (file)
// by this message's sender. If it does, drop the message and produce
// a warning.
if (msg->sequence() < _latest) {
- g_warning(_("Received late message (message sequence number is %u, but latest processed message had sequence number %u). Discarding message; session may be desynchronized."), msg->sequence(), this->_latest);
+ g_warning("Received late message (message sequence number is %u, but latest processed message had sequence number %u). Discarding message; session may be desynchronized.", msg->sequence(), this->_latest);
return;
}
diff --git a/src/jabber_whiteboard/message-utilities.cpp b/src/jabber_whiteboard/message-utilities.cpp
index 095c6bab3a1171d4aa044ec2609e2aad6ba01ba2..c259af735a67418477640f833034357769e6483c 100644 (file)
//g_log(NULL, G_LOG_LEVEL_DEBUG, "Processing special node; not generating key");
id = xmt->get(*node);
if (id.empty()) {
- g_warning(_("Node %p (name %s) is a special node, but it could not be found in the node tracker (possible unexpected duplicate?) Generating unique ID anyway."), node, node->name());
+ g_warning("Node %p (name %s) is a special node, but it could not be found in the node tracker (possible unexpected duplicate?) Generating unique ID anyway.", node, node->name());
id = xmt->generateKey();
newnodesbuf.put(id, node);
}