staticconstchar*description=I18N_NOOP("A KDE console application for xsldbg, an XSLT debugger");
staticconstchar*version=VERSION;
staticconstKCmdLineOptionsoptions[]=
{
{"shell",I18N_NOOP("Start a shell"),0},
{"cd <path>",I18N_NOOP("Path to change into before loading files"),0},
{"param <name>:<value>",I18N_NOOP("Add a parameter named <name> and value <value> to XSL environment"),0},
{"lang <LANG>",I18N_NOOP("Use ISO 639 language code specified; for example en_US"),0},{"output file",I18N_NOOP("Save to a given file. See output command documentation"),0},
{"version",I18N_NOOP("Show the version of libxml and libxslt used"),0},
{"verbose",I18N_NOOP("Show logs of what is happening"),0},
{"timing",I18N_NOOP("Display the time used"),0},
{"repeat",I18N_NOOP("Run the transformation 20 times"),0},
#ifdef LIBXML_DEBUG_ENABLED
{"debug",I18N_NOOP("Dump the tree of the result instead"),0},
#endif
{"novalid",I18N_NOOP("Disable the DTD loading phase"),0},
{"noout",I18N_NOOP("Disable the output of the result"),0},
{"maxdepth val",I18N_NOOP("Increase the maximum depth"),0},
#ifdef LIBXML_HTML_ENABLED
{"html",I18N_NOOP("The input document is(are) an HTML file(s)"),0},
#endif
#ifdef LIBXML_DOCB_ENABLED
{"docbook",I18N_NOOP("The input document is SGML docbook"),0},
#endif
{"nonet",I18N_NOOP("Disable the fetching DTDs or entities over network"),0},
#ifdef LIBXML_CATALOG_ENABLED
{"catalogs",I18N_NOOP("Use the catalogs from $SGML_CATALOG_FILES"),0},
#endif
#ifdef LIBXML_XINCLUDE_ENABLED
{"noxinclude",I18N_NOOP("Disable XInclude processing on document input"),0},
TQStringxsldbgRunTimeInfo(i18n("Using libxml %1, libxslt %2 and libexslt %3\n").arg(xmlParserVersion).arg(xsltEngineVersion).arg(exsltLibraryVersion));
TQStringlibxmlCompileTimeInfo(i18n("xsldbg was compiled against libxml %1, libxslt %2 and libexslt %3\n").arg(LIBXML_VERSION).arg(LIBXSLT_VERSION).arg(LIBEXSLT_VERSION));
TQStringlibxsltCompileTimeInfo(i18n("libxslt %1 was compiled against libxml %2\n").arg(xsltLibxsltVersion).arg(xsltLibxmlVersion));
TQStringlibexsltCompileTimeInfo(i18n("libexslt %1 was compiled against libxml %2\n").arg(exsltLibexsltVersion).arg(exsltLibxmlVersion));
KAboutDataabout("xsldbg",I18N_NOOP("Xsldbg"),version,description,KAboutData::License_GPL,"(C) 2003 Keith Isdale",freeFormText,0,"k_isdale@tpg.com.au");