2009-11-06 18:06:12 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2005-2007 Gerald Schmidt.
|
|
|
|
*
|
|
|
|
* This file is part of Xml Copy Editor.
|
|
|
|
*
|
|
|
|
* Xml Copy Editor is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* Xml Copy Editor is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Xml Copy Editor; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ENCODING_INFO _T("UTF-8, UTF-16, UTF-16LE, UTF-16BE, ISO-8859-1, US-ASCII")
|
|
|
|
#ifdef __WXMSW__
|
|
|
|
#define FILE_FILTER _("All files (*.*)|*.*|XML (*.xml)|*.xml|XHTML (*.html)|*.html|DTD (*.dtd)|*.dtd|XML Schema (*.xsd)|*.xsd|RELAX NG grammar (*.rng)|*.rng|XSL (*.xsl)|*.xsl")
|
|
|
|
#else
|
|
|
|
#define FILE_FILTER _("All files (*)|*|XML (*.xml)|*.xml|XHTML (*.html)|*.html|DTD (*.dtd)|*.dtd|XML Schema (*.xsd)|*.xsd|RELAX NG grammar (*.rng)|*.rng|XSL (*.xsl)|*.xsl")
|
|
|
|
#endif
|
2012-08-04 09:50:30 +02:00
|
|
|
#define ABOUT_COPYRIGHT _(_T("Copyright © 2005-2009 Gerald Schmidt <gnschmidt@users.sourceforge.net>"))
|
2012-03-16 19:00:48 +01:00
|
|
|
#define ABOUT_DESCRIPTION _("\nXML Copy Editor is free software released under the GNU\nGeneral Public License.\n\nMany thanks are due to ")
|
2012-08-04 09:50:30 +02:00
|
|
|
#define ABOUT_CONTRIBUTORS _T(\
|
|
|
|
"Tim van Niekerk, Matt Smigielski,\n"\
|
|
|
|
"David Scholl, Jan Merka, Marcus Bingenheimer, Roberto\n"\
|
|
|
|
"Rosselli Del Turco, Ken Zalewski, C.J. Meidlinger,\n"\
|
|
|
|
"Thomas Zajic, Viliam Búr, David Håsäther, François\n"\
|
|
|
|
"Badier, Thomas Wenzel, Roger Sperberg, SHiNE CsyFeK,\n"\
|
|
|
|
"HSU PICHAN, YANG SHUFUN, CHENG PAULIAN,\n"\
|
|
|
|
"CHUANG KUO-PING, Justin Dearing, Serhij Dubyk,\n"\
|
|
|
|
"Antonio Angelo, Jose Luis Rivero, Siarhei Kuchuk,\n"\
|
|
|
|
"Ian Abbott, Kev James, Marcos Pérez González, Anh Trinh,\n"\
|
|
|
|
"Rob Elemans, Robert Falcó Miramontes and Zane Ji.")
|
2009-11-06 18:06:12 +01:00
|
|
|
#define ABOUT_LICENSE _T(\
|
|
|
|
"This program is free software; you can redistribute it\n"\
|
|
|
|
"and/or modify it under the terms of the GNU General Public\n"\
|
|
|
|
"License as published by the Free Software Foundation;\n"\
|
|
|
|
"either version 2 of the License, or (at your option) any\n"\
|
|
|
|
"later version.\n\n"\
|
|
|
|
"This program is distributed in the hope that it will be\n"\
|
|
|
|
"useful, but WITHOUT ANY WARRANTY; without even the implied\n"\
|
|
|
|
"warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n"\
|
|
|
|
"PURPOSE. See the GNU General Public License for more\n"\
|
|
|
|
"details.\n\n"\
|
|
|
|
"You should have received a copy of the GNU General Public\n"\
|
|
|
|
"License along with this program; if not, write to the Free\n"\
|
|
|
|
"Software Foundation, Inc., 59 Temple Place, Suite 330,\n"\
|
|
|
|
"Boston, MA 02111-1307 USA.")
|
2009-12-07 02:38:20 +01:00
|
|
|
#define ABOUT_VERSION _T("1.2.0.7")
|
2009-11-06 18:06:12 +01:00
|
|
|
#define XMLCE_VAR _T("XMLCE_VAR")
|
|
|
|
|
|
|
|
#ifdef __WXMSW__
|
|
|
|
#define IMAGEMAGICK_CONVERT_PATH _T("\"C:\\Program Files\\ImageMagick-6.5.7-Q16\\convert.exe\"")
|
|
|
|
#define IMAGEMAGICK_INSTALL_URL _T("http://www.imagemagick.org/download/binaries/ImageMagick-6.5.7-4-Q16-windows-dll.exe")
|
|
|
|
#define GHOSTSCRIPT_INSTALL_URL _T("https://sourceforge.net/projects/ghostscript/files/GPL%20Ghostscript/8.70/gs870w32.exe/download")
|
|
|
|
#else
|
|
|
|
#define IMAGEMAGICK_CONVERT_PATH _T("/usr/bin/convert")
|
|
|
|
#define IMAGEMAGICK_INSTALL_URL _T("ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz")
|
|
|
|
#define GHOSTSCRIPT_INSTALL_URL _T("http://ghostscript.com/releases/ghostscript-8.64.tar.gz")
|
|
|
|
#endif
|