summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/latex-pstricks-out.cpp
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2006-01-30 05:12:51 +0000
committergouldtj <gouldtj@users.sourceforge.net>2006-01-30 05:12:51 +0000
commitd797170d50c65d8791198c709359b58af8d974fd (patch)
treeaf8ef32d16e6fe13e42cfb71a062af7fee4f0084 /src/extension/internal/latex-pstricks-out.cpp
parentr10819@tres: ted | 2006-01-29 16:08:29 -0800 (diff)
downloadinkscape-d797170d50c65d8791198c709359b58af8d974fd.tar.gz
inkscape-d797170d50c65d8791198c709359b58af8d974fd.zip
r10820@tres: ted | 2006-01-29 16:56:50 -0800
Making it so all the important strings in the INX files are translateable. Also added in a 'clear-n_.h' to change the N_() macro from an inline function to a pure macro. Lastly, added in submenus for the effects. (bzr r55)
Diffstat (limited to 'src/extension/internal/latex-pstricks-out.cpp')
-rw-r--r--src/extension/internal/latex-pstricks-out.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/extension/internal/latex-pstricks-out.cpp b/src/extension/internal/latex-pstricks-out.cpp
index d9db73fe6..eaab462c7 100644
--- a/src/extension/internal/latex-pstricks-out.cpp
+++ b/src/extension/internal/latex-pstricks-out.cpp
@@ -89,6 +89,8 @@ LatexOutput::save (Inkscape::Extension::Output *mod2, SPDocument *doc, const gch
return;
}
+#include "clear-n_.h"
+
/**
\brief A function allocate a copy of this function.
@@ -101,13 +103,13 @@ LatexOutput::init (void)
{
Inkscape::Extension::build_from_mem(
"<inkscape-extension>\n"
- "<name>LaTeX Output</name>\n"
+ "<name>" N_("LaTeX Output") "</name>\n"
"<id>org.inkscape.output.latex</id>\n"
"<output>\n"
"<extension>.tex</extension>\n"
"<mimetype>text/plain</mimetype>\n"
- "<filetypename>LaTeX With PSTricks macros (*.tex)</filetypename>\n"
- "<filetypetooltip>LaTeX PSTricks File</filetypetooltip>\n"
+ "<filetypename>" N_("LaTeX With PSTricks macros (*.tex)") "</filetypename>\n"
+ "<filetypetooltip>" N_("LaTeX PSTricks File") "</filetypetooltip>\n"
"</output>\n"
"</inkscape-extension>", new LatexOutput());