author | Krzysztof Kosiński <tweenk.pl@gmail.com> | |
Thu, 25 Nov 2010 20:14:15 +0000 (21:14 +0100) | ||
committer | Krzysztof Kosiński <tweenk.pl@gmail.com> | |
Thu, 25 Nov 2010 20:14:15 +0000 (21:14 +0100) |
1 | 2 | |||
---|---|---|---|---|
src/ui/tool/node-tool.cpp | patch | | diff1 | | diff2 | | blob | history |
diff --cc src/ui/tool/node-tool.cpp
index 9809ee848e28162e35a63958508c538b55c08287,9809ee848e28162e35a63958508c538b55c08287..e046fb57338b67f5ce9a28878c9ebbe91379113b
// TRANSLATORS: The %s below is where the "%u of %u nodes selected" sentence gets put
char *dyntip = g_strdup_printf(C_("Node tool tip",
"%s Drag to select nodes, click to edit only this object (more: Shift)"),
-- nodestring, sz, total);
++ nodestring);
nt->_node_message_context->set(Inkscape::NORMAL_MESSAGE, dyntip);
g_free(dyntip);
} else {
char *dyntip = g_strdup_printf(C_("Node tool tip",
"%s Drag to select nodes, click clear the selection"),
-- nodestring, sz, total);
++ nodestring);
nt->_node_message_context->set(Inkscape::NORMAL_MESSAGE, dyntip);
g_free(dyntip);
}