diff options
| author | bulia byak <buliabyak@gmail.com> | 2007-01-18 17:14:59 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2007-01-18 17:14:59 +0000 |
| commit | 85806cc9f34adcf577baa6affd2721b4d4550a7b (patch) | |
| tree | 2b524b3a2c779009d836801d1fb60ccd13473c49 /src/sp-item.cpp | |
| parent | text markup (diff) | |
| download | inkscape-85806cc9f34adcf577baa6affd2721b4d4550a7b.tar.gz inkscape-85806cc9f34adcf577baa6affd2721b4d4550a7b.zip | |
text fixes
(bzr r2241)
Diffstat (limited to 'src/sp-item.cpp')
| -rw-r--r-- | src/sp-item.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp-item.cpp b/src/sp-item.cpp index e5e2bb085..cefa7f82a 100644 --- a/src/sp-item.cpp +++ b/src/sp-item.cpp @@ -863,12 +863,12 @@ sp_item_description(SPItem *item) if (((SPItemClass *) G_OBJECT_GET_CLASS(item))->description) { gchar *s = ((SPItemClass *) G_OBJECT_GET_CLASS(item))->description(item); if (s && item->clip_ref->getObject()) { - gchar *snew = g_strdup_printf ("%s; <i>clipped</i>", s); + gchar *snew = g_strdup_printf (_("%s; <i>clipped</i>"), s); g_free (s); s = snew; } if (s && item->mask_ref->getObject()) { - gchar *snew = g_strdup_printf ("%s; <i>masked</i>", s); + gchar *snew = g_strdup_printf (_("%s; <i>masked</i>"), s); g_free (s); s = snew; } |
