plug-ins/common/CML_explorer.c plug-ins/common/depthmerge.c

* plug-ins/common/CML_explorer.c
        * plug-ins/common/depthmerge.c
        * plug-ins/common/despeckle.c
        * plug-ins/common/destripe.c
        * plug-ins/common/edge.c
        * plug-ins/common/fractaltrace.c
        * plug-ins/common/gqbist.c: unmarked blurb and help.

-- yasuhiro
This commit is contained in:
SHIRASAKI Yasuhiro 2000-02-13 09:29:59 +00:00
parent 716144bcc5
commit 90c48abc1e
9 changed files with 199 additions and 286 deletions

View File

@ -1,5 +1,13 @@
2000-02-13 Shirasaki Yasuhiro <yasuhiro@gnome.gr.jp>
* plug-ins/common/CML_explorer.c
* plug-ins/common/depthmerge.c
* plug-ins/common/despeckle.c
* plug-ins/common/destripe.c
* plug-ins/common/edge.c
* plug-ins/common/fractaltrace.c
* plug-ins/common/gqbist.c: unmarked blurb and help.
* plug-ins/script-fu/script-fu-console.c: minor i18n fix.
Sat Feb 12 17:49:02 PST 2000 Manish Singh <yosh@gimp.org>

View File

@ -2,7 +2,7 @@
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* CML_explorer.c -- This is a plug-in for The GIMP 1.0
* Time-stamp: <1999-08-28 20:37:08 yasuhiro>
* Time-stamp: <2000-02-13 18:18:37 yasuhiro>
* Copyright (C) 1997 Shuji Narazaki <narazaki@InetQ.or.jp>
* Version: 1.0.11
* URL: http://www.inetq.or.jp/~narazaki/TheGIMP/
@ -458,11 +458,9 @@ query (void)
};
static gint nargs = sizeof (args) / sizeof (args[0]);
INIT_I18N();
gimp_install_procedure (PLUG_IN_NAME,
_("Make an image of Coupled-Map Lattice"),
_("Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula Automata on continuous (value) domain. In RUN_NONINTERACTIVE, the name of a prameter file is passed as the 4th arg. You can control CML_explorer via parameter file."),
"Make an image of Coupled-Map Lattice",
"Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula Automata on continuous (value) domain. In RUN_NONINTERACTIVE, the name of a prameter file is passed as the 4th arg. You can control CML_explorer via parameter file.",
/* Or do you want to call me with over 50 args? */
"Shuji Narazaki (narazaki@InetQ.or.jp); http://www.inetq.or.jp/~narazaki/TheGIMP/",
"Shuji Narazaki",

View File

@ -183,16 +183,14 @@ query (void)
};
static gint numArgs = sizeof (args) / sizeof (GParamDef);
INIT_I18N();
gimp_install_procedure (PLUG_IN_NAME,
_("Combine two images using corresponding "
"depth maps (z-buffers)"),
_("Taking as input two full-color, full-alpha "
"Combine two images using corresponding "
"depth maps (z-buffers)",
"Taking as input two full-color, full-alpha "
"images and two corresponding grayscale depth "
"maps, this plug-in combines the images based "
"on which is closer (has a lower depth map value) "
"at each point."),
"at each point.",
"Sean Cier",
"Sean Cier",
PLUG_IN_VERSION,

View File

@ -171,11 +171,9 @@ query (void)
static int nargs = sizeof(args) / sizeof(args[0]),
nreturn_vals = 0;
INIT_I18N();
gimp_install_procedure (PLUG_IN_NAME,
_("Despeckle filter, typically used to \'despeckle\' a photographic image."),
_("This plug-in selectively performs a median or adaptive box filter on an image."),
"Despeckle filter, typically used to \'despeckle\' a photographic image.",
"This plug-in selectively performs a median or adaptive box filter on an image.",
"Michael Sweet <mike@easysw.com>",
"Copyright 1997-1998 by Michael Sweet",
PLUG_IN_VERSION,

View File

@ -138,11 +138,9 @@ query (void)
static int nargs = sizeof(args) / sizeof(args[0]),
nreturn_vals = 0;
INIT_I18N();
gimp_install_procedure (PLUG_IN_NAME,
_("Destripe filter, used to remove vertical stripes caused by cheap scanners."),
_("This plug-in tries to remove vertical stripes from an image."),
"Destripe filter, used to remove vertical stripes caused by cheap scanners.",
"This plug-in tries to remove vertical stripes from an image.",
"Marc Lehmann <pcg@goof.com>", "Marc Lehmann <pcg@goof.com>",
PLUG_IN_VERSION,
N_("<Image>/Filters/Enhance/Destripe..."),

View File

@ -156,9 +156,8 @@ query ()
static gint nargs = sizeof (args) / sizeof (args[0]);
static gint nreturn_vals = 0;
gchar *help_string =
_(" Perform edge detection on the contents of the specified drawable. It applies, I think, convolution with 3x3 kernel. AMOUNT is an arbitrary constant, WRAPMODE is like displace plug-in (useful for tilable image).");
" Perform edge detection on the contents of the specified drawable. It applies, I think, convolution with 3x3 kernel. AMOUNT is an arbitrary constant, WRAPMODE is like displace plug-in (useful for tilable image).";
INIT_I18N();
gimp_install_procedure ("plug_in_edge",
"Perform edge detection on the contents of the specified drawable",
help_string,

View File

@ -117,11 +117,9 @@ query (void)
};
static gint nargs = sizeof(args) / sizeof(args[0]);
INIT_I18N();
gimp_install_procedure (PLUG_IN_NAME,
_("transform image with the Mandelbrot Fractal"),
_("transform image with the Mandelbrot Fractal"),
"transform image with the Mandelbrot Fractal",
"transform image with the Mandelbrot Fractal",
"Hirotsuna Mizuno <s1041150@u-aizu.ac.jp>",
"Copyright (C) 1997 Hirotsuna Mizuno",
PLUG_IN_VERSION,

View File

@ -328,11 +328,9 @@ query (void)
};
gint nargs = sizeof (args) / sizeof (args[0]);
INIT_I18N();
gimp_install_procedure (PLUG_IN_NAME,
_("Create images based on a random genetic formula"),
_("This Plug-in is based on an article by Jörn Loviscach (appeared in c't 10/95, page 326). It generates modern art pictures from a random genetic formula."),
"Create images based on a random genetic formula",
"This Plug-in is based on an article by Jörn Loviscach (appeared in c't 10/95, page 326). It generates modern art pictures from a random genetic formula.",
"Jörn Loviscach, Jens Ch. Restemeier",
"Jörn Loviscach, Jens Ch. Restemeier",
PLUG_IN_VERSION,

File diff suppressed because it is too large Load Diff