X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fextension%2Finternal%2Fsvgz.cpp;h=49d37f082e83d3db804685778465f2b8ca13d8e3;hb=a46ff97a45048ea8d1241a4d175da72691b9aed2;hp=d56ac31b29adf6ab808d1625e973525ad3f6da95;hpb=6b15695578f07a3f72c4c9475c1a261a3021472a;p=inkscape.git diff --git a/src/extension/internal/svgz.cpp b/src/extension/internal/svgz.cpp index d56ac31b2..49d37f082 100644 --- a/src/extension/internal/svgz.cpp +++ b/src/extension/internal/svgz.cpp @@ -22,6 +22,8 @@ namespace Inkscape { namespace Extension { namespace Internal { +#include "clear-n_.h" + /** \return None \brief What would an SVG editor be without loading/saving SVG @@ -42,14 +44,14 @@ Svgz::init(void) /* SVGZ in */ ext = Inkscape::Extension::build_from_mem( "\n" - "SVGZ Input\n" + "" N_("SVGZ Input") "\n" "" SP_MODULE_KEY_INPUT_SVGZ "\n" "" SP_MODULE_KEY_INPUT_SVG "\n" "\n" ".svgz\n" "image/x-svgz\n" - "Compressed Inkscape SVG (*.svgz)\n" - "SVG file format compressed with GZip\n" + "" N_("Compressed Inkscape SVG (*.svgz)") "\n" + "" N_("SVG file format compressed with GZip") "\n" "" SP_MODULE_KEY_OUTPUT_SVGZ_INKSCAPE "\n" "\n" "", new Svgz()); @@ -57,13 +59,13 @@ Svgz::init(void) /* SVGZ out Inkscape */ ext = Inkscape::Extension::build_from_mem( "\n" - "SVGZ Output\n" + "" N_("SVGZ Output") "\n" "" SP_MODULE_KEY_OUTPUT_SVGZ_INKSCAPE "\n" "\n" ".svgz\n" "image/x-svgz\n" - "Compressed Inkscape SVG (*.svgz)\n" - "Inkscape's native file format compressed with GZip\n" + "" N_("Compressed Inkscape SVG (*.svgz)") "\n" + "" N_("Inkscape's native file format compressed with GZip") "\n" "FALSE\n" "\n" "", new Svgz()); @@ -71,13 +73,13 @@ Svgz::init(void) /* SVGZ out */ ext = Inkscape::Extension::build_from_mem( "\n" - "SVGZ Output\n" + "" N_("SVGZ Output") "\n" "" SP_MODULE_KEY_OUTPUT_SVGZ "\n" "\n" ".svgz\n" "image/x-svgz\n" - "Compressed plain SVG (*.svgz)\n" - "Scalable Vector Graphics format compressed with GZip\n" + "" N_("Compressed plain SVG (*.svgz)") "\n" + "" N_("Scalable Vector Graphics format compressed with GZip") "\n" "\n" "\n", new Svgz());