[GRASS-SVN] r33795 - grass/trunk/vector/v.out.ogr
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Oct 9 19:12:06 EDT 2008
Author: hamish
Date: 2008-10-09 19:12:05 -0400 (Thu, 09 Oct 2008)
New Revision: 33795
Modified:
grass/trunk/vector/v.out.ogr/main.c
Log:
improve wording (merge from devbr6)
Modified: grass/trunk/vector/v.out.ogr/main.c
===================================================================
--- grass/trunk/vector/v.out.ogr/main.c 2008-10-09 23:05:55 UTC (rev 33794)
+++ grass/trunk/vector/v.out.ogr/main.c 2008-10-09 23:12:05 UTC (rev 33795)
@@ -421,7 +421,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;
}
@@ -635,13 +635,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