[GRASS-SVN] r33794 - grass/branches/develbranch_6/vector/v.out.ogr
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Oct 9 19:05:55 EDT 2008
Author: hamish
Date: 2008-10-09 19:05:55 -0400 (Thu, 09 Oct 2008)
New Revision: 33794
Modified:
grass/branches/develbranch_6/vector/v.out.ogr/main.c
Log:
improve wording
Modified: grass/branches/develbranch_6/vector/v.out.ogr/main.c
===================================================================
--- grass/branches/develbranch_6/vector/v.out.ogr/main.c 2008-10-09 19:12:42 UTC (rev 33793)
+++ grass/branches/develbranch_6/vector/v.out.ogr/main.c 2008-10-09 23:05:55 UTC (rev 33794)
@@ -426,7 +426,7 @@
type = Vect_read_line(&In, Points, Cats, i);
G_debug(2, "line = %d type = %d", i, type);
if (!(otype & type)) {
- G_debug(2, "type %d not specified -> skip", type);
+ G_debug(2, "type %d not specified -> skipping", type);
fskip++;
continue;
}
@@ -640,13 +640,15 @@
/* Summary */
G_message(_("%d features written"), fout);
if (nocat > 0)
- G_warning(_("%d features without category written"), nocat);
+ G_warning(_("%d features without category were written"), nocat);
if (noatt > 0)
- G_warning(_("%d features without attributes written"), noatt);
+ G_warning(_("%d features without attributes were written"), noatt);
if (nocatskip > 0)
- G_warning(_("%d features found without category skip"), nocatskip);
+ G_warning(_("%d features found without category were skipped"),
+ nocatskip);
- /* Enable this? May be confusing that for area type are not reported all boundaries/centroids.
+ /* Enable this? May be confusing that for area type are not reported
+ * all boundaries/centroids.
* OTOH why should be reported? */
/*
if ( ((otype & GV_POINTS) || (otype & GV_LINES)) && fskip > 0 )
More information about the grass-commit
mailing list