[GRASS-SVN] r40248 - grass/branches/develbranch_6/vector/v.delaunay2
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Jan 5 08:22:07 EST 2010
Author: mmetz
Date: 2010-01-05 08:22:06 -0500 (Tue, 05 Jan 2010)
New Revision: 40248
Modified:
grass/branches/develbranch_6/vector/v.delaunay2/main.c
Log:
update messages
Modified: grass/branches/develbranch_6/vector/v.delaunay2/main.c
===================================================================
--- grass/branches/develbranch_6/vector/v.delaunay2/main.c 2010-01-05 13:20:17 UTC (rev 40247)
+++ grass/branches/develbranch_6/vector/v.delaunay2/main.c 2010-01-05 13:22:06 UTC (rev 40248)
@@ -117,11 +117,11 @@
remove_duplicates(&n);
- /* Triangulate. */
- G_verbose_message("Delaunay triangulation...");
+ /* triangulate. */
+ G_verbose_message(_("Delaunay triangulation..."));
divide(0, n - 1, &l_cw, &r_ccw);
- G_verbose_message("writing edges...");
+ G_verbose_message(_("writing edges..."));
output_edges(n, mode3d, Type, Out);
free_memory();
@@ -130,8 +130,8 @@
Vect_build_partial(&Out, GV_BUILD_AREAS);
nareas = Vect_get_num_areas(&Out);
G_debug(3, "nareas = %d", nareas);
- /* Assign centroid to each area */
- G_verbose_message("assign centroids...");
+ /* assign centroid to each area */
+ G_verbose_message(_("Calculate area centroids..."));
for (area = 1; area <= nareas; area++) {
double x, y, z, angle, slope;
int ret;
More information about the grass-commit
mailing list