X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fselection-describer.cpp;h=1debd73e15e95206674d275db6b5b5fbfcf2940b;hb=1cb64c3a763a8a064cfff29309c9ad16f96a0aa5;hp=6395f2ebcf8906fba15d1e6f0057f063cf2422db;hpb=0e89be32c99c4305468138078cb1e7649155630b;p=inkscape.git diff --git a/src/selection-describer.cpp b/src/selection-describer.cpp index 6395f2ebc..1debd73e1 100644 --- a/src/selection-describer.cpp +++ b/src/selection-describer.cpp @@ -24,6 +24,7 @@ #include "sp-flowtext.h" #include "sp-use.h" #include "sp-rect.h" +#include "box3d.h" #include "sp-ellipse.h" #include "sp-star.h" #include "sp-anchor.h" @@ -59,10 +60,14 @@ type2term(GType type) { return _("Polyline"); } if (type == SP_TYPE_RECT) { return _("Rectangle"); } + if (type == SP_TYPE_BOX3D) + { return _("3D Box"); } if (type == SP_TYPE_TEXT) { return _("Text"); } + // TRANSLATORS: only translate "string" in "context|string". + // For more details, see http://developer.gnome.org/doc/API/2.0/glib/glib-I18N.html#Q-:CAPS if (type == SP_TYPE_USE) - { return _("Clone"); } + { return Q_("object|Clone"); } if (type == SP_TYPE_ARC) { return _("Ellipse"); } if (type == SP_TYPE_OFFSET)