From de173c1af94b44a8af5038dffe130bd87d9d824d Mon Sep 17 00:00:00 2001 From: Mickael Savinaud <mickael.savinaud@c-s.fr> Date: Thu, 25 Jun 2015 15:02:54 +0200 Subject: [PATCH] DOC: information is non-countable noun whith plural form (contribution from QGIS processing users) --- .../app/otbDSFuzzyModelEstimation.cxx | 2 +- .../AppImageUtils/app/otbReadImageInfo.cxx | 12 ++++++------ .../app/otbOpticalCalibration.cxx | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Modules/Applications/AppClassification/app/otbDSFuzzyModelEstimation.cxx b/Modules/Applications/AppClassification/app/otbDSFuzzyModelEstimation.cxx index e2920b37e7..2f8a942ea8 100644 --- a/Modules/Applications/AppClassification/app/otbDSFuzzyModelEstimation.cxx +++ b/Modules/Applications/AppClassification/app/otbDSFuzzyModelEstimation.cxx @@ -166,7 +166,7 @@ private: MandatoryOff("optobs"); AddParameter(ParameterType_OutputFilename,"out","Output filename"); - SetParameterDescription("out","Output model file name (xml file) contains the optimal model to perform informations fusion."); + SetParameterDescription("out","Output model file name (xml file) contains the optimal model to perform information fusion."); // Doc example parameter settings SetDocExampleParameterValue("psin", "cdbTvComputePolylineFeatureFromImage_LI_NOBUIL_gt.shp"); diff --git a/Modules/Applications/AppImageUtils/app/otbReadImageInfo.cxx b/Modules/Applications/AppImageUtils/app/otbReadImageInfo.cxx index 051171c6db..973103c4c5 100644 --- a/Modules/Applications/AppImageUtils/app/otbReadImageInfo.cxx +++ b/Modules/Applications/AppImageUtils/app/otbReadImageInfo.cxx @@ -65,7 +65,7 @@ private: SetParameterDescription("in", "Input image to analyse"); AddParameter(ParameterType_Empty, "keywordlist", "Display the OSSIM keywordlist"); - SetParameterDescription("keywordlist", "Output the OSSIM keyword list. It contains metadata information (sensor model, geometry ). Informations are stored in keyword list (pairs of key/value)"); + SetParameterDescription("keywordlist", "Output the OSSIM keyword list. It contains metadata information (sensor model, geometry ). Information is stored in keyword list (pairs of key/value)"); DisableParameter("keywordlist"); MandatoryOff("keywordlist"); @@ -206,8 +206,8 @@ private: SetParameterRole("keyword", Role_Output); EnableParameter("keyword"); - AddParameter(ParameterType_Group, "gcp", "Ground Control Points informations"); - SetParameterDescription("gcp","This group of parameters allows to access to the GCPs informations."); + AddParameter(ParameterType_Group, "gcp", "Ground Control Points information"); + SetParameterDescription("gcp","This group of parameters allows to access to the GCPs information."); SetParameterRole("gcp", Role_Output); AddParameter(ParameterType_Int, "gcp.count", "GCPs Number"); @@ -255,7 +255,7 @@ private: std::ostringstream ossOutput; FloatVectorImageType::Pointer inImage = GetParameterImage("in"); - ossOutput << std::endl << "Image general informations:" << std::endl; + ossOutput << std::endl << "Image general information:" << std::endl; // Read informations typedef otb::ImageMetadataInterfaceBase ImageMetadataInterfaceType; @@ -336,7 +336,7 @@ private: ossOutput << "\tEstimated ground spacing (in meters): [" << GetParameterFloat("estimatedgroundspacingx") << "," << GetParameterFloat("estimatedgroundspacingy") << "]" << std::endl; - ossOutput << std::endl << "Image acquisition informations:" << std::endl; + ossOutput << std::endl << "Image acquisition information:" << std::endl; SetParameterString("sensor", metadataInterface->GetSensorID()); ossOutput << "\tSensor : "; @@ -460,7 +460,7 @@ private: for(int gcpIdx = 0; gcpIdx < GetParameterInt("gcp.count"); ++ gcpIdx) { if (gcpIdx == 0) - ossOutput << "\tGCP individual informations:" << std::endl; + ossOutput << "\tGCP individual information:" << std::endl; gcp_ids.push_back(metadataInterface->GetGCPId(gcpIdx)); gcp_infos.push_back(metadataInterface->GetGCPInfo(gcpIdx)); diff --git a/Modules/Applications/AppOpticalCalibration/app/otbOpticalCalibration.cxx b/Modules/Applications/AppOpticalCalibration/app/otbOpticalCalibration.cxx index f445b797f9..aedb1da28e 100644 --- a/Modules/Applications/AppOpticalCalibration/app/otbOpticalCalibration.cxx +++ b/Modules/Applications/AppOpticalCalibration/app/otbOpticalCalibration.cxx @@ -322,7 +322,7 @@ private: AddParameter(ParameterType_InputFilename, "atmo.rsr", "Relative Spectral Response File"); std::ostringstream oss; oss << "Sensor relative spectral response file"<<std::endl; - oss << "By default the application gets these informations in the metadata"; + oss << "By default the application gets this information in the metadata"; SetParameterDescription("atmo.rsr", oss.str()); MandatoryOff("atmo.rsr"); -- GitLab