[GRASS-SVN] r34042 - grass/trunk/raster/r.out.gdal
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Oct 29 03:05:19 EDT 2008
Author: hamish
Date: 2008-10-29 03:05:19 -0400 (Wed, 29 Oct 2008)
New Revision: 34042
Modified:
grass/trunk/raster/r.out.gdal/main.c
Log:
option descriptions (merge from devbr6)
Modified: grass/trunk/raster/r.out.gdal/main.c
===================================================================
--- grass/trunk/raster/r.out.gdal/main.c 2008-10-29 07:03:39 UTC (rev 34041)
+++ grass/trunk/raster/r.out.gdal/main.c 2008-10-29 07:05:19 UTC (rev 34042)
@@ -179,16 +179,21 @@
createopt = G_define_option();
createopt->key = "createopt";
createopt->type = TYPE_STRING;
+ createopt->label =
+ _("Creation option(s) to pass to the output format driver");
createopt->description =
- _("Creation option(s) to pass to the output format driver");
+ _("In the form of \"NAME=VALUE\", separate multiple entries with a comma.");
createopt->multiple = YES;
createopt->required = NO;
metaopt = G_define_option();
metaopt->key = "metaopt";
metaopt->type = TYPE_STRING;
- metaopt->description = _("Metadata key passed on the output dataset "
- "if possible");
+ metaopt->label =
+ _("Metadata key(s) and value(s) to include");
+ metaopt->description =
+ _("In the form of \"META-TAG=VALUE\", separate multiple entries "
+ "with a comma. Not supported by all output format drivers.");
metaopt->multiple = YES;
metaopt->required = NO;
More information about the grass-commit
mailing list