diff options
| author | Alexandre Prokoudine <alexandre.prokoudine@gmail.com> | 2008-02-13 10:34:43 +0000 |
|---|---|---|
| committer | prokoudine <prokoudine@users.sourceforge.net> | 2008-02-13 10:34:43 +0000 |
| commit | e0d7ee24101a15f91610252a42788afb13dd4286 (patch) | |
| tree | c6ef8a2881ef973c54e4d3c9ce0dfe5e9d69b76f /src/flood-context.cpp | |
| parent | update (diff) | |
| download | inkscape-e0d7ee24101a15f91610252a42788afb13dd4286.tar.gz inkscape-e0d7ee24101a15f91610252a42788afb13dd4286.zip | |
i18n patch from Marcin
(bzr r4719)
Diffstat (limited to 'src/flood-context.cpp')
| -rw-r--r-- | src/flood-context.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flood-context.cpp b/src/flood-context.cpp index 7dc832843..9f0b041f3 100644 --- a/src/flood-context.cpp +++ b/src/flood-context.cpp @@ -458,11 +458,11 @@ static void do_trace(GdkPixbuf *px, SPDesktop *desktop, NR::Matrix transform, bo pathRepr->setPosition(-1); if (union_with_selection) { - desktop->messageStack()->flashF(Inkscape::WARNING_MESSAGE, _("Area filled, path with <b>%d</b> nodes created and unioned with selection."), sp_nodes_in_path(SP_PATH(reprobj))); + desktop->messageStack()->flashF(Inkscape::WARNING_MESSAGE, ngettext("Area filled, path with <b>%d</b> node created and unioned with selection.","Area filled, path with <b>%d</b> nodes created and unioned with selection.",sp_nodes_in_path(SP_PATH(reprobj))), sp_nodes_in_path(SP_PATH(reprobj))); selection->add(reprobj); sp_selected_path_union_skip_undo(); } else { - desktop->messageStack()->flashF(Inkscape::WARNING_MESSAGE, _("Area filled, path with <b>%d</b> nodes created."), sp_nodes_in_path(SP_PATH(reprobj))); + desktop->messageStack()->flashF(Inkscape::WARNING_MESSAGE, ngettext("Area filled, path with <b>%d</b> node created.","Area filled, path with <b>%d</b> nodes created.",sp_nodes_in_path(SP_PATH(reprobj))), sp_nodes_in_path(SP_PATH(reprobj))); selection->set(reprobj); } |
