diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2010-08-22 19:33:18 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2010-08-22 19:33:18 +0000 |
| commit | ac40d1226ad4b0170dc3df567074c54ca20d9469 (patch) | |
| tree | bf7eb90f06fcd1c65c6c478ae7138812be652b3f /src/selection-describer.cpp | |
| parent | avoid division by zero (Bug 604131) (diff) | |
| download | inkscape-ac40d1226ad4b0170dc3df567074c54ca20d9469.tar.gz inkscape-ac40d1226ad4b0170dc3df567074c54ca20d9469.zip | |
i18n. Context cleanup (context|string replaced with C_).
(bzr r9722)
Diffstat (limited to 'src/selection-describer.cpp')
| -rw-r--r-- | src/selection-describer.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/selection-describer.cpp b/src/selection-describer.cpp index 9321ea0ef..b7dc94441 100644 --- a/src/selection-describer.cpp +++ b/src/selection-describer.cpp @@ -39,10 +39,8 @@ const gchar * type2term(GType type) { if (type == SP_TYPE_ANCHOR) - //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 - // "Link" means internet link (anchor) - { return Q_("web|Link"); } + //TRANSLATORS: "Link" means internet link (anchor) + { return C_("Web", "Link"); } if (type == SP_TYPE_CIRCLE) { return _("Circle"); } if (type == SP_TYPE_ELLIPSE) @@ -68,10 +66,8 @@ type2term(GType type) if (type == SP_TYPE_TEXT) { return _("Text"); } if (type == SP_TYPE_USE) - // 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 - // "Clone" is a noun, type of object - { return Q_("object|Clone"); } + // TRANSLATORS: "Clone" is a noun, type of object + { return C_("Object", "Clone"); } if (type == SP_TYPE_ARC) { return _("Ellipse"); } if (type == SP_TYPE_OFFSET) |
