瀏覽代碼

r.stream.*: Name of input/Name for output

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@60308 15284696-431f-4ddb-bdfa-cd5b030d7da7
Huidae Cho 11 年之前
父節點
當前提交
4faa774287

+ 2 - 2
raster/r.stream.channel/main.c

@@ -61,11 +61,11 @@ int main(int argc, char *argv[])
 
     in_stm_opt = G_define_standard_option(G_OPT_R_INPUT);
     in_stm_opt->key = "stream_rast";
-    in_stm_opt->description = _("Name for input raster map with stream network");
+    in_stm_opt->description = _("Name of input raster map with stream network");
 
     in_dir_opt = G_define_standard_option(G_OPT_R_INPUT);
     in_dir_opt->key = "direction";
-    in_dir_opt->description = _("Name for input raster map with flow direction");
+    in_dir_opt->description = _("Name of input raster map with flow direction");
 
     in_elev_opt = G_define_standard_option(G_OPT_R_ELEV);
 

+ 2 - 2
raster/r.stream.distance/main.c

@@ -57,12 +57,12 @@ int main(int argc, char *argv[])
 
     in_stm_opt = G_define_standard_option(G_OPT_R_INPUT);
     in_stm_opt->key = "stream_rast";
-    in_stm_opt->description = _("Name for input raster map with stream network "
+    in_stm_opt->description = _("Name of input raster map with stream network "
                                 "(in outlet mode is the name for outlet raster map)");
 
     in_dir_opt = G_define_standard_option(G_OPT_R_INPUT);
     in_dir_opt->key = "direction";
-    in_dir_opt->description = _("Name for input raster map with flow direction");
+    in_dir_opt->description = _("Name of input raster map with flow direction");
 
     in_elev_opt = G_define_standard_option(G_OPT_R_ELEV);
     in_elev_opt->required = NO;

+ 1 - 1
raster/r.stream.order/main.c

@@ -29,7 +29,7 @@ int main(int argc, char *argv[])
 {
 
     IO input[] = {
-        {"stream_rast", YES, _("Name for input raster map with stream network")},
+        {"stream_rast", YES, _("Name of input raster map with stream network")},
 	{"direction", YES, _("Name of input flow direction raster map")},
 	{"elevation", NO, _("Name of input elevation raster map")},
 	{"accumulation", NO, _("Name of input accumulation raster map")}

+ 2 - 2
raster/r.stream.segment/main.c

@@ -61,11 +61,11 @@ int main(int argc, char *argv[])
 
     in_stm_opt = G_define_standard_option(G_OPT_R_INPUT);
     in_stm_opt->key = "stream_rast";
-    in_stm_opt->description = _("Name for input raster map with stream network");
+    in_stm_opt->description = _("Name of input raster map with stream network");
 
     in_dir_opt = G_define_standard_option(G_OPT_R_INPUT);
     in_dir_opt->key = "direction";
-    in_dir_opt->description = _("Name for input raster map with flow direction");
+    in_dir_opt->description = _("Name of input raster map with flow direction");
 
     in_elev_opt = G_define_standard_option(G_OPT_R_ELEV);
 

+ 1 - 1
raster/r.stream.slope/main.c

@@ -77,7 +77,7 @@ int main(int argc, char *argv[])
 
     in_dir_opt = G_define_standard_option(G_OPT_R_INPUT);
     in_dir_opt->key = "direction";
-    in_dir_opt->description = _("Name for input raster map with flow direction");
+    in_dir_opt->description = _("Name of input raster map with flow direction");
 
     in_elev_opt = G_define_standard_option(G_OPT_R_INPUT);
 

+ 2 - 2
raster/r.stream.snap/main.c

@@ -55,12 +55,12 @@ int main(int argc, char *argv[])
     in_points_opt->description = _("Name of input vector points map");
 
     out_points_opt = G_define_standard_option(G_OPT_V_OUTPUT);
-    out_points_opt->description = _("Name of output vector points map");
+    out_points_opt->description = _("Name for output vector points map");
 
     in_stream_opt = G_define_standard_option(G_OPT_R_INPUT);
     in_stream_opt->key = "stream_rast";
     in_stream_opt->required = NO;
-    in_stream_opt->description = _("Name for input raster map with stream network");
+    in_stream_opt->description = _("Name of input raster map with stream network");
     in_stream_opt->guisection = _("Input maps");
 
     in_accum_opt = G_define_standard_option(G_OPT_R_INPUT);

+ 1 - 1
raster/r.stream.stats/main.c

@@ -57,7 +57,7 @@ int main(int argc, char *argv[])
 
     in_stm_opt = G_define_standard_option(G_OPT_R_INPUT);
     in_stm_opt->key = "stream_rast";
-    in_stm_opt->description = _("Name for input raster map with stream network");
+    in_stm_opt->description = _("Name of input raster map with stream network");
 
     in_dir_opt = G_define_standard_option(G_OPT_R_INPUT);
     in_dir_opt->key = "direction";