[GRASS-SVN] r57145 - grass/branches/releasebranch_6_4/vector/v.split
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Jul 15 06:31:56 PDT 2013
Author: neteler
Date: 2013-07-15 06:31:55 -0700 (Mon, 15 Jul 2013)
New Revision: 57145
Modified:
grass/branches/releasebranch_6_4/vector/v.split/main.c
Log:
v.split: gettext macros added
Modified: grass/branches/releasebranch_6_4/vector/v.split/main.c
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.split/main.c 2013-07-15 12:20:05 UTC (rev 57144)
+++ grass/branches/releasebranch_6_4/vector/v.split/main.c 2013-07-15 13:31:55 UTC (rev 57145)
@@ -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