Sfoglia il codice sorgente

r.sim.*: user message harmonization

git-svn-id: https://svn.osgeo.org/grass/grass/branches/releasebranch_7_0@62031 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 10 anni fa
parent
commit
af33087a48
2 ha cambiato i file con 6 aggiunte e 6 eliminazioni
  1. 3 3
      raster/simwe/r.sim.sediment/main.c
  2. 3 3
      raster/simwe/r.sim.water/main.c

+ 3 - 3
raster/simwe/r.sim.sediment/main.c

@@ -157,7 +157,7 @@ int main(int argc, char *argv[])
     parm.maninval->type = TYPE_DOUBLE;
     parm.maninval->answer = MANINVAL;
     parm.maninval->required = NO;
-    parm.maninval->description = _("Name of Manning's n value");
+    parm.maninval->description = _("Manning's n unique value");
     parm.maninval->guisection = _("Input");
 
     parm.outwalk = G_define_standard_option(G_OPT_V_OUTPUT);
@@ -171,14 +171,14 @@ int main(int argc, char *argv[])
     parm.observation->key = "observation";
     parm.observation->required = NO;
     parm.observation->description =
-	_("Name of the sampling locations vector points map");
+	_("Name of sampling locations vector points map");
     parm.observation->guisection = _("Input options");
 
     parm.logfile = G_define_standard_option(G_OPT_F_OUTPUT);
     parm.logfile->key = "logfile";
     parm.logfile->required = NO;
     parm.logfile->description =
-	_("Name of the sampling points output text file. For each observation vector point the time series of sediment transport is stored.");
+	_("Name for sampling points output text file. For each observation vector point the time series of sediment transport is stored.");
     parm.logfile->guisection = _("Output");
 
     parm.tc = G_define_standard_option(G_OPT_R_OUTPUT);

+ 3 - 3
raster/simwe/r.sim.water/main.c

@@ -158,7 +158,7 @@ int main(int argc, char *argv[])
     parm.manin = G_define_standard_option(G_OPT_R_INPUT);
     parm.manin->key = "man";
     parm.manin->required = NO;
-    parm.manin->description = _("Name of the Manning's n raster map");
+    parm.manin->description = _("Name of Manning's n raster map");
     parm.manin->guisection = _("Input");
 
     parm.maninval = G_define_option();
@@ -180,14 +180,14 @@ int main(int argc, char *argv[])
     parm.observation->key = "observation";
     parm.observation->required = NO;
     parm.observation->description =
-	_("Name of the sampling locations vector points map");
+	_("Name of sampling locations vector points map");
     parm.observation->guisection = _("Input options");
 
     parm.logfile = G_define_standard_option(G_OPT_F_OUTPUT);
     parm.logfile->key = "logfile";
     parm.logfile->required = NO;
     parm.logfile->description =
-	_("Name of the sampling points output text file. For each observation vector point the time series of water depth is stored.");
+	_("Name for sampling points output text file. For each observation vector point the time series of sediment transport is stored.");
     parm.logfile->guisection = _("Output");
 
     parm.depth = G_define_standard_option(G_OPT_R_OUTPUT);