Salome HOME
refs #1833: progress dialog for Strickler coefficient interpolation.
authormzn <mzn@opencascade.com>
Tue, 23 Oct 2018 15:25:41 +0000 (18:25 +0300)
committermzn <mzn@opencascade.com>
Tue, 23 Oct 2018 15:25:41 +0000 (18:25 +0300)
src/HYDROData/HYDROData_CalculationCase.cxx [changed mode: 0644->0755]
src/HYDROData/HYDROData_LCM_FaceClassifier.cxx [changed mode: 0644->0755]
src/HYDROData/HYDROData_LandCoverMap.cxx [changed mode: 0644->0755]
src/HYDROData/HYDROData_Tool.cxx [changed mode: 0644->0755]
src/HYDROData/HYDROData_Tool.h [changed mode: 0644->0755]
src/HYDROGUI/CMakeLists.txt [changed mode: 0644->0755]
src/HYDROGUI/HYDROGUI_Module.cxx [changed mode: 0644->0755]
src/HYDROGUI/HYDROGUI_ProgressIndicator.cxx [new file with mode: 0644]
src/HYDROGUI/HYDROGUI_ProgressIndicator.h [new file with mode: 0644]
src/HYDROGUI/resources/HYDROGUI_msg_en.ts [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 1c5a4d2..894ec61
@@ -47,6 +47,9 @@
 #endif
 
 #include <QSet>
+#include <QFuture>
+#include <QtConcurrent/QtConcurrent>
+#include <QThread>
 
 #include <TopoDS.hxx>
 #include <TopoDS_Shell.hxx>
@@ -1096,7 +1099,21 @@ std::vector<double> HYDROData_CalculationCase::GetStricklerCoefficientForPoints(
   if( aLCM.IsNull() || aTable.IsNull() )
     return theCoeffs;
 
-  aLCM->ClassifyPoints(thePoints, aTable, theCoeffs, DefValue, UseMax );
+  Handle(Message_ProgressIndicator) aSIProgress = HYDROData_Tool::GetSIProgress();
+  if ( aSIProgress ) {
+    aSIProgress->Reset();
+  }
+
+  QFuture<void> aFuture = QtConcurrent::run([&]() {
+    aLCM->ClassifyPoints(thePoints, aTable, theCoeffs, DefValue, UseMax );
+  });
+
+  while( aFuture.isRunning() ) {
+    if ( aSIProgress ) {
+      aSIProgress->Show( Standard_True );
+      QThread::usleep(500);
+    }
+  }
 
   return theCoeffs;
 }
old mode 100644 (file)
new mode 100755 (executable)
index 9c4392c..812818a
@@ -19,6 +19,8 @@
 #include "HYDROData_LCM_FaceClassifier.h"
 
 #include <HYDROData_LandCoverMap.h>
+#include <HYDROData_Tool.h>
+
 #include <Bnd_Box2d.hxx> 
 #include <BRepTools.hxx>
 #include <BRepBndLib.hxx>
@@ -32,6 +34,8 @@
 #include <BRep_Tool.hxx>
 #include <Geom_Surface.hxx>
 #include <ElSLib.hxx>
+#include <Message_ProgressSentry.hxx>
+
 
 Standard_Boolean HYDROData_FaceClassifier_BndBoxTreeSelector::Accept (const Standard_Integer& theObj)
 {
@@ -111,13 +115,18 @@ void HYDROData_LCM_FaceClassifier::Classify( const std::vector<gp_XY>& thePoints
   aTreeFiller.Fill();
 
   size_t pntsize = thePoints.size();
-  theTypes.resize(pntsize);
-  if (theFaces)
+  theTypes.reserve(pntsize);
+  if (theFaces) {
     theFaces->resize(pntsize);
+  }
+
+  Message_ProgressSentry aPSentry (HYDROData_Tool::GetSIProgress(), "Classify", 0, pntsize - 1, 1);
 
   Standard_Integer aSel = 0;
-  for (size_t i = 0; i < pntsize; i++ )
+  for (size_t i = 0; i < pntsize && aPSentry.More(); i++, aPSentry.Next())
   {
+    std::set<QString> aSet;
     HYDROData_FaceClassifier_BndBoxTreeSelector aSelector(aMapF2Class2d);
     const gp_Pnt2d& pnt2d = thePoints[i]; 
     aSelector.SetCurrentPoint(pnt2d);
@@ -130,16 +139,17 @@ void HYDROData_LCM_FaceClassifier::Classify( const std::vector<gp_XY>& thePoints
       {
         const TopoDS_Face& f = it.Value();
         QString aST = aMapF2ST.FindFromKey(f);
-        theTypes[i].insert(aST);
+        aSet.insert(aST);
         if (theFaces)
           (*theFaces)[i].Add(f);
       }      
     }
+
+    theTypes.push_back(aSet);
   }
 
   for (size_t i = 0; i < fclass2dpointers.size(); i++)
     delete fclass2dpointers[i];
-
 }
 
 
old mode 100644 (file)
new mode 100755 (executable)
index 1200676..f80ad25
@@ -61,6 +61,7 @@
 #include <Geom_TrimmedCurve.hxx>
 #include <TopTools_DataMapOfShapeListOfShape.hxx>
 #include <NCollection_DoubleMap.hxx>
+#include <Message_ProgressSentry.hxx>
 #include <HYDROData_LCM_FaceClassifier.h>
 #include <QDir>
 
@@ -1305,15 +1306,23 @@ void HYDROData_LandCoverMap::ClassifyPoints( const std::vector<gp_XY>& thePoints
   const Handle(HYDROData_StricklerTable)& theTable, 
   std::vector<double>& theCoeffs, double DefValue, bool UseMax ) const
 {
+  Message_ProgressSentry aPSentryStages(HYDROData_Tool::GetSIProgress(), "ClassifyPoints", 0, 2, 1);
+
   std::vector<std::set <QString> > Types;
   HYDROData_LCM_FaceClassifier FC(this);
   FC.Classify(thePoints, Types, NULL);
-  theCoeffs.resize(thePoints.size());
-  for (size_t i = 0; i < Types.size(); i++)
+
+  aPSentryStages.Next();
+
+  theCoeffs.reserve(thePoints.size());
+
+  Message_ProgressSentry aPSentryCoeff(HYDROData_Tool::GetSIProgress(), "Assign coefficients", 0, Types.size() - 1, 1);
+
+  for (size_t i = 0; i < Types.size() && aPSentryCoeff.More(); i++, aPSentryCoeff.Next())
   {
     const std::set<QString>& SStr = Types[i];
     if (SStr.empty())
-      theCoeffs[i] = DefValue;
+      theCoeffs.push_back( DefValue );
     else
     {
       std::set<QString>::const_iterator it;
@@ -1325,7 +1334,9 @@ void HYDROData_LandCoverMap::ClassifyPoints( const std::vector<gp_XY>& thePoints
         Val = *(std::max_element( C1.begin(), C1.end() ) );
       else
         Val = *(std::min_element( C1.begin(), C1.end() ) );
-      theCoeffs[i] = Val;
+      theCoeffs.push_back( Val );
     }
   }
+
+  aPSentryStages.Next();
 }
old mode 100644 (file)
new mode 100755 (executable)
index cc142d0..043111d
@@ -640,6 +640,22 @@ TopoDS_Shape HYDROData_Tool::PolyXY2Face( const Handle(HYDROData_PolylineXY)& aP
   return TopoDS_Face();
 }
 
+void HYDROData_Tool::SetSIProgress(const Handle(Message_ProgressIndicator)& thePI)
+{
+  StricklerInterpolationProgress() = thePI;
+}
+  
+const Handle(Message_ProgressIndicator)& HYDROData_Tool::GetSIProgress()
+{
+  return StricklerInterpolationProgress();
+}
+
+Handle(Message_ProgressIndicator)& HYDROData_Tool::StricklerInterpolationProgress()
+{
+  static Handle(Message_ProgressIndicator) aPI = NULL;
+  return aPI;
+}
+
 std::ostream& operator<<( std::ostream& theStream, const QString& theText )
 {
   theStream << theText.toStdString();
old mode 100644 (file)
new mode 100755 (executable)
index 82e4936..2b0ebf0
@@ -25,6 +25,7 @@
 #include <QVector>
 #include <TopTools_SequenceOfShape.hxx>
 #include <NCollection_IndexedDataMap.hxx>
+#include <Message_ProgressIndicator.hxx>
 
 
 class HYDROData_PolylineXY;
@@ -143,7 +144,12 @@ public:
   static TopoDS_Shape RebuildCmp(const TopoDS_Shape& in);
 
   static TopoDS_Shape PolyXY2Face(const Handle(HYDROData_PolylineXY)& aPolyline);
-  
+
+  static void SetSIProgress(const Handle(Message_ProgressIndicator)& thePI);
+  static const Handle(Message_ProgressIndicator)& GetSIProgress();
+
+private:
+  static Handle(Message_ProgressIndicator)& StricklerInterpolationProgress();
 };
 
 inline bool ValuesEquals( const double& theFirst, const double& theSecond )
old mode 100644 (file)
new mode 100755 (executable)
index 683a4e8..9e27d77
@@ -159,6 +159,7 @@ set(PROJECT_HEADERS
     HYDROGUI_SetBoundaryTypePolygonDlg.h
     HYDROGUI_MeasurementToolOp.h
     HYDROGUI_MeasurementToolDlg.h
+    HYDROGUI_ProgressIndicator.h
 )
 
 QT_WRAP_MOC(PROJECT_HEADERS_MOC ${PROJECT_HEADERS})
@@ -320,6 +321,7 @@ set(PROJECT_SOURCES
     HYDROGUI_SetBoundaryTypePolygonDlg.cxx
     HYDROGUI_MeasurementToolOp.cxx
     HYDROGUI_MeasurementToolDlg.cxx
+    HYDROGUI_ProgressIndicator.cxx
 )
 
 add_definitions(
old mode 100644 (file)
new mode 100755 (executable)
index f9bdea5..7be3b68
@@ -42,6 +42,7 @@
 #include "HYDROGUI_ShowHideOp.h"
 #include "HYDROGUI_Overview.h"
 #include <HYDROGUI_ProfileDlg.h>
+#include <HYDROGUI_ProgressIndicator.h>
 #include <HYDROData_Tool.h>
 #include <HYDROData_Image.h>
 #include <HYDROData_Stream.h>
@@ -154,6 +155,8 @@ void HYDROGUI_Module::initialize( CAM_Application* theApp )
   myDisplayer = new HYDROGUI_Displayer( this );
   myOCCDisplayer = new HYDROGUI_OCCDisplayer( this );
   myVTKDisplayer = new HYDROGUI_VTKPrsDisplayer( this );
+
+  HYDROData_Tool::SetSIProgress( new HYDROGUI_ProgressIndicator( theApp->desktop(), tr( "STRICKLER_INTERPOLATION_TLT" ) ) );
 }
 
 bool HYDROGUI_Module::activateModule( SUIT_Study* theStudy )
diff --git a/src/HYDROGUI/HYDROGUI_ProgressIndicator.cxx b/src/HYDROGUI/HYDROGUI_ProgressIndicator.cxx
new file mode 100644 (file)
index 0000000..f143b73
--- /dev/null
@@ -0,0 +1,95 @@
+// Copyright (C) 2014-2015  EDF-R&D
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+#include "HYDROGUI_ProgressIndicator.h"
+
+#include <QProgressBar>
+#include <QVBoxLayout>
+#include <QApplication>
+
+IMPLEMENT_STANDARD_RTTIEXT(HYDROGUI_ProgressIndicator, Message_ProgressIndicator)
+
+HYDROGUI_ProgressIndicator::HYDROGUI_ProgressIndicator( QWidget* theParent, const QString& theName )
+: QtxDialog( theParent, true, false, QtxDialog::Cancel ), myUserBreak(false)
+{
+  setWindowTitle( theName );
+
+  QVBoxLayout* aLayout = new QVBoxLayout( mainFrame() );
+  aLayout->setMargin( 5 );
+  aLayout->setSpacing( 5 );
+
+  myBar = new QProgressBar( mainFrame() );
+
+  aLayout->addWidget( myBar );
+
+  setButtonText( Cancel, tr("CANCEL") );
+  setButtonPosition( Center, Cancel );
+  setMinimumWidth( 350 );
+}
+
+HYDROGUI_ProgressIndicator::~HYDROGUI_ProgressIndicator()
+{
+}
+
+Standard_Boolean HYDROGUI_ProgressIndicator::Show(const Standard_Boolean theForce)
+{
+  Standard_Real aPosition = GetPosition();
+  Standard_Boolean isUserBreak = UserBreak();
+
+  bool isFinished = aPosition >= 1 || ( isUserBreak && GetNbScopes() < 2 );
+  if ( isFinished  ) {
+    if ( result() != Accepted ) {
+      QDialog::accept();
+    }
+  } else if (!isVisible()) {
+    open();
+  } 
+
+  if ( theForce ) {
+    if ( !isUserBreak ) {
+      int aNbSteps = myBar->maximum() - myBar->minimum();
+      int aValue = int( aPosition * aNbSteps );
+      myBar->setValue(aValue);
+    }
+
+    QApplication::processEvents();
+  }
+
+  return true;
+}
+
+Standard_Boolean HYDROGUI_ProgressIndicator::UserBreak()
+{
+  return myUserBreak;
+}
+
+void HYDROGUI_ProgressIndicator::Reset()
+{
+  Message_ProgressIndicator::Reset();
+  setButtonText( Cancel, tr("CANCEL") );
+  setButtonEnabled( true, Cancel );
+  myUserBreak = false;
+}
+
+void HYDROGUI_ProgressIndicator::reject()
+{
+  myUserBreak = true;
+  setButtonText( Cancel, tr("CANCELLING") );
+  setButtonEnabled( false, Cancel );
+  QApplication::processEvents();
+}
\ No newline at end of file
diff --git a/src/HYDROGUI/HYDROGUI_ProgressIndicator.h b/src/HYDROGUI/HYDROGUI_ProgressIndicator.h
new file mode 100644 (file)
index 0000000..f936a85
--- /dev/null
@@ -0,0 +1,53 @@
+// Copyright (C) 2014-2015  EDF-R&D
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+#ifndef HYDROGUI_PROGRESSINDICATOR_H
+#define HYDROGUI_PROGRESSINDICATOR_H
+
+#include <QtxDialog.h>
+
+#include <Message_ProgressIndicator.hxx>
+
+class QProgressBar;
+
+class HYDROGUI_ProgressIndicator : public QtxDialog, public Message_ProgressIndicator
+{
+  Q_OBJECT
+
+public:
+  HYDROGUI_ProgressIndicator( QWidget* theParent, const QString& theName );
+  virtual ~HYDROGUI_ProgressIndicator();
+  
+  virtual Standard_Boolean Show (const Standard_Boolean theForce);
+
+  virtual Standard_Boolean UserBreak();
+
+  virtual void Reset();
+
+protected slots:
+  virtual void reject();
+
+private:
+  QProgressBar* myBar;
+  bool myUserBreak;
+
+public:
+  DEFINE_STANDARD_RTTIEXT (HYDROGUI_ProgressIndicator, Message_ProgressIndicator)
+};
+
+#endif
old mode 100644 (file)
new mode 100755 (executable)
index 0df5c6c..4c61b5f
-<!DOCTYPE TS> 
-<TS version="1.1" >
-  
-  <context>
-    <name>@default</name>
-    <message>
-      <source>RENAME_TO</source>
-      <translation>Rename to %1</translation>
-    </message>
-    <message>
-      <source>DEFAULT_IMAGE_NAME</source>
-      <translation>Image</translation>
-    </message>
-    <message>
-      <source>DEFAULT_POLYLINE_NAME</source>
-      <translation>Polyline</translation>
-    </message>
-    <message>
-      <source>DEFAULT_OBSTACLE_NAME</source>
-      <translation>Obstacle</translation>
-    </message>
-    <message>
-      <source>DEFAULT_POLYLINE_3D_NAME</source>
-      <translation>Polyline3D</translation>
-    </message>
-    <message>
-      <source>DEFAULT_PROFILE_NAME</source>
-      <translation>Profile</translation>
-    </message>
-    <message>
-      <source>DEFAULT_VISUAL_STATE_NAME</source>
-      <translation>Visual state</translation>
-    </message>
-    <message>
-      <source>DEFAULT_BATHYMETRY_NAME</source>
-      <translation>Bathymetry</translation>
-    </message>
-    <message>
-      <source>DEFAULT_CALCULATION_CASE_NAME</source>
-      <translation>Case</translation>
-    </message>
-    <message>
-      <source>DEFAULT_IMMERSIBLE_ZONE_NAME</source>
-      <translation>Immersible zone</translation>
-    </message>
-    <message>
-      <source>DEFAULT_STRICKLER_TABLE_NAME</source>
-      <translation>Strickler table</translation>
-    </message>
-    <message>
-      <source>DEFAULT_LAND_COVER_MAP_NAME</source>
-      <translation>Land cover map</translation>
-    </message>
-    <message>
-      <source>IMAGES</source>
-      <translation>IMAGES</translation>
-    </message>
-    <message>
-      <source>POLYLINES</source>
-      <translation>POLYLINES</translation>
-    </message>
-    <message>
-      <source>POLYLINES_3D</source>
-      <translation>POLYLINES 3D</translation>
-    </message>
-    <message>
-      <source>PROFILES</source>
-      <translation>PROFILES</translation>
-    </message>
-    <message>
-      <source>VISUAL_STATES</source>
-      <translation>VISUAL STATES</translation>
-    </message>
-    <message>
-      <source>BATHYMETRIES</source>
-      <translation>BATHYMETRIES</translation>
-    </message>
-    <message>
-      <source>CALCULATION_CASES</source>
-      <translation>CALCULATION CASES</translation>
-    </message>
-    <message>
-      <source>OBSTACLES</source>
-      <translation>OBSTACLES</translation>
-    </message>
-    <message>
-      <source>STRICKLER_TABLES</source>
-      <translation>STRICKLER TABLES</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_MAPS</source>
-      <translation>LAND COVER MAPS</translation>
-    </message>
-    <message>
-      <source>ARTIFICIAL_OBJECTS</source>
-      <translation>ARTIFICIAL OBJECTS</translation>
-    </message>
-    <message>
-      <source>NATURAL_OBJECTS</source>
-      <translation>NATURAL OBJECTS</translation>
-    </message>
-    <message>
-      <source>BOUNDARY_POLYGONS</source>
-      <translation>BOUNDARY POLYGONS</translation>
-    </message>
-    <message>
-      <source>BATHYMETRY_FILTER</source>
-      <translation>Bathymetry files (*.xyz);;ASC files (*.asc);;All files (*.* *)</translation>
-    </message>
-    <message>
-      <source>CASE_BOUNDARY</source>
-      <translation>Boundary</translation>
-    </message>
-    <message>
-      <source>CASE_BOUNDARY_POLYGONS</source>
-      <translation>Boundary Polygons</translation>
-    </message>
-    <message>
-      <source>CASE_REFERENCE_ZONES</source>
-      <translation>Reference zones</translation>
-    </message>
-    <message>
-      <source>CASE_REGIONS</source>
-      <translation>REGIONS</translation>
-    </message>
-    <message>
-      <source>CASE_LAND_COVER_MAP</source>
-      <translation>LAND COVER MAP</translation>
-    </message>
-    <message>
-      <source>CASE_SPLIT_GROUPS</source>
-      <translation>Split groups</translation>
-    </message>
-    <message>
-      <source>FILE_CAN_NOT_BE_IMPORTED</source>
-      <translation>The file '%1' can not be imported: format *.%2 is not supported.</translation>
-    </message>
-    <message>
-      <source>FILE_NOT_EXISTS_OR_CANT_BE_READ</source>
-      <translation>The file '%1'
-does not exist or you have not enough permissions to open it.</translation>
-    </message>
-    <message>
-      <source>IMAGE_FILTER_IMPORT</source>
-      <translation>Image files (*.bmp *.jpg *.jpeg *.png *.tif *.ecw);;All files (*.* *)</translation>
-    </message>
-    <message>
-      <source>IMAGE_FILTER_EXPORT</source>
-      <translation>Image files (*.bmp *.jpg *.jpeg *.png *.tif );;All files (*.* *)</translation>
-    </message>
-    <message>
-      <source>INCORRECT_OBJECT_NAME</source>
-      <translation>The object name must not be an empty string value.</translation>
-    </message>
-    <message>
-      <source>EMPTY_FILENAMES</source>
-      <translation>Files list is empty</translation>
-    </message>
-    <message>
-      <source>BATHYMETRY_IMPORT_WARNING</source>
-      <translation>Import of bahemetry - warning</translation>
-    </message>
-
-    <message>
-      <source>INSUFFICIENT_INPUT_DATA</source>
-      <translation>Insufficient input data</translation>
-    </message>
-    <message>
-      <source>INPUT_VALID_DATA</source>
-      <translation>Please enter valid data and try again.</translation>
-    </message>
-    <message>
-      <source>LOAD_ERROR</source>
-      <translation>Study could not be loaded</translation>
-    </message>
-    <message>
-      <source>SHAPE_IMAGE_ERROR</source>
-      <translation>Image shape could not be created</translation>
-    </message>
-    <message>
-      <source>IMAGE_CAN_NOT_BE_CREATED</source>
-      <translation>It is not possible to create a presentation for OCC 3D view. </translation>
-    </message>
-    <message>
-      <source>IMAGE_TRANSFORMATION_CAN_NOT_BE_APPLYED</source>
-      <translation>The transformated image is out of range.</translation>
-    </message>
-    <message>
-      <source>FILE_CAN_NOT_BE_CREATED</source>
-      <translation>The temporary file '%1' can not be created.</translation>
-    </message>
-    <message>
-      <source>OBJECT_EXISTS_IN_DOCUMENT</source>
-      <translation>Object with name '%1' already exists in the document.</translation>
-    </message>
-    <message>
-      <source>SAVE_ERROR</source>
-      <translation>Study could not be saved</translation>
-    </message>
-    <message>
-      <source>ZONE_POLYLINE</source>
-      <translation>Polyline</translation>
-    </message>
-    <message>
-      <source>ZONE_BATHYMETRY</source>
-      <translation>Bathymetry</translation>
-    </message>
-    <message>
-      <source>OBJECT_GROUPS</source>
-      <translation>Groups</translation>
-    </message>
-    <message>
-      <source>MERGE_UNKNOWN</source>
-      <translation>Unresolved Conflict</translation>
-    </message>
-    <message>
-      <source>MERGE_ZMIN</source>
-      <translation>ZMIN</translation>
-    </message>
-    <message>
-      <source>MERGE_ZMAX</source>
-      <translation>ZMAX</translation>
-    </message>
-    <message>
-      <source>NEW_REGION</source>
-      <translation>&lt;New region&gt;</translation>
-    </message>
-    <message>
-      <source>OBSTACLE_FILTER</source>
-      <translation>BREP files (*.brep);;IGES files (*.iges *.igs);;STEP files (*.step *.stp);;
-All supported formats (*.brep *.iges *.igs *.step *.stp)</translation>
-    </message>
-    <message>
-      <source>COORDINATES_INFO</source>
-      <translation>Local CS: (%1, %2); Global CS: (%3, %4)</translation>
-    </message>
-    <message>
-      <source>POLYLINE3D_POLYLINE</source>
-      <translation>Polyline</translation>
-    </message>
-    <message>
-      <source>POLYLINE3D_PROFILE</source>
-      <translation>Profile</translation>
-    </message>
-    <message>
-      <source>POLYLINE3D_BATHYMETRY</source>
-      <translation>Bathymetry</translation>
-    </message>
-    <message>
-      <source>CHANNEL_GUIDE_LINE</source>
-      <translation>Guide line</translation>
-    </message>
-    <message>
-      <source>CHANNEL_PROFILE</source>
-      <translation>Profile</translation>
-    </message>
-    <message>
-      <source>STREAM_HYDRAULIC_AXIS</source>
-      <translation>Hydraulic axis</translation>
-    </message>
-    <message>
-      <source>STREAM_PROFILES</source>
-      <translation>Profiles</translation>
-    </message>
-    <message>
-      <source>BC_POLYGON_POLYLINE</source>
-      <translation>Boundary Polyline</translation>
-    </message>
-    <message>
-      <source>STREAM_WARNINGS</source>
-      <translation>Stream Warnings</translation>
-    </message>
-     <message>
-      <source>STREAM_PROJECTION_FAILED</source>
-      <translation>Warning: Projection of banks/profiles are failed</translation>
-    </message>
-    <message>
-      <source>PREF_TAB_GENERAL</source>
-      <translation>General</translation>
-    </message>
-    <message>
-      <source>PREF_GROUP_CURSOR</source>
-      <translation>Cursor for edition operations</translation>
-    </message>
-    <message>
-      <source>PREF_TYPE_OF_CURSOR</source>
-      <translation>Type</translation>
-    </message>
-    <message>
-      <source>PREF_GROUP_VIEWER</source>
-      <translation>Viewer</translation>
-    </message>
-    <message>
-      <source>PREF_VIEWER_AUTO_FITALL</source>
-      <translation>Make automatic fit all after show object operation</translation>
-    </message>
-    <message>
-      <source>PREF_VIEWER_ZOOM_SHUTOFF</source>
-      <translation>Conservation of zoom when top-view/etc is activated</translation>
-    </message>
-    <message>
-      <source>PREF_VIEWER_CHAINED_PANNING</source>
-      <translation>Chained panning</translation>
-    </message>
-    <message>
-      <source>PREF_GROUP_STRICKLER_TABLE</source>
-      <translation>Strickler table</translation>
-    </message>
-    <message>
-      <source>PREF_DEFAULT_STRICKLER_COEFFICIENT</source>
-      <translation>Default Strickler coefficient</translation>
-    </message>
-    <message>
-      <source>STRICKLER_TABLE_FILTER</source>
-      <translation>Strickler table files (*.txt);;All files (*.* *)</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_POLYLINES</source>
-      <translation>Polylines</translation>
-    </message>
-    <message>
-      <source>OVERVIEW</source>
-      <translation>Overview</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_CalculationDlg</name>
-    <message>
-      <source>CALCULATION_NAME</source>
-      <translation>Calculation case name</translation>
-    </message>
-    <message>
-      <source>CALCULATION_REFERENCE_OBJECTS</source>
-      <translation>Objects</translation>
-    </message>
-    <message>
-      <source>INCLUDED_OBJECTS</source>
-      <translation>Included objects</translation>
-    </message>
-    <message>
-      <source>AVAILABLE_GROUPS</source>
-      <translation>Available groups</translation>
-    </message>
-    <message>
-      <source>INCLUDED_GROUPS</source>
-      <translation>Included groups</translation>
-    </message>
-    <message>
-      <source>INCLUDED_BOUNDARY_POLYGONS_CUT</source>
-      <translation>Included boundary polygons (cut tools)</translation>
-    </message>
-    <message>
-      <source>INCLUDED_BOUNDARY_POLYGONS_INCSEL</source>
-      <translation>Included boundary polygons (include/selection tools)</translation>
-    </message>
-    <message>
-      <source>AVAILABLE_BOUNDARY_POLYGONS</source>
-      <translation>Available boundary polygons</translation>
-    </message>
-    <message>
-      <source>LIMITS</source>
-      <translation>Limits</translation>
-    </message>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>BATHYMETRY</source>
-      <translation>Bathymetry</translation>
-    </message>
-    <message>
-      <source>INCLUDE</source>
-      <translation>Include &gt;&gt;</translation>
-    </message>
-    <message>
-      <source>EXCLUDE</source>
-      <translation>Exclude &lt;&lt;</translation>
-    </message>
-    <message>
-      <source>ADD</source>
-      <translation>Add</translation>
-    </message>
-    <message>
-      <source>REMOVE</source>
-      <translation>Remove</translation>
-    </message>
-    <message>
-      <source>EMPTY_GEOMETRY_OBJECTS</source>
-      <translation>No one geometry object is selected, should be at least one.</translation>
-    </message>
-    <message>
-      <source>MODE</source>
-      <translation>Mode</translation>
-    </message>
-    <message>
-      <source>AUTO</source>
-      <translation>Auto</translation>
-    </message>
-    <message>
-      <source>MANUAL</source>
-      <translation>Manual</translation>
-    </message>
-    <message>
-      <source>PRIORITY</source>
-      <translation>Priority</translation>
-    </message>
-    <message>
-      <source>STRICKLER_TABLE</source>
-      <translation>Strickler table</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_MAP</source>
-      <translation>Land cover map</translation>
-    </message>
-    <message>
-      <source>STRICKLER_TYPE</source>
-      <translation>Strickler type from land cover</translation>
-    </message>
-    <message>
-      <source>RESULTS_ON_GEOMETRY_OBJECTS</source>
-      <translation>Results on geometry objects</translation>
-    </message>
-    <message>
-      <source>REGENERATE_COLORS</source>
-      <translation>Regenerate colors</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_CalculationOp</name>
-    <message>
-      <source>CREATE_CALCULATION</source>
-      <translation>Create calculation case</translation>
-    </message>
-    <message>
-      <source>EDIT_CALCULATION</source>
-      <translation>Edit calculation case</translation>
-    </message>
-    <message>
-      <source>PREVIEW_CASE_ZONES</source>
-      <translation>Preview case zones</translation>
-    </message>
-    <message>
-      <source>REGIONS_CHANGED</source>
-      <translation>Regions list modification</translation>
-    </message>
-    <message>
-      <source>ORDER_CHANGED</source>
-      <translation>Order of objects is changed</translation>
-    </message>
-    <message>
-      <source>RULE_CHANGED</source>
-      <translation>Priority rule for objects is changed</translation>
-    </message>
-    <message>
-      <source>CONFIRM_SPLITTING_ZONES_RECALCULATION_REGIONS</source>
-      <translation>Case splitting zones already exist and will be recalculated after regions list modification. Do you confirm the recalculation?</translation>
-    </message>
-    <message>
-      <source>MODE_CHANGED</source>
-      <translation>Change creation mode</translation>
-    </message>
-    <message>
-      <source>CONFIRM_SPLITTING_ZONES_RECALCULATION_MODE</source>
-      <translation>Case splitting zones already exist and will be recalculated after mode change. Do you confirm the recalculation?</translation>
-    </message>
-    <message>
-      <source>EMPTY_REGIONS</source>
-      <translation>Empty regions</translation>
-    </message>
-    <message>
-      <source>CONFIRM_CONTINUE_WITH_OBJECTS_NOT_INCLUDED_TO_REGION</source>
-      <translation>Region(s): %1 do not contain any objects. Do you want to continue?</translation>
-    </message>
-    <message>
-      <source>CONFIRM_LAND_COVER_PARTITION_RECALCULATION_REGIONS</source>
-      <translation>Case land covers partition already exists and will be recalculated after regions list modification. Do you confirm the recalculation?</translation>
-    </message>
-    <message>
-      <source>CONFIRM_LAND_COVER_PARTITION_RECALCULATION_MODE</source>
-      <translation>Case land covers partition already exists and will be recalculated after mode change. Do you confirm the recalculation?</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_DataBrowser</name>
-    <message>
-      <source>REF_OBJECT_COLUMN</source>
-      <translation>Ref.Object</translation>
-    </message>
-    <message>
-      <source>ALTITUDE_COLUMN</source>
-      <translation>Altitude.Object</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_COLUMN</source>
-      <translation>Land cover</translation>
-    </message>
-    <message>
-      <source>ZONE_TO_NEW_REGION</source>
-      <translation>Create a new region</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_CopyPasteOp</name>
-    <message>
-      <source>COPY_PASTE</source>
-      <translation>Copy/paste</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_DuplicateOp</name>
-    <message>
-      <source>DUPLICATE</source>
-      <translation>Duplicate</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_CopyPastePositionOp</name>
-    <message>
-      <source>COPY_PASTE_VIEW_POSITION</source>
-      <translation>Copy/paste view position</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_DeleteOp</name>
-    <message>
-      <source>DELETE</source>
-      <translation>Delete</translation>
-    </message>
-    <message>
-      <source>DELETE_OBJECTS</source>
-      <translation>Delete objects</translation>
-    </message>
-    <message>
-      <source>DELETE_OBJECTS_IMPOSIBLE</source>
-      <translation>One or more selected objects can not be deleted separately from parent object.</translation>
-    </message>
-    <message>
-      <source>DELETED_OBJECTS_HAS_BACKREFERENCES</source>
-      <translation>One or more selected objects are used to create another ones.
-First remove objects which are created on their basis.
-
-%1</translation>
-    </message>
-    <message>
-      <source>DELETE_OBJECT_NAME</source>
-      <translation>"%1"</translation>
-    </message>
-    <message>
-      <source>DELETE_OBJECT_IS_USED_FOR</source>
-      <translation>Object "%1" is used for %2</translation>
-    </message>
-    <message>
-      <source>DELETE_LAST_TABLE_WRN</source>
-      <translation>You are about to delete all Strickler tables in the study.
-After that the study will contain only the default Strickler table.
-Do you want to continue?</translation>
-    </message>
-    <message>
-      <source>WARNING</source>
-      <translation>Warning</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_DeleteDlg</name>
-    <message>
-      <source>DELETE_OBJECTS</source>
-      <translation>Delete objects</translation>
-    </message>
-    <message>
-      <source>CONFIRM_DELETION</source>
-      <translation>Do you really want to delete %1 object(s)?</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ExportImageOp</name>
-    <message>
-      <source>EXPORT_IMAGE</source>
-      <translation>Export image</translation>
-    </message>
-    <message>
-      <source>EXPORT_IMAGE_TO_FILE</source>
-      <translation>Export image to file</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_InputPanel</name>
-    <message>
-      <source>APPLY_AND_CLOSE</source>
-      <translation>Apply and Close</translation>
-    </message>
-    <message>
-      <source>APPLY</source>
-      <translation>Apply</translation>
-    </message>
-    <message>
-      <source>CANCEL</source>
-      <translation>Cancel</translation>
-    </message>
-    <message>
-      <source>CLOSE</source>
-      <translation>Close</translation>
-    </message>
-    <message>
-      <source>HELP</source>
-      <translation>Help</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_Wizard</name>
-    <message>
-      <source>NEXT</source>
-      <translation>Next &gt;</translation>
-    </message>
-    <message>
-      <source>BACK</source>
-      <translation>&lt; Back</translation>
-    </message>
-    <message>
-      <source>FINISH</source>
-      <translation>Finish</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_ImportBathymetryDlg</name>
-    <message>
-      <source>BATHYMETRY_NAME</source>
-      <translation>Bathymetry name</translation>
-    </message>
-    <message>
-      <source>FILE_NAMES</source>
-      <translation>File names</translation>
-    </message>
-    <message>
-      <source>IMPORT_BATHYMETRY_FROM_FILE</source>
-      <translation>Import bathymetry from file</translation>
-    </message>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>INVERT_BATHYMETRY_ALTITUDES</source>
-      <translation>Invert altitude values</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_ImportBathymetryOp</name>
-    <message>
-      <source>EDIT_IMPORTED_BATHYMETRY</source>
-      <translation>Edit imported bathymetry</translation>
-    </message>
-    <message>
-      <source>IMPORT_BATHYMETRY</source>
-      <translation>Import bathymetry</translation>
-    </message>
-    <message>
-      <source>BAD_IMPORTED_BATHYMETRY_FILE</source>
-      <translation>'%1'
-file cannot be correctly imported for a Bathymetry definition.</translation>
-    </message>
-  <message>
-      <source>BAD_IMPORTED_BATHYMETRY_FILES</source>
-      <translation>'%1'
-All files cannot be correctly imported for a Bathymetry definition.</translation>
-    </message>
-    
-</context>
-  
-  <context>
-    <name>HYDROGUI_ImportImageDlg</name>
-    <message>
-      <source>ACTIVATE_POINT_A_SELECTION</source>
-      <translation>Activate point A selection</translation>
-    </message>
-    <message>
-      <source>ACTIVATE_POINT_B_SELECTION</source>
-      <translation>Activate point B selection</translation>
-    </message>
-    <message>
-      <source>ACTIVATE_POINT_C_SELECTION</source>
-      <translation>Activate point C selection</translation>
-    </message>
-    <message>
-      <source>BY_REFERENCE_IMAGE</source>
-      <translation>Choose points on the reference image</translation>
-    </message>
-    <message>
-      <source>FILE_NAME</source>
-      <translation>File name</translation>
-    </message>
-    <message>
-      <source>IMAGE_NAME</source>
-      <translation>Image name</translation>
-    </message>
-    <message>
-      <source>IMPORT_IMAGE_FROM_FILE</source>
-      <translation>Import image from file</translation>
-    </message>
-    <message>
-      <source>MANUALLY_GEODESIC</source>
-      <translation>Manually input Geographic coordinates</translation>
-    </message>
-    <message>
-      <source>MANUALLY_LAMBERT93</source>
-      <translation>Manually input Plane coordinates (Lambert93)</translation>
-    </message>
-    <message>
-      <source>LAMBERT93_FROM_FILE</source>
-      <translation>Get Plane coordinates (Lambert93) from file</translation>
-    </message>
-    <message>
-      <source>IMAGE_CS</source>
-      <translation>Image CS</translation>
-    </message>
-    <message>
-      <source>GEODESIC</source>
-      <translation>Geographic coordinates</translation>
-    </message>
-    <message>
-      <source>LAMBERT93</source>
-      <translation>Plane coordinates (Lambert93)</translation>
-    </message>
-    <message>
-      <source>POINT_LATITUDE</source>
-      <translation>Lat</translation>
-    </message>
-    <message>
-      <source>POINT_LONGITUDE</source>
-      <translation>Long</translation>
-    </message>
-    <message>
-      <source>REFERENCE_IMAGE_CS</source>
-      <translation>Reference Image CS</translation>
-    </message>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>TRANSFORM_IMAGE</source>
-      <translation>Transform image</translation>
-    </message>
-    <message>
-      <source>IMPORT_GEO_DATA_FROM_FILE</source>
-      <translation>Import georeferencement data from file</translation>
-    </message>
-    <message>
-      <source>IMAGE_GEOREFERENCEMENT_FILTER</source>
-      <translation>Image georeferencement files (*.grf);;All files (*.* *)</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_ImportImageOp</name>
-    <message>
-      <source>EDIT_IMPORTED_IMAGE</source>
-      <translation>Edit imported image</translation>
-    </message>
-    <message>
-      <source>IMPORT_IMAGE</source>
-      <translation>Import image</translation>
-    </message>
-    <message>
-      <source>IMPORTED_IMAGE</source>
-      <translation>Imported image</translation>
-    </message>
-    <message>
-      <source>TRANSFORM_IMAGE</source>
-      <translation>Transform image</translation>
-    </message>
-    <message>
-      <source>POINTS_A_B_ARE_IDENTICAL</source>
-      <translation>Points A, B are identical.</translation>
-    </message>
-    <message>
-      <source>POINTS_A_B_C_BELONG_TO_SINGLE_LINE</source>
-      <translation>Points A, B, C belong to a single line.</translation>
-    </message>
-    <message>
-      <source>REFERENCE_IMAGE</source>
-      <translation>Reference image</translation>
-    </message>
-    <message>
-      <source>REFERENCE_IMAGE_IS_NOT_SELECTED</source>
-      <translation>Reference image is not selected.</translation>
-    </message>
-    <message>
-      <source>REFERENCE_POINTS_A_B_ARE_IDENTICAL</source>
-      <translation>Reference points A, B are identical.</translation>
-    </message>
-    <message>
-      <source>REFERENCE_POINTS_A_B_C_BELONG_TO_SINGLE_LINE</source>
-      <translation>Reference points A, B, C belong to a single line.</translation>
-    </message>
-    <message>
-      <source>TRANSFORMATION_MATRIX_CANNOT_BE_COMPUTED</source>
-      <translation>Transformation matrix cannot be computed.</translation>
-    </message>
-    <message>
-      <source>CORRECT_INPUT_DATA</source>
-      <translation>Correct input data</translation>
-    </message>
-    <message>
-      <source>CONFIRM_REMOVE_REFERENCE_FROM_IMAGE</source>
-      <translation>The image "%1" has a reference to the current object.
-Would you like to remove all references from the image?</translation>
-    </message>
-    <message>
-      <source>CANT_LOAD_GEOREFERENCEMENT_FILE</source>
-      <translation>Can't load data from the image georeferencement file.</translation>
-    </message>
-    <message>
-      <source>SELECT_IMAGE_NAME</source>
-      <translation>The image name is not input</translation>
-    </message>
-    <message>
-      <source>SELECT_IMAGE_FILE</source>
-      <translation>The image file is not chosen</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_Module</name>
-    <message>
-      <source>DSK_CREATE_CALCULATION</source>
-      <translation>Create calculation case</translation>
-    </message>
-    <message>
-      <source>DSK_CREATE_POLYLINE</source>
-      <translation>Create polyline</translation>
-    </message>
-    <message>
-      <source>DSK_CREATE_POLYLINE_3D</source>
-      <translation>Create polyline 3D</translation>
-    </message>
-    <message>
-      <source>DSK_CREATE_PROFILE</source>
-      <translation>Create profile</translation>
-    </message>
-    <message>
-      <source>DSK_IMPORT_PROFILES</source>
-      <translation>Import profiles from file(s)</translation>
-    </message>
-    <message>
-      <source>DSK_GEOREFERENCEMENT</source>
-      <translation>Profiles georeferencement</translation>
-    </message>
-    <message>
-      <source>DSK_CREATE_IMMERSIBLE_ZONE</source>
-      <translation>Create immersible zone</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_IMMERSIBLE_ZONE</source>
-      <translation>Edit immersible zone</translation> 
-    </message>
-    <message>
-      <source>DSK_CREATE_STREAM</source>
-      <translation>Create stream</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_STREAM</source>
-      <translation>Edit stream</translation>
-    </message>
-    <message>
-      <source>DSK_CREATE_CHANNEL</source>
-      <translation>Create channel</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_CHANNEL</source>
-      <translation>Edit channel</translation>
-    </message>
-    <message>
-      <source>DSK_CREATE_DIGUE</source>
-      <translation>Create digue</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_DIGUE</source>
-      <translation>Edit digue</translation>
-    </message>
-    <message>
-      <source>DSK_IMPORT_STRICKLER_TABLE</source>
-      <translation>Import Strickler table</translation>
-    </message>
-    <message>
-      <source>DSK_EXPORT_STRICKLER_TABLE</source>
-      <translation>Export Strickler table</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_STRICKLER_TABLE</source>
-      <translation>Edit Strickler table</translation>
-    </message>
-    <message>
-      <source>DSK_DUPLICATE_STRICKLER_TABLE</source>
-      <translation>Duplicate Strickler table</translation>
-    </message>
-    <message>
-      <source>DSK_CREATE_LAND_COVER_MAP</source>
-      <translation>Create land cover map</translation>
-    </message>
-    <message>
-      <source>DSK_ADD_LAND_COVER</source>
-      <translation>Add land cover</translation>
-    </message>
-    <message>
-      <source>DSK_REMOVE_LAND_COVER</source>
-      <translation>Remove land cover</translation>
-    </message>
-    <message>
-      <source>DSK_SPLIT_LAND_COVER</source>
-      <translation>Split land cover(s)</translation>
-    </message>
-    <message>
-      <source>DSK_MERGE_LAND_COVER</source>
-      <translation>Merge land covers</translation>
-    </message>
-    <message>
-      <source>DSK_CHANGE_LAND_COVER_TYPE</source>
-      <translation>Change land cover(s) type</translation>
-    </message>
-    <message>
-      <source>DSK_COPY</source>
-      <translation>Copy</translation>
-    </message>
-    <message>
-      <source>DSK_CUT_IMAGES</source>
-      <translation>Cut images</translation>
-    </message>
-    <message>
-      <source>DSK_DELETE</source>
-      <translation>Delete</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_CALCULATION</source>
-      <translation>Edit calculation case</translation>
-    </message>
-    <message>
-      <source>DSK_EXPORT_CALCULATION</source>
-      <translation>Export calculation case to GEOM</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_CUT_IMAGE</source>
-      <translation>Edit cut image</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_FUSED_IMAGE</source>
-      <translation>Edit fused image</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_IMPORTED_IMAGE</source>
-      <translation>Edit imported image</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_POLYLINE</source>
-      <translation>Edit polyline</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_POLYLINE_3D</source>
-      <translation>Edit polyline 3D</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_SPLIT_IMAGE</source>
-      <translation>Edit split image</translation>
-    </message>
-    <message>
-      <source>DSK_COPY_VIEWER_POSITION</source>
-      <translation>Copy position</translation>
-    </message>
-    <message>
-      <source>DSK_EXPORT_IMAGE</source>
-      <translation>Export image</translation>
-    </message>
-    <message>
-      <source>DSK_FUSE_IMAGES</source>
-      <translation>Fuse images</translation>
-    </message>
-    <message>
-      <source>DSK_HIDE</source>
-      <translation>Hide</translation>
-    </message>
-    <message>
-      <source>DSK_HIDE_ALL</source>
-      <translation>Hide all</translation>
-    </message>
-    <message>
-      <source>DSK_IMPORT_BATHYMETRY</source>
-      <translation>Import bathymetry</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_IMPORTED_BATHYMETRY</source>
-      <translation>Edit imported bathymetry</translation>
-    </message>
-    <message>
-      <source>DSK_BATHYMETRY_BOUNDS</source>
-      <translation>Create boundary polyline</translation>
-    </message>
-    <message>
-      <source>DSK_BATHYMETRY_SELECTION</source>
-      <translation>Selection on bathymetry</translation>
-    </message>
-    <message>
-      <source>DSK_BATHYMETRY_TEXT</source>
-      <translation>Z-Values on bathymetry</translation>
-    </message>
-    <message>
-      <source>DSK_BATHYMETRY_RESCALE_SELECTION</source>
-      <translation>Rescale bathymetry by selection</translation>
-    </message>
-    <message>
-      <source>DSK_BATHYMETRY_RESCALE_VISIBLE</source>
-      <translation>Rescale bathymetry by visible range</translation>
-    </message>
-    <message>
-      <source>DSK_BATHYMETRY_RESCALE_USER</source>
-      <translation>Custom rescale bathymetry</translation>
-    </message>
-    <message>
-      <source>DSK_BATHYMETRY_RESCALE_DEFAULT</source>
-      <translation>Default rescale bathymetry</translation>
-    </message>
-    <message>
-      <source>DSK_SHOW_HIDE_ARROWS</source>
-      <translation>Show/hide arrows</translation>
-    </message>
-    <message>
-      <source>DSK_IMPORT_IMAGE</source>
-      <translation>Import image</translation>
-    </message>
-    <message>
-      <source>DSK_IMPORT_POLYLINE</source>
-      <translation>Import polyline from file(s)</translation>
-    </message>
-    <message>
-      <source>DSK_IMPORT_LANDCOVER_MAP</source>
-      <translation>Import land cover map from file(s)</translation>
-    </message>
-    <message>
-      <source>DSK_IMPORT_SINUSX</source>
-      <translation>Import from SinusX</translation>
-    </message>
-    <message>
-      <source>DSK_MEASUREMENT_TOOL</source>
-      <translation>Measurement tool</translation>
-    </message>
-    <message>
-      <source>DSK_IMPORT_BC_POLYGON</source>
-      <translation>Import boundary polygons from SHP file</translation>
-    </message>
-    <message>
-      <source>DSK_EXPORT_SINUSX</source>
-      <translation>Export to SinusX</translation>
-    </message>
-    <message>
-      <source>DSK_LOAD_VISUAL_STATE</source>
-      <translation>Load visual state</translation>
-    </message>
-    <message>
-      <source>DSK_OBSERVE_IMAGE</source>
-      <translation>Observe image</translation>
-    </message>
-    <message>
-      <source>DSK_PASTE</source>
-      <translation>Paste</translation>
-    </message>
-    <message>
-      <source>DSK_REDO</source>
-      <translation>Redo</translation>
-    </message>
-    <message>
-      <source>DSK_REMOVE_IMAGE_REFERENCE</source>
-      <translation>Remove reference</translation>
-    </message>
-    <message>
-      <source>DSK_SAVE_VISUAL_STATE</source>
-      <translation>Save visual state</translation>
-    </message>
-    <message>
-      <source>DSK_SHOW</source>
-      <translation>Show</translation>
-    </message>
-    <message>
-      <source>DSK_SHOW_ALL</source>
-      <translation>Show all</translation>
-    </message>
-    <message>
-      <source>DSK_SHOW_ONLY</source>
-      <translation>Show only</translation>
-    </message>
-    <message>
-      <source>DSK_SPLIT_IMAGE</source>
-      <translation>Split image</translation>
-    </message>
-    <message>
-      <source>DSK_SPLIT_POLYLINES</source>
-      <translation>Split polylines</translation>
-    </message>
-    <message>
-      <source>DSK_MERGE_POLYLINES</source>
-      <translation>Merge polylines</translation>
-    </message>
-    <message>
-      <source>DSK_SHOWATTR_POLYLINES</source>
-      <translation>Show DBF attributes</translation>
-    </message>
-    <message>
-      <source>DSK_UNDO</source>
-      <translation>Undo</translation>
-    </message>
-    <message>
-      <source>DSK_UPDATE_OBJECT</source>
-      <translation>Update</translation>
-    </message>
-    <message>
-      <source>DSK_FORCED_UPDATE_OBJECT</source>
-      <translation>Forced update</translation>
-    </message>
-    <message>
-      <source>DSK_IMPORT_OBSTACLE_FROM_FILE</source>
-      <translation>Import obstacle from file</translation>
-    </message>
-    <message>
-      <source>DSK_CREATE_BOX</source>
-      <translation>Create box obstacle</translation>
-    </message>
-    <message>
-      <source>DSK_IMPORT_GEOM_OBJECT_AS_OBSTACLE</source>
-      <translation>Import GEOM object(s) as obstacle(s)</translation>
-    </message>
-    <message>
-      <source>DSK_IMPORT_GEOM_OBJECT_AS_POLYLINE</source>
-      <translation>Import GEOM object(s) as polyline(s)</translation>
-    </message>
-    <message>
-      <source>DSK_CREATE_CYLINDER</source>
-      <translation>Create cylinder obstacle</translation>
-    </message>
-    <message>
-      <source>DSK_TRANSLATE_OBSTACLE</source>
-      <translation>Translate obstacle</translation>
-    </message>
-    <message>
-      <source>DSK_COLOR</source>
-      <translation>Set object color</translation>
-    </message>
-    <message>
-      <source>DSK_TRANSPARENCY</source>
-      <translation>Set object transparency</translation>
-    </message>
-    <message>
-      <source>DSK_ZLEVEL</source>
-      <translation>Change layer order</translation>
-    </message>
-    <message>
-      <source>DSK_EDIT_LOCAL_CS</source>
-      <translation>Change local CS</translation>
-    </message>
-    <message>
-      <source>DSK_SUBMERSIBLE</source>
-      <translation>Submersible</translation>
-    </message>
-    <message>
-      <source>DSK_UNSUBMERSIBLE</source>
-      <translation>Unsubmersible</translation>
-    </message>
-    <message>
-      <source>DSK_EXPORT_TO_SHAPE_FILE</source>
-      <translation>Export</translation>
-    </message>
-    <message>
-      <source>DSK_POLYLINE_EXTRACTION</source>
-      <translation>Extracts the polyline from selected object</translation>
-    </message>
-
-    <message>
-      <source>MEN_CREATE_CALCULATION</source>
-      <translation>Create calculation case</translation>
-    </message>
-    <message>
-      <source>MEN_CREATE_POLYLINE</source>
-      <translation>Create polyline</translation>
-    </message>
-    <message>
-      <source>MEN_CREATE_POLYLINE_3D</source>
-      <translation>Create polyline 3D</translation>
-    </message>
-    <message>
-      <source>MEN_CREATE_PROFILE</source>
-      <translation>Create profile</translation>
-    </message>
-    <message>
-      <source>MEN_IMPORT_PROFILES</source>
-      <translation>Import profiles</translation>
-    </message>
-    <message>
-      <source>MEN_GEOREFERENCEMENT</source>
-      <translation>Georeferencement</translation>
-    </message>
-    <message>
-      <source>MEN_CREATE_ZONE</source>
-      <translation>Create zone</translation>
-    </message>
-    <message>
-      <source>MEN_CREATE_IMMERSIBLE_ZONE</source>
-      <translation>Create immersible zone</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_IMMERSIBLE_ZONE</source>
-      <translation>Edit immersible zone</translation>
-    </message>
-    <message>
-      <source>MEN_CREATE_STREAM</source>
-      <translation>Create stream</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_STREAM</source>
-      <translation>Edit stream</translation>
-    </message>
-    <message>
-      <source>MEN_CREATE_CHANNEL</source>
-      <translation>Create channel</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_CHANNEL</source>
-      <translation>Edit channel</translation>
-    </message>
-    <message>
-      <source>MEN_CREATE_DIGUE</source>
-      <translation>Create digue</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_DIGUE</source>
-      <translation>Edit digue</translation>
-    </message>
-    <message>
-      <source>MEN_IMPORT_STRICKLER_TABLE</source>
-      <translation>Import Strickler table</translation>
-    </message>
-    <message>
-      <source>MEN_EXPORT_STRICKLER_TABLE</source>
-      <translation>Export Strickler table</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_STRICKLER_TABLE</source>
-      <translation>Edit Strickler table</translation>
-    </message>
-    <message>
-      <source>MEN_DUPLICATE_STRICKLER_TABLE</source>
-      <translation>Duplicate Strickler table</translation>
-    </message>
-    <message>
-      <source>MEN_CREATE_LAND_COVER_MAP</source>
-      <translation>Create land cover map</translation>
-    </message>
-    <message>
-      <source>MEN_ADD_LAND_COVER</source>
-      <translation>Add land cover</translation>
-    </message>
-    <message>
-      <source>MEN_REMOVE_LAND_COVER</source>
-      <translation>Remove land cover</translation>
-    </message>
-    <message>
-      <source>MEN_SPLIT_LAND_COVER</source>
-      <translation>Split land cover(s)</translation>
-    </message>
-    <message>
-      <source>MEN_MERGE_LAND_COVER</source>
-      <translation>Merge land covers</translation>
-    </message>
-    <message>
-      <source>MEN_CHANGE_LAND_COVER_TYPE</source>
-      <translation>Change land cover(s) type</translation>
-    </message>
-    <message>
-      <source>MEN_CUT_IMAGES</source>
-      <translation>Cut images</translation>
-    </message>
-    <message>
-      <source>MEN_DELETE</source>
-      <translation>Delete</translation>
-    </message>
-    <message>
-      <source>MEN_DESK_ARTIFICIAL</source>
-      <translation>Artificial objects</translation>
-    </message>
-    <message>
-      <source>MEN_DESK_HYDRO</source>
-      <translation>HYDRO</translation>
-    </message>
-    <message>
-      <source>MEN_DESK_STREAM</source>
-      <translation>Stream</translation>
-    </message>
-    <message>
-      <source>MEN_DESK_NATURAL</source>
-      <translation>Natural objects</translation>
-    </message>
-    <message>
-      <source>MEN_DESK_OBSTACLE</source>
-      <translation>Obstacle</translation>
-    </message>
-    <message>
-      <source>MEN_DESK_PROFILE</source>
-      <translation>Profile</translation>
-    </message>
-    <message>
-      <source>MEN_DESK_IMAGE</source>
-      <translation>Image</translation>
-    </message>
-    <message>
-      <source>MEN_DESK_POLYLINE</source>
-      <translation>Polyline</translation>
-    </message>
-    <message>
-      <source>MEN_DESK_LAND_COVER_MAP</source>
-      <translation>Land cover map</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_CALCULATION</source>
-      <translation>Edit calculation case</translation>
-    </message>
-    <message>
-      <source>MEN_EXPORT_CALCULATION</source>
-      <translation>Export calculation case</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_CUT_IMAGE</source>
-      <translation>Edit cut image</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_FUSED_IMAGE</source>
-      <translation>Edit fused image</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_IMPORTED_IMAGE</source>
-      <translation>Edit imported image</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_POLYLINE</source>
-      <translation>Edit polyline</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_POLYLINE_3D</source>
-      <translation>Edit polyline 3D</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_PROFILE</source>
-      <translation>Edit profile</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_SPLIT_IMAGE</source>
-      <translation>Edit split image</translation>
-    </message>
-    <message>
-      <source>MEN_COPY_VIEWER_POSITION</source>
-      <translation>Copy position</translation>
-    </message>
-    <message>
-      <source>MEN_EXPORT_IMAGE</source>
-      <translation>Export image</translation>
-    </message>
-    <message>
-      <source>MEN_FUSE_IMAGES</source>
-      <translation>Fuse images</translation>
-    </message>
-    <message>
-      <source>MEN_HIDE</source>
-      <translation>Hide</translation>
-    </message>
-    <message>
-      <source>MEN_HIDE_ALL</source>
-      <translation>Hide all</translation>
-    </message>
-    <message>
-      <source>MEN_IMPORT_BATHYMETRY</source>
-      <translation>Import bathymetry</translation>
-    </message>
-    <message>
-      <source>MEN_IMPORT_BC_POLYGON</source>
-      <translation>Import boundary polygons</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_IMPORTED_BATHYMETRY</source>
-      <translation>Edit imported bathymetry</translation>
-    </message>
-    <message>
-      <source>MEN_BATHYMETRY_BOUNDS</source>
-      <translation>Create boundary polyline</translation>
-    </message>
-    <message>
-      <source>MEN_BATHYMETRY_SELECTION</source>
-      <translation>Selection on bathymetry</translation>
-    </message>
-    <message>
-      <source>MEN_BATHYMETRY_TEXT</source>
-      <translation>Z-Values on bathymetry</translation>
-    </message>
-    <message>
-      <source>MEN_BATHYMETRY_RESCALE_SELECTION</source>
-      <translation>Rescale bathymetry by selection</translation>
-    </message>
-    <message>
-      <source>MEN_BATHYMETRY_RESCALE_VISIBLE</source>
-      <translation>Rescale bathymetry by visible range</translation>
-    </message>
-    <message>
-      <source>MEN_BATHYMETRY_RESCALE_USER</source>
-      <translation>Custom rescale bathymetry</translation>
-    </message>
-    <message>
-      <source>MEN_BATHYMETRY_RESCALE_DEFAULT</source>
-      <translation>Default rescale bathymetry</translation>
-    </message>
-    <message>
-      <source>MEN_SHOW_HIDE_ARROWS</source>
-      <translation>Show/hide arrows</translation>
-    </message>
-    <message>
-      <source>HIDE_ARROWS</source>
-      <translation>Hide arrows</translation>
-    </message>
-    <message>
-      <source>SHOW_ARROWS</source>
-      <translation>Show arrows</translation>
-    </message>
-    <message>
-      <source>MEN_IMPORT_IMAGE</source>
-      <translation>Import image</translation>
-    </message>
-    <message>
-      <source>MEN_IMPORT_POLYLINE</source>
-      <translation>Import polyline</translation>
-    </message>
-    <message>
-      <source>MEN_IMPORT_LANDCOVER_MAP</source>
-      <translation>Import land cover map from file(s)</translation>
-    </message>
-    <message>
-      <source>MEN_IMPORT_SINUSX</source>
-      <translation>Import from SinusX</translation>
-    </message>
-    <message>
-      <source>MEN_MEASUREMENT_TOOL</source>
-      <translation>Measurement tool</translation>
-    </message>
-    <message>
-      <source>MEN_EXPORT_SINUSX</source>
-      <translation>Export to SinusX</translation>
-    </message>
-    <message>
-      <source>MEN_LOAD_VISUAL_STATE</source>
-      <translation>Load visual state</translation>
-    </message>
-    <message>
-      <source>MEN_OBSERVE_IMAGE</source>
-      <translation>Observe image</translation>
-    </message>
-    <message>
-      <source>MEN_COPY</source>
-      <translation>Copy</translation>
-    </message>
-    <message>
-      <source>MEN_PASTE</source>
-      <translation>Paste</translation>
-    </message>
-    <message>
-      <source>MEN_REDO</source>
-      <translation>Redo</translation>
-    </message>
-    <message>
-      <source>MEN_REMOVE_IMAGE_REFERENCE</source>
-      <translation>Remove reference</translation>
-    </message>
-    <message>
-      <source>MEN_SAVE_VISUAL_STATE</source>
-      <translation>Save visual state</translation>
-    </message>
-    <message>
-      <source>MEN_SHOW</source>
-      <translation>Show</translation>
-    </message>
-    <message>
-      <source>MEN_SHOW_ALL</source>
-      <translation>Show all</translation>
-    </message>
-    <message>
-      <source>MEN_SHOW_ONLY</source>
-      <translation>Show only</translation>
-    </message>
-    <message>
-      <source>MEN_SPLIT_IMAGE</source>
-      <translation>Split image</translation>
-    </message>
-    <message>
-      <source>MEN_SPLIT_POLYLINES</source>
-      <translation>Split polylines</translation>
-    </message>
-    <message>
-      <source>MEN_MERGE_POLYLINES</source>
-      <translation>Merge polylines</translation>
-    </message>
-    <message>
-      <source>MEN_SHOWATTR_POLYLINES</source>
-      <translation>Show DBF attributes</translation>
-    </message>
-    <message>
-      <source>MEN_UNDO</source>
-      <translation>Undo</translation>
-    </message>
-    <message>
-      <source>MEN_UPDATE_OBJECT</source>
-      <translation>Update</translation>
-    </message>
-    <message>
-      <source>MEN_FORCED_UPDATE_OBJECT</source>
-      <translation>Forced update</translation>
-    </message>
-    <message>
-      <source>MEN_IMPORT_OBSTACLE_FROM_FILE</source>
-      <translation>Import obstacle</translation>
-    </message>
-    <message>
-      <source>MEN_IMPORT_GEOM_OBJECT_AS_OBSTACLE</source>
-      <translation>Import as obstacle</translation>
-    </message>
-    <message>
-      <source>MEN_IMPORT_GEOM_OBJECT_AS_POLYLINE</source>
-      <translation>Import as polyline</translation>
-    </message>
-    <message>
-      <source>MEN_CREATE_BOX</source>
-      <translation>Create box</translation>
-    </message>
-    <message>
-      <source>MEN_CREATE_CYLINDER</source>
-      <translation>Create cylinder</translation>
-    </message>
-    <message>
-      <source>MEN_TRANSLATE_OBSTACLE</source>
-      <translation>Translate</translation>
-    </message>
-    <message>
-      <source>MEN_COLOR</source>
-      <translation>Color</translation>
-    </message>
-    <message>
-      <source>MEN_TRANSPARENCY</source>
-      <translation>Transparency</translation>
-    </message>
-    <message>
-      <source>MEN_ZLEVEL</source>
-      <translation>Change layer order</translation>
-    </message>
-    <message>
-      <source>MEN_EDIT_LOCAL_CS</source>
-      <translation>Change local CS</translation>
-    </message>
-    <message>
-      <source>MEN_SUBMERSIBLE</source>
-      <translation>Submersible</translation>
-    </message>
-    <message>
-      <source>MEN_UNSUBMERSIBLE</source>
-      <translation>Unsubmersible</translation>
-    </message>
-    <message>
-      <source>MEN_EXPORT_TO_SHAPE_FILE</source>
-      <translation>Export</translation>
-    </message>
-    <message>
-      <source>MEN_POLYLINE_EXTRACTION</source>
-      <translation>Polyline extraction</translation>
-    </message>
-    <message>
-      <source>MEN_REGENERATE_REGION_COLORS</source>
-      <translation>Regenerate region colors</translation>
-    </message>
-    <message>
-      <source>MEN_ZONE_SET_COLOR</source>
-      <translation>Set color</translation>
-    </message>
-    <message>
-      <source>MEN_SET_BOUNDARY_TYPE_POLYGON</source>
-      <translation>Set boundary type</translation>
-    </message>
-    <message>
-      <source>STB_CREATE_CALCULATION</source>
-      <translation>Create calculation case</translation>
-    </message>
-    <message>
-      <source>STB_CREATE_POLYLINE</source>
-      <translation>Create polyline</translation>
-    </message>
-    <message>
-      <source>STB_CREATE_POLYLINE_3D</source>
-      <translation>Create polyline 3D</translation>
-    </message>
-    <message>
-      <source>STB_CREATE_PROFILE</source>
-      <translation>Create profile</translation>
-    </message>
-    <message>
-      <source>STB_IMPORT_PROFILES</source>
-      <translation>Import profiles from file(s)</translation>
-    </message>
-    <message>
-      <source>STB_GEOREFERENCEMENT</source>
-      <translation>Profiles georeferencement</translation>
-    </message>
-    <message>
-      <source>STB_CREATE_IMMERSIBLE_ZONE</source>
-      <translation>Create immersible zone</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_IMMERSIBLE_ZONE</source>
-      <translation>Edit immersible zone</translation>
-    </message>
-    <message>
-      <source>STB_CREATE_STREAM</source>
-      <translation>Create stream</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_STREAM</source>
-      <translation>Edit stream</translation>
-    </message>
-    <message>
-      <source>STB_CREATE_CHANNEL</source>
-      <translation>Create channel</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_CHANNEL</source>
-      <translation>Edit channel</translation>
-    </message>
-    <message>
-      <source>STB_CREATE_DIGUE</source>
-      <translation>Create digue</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_DIGUE</source>
-      <translation>Edit digue</translation>
-    </message>
-    <message>
-      <source>STB_IMPORT_STRICKLER_TABLE</source>
-      <translation>Import Strickler table</translation>
-    </message>
-    <message>
-      <source>STB_EXPORT_STRICKLER_TABLE</source>
-      <translation>Export Strickler table</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_STRICKLER_TABLE</source>
-      <translation>Edit Strickler table</translation>
-    </message>
-    <message>
-      <source>STB_DUPLICATE_STRICKLER_TABLE</source>
-      <translation>Duplicate Strickler table</translation>
-    </message>
-    <message>
-      <source>STB_IMPORT_BC_POLYGON</source>
-      <translation>Import boundary polygons</translation>
-    </message>
-    <message>
-      <source>STB_CREATE_LAND_COVER_MAP</source>
-      <translation>Create land cover map</translation>
-    </message>
-    <message>
-      <source>STB_ADD_LAND_COVER</source>
-      <translation>Add land cover</translation>
-    </message>
-    <message>
-      <source>STB_REMOVE_LAND_COVER</source>
-      <translation>Remove land cover</translation>
-    </message>
-    <message>
-      <source>STB_SPLIT_LAND_COVER</source>
-      <translation>Split land cover(s)</translation>
-    </message>
-    <message>
-      <source>STB_MERGE_LAND_COVER</source>
-      <translation>Merge land covers</translation>
-    </message>
-    <message>
-      <source>STB_CHANGE_LAND_COVER_TYPE</source>
-      <translation>Change land cover(s) type</translation>
-    </message>
-    <message>
-      <source>STB_COPY</source>
-      <translation>Copy</translation>
-    </message>
-    <message>
-      <source>STB_CUT_IMAGES</source>
-      <translation>Cut images</translation>
-    </message>
-    <message>
-      <source>STB_DELETE</source>
-      <translation>Delete</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_CALCULATION</source>
-      <translation>Edit calculation case</translation>
-    </message>
-    <message>
-      <source>STB_EXPORT_CALCULATION</source>
-      <translation>Export calculation case to GEOM</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_CUT_IMAGE</source>
-      <translation>Edit cut image</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_FUSED_IMAGE</source>
-      <translation>Edit fused image</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_IMPORTED_IMAGE</source>
-      <translation>Edit imported image</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_POLYLINE</source>
-      <translation>Edit polyline</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_POLYLINE_3D</source>
-      <translation>Edit polyline 3D</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_SPLIT_IMAGE</source>
-      <translation>Edit split image</translation>
-    </message>
-    <message>
-      <source>STB_COPY_VIEWER_POSITION</source>
-      <translation>Copy position</translation>
-    </message>
-    <message>
-      <source>STB_EXPORT_IMAGE</source>
-      <translation>Export image</translation>
-    </message>
-    <message>
-      <source>STB_FUSE_IMAGES</source>
-      <translation>Fuse images</translation>
-    </message>
-    <message>
-      <source>STB_HIDE</source>
-      <translation>Hide</translation>
-    </message>
-    <message>
-      <source>STB_HIDE_ALL</source>
-      <translation>Hide all</translation>
-    </message>
-    <message>
-      <source>STB_IMPORT_BATHYMETRY</source>
-      <translation>Import bathymetry</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_IMPORTED_BATHYMETRY</source>
-      <translation>Edit imported bathymetry</translation>
-    </message>
-    <message>
-      <source>STB_BATHYMETRY_BOUNDS</source>
-      <translation>Create boundary polyline</translation>
-    </message>
-    <message>
-      <source>STB_BATHYMETRY_SELECTION</source>
-      <translation>Selection on bathymetry</translation>
-    </message>
-    <message>
-      <source>STB_BATHYMETRY_RESCALE_SELECTION</source>
-      <translation>Rescale bathymetry by selection</translation>
-    </message>
-    <message>
-      <source>STB_POLYLINE_STYLE</source>
-      <translation>Change polyline style</translation>
-    </message>
-    <message>
-      <source>STB_BATHYMETRY_RESCALE_VISIBLE</source>
-      <translation>Rescale bathymetry by visible range</translation>
-    </message>
-    <message>
-      <source>STB_BATHYMETRY_RESCALE_USER</source>
-      <translation>Custom rescale bathymetry</translation>
-    </message>
-    <message>
-      <source>STB_BATHYMETRY_RESCALE_DEFAULT</source>
-      <translation>Default rescale bathymetry</translation>
-    </message>
-    <message>
-      <source>STB_IMPORT_IMAGE</source>
-      <translation>Import image</translation>
-    </message>
-    <message>
-      <source>STB_IMPORT_POLYLINE</source>
-      <translation>Import polyline</translation>
-    </message>
-    <message>
-      <source>STB_IMPORT_LANDCOVER_MAP</source>
-      <translation>Import land cover map from file(s)</translation>
-    </message>
-    <message>
-      <source>STB_IMPORT_SINUSX</source>
-      <translation>Import from SinusX</translation>
-    </message>
-    <message>
-      <source>STB_MEASUREMENT_TOOL</source>
-      <translation>Measurement tool</translation>
-    </message>
-    <message>
-      <source>STB_EXPORT_SINUSX</source>
-      <translation>Export to SinusX</translation>
-    </message>
-    <message>
-      <source>STB_LOAD_VISUAL_STATE</source>
-      <translation>Load visual state</translation>
-    </message>
-    <message>
-      <source>STB_OBSERVE_IMAGE</source>
-      <translation>Observe image</translation>
-    </message>
-    <message>
-      <source>STB_PASTE</source>
-      <translation>Paste</translation>
-    </message>
-    <message>
-      <source>STB_REDO</source>
-      <translation>Redo</translation>
-    </message>
-    <message>
-      <source>STB_REMOVE_IMAGE_REFERENCE</source>
-      <translation>Remove reference</translation>
-    </message>
-    <message>
-      <source>STB_SAVE_VISUAL_STATE</source>
-      <translation>Save visual state</translation>
-    </message>
-    <message>
-      <source>STB_SHOW</source>
-      <translation>Show</translation>
-    </message>
-    <message>
-      <source>STB_SHOW_ALL</source>
-      <translation>Show all</translation>
-    </message>
-    <message>
-      <source>STB_SHOW_ONLY</source>
-      <translation>Show only</translation>
-    </message>
-    <message>
-      <source>STB_SPLIT_IMAGE</source>
-      <translation>Split image</translation>
-    </message>
-    <message>
-      <source>STB_SPLIT_POLYLINES</source>
-      <translation>Split polylines</translation>
-    </message>
-    <message>
-      <source>STB_MERGE_POLYLINES</source>
-      <translation>Merge polylines</translation>
-    </message>
-    <message>
-      <source>STB_SHOWATTR_POLYLINES</source>
-      <translation>Show DBF attributes</translation>
-    </message>
-    <message>
-      <source>STB_UNDO</source>
-      <translation>Undo</translation>
-    </message>
-    <message>
-      <source>STB_UPDATE_OBJECT</source>
-      <translation>Update</translation>
-    </message>
-    <message>
-      <source>STB_FORCED_UPDATE_OBJECT</source>
-      <translation>Forced update</translation>
-    </message>
-    <message>
-      <source>STB_IMPORT_OBSTACLE_FROM_FILE</source>
-      <translation>Import obstacle from file</translation>
-    </message>
-    <message>
-      <source>STB_IMPORT_GEOM_OBJECT_AS_OBSTACLE</source>
-      <translation>Import GEOM object(s) as obstacle(s)</translation>
-    </message>
-    <message>
-      <source>STB_IMPORT_GEOM_OBJECT_AS_POLYLINE</source>
-      <translation>Import GEOM object(s) as polyline(s)</translation>
-    </message>
-    <message>
-      <source>STB_CREATE_BOX</source>
-      <translation>Create box obstacle</translation>
-    </message>
-    <message>
-      <source>STB_CREATE_CYLINDER</source>
-      <translation>Create cylinder obstacle</translation>
-    </message>
-    <message>
-      <source>STB_TRANSLATE_OBSTACLE</source>
-      <translation>Translate obstacle</translation>
-    </message>
-    <message>
-      <source>STB_COLOR</source>
-      <translation>Set object color</translation>
-    </message>
-    <message>
-      <source>STB_TRANSPARENCY</source>
-      <translation>Set object transparency</translation>
-    </message>
-    <message>
-      <source>STB_ZLEVEL</source>
-      <translation>Change layer order</translation>
-    </message>
-    <message>
-      <source>STB_EDIT_LOCAL_CS</source>
-      <translation>Change local CS</translation>
-    </message>
-    <message>
-      <source>STB_POLYLINE_EXTRACTION</source>
-      <translation>Polyline extractions</translation>
-    </message>
-    <message>
-      <source>STB_BATHYMETRY_TEXT</source>
-      <translation>Z-Values on bathymetry</translation>
-    </message>
-    <message>
-      <source>MEN_CREATE_STREAM_BOTTOM</source>
-      <translation>Find bottom</translation>
-    </message>
-    <message>
-      <source>DSK_CREATE_STREAM_BOTTOM</source>
-      <translation>Create stream bottom polyline</translation>
-    </message>
-    <message>
-      <source>STB_CREATE_STREAM_BOTTOM</source>
-      <translation>Creates the stream bottom polyline on selected stream object</translation>
-    </message>
-    <message>
-      <source>STB_SUBMERSIBLE</source>
-      <translation>If the object is submersible</translation>
-    </message>
-    <message>
-      <source>STB_UNSUBMERSIBLE</source>
-      <translation>If the object is non submersible</translation>
-    </message>
-    <message>
-      <source>STB_EXPORT_TO_SHAPE_FILE</source>
-      <translation>Export</translation>
-    </message>
-
-
-    <message>
-      <source>MEN_PROFILE_INTERPOLATE</source>
-      <translation>Profiles interpolation</translation>
-    </message>
-    <message>
-      <source>DSK_PROFILE_INTERPOLATE</source>
-      <translation>Interpolate the stream profiles</translation>
-    </message>
-    <message>
-      <source>STB_PROFILE_INTERPOLATE</source>
-      <translation>Creates the new stream profiles using interpolation of selected ones</translation>
-    </message>
-
-    <message>
-      <source>MEN_RECOGNIZE_CONTOURS</source>
-      <translation>Recognize contours</translation>
-    </message>
-    <message>
-      <source>DSK_RECOGNIZE_CONTOURS</source>
-      <translation>Recognize contours</translation>
-    </message>
-    <message>
-      <source>STB_RECOGNIZE_CONTOURS</source>
-      <translation>Recognize contours</translation>
-    </message>
-
-    <message>
-      <source>MEN_LC_SCALARMAP_COLORING_ON</source>
-      <translation>Use as scalar scale</translation>
-    </message>
-    <message>
-      <source>DSK_LC_SCALARMAP_COLORING_ON</source>
-      <translation>Use the table as a scalar scale for Land Covers coloring</translation>
-    </message>
-    <message>
-      <source>STB_LC_SCALARMAP_COLORING_ON</source>
-      <translation>Use as scalar scale</translation>
-    </message>
-
-    <message>
-      <source>MEN_LC_SCALARMAP_COLORING_OFF</source>
-      <translation>Scalar map mode off</translation>
-    </message>
-    <message>
-      <source>DSK_LC_SCALARMAP_COLORING_OFF</source>
-      <translation>Turn off Land Covers scalar map coloring mode</translation>
-    </message>
-    <message>
-      <source>STB_LC_SCALARMAP_COLORING_OFF</source>
-      <translation>Scalar map mode off</translation>
-    </message>
-    <message>
-      <source>PREF_GROUP_POLYLINES</source>
-      <translation>Polylines</translation>
-    </message>
-    <message>
-      <source>PREF_POLYLINE_ARROW</source>
-      <translation>Polyline arrow</translation>
-    </message>
-    <message>
-      <source>PREF_POLYLINE_ARROW_SIZE</source>
-      <translation>Polyline arrow size</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_PolylineOp</name>
-    <message>
-      <source>CREATE_POLYLINE</source>
-      <translation>Create polyline</translation>
-    </message>
-    <message>
-      <source>EDIT_POLYLINE</source>
-      <translation>Edit polyline</translation>
-    </message>
-    <message>
-      <source>EMPTY_POLYLINE_DATA</source>
-      <translation>No one section is created for polyline, should be at least one.</translation>
-    </message>
-    <message>
-      <source>NUMBER_OF_SECTION_POINTS_INCORRECT</source>
-      <translation>Number of points in each polyline section should not be less than 2.</translation>
-    </message>
-    <message>
-      <source>POLYLINE_IS_UNEDITABLE_TLT</source>
-      <translation>Polyline can not be edited</translation>
-    </message>
-    <message>
-      <source>POLYLINE_IS_UNEDITABLE_MSG</source>
-      <translation>Polyline has an unsupported format and can not be edited.</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_Poly3DOp</name>
-    <message>
-      <source>CREATE_POLYLINE_3D</source>
-      <translation>Create polyline 3D</translation>
-    </message>
-    <message>
-      <source>EDIT_POLYLINE_3D</source>
-      <translation>Edit polyline 3D</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ProfileOp</name>
-    <message>
-      <source>CREATE_PROFILE</source>
-      <translation>Create profile</translation>
-    </message>
-    <message>
-      <source>EDIT_PROFILE</source>
-      <translation>Edit profile</translation>
-    </message>
-    <message>
-      <source>NUMBER_OF_PROFILE_POINTS_INCORRECT</source>
-      <translation>Number of profile points should not be less than 3.</translation>
-    </message>
-    <message>
-      <source>PROFILEOP_WARNING</source>
-      <translation>Warning</translation>
-    </message>
-    <message>
-      <source>PROFILES_ALREADY_PRESENT</source>
-      <translation>All selected profile(s) are already present</translation>
-    </message>
-    <message>
-      <source>PROFILES_ARE_NOT_SELECTED</source>
-      <translation>Profile(s) are not selected</translation>
-    </message>
-    <message>
-      <source>PROFILE_RENAMING_NOTIF</source>
-      <translation>The next profile(s) have been renamed:</translation>
-    </message>
-  </context>
-  <context>
-    <name>HYDROGUI_RemoveImageRefsOp</name>
-    <message>
-      <source>REMOVE_IMAGE_REFERENCE</source>
-      <translation>Remove image reference</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ShowHideOp</name>
-    <message>
-      <source>SHOW</source>
-      <translation>Show</translation>
-    </message>
-    <message>
-      <source>SHOW_ALL</source>
-      <translation>Show all</translation>
-    </message>
-    <message>
-      <source>SHOW_ONLY</source>
-      <translation>Show only</translation>
-    </message>
-    <message>
-      <source>HIDE</source>
-      <translation>Hide</translation>
-    </message>
-    <message>
-      <source>HIDE_ALL</source>
-      <translation>Hide all</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_ObserveImageOp</name>
-    <message>
-      <source>OBSERVE_IMAGE</source>
-      <translation>Observe image</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_PolylineDlg</name>
-    <message>
-      <source>ADD_ELEMENT</source>
-      <translation>Add element</translation>
-    </message>
-    <message>
-      <source>EDIT_ELEMENT</source>
-      <translation>Edit element</translation>
-    </message>
-    <message>
-      <source>POLYLINE_NAME_TLT</source>
-      <translation>Name</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_Poly3DDlg</name>
-    <message>
-      <source>POLYLINE_3D_NAME</source>
-      <translation>Polyline 3d name</translation>
-    </message>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>PARAMETERS</source>
-      <translation>Parameters</translation>
-    </message>
-    <message>
-      <source>POLYLINE</source>
-      <translation>Polyline</translation>
-    </message>
-    <message>
-      <source>PROFILE</source>
-      <translation>Profile</translation>
-    </message>
-    <message>
-      <source>BATH</source>
-      <translation>Bathymetry</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ViewerDlg</name>
-    <message>
-      <source>UZ_COORDINATES_INFO</source>
-      <translation>U: %1, Z: %2</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_ProfileDlg</name>
-    <message>
-      <source>ADD_ELEMENT</source>
-      <translation>Add element</translation>
-    </message>
-    <message>
-      <source>EDIT_ELEMENT</source>
-      <translation>Edit element</translation>
-    </message>
-    <message>
-      <source>PROFILE_NAME_TLT</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>U_TITLE</source>
-      <translation>U</translation>
-    </message>
-    <message>
-      <source>Z_TITLE</source>
-      <translation>Z</translation>
-    </message>
-    <message>
-      <source>ADD_PROFILES</source>
-      <translation>Add Profile(s)</translation>
-    </message>
-    <message>
-      <source>REMOVE_PROFILE</source>
-      <translation>Remove Profile</translation>
-    </message>
-    <message>
-      <source>SETCOLOR_PROFILE</source>
-      <translation>Set Color</translation>
-    </message>
-    <message>
-      <source>PROFILE_ALREADY_EXISTS</source>
-      <translation>Profile with this name is already exists</translation>
-    </message>
-    <message>
-      <source>PROFILEDLG_WARNING</source>
-      <translation>Warning</translation>
-    </message>
-
-  </context>
-
-  <context>
-    <name>HYDROGUI_TwoImagesDlg</name>
-    <message>
-      <source>BACKGROUND</source>
-      <translation>Background</translation>
-    </message>
-    <message>
-      <source>COLOR</source>
-      <translation>Color</translation>
-    </message>
-    <message>
-      <source>IMAGE</source>
-      <translation>Image</translation>
-    </message>
-    <message>
-      <source>IMAGE_1</source>
-      <translation>Image 1</translation>
-    </message>
-    <message>
-      <source>IMAGE_2</source>
-      <translation>Image 2</translation>
-    </message>
-    <message>
-      <source>IMAGE_NAME</source>
-      <translation>Image name</translation>
-    </message>
-    <message>
-      <source>MODIFY_SELECTED_IMAGE</source>
-      <translation>Modify selected image</translation>
-    </message>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>PARAMETERS</source>
-      <translation>Parameters</translation>
-    </message>
-    <message>
-      <source>POLYLINE</source>
-      <translation>Polyline</translation>
-    </message>
-    <message>
-      <source>TRANSPARENT</source>
-      <translation>Transparent</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_TwoImagesOp</name>
-    <message>
-      <source>CUT</source>
-      <translation>Cut</translation>
-    </message>
-    <message>
-      <source>CUT_IMAGES</source>
-      <translation>Cut images</translation>
-    </message>
-    <message>
-      <source>EDIT_CUT_IMAGE</source>
-      <translation>Edit cut image</translation>
-    </message>
-    <message>
-      <source>EDIT_FUSED_IMAGE</source>
-      <translation>Edit fused image</translation>
-    </message>
-    <message>
-      <source>EDIT_SPLIT_IMAGE</source>
-      <translation>Edit split image</translation>
-    </message>
-    <message>
-      <source>FUSE</source>
-      <translation>Fuse</translation>
-    </message>
-    <message>
-      <source>FUSE_IMAGES</source>
-      <translation>Fuse images</translation>
-    </message>
-    <message>
-      <source>SPLIT</source>
-      <translation>Split</translation>
-    </message>
-    <message>
-      <source>SPLIT_IMAGE</source>
-      <translation>Split image</translation>
-    </message>
-    <message>
-      <source>OBJECT_ALREADY_SELECTED</source>
-      <translation>The object "%1" has been already selected. Please select another one to perform the operation.</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_UpdateImageOp</name>
-    <message>
-      <source>UPDATE_IMAGE</source>
-      <translation>Update image</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_VisualStateOp</name>
-    <message>
-      <source>LOAD_VISUAL_STATE</source>
-      <translation>Load visual state</translation>
-    </message>
-    <message>
-      <source>SAVE_VISUAL_STATE</source>
-      <translation>Save visual state</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ImmersibleZoneDlg</name>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>ZONE_BATHYMETRY</source>
-      <translation>Bathymetry</translation>
-    </message>
-    <message>
-      <source>ZONE_NAME</source>
-      <translation>Zone name</translation>
-    </message>
-    <message>
-      <source>ZONE_PARAMETERS</source>
-      <translation>Parameters</translation>
-    </message>
-    <message>
-      <source>ZONE_POLYLINE</source>
-      <translation>Polyline</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ImmersibleZoneOp</name>
-    <message>
-      <source>CREATE_IMMERSIBLE_ZONE</source>
-      <translation>Create immersible zone</translation>
-    </message>
-    <message>
-      <source>EDIT_IMMERSIBLE_ZONE</source>
-      <translation>Edit immersible zone</translation>
-    </message>
-    <message>
-      <source>ZONE_OBJECT_CANNOT_BE_CREATED</source>
-      <translation>Zone object can not be created.
-Maybe the polyline is not closed,
-or there is a small loop somewhere in the polyline ?</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_LocalCSOp</name>
-    <message>
-      <source>EDIT_LOCAL_CS</source>
-      <translation>Local CS transformation</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ImportGeomObjectOp</name>
-    <message>
-      <source>IMPORT_GEOM_OBJECT_AS_OBSTACLE</source>
-      <translation>Import GEOM object as obstacle</translation>
-    </message>
-    <message>
-      <source>IMPORT_GEOM_OBJECT_AS_POLYLINE</source>
-      <translation>Import GEOM object as polyline</translation>
-    </message>
-    <message>
-      <source>NO_GEOM_OBJECT_TO_IMPORT</source>
-      <translation>No GEOM object(s) to import.</translation>
-    </message>
-    <message>
-      <source>POLYLINE_IS_UNRECOGNIZED_TLT</source>
-      <translation>Imported curve has an unsupported format</translation>
-    </message>
-    <message>
-      <source>POLYLINE_IS_UNRECOGNIZED_MSG</source>
-      <translation>Imported curve has an unsupported by HYDRO format,
-it will be unavailable for future editing.
-Do you still want to continue?</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ImportObstacleFromFileOp</name>
-    <message>
-      <source>IMPORT_OBSTACLE_FROM_FILE</source>
-      <translation>Import obstacle</translation>
-    </message>
-    <message>
-      <source>BAD_IMPORTED_OBSTACLE_FILE</source>
-      <translation>'%1'
-file cannot be correctly imported for an Obstacle definition.</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ExportCalculationOp</name>
-    <message>
-      <source>EXPORT_CALCULATION</source>
-      <translation>Export calculation case</translation>
-    </message>
-    <message>
-      <source>EXPORT_STATUS</source>
-      <translation>Export status</translation>
-    </message>
-    <message>
-      <source>EXPORT_FINISHED</source>
-      <translation>Export finished successfully.</translation>
-    </message>
-    <message>
-      <source>EXPORT_FAILED</source>
-      <translation>Export of calculation case failed:</translation>
-    </message>
-    <message>
-      <source>EXPORT_DATA_FAILED</source>
-      <translation>parameters of calculation case are invalid.</translation>
-    </message>
-    <message>
-      <source>NULL_DATA_OBJECT</source>
-      <translation>data model object is null pointer.</translation>
-    </message>
-    <message>
-      <source>RESULT_SHAPE_NULL</source>
-      <translation>shape of calculation case regions is empty.</translation>
-    </message>
-    <message>
-      <source>IMPOSSIBLE_TO_CREATE_GEOM_SHAPE</source>
-      <translation>something was wrong during publishing of GEOM shape.</translation>
-    </message>
-    <message>
-      <source>OBJ_PREFIX</source>
-      <translation>HYDRO_</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_GeomObjectDlg</name>
-    <message>
-      <source>GET_SHAPE_FROM_FILE</source>
-      <translation>Get shape from file</translation>
-    </message>
-    <message>
-      <source>IMPORT_OBSTACLE_FROM_FILE</source>
-      <translation>Import obstacle</translation>
-    </message>
-    <message>
-      <source>FILE_NAME</source>
-      <translation>File name</translation>
-    </message>
-    <message>
-      <source>OBJECT_NAME</source>
-      <translation>%1 name</translation>
-    </message>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>MODE</source>
-      <translation>Mode</translation>
-    </message>
-    <message>
-      <source>CREATE_NEW</source>
-      <translation>Create new</translation>
-    </message>
-    <message>
-      <source>MODIFY</source>
-      <translation>Modify</translation>
-    </message>
-    <message>
-      <source>OBJECT_TO_EDIT</source>
-      <translation>%1 to edit</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ImportProfilesOp</name>
-    <message>
-      <source>IMPORT_PROFILES</source>
-      <translation>Import profiles</translation>
-    </message>
-    <message>
-      <source>PROFILE_FILTER</source>
-      <translation>All files (*.* *)</translation>
-    </message>
-    <message>
-      <source>BAD_PROFILE_IDS</source>
-      <translation>numbers of bad profiles</translation>
-    </message>
-    <message>
-      <source>BAD_IMPORTED_PROFILES_FILES_TLT</source>
-      <translation>Profiles import error</translation>
-    </message>
-    <message>
-      <source>NO_ONE_PROFILE_IMPORTED</source>
-      <translation>No one profile has been import from selected file(s).</translation>
-    </message>
-    <message>
-      <source>BAD_IMPORTED_PROFILES_FILES</source>
-      <translation>The data from following files cannot be completely imported:
-%1
-</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ImportPolylineOp</name>
-    <message>
-      <source>IMPORT_POLYLINE</source>
-      <translation>Import Polyline</translation>
-    </message>
-    <message>
-      <source>IMPORT_POLYLINE_USE_NAME_ATTR</source>
-      <translation>DBF file contains 'name' field. Would you like to use the value of this field as a name of polyline?</translation>
-    </message>
-    <message>
-      <source>POLYLINE_FILTER</source>
-      <translation>Shape files (*.shp)</translation>
-    </message>
-    <message>
-      <source>BAD_IMPORTED_POLYLINE_FILES_TLT</source>
-      <translation>Polyline import error</translation>
-    </message>
-    <message>
-      <source>NO_ONE_POLYLINE_IMPORTED</source>
-      <translation>Polyline cannot be read from seleted file</translation>
-    </message>
-
-    <message>
-      <source>POLYLINE_IMPORT_FAILED_AS_POLYGON</source>
-      <translation>Cannot import content of this file as polygon</translation>
-    </message>
-    <message>
-      <source>POLYLINE_IMPORT_FAILED_AS_POLYLINE</source>
-      <translation>Cannot import content of this file as polyline</translation>
-    </message>
-    <message>
-      <source>POLYGON_IMPORTED_AS_POLYLINE</source>
-      <translation>Contour of the polygon(s) have been imported as polyline(s)</translation>
-    </message>
-    <message>
-      <source>CANT_OPEN_SHP</source>
-      <translation>Cannot open SHP file</translation>
-    </message>
-    <message>
-      <source>CANT_OPEN_SHX</source>
-      <translation>Cannot open SHX file</translation>
-    </message>
-     <message>
-      <source>SHAPE_TYPE_IS</source>
-      <translation>The shape type of file is </translation>
-    </message>
-
-
-    <message>
-      <source>BAD_IMPORTED_POLYLINE_FILES</source>
-      <translation>The data from following files cannot be completely imported:
-%1
-</translation>
-    </message>
-
-  </context>
-
- <context>
-    <name>HYDROGUI_ImportLandCoverMapDlg</name>
-    <message>
-      <source>LANDCOVERMAP_FILTER</source>
-      <translation>Shape files (*.shp)</translation>
-    </message>
-    <message>
-      <source>IMPORT_LANDCOVER_MAP_FROM_FILE</source>
-      <translation>Import land cover map from file</translation>
-    </message>
-    <message>
-      <source>FILE_NAME</source>
-      <translation>File name</translation>
-    </message>
-    <message>
-      <source>LANDCOVERMAP_NAME</source>
-      <translation>Land cover map name</translation>
-    </message>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>FOUND_POLYGONS</source>
-      <translation>Found polygons:</translation>
-    </message>
-    <message>
-      <source>USE_DBF_AS_ST</source>
-      <translation>Use dBase attributes as a Strickler Types</translation>
-    </message>
-    <message>
-      <source>AV_ATTRS</source>
-      <translation>Available attributes</translation>
-    </message>
-    <message>
-      <source>CORR</source>
-      <translation>Correspondence</translation>
-    </message>
-
-    <message>
-      <source>TABLE_H1</source>
-      <translation>Attribute</translation>
-    </message>
-    <message>
-      <source>TABLE_H2</source>
-      <translation>Strickler Type</translation>
-    </message>
-    <message>
-      <source>TABLE_H3</source>
-      <translation>Color</translation>
-    </message>
-
-    <message>
-      <source>LCM_IMPORT_WARNING</source>
-      <translation>Import of Land cover map</translation>
-    </message>
-    <message>
-      <source>DBF_LOAD_ERROR</source>
-      <translation>Cannot load DBF file</translation>
-    </message>
-    <message>
-      <source>DBF_NB_RECORDS_IS_NULL</source>
-      <translation>DBF Warning</translation>
-    </message>
-
-    <message>
-      <source>FILE_ISNT_CHOSEN</source>
-      <translation>File isn't chosen</translation>
-    </message>
-    <message>
-      <source>POLYGONS_ISNT_SELECTED</source>
-      <translation>Polygons isn't selected</translation>
-    </message>
-   <message>
-      <source>ATTRS_ISNT_SELECTED</source>
-      <translation>Attribute isn't selected</translation>
-    </message>
-   <message>
-      <source>DBF_LOAD_ERR_MESS</source>
-      <translation>Cannot open DBF file or it's corrupted</translation>
-    </message>
-
-   <message>
-      <source>DBF_NB_RECORDS_IS_NULL_MESS</source>
-      <translation>Cannot use DBF data - number of records is null</translation>
-    </message>
-
-
-  </context>
-
-  <context>
-    <name>HYDROGUI_ImportLandCoverMapOp</name>
-    <message>
-      <source>IMPORT_LANDCOVER_MAP</source>
-      <translation>Import land cover map</translation>
-    </message>
-    <message>
-      <source>DEFAULT_LANDCOVER_MAP_NAME</source>
-      <translation>Landcovermap_0</translation>
-    </message>
-    <message>
-      <source>DEF_POLYGON_NAME</source>
-      <translation>polygon</translation>
-    </message>
-    <message>
-      <source>LCM_IMPORT_WARNING</source>
-      <translation>Import of Land cover map</translation>
-    </message>
-    <message>
-      <source>CANNT_IMPORT_LCM</source>
-      <translation>Cannot import land cover map;</translation>
-    </message>
-    <message>
-      <source>CANNT_OPEN_SHP</source>
-      <translation>Cannot open SHP file</translation>
-    </message>
-    <message>
-      <source>CANNT_OPEN_SHX</source>
-      <translation>Cannot open SHX file</translation>
-    </message>
-    <message>
-      <source>SHP_TYPEFORMAT_MESS</source>
-      <translation>The shape type of file is </translation>
-    </message>
-    <message>
-      <source>CANNT_IMPORT_POLYGONS_FROM_SHP</source>
-      <translation>Cannot import choosed polygons</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ExportLandCoverMapDlg</name>
-    <message>
-      <source>EXPORT_LANDCOVERMAP</source>
-      <translation>Export land cover map to SHP file</translation>
-    </message>
-    <message>
-      <source>WRITE_ST_AS_ATTRS_TO_DBF</source>
-      <translation>Write Strickler Types as attributes values to DBF file</translation>
-    </message>
-    <message>
-      <source>ATTRS_NOT_WRITTEN_TO_DBF</source>
-      <translation>Note that in current settings the attributes will NOT be written</translation>
-    </message>
-    <message>
-      <source>LCM_DISCR_LABEL</source>
-      <translation>Current Land Cover Map contains at least one non-linear border. It will be exported in the discretization mode</translation>
-    </message>
-    <message>
-      <source>LCM_DEFL_LABEL</source>
-      <translation>Enter a deflection value:</translation>
-    </message>
-
-  </context>
-
-  <context>
-    <name>HYDROGUI_ImportSinusXOp</name>
-    <message>
-      <source>IMPORT_SINUSX</source>
-      <translation>Import from SinusX</translation>
-    </message>
-    <message>
-      <source>SINUSX_FILTER</source>
-      <translation>SinusX Files (*.sx)</translation>
-    </message>
-    <message>
-      <source>NO_ONE_ENTITY_IMPORTED</source>
-      <translation>Entities cant be read</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ExportSinusXOp</name>
-    <message>
-      <source>EXPORT_SINUSX</source>
-      <translation>Export to SinusX</translation>
-    </message>
-    <message>
-      <source>SINUSX_FILTER</source>
-      <translation>SinusX Files (*.sx)</translation>
-    </message>
-    <message>
-      <source>NO_ENTITIES_TO_EXPORT</source>
-      <translation>No entities to export</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ExportSinusXDlg</name>
-    <message>
-      <source>OBJECTS_TO_EXPORT</source>
-      <translation>Objects:</translation>
-    </message>
-    <message>
-      <source>EXPORT</source>
-      <translation>Export</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ExportFileOp</name>
-    <message>
-      <source>EXPORT_TO_SHAPE_FILE</source>
-      <translation>Export</translation>
-    </message>
-    <message>
-      <source>SHP_FILTER</source>
-      <translation>Shape Files (*.shp)</translation>
-    </message>
-    <message>
-      <source>CANNOT_BE_EXPORTED</source>
-      <translation>Following entities cannot be exported:</translation>
-    </message>
-    <message>
-      <source>ERROR_POLYLINES_OF_DIFF_KIND</source>
-      <translation>Cannot export polylines of different kind</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_GeoreferencementDlg</name>
-    <message>
-      <source>PROFILES</source>
-      <translation>Profiles</translation>
-    </message>
-    <message>
-      <source>ALL_MODE</source>
-      <translation>All</translation>
-    </message>
-    <message>
-      <source>SELECTED_MODE</source>
-      <translation>Selected</translation>
-    </message>
-    <message>
-      <source>UPDATE_SELECTION</source>
-      <translation>Update selection</translation>
-    </message>
-    <message>
-      <source>PROFILE_HEADER</source>
-      <translation>Profile</translation>
-    </message>
-    <message>
-      <source>XG_HEADER</source>
-      <translation>X1</translation>
-    </message>
-    <message>
-      <source>YG_HEADER</source>
-      <translation>Y1</translation>
-    </message>
-    <message>
-      <source>XD_HEADER</source>
-      <translation>X2</translation>
-    </message>
-    <message>
-      <source>YD_HEADER</source>
-      <translation>Y2</translation>
-    </message>
-  </context>
-  <context>
-    <name>HYDROGUI_GeoreferencementOp</name>
-    <message>
-      <source>PROFILES_GEOREFERENCEMENT</source>
-      <translation>Profiles georeferencement</translation>
-    </message>
-    <message>
-      <source>INCOMPLETE_DATA</source>
-      <translation>Incomplete data is set for '%1'.</translation>
-    </message>
-    <message>
-      <source>CONFIRMATION</source>
-      <translation>Confirmation</translation>
-    </message>
-    <message>
-      <source>CONFIRM_STORE</source>
-      <translation>Do you want to store table data in the data model?</translation>
-    </message>
-  </context>
-  <context>
-    <name>HYDROGUI_SetColorOp</name>
-    <message>
-      <source>SET_COLOR</source>
-      <translation>Set color</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ColorDlg</name>
-    <message>
-      <source>COLOR</source>
-      <translation>Color</translation>
-    </message>
-    <message>
-      <source>FILLING_COLOR</source>
-      <translation>Filling color</translation>
-    </message>
-    <message>
-      <source>OBJECT_COLOR</source>
-      <translation>Object color</translation>
-    </message>
-    <message>
-      <source>TRANSPARENT</source>
-      <translation>Transparent</translation>
-    </message>
-    <message>
-      <source>BORDER_COLOR</source>
-      <translation>Border</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_SetTransparencyOp</name>
-    <message>
-      <source>SET_TRANSPARENCY</source>
-      <translation>Set transparency</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_TransparencyDlg</name>
-    <message>
-      <source>TRANSPARENCY</source>
-      <translation>Transparency</translation>
-    </message>
-    <message>
-      <source>APPLY_AND_CLOSE</source>
-      <translation>Apply and Close</translation>
-    </message>
-    <message>
-      <source>APPLY</source>
-      <translation>Apply</translation>
-    </message>
-    <message>
-      <source>CLOSE</source>
-      <translation>Close</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_StreamDlg</name>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>STREAM_NAME</source>
-      <translation>Stream name</translation>
-    </message>
-    <message>
-      <source>STREAM_PARAMETERS</source>
-      <translation>Parameters</translation>
-    </message>
-    <message>
-      <source>STREAM_HYDRAULIC_AXIS</source>
-      <translation>Hydraulic axis</translation>
-    </message>
-    <message>
-      <source>STREAM_DDZ</source>
-      <translation>Stream ddz</translation>
-    </message>
-    <message>
-      <source>STREAM_SPATIAL_STEP</source>
-      <translation>Stream spatial step</translation>
-    </message>
-
-    <message>
-      <source>ADD</source>
-      <translation>Add</translation>
-    </message>
-    <message>
-      <source>REMOVE</source>
-      <translation>Remove</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_StreamOp</name>
-    <message>
-      <source>CREATE_STREAM_ERROR</source>
-      <translation>Stream creation error</translation>
-    </message>
-     <message>
-      <source>CREATE_STREAM</source>
-      <translation>Create stream</translation>
-    </message>
-    <message>
-      <source>EDIT_STREAM</source>
-      <translation>Edit stream</translation>
-    </message>
-    <message>
-      <source>DEFAULT_STREAM_NAME</source>
-      <translation>Stream</translation>
-    </message>
-    <message>
-      <source>WARNING</source>
-      <translation>Warning</translation>
-    </message>
-    <message>
-      <source>IGNORED_PROFILES</source>
-      <translation>The following profile(s) will be ignored:</translation>
-    </message>
-    <message>
-      <source>INVALID_PROFILES</source>
-      <translation>Invalid profiles: 
-%1</translation>
-    </message>
-    <message>
-      <source>EXISTING_PROFILES</source>
-      <translation>Existing profiles: 
-%1</translation>
-    </message>
-    <message>
-      <source>NOT_INTERSECTED_PROFILES</source>
-      <translation>Not intersected with the hydraulic axis: 
-%1</translation>
-    </message>
-    <message>
-      <source>AXIS_NOT_DEFINED</source>
-      <translation>Hydraulic axis is not defined.</translation>
-    </message>
-    <message>
-      <source>PROFILES_NOT_DEFINED</source>
-      <translation>At least 2 profiles should be defined.</translation>
-    </message>
-    <message>
-      <source>CONFIRMATION</source>
-      <translation>Confirmation</translation>
-    </message>
-    <message>
-      <source>CONFIRM_AXIS_CHANGE</source>
-      <translation>The following profiles don't intersect the axis:
-%1
-
-Do you want to remove these profiles and continue?</translation>
-    </message>
-    <message>
-      <source>BAD_SELECTED_POLYLINE_TLT</source>
-      <translation>Polyline is not appropriate for channel creation</translation>
-    </message>
-    <message>
-      <source>BAD_SELECTED_POLYLINE_MSG</source>
-      <translation>Polyline '%1' can not be used as hydraulic axis for channel.
-Polyline should consist from one not closed curve.</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ChannelDlg</name>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>CHANNEL_NAME</source>
-      <translation>Channel name</translation>
-    </message>
-    <message>
-      <source>CHANNEL_PARAMETERS</source>
-      <translation>Parameters</translation>
-    </message>
-    <message>
-      <source>CHANNEL_GUIDE_LINE</source>
-      <translation>Guide line</translation>
-    </message>
-    <message>
-      <source>CHANNEL_PROFILE</source>
-      <translation>Profile</translation>
-    </message>
-    <message>
-      <source>EQUI_DISTANCE</source>
-      <translation>Equidistance</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ChannelOp</name>
-    <message>
-      <source>CREATE_CHANNEL</source>
-      <translation>Create channel</translation>
-    </message>
-    <message>
-      <source>EDIT_CHANNEL</source>
-      <translation>Edit channel</translation>
-    </message>
-    <message>
-      <source>DEFAULT_CHANNEL_NAME</source>
-      <translation>Channel</translation>
-    </message>
-    <message>
-      <source>GUIDE_LINE_IS_NOT_SELECTED</source>
-      <translation>Guide line is not chosen</translation>
-    </message>
-    <message>
-      <source>PROFILE_IS_NOT_SELECTED</source>
-      <translation>Profile is not chosen</translation>
-    </message>
-  </context>
-  <context>
-    <name>HYDROGUI_DigueDlg</name>
-    <message>
-      <source>DIGUE_NAME</source>
-      <translation>Digue name</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_DigueOp</name>
-    <message>
-      <source>CREATE_DIGUE</source>
-      <translation>Create digue</translation>
-    </message>
-    <message>
-      <source>EDIT_DIGUE</source>
-      <translation>Edit digue</translation>
-    </message>
-    <message>
-      <source>DEFAULT_DIGUE_NAME</source>
-      <translation>Digue</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_StricklerTableDlg</name>
-    <message>
-      <source>IMPORT_STRICKLER_TABLE_FILE</source>
-      <translation>Import Strickler table file</translation>
-    </message>
-    <message>
-      <source>EXPORT_STRICKLER_TABLE_FILE</source>
-      <translation>Export Strickler table file</translation>
-    </message>
-    <message>
-      <source>FILE_NAME</source>
-      <translation>File name</translation>
-    </message>
-    <message>
-      <source>STRICKLER_TABLE_NAME</source>
-      <translation>Strickler table name</translation>
-    </message>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>DEFAULT_STRICKLER_TABLE_NAME</source>
-      <translation>Strickler table</translation>
-    </message>
-    <message>
-      <source>STRICKLER_TABLE_TABLE</source>
-      <translation>Strickler table definition</translation>
-    </message>
-    <message>
-      <source>ADD</source>
-      <translation>Add</translation>
-    </message>
-    <message>
-      <source>REMOVE</source>
-      <translation>Remove</translation>
-    </message>
-    <message>
-      <source>CLEAR_ALL</source>
-      <translation>Clear all</translation>
-    </message>
-    <message>
-      <source>STRICKLER_TYPE</source>
-      <translation>Type</translation>
-    </message>
-    <message>
-      <source>STRICKLER_COEFFICIENT</source>
-      <translation>Coefficient</translation>
-    </message>
-    <message>
-      <source>STRICKLER_TABLE_ATTR_NAME</source>
-      <translation>QGIS attribute name</translation>
-    </message>
-    <message>
-      <source>ATTR_NAME</source>
-      <translation>Attribute name</translation>
-    </message>
-    <message>
-      <source>ATTR_VALUE</source>
-      <translation>Attr.value</translation>
-    </message>
-    <message>
-      <source>COLOR</source>
-      <translation>Color</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_StricklerTableOp</name>
-    <message>
-      <source>IMPORT_STRICKLER_TABLE</source>
-      <translation>Import Strickler table</translation>
-    </message>
-    <message>
-      <source>EXPORT_STRICKLER_TABLE</source>
-      <translation>Export Strickler table</translation>
-    </message>
-    <message>
-      <source>EDIT_STRICKLER_TABLE</source>
-      <translation>Edit Strickler table</translation>
-    </message>
-    <message>
-      <source>SELECT_STRICKLER_TABLE_FILE</source>
-      <translation>The Strickler table file is not chosen</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_LandCoverMapDlg</name>
-    <message>
-      <source>DEFAULT_LAND_COVER_MAP_NAME</source>
-      <translation>Land cover map</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_MAP_NAME</source>
-      <translation>Land cover map name</translation>
-    </message>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_MAP_PARAMETERS</source>
-      <translation>Parameters</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_MAP_POLYLINE_FACE</source>
-      <translation>Polyline / Face</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_MAP_STRICKLER_TYPE</source>
-      <translation>Strickler type</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_MAP_SELECTED_FACES</source>
-      <translation>
-        
-  This operation is performed on a set of land covers selected in the 3D Viewer.
-        
-  Number of selected land covers: </translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_LandCoverMapOp</name>
-    <message>
-      <source>CREATE_LAND_COVER_MAP</source>
-      <translation>Create land cover map</translation>
-    </message>
-    <message>
-      <source>ADD_LAND_COVER</source>
-      <translation>Add land cover to the land cover map</translation>
-    </message>
-    <message>
-      <source>REMOVE_LAND_COVER</source>
-      <translation>Remove land cover from the land cover map</translation>
-    </message>
-    <message>
-      <source>SPLIT_LAND_COVER</source>
-      <translation>Split land cover(s) inside the land cover map</translation>
-    </message>
-    <message>
-      <source>MERGE_LAND_COVER</source>
-      <translation>Merge land covers inside the land cover map</translation>
-    </message>
-    <message>
-      <source>CHANGE_LAND_COVER_TYPE</source>
-      <translation>Change Strickler type(s) assigned to the land cover(s) inside the land cover map</translation>
-    </message>
-    <message>
-      <source>POLYLINE_FACE_NOT_DEFINED</source>
-      <translation>Polyline / Face object should be defined.</translation>
-    </message>
-    <message>
-      <source>STRICKLER_TYPE_NOT_DEFINED</source>
-      <translation>Strickler type should be defined.</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_MAP_UNDEFINED</source>
-      <translation>Land cover map is undefined.</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_NOT_ADDED</source>
-      <translation>Land cover can not be added.</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_NOT_REMOVED</source>
-      <translation>Land cover can not be removed.</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_NOT_SPLIT</source>
-      <translation>Land cover can not be split.</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_NOT_MERGED</source>
-      <translation>Land cover can not be merged.</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_TYPE_NOT_CHANGED</source>
-      <translation>Strickler type can not be changed for all selected land covers.</translation>
-    </message>
-    <message>
-      <source>LAND_COVER_OBJECT_CANNOT_BE_CREATED</source>
-      <translation>Land Cover object can not be created</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_TranslateObstacleDlg</name>
-    <message>
-      <source>OBSTACLE_NAME</source>
-      <translation>Obstacle name</translation>
-    </message>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>TRANSLATION_ARGUMENTS</source>
-      <translation>Arguments</translation>
-    </message>
-    <message>
-      <source>DX</source>
-      <translation>Dx</translation>
-    </message>
-    <message>
-      <source>DY</source>
-      <translation>Dy</translation>
-    </message>
-    <message>
-      <source>DZ</source>
-      <translation>Dz</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_TranslateObstacleOp</name>
-    <message>
-      <source>TRANSLATE_OBSTACLE</source>
-      <translation>Translation of an obstacle</translation>
-    </message>
-  </context>
-  
-
-  <context>
-    <name>HYDROGUI_RunBrowser</name>
-    <message>
-        <source>EXTERNAL_BROWSER_CANNOT_SHOW_PAGE</source>
-        <translation>External browser &quot;%1&quot; can not show help page &quot;%2&quot;. You could change it in preferences.</translation>
-    </message>
-    <message>
-        <source>WRN_DEFINE_EXTERNAL_BROWSER</source>
-        <translation>External browser is not found. Do you want to define it in preferences?</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ZLevelsDlg</name>
-    <message>
-        <source>CHANGE_LAYER_ORDER</source>
-        <translation>Change layer order</translation>
-    </message>
-    <message>
-        <source>ALL_OBJECTS</source>
-        <translation>All objects</translation>
-    </message>
-    <message>
-        <source>ALL_OBJECTS_UNCHECKED_TLT</source>
-        <translation>Include hidden objects to the list</translation>
-    </message>
-    <message>
-        <source>ALL_OBJECTS_CHECKED_TLT</source>
-        <translation>Exclude hidden objects from the list</translation>
-    </message>
-    <message>
-      <source>APPLY_AND_CLOSE</source>
-      <translation>Apply and Close</translation>
-    </message>
-    <message>
-        <source>APPLY</source>
-        <translation>Apply</translation>
-    </message>
-    <message>
-        <source>CLOSE</source>
-        <translation>Close</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_OrderedListWidget</name>
-    <message>
-        <source>TOP_TLT</source>
-        <translation>Move the item(s) on top</translation>
-    </message>
-    <message>
-        <source>UP_TLT</source>
-        <translation>Move the item(s) up</translation>
-    </message>
-    <message>
-        <source>DOWN_TLT</source>
-        <translation>Move the item(s) down</translation>
-    </message>
-    <message>
-        <source>BOTTOM_TLT</source>
-        <translation>Move the item(s) on bottom</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_PriorityWidget</name>
-    <message>
-      <source>ADD</source>
-      <translation>Add</translation>
-    </message>
-    <message>
-      <source>REMOVE</source>
-      <translation>Remove</translation>
-    </message>
-    <message>
-      <source>CLEAR_ALL</source>
-      <translation>Clear all</translation>
-    </message>
-    <message>
-      <source>INCORRECT_INPUT</source>
-      <translation>Incorrect input</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_PriorityTableModel</name>
-    <message>
-      <source>LESS</source>
-      <translation>&lt;</translation>
-    </message>
-    <message>
-      <source>GREATER</source>
-      <translation>&gt;</translation>
-    </message>
-    <message>
-      <source>PRIORITY</source>
-      <translation>Priority</translation>
-    </message>
-    <message>
-      <source>ZMIN</source>
-      <translation>Zmin</translation>
-    </message>
-    <message>
-      <source>ZMAX</source>
-      <translation>Zmax</translation>
-    </message>
-    <message>
-      <source>OBJECT1</source>
-      <translation>Object 1</translation>
-    </message>
-    <message>
-      <source>OBJECT2</source>
-      <translation>Object 2</translation>
-    </message>
-    <message>
-      <source>BATHYMETRY</source>
-      <translation>Bathymetry</translation>
-    </message>
-    <message>
-      <source>ALREADY_EXISTS</source>
-      <translation>The selected objects combination already exists.</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_RiverBottomDlg</name>
-    <message>
-      <source>STREAM_OBJECT</source>
-      <translation>Stream object</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_RiverBottomOp</name>
-    <message>
-      <source>FIND_STREAM_BOTTOM</source>
-      <translation>Find stream bottom</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ProfileInterpolateDlg</name>
-    <message>
-      <source>STREAM_OBJECT</source>
-      <translation>Stream object</translation>
-    </message>
-    <message>
-      <source>INTERPOLATOR</source>
-      <translation>Interpolator</translation>
-    </message>
-    <message>
-      <source>DESCRIPTION</source>
-      <translation>Description</translation>
-    </message>
-    <message>
-      <source>PROFILE_1</source>
-      <translation>Profile 1</translation>
-    </message>
-    <message>
-      <source>PROFILE_2</source>
-      <translation>Profile 2</translation>
-    </message>
-    <message>
-      <source>NUMBER_OF_PROFILES</source>
-      <translation>Number of profiles</translation>
-    </message>
-    <message>
-      <source>PARAMETERS</source>
-      <translation>Parameters</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ProfileInterpolateOp</name>
-    <message>
-      <source>PROFILE_INTERPOLATION</source>
-      <translation>Profile interpolation</translation>
-    </message>
-    <message>
-      <source>INTERPOLATION_ERROR</source>
-      <translation>Interpolation error</translation>
-    </message>
-    <message>
-      <source>CALCULATE_ERROR</source>
-      <translation>Can't perform calculation: %1</translation>
-    </message>
-    <message>
-      <source>CANT_GET_STREAM_OBJECT</source>
-      <translation>Can't obtain stream oject \"%1\"</translation>
-    </message>
-  </context>
-  
-  <context>
-    <name>HYDROGUI_RecognizeContoursDlg</name>
-    <message>
-      <source>NAME</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <source>ORIGINAL_IMAGE</source>
-      <translation>Original image</translation>
-    </message>
-    <message>
-      <source>RECOGNIZED_POLYLINES</source>
-      <translation>Polylines</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_RecognizeContoursOp</name>
-    <message>
-      <source>CONTOURS_RECOGNITION</source>
-      <translation>Contours recognition</translation>
-    </message>
-    <message>
-      <source>NO_DETECTED_CONTOURS</source>
-      <translation>No contours were detected.</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_SplitPolylinesOp</name>
-    <message>
-      <source>SPLIT_POLYLINES</source>
-      <translation>Split polylines</translation>
-    </message>
-    <message>
-      <source>SPLIT_POLYLINE_BY_TOOL_WARNING_TITLE</source>
-      <translation>Split polyline by tool</translation>
-    </message>
-    <message>
-      <source>SPLIT_POLYLINE_BY_TOOL_WARNING_MSG</source>
-      <translation>The split polyline is not intersected by the tool.</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ShowAttrPolyOp</name>
-    <message>
-      <source>SHOWATTR_POLYLINE</source>
-      <translation>DBF attributes of polyline</translation>
-    </message>
-    <message>
-      <source>SHOWATTR_POLY_NO_ATTR</source>
-      <translation>This polyline does not contain DBF information</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_SplitPolylinesDlg</name>
-    <message>
-      <source>POLYLINES</source>
-      <translation>Polylines</translation>
-    </message>
-    <message>
-      <source>POINT</source>
-      <translation>Point</translation>
-    </message>
-    <message>
-      <source>POLYLINE</source>
-      <translation>Polyline</translation>
-    </message>
-    <message>
-      <source>TOOL_POLYLINE</source>
-      <translation>Tool polyline</translation>
-    </message>
-    <message>
-      <source>SPLIT_POLYLINES</source>
-      <translation>Split polylines</translation>
-    </message>
-    <message>
-      <source>BY_POINT</source>
-      <translation>By point</translation>
-    </message>
-    <message>
-      <source>BY_TOOL</source>
-      <translation>By tool</translation>
-    </message>
-    <message>
-      <source>COMPLETE_SPLIT</source>
-      <translation>Complete split</translation>
-    </message>
-    <message>
-      <source>RESULT_NAME</source>
-      <translation>Result name prefix:</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_MergePolylinesDlg</name>
-    <message>
-      <source>POLYLINES</source>
-      <translation>Polylines</translation>
-    </message>
-    <message>
-      <source>MERGE_POLYLINES</source>
-      <translation>Merge polylines</translation>
-    </message>
-    <message>
-      <source>RESULT_NAME</source>
-      <translation>Result name:</translation>
-    </message>
-    <message>
-      <source>IS_CONNECT</source>
-      <translation>Connect by a new segment</translation>
-    </message>
-  </context>
-  <context>
-    <name>HYDROGUI_MergePolylinesOp</name>
-    <message>
-      <source>MERGE_POLYLINES</source>
-      <translation>Merge polylines</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ObjListBox</name>
-    <message>
-      <source>INCLUDE</source>
-      <translation>Include</translation>
-    </message>
-    <message>
-      <source>EXCLUDE</source>
-      <translation>Exclude</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_PolylineExtractionOp</name>
-    <message>
-      <source>POLYLINE_EXTRACTION</source>
-      <translation>Polyline extraction</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_PolylineStyleDlg</name>
-    <message>
-      <source>POLYLINE_STYLE</source>
-      <translation>Polyline style</translation>
-    </message>
-    <message>
-      <source>PREF_POLYLINE_ARROW</source>
-      <translation>Polyline arrow</translation>
-    </message>
-    <message>
-      <source>PREF_POLYLINE_ARROW_SIZE</source>
-      <translation>Polyline arrow size</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_ImportBCPolygonOp</name>
-     <message>
-      <source>BC_POLYGON_FILTER</source>
-      <translation>Shape files (*.shp)</translation>
-    </message>
-  </context>
-  <context>
-    <name>HYDROGUI_SetBoundaryTypePolygonOp</name>
-     <message>
-      <source>SET_BOUNDARY_TYPE_POLYGON</source>
-      <translation>Set Boundary Type</translation>
-    </message>
-  </context>
-  <context>
-    <name>HYDROGUI_SetBoundaryTypePolygonDlg</name>
-     <message>
-      <source>BOUNDARY_TYPE</source>
-      <translation>Boundary Type: </translation>
-    </message>
-     <message>
-      <source>CUT_TOOL</source>
-      <translation>Cut Tool</translation>
-    </message>
-     <message>
-      <source>INCLUDE_TOOL</source>
-      <translation>Include Tool</translation>
-    </message>
-     <message>
-      <source>SELECTION_TOOL</source>
-      <translation>Selection tool</translation>
-    </message>
-  </context>
-  <context>
-    <name>HYDROGUI_MeasurementToolDlg</name>
-     <message>
-      <source>LINEAR_DISTANCE</source>
-      <translation>Linear distance</translation>
-    </message>
-     <message>
-      <source>POLYLINE_DISTANCE</source>
-      <translation>Distance on polyline:</translation>
-    </message>
-     <message>
-      <source>TOTAL_DST</source>
-      <translation>Distance:</translation>
-    </message>
-     <message>
-      <source>CLEAR</source>
-      <translation>Clear</translation>
-    </message>
-      <message>
-      <source>CLOSE</source>
-      <translation>Close</translation>
-    </message>
-  </context>
-
-  <context>
-    <name>HYDROGUI_MeasurementToolOp</name>
-     <message>
-      <source>MEASUREMENT_TOOL</source>
-      <translation>Measurement Tool</translation>
-    </message>
-  </context>
-
-</TS>
+<!DOCTYPE TS> \r
+<TS version="1.1" >\r
+  \r
+  <context>\r
+    <name>@default</name>\r
+    <message>\r
+      <source>RENAME_TO</source>\r
+      <translation>Rename to %1</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_IMAGE_NAME</source>\r
+      <translation>Image</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_POLYLINE_NAME</source>\r
+      <translation>Polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_OBSTACLE_NAME</source>\r
+      <translation>Obstacle</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_POLYLINE_3D_NAME</source>\r
+      <translation>Polyline3D</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_PROFILE_NAME</source>\r
+      <translation>Profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_VISUAL_STATE_NAME</source>\r
+      <translation>Visual state</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_BATHYMETRY_NAME</source>\r
+      <translation>Bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_CALCULATION_CASE_NAME</source>\r
+      <translation>Case</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_IMMERSIBLE_ZONE_NAME</source>\r
+      <translation>Immersible zone</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_STRICKLER_TABLE_NAME</source>\r
+      <translation>Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_LAND_COVER_MAP_NAME</source>\r
+      <translation>Land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMAGES</source>\r
+      <translation>IMAGES</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINES</source>\r
+      <translation>POLYLINES</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINES_3D</source>\r
+      <translation>POLYLINES 3D</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILES</source>\r
+      <translation>PROFILES</translation>\r
+    </message>\r
+    <message>\r
+      <source>VISUAL_STATES</source>\r
+      <translation>VISUAL STATES</translation>\r
+    </message>\r
+    <message>\r
+      <source>BATHYMETRIES</source>\r
+      <translation>BATHYMETRIES</translation>\r
+    </message>\r
+    <message>\r
+      <source>CALCULATION_CASES</source>\r
+      <translation>CALCULATION CASES</translation>\r
+    </message>\r
+    <message>\r
+      <source>OBSTACLES</source>\r
+      <translation>OBSTACLES</translation>\r
+    </message>\r
+    <message>\r
+      <source>STRICKLER_TABLES</source>\r
+      <translation>STRICKLER TABLES</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_MAPS</source>\r
+      <translation>LAND COVER MAPS</translation>\r
+    </message>\r
+    <message>\r
+      <source>ARTIFICIAL_OBJECTS</source>\r
+      <translation>ARTIFICIAL OBJECTS</translation>\r
+    </message>\r
+    <message>\r
+      <source>NATURAL_OBJECTS</source>\r
+      <translation>NATURAL OBJECTS</translation>\r
+    </message>\r
+    <message>\r
+      <source>BOUNDARY_POLYGONS</source>\r
+      <translation>BOUNDARY POLYGONS</translation>\r
+    </message>\r
+    <message>\r
+      <source>BATHYMETRY_FILTER</source>\r
+      <translation>Bathymetry files (*.xyz);;ASC files (*.asc);;All files (*.* *)</translation>\r
+    </message>\r
+    <message>\r
+      <source>CASE_BOUNDARY</source>\r
+      <translation>Boundary</translation>\r
+    </message>\r
+    <message>\r
+      <source>CASE_BOUNDARY_POLYGONS</source>\r
+      <translation>Boundary Polygons</translation>\r
+    </message>\r
+    <message>\r
+      <source>CASE_REFERENCE_ZONES</source>\r
+      <translation>Reference zones</translation>\r
+    </message>\r
+    <message>\r
+      <source>CASE_REGIONS</source>\r
+      <translation>REGIONS</translation>\r
+    </message>\r
+    <message>\r
+      <source>CASE_LAND_COVER_MAP</source>\r
+      <translation>LAND COVER MAP</translation>\r
+    </message>\r
+    <message>\r
+      <source>CASE_SPLIT_GROUPS</source>\r
+      <translation>Split groups</translation>\r
+    </message>\r
+    <message>\r
+      <source>FILE_CAN_NOT_BE_IMPORTED</source>\r
+      <translation>The file '%1' can not be imported: format *.%2 is not supported.</translation>\r
+    </message>\r
+    <message>\r
+      <source>FILE_NOT_EXISTS_OR_CANT_BE_READ</source>\r
+      <translation>The file '%1'\r
+does not exist or you have not enough permissions to open it.</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMAGE_FILTER_IMPORT</source>\r
+      <translation>Image files (*.bmp *.jpg *.jpeg *.png *.tif *.ecw);;All files (*.* *)</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMAGE_FILTER_EXPORT</source>\r
+      <translation>Image files (*.bmp *.jpg *.jpeg *.png *.tif );;All files (*.* *)</translation>\r
+    </message>\r
+    <message>\r
+      <source>INCORRECT_OBJECT_NAME</source>\r
+      <translation>The object name must not be an empty string value.</translation>\r
+    </message>\r
+    <message>\r
+      <source>EMPTY_FILENAMES</source>\r
+      <translation>Files list is empty</translation>\r
+    </message>\r
+    <message>\r
+      <source>BATHYMETRY_IMPORT_WARNING</source>\r
+      <translation>Import of bahemetry - warning</translation>\r
+    </message>\r
+\r
+    <message>\r
+      <source>INSUFFICIENT_INPUT_DATA</source>\r
+      <translation>Insufficient input data</translation>\r
+    </message>\r
+    <message>\r
+      <source>INPUT_VALID_DATA</source>\r
+      <translation>Please enter valid data and try again.</translation>\r
+    </message>\r
+    <message>\r
+      <source>LOAD_ERROR</source>\r
+      <translation>Study could not be loaded</translation>\r
+    </message>\r
+    <message>\r
+      <source>SHAPE_IMAGE_ERROR</source>\r
+      <translation>Image shape could not be created</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMAGE_CAN_NOT_BE_CREATED</source>\r
+      <translation>It is not possible to create a presentation for OCC 3D view. </translation>\r
+    </message>\r
+    <message>\r
+      <source>IMAGE_TRANSFORMATION_CAN_NOT_BE_APPLYED</source>\r
+      <translation>The transformated image is out of range.</translation>\r
+    </message>\r
+    <message>\r
+      <source>FILE_CAN_NOT_BE_CREATED</source>\r
+      <translation>The temporary file '%1' can not be created.</translation>\r
+    </message>\r
+    <message>\r
+      <source>OBJECT_EXISTS_IN_DOCUMENT</source>\r
+      <translation>Object with name '%1' already exists in the document.</translation>\r
+    </message>\r
+    <message>\r
+      <source>SAVE_ERROR</source>\r
+      <translation>Study could not be saved</translation>\r
+    </message>\r
+    <message>\r
+      <source>ZONE_POLYLINE</source>\r
+      <translation>Polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>ZONE_BATHYMETRY</source>\r
+      <translation>Bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>OBJECT_GROUPS</source>\r
+      <translation>Groups</translation>\r
+    </message>\r
+    <message>\r
+      <source>MERGE_UNKNOWN</source>\r
+      <translation>Unresolved Conflict</translation>\r
+    </message>\r
+    <message>\r
+      <source>MERGE_ZMIN</source>\r
+      <translation>ZMIN</translation>\r
+    </message>\r
+    <message>\r
+      <source>MERGE_ZMAX</source>\r
+      <translation>ZMAX</translation>\r
+    </message>\r
+    <message>\r
+      <source>NEW_REGION</source>\r
+      <translation>&lt;New region&gt;</translation>\r
+    </message>\r
+    <message>\r
+      <source>OBSTACLE_FILTER</source>\r
+      <translation>BREP files (*.brep);;IGES files (*.iges *.igs);;STEP files (*.step *.stp);;\r
+All supported formats (*.brep *.iges *.igs *.step *.stp)</translation>\r
+    </message>\r
+    <message>\r
+      <source>COORDINATES_INFO</source>\r
+      <translation>Local CS: (%1, %2); Global CS: (%3, %4)</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE3D_POLYLINE</source>\r
+      <translation>Polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE3D_PROFILE</source>\r
+      <translation>Profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE3D_BATHYMETRY</source>\r
+      <translation>Bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>CHANNEL_GUIDE_LINE</source>\r
+      <translation>Guide line</translation>\r
+    </message>\r
+    <message>\r
+      <source>CHANNEL_PROFILE</source>\r
+      <translation>Profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>STREAM_HYDRAULIC_AXIS</source>\r
+      <translation>Hydraulic axis</translation>\r
+    </message>\r
+    <message>\r
+      <source>STREAM_PROFILES</source>\r
+      <translation>Profiles</translation>\r
+    </message>\r
+    <message>\r
+      <source>BC_POLYGON_POLYLINE</source>\r
+      <translation>Boundary Polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>STREAM_WARNINGS</source>\r
+      <translation>Stream Warnings</translation>\r
+    </message>\r
+     <message>\r
+      <source>STREAM_PROJECTION_FAILED</source>\r
+      <translation>Warning: Projection of banks/profiles are failed</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_TAB_GENERAL</source>\r
+      <translation>General</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_GROUP_CURSOR</source>\r
+      <translation>Cursor for edition operations</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_TYPE_OF_CURSOR</source>\r
+      <translation>Type</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_GROUP_VIEWER</source>\r
+      <translation>Viewer</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_VIEWER_AUTO_FITALL</source>\r
+      <translation>Make automatic fit all after show object operation</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_VIEWER_ZOOM_SHUTOFF</source>\r
+      <translation>Conservation of zoom when top-view/etc is activated</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_VIEWER_CHAINED_PANNING</source>\r
+      <translation>Chained panning</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_GROUP_STRICKLER_TABLE</source>\r
+      <translation>Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_DEFAULT_STRICKLER_COEFFICIENT</source>\r
+      <translation>Default Strickler coefficient</translation>\r
+    </message>\r
+    <message>\r
+      <source>STRICKLER_TABLE_FILTER</source>\r
+      <translation>Strickler table files (*.txt);;All files (*.* *)</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_POLYLINES</source>\r
+      <translation>Polylines</translation>\r
+    </message>\r
+    <message>\r
+      <source>OVERVIEW</source>\r
+      <translation>Overview</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_CalculationDlg</name>\r
+    <message>\r
+      <source>CALCULATION_NAME</source>\r
+      <translation>Calculation case name</translation>\r
+    </message>\r
+    <message>\r
+      <source>CALCULATION_REFERENCE_OBJECTS</source>\r
+      <translation>Objects</translation>\r
+    </message>\r
+    <message>\r
+      <source>INCLUDED_OBJECTS</source>\r
+      <translation>Included objects</translation>\r
+    </message>\r
+    <message>\r
+      <source>AVAILABLE_GROUPS</source>\r
+      <translation>Available groups</translation>\r
+    </message>\r
+    <message>\r
+      <source>INCLUDED_GROUPS</source>\r
+      <translation>Included groups</translation>\r
+    </message>\r
+    <message>\r
+      <source>INCLUDED_BOUNDARY_POLYGONS_CUT</source>\r
+      <translation>Included boundary polygons (cut tools)</translation>\r
+    </message>\r
+    <message>\r
+      <source>INCLUDED_BOUNDARY_POLYGONS_INCSEL</source>\r
+      <translation>Included boundary polygons (include/selection tools)</translation>\r
+    </message>\r
+    <message>\r
+      <source>AVAILABLE_BOUNDARY_POLYGONS</source>\r
+      <translation>Available boundary polygons</translation>\r
+    </message>\r
+    <message>\r
+      <source>LIMITS</source>\r
+      <translation>Limits</translation>\r
+    </message>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>BATHYMETRY</source>\r
+      <translation>Bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>INCLUDE</source>\r
+      <translation>Include &gt;&gt;</translation>\r
+    </message>\r
+    <message>\r
+      <source>EXCLUDE</source>\r
+      <translation>Exclude &lt;&lt;</translation>\r
+    </message>\r
+    <message>\r
+      <source>ADD</source>\r
+      <translation>Add</translation>\r
+    </message>\r
+    <message>\r
+      <source>REMOVE</source>\r
+      <translation>Remove</translation>\r
+    </message>\r
+    <message>\r
+      <source>EMPTY_GEOMETRY_OBJECTS</source>\r
+      <translation>No one geometry object is selected, should be at least one.</translation>\r
+    </message>\r
+    <message>\r
+      <source>MODE</source>\r
+      <translation>Mode</translation>\r
+    </message>\r
+    <message>\r
+      <source>AUTO</source>\r
+      <translation>Auto</translation>\r
+    </message>\r
+    <message>\r
+      <source>MANUAL</source>\r
+      <translation>Manual</translation>\r
+    </message>\r
+    <message>\r
+      <source>PRIORITY</source>\r
+      <translation>Priority</translation>\r
+    </message>\r
+    <message>\r
+      <source>STRICKLER_TABLE</source>\r
+      <translation>Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_MAP</source>\r
+      <translation>Land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>STRICKLER_TYPE</source>\r
+      <translation>Strickler type from land cover</translation>\r
+    </message>\r
+    <message>\r
+      <source>RESULTS_ON_GEOMETRY_OBJECTS</source>\r
+      <translation>Results on geometry objects</translation>\r
+    </message>\r
+    <message>\r
+      <source>REGENERATE_COLORS</source>\r
+      <translation>Regenerate colors</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_CalculationOp</name>\r
+    <message>\r
+      <source>CREATE_CALCULATION</source>\r
+      <translation>Create calculation case</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_CALCULATION</source>\r
+      <translation>Edit calculation case</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREVIEW_CASE_ZONES</source>\r
+      <translation>Preview case zones</translation>\r
+    </message>\r
+    <message>\r
+      <source>REGIONS_CHANGED</source>\r
+      <translation>Regions list modification</translation>\r
+    </message>\r
+    <message>\r
+      <source>ORDER_CHANGED</source>\r
+      <translation>Order of objects is changed</translation>\r
+    </message>\r
+    <message>\r
+      <source>RULE_CHANGED</source>\r
+      <translation>Priority rule for objects is changed</translation>\r
+    </message>\r
+    <message>\r
+      <source>CONFIRM_SPLITTING_ZONES_RECALCULATION_REGIONS</source>\r
+      <translation>Case splitting zones already exist and will be recalculated after regions list modification. Do you confirm the recalculation?</translation>\r
+    </message>\r
+    <message>\r
+      <source>MODE_CHANGED</source>\r
+      <translation>Change creation mode</translation>\r
+    </message>\r
+    <message>\r
+      <source>CONFIRM_SPLITTING_ZONES_RECALCULATION_MODE</source>\r
+      <translation>Case splitting zones already exist and will be recalculated after mode change. Do you confirm the recalculation?</translation>\r
+    </message>\r
+    <message>\r
+      <source>EMPTY_REGIONS</source>\r
+      <translation>Empty regions</translation>\r
+    </message>\r
+    <message>\r
+      <source>CONFIRM_CONTINUE_WITH_OBJECTS_NOT_INCLUDED_TO_REGION</source>\r
+      <translation>Region(s): %1 do not contain any objects. Do you want to continue?</translation>\r
+    </message>\r
+    <message>\r
+      <source>CONFIRM_LAND_COVER_PARTITION_RECALCULATION_REGIONS</source>\r
+      <translation>Case land covers partition already exists and will be recalculated after regions list modification. Do you confirm the recalculation?</translation>\r
+    </message>\r
+    <message>\r
+      <source>CONFIRM_LAND_COVER_PARTITION_RECALCULATION_MODE</source>\r
+      <translation>Case land covers partition already exists and will be recalculated after mode change. Do you confirm the recalculation?</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_DataBrowser</name>\r
+    <message>\r
+      <source>REF_OBJECT_COLUMN</source>\r
+      <translation>Ref.Object</translation>\r
+    </message>\r
+    <message>\r
+      <source>ALTITUDE_COLUMN</source>\r
+      <translation>Altitude.Object</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_COLUMN</source>\r
+      <translation>Land cover</translation>\r
+    </message>\r
+    <message>\r
+      <source>ZONE_TO_NEW_REGION</source>\r
+      <translation>Create a new region</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_CopyPasteOp</name>\r
+    <message>\r
+      <source>COPY_PASTE</source>\r
+      <translation>Copy/paste</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_DuplicateOp</name>\r
+    <message>\r
+      <source>DUPLICATE</source>\r
+      <translation>Duplicate</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_CopyPastePositionOp</name>\r
+    <message>\r
+      <source>COPY_PASTE_VIEW_POSITION</source>\r
+      <translation>Copy/paste view position</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_DeleteOp</name>\r
+    <message>\r
+      <source>DELETE</source>\r
+      <translation>Delete</translation>\r
+    </message>\r
+    <message>\r
+      <source>DELETE_OBJECTS</source>\r
+      <translation>Delete objects</translation>\r
+    </message>\r
+    <message>\r
+      <source>DELETE_OBJECTS_IMPOSIBLE</source>\r
+      <translation>One or more selected objects can not be deleted separately from parent object.</translation>\r
+    </message>\r
+    <message>\r
+      <source>DELETED_OBJECTS_HAS_BACKREFERENCES</source>\r
+      <translation>One or more selected objects are used to create another ones.\r
+First remove objects which are created on their basis.\r
+\r
+%1</translation>\r
+    </message>\r
+    <message>\r
+      <source>DELETE_OBJECT_NAME</source>\r
+      <translation>"%1"</translation>\r
+    </message>\r
+    <message>\r
+      <source>DELETE_OBJECT_IS_USED_FOR</source>\r
+      <translation>Object "%1" is used for %2</translation>\r
+    </message>\r
+    <message>\r
+      <source>DELETE_LAST_TABLE_WRN</source>\r
+      <translation>You are about to delete all Strickler tables in the study.\r
+After that the study will contain only the default Strickler table.\r
+Do you want to continue?</translation>\r
+    </message>\r
+    <message>\r
+      <source>WARNING</source>\r
+      <translation>Warning</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_DeleteDlg</name>\r
+    <message>\r
+      <source>DELETE_OBJECTS</source>\r
+      <translation>Delete objects</translation>\r
+    </message>\r
+    <message>\r
+      <source>CONFIRM_DELETION</source>\r
+      <translation>Do you really want to delete %1 object(s)?</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ExportImageOp</name>\r
+    <message>\r
+      <source>EXPORT_IMAGE</source>\r
+      <translation>Export image</translation>\r
+    </message>\r
+    <message>\r
+      <source>EXPORT_IMAGE_TO_FILE</source>\r
+      <translation>Export image to file</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_InputPanel</name>\r
+    <message>\r
+      <source>APPLY_AND_CLOSE</source>\r
+      <translation>Apply and Close</translation>\r
+    </message>\r
+    <message>\r
+      <source>APPLY</source>\r
+      <translation>Apply</translation>\r
+    </message>\r
+    <message>\r
+      <source>CANCEL</source>\r
+      <translation>Cancel</translation>\r
+    </message>\r
+    <message>\r
+      <source>CLOSE</source>\r
+      <translation>Close</translation>\r
+    </message>\r
+    <message>\r
+      <source>HELP</source>\r
+      <translation>Help</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_Wizard</name>\r
+    <message>\r
+      <source>NEXT</source>\r
+      <translation>Next &gt;</translation>\r
+    </message>\r
+    <message>\r
+      <source>BACK</source>\r
+      <translation>&lt; Back</translation>\r
+    </message>\r
+    <message>\r
+      <source>FINISH</source>\r
+      <translation>Finish</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_ImportBathymetryDlg</name>\r
+    <message>\r
+      <source>BATHYMETRY_NAME</source>\r
+      <translation>Bathymetry name</translation>\r
+    </message>\r
+    <message>\r
+      <source>FILE_NAMES</source>\r
+      <translation>File names</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMPORT_BATHYMETRY_FROM_FILE</source>\r
+      <translation>Import bathymetry from file</translation>\r
+    </message>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>INVERT_BATHYMETRY_ALTITUDES</source>\r
+      <translation>Invert altitude values</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_ImportBathymetryOp</name>\r
+    <message>\r
+      <source>EDIT_IMPORTED_BATHYMETRY</source>\r
+      <translation>Edit imported bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMPORT_BATHYMETRY</source>\r
+      <translation>Import bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>BAD_IMPORTED_BATHYMETRY_FILE</source>\r
+      <translation>'%1'\r
+file cannot be correctly imported for a Bathymetry definition.</translation>\r
+    </message>\r
+  <message>\r
+      <source>BAD_IMPORTED_BATHYMETRY_FILES</source>\r
+      <translation>'%1'\r
+All files cannot be correctly imported for a Bathymetry definition.</translation>\r
+    </message>\r
+    \r
+</context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_ImportImageDlg</name>\r
+    <message>\r
+      <source>ACTIVATE_POINT_A_SELECTION</source>\r
+      <translation>Activate point A selection</translation>\r
+    </message>\r
+    <message>\r
+      <source>ACTIVATE_POINT_B_SELECTION</source>\r
+      <translation>Activate point B selection</translation>\r
+    </message>\r
+    <message>\r
+      <source>ACTIVATE_POINT_C_SELECTION</source>\r
+      <translation>Activate point C selection</translation>\r
+    </message>\r
+    <message>\r
+      <source>BY_REFERENCE_IMAGE</source>\r
+      <translation>Choose points on the reference image</translation>\r
+    </message>\r
+    <message>\r
+      <source>FILE_NAME</source>\r
+      <translation>File name</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMAGE_NAME</source>\r
+      <translation>Image name</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMPORT_IMAGE_FROM_FILE</source>\r
+      <translation>Import image from file</translation>\r
+    </message>\r
+    <message>\r
+      <source>MANUALLY_GEODESIC</source>\r
+      <translation>Manually input Geographic coordinates</translation>\r
+    </message>\r
+    <message>\r
+      <source>MANUALLY_LAMBERT93</source>\r
+      <translation>Manually input Plane coordinates (Lambert93)</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAMBERT93_FROM_FILE</source>\r
+      <translation>Get Plane coordinates (Lambert93) from file</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMAGE_CS</source>\r
+      <translation>Image CS</translation>\r
+    </message>\r
+    <message>\r
+      <source>GEODESIC</source>\r
+      <translation>Geographic coordinates</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAMBERT93</source>\r
+      <translation>Plane coordinates (Lambert93)</translation>\r
+    </message>\r
+    <message>\r
+      <source>POINT_LATITUDE</source>\r
+      <translation>Lat</translation>\r
+    </message>\r
+    <message>\r
+      <source>POINT_LONGITUDE</source>\r
+      <translation>Long</translation>\r
+    </message>\r
+    <message>\r
+      <source>REFERENCE_IMAGE_CS</source>\r
+      <translation>Reference Image CS</translation>\r
+    </message>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>TRANSFORM_IMAGE</source>\r
+      <translation>Transform image</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMPORT_GEO_DATA_FROM_FILE</source>\r
+      <translation>Import georeferencement data from file</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMAGE_GEOREFERENCEMENT_FILTER</source>\r
+      <translation>Image georeferencement files (*.grf);;All files (*.* *)</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_ImportImageOp</name>\r
+    <message>\r
+      <source>EDIT_IMPORTED_IMAGE</source>\r
+      <translation>Edit imported image</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMPORT_IMAGE</source>\r
+      <translation>Import image</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMPORTED_IMAGE</source>\r
+      <translation>Imported image</translation>\r
+    </message>\r
+    <message>\r
+      <source>TRANSFORM_IMAGE</source>\r
+      <translation>Transform image</translation>\r
+    </message>\r
+    <message>\r
+      <source>POINTS_A_B_ARE_IDENTICAL</source>\r
+      <translation>Points A, B are identical.</translation>\r
+    </message>\r
+    <message>\r
+      <source>POINTS_A_B_C_BELONG_TO_SINGLE_LINE</source>\r
+      <translation>Points A, B, C belong to a single line.</translation>\r
+    </message>\r
+    <message>\r
+      <source>REFERENCE_IMAGE</source>\r
+      <translation>Reference image</translation>\r
+    </message>\r
+    <message>\r
+      <source>REFERENCE_IMAGE_IS_NOT_SELECTED</source>\r
+      <translation>Reference image is not selected.</translation>\r
+    </message>\r
+    <message>\r
+      <source>REFERENCE_POINTS_A_B_ARE_IDENTICAL</source>\r
+      <translation>Reference points A, B are identical.</translation>\r
+    </message>\r
+    <message>\r
+      <source>REFERENCE_POINTS_A_B_C_BELONG_TO_SINGLE_LINE</source>\r
+      <translation>Reference points A, B, C belong to a single line.</translation>\r
+    </message>\r
+    <message>\r
+      <source>TRANSFORMATION_MATRIX_CANNOT_BE_COMPUTED</source>\r
+      <translation>Transformation matrix cannot be computed.</translation>\r
+    </message>\r
+    <message>\r
+      <source>CORRECT_INPUT_DATA</source>\r
+      <translation>Correct input data</translation>\r
+    </message>\r
+    <message>\r
+      <source>CONFIRM_REMOVE_REFERENCE_FROM_IMAGE</source>\r
+      <translation>The image "%1" has a reference to the current object.\r
+Would you like to remove all references from the image?</translation>\r
+    </message>\r
+    <message>\r
+      <source>CANT_LOAD_GEOREFERENCEMENT_FILE</source>\r
+      <translation>Can't load data from the image georeferencement file.</translation>\r
+    </message>\r
+    <message>\r
+      <source>SELECT_IMAGE_NAME</source>\r
+      <translation>The image name is not input</translation>\r
+    </message>\r
+    <message>\r
+      <source>SELECT_IMAGE_FILE</source>\r
+      <translation>The image file is not chosen</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_Module</name>\r
+    <message>\r
+      <source>DSK_CREATE_CALCULATION</source>\r
+      <translation>Create calculation case</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_CREATE_POLYLINE</source>\r
+      <translation>Create polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_CREATE_POLYLINE_3D</source>\r
+      <translation>Create polyline 3D</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_CREATE_PROFILE</source>\r
+      <translation>Create profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_IMPORT_PROFILES</source>\r
+      <translation>Import profiles from file(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_GEOREFERENCEMENT</source>\r
+      <translation>Profiles georeferencement</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_CREATE_IMMERSIBLE_ZONE</source>\r
+      <translation>Create immersible zone</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_IMMERSIBLE_ZONE</source>\r
+      <translation>Edit immersible zone</translation> \r
+    </message>\r
+    <message>\r
+      <source>DSK_CREATE_STREAM</source>\r
+      <translation>Create stream</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_STREAM</source>\r
+      <translation>Edit stream</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_CREATE_CHANNEL</source>\r
+      <translation>Create channel</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_CHANNEL</source>\r
+      <translation>Edit channel</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_CREATE_DIGUE</source>\r
+      <translation>Create digue</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_DIGUE</source>\r
+      <translation>Edit digue</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_IMPORT_STRICKLER_TABLE</source>\r
+      <translation>Import Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EXPORT_STRICKLER_TABLE</source>\r
+      <translation>Export Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_STRICKLER_TABLE</source>\r
+      <translation>Edit Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_DUPLICATE_STRICKLER_TABLE</source>\r
+      <translation>Duplicate Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_CREATE_LAND_COVER_MAP</source>\r
+      <translation>Create land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_ADD_LAND_COVER</source>\r
+      <translation>Add land cover</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_REMOVE_LAND_COVER</source>\r
+      <translation>Remove land cover</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_SPLIT_LAND_COVER</source>\r
+      <translation>Split land cover(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_MERGE_LAND_COVER</source>\r
+      <translation>Merge land covers</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_CHANGE_LAND_COVER_TYPE</source>\r
+      <translation>Change land cover(s) type</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_COPY</source>\r
+      <translation>Copy</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_CUT_IMAGES</source>\r
+      <translation>Cut images</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_DELETE</source>\r
+      <translation>Delete</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_CALCULATION</source>\r
+      <translation>Edit calculation case</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EXPORT_CALCULATION</source>\r
+      <translation>Export calculation case to GEOM</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_CUT_IMAGE</source>\r
+      <translation>Edit cut image</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_FUSED_IMAGE</source>\r
+      <translation>Edit fused image</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_IMPORTED_IMAGE</source>\r
+      <translation>Edit imported image</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_POLYLINE</source>\r
+      <translation>Edit polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_POLYLINE_3D</source>\r
+      <translation>Edit polyline 3D</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_SPLIT_IMAGE</source>\r
+      <translation>Edit split image</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_COPY_VIEWER_POSITION</source>\r
+      <translation>Copy position</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EXPORT_IMAGE</source>\r
+      <translation>Export image</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_FUSE_IMAGES</source>\r
+      <translation>Fuse images</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_HIDE</source>\r
+      <translation>Hide</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_HIDE_ALL</source>\r
+      <translation>Hide all</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_IMPORT_BATHYMETRY</source>\r
+      <translation>Import bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_IMPORTED_BATHYMETRY</source>\r
+      <translation>Edit imported bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_BATHYMETRY_BOUNDS</source>\r
+      <translation>Create boundary polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_BATHYMETRY_SELECTION</source>\r
+      <translation>Selection on bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_BATHYMETRY_TEXT</source>\r
+      <translation>Z-Values on bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_BATHYMETRY_RESCALE_SELECTION</source>\r
+      <translation>Rescale bathymetry by selection</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_BATHYMETRY_RESCALE_VISIBLE</source>\r
+      <translation>Rescale bathymetry by visible range</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_BATHYMETRY_RESCALE_USER</source>\r
+      <translation>Custom rescale bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_BATHYMETRY_RESCALE_DEFAULT</source>\r
+      <translation>Default rescale bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_SHOW_HIDE_ARROWS</source>\r
+      <translation>Show/hide arrows</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_IMPORT_IMAGE</source>\r
+      <translation>Import image</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_IMPORT_POLYLINE</source>\r
+      <translation>Import polyline from file(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_IMPORT_LANDCOVER_MAP</source>\r
+      <translation>Import land cover map from file(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_IMPORT_SINUSX</source>\r
+      <translation>Import from SinusX</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_MEASUREMENT_TOOL</source>\r
+      <translation>Measurement tool</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_IMPORT_BC_POLYGON</source>\r
+      <translation>Import boundary polygons from SHP file</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EXPORT_SINUSX</source>\r
+      <translation>Export to SinusX</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_LOAD_VISUAL_STATE</source>\r
+      <translation>Load visual state</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_OBSERVE_IMAGE</source>\r
+      <translation>Observe image</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_PASTE</source>\r
+      <translation>Paste</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_REDO</source>\r
+      <translation>Redo</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_REMOVE_IMAGE_REFERENCE</source>\r
+      <translation>Remove reference</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_SAVE_VISUAL_STATE</source>\r
+      <translation>Save visual state</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_SHOW</source>\r
+      <translation>Show</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_SHOW_ALL</source>\r
+      <translation>Show all</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_SHOW_ONLY</source>\r
+      <translation>Show only</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_SPLIT_IMAGE</source>\r
+      <translation>Split image</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_SPLIT_POLYLINES</source>\r
+      <translation>Split polylines</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_MERGE_POLYLINES</source>\r
+      <translation>Merge polylines</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_SHOWATTR_POLYLINES</source>\r
+      <translation>Show DBF attributes</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_UNDO</source>\r
+      <translation>Undo</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_UPDATE_OBJECT</source>\r
+      <translation>Update</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_FORCED_UPDATE_OBJECT</source>\r
+      <translation>Forced update</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_IMPORT_OBSTACLE_FROM_FILE</source>\r
+      <translation>Import obstacle from file</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_CREATE_BOX</source>\r
+      <translation>Create box obstacle</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_IMPORT_GEOM_OBJECT_AS_OBSTACLE</source>\r
+      <translation>Import GEOM object(s) as obstacle(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_IMPORT_GEOM_OBJECT_AS_POLYLINE</source>\r
+      <translation>Import GEOM object(s) as polyline(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_CREATE_CYLINDER</source>\r
+      <translation>Create cylinder obstacle</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_TRANSLATE_OBSTACLE</source>\r
+      <translation>Translate obstacle</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_COLOR</source>\r
+      <translation>Set object color</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_TRANSPARENCY</source>\r
+      <translation>Set object transparency</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_ZLEVEL</source>\r
+      <translation>Change layer order</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EDIT_LOCAL_CS</source>\r
+      <translation>Change local CS</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_SUBMERSIBLE</source>\r
+      <translation>Submersible</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_UNSUBMERSIBLE</source>\r
+      <translation>Unsubmersible</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_EXPORT_TO_SHAPE_FILE</source>\r
+      <translation>Export</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_POLYLINE_EXTRACTION</source>\r
+      <translation>Extracts the polyline from selected object</translation>\r
+    </message>\r
+\r
+    <message>\r
+      <source>MEN_CREATE_CALCULATION</source>\r
+      <translation>Create calculation case</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CREATE_POLYLINE</source>\r
+      <translation>Create polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CREATE_POLYLINE_3D</source>\r
+      <translation>Create polyline 3D</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CREATE_PROFILE</source>\r
+      <translation>Create profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_IMPORT_PROFILES</source>\r
+      <translation>Import profiles</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_GEOREFERENCEMENT</source>\r
+      <translation>Georeferencement</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CREATE_ZONE</source>\r
+      <translation>Create zone</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CREATE_IMMERSIBLE_ZONE</source>\r
+      <translation>Create immersible zone</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_IMMERSIBLE_ZONE</source>\r
+      <translation>Edit immersible zone</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CREATE_STREAM</source>\r
+      <translation>Create stream</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_STREAM</source>\r
+      <translation>Edit stream</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CREATE_CHANNEL</source>\r
+      <translation>Create channel</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_CHANNEL</source>\r
+      <translation>Edit channel</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CREATE_DIGUE</source>\r
+      <translation>Create digue</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_DIGUE</source>\r
+      <translation>Edit digue</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_IMPORT_STRICKLER_TABLE</source>\r
+      <translation>Import Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EXPORT_STRICKLER_TABLE</source>\r
+      <translation>Export Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_STRICKLER_TABLE</source>\r
+      <translation>Edit Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_DUPLICATE_STRICKLER_TABLE</source>\r
+      <translation>Duplicate Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CREATE_LAND_COVER_MAP</source>\r
+      <translation>Create land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_ADD_LAND_COVER</source>\r
+      <translation>Add land cover</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_REMOVE_LAND_COVER</source>\r
+      <translation>Remove land cover</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_SPLIT_LAND_COVER</source>\r
+      <translation>Split land cover(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_MERGE_LAND_COVER</source>\r
+      <translation>Merge land covers</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CHANGE_LAND_COVER_TYPE</source>\r
+      <translation>Change land cover(s) type</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CUT_IMAGES</source>\r
+      <translation>Cut images</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_DELETE</source>\r
+      <translation>Delete</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_DESK_ARTIFICIAL</source>\r
+      <translation>Artificial objects</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_DESK_HYDRO</source>\r
+      <translation>HYDRO</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_DESK_STREAM</source>\r
+      <translation>Stream</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_DESK_NATURAL</source>\r
+      <translation>Natural objects</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_DESK_OBSTACLE</source>\r
+      <translation>Obstacle</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_DESK_PROFILE</source>\r
+      <translation>Profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_DESK_IMAGE</source>\r
+      <translation>Image</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_DESK_POLYLINE</source>\r
+      <translation>Polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_DESK_LAND_COVER_MAP</source>\r
+      <translation>Land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_CALCULATION</source>\r
+      <translation>Edit calculation case</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EXPORT_CALCULATION</source>\r
+      <translation>Export calculation case</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_CUT_IMAGE</source>\r
+      <translation>Edit cut image</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_FUSED_IMAGE</source>\r
+      <translation>Edit fused image</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_IMPORTED_IMAGE</source>\r
+      <translation>Edit imported image</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_POLYLINE</source>\r
+      <translation>Edit polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_POLYLINE_3D</source>\r
+      <translation>Edit polyline 3D</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_PROFILE</source>\r
+      <translation>Edit profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_SPLIT_IMAGE</source>\r
+      <translation>Edit split image</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_COPY_VIEWER_POSITION</source>\r
+      <translation>Copy position</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EXPORT_IMAGE</source>\r
+      <translation>Export image</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_FUSE_IMAGES</source>\r
+      <translation>Fuse images</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_HIDE</source>\r
+      <translation>Hide</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_HIDE_ALL</source>\r
+      <translation>Hide all</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_IMPORT_BATHYMETRY</source>\r
+      <translation>Import bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_IMPORT_BC_POLYGON</source>\r
+      <translation>Import boundary polygons</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_IMPORTED_BATHYMETRY</source>\r
+      <translation>Edit imported bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_BATHYMETRY_BOUNDS</source>\r
+      <translation>Create boundary polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_BATHYMETRY_SELECTION</source>\r
+      <translation>Selection on bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_BATHYMETRY_TEXT</source>\r
+      <translation>Z-Values on bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_BATHYMETRY_RESCALE_SELECTION</source>\r
+      <translation>Rescale bathymetry by selection</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_BATHYMETRY_RESCALE_VISIBLE</source>\r
+      <translation>Rescale bathymetry by visible range</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_BATHYMETRY_RESCALE_USER</source>\r
+      <translation>Custom rescale bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_BATHYMETRY_RESCALE_DEFAULT</source>\r
+      <translation>Default rescale bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_SHOW_HIDE_ARROWS</source>\r
+      <translation>Show/hide arrows</translation>\r
+    </message>\r
+    <message>\r
+      <source>HIDE_ARROWS</source>\r
+      <translation>Hide arrows</translation>\r
+    </message>\r
+    <message>\r
+      <source>SHOW_ARROWS</source>\r
+      <translation>Show arrows</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_IMPORT_IMAGE</source>\r
+      <translation>Import image</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_IMPORT_POLYLINE</source>\r
+      <translation>Import polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_IMPORT_LANDCOVER_MAP</source>\r
+      <translation>Import land cover map from file(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_IMPORT_SINUSX</source>\r
+      <translation>Import from SinusX</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_MEASUREMENT_TOOL</source>\r
+      <translation>Measurement tool</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EXPORT_SINUSX</source>\r
+      <translation>Export to SinusX</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_LOAD_VISUAL_STATE</source>\r
+      <translation>Load visual state</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_OBSERVE_IMAGE</source>\r
+      <translation>Observe image</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_COPY</source>\r
+      <translation>Copy</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_PASTE</source>\r
+      <translation>Paste</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_REDO</source>\r
+      <translation>Redo</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_REMOVE_IMAGE_REFERENCE</source>\r
+      <translation>Remove reference</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_SAVE_VISUAL_STATE</source>\r
+      <translation>Save visual state</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_SHOW</source>\r
+      <translation>Show</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_SHOW_ALL</source>\r
+      <translation>Show all</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_SHOW_ONLY</source>\r
+      <translation>Show only</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_SPLIT_IMAGE</source>\r
+      <translation>Split image</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_SPLIT_POLYLINES</source>\r
+      <translation>Split polylines</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_MERGE_POLYLINES</source>\r
+      <translation>Merge polylines</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_SHOWATTR_POLYLINES</source>\r
+      <translation>Show DBF attributes</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_UNDO</source>\r
+      <translation>Undo</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_UPDATE_OBJECT</source>\r
+      <translation>Update</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_FORCED_UPDATE_OBJECT</source>\r
+      <translation>Forced update</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_IMPORT_OBSTACLE_FROM_FILE</source>\r
+      <translation>Import obstacle</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_IMPORT_GEOM_OBJECT_AS_OBSTACLE</source>\r
+      <translation>Import as obstacle</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_IMPORT_GEOM_OBJECT_AS_POLYLINE</source>\r
+      <translation>Import as polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CREATE_BOX</source>\r
+      <translation>Create box</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CREATE_CYLINDER</source>\r
+      <translation>Create cylinder</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_TRANSLATE_OBSTACLE</source>\r
+      <translation>Translate</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_COLOR</source>\r
+      <translation>Color</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_TRANSPARENCY</source>\r
+      <translation>Transparency</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_ZLEVEL</source>\r
+      <translation>Change layer order</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EDIT_LOCAL_CS</source>\r
+      <translation>Change local CS</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_SUBMERSIBLE</source>\r
+      <translation>Submersible</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_UNSUBMERSIBLE</source>\r
+      <translation>Unsubmersible</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_EXPORT_TO_SHAPE_FILE</source>\r
+      <translation>Export</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_POLYLINE_EXTRACTION</source>\r
+      <translation>Polyline extraction</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_REGENERATE_REGION_COLORS</source>\r
+      <translation>Regenerate region colors</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_ZONE_SET_COLOR</source>\r
+      <translation>Set color</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_SET_BOUNDARY_TYPE_POLYGON</source>\r
+      <translation>Set boundary type</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CREATE_CALCULATION</source>\r
+      <translation>Create calculation case</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CREATE_POLYLINE</source>\r
+      <translation>Create polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CREATE_POLYLINE_3D</source>\r
+      <translation>Create polyline 3D</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CREATE_PROFILE</source>\r
+      <translation>Create profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_IMPORT_PROFILES</source>\r
+      <translation>Import profiles from file(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_GEOREFERENCEMENT</source>\r
+      <translation>Profiles georeferencement</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CREATE_IMMERSIBLE_ZONE</source>\r
+      <translation>Create immersible zone</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_IMMERSIBLE_ZONE</source>\r
+      <translation>Edit immersible zone</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CREATE_STREAM</source>\r
+      <translation>Create stream</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_STREAM</source>\r
+      <translation>Edit stream</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CREATE_CHANNEL</source>\r
+      <translation>Create channel</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_CHANNEL</source>\r
+      <translation>Edit channel</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CREATE_DIGUE</source>\r
+      <translation>Create digue</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_DIGUE</source>\r
+      <translation>Edit digue</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_IMPORT_STRICKLER_TABLE</source>\r
+      <translation>Import Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EXPORT_STRICKLER_TABLE</source>\r
+      <translation>Export Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_STRICKLER_TABLE</source>\r
+      <translation>Edit Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_DUPLICATE_STRICKLER_TABLE</source>\r
+      <translation>Duplicate Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_IMPORT_BC_POLYGON</source>\r
+      <translation>Import boundary polygons</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CREATE_LAND_COVER_MAP</source>\r
+      <translation>Create land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_ADD_LAND_COVER</source>\r
+      <translation>Add land cover</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_REMOVE_LAND_COVER</source>\r
+      <translation>Remove land cover</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_SPLIT_LAND_COVER</source>\r
+      <translation>Split land cover(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_MERGE_LAND_COVER</source>\r
+      <translation>Merge land covers</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CHANGE_LAND_COVER_TYPE</source>\r
+      <translation>Change land cover(s) type</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_COPY</source>\r
+      <translation>Copy</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CUT_IMAGES</source>\r
+      <translation>Cut images</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_DELETE</source>\r
+      <translation>Delete</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_CALCULATION</source>\r
+      <translation>Edit calculation case</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EXPORT_CALCULATION</source>\r
+      <translation>Export calculation case to GEOM</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_CUT_IMAGE</source>\r
+      <translation>Edit cut image</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_FUSED_IMAGE</source>\r
+      <translation>Edit fused image</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_IMPORTED_IMAGE</source>\r
+      <translation>Edit imported image</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_POLYLINE</source>\r
+      <translation>Edit polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_POLYLINE_3D</source>\r
+      <translation>Edit polyline 3D</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_SPLIT_IMAGE</source>\r
+      <translation>Edit split image</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_COPY_VIEWER_POSITION</source>\r
+      <translation>Copy position</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EXPORT_IMAGE</source>\r
+      <translation>Export image</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_FUSE_IMAGES</source>\r
+      <translation>Fuse images</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_HIDE</source>\r
+      <translation>Hide</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_HIDE_ALL</source>\r
+      <translation>Hide all</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_IMPORT_BATHYMETRY</source>\r
+      <translation>Import bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_IMPORTED_BATHYMETRY</source>\r
+      <translation>Edit imported bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_BATHYMETRY_BOUNDS</source>\r
+      <translation>Create boundary polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_BATHYMETRY_SELECTION</source>\r
+      <translation>Selection on bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_BATHYMETRY_RESCALE_SELECTION</source>\r
+      <translation>Rescale bathymetry by selection</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_POLYLINE_STYLE</source>\r
+      <translation>Change polyline style</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_BATHYMETRY_RESCALE_VISIBLE</source>\r
+      <translation>Rescale bathymetry by visible range</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_BATHYMETRY_RESCALE_USER</source>\r
+      <translation>Custom rescale bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_BATHYMETRY_RESCALE_DEFAULT</source>\r
+      <translation>Default rescale bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_IMPORT_IMAGE</source>\r
+      <translation>Import image</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_IMPORT_POLYLINE</source>\r
+      <translation>Import polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_IMPORT_LANDCOVER_MAP</source>\r
+      <translation>Import land cover map from file(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_IMPORT_SINUSX</source>\r
+      <translation>Import from SinusX</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_MEASUREMENT_TOOL</source>\r
+      <translation>Measurement tool</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EXPORT_SINUSX</source>\r
+      <translation>Export to SinusX</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_LOAD_VISUAL_STATE</source>\r
+      <translation>Load visual state</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_OBSERVE_IMAGE</source>\r
+      <translation>Observe image</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_PASTE</source>\r
+      <translation>Paste</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_REDO</source>\r
+      <translation>Redo</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_REMOVE_IMAGE_REFERENCE</source>\r
+      <translation>Remove reference</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_SAVE_VISUAL_STATE</source>\r
+      <translation>Save visual state</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_SHOW</source>\r
+      <translation>Show</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_SHOW_ALL</source>\r
+      <translation>Show all</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_SHOW_ONLY</source>\r
+      <translation>Show only</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_SPLIT_IMAGE</source>\r
+      <translation>Split image</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_SPLIT_POLYLINES</source>\r
+      <translation>Split polylines</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_MERGE_POLYLINES</source>\r
+      <translation>Merge polylines</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_SHOWATTR_POLYLINES</source>\r
+      <translation>Show DBF attributes</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_UNDO</source>\r
+      <translation>Undo</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_UPDATE_OBJECT</source>\r
+      <translation>Update</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_FORCED_UPDATE_OBJECT</source>\r
+      <translation>Forced update</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_IMPORT_OBSTACLE_FROM_FILE</source>\r
+      <translation>Import obstacle from file</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_IMPORT_GEOM_OBJECT_AS_OBSTACLE</source>\r
+      <translation>Import GEOM object(s) as obstacle(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_IMPORT_GEOM_OBJECT_AS_POLYLINE</source>\r
+      <translation>Import GEOM object(s) as polyline(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CREATE_BOX</source>\r
+      <translation>Create box obstacle</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CREATE_CYLINDER</source>\r
+      <translation>Create cylinder obstacle</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_TRANSLATE_OBSTACLE</source>\r
+      <translation>Translate obstacle</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_COLOR</source>\r
+      <translation>Set object color</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_TRANSPARENCY</source>\r
+      <translation>Set object transparency</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_ZLEVEL</source>\r
+      <translation>Change layer order</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EDIT_LOCAL_CS</source>\r
+      <translation>Change local CS</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_POLYLINE_EXTRACTION</source>\r
+      <translation>Polyline extractions</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_BATHYMETRY_TEXT</source>\r
+      <translation>Z-Values on bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>MEN_CREATE_STREAM_BOTTOM</source>\r
+      <translation>Find bottom</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_CREATE_STREAM_BOTTOM</source>\r
+      <translation>Create stream bottom polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_CREATE_STREAM_BOTTOM</source>\r
+      <translation>Creates the stream bottom polyline on selected stream object</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_SUBMERSIBLE</source>\r
+      <translation>If the object is submersible</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_UNSUBMERSIBLE</source>\r
+      <translation>If the object is non submersible</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_EXPORT_TO_SHAPE_FILE</source>\r
+      <translation>Export</translation>\r
+    </message>\r
+\r
+\r
+    <message>\r
+      <source>MEN_PROFILE_INTERPOLATE</source>\r
+      <translation>Profiles interpolation</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_PROFILE_INTERPOLATE</source>\r
+      <translation>Interpolate the stream profiles</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_PROFILE_INTERPOLATE</source>\r
+      <translation>Creates the new stream profiles using interpolation of selected ones</translation>\r
+    </message>\r
+\r
+    <message>\r
+      <source>MEN_RECOGNIZE_CONTOURS</source>\r
+      <translation>Recognize contours</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_RECOGNIZE_CONTOURS</source>\r
+      <translation>Recognize contours</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_RECOGNIZE_CONTOURS</source>\r
+      <translation>Recognize contours</translation>\r
+    </message>\r
+\r
+    <message>\r
+      <source>MEN_LC_SCALARMAP_COLORING_ON</source>\r
+      <translation>Use as scalar scale</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_LC_SCALARMAP_COLORING_ON</source>\r
+      <translation>Use the table as a scalar scale for Land Covers coloring</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_LC_SCALARMAP_COLORING_ON</source>\r
+      <translation>Use as scalar scale</translation>\r
+    </message>\r
+\r
+    <message>\r
+      <source>MEN_LC_SCALARMAP_COLORING_OFF</source>\r
+      <translation>Scalar map mode off</translation>\r
+    </message>\r
+    <message>\r
+      <source>DSK_LC_SCALARMAP_COLORING_OFF</source>\r
+      <translation>Turn off Land Covers scalar map coloring mode</translation>\r
+    </message>\r
+    <message>\r
+      <source>STB_LC_SCALARMAP_COLORING_OFF</source>\r
+      <translation>Scalar map mode off</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_GROUP_POLYLINES</source>\r
+      <translation>Polylines</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_POLYLINE_ARROW</source>\r
+      <translation>Polyline arrow</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_POLYLINE_ARROW_SIZE</source>\r
+      <translation>Polyline arrow size</translation>\r
+    </message>\r
+\r
+    <message>\r
+      <source>STRICKLER_INTERPOLATION_TLT</source>\r
+      <translation>Strickler coefficient interpolation</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_PolylineOp</name>\r
+    <message>\r
+      <source>CREATE_POLYLINE</source>\r
+      <translation>Create polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_POLYLINE</source>\r
+      <translation>Edit polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>EMPTY_POLYLINE_DATA</source>\r
+      <translation>No one section is created for polyline, should be at least one.</translation>\r
+    </message>\r
+    <message>\r
+      <source>NUMBER_OF_SECTION_POINTS_INCORRECT</source>\r
+      <translation>Number of points in each polyline section should not be less than 2.</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE_IS_UNEDITABLE_TLT</source>\r
+      <translation>Polyline can not be edited</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE_IS_UNEDITABLE_MSG</source>\r
+      <translation>Polyline has an unsupported format and can not be edited.</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_Poly3DOp</name>\r
+    <message>\r
+      <source>CREATE_POLYLINE_3D</source>\r
+      <translation>Create polyline 3D</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_POLYLINE_3D</source>\r
+      <translation>Edit polyline 3D</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ProfileOp</name>\r
+    <message>\r
+      <source>CREATE_PROFILE</source>\r
+      <translation>Create profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_PROFILE</source>\r
+      <translation>Edit profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>NUMBER_OF_PROFILE_POINTS_INCORRECT</source>\r
+      <translation>Number of profile points should not be less than 3.</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILEOP_WARNING</source>\r
+      <translation>Warning</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILES_ALREADY_PRESENT</source>\r
+      <translation>All selected profile(s) are already present</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILES_ARE_NOT_SELECTED</source>\r
+      <translation>Profile(s) are not selected</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILE_RENAMING_NOTIF</source>\r
+      <translation>The next profile(s) have been renamed:</translation>\r
+    </message>\r
+  </context>\r
+  <context>\r
+    <name>HYDROGUI_RemoveImageRefsOp</name>\r
+    <message>\r
+      <source>REMOVE_IMAGE_REFERENCE</source>\r
+      <translation>Remove image reference</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ShowHideOp</name>\r
+    <message>\r
+      <source>SHOW</source>\r
+      <translation>Show</translation>\r
+    </message>\r
+    <message>\r
+      <source>SHOW_ALL</source>\r
+      <translation>Show all</translation>\r
+    </message>\r
+    <message>\r
+      <source>SHOW_ONLY</source>\r
+      <translation>Show only</translation>\r
+    </message>\r
+    <message>\r
+      <source>HIDE</source>\r
+      <translation>Hide</translation>\r
+    </message>\r
+    <message>\r
+      <source>HIDE_ALL</source>\r
+      <translation>Hide all</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_ObserveImageOp</name>\r
+    <message>\r
+      <source>OBSERVE_IMAGE</source>\r
+      <translation>Observe image</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_PolylineDlg</name>\r
+    <message>\r
+      <source>ADD_ELEMENT</source>\r
+      <translation>Add element</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_ELEMENT</source>\r
+      <translation>Edit element</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE_NAME_TLT</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_Poly3DDlg</name>\r
+    <message>\r
+      <source>POLYLINE_3D_NAME</source>\r
+      <translation>Polyline 3d name</translation>\r
+    </message>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>PARAMETERS</source>\r
+      <translation>Parameters</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE</source>\r
+      <translation>Polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILE</source>\r
+      <translation>Profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>BATH</source>\r
+      <translation>Bathymetry</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ViewerDlg</name>\r
+    <message>\r
+      <source>UZ_COORDINATES_INFO</source>\r
+      <translation>U: %1, Z: %2</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_ProfileDlg</name>\r
+    <message>\r
+      <source>ADD_ELEMENT</source>\r
+      <translation>Add element</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_ELEMENT</source>\r
+      <translation>Edit element</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILE_NAME_TLT</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>U_TITLE</source>\r
+      <translation>U</translation>\r
+    </message>\r
+    <message>\r
+      <source>Z_TITLE</source>\r
+      <translation>Z</translation>\r
+    </message>\r
+    <message>\r
+      <source>ADD_PROFILES</source>\r
+      <translation>Add Profile(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>REMOVE_PROFILE</source>\r
+      <translation>Remove Profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>SETCOLOR_PROFILE</source>\r
+      <translation>Set Color</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILE_ALREADY_EXISTS</source>\r
+      <translation>Profile with this name is already exists</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILEDLG_WARNING</source>\r
+      <translation>Warning</translation>\r
+    </message>\r
+\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_TwoImagesDlg</name>\r
+    <message>\r
+      <source>BACKGROUND</source>\r
+      <translation>Background</translation>\r
+    </message>\r
+    <message>\r
+      <source>COLOR</source>\r
+      <translation>Color</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMAGE</source>\r
+      <translation>Image</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMAGE_1</source>\r
+      <translation>Image 1</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMAGE_2</source>\r
+      <translation>Image 2</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMAGE_NAME</source>\r
+      <translation>Image name</translation>\r
+    </message>\r
+    <message>\r
+      <source>MODIFY_SELECTED_IMAGE</source>\r
+      <translation>Modify selected image</translation>\r
+    </message>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>PARAMETERS</source>\r
+      <translation>Parameters</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE</source>\r
+      <translation>Polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>TRANSPARENT</source>\r
+      <translation>Transparent</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_TwoImagesOp</name>\r
+    <message>\r
+      <source>CUT</source>\r
+      <translation>Cut</translation>\r
+    </message>\r
+    <message>\r
+      <source>CUT_IMAGES</source>\r
+      <translation>Cut images</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_CUT_IMAGE</source>\r
+      <translation>Edit cut image</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_FUSED_IMAGE</source>\r
+      <translation>Edit fused image</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_SPLIT_IMAGE</source>\r
+      <translation>Edit split image</translation>\r
+    </message>\r
+    <message>\r
+      <source>FUSE</source>\r
+      <translation>Fuse</translation>\r
+    </message>\r
+    <message>\r
+      <source>FUSE_IMAGES</source>\r
+      <translation>Fuse images</translation>\r
+    </message>\r
+    <message>\r
+      <source>SPLIT</source>\r
+      <translation>Split</translation>\r
+    </message>\r
+    <message>\r
+      <source>SPLIT_IMAGE</source>\r
+      <translation>Split image</translation>\r
+    </message>\r
+    <message>\r
+      <source>OBJECT_ALREADY_SELECTED</source>\r
+      <translation>The object "%1" has been already selected. Please select another one to perform the operation.</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_UpdateImageOp</name>\r
+    <message>\r
+      <source>UPDATE_IMAGE</source>\r
+      <translation>Update image</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_VisualStateOp</name>\r
+    <message>\r
+      <source>LOAD_VISUAL_STATE</source>\r
+      <translation>Load visual state</translation>\r
+    </message>\r
+    <message>\r
+      <source>SAVE_VISUAL_STATE</source>\r
+      <translation>Save visual state</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ImmersibleZoneDlg</name>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>ZONE_BATHYMETRY</source>\r
+      <translation>Bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>ZONE_NAME</source>\r
+      <translation>Zone name</translation>\r
+    </message>\r
+    <message>\r
+      <source>ZONE_PARAMETERS</source>\r
+      <translation>Parameters</translation>\r
+    </message>\r
+    <message>\r
+      <source>ZONE_POLYLINE</source>\r
+      <translation>Polyline</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ImmersibleZoneOp</name>\r
+    <message>\r
+      <source>CREATE_IMMERSIBLE_ZONE</source>\r
+      <translation>Create immersible zone</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_IMMERSIBLE_ZONE</source>\r
+      <translation>Edit immersible zone</translation>\r
+    </message>\r
+    <message>\r
+      <source>ZONE_OBJECT_CANNOT_BE_CREATED</source>\r
+      <translation>Zone object can not be created.\r
+Maybe the polyline is not closed,\r
+or there is a small loop somewhere in the polyline ?</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_LocalCSOp</name>\r
+    <message>\r
+      <source>EDIT_LOCAL_CS</source>\r
+      <translation>Local CS transformation</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ImportGeomObjectOp</name>\r
+    <message>\r
+      <source>IMPORT_GEOM_OBJECT_AS_OBSTACLE</source>\r
+      <translation>Import GEOM object as obstacle</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMPORT_GEOM_OBJECT_AS_POLYLINE</source>\r
+      <translation>Import GEOM object as polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>NO_GEOM_OBJECT_TO_IMPORT</source>\r
+      <translation>No GEOM object(s) to import.</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE_IS_UNRECOGNIZED_TLT</source>\r
+      <translation>Imported curve has an unsupported format</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE_IS_UNRECOGNIZED_MSG</source>\r
+      <translation>Imported curve has an unsupported by HYDRO format,\r
+it will be unavailable for future editing.\r
+Do you still want to continue?</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ImportObstacleFromFileOp</name>\r
+    <message>\r
+      <source>IMPORT_OBSTACLE_FROM_FILE</source>\r
+      <translation>Import obstacle</translation>\r
+    </message>\r
+    <message>\r
+      <source>BAD_IMPORTED_OBSTACLE_FILE</source>\r
+      <translation>'%1'\r
+file cannot be correctly imported for an Obstacle definition.</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ExportCalculationOp</name>\r
+    <message>\r
+      <source>EXPORT_CALCULATION</source>\r
+      <translation>Export calculation case</translation>\r
+    </message>\r
+    <message>\r
+      <source>EXPORT_STATUS</source>\r
+      <translation>Export status</translation>\r
+    </message>\r
+    <message>\r
+      <source>EXPORT_FINISHED</source>\r
+      <translation>Export finished successfully.</translation>\r
+    </message>\r
+    <message>\r
+      <source>EXPORT_FAILED</source>\r
+      <translation>Export of calculation case failed:</translation>\r
+    </message>\r
+    <message>\r
+      <source>EXPORT_DATA_FAILED</source>\r
+      <translation>parameters of calculation case are invalid.</translation>\r
+    </message>\r
+    <message>\r
+      <source>NULL_DATA_OBJECT</source>\r
+      <translation>data model object is null pointer.</translation>\r
+    </message>\r
+    <message>\r
+      <source>RESULT_SHAPE_NULL</source>\r
+      <translation>shape of calculation case regions is empty.</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMPOSSIBLE_TO_CREATE_GEOM_SHAPE</source>\r
+      <translation>something was wrong during publishing of GEOM shape.</translation>\r
+    </message>\r
+    <message>\r
+      <source>OBJ_PREFIX</source>\r
+      <translation>HYDRO_</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_GeomObjectDlg</name>\r
+    <message>\r
+      <source>GET_SHAPE_FROM_FILE</source>\r
+      <translation>Get shape from file</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMPORT_OBSTACLE_FROM_FILE</source>\r
+      <translation>Import obstacle</translation>\r
+    </message>\r
+    <message>\r
+      <source>FILE_NAME</source>\r
+      <translation>File name</translation>\r
+    </message>\r
+    <message>\r
+      <source>OBJECT_NAME</source>\r
+      <translation>%1 name</translation>\r
+    </message>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>MODE</source>\r
+      <translation>Mode</translation>\r
+    </message>\r
+    <message>\r
+      <source>CREATE_NEW</source>\r
+      <translation>Create new</translation>\r
+    </message>\r
+    <message>\r
+      <source>MODIFY</source>\r
+      <translation>Modify</translation>\r
+    </message>\r
+    <message>\r
+      <source>OBJECT_TO_EDIT</source>\r
+      <translation>%1 to edit</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ImportProfilesOp</name>\r
+    <message>\r
+      <source>IMPORT_PROFILES</source>\r
+      <translation>Import profiles</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILE_FILTER</source>\r
+      <translation>All files (*.* *)</translation>\r
+    </message>\r
+    <message>\r
+      <source>BAD_PROFILE_IDS</source>\r
+      <translation>numbers of bad profiles</translation>\r
+    </message>\r
+    <message>\r
+      <source>BAD_IMPORTED_PROFILES_FILES_TLT</source>\r
+      <translation>Profiles import error</translation>\r
+    </message>\r
+    <message>\r
+      <source>NO_ONE_PROFILE_IMPORTED</source>\r
+      <translation>No one profile has been import from selected file(s).</translation>\r
+    </message>\r
+    <message>\r
+      <source>BAD_IMPORTED_PROFILES_FILES</source>\r
+      <translation>The data from following files cannot be completely imported:\r
+%1\r
+</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ImportPolylineOp</name>\r
+    <message>\r
+      <source>IMPORT_POLYLINE</source>\r
+      <translation>Import Polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMPORT_POLYLINE_USE_NAME_ATTR</source>\r
+      <translation>DBF file contains 'name' field. Would you like to use the value of this field as a name of polyline?</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE_FILTER</source>\r
+      <translation>Shape files (*.shp)</translation>\r
+    </message>\r
+    <message>\r
+      <source>BAD_IMPORTED_POLYLINE_FILES_TLT</source>\r
+      <translation>Polyline import error</translation>\r
+    </message>\r
+    <message>\r
+      <source>NO_ONE_POLYLINE_IMPORTED</source>\r
+      <translation>Polyline cannot be read from seleted file</translation>\r
+    </message>\r
+\r
+    <message>\r
+      <source>POLYLINE_IMPORT_FAILED_AS_POLYGON</source>\r
+      <translation>Cannot import content of this file as polygon</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE_IMPORT_FAILED_AS_POLYLINE</source>\r
+      <translation>Cannot import content of this file as polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYGON_IMPORTED_AS_POLYLINE</source>\r
+      <translation>Contour of the polygon(s) have been imported as polyline(s)</translation>\r
+    </message>\r
+    <message>\r
+      <source>CANT_OPEN_SHP</source>\r
+      <translation>Cannot open SHP file</translation>\r
+    </message>\r
+    <message>\r
+      <source>CANT_OPEN_SHX</source>\r
+      <translation>Cannot open SHX file</translation>\r
+    </message>\r
+     <message>\r
+      <source>SHAPE_TYPE_IS</source>\r
+      <translation>The shape type of file is </translation>\r
+    </message>\r
+\r
+\r
+    <message>\r
+      <source>BAD_IMPORTED_POLYLINE_FILES</source>\r
+      <translation>The data from following files cannot be completely imported:\r
+%1\r
+</translation>\r
+    </message>\r
+\r
+  </context>\r
+\r
+ <context>\r
+    <name>HYDROGUI_ImportLandCoverMapDlg</name>\r
+    <message>\r
+      <source>LANDCOVERMAP_FILTER</source>\r
+      <translation>Shape files (*.shp)</translation>\r
+    </message>\r
+    <message>\r
+      <source>IMPORT_LANDCOVER_MAP_FROM_FILE</source>\r
+      <translation>Import land cover map from file</translation>\r
+    </message>\r
+    <message>\r
+      <source>FILE_NAME</source>\r
+      <translation>File name</translation>\r
+    </message>\r
+    <message>\r
+      <source>LANDCOVERMAP_NAME</source>\r
+      <translation>Land cover map name</translation>\r
+    </message>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>FOUND_POLYGONS</source>\r
+      <translation>Found polygons:</translation>\r
+    </message>\r
+    <message>\r
+      <source>USE_DBF_AS_ST</source>\r
+      <translation>Use dBase attributes as a Strickler Types</translation>\r
+    </message>\r
+    <message>\r
+      <source>AV_ATTRS</source>\r
+      <translation>Available attributes</translation>\r
+    </message>\r
+    <message>\r
+      <source>CORR</source>\r
+      <translation>Correspondence</translation>\r
+    </message>\r
+\r
+    <message>\r
+      <source>TABLE_H1</source>\r
+      <translation>Attribute</translation>\r
+    </message>\r
+    <message>\r
+      <source>TABLE_H2</source>\r
+      <translation>Strickler Type</translation>\r
+    </message>\r
+    <message>\r
+      <source>TABLE_H3</source>\r
+      <translation>Color</translation>\r
+    </message>\r
+\r
+    <message>\r
+      <source>LCM_IMPORT_WARNING</source>\r
+      <translation>Import of Land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>DBF_LOAD_ERROR</source>\r
+      <translation>Cannot load DBF file</translation>\r
+    </message>\r
+    <message>\r
+      <source>DBF_NB_RECORDS_IS_NULL</source>\r
+      <translation>DBF Warning</translation>\r
+    </message>\r
+\r
+    <message>\r
+      <source>FILE_ISNT_CHOSEN</source>\r
+      <translation>File isn't chosen</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYGONS_ISNT_SELECTED</source>\r
+      <translation>Polygons isn't selected</translation>\r
+    </message>\r
+   <message>\r
+      <source>ATTRS_ISNT_SELECTED</source>\r
+      <translation>Attribute isn't selected</translation>\r
+    </message>\r
\r
+   <message>\r
+      <source>DBF_LOAD_ERR_MESS</source>\r
+      <translation>Cannot open DBF file or it's corrupted</translation>\r
+    </message>\r
+\r
+   <message>\r
+      <source>DBF_NB_RECORDS_IS_NULL_MESS</source>\r
+      <translation>Cannot use DBF data - number of records is null</translation>\r
+    </message>\r
+\r
+\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ImportLandCoverMapOp</name>\r
+    <message>\r
+      <source>IMPORT_LANDCOVER_MAP</source>\r
+      <translation>Import land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_LANDCOVER_MAP_NAME</source>\r
+      <translation>Landcovermap_0</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEF_POLYGON_NAME</source>\r
+      <translation>polygon</translation>\r
+    </message>\r
+    <message>\r
+      <source>LCM_IMPORT_WARNING</source>\r
+      <translation>Import of Land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>CANNT_IMPORT_LCM</source>\r
+      <translation>Cannot import land cover map;</translation>\r
+    </message>\r
+    <message>\r
+      <source>CANNT_OPEN_SHP</source>\r
+      <translation>Cannot open SHP file</translation>\r
+    </message>\r
+    <message>\r
+      <source>CANNT_OPEN_SHX</source>\r
+      <translation>Cannot open SHX file</translation>\r
+    </message>\r
+    <message>\r
+      <source>SHP_TYPEFORMAT_MESS</source>\r
+      <translation>The shape type of file is </translation>\r
+    </message>\r
+    <message>\r
+      <source>CANNT_IMPORT_POLYGONS_FROM_SHP</source>\r
+      <translation>Cannot import choosed polygons</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ExportLandCoverMapDlg</name>\r
+    <message>\r
+      <source>EXPORT_LANDCOVERMAP</source>\r
+      <translation>Export land cover map to SHP file</translation>\r
+    </message>\r
+    <message>\r
+      <source>WRITE_ST_AS_ATTRS_TO_DBF</source>\r
+      <translation>Write Strickler Types as attributes values to DBF file</translation>\r
+    </message>\r
+    <message>\r
+      <source>ATTRS_NOT_WRITTEN_TO_DBF</source>\r
+      <translation>Note that in current settings the attributes will NOT be written</translation>\r
+    </message>\r
+    <message>\r
+      <source>LCM_DISCR_LABEL</source>\r
+      <translation>Current Land Cover Map contains at least one non-linear border. It will be exported in the discretization mode</translation>\r
+    </message>\r
+    <message>\r
+      <source>LCM_DEFL_LABEL</source>\r
+      <translation>Enter a deflection value:</translation>\r
+    </message>\r
+\r
+  </context>\r
+\r
\r
+  <context>\r
+    <name>HYDROGUI_ImportSinusXOp</name>\r
+    <message>\r
+      <source>IMPORT_SINUSX</source>\r
+      <translation>Import from SinusX</translation>\r
+    </message>\r
+    <message>\r
+      <source>SINUSX_FILTER</source>\r
+      <translation>SinusX Files (*.sx)</translation>\r
+    </message>\r
+    <message>\r
+      <source>NO_ONE_ENTITY_IMPORTED</source>\r
+      <translation>Entities cant be read</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ExportSinusXOp</name>\r
+    <message>\r
+      <source>EXPORT_SINUSX</source>\r
+      <translation>Export to SinusX</translation>\r
+    </message>\r
+    <message>\r
+      <source>SINUSX_FILTER</source>\r
+      <translation>SinusX Files (*.sx)</translation>\r
+    </message>\r
+    <message>\r
+      <source>NO_ENTITIES_TO_EXPORT</source>\r
+      <translation>No entities to export</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ExportSinusXDlg</name>\r
+    <message>\r
+      <source>OBJECTS_TO_EXPORT</source>\r
+      <translation>Objects:</translation>\r
+    </message>\r
+    <message>\r
+      <source>EXPORT</source>\r
+      <translation>Export</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ExportFileOp</name>\r
+    <message>\r
+      <source>EXPORT_TO_SHAPE_FILE</source>\r
+      <translation>Export</translation>\r
+    </message>\r
+    <message>\r
+      <source>SHP_FILTER</source>\r
+      <translation>Shape Files (*.shp)</translation>\r
+    </message>\r
+    <message>\r
+      <source>CANNOT_BE_EXPORTED</source>\r
+      <translation>Following entities cannot be exported:</translation>\r
+    </message>\r
+    <message>\r
+      <source>ERROR_POLYLINES_OF_DIFF_KIND</source>\r
+      <translation>Cannot export polylines of different kind</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_GeoreferencementDlg</name>\r
+    <message>\r
+      <source>PROFILES</source>\r
+      <translation>Profiles</translation>\r
+    </message>\r
+    <message>\r
+      <source>ALL_MODE</source>\r
+      <translation>All</translation>\r
+    </message>\r
+    <message>\r
+      <source>SELECTED_MODE</source>\r
+      <translation>Selected</translation>\r
+    </message>\r
+    <message>\r
+      <source>UPDATE_SELECTION</source>\r
+      <translation>Update selection</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILE_HEADER</source>\r
+      <translation>Profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>XG_HEADER</source>\r
+      <translation>X1</translation>\r
+    </message>\r
+    <message>\r
+      <source>YG_HEADER</source>\r
+      <translation>Y1</translation>\r
+    </message>\r
+    <message>\r
+      <source>XD_HEADER</source>\r
+      <translation>X2</translation>\r
+    </message>\r
+    <message>\r
+      <source>YD_HEADER</source>\r
+      <translation>Y2</translation>\r
+    </message>\r
+  </context>\r
\r
+  <context>\r
+    <name>HYDROGUI_GeoreferencementOp</name>\r
+    <message>\r
+      <source>PROFILES_GEOREFERENCEMENT</source>\r
+      <translation>Profiles georeferencement</translation>\r
+    </message>\r
+    <message>\r
+      <source>INCOMPLETE_DATA</source>\r
+      <translation>Incomplete data is set for '%1'.</translation>\r
+    </message>\r
+    <message>\r
+      <source>CONFIRMATION</source>\r
+      <translation>Confirmation</translation>\r
+    </message>\r
+    <message>\r
+      <source>CONFIRM_STORE</source>\r
+      <translation>Do you want to store table data in the data model?</translation>\r
+    </message>\r
+  </context>\r
\r
+  <context>\r
+    <name>HYDROGUI_SetColorOp</name>\r
+    <message>\r
+      <source>SET_COLOR</source>\r
+      <translation>Set color</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ColorDlg</name>\r
+    <message>\r
+      <source>COLOR</source>\r
+      <translation>Color</translation>\r
+    </message>\r
+    <message>\r
+      <source>FILLING_COLOR</source>\r
+      <translation>Filling color</translation>\r
+    </message>\r
+    <message>\r
+      <source>OBJECT_COLOR</source>\r
+      <translation>Object color</translation>\r
+    </message>\r
+    <message>\r
+      <source>TRANSPARENT</source>\r
+      <translation>Transparent</translation>\r
+    </message>\r
+    <message>\r
+      <source>BORDER_COLOR</source>\r
+      <translation>Border</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_SetTransparencyOp</name>\r
+    <message>\r
+      <source>SET_TRANSPARENCY</source>\r
+      <translation>Set transparency</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_TransparencyDlg</name>\r
+    <message>\r
+      <source>TRANSPARENCY</source>\r
+      <translation>Transparency</translation>\r
+    </message>\r
+    <message>\r
+      <source>APPLY_AND_CLOSE</source>\r
+      <translation>Apply and Close</translation>\r
+    </message>\r
+    <message>\r
+      <source>APPLY</source>\r
+      <translation>Apply</translation>\r
+    </message>\r
+    <message>\r
+      <source>CLOSE</source>\r
+      <translation>Close</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_StreamDlg</name>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>STREAM_NAME</source>\r
+      <translation>Stream name</translation>\r
+    </message>\r
+    <message>\r
+      <source>STREAM_PARAMETERS</source>\r
+      <translation>Parameters</translation>\r
+    </message>\r
+    <message>\r
+      <source>STREAM_HYDRAULIC_AXIS</source>\r
+      <translation>Hydraulic axis</translation>\r
+    </message>\r
+    <message>\r
+      <source>STREAM_DDZ</source>\r
+      <translation>Stream ddz</translation>\r
+    </message>\r
+    <message>\r
+      <source>STREAM_SPATIAL_STEP</source>\r
+      <translation>Stream spatial step</translation>\r
+    </message>\r
+\r
+    <message>\r
+      <source>ADD</source>\r
+      <translation>Add</translation>\r
+    </message>\r
+    <message>\r
+      <source>REMOVE</source>\r
+      <translation>Remove</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_StreamOp</name>\r
+    <message>\r
+      <source>CREATE_STREAM_ERROR</source>\r
+      <translation>Stream creation error</translation>\r
+    </message>\r
+     <message>\r
+      <source>CREATE_STREAM</source>\r
+      <translation>Create stream</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_STREAM</source>\r
+      <translation>Edit stream</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_STREAM_NAME</source>\r
+      <translation>Stream</translation>\r
+    </message>\r
+    <message>\r
+      <source>WARNING</source>\r
+      <translation>Warning</translation>\r
+    </message>\r
+    <message>\r
+      <source>IGNORED_PROFILES</source>\r
+      <translation>The following profile(s) will be ignored:</translation>\r
+    </message>\r
+    <message>\r
+      <source>INVALID_PROFILES</source>\r
+      <translation>Invalid profiles: \r
+%1</translation>\r
+    </message>\r
+    <message>\r
+      <source>EXISTING_PROFILES</source>\r
+      <translation>Existing profiles: \r
+%1</translation>\r
+    </message>\r
+    <message>\r
+      <source>NOT_INTERSECTED_PROFILES</source>\r
+      <translation>Not intersected with the hydraulic axis: \r
+%1</translation>\r
+    </message>\r
+    <message>\r
+      <source>AXIS_NOT_DEFINED</source>\r
+      <translation>Hydraulic axis is not defined.</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILES_NOT_DEFINED</source>\r
+      <translation>At least 2 profiles should be defined.</translation>\r
+    </message>\r
+    <message>\r
+      <source>CONFIRMATION</source>\r
+      <translation>Confirmation</translation>\r
+    </message>\r
+    <message>\r
+      <source>CONFIRM_AXIS_CHANGE</source>\r
+      <translation>The following profiles don't intersect the axis:\r
+%1\r
+\r
+Do you want to remove these profiles and continue?</translation>\r
+    </message>\r
+    <message>\r
+      <source>BAD_SELECTED_POLYLINE_TLT</source>\r
+      <translation>Polyline is not appropriate for channel creation</translation>\r
+    </message>\r
+    <message>\r
+      <source>BAD_SELECTED_POLYLINE_MSG</source>\r
+      <translation>Polyline '%1' can not be used as hydraulic axis for channel.\r
+Polyline should consist from one not closed curve.</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ChannelDlg</name>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>CHANNEL_NAME</source>\r
+      <translation>Channel name</translation>\r
+    </message>\r
+    <message>\r
+      <source>CHANNEL_PARAMETERS</source>\r
+      <translation>Parameters</translation>\r
+    </message>\r
+    <message>\r
+      <source>CHANNEL_GUIDE_LINE</source>\r
+      <translation>Guide line</translation>\r
+    </message>\r
+    <message>\r
+      <source>CHANNEL_PROFILE</source>\r
+      <translation>Profile</translation>\r
+    </message>\r
+    <message>\r
+      <source>EQUI_DISTANCE</source>\r
+      <translation>Equidistance</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ChannelOp</name>\r
+    <message>\r
+      <source>CREATE_CHANNEL</source>\r
+      <translation>Create channel</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_CHANNEL</source>\r
+      <translation>Edit channel</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_CHANNEL_NAME</source>\r
+      <translation>Channel</translation>\r
+    </message>\r
+    <message>\r
+      <source>GUIDE_LINE_IS_NOT_SELECTED</source>\r
+      <translation>Guide line is not chosen</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILE_IS_NOT_SELECTED</source>\r
+      <translation>Profile is not chosen</translation>\r
+    </message>\r
+  </context>\r
+  <context>\r
+    <name>HYDROGUI_DigueDlg</name>\r
+    <message>\r
+      <source>DIGUE_NAME</source>\r
+      <translation>Digue name</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_DigueOp</name>\r
+    <message>\r
+      <source>CREATE_DIGUE</source>\r
+      <translation>Create digue</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_DIGUE</source>\r
+      <translation>Edit digue</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_DIGUE_NAME</source>\r
+      <translation>Digue</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_StricklerTableDlg</name>\r
+    <message>\r
+      <source>IMPORT_STRICKLER_TABLE_FILE</source>\r
+      <translation>Import Strickler table file</translation>\r
+    </message>\r
+    <message>\r
+      <source>EXPORT_STRICKLER_TABLE_FILE</source>\r
+      <translation>Export Strickler table file</translation>\r
+    </message>\r
+    <message>\r
+      <source>FILE_NAME</source>\r
+      <translation>File name</translation>\r
+    </message>\r
+    <message>\r
+      <source>STRICKLER_TABLE_NAME</source>\r
+      <translation>Strickler table name</translation>\r
+    </message>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>DEFAULT_STRICKLER_TABLE_NAME</source>\r
+      <translation>Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>STRICKLER_TABLE_TABLE</source>\r
+      <translation>Strickler table definition</translation>\r
+    </message>\r
+    <message>\r
+      <source>ADD</source>\r
+      <translation>Add</translation>\r
+    </message>\r
+    <message>\r
+      <source>REMOVE</source>\r
+      <translation>Remove</translation>\r
+    </message>\r
+    <message>\r
+      <source>CLEAR_ALL</source>\r
+      <translation>Clear all</translation>\r
+    </message>\r
+    <message>\r
+      <source>STRICKLER_TYPE</source>\r
+      <translation>Type</translation>\r
+    </message>\r
+    <message>\r
+      <source>STRICKLER_COEFFICIENT</source>\r
+      <translation>Coefficient</translation>\r
+    </message>\r
+    <message>\r
+      <source>STRICKLER_TABLE_ATTR_NAME</source>\r
+      <translation>QGIS attribute name</translation>\r
+    </message>\r
+    <message>\r
+      <source>ATTR_NAME</source>\r
+      <translation>Attribute name</translation>\r
+    </message>\r
+    <message>\r
+      <source>ATTR_VALUE</source>\r
+      <translation>Attr.value</translation>\r
+    </message>\r
+    <message>\r
+      <source>COLOR</source>\r
+      <translation>Color</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_StricklerTableOp</name>\r
+    <message>\r
+      <source>IMPORT_STRICKLER_TABLE</source>\r
+      <translation>Import Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>EXPORT_STRICKLER_TABLE</source>\r
+      <translation>Export Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>EDIT_STRICKLER_TABLE</source>\r
+      <translation>Edit Strickler table</translation>\r
+    </message>\r
+    <message>\r
+      <source>SELECT_STRICKLER_TABLE_FILE</source>\r
+      <translation>The Strickler table file is not chosen</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_LandCoverMapDlg</name>\r
+    <message>\r
+      <source>DEFAULT_LAND_COVER_MAP_NAME</source>\r
+      <translation>Land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_MAP_NAME</source>\r
+      <translation>Land cover map name</translation>\r
+    </message>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_MAP_PARAMETERS</source>\r
+      <translation>Parameters</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_MAP_POLYLINE_FACE</source>\r
+      <translation>Polyline / Face</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_MAP_STRICKLER_TYPE</source>\r
+      <translation>Strickler type</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_MAP_SELECTED_FACES</source>\r
+      <translation>\r
+        \r
+  This operation is performed on a set of land covers selected in the 3D Viewer.\r
+        \r
+  Number of selected land covers: </translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_LandCoverMapOp</name>\r
+    <message>\r
+      <source>CREATE_LAND_COVER_MAP</source>\r
+      <translation>Create land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>ADD_LAND_COVER</source>\r
+      <translation>Add land cover to the land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>REMOVE_LAND_COVER</source>\r
+      <translation>Remove land cover from the land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>SPLIT_LAND_COVER</source>\r
+      <translation>Split land cover(s) inside the land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>MERGE_LAND_COVER</source>\r
+      <translation>Merge land covers inside the land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>CHANGE_LAND_COVER_TYPE</source>\r
+      <translation>Change Strickler type(s) assigned to the land cover(s) inside the land cover map</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE_FACE_NOT_DEFINED</source>\r
+      <translation>Polyline / Face object should be defined.</translation>\r
+    </message>\r
+    <message>\r
+      <source>STRICKLER_TYPE_NOT_DEFINED</source>\r
+      <translation>Strickler type should be defined.</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_MAP_UNDEFINED</source>\r
+      <translation>Land cover map is undefined.</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_NOT_ADDED</source>\r
+      <translation>Land cover can not be added.</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_NOT_REMOVED</source>\r
+      <translation>Land cover can not be removed.</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_NOT_SPLIT</source>\r
+      <translation>Land cover can not be split.</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_NOT_MERGED</source>\r
+      <translation>Land cover can not be merged.</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_TYPE_NOT_CHANGED</source>\r
+      <translation>Strickler type can not be changed for all selected land covers.</translation>\r
+    </message>\r
+    <message>\r
+      <source>LAND_COVER_OBJECT_CANNOT_BE_CREATED</source>\r
+      <translation>Land Cover object can not be created</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_TranslateObstacleDlg</name>\r
+    <message>\r
+      <source>OBSTACLE_NAME</source>\r
+      <translation>Obstacle name</translation>\r
+    </message>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>TRANSLATION_ARGUMENTS</source>\r
+      <translation>Arguments</translation>\r
+    </message>\r
+    <message>\r
+      <source>DX</source>\r
+      <translation>Dx</translation>\r
+    </message>\r
+    <message>\r
+      <source>DY</source>\r
+      <translation>Dy</translation>\r
+    </message>\r
+    <message>\r
+      <source>DZ</source>\r
+      <translation>Dz</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_TranslateObstacleOp</name>\r
+    <message>\r
+      <source>TRANSLATE_OBSTACLE</source>\r
+      <translation>Translation of an obstacle</translation>\r
+    </message>\r
+  </context>\r
+  \r
+\r
+  <context>\r
+    <name>HYDROGUI_RunBrowser</name>\r
+    <message>\r
+        <source>EXTERNAL_BROWSER_CANNOT_SHOW_PAGE</source>\r
+        <translation>External browser &quot;%1&quot; can not show help page &quot;%2&quot;. You could change it in preferences.</translation>\r
+    </message>\r
+    <message>\r
+        <source>WRN_DEFINE_EXTERNAL_BROWSER</source>\r
+        <translation>External browser is not found. Do you want to define it in preferences?</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ZLevelsDlg</name>\r
+    <message>\r
+        <source>CHANGE_LAYER_ORDER</source>\r
+        <translation>Change layer order</translation>\r
+    </message>\r
+    <message>\r
+        <source>ALL_OBJECTS</source>\r
+        <translation>All objects</translation>\r
+    </message>\r
+    <message>\r
+        <source>ALL_OBJECTS_UNCHECKED_TLT</source>\r
+        <translation>Include hidden objects to the list</translation>\r
+    </message>\r
+    <message>\r
+        <source>ALL_OBJECTS_CHECKED_TLT</source>\r
+        <translation>Exclude hidden objects from the list</translation>\r
+    </message>\r
+    <message>\r
+      <source>APPLY_AND_CLOSE</source>\r
+      <translation>Apply and Close</translation>\r
+    </message>\r
+    <message>\r
+        <source>APPLY</source>\r
+        <translation>Apply</translation>\r
+    </message>\r
+    <message>\r
+        <source>CLOSE</source>\r
+        <translation>Close</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_OrderedListWidget</name>\r
+    <message>\r
+        <source>TOP_TLT</source>\r
+        <translation>Move the item(s) on top</translation>\r
+    </message>\r
+    <message>\r
+        <source>UP_TLT</source>\r
+        <translation>Move the item(s) up</translation>\r
+    </message>\r
+    <message>\r
+        <source>DOWN_TLT</source>\r
+        <translation>Move the item(s) down</translation>\r
+    </message>\r
+    <message>\r
+        <source>BOTTOM_TLT</source>\r
+        <translation>Move the item(s) on bottom</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_PriorityWidget</name>\r
+    <message>\r
+      <source>ADD</source>\r
+      <translation>Add</translation>\r
+    </message>\r
+    <message>\r
+      <source>REMOVE</source>\r
+      <translation>Remove</translation>\r
+    </message>\r
+    <message>\r
+      <source>CLEAR_ALL</source>\r
+      <translation>Clear all</translation>\r
+    </message>\r
+    <message>\r
+      <source>INCORRECT_INPUT</source>\r
+      <translation>Incorrect input</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_PriorityTableModel</name>\r
+    <message>\r
+      <source>LESS</source>\r
+      <translation>&lt;</translation>\r
+    </message>\r
+    <message>\r
+      <source>GREATER</source>\r
+      <translation>&gt;</translation>\r
+    </message>\r
+    <message>\r
+      <source>PRIORITY</source>\r
+      <translation>Priority</translation>\r
+    </message>\r
+    <message>\r
+      <source>ZMIN</source>\r
+      <translation>Zmin</translation>\r
+    </message>\r
+    <message>\r
+      <source>ZMAX</source>\r
+      <translation>Zmax</translation>\r
+    </message>\r
+    <message>\r
+      <source>OBJECT1</source>\r
+      <translation>Object 1</translation>\r
+    </message>\r
+    <message>\r
+      <source>OBJECT2</source>\r
+      <translation>Object 2</translation>\r
+    </message>\r
+    <message>\r
+      <source>BATHYMETRY</source>\r
+      <translation>Bathymetry</translation>\r
+    </message>\r
+    <message>\r
+      <source>ALREADY_EXISTS</source>\r
+      <translation>The selected objects combination already exists.</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_RiverBottomDlg</name>\r
+    <message>\r
+      <source>STREAM_OBJECT</source>\r
+      <translation>Stream object</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_RiverBottomOp</name>\r
+    <message>\r
+      <source>FIND_STREAM_BOTTOM</source>\r
+      <translation>Find stream bottom</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ProfileInterpolateDlg</name>\r
+    <message>\r
+      <source>STREAM_OBJECT</source>\r
+      <translation>Stream object</translation>\r
+    </message>\r
+    <message>\r
+      <source>INTERPOLATOR</source>\r
+      <translation>Interpolator</translation>\r
+    </message>\r
+    <message>\r
+      <source>DESCRIPTION</source>\r
+      <translation>Description</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILE_1</source>\r
+      <translation>Profile 1</translation>\r
+    </message>\r
+    <message>\r
+      <source>PROFILE_2</source>\r
+      <translation>Profile 2</translation>\r
+    </message>\r
+    <message>\r
+      <source>NUMBER_OF_PROFILES</source>\r
+      <translation>Number of profiles</translation>\r
+    </message>\r
+    <message>\r
+      <source>PARAMETERS</source>\r
+      <translation>Parameters</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ProfileInterpolateOp</name>\r
+    <message>\r
+      <source>PROFILE_INTERPOLATION</source>\r
+      <translation>Profile interpolation</translation>\r
+    </message>\r
+    <message>\r
+      <source>INTERPOLATION_ERROR</source>\r
+      <translation>Interpolation error</translation>\r
+    </message>\r
+    <message>\r
+      <source>CALCULATE_ERROR</source>\r
+      <translation>Can't perform calculation: %1</translation>\r
+    </message>\r
+    <message>\r
+      <source>CANT_GET_STREAM_OBJECT</source>\r
+      <translation>Can't obtain stream oject \"%1\"</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_RecognizeContoursDlg</name>\r
+    <message>\r
+      <source>NAME</source>\r
+      <translation>Name</translation>\r
+    </message>\r
+    <message>\r
+      <source>ORIGINAL_IMAGE</source>\r
+      <translation>Original image</translation>\r
+    </message>\r
+    <message>\r
+      <source>RECOGNIZED_POLYLINES</source>\r
+      <translation>Polylines</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_RecognizeContoursOp</name>\r
+    <message>\r
+      <source>CONTOURS_RECOGNITION</source>\r
+      <translation>Contours recognition</translation>\r
+    </message>\r
+    <message>\r
+      <source>NO_DETECTED_CONTOURS</source>\r
+      <translation>No contours were detected.</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_SplitPolylinesOp</name>\r
+    <message>\r
+      <source>SPLIT_POLYLINES</source>\r
+      <translation>Split polylines</translation>\r
+    </message>\r
+    <message>\r
+      <source>SPLIT_POLYLINE_BY_TOOL_WARNING_TITLE</source>\r
+      <translation>Split polyline by tool</translation>\r
+    </message>\r
+    <message>\r
+      <source>SPLIT_POLYLINE_BY_TOOL_WARNING_MSG</source>\r
+      <translation>The split polyline is not intersected by the tool.</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ShowAttrPolyOp</name>\r
+    <message>\r
+      <source>SHOWATTR_POLYLINE</source>\r
+      <translation>DBF attributes of polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>SHOWATTR_POLY_NO_ATTR</source>\r
+      <translation>This polyline does not contain DBF information</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_SplitPolylinesDlg</name>\r
+    <message>\r
+      <source>POLYLINES</source>\r
+      <translation>Polylines</translation>\r
+    </message>\r
+    <message>\r
+      <source>POINT</source>\r
+      <translation>Point</translation>\r
+    </message>\r
+    <message>\r
+      <source>POLYLINE</source>\r
+      <translation>Polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>TOOL_POLYLINE</source>\r
+      <translation>Tool polyline</translation>\r
+    </message>\r
+    <message>\r
+      <source>SPLIT_POLYLINES</source>\r
+      <translation>Split polylines</translation>\r
+    </message>\r
+    <message>\r
+      <source>BY_POINT</source>\r
+      <translation>By point</translation>\r
+    </message>\r
+    <message>\r
+      <source>BY_TOOL</source>\r
+      <translation>By tool</translation>\r
+    </message>\r
+    <message>\r
+      <source>COMPLETE_SPLIT</source>\r
+      <translation>Complete split</translation>\r
+    </message>\r
+    <message>\r
+      <source>RESULT_NAME</source>\r
+      <translation>Result name prefix:</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_MergePolylinesDlg</name>\r
+    <message>\r
+      <source>POLYLINES</source>\r
+      <translation>Polylines</translation>\r
+    </message>\r
+    <message>\r
+      <source>MERGE_POLYLINES</source>\r
+      <translation>Merge polylines</translation>\r
+    </message>\r
+    <message>\r
+      <source>RESULT_NAME</source>\r
+      <translation>Result name:</translation>\r
+    </message>\r
+    <message>\r
+      <source>IS_CONNECT</source>\r
+      <translation>Connect by a new segment</translation>\r
+    </message>\r
+  </context>\r
+  <context>\r
+    <name>HYDROGUI_MergePolylinesOp</name>\r
+    <message>\r
+      <source>MERGE_POLYLINES</source>\r
+      <translation>Merge polylines</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ObjListBox</name>\r
+    <message>\r
+      <source>INCLUDE</source>\r
+      <translation>Include</translation>\r
+    </message>\r
+    <message>\r
+      <source>EXCLUDE</source>\r
+      <translation>Exclude</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_PolylineExtractionOp</name>\r
+    <message>\r
+      <source>POLYLINE_EXTRACTION</source>\r
+      <translation>Polyline extraction</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_PolylineStyleDlg</name>\r
+    <message>\r
+      <source>POLYLINE_STYLE</source>\r
+      <translation>Polyline style</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_POLYLINE_ARROW</source>\r
+      <translation>Polyline arrow</translation>\r
+    </message>\r
+    <message>\r
+      <source>PREF_POLYLINE_ARROW_SIZE</source>\r
+      <translation>Polyline arrow size</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_ImportBCPolygonOp</name>\r
+     <message>\r
+      <source>BC_POLYGON_FILTER</source>\r
+      <translation>Shape files (*.shp)</translation>\r
+    </message>\r
+  </context>\r
+  <context>\r
+    <name>HYDROGUI_SetBoundaryTypePolygonOp</name>\r
+     <message>\r
+      <source>SET_BOUNDARY_TYPE_POLYGON</source>\r
+      <translation>Set Boundary Type</translation>\r
+    </message>\r
+  </context>\r
+  <context>\r
+    <name>HYDROGUI_SetBoundaryTypePolygonDlg</name>\r
+     <message>\r
+      <source>BOUNDARY_TYPE</source>\r
+      <translation>Boundary Type: </translation>\r
+    </message>\r
+     <message>\r
+      <source>CUT_TOOL</source>\r
+      <translation>Cut Tool</translation>\r
+    </message>\r
+     <message>\r
+      <source>INCLUDE_TOOL</source>\r
+      <translation>Include Tool</translation>\r
+    </message>\r
+     <message>\r
+      <source>SELECTION_TOOL</source>\r
+      <translation>Selection tool</translation>\r
+    </message>\r
+  </context>\r
+  <context>\r
+    <name>HYDROGUI_MeasurementToolDlg</name>\r
+     <message>\r
+      <source>LINEAR_DISTANCE</source>\r
+      <translation>Linear distance</translation>\r
+    </message>\r
+     <message>\r
+      <source>POLYLINE_DISTANCE</source>\r
+      <translation>Distance on polyline:</translation>\r
+    </message>\r
+     <message>\r
+      <source>TOTAL_DST</source>\r
+      <translation>Distance:</translation>\r
+    </message>\r
+     <message>\r
+      <source>CLEAR</source>\r
+      <translation>Clear</translation>\r
+    </message>\r
+      <message>\r
+      <source>CLOSE</source>\r
+      <translation>Close</translation>\r
+    </message>\r
+  </context>\r
+\r
+  <context>\r
+    <name>HYDROGUI_MeasurementToolOp</name>\r
+     <message>\r
+      <source>MEASUREMENT_TOOL</source>\r
+      <translation>Measurement Tool</translation>\r
+    </message>\r
+  </context>\r
+  \r
+  <context>\r
+    <name>HYDROGUI_ProgressIndicator</name>\r
+     <message>\r
+      <source>CANCELLING</source>\r
+      <translation>Cancelling...</translation>\r
+    </message>\r
+  </context>\r
+\r
+\r
+</TS>\r