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