[GRASS-SVN] r44456 - grass-addons/postscript/ps.output

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Nov 28 07:53:53 EST 2010


Author: neteler
Date: 2010-11-28 04:53:53 -0800 (Sun, 28 Nov 2010)
New Revision: 44456

Modified:
   grass-addons/postscript/ps.output/main.c
Log:
clarify flags

Modified: grass-addons/postscript/ps.output/main.c
===================================================================
--- grass-addons/postscript/ps.output/main.c	2010-11-27 22:07:57 UTC (rev 44455)
+++ grass-addons/postscript/ps.output/main.c	2010-11-28 12:53:53 UTC (rev 44456)
@@ -58,11 +58,11 @@
 
     draft = G_define_flag();
     draft->key = 'd';
-    draft->description = _("draft: Create a 1x1cm grid on paper to easy place and drawing");
+    draft->description = _("draft: Draw a 1x1 cm grid on paper to help the placement of the elements of the map");
 
     eps = G_define_flag();
     eps->key = 'e';
-    eps->description = _("eps: Create a EPS file to easy include in ps.out (no stand-alone)");
+    eps->description = _("eps: Create output as EPS file for embedding into another ps.out map");
 
     ghost = G_define_flag();
     ghost->key = 'g';
@@ -70,7 +70,7 @@
 
     style = G_define_flag();
     style->key = 's';
-    style->description = _("special: Special number style: lower");
+    style->description = _("special: Draw the small digit in the coordinate numbers to lower instead upper position");
 
     if (G_parser(argc, argv))
 	exit(EXIT_FAILURE);



More information about the grass-commit mailing list