2006-12-09 13:33:38 -08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2005-12-28 12:45:52 -08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
|
*
|
2009-01-17 14:28:01 -08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2005-12-28 12:45:52 -08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 14:28:01 -08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2005-12-28 12:45:52 -08:00
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program 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
|
2018-07-11 14:27:07 -07:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2005-12-28 12:45:52 -08:00
|
|
|
*/
|
|
|
|
|
|
2025-07-12 18:15:46 -07:00
|
|
|
#pragma once
|
2005-12-28 12:45:52 -08:00
|
|
|
|
|
|
|
|
|
2006-02-07 02:47:15 -08:00
|
|
|
#define GIMP_ACRONYM \
|
|
|
|
|
_("GIMP")
|
2005-12-28 12:45:52 -08:00
|
|
|
|
|
|
|
|
#define GIMP_NAME \
|
|
|
|
|
_("GNU Image Manipulation Program")
|
|
|
|
|
|
2010-09-28 05:23:41 -07:00
|
|
|
/* The year of the last commit (UTC) will be inserted into this string. */
|
2005-12-28 12:45:52 -08:00
|
|
|
#define GIMP_COPYRIGHT \
|
2010-09-28 05:23:41 -07:00
|
|
|
_("Copyright © 1995-%s\n" \
|
2005-12-28 12:45:52 -08:00
|
|
|
"Spencer Kimball, Peter Mattis and the GIMP Development Team")
|
|
|
|
|
|
2016-02-26 08:15:14 -08:00
|
|
|
/* TRANSLATORS: do not end the license URL with a dot, because it would
|
|
|
|
|
* be in the link. Because of technical limitations, make sure the URL
|
|
|
|
|
* ends with a space, a newline or is end of text.
|
|
|
|
|
* Cf. bug 762282.
|
|
|
|
|
*/
|
2005-12-28 12:45:52 -08:00
|
|
|
#define GIMP_LICENSE \
|
2009-01-17 14:28:01 -08:00
|
|
|
_("GIMP is free software: you can redistribute it and/or modify it " \
|
2006-02-07 02:47:15 -08:00
|
|
|
"under the terms of the GNU General Public License as published by " \
|
2009-01-17 14:28:01 -08:00
|
|
|
"the Free Software Foundation; either version 3 of the License, or " \
|
2006-02-07 02:47:15 -08:00
|
|
|
"(at your option) any later version." \
|
|
|
|
|
"\n\n" \
|
|
|
|
|
"GIMP 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." \
|
|
|
|
|
"\n\n" \
|
|
|
|
|
"You should have received a copy of the GNU General Public License " \
|
2018-07-11 14:27:07 -07:00
|
|
|
"along with GIMP. If not, see: https://www.gnu.org/licenses/")
|