[GRASS-SVN] r57147 - grass/branches/develbranch_6/vector/v.split

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Jul 15 06:35:37 PDT 2013


Author: neteler
Date: 2013-07-15 06:35:35 -0700 (Mon, 15 Jul 2013)
New Revision: 57147

Modified:
   grass/branches/develbranch_6/vector/v.split/main.c
Log:
v.split: gettext macros added

Modified: grass/branches/develbranch_6/vector/v.split/main.c
===================================================================
--- grass/branches/develbranch_6/vector/v.split/main.c	2013-07-15 13:33:06 UTC (rev 57146)
+++ grass/branches/develbranch_6/vector/v.split/main.c	2013-07-15 13:35:35 UTC (rev 57147)
@@ -40,7 +40,7 @@
 
     module = G_define_module();
     module->keywords = _("vector, geometry");
-    module->description = "Split lines to shorter segments.";
+    module->description = _("Split lines to shorter segments.");
 
     in_opt = G_define_standard_option(G_OPT_V_INPUT);
     out_opt = G_define_standard_option(G_OPT_V_OUTPUT);
@@ -51,14 +51,14 @@
     length_opt->type = TYPE_DOUBLE;
     length_opt->required = NO;
     length_opt->multiple = NO;
-    length_opt->description = "Maximum segment length";
+    length_opt->description = _("Maximum segment length");
 
     vertices_opt = G_define_option();
     vertices_opt->key = "vertices";
     vertices_opt->type = TYPE_INTEGER;
     vertices_opt->required = NO;
     vertices_opt->multiple = NO;
-    vertices_opt->description = "Maximum number of vertices in segment";
+    vertices_opt->description = _("Maximum number of vertices in segment");
 
     if (G_parser(argc, argv))
 	exit(EXIT_FAILURE);



More information about the grass-commit mailing list