From a6de230218bd903b2a32d8925c269d6b97fd124b Mon Sep 17 00:00:00 2001 From: vsr Date: Wed, 27 Aug 2014 13:02:27 +0400 Subject: [PATCH] 0022628: [CEA 1202] The default icon disposition is not correct in french and in japanese --- src/CAF/CAF_Application.cxx | 3 +- src/CAM/CAM_Module.cxx | 7 +- src/CAM/CAM_Module.h | 2 +- src/GLViewer/GLViewer_ViewFrame.cxx | 4 +- src/GLViewer/resources/GLViewer_msg_en.ts | 90 +- src/GLViewer/resources/GLViewer_msg_fr.ts | 90 +- src/GLViewer/resources/GLViewer_msg_ja.ts | 90 +- src/GraphicsView/CMakeLists.txt | 1 + src/GraphicsView/GraphicsView_ViewFrame.cxx | 4 +- src/GuiHelpers/StandardApp_Module.cxx | 2 +- src/LightApp/LightApp_Application.cxx | 3 +- src/LightApp/resources/LightApp.xml | 4 +- src/OCCViewer/OCCViewer_ViewWindow.cxx | 37 +- src/OCCViewer/resources/OCCViewer_msg_en.ts | 262 +++--- src/OCCViewer/resources/OCCViewer_msg_fr.ts | 261 +++--- src/OCCViewer/resources/OCCViewer_msg_ja.ts | 262 +++--- src/Plot2d/Plot2d_ViewFrame.cxx | 8 +- src/Plot2d/Plot2d_ViewWindow.cxx | 4 +- src/Plot2d/resources/Plot2d_msg_en.ts | 841 +++++++++--------- src/Plot2d/resources/Plot2d_msg_fr.ts | 803 ++++++++--------- src/Plot2d/resources/Plot2d_msg_ja.ts | 791 ++++++++-------- src/Qtx/QtxActionToolMgr.cxx | 53 +- src/Qtx/QtxActionToolMgr.h | 3 + src/QxScene/QxScene_ViewWindow.cxx | 4 +- src/QxScene/resources/QxSceneViewer_msg_en.ts | 3 + src/QxScene/resources/QxSceneViewer_msg_fr.ts | 3 + src/QxScene/resources/QxSceneViewer_msg_ja.ts | 3 + .../SALOME_PYQT_PyModule.cxx | 3 +- src/SALOME_PYQT/SalomePyQt/SalomePyQt.cxx | 22 +- src/SALOME_PYQT/SalomePyQt/SalomePyQt.h | 2 +- src/SALOME_PYQT/SalomePyQt/SalomePyQt.sip | 2 +- src/STD/STD_Application.cxx | 3 +- src/SUIT/SUIT_Application.cxx | 7 +- src/SUIT/SUIT_Application.h | 2 +- src/SVTK/SVTK_ViewWindow.cxx | 9 +- src/SVTK/resources/SVTK_msg_en.ts | 8 +- src/SVTK/resources/SVTK_msg_fr.ts | 8 +- src/SVTK/resources/SVTK_msg_ja.ts | 8 +- src/VTKViewer/VTKViewer_ViewWindow.cxx | 1 + src/VTKViewer/resources/VTKViewer_msg_en.ts | 11 +- src/VTKViewer/resources/VTKViewer_msg_fr.ts | 11 +- src/VTKViewer/resources/VTKViewer_msg_ja.ts | 11 +- 42 files changed, 1820 insertions(+), 1926 deletions(-) diff --git a/src/CAF/CAF_Application.cxx b/src/CAF/CAF_Application.cxx index 8b9125fb5..c87d0cf2c 100755 --- a/src/CAF/CAF_Application.cxx +++ b/src/CAF/CAF_Application.cxx @@ -190,7 +190,8 @@ void CAF_Application::createActions() createMenu( EditRedoId, editMenu, 0 ); createMenu( separator(), editMenu, -1, 0 ); - int stdTBar = createTool( tr( "INF_DESK_TOOLBAR_STANDARD" ) ); + int stdTBar = createTool( tr( "INF_DESK_TOOLBAR_STANDARD" ), // title (language-dependant) + QString( "SalomeStandard" ) ); // name (language-independant) createTool( separator(), stdTBar ); createTool( EditUndoId, stdTBar ); diff --git a/src/CAM/CAM_Module.cxx b/src/CAM/CAM_Module.cxx index 0f0d55708..2cba7bc1e 100755 --- a/src/CAM/CAM_Module.cxx +++ b/src/CAM/CAM_Module.cxx @@ -396,17 +396,18 @@ QtxActionToolMgr* CAM_Module::toolMgr() const If the toolbar has been already created, its ID is just returned. - \param name toolbar name + \param title toolbar title + \param name toolbar name (identifier) \return toolbar ID or -1 if toolbar could not be created */ -int CAM_Module::createTool( const QString& name ) +int CAM_Module::createTool( const QString& title, const QString& name ) { if ( !toolMgr() ) return -1; ActionMgrLocker lock( toolMgr(), !myToolShown ); - return toolMgr()->createToolBar( name, myToolShown ); + return toolMgr()->createToolBar( title, name ); } /*! diff --git a/src/CAM/CAM_Module.h b/src/CAM/CAM_Module.h index df0019f76..49fbaf4e7 100755 --- a/src/CAM/CAM_Module.h +++ b/src/CAM/CAM_Module.h @@ -99,7 +99,7 @@ public: const bool = false, QObject* = 0, const char* = 0, const QString& = QString() ); QtxActionGroup* createActionGroup( const int, const bool = true ); - int createTool( const QString& ); + int createTool( const QString&, const QString& = QString() ); int createTool( const int, const int, const int = -1 ); int createTool( const int, const QString&, const int = -1 ); int createTool( QAction*, const int, const int = -1, const int = -1 ); diff --git a/src/GLViewer/GLViewer_ViewFrame.cxx b/src/GLViewer/GLViewer_ViewFrame.cxx index ee40447d8..f0a23b919 100644 --- a/src/GLViewer/GLViewer_ViewFrame.cxx +++ b/src/GLViewer/GLViewer_ViewFrame.cxx @@ -148,7 +148,9 @@ void GLViewer_ViewFrame::createActions() */ void GLViewer_ViewFrame::createToolBar() { - int tid = toolMgr()->createToolBar( tr("LBL_TOOLBAR_LABEL"), false ); + int tid = toolMgr()->createToolBar( tr( "LBL_TOOLBAR_LABEL" ), // title (language-dependant) + QString( "GLViewerViewOperations" ), // name (language-independant) + false ); // disable floatable toolbar toolMgr()->append( DumpId, tid ); QtxMultiAction* aScaleAction = new QtxMultiAction( this ); diff --git a/src/GLViewer/resources/GLViewer_msg_en.ts b/src/GLViewer/resources/GLViewer_msg_en.ts index d99e2af4c..8a594b342 100644 --- a/src/GLViewer/resources/GLViewer_msg_en.ts +++ b/src/GLViewer/resources/GLViewer_msg_en.ts @@ -2,23 +2,35 @@ - @default + GLViewer_ViewFrame - DSC_FITSELECT - Fit area of selection within the view frame + MNU_FITSELECT + Fit Selection - ERROR - Error + DSC_FITSELECT + Fit area of selection within the view frame MNU_DUMP_VIEW Dump + + DSC_DUMP_VIEW + Saves the active view in the image file + MNU_PAN_VIEW Panning + + DSC_PAN_VIEW + Panning the view + + + MNU_GLOBALPAN_VIEW + Global Panning + DSC_GLOBALPAN_VIEW Selection of a new center of the view @@ -28,64 +40,32 @@ Zoom - DSC_PAN_VIEW - Panning the view - - - DSC_FITALL - Fit all objects inside the view frame + DSC_ZOOM_VIEW + Zoom the view MNU_FITALL Fit All - MNU_GLOBALPAN_VIEW - Global Panning - - - INF_APP_DUMP_VIEW - Dump view - - - GL_IMAGE_FILES - Images Files (*.bmp *.png) + DSC_FITALL + Fit all objects inside the view frame MNU_RESET_VIEW Reset - DSC_FITRECT - Fit area within the view frame + DSC_RESET_VIEW + Reset View Point MNU_FITRECT Fit Area - CHANGE_BGCOLOR - Change background... - - - DSC_DUMP_VIEW - Saves the active view in the image file - - - MNU_FITSELECT - Fit Selection - - - DSC_ZOOM_VIEW - Zoom the view - - - DSC_RESET_VIEW - Reset View Point - - - ERR_DOC_CANT_SAVE_FILE - Cannot save file + DSC_FITRECT + Fit area within the view frame LBL_TOOLBAR_LABEL @@ -93,25 +73,17 @@ - GLViewer_ViewFrame - - DUMP_VIEW_SAVE_FILE_DLG_CAPTION - Save Dump View in file - - - DUMP_VIEW_ERROR_DLG_TEXT - Can't save Dump View in file - + GLViewer_ViewManager - DUMP_VIEW_ERROR_DLG_CAPTION - Error + GL_VIEW_TITLE + GL Scene:%M - viewer:%V - GLViewer_ViewManager + GLViewer_Viewer - GL_VIEW_TITLE - GL Scene:%M - viewer:%V + CHANGE_BGCOLOR + Change background... diff --git a/src/GLViewer/resources/GLViewer_msg_fr.ts b/src/GLViewer/resources/GLViewer_msg_fr.ts index 32fea6fa1..54e581699 100755 --- a/src/GLViewer/resources/GLViewer_msg_fr.ts +++ b/src/GLViewer/resources/GLViewer_msg_fr.ts @@ -2,23 +2,35 @@ - @default + GLViewer_ViewFrame - DSC_FITSELECT - Montrer la zone choisie dans la vue + MNU_FITSELECT + Afficher la sélection - ERROR - Erreur + DSC_FITSELECT + Montrer la zone choisie dans la vue MNU_DUMP_VIEW Sauvegarder + + DSC_DUMP_VIEW + Sauvegarder la vue en cours dans un fichier image + MNU_PAN_VIEW Déplacement + + DSC_PAN_VIEW + Déplacer la vue + + + MNU_GLOBALPAN_VIEW + Déplacement global + DSC_GLOBALPAN_VIEW Sélection d'un nouveau centre de vue @@ -28,64 +40,32 @@ Zoomer - DSC_PAN_VIEW - Déplacer la vue - - - DSC_FITALL - Montrer tous les objets dans la vue + DSC_ZOOM_VIEW + Zoomer la vue MNU_FITALL Tout afficher - MNU_GLOBALPAN_VIEW - Déplacement global - - - INF_APP_DUMP_VIEW - Sauvegarder la vue - - - GL_IMAGE_FILES - Fichiers images (*.bmp *.png) + DSC_FITALL + Montrer tous les objets dans la vue MNU_RESET_VIEW Restaurer - DSC_FITRECT - Montrer la zone dans la vue + DSC_RESET_VIEW + Restaurer le point de vue MNU_FITRECT Afficher la zone - CHANGE_BGCOLOR - Changer la couleur d'arrière-plan... - - - DSC_DUMP_VIEW - Sauvegarder la vue en cours dans un fichier image - - - MNU_FITSELECT - Afficher la sélection - - - DSC_ZOOM_VIEW - Zoomer la vue - - - DSC_RESET_VIEW - Restaurer le point de vue - - - ERR_DOC_CANT_SAVE_FILE - Impossible de sauvegarder le fichier + DSC_FITRECT + Montrer la zone dans la vue LBL_TOOLBAR_LABEL @@ -93,25 +73,17 @@ - GLViewer_ViewFrame - - DUMP_VIEW_SAVE_FILE_DLG_CAPTION - Sauvegarder la vue dans le fichier - - - DUMP_VIEW_ERROR_DLG_TEXT - Impossible de sauvegarder la vue dans le fichier - + GLViewer_ViewManager - DUMP_VIEW_ERROR_DLG_CAPTION - Erreur + GL_VIEW_TITLE + Scène GL:%M - visualiseur:%V - GLViewer_ViewManager + GLViewer_Viewer - GL_VIEW_TITLE - Scène GL:%M - visualiseur:%V + CHANGE_BGCOLOR + Changer la couleur d'arrière-plan... diff --git a/src/GLViewer/resources/GLViewer_msg_ja.ts b/src/GLViewer/resources/GLViewer_msg_ja.ts index f833a7930..14b0b6749 100644 --- a/src/GLViewer/resources/GLViewer_msg_ja.ts +++ b/src/GLViewer/resources/GLViewer_msg_ja.ts @@ -2,23 +2,35 @@ - @default + GLViewer_ViewFrame - DSC_FITSELECT - ビューで選択したゾーンを表示します。 + MNU_FITSELECT + ディスプレイの選択 - ERROR - エラー + DSC_FITSELECT + ビューで選択したゾーンを表示します。 MNU_DUMP_VIEW 保存 + + DSC_DUMP_VIEW + 現在のビューをイメージ ファイルに保存します。 + MNU_PAN_VIEW パンニング + + DSC_PAN_VIEW + ビューを移動します。 + + + MNU_GLOBALPAN_VIEW + グローバルパンニング + DSC_GLOBALPAN_VIEW ビューの新しい中心地の選択 @@ -28,64 +40,32 @@ ズーム - DSC_PAN_VIEW - ビューを移動します。 - - - DSC_FITALL - すべてのオブジェクトを表示します。 + DSC_ZOOM_VIEW + ズーム MNU_FITALL すべて表示 - MNU_GLOBALPAN_VIEW - グローバルパンニング - - - INF_APP_DUMP_VIEW - ビューを保存します。 - - - GL_IMAGE_FILES - イメージ (*.bmp *.png) ファイル + DSC_FITALL + すべてのオブジェクトを表示します。 MNU_RESET_VIEW 復元 - DSC_FITRECT - 領域にビューを表示します。 + DSC_RESET_VIEW + ビューのポイントを復元します。 MNU_FITRECT 表示エリア - CHANGE_BGCOLOR - 背景色を変更. - - - DSC_DUMP_VIEW - 現在のビューをイメージ ファイルに保存します。 - - - MNU_FITSELECT - ディスプレイの選択 - - - DSC_ZOOM_VIEW - ズーム - - - DSC_RESET_VIEW - ビューのポイントを復元します。 - - - ERR_DOC_CANT_SAVE_FILE - ファイルを保存できませんでした。 + DSC_FITRECT + 領域にビューを表示します。 LBL_TOOLBAR_LABEL @@ -93,25 +73,17 @@ - GLViewer_ViewFrame - - DUMP_VIEW_SAVE_FILE_DLG_CAPTION - ビューでファイルを保存します。 - - - DUMP_VIEW_ERROR_DLG_TEXT - ビューでファイルを保存できませんでした。 - + GLViewer_ViewManager - DUMP_VIEW_ERROR_DLG_CAPTION - エラー + GL_VIEW_TITLE + シーン GL: %M - ビューアー: %V - GLViewer_ViewManager + GLViewer_Viewer - GL_VIEW_TITLE - シーン GL: %M - ビューアー: %V + CHANGE_BGCOLOR + 背景色を変更. diff --git a/src/GraphicsView/CMakeLists.txt b/src/GraphicsView/CMakeLists.txt index 3e97c1140..1bc4f83ca 100755 --- a/src/GraphicsView/CMakeLists.txt +++ b/src/GraphicsView/CMakeLists.txt @@ -65,6 +65,7 @@ SET(_ts_RESOURCES resources/GraphicsView_images.ts resources/GraphicsView_msg_en.ts resources/GraphicsView_msg_fr.ts + resources/GraphicsView_msg_ja.ts ) # resource files / static diff --git a/src/GraphicsView/GraphicsView_ViewFrame.cxx b/src/GraphicsView/GraphicsView_ViewFrame.cxx index 6f5f47dcf..9bc663af9 100644 --- a/src/GraphicsView/GraphicsView_ViewFrame.cxx +++ b/src/GraphicsView/GraphicsView_ViewFrame.cxx @@ -171,7 +171,9 @@ void GraphicsView_ViewFrame::createActions() //================================================================ int GraphicsView_ViewFrame::createToolBar() { - int tid = toolMgr()->createToolBar( tr("LBL_TOOLBAR_LABEL") ); + int tid = toolMgr()->createToolBar( tr("LBL_TOOLBAR_LABEL"), // title (language-dependant) + QString( "GraphicsViewViewOperations" ), // name (language-independant) + false ); // disable floatable toolbar toolMgr()->append( DumpId, tid ); myScaleAction = new QtxMultiAction( this ); diff --git a/src/GuiHelpers/StandardApp_Module.cxx b/src/GuiHelpers/StandardApp_Module.cxx index 089ed379c..8917f75fe 100644 --- a/src/GuiHelpers/StandardApp_Module.cxx +++ b/src/GuiHelpers/StandardApp_Module.cxx @@ -76,7 +76,7 @@ void StandardApp_Module::initialize( CAM_Application* app ) // share/salome/resources/xsalome/SalomeApp.xml in the install // directory. _defaultMenuId = this->createMenu( QCHARSTAR(moduleName()), -1, -1, 30 ); - _defaultToolbarId = this->createTool ( QCHARSTAR(moduleName()) ); + _defaultToolbarId = this->createTool ( QCHARSTAR(moduleName()), moduleName() ); _actionId_internalCount = StandardApp_Module::ACTIONID_DEFAULT_INIT_VALUE; // diff --git a/src/LightApp/LightApp_Application.cxx b/src/LightApp/LightApp_Application.cxx index 9653a7be3..1a8cb150d 100644 --- a/src/LightApp/LightApp_Application.cxx +++ b/src/LightApp/LightApp_Application.cxx @@ -754,7 +754,8 @@ void LightApp_Application::createActions() createMenu( StyleId, viewMenu, 20, -1 ); createMenu( FullScreenId, viewMenu, 20, -1 ); - int modTBar = createTool( tr( "INF_TOOLBAR_MODULES" ) ); + int modTBar = createTool( tr( "INF_TOOLBAR_MODULES" ), // title (language-dependant) + QString( "SalomeModules" ) ); // name (language-independant) createTool( ModulesListId, modTBar ); } diff --git a/src/LightApp/resources/LightApp.xml b/src/LightApp/resources/LightApp.xml index 87235cbc3..35aaef3da 100644 --- a/src/LightApp/resources/LightApp.xml +++ b/src/LightApp/resources/LightApp.xml @@ -246,9 +246,9 @@
- +
- +
diff --git a/src/OCCViewer/OCCViewer_ViewWindow.cxx b/src/OCCViewer/OCCViewer_ViewWindow.cxx index ecd91a634..d8002d637 100755 --- a/src/OCCViewer/OCCViewer_ViewWindow.cxx +++ b/src/OCCViewer/OCCViewer_ViewWindow.cxx @@ -1263,9 +1263,9 @@ void OCCViewer_ViewWindow::createActions() connect(aAction, SIGNAL(triggered()), this, SLOT(onCloneView())); toolMgr()->registerAction( aAction, CloneId ); - aAction = new QtxAction (tr ("MNU_CLIPPING"), aResMgr->loadPixmap ("OCCViewer", tr ("ICON_OCCVIEWER_CLIPPING")), - tr ("MNU_CLIPPING"), 0, this); - aAction->setStatusTip (tr ("DSC_CLIPPING")); + aAction = new QtxAction (tr("MNU_CLIPPING"), aResMgr->loadPixmap ("OCCViewer", tr("ICON_OCCVIEWER_CLIPPING")), + tr("MNU_CLIPPING"), 0, this); + aAction->setStatusTip (tr("DSC_CLIPPING")); aAction->setCheckable (true); connect (aAction, SIGNAL (toggled (bool)), this, SLOT (onClipping (bool))); toolMgr()->registerAction (aAction, ClippingId); @@ -1370,22 +1370,21 @@ void OCCViewer_ViewWindow::createActions() */ void OCCViewer_ViewWindow::createToolBar() { - QString aToolbarName; - switch (my2dMode) { - case XYPlane: - aToolbarName = tr( "LBL_XYTOOLBAR_LABEL" ); - break; - case XZPlane: - aToolbarName = tr( "LBL_XZTOOLBAR_LABEL" ); - break; - case YZPlane: - aToolbarName = tr( "LBL_YZTOOLBAR_LABEL" ); - break; - default: - aToolbarName = tr( "LBL_3DTOOLBAR_LABEL" ); - } - - int tid = toolMgr()->createToolBar( aToolbarName, false ); + static const char* titles[] = { + "LBL_3DTOOLBAR_LABEL", + "LBL_XYTOOLBAR_LABEL", + "LBL_XZTOOLBAR_LABEL", + "LBL_YZTOOLBAR_LABEL", + }; + static const char* names[] = { + "OCCViewer3DViewOperations", + "OCCViewerXYViewOperations", + "OCCViewerXZViewOperations", + "OCCViewerYZViewOperations", + }; + int tid = toolMgr()->createToolBar( tr( titles[my2dMode] ), // title (language-dependant) + QString( names[my2dMode] ), // name (language-independant) + false ); // disable floatable toolbar if ( my2dMode != No2dMode ){ toolMgr()->append( ReturnTo3dViewId, tid ); toolMgr()->append( toolMgr()->separator(), tid ); diff --git a/src/OCCViewer/resources/OCCViewer_msg_en.ts b/src/OCCViewer/resources/OCCViewer_msg_en.ts index ffeee2b0f..762ce05cd 100644 --- a/src/OCCViewer/resources/OCCViewer_msg_en.ts +++ b/src/OCCViewer/resources/OCCViewer_msg_en.ts @@ -3,318 +3,290 @@ @default + + + OCC_TEXTURE_FILES + Update to new supported format (see OCCT Image_AlienPixMap documentation) + Image files (*.jpeg *jpg *.jpe *.png *.bmp *.gif *.ppm *.tif *.tiff* .tga *.exr) + + + + OCCViewer_ViewWindow MNU_FRONT_VIEW Front - ERROR - Error + DSC_FRONT_VIEW + Front View - MNU_DUMP_VIEW - Dump view + MNU_TOP_VIEW + Top DSC_TOP_VIEW Top View - MNU_PAN_VIEW - Panning + MNU_DUMP_VIEW + Dump view - MNU_CLONE_VIEW - Clone View + DSC_DUMP_VIEW + Saves the active view in the image file - DSC_SHOW_TRIHEDRE - Show/Hide trihedron in the current view + MNU_PAN_VIEW + Panning - MNU_SHOW_TRIHEDRE - Show/Hide trihedron + DSC_PAN_VIEW + Panning the view - MNU_TOP_VIEW - Top + MNU_GLOBALPAN_VIEW + Global Panning DSC_GLOBALPAN_VIEW Selection of a new center of the view - DSC_ROTATE_VIEW - Rotation of the point of view around the scene center - - - MNU_ZOOM_VIEW - Zoom - - - DSC_PAN_VIEW - Panning the view - - - DSC_LEFT_VIEW - Left View + MNU_CLONE_VIEW + Clone View - DSC_SHOOT_VIEW - Memorizes the state of the active view and adds it to the list + DSC_CLONE_VIEW + Create new OCC viewer for the active scene - DSC_FITALL - Fit all objects inside the view frame + MNU_SHOW_TRIHEDRE + Show/Hide trihedron - MNU_FITALL - Fit All + DSC_SHOW_TRIHEDRE + Show/Hide trihedron in the current view MNU_ROTATE_VIEW Rotation - DSC_FRONT_VIEW - Front View - - - MNU_ROTATIONPOINTGRAVITY_VIEW - Rotation Point : the gravity center - - - MNU_GLOBALPAN_VIEW - Global Panning - - - INF_APP_DUMP_VIEW - Dump view - - - DSC_CLIPPING - Set clipping plane + DSC_ROTATE_VIEW + Rotation of the point of view around the scene center - DSC_CLONE_VIEW - Create new OCC viewer for the active scene + MNU_ZOOM_VIEW + Zoom - INF_APP_SHOOT_VIEW - Memorize view + DSC_ZOOM_VIEW + Zoom the view - MNU_CLIPPING - Clipping + MNU_LEFT_VIEW + Left - MNU_BACK_VIEW - Back + DSC_LEFT_VIEW + Left View MNU_SHOOT_VIEW Memorize View - DSC_CHANGINGROTATIONPOINT_VIEW - Change the point, around which the rotation is performed + DSC_SHOOT_VIEW + Memorizes the state of the active view and adds it to the list - MNU_BOTTOM_VIEW - Bottom + MNU_FITALL + Fit All - MNU_RESET_VIEW - Reset + DSC_FITALL + Fit all objects inside the view frame - MNU_LEFT_VIEW - Left + MNU_CLIPPING + Clipping - DSC_RIGHT_VIEW - Right View + DSC_CLIPPING + Set clipping plane - DSC_ANTICLOCKWISE_VIEW - Rotate view counterclockwise + MNU_BACK_VIEW + Back - DSC_CLOCKWISE_VIEW - Rotate View Clockwise + DSC_BACK_VIEW + Back View MNU_CHANGINGROTATIONPOINT_VIEW Change Rotation Point - DSC_FITRECT - Fit area within the view frame + DSC_CHANGINGROTATIONPOINT_VIEW + Change the point, around which the rotation is performed - MNU_FITRECT - Fit Area + MNU_BOTTOM_VIEW + Bottom DSC_BOTTOM_VIEW Bottom View - DSC_DUMP_VIEW - Saves the active view in the image file - - - DSC_ZOOM_VIEW - Zoom the view - - - MNU_ROTATIONPOINT000_VIEW - Rotation Point : (0,0,0) - - - MNU_ROTATIONPOINTSELECTED_VIEW - Rotation Point : the point selected by the user + MNU_RESET_VIEW + Reset DSC_RESET_VIEW Reset View Point - ERR_DOC_CANT_SAVE_FILE - Cannot save file - - - DSC_PRESETS_VIEW - Selection of the memorized state of the active view + MNU_RIGHT_VIEW + Right - MNU_PRESETS_VIEW - Restore View + DSC_RIGHT_VIEW + Right View MNU_ANTICLOCKWISE_VIEW Rotate counterclockwise - MNU_CLOCKWISE_VIEW - Rotate clockwise - - - MNU_RIGHT_VIEW - Right - - - INF_APP_PRESETS_VIEW - Restore view + DSC_ANTICLOCKWISE_VIEW + Rotate view counterclockwise - LBL_XYTOOLBAR_LABEL - XY View Operations + MNU_CLOCKWISE_VIEW + Rotate clockwise - LBL_XZTOOLBAR_LABEL - XZ View Operations + DSC_CLOCKWISE_VIEW + Rotate View Clockwise - LBL_YZTOOLBAR_LABEL - YZ View Operations + MNU_FITRECT + Fit Area - LBL_3DTOOLBAR_LABEL - 3D View Operations + DSC_FITRECT + Fit area within the view frame - DSC_BACK_VIEW - Back View + MNU_PRESETS_VIEW + Restore View - DSC_SCALING - Change scale of axes + DSC_PRESETS_VIEW + Selection of the memorized state of the active view MNU_SCALING Scaling - DSC_GRADUATED_AXES - Graduated axes + DSC_SCALING + Change scale of axes MNU_GRADUATED_AXES Graduated axes - DSC_AMBIENT - Toogle keep only ambient light + DSC_GRADUATED_AXES + Graduated axes MNU_AMBIENT Toogle keep only ambient light - DSC_STYLE_SWITCH - Interaction style switch + DSC_AMBIENT + Toogle keep only ambient light MNU_STYLE_SWITCH Interaction style switch - DSC_ZOOMING_STYLE_SWITCH - Zooming style switch + DSC_STYLE_SWITCH + Interaction style switch MNU_ZOOMING_STYLE_SWITCH Zooming style switch - DSC_ENABLE_PRESELECTION - Enable/disable preselection + DSC_ZOOMING_STYLE_SWITCH + Zooming style switch MNU_ENABLE_PRESELECTION Enable/disable preselection - DSC_ENABLE_SELECTION - Enable/disable selection + DSC_ENABLE_PRESELECTION + Enable/disable preselection MNU_ENABLE_SELECTION Enable/disable selection - OCC_IMAGE_FILES - Images Files (*.bmp *.png *.jpg *.jpeg *.eps *.ps) + DSC_ENABLE_SELECTION + Enable/disable selection - OCC_TEXTURE_FILES - Update to new supported format (see OCCT Image_AlienPixMap documentation) - Image files (*.jpeg *jpg *.jpe *.png *.bmp *.gif *.ppm *.tif *.tiff* .tga *.exr) + MNU_MAXIMIZE_VIEW + Maximize DSC_MAXIMIZE_VIEW Maximize view + + MNU_MINIMIZE_VIEW + Minimize + DSC_MINIMIZE_VIEW Minimize view + + MNU_RETURN_3D_VIEW + Return to 3D + DSC_RETURN_3D_VIEW Return to 3D view - MNU_MAXIMIZE_VIEW - Maximize + OCC_IMAGE_FILES + Images Files (*.bmp *.png *.jpg *.jpeg *.eps *.ps) - MNU_MINIMIZE_VIEW - Minimize + LBL_XYTOOLBAR_LABEL + XY View Operations - MNU_RETURN_3D_VIEW - Return to 3D + LBL_XZTOOLBAR_LABEL + XZ View Operations + + + LBL_YZTOOLBAR_LABEL + YZ View Operations + + + LBL_3DTOOLBAR_LABEL + 3D View Operations diff --git a/src/OCCViewer/resources/OCCViewer_msg_fr.ts b/src/OCCViewer/resources/OCCViewer_msg_fr.ts index ba56fdcdd..13c3299ec 100755 --- a/src/OCCViewer/resources/OCCViewer_msg_fr.ts +++ b/src/OCCViewer/resources/OCCViewer_msg_fr.ts @@ -3,317 +3,290 @@ @default + + + OCC_TEXTURE_FILES + Update to new supported format (see OCCT Image_AlienPixMap documentation) + Fichiers images (*.jpeg *jpg *.jpe *.png *.bmp *.gif *.ppm *.tif *.tiff* .tga *.exr) + + + + OCCViewer_ViewWindow MNU_FRONT_VIEW Avant - ERROR - Erreur + DSC_FRONT_VIEW + Vue de devant - MNU_DUMP_VIEW - Sauvegarder la scène + MNU_TOP_VIEW + Dessus DSC_TOP_VIEW Vue de dessus - MNU_PAN_VIEW - Panoramique + MNU_DUMP_VIEW + Sauvegarder la scène - MNU_CLONE_VIEW - Dupliquer la scène + DSC_DUMP_VIEW + Sauvegarder la scène en cours dans un fichier image - DSC_SHOW_TRIHEDRE - Afficher/cacher le trièdre dans la scène + MNU_PAN_VIEW + Panoramique - MNU_SHOW_TRIHEDRE - Afficher/cacher le trièdre + DSC_PAN_VIEW + Déplacer la vue - MNU_TOP_VIEW - Dessus + MNU_GLOBALPAN_VIEW + Panoramique global DSC_GLOBALPAN_VIEW Sélection d'un nouveau centre de vue - DSC_ROTATE_VIEW - Tourner le point de vue autour du centre de la scène - - - MNU_ZOOM_VIEW - Zoom - - - DSC_PAN_VIEW - Déplacer la vue - - - DSC_LEFT_VIEW - Vue de gauche + MNU_CLONE_VIEW + Dupliquer la scène - DSC_SHOOT_VIEW - Memoriser l'état courant de la scène et l'ajouter dans la liste + DSC_CLONE_VIEW + Ouvrir une nouvelle fenêtre de visualisation pour la scène en cours - DSC_FITALL - Redimentionner la scène pour montrer tous les objets + MNU_SHOW_TRIHEDRE + Afficher/cacher le trièdre - MNU_FITALL - Tout afficher + DSC_SHOW_TRIHEDRE + Afficher/cacher le trièdre dans la scène MNU_ROTATE_VIEW Rotation - DSC_FRONT_VIEW - Vue de devant - - - MNU_ROTATIONPOINTGRAVITY_VIEW - Point de Rotation : le centre de gravité - - - MNU_GLOBALPAN_VIEW - Panoramique global - - - INF_APP_DUMP_VIEW - Sauvegarder la vue - - - DSC_CLIPPING - Définir le plan de coupe + DSC_ROTATE_VIEW + Tourner le point de vue autour du centre de la scène - DSC_CLONE_VIEW - Ouvrir une nouvelle fenêtre de visualisation pour la scène en cours + MNU_ZOOM_VIEW + Zoom - INF_APP_SHOOT_VIEW - Mémoriser la scène + DSC_ZOOM_VIEW + Zoom la vue - MNU_CLIPPING - Plan de coupe + MNU_LEFT_VIEW + Gauche - MNU_BACK_VIEW - Arrière + DSC_LEFT_VIEW + Vue de gauche MNU_SHOOT_VIEW Memoriser la vue - DSC_CHANGINGROTATIONPOINT_VIEW - Changer le point autour duquel la scène est tournée + DSC_SHOOT_VIEW + Memoriser l'état courant de la scène et l'ajouter dans la liste - MNU_BOTTOM_VIEW - Dessous + MNU_FITALL + Tout afficher - MNU_RESET_VIEW - Restaurer le point de vue + DSC_FITALL + Redimentionner la scène pour montrer tous les objets - MNU_LEFT_VIEW - Gauche + MNU_CLIPPING + Plan de coupe - DSC_RIGHT_VIEW - Vue de droite + DSC_CLIPPING + Définir le plan de coupe - DSC_ANTICLOCKWISE_VIEW - Tourner la vue à gauche + MNU_BACK_VIEW + Arrière - DSC_CLOCKWISE_VIEW - Tourner la vue à droite + DSC_BACK_VIEW + Vue arrière MNU_CHANGINGROTATIONPOINT_VIEW Changer le point de rotation - DSC_FITRECT - Redimensionner la scène pour ne montrer que sa partie choisie par l'encadré + DSC_CHANGINGROTATIONPOINT_VIEW + Changer le point autour duquel la scène est tournée - MNU_FITRECT - Afficher la zone + MNU_BOTTOM_VIEW + Dessous DSC_BOTTOM_VIEW Vue de dessous - DSC_DUMP_VIEW - Sauvegarder la scène en cours dans un fichier image - - - DSC_ZOOM_VIEW - Zoom la vue - - - MNU_ROTATIONPOINT000_VIEW - Point de Rotation : (0,0,0) - - - MNU_ROTATIONPOINTSELECTED_VIEW - Point de Rotation : le point choisi par l'utilisateur + MNU_RESET_VIEW + Restaurer le point de vue DSC_RESET_VIEW Restaurer le point de vue - ERR_DOC_CANT_SAVE_FILE - Impossible de sauvegarder le fichier - - - DSC_PRESETS_VIEW - Restaurer d'un état mémorisé de la scène courante + MNU_RIGHT_VIEW + Droit - MNU_PRESETS_VIEW - Restaurer la vue + DSC_RIGHT_VIEW + Vue de droite MNU_ANTICLOCKWISE_VIEW Tourner à gauche - MNU_CLOCKWISE_VIEW - Tourner à droite - - - MNU_RIGHT_VIEW - Droit - - - INF_APP_PRESETS_VIEW - Restaurer la scène + DSC_ANTICLOCKWISE_VIEW + Tourner la vue à gauche - LBL_XYTOOLBAR_LABEL - Opérations sur la vue XY + MNU_CLOCKWISE_VIEW + Tourner à droite - LBL_XZTOOLBAR_LABEL - Opérations sur la vue XZ + DSC_CLOCKWISE_VIEW + Tourner la vue à droite - LBL_YZTOOLBAR_LABEL - Opérations sur la vue YZ + MNU_FITRECT + Afficher la zone - LBL_3DTOOLBAR_LABEL - Opérations sur la vue 3D + DSC_FITRECT + Redimensionner la scène pour ne montrer que sa partie choisie par l'encadré - DSC_BACK_VIEW - Vue arrière + MNU_PRESETS_VIEW + Restaurer la vue - DSC_SCALING - Changer l'échelle des axes de coordonnées + DSC_PRESETS_VIEW + Restaurer d'un état mémorisé de la scène courante MNU_SCALING Changer l'échelle - DSC_GRADUATED_AXES - Axes gradués + DSC_SCALING + Changer l'échelle des axes de coordonnées MNU_GRADUATED_AXES Axes gradués - DSC_AMBIENT - Ne montrer que la lumière d'ambiance + DSC_GRADUATED_AXES + Axes gradués MNU_AMBIENT Ne montrer que la lumière d'ambiance - DSC_STYLE_SWITCH - Changer le style d'intéraction + DSC_AMBIENT + Ne montrer que la lumière d'ambiance MNU_STYLE_SWITCH Changer le style d'intéraction - DSC_ZOOMING_STYLE_SWITCH - Changer le style de zoom + DSC_STYLE_SWITCH + Changer le style d'intéraction MNU_ZOOMING_STYLE_SWITCH Changer le style de zoom - DSC_ENABLE_PRESELECTION - Activer/Désactiver la préselection + DSC_ZOOMING_STYLE_SWITCH + Changer le style de zoom MNU_ENABLE_PRESELECTION Activer/Désactiver préselection - DSC_ENABLE_SELECTION - Activer/Désactiver la selection + DSC_ENABLE_PRESELECTION + Activer/Désactiver la préselection MNU_ENABLE_SELECTION Activer/Désactiver selection - OCC_IMAGE_FILES - Fichiers images (*.bmp *.png *.jpg *.jpeg *.eps *.ps) + DSC_ENABLE_SELECTION + Activer/Désactiver la selection - OCC_TEXTURE_FILES - Fichiers images (*.jpeg *jpg *.jpe *.png *.bmp *.gif *.ppm *.tif *.tiff* .tga *.exr) + MNU_MAXIMIZE_VIEW + Maximiser DSC_MAXIMIZE_VIEW Maximiser la vue + + MNU_MINIMIZE_VIEW + Minimiser + DSC_MINIMIZE_VIEW Minimiser la vue + + MNU_RETURN_3D_VIEW + Retour à la vue 3D + DSC_RETURN_3D_VIEW Retour à la vue 3D - MNU_MAXIMIZE_VIEW - Maximiser + OCC_IMAGE_FILES + Fichiers images (*.bmp *.png *.jpg *.jpeg *.eps *.ps) - MNU_MINIMIZE_VIEW - Minimiser + LBL_XYTOOLBAR_LABEL + Opérations sur la vue XY - MNU_RETURN_3D_VIEW - Retour à la vue 3D + LBL_XZTOOLBAR_LABEL + Opérations sur la vue XZ + + + >LBL_YZTOOLBAR_LABEL + Opérations sur la vue YZ + + + LBL_3DTOOLBAR_LABEL + Opérations sur la vue 3D diff --git a/src/OCCViewer/resources/OCCViewer_msg_ja.ts b/src/OCCViewer/resources/OCCViewer_msg_ja.ts index f5afea2c9..702a63b29 100644 --- a/src/OCCViewer/resources/OCCViewer_msg_ja.ts +++ b/src/OCCViewer/resources/OCCViewer_msg_ja.ts @@ -3,318 +3,290 @@ @default + + + OCC_TEXTURE_FILES + Update to new supported format (see OCCT Image_AlienPixMap documentation) + イメージファイル (*.bmp *.gif *.pix *.xwd *.rgb *.rs) + + + + OCCViewer_ViewWindow MNU_FRONT_VIEW 正面 - ERROR - エラー + DSC_FRONT_VIEW + 正面 - MNU_DUMP_VIEW - シーンを保存します。 + MNU_TOP_VIEW + 上面 DSC_TOP_VIEW 上から見る - MNU_PAN_VIEW - 並進移動 + MNU_DUMP_VIEW + シーンを保存します。 - MNU_CLONE_VIEW - ビューの複製 + DSC_DUMP_VIEW + 現在のシーンをイメージ ファイルに保存します。 - DSC_SHOW_TRIHEDRE - 表示/非表示の三面体をシーンに + MNU_PAN_VIEW + 並進移動 - MNU_SHOW_TRIHEDRE - 軸の表示/非表示 + DSC_PAN_VIEW + ビューを移動します。 - MNU_TOP_VIEW - 上面 + MNU_GLOBALPAN_VIEW + グローバルパンニング DSC_GLOBALPAN_VIEW ビューの新しい中心地の選択 - DSC_ROTATE_VIEW - ステージの中心の周りを回転します。 - - - MNU_ZOOM_VIEW - ズーム - - - DSC_PAN_VIEW - ビューを移動します。 - - - DSC_LEFT_VIEW - 左側のビュー + MNU_CLONE_VIEW + ビューの複製 - DSC_SHOOT_VIEW - 状態の現在のシーンを保存し、一覧に追加 + DSC_CLONE_VIEW + 現在のステージの可視化の新しいウィンドウを開く - DSC_FITALL - すべてのオブジェクトを表示するには、シーンを Redimentionner + MNU_SHOW_TRIHEDRE + 軸の表示/非表示 - MNU_FITALL - 全体表示 + DSC_SHOW_TRIHEDRE + 表示/非表示の三面体をシーンに MNU_ROTATE_VIEW 回転 - DSC_FRONT_VIEW - 正面 - - - MNU_ROTATIONPOINTGRAVITY_VIEW - 回転点: 重力の中心部 - - - MNU_GLOBALPAN_VIEW - グローバルパンニング - - - INF_APP_DUMP_VIEW - ビューを保存します。 - - - DSC_CLIPPING - クリップ平面を定義します。 + DSC_ROTATE_VIEW + ステージの中心の周りを回転します。 - DSC_CLONE_VIEW - 現在のステージの可視化の新しいウィンドウを開く + MNU_ZOOM_VIEW + ズーム - INF_APP_SHOOT_VIEW - 場面を覚えています。 + DSC_ZOOM_VIEW + ズーム - MNU_CLIPPING - 断面 + MNU_LEFT_VIEW + 左側面 - MNU_BACK_VIEW - 背面 + DSC_LEFT_VIEW + 左側のビュー MNU_SHOOT_VIEW ビューの保存 - DSC_CHANGINGROTATIONPOINT_VIEW - シーンになってポイントを変更します。 + DSC_SHOOT_VIEW + 状態の現在のシーンを保存し、一覧に追加 - MNU_BOTTOM_VIEW - 底面 + MNU_FITALL + 全体表示 - MNU_RESET_VIEW - 表示リセット + DSC_FITALL + すべてのオブジェクトを表示するには、シーンを Redimentionner - MNU_LEFT_VIEW - 左側面 + MNU_CLIPPING + 断面 - DSC_RIGHT_VIEW - 右側のビュー + DSC_CLIPPING + クリップ平面を定義します。 - DSC_ANTICLOCKWISE_VIEW - 表示を左に + MNU_BACK_VIEW + 背面 - DSC_CLOCKWISE_VIEW - 右のビューを回転させる + DSC_BACK_VIEW + 背面図 MNU_CHANGINGROTATIONPOINT_VIEW 回転の基準点を変更 - DSC_FITRECT - 彼の党をボックスで選択を表示するには、ステージのサイズを変更します。 + DSC_CHANGINGROTATIONPOINT_VIEW + シーンになってポイントを変更します。 - MNU_FITRECT - 表示エリア + MNU_BOTTOM_VIEW + 底面 DSC_BOTTOM_VIEW 下から表示します。 - DSC_DUMP_VIEW - 現在のシーンをイメージ ファイルに保存します。 - - - DSC_ZOOM_VIEW - ズーム - - - MNU_ROTATIONPOINT000_VIEW - 回転点: (0,0,0) - - - MNU_ROTATIONPOINTSELECTED_VIEW - 回転点: ユーザーが選択したポイント + MNU_RESET_VIEW + 表示リセット DSC_RESET_VIEW ビューのポイントを復元します。 - ERR_DOC_CANT_SAVE_FILE - ファイルを保存できませんでした。 - - - DSC_PRESETS_VIEW - 状態の復元は、現在のシーンの記憶 + MNU_RIGHT_VIEW + 右側面 - MNU_PRESETS_VIEW - ビューの読み込み + DSC_RIGHT_VIEW + 右側のビュー MNU_ANTICLOCKWISE_VIEW 左回転 - MNU_CLOCKWISE_VIEW - 右回転 - - - MNU_RIGHT_VIEW - 右側面 - - - INF_APP_PRESETS_VIEW - ビューの復元 + DSC_ANTICLOCKWISE_VIEW + 表示を左に - LBL_XYTOOLBAR_LABEL - XY ビューの操作 + MNU_CLOCKWISE_VIEW + 右回転 - LBL_XZTOOLBAR_LABEL - XZ ビューの操作 + DSC_CLOCKWISE_VIEW + 右のビューを回転させる - LBL_YZTOOLBAR_LABEL - YZ ビューの操作 + MNU_FITRECT + 表示エリア - LBL_3DTOOLBAR_LABEL - 3D ビューの操作 + DSC_FITRECT + 彼の党をボックスで選択を表示するには、ステージのサイズを変更します。 - DSC_BACK_VIEW - 背面図 + MNU_PRESETS_VIEW + ビューの読み込み - DSC_SCALING - 座標のスケールの軸を変更します。 + DSC_PRESETS_VIEW + 状態の復元は、現在のシーンの記憶 MNU_SCALING 軸のスケーリング - DSC_GRADUATED_AXES - 目盛付軸 + DSC_SCALING + 座標のスケールの軸を変更します。 MNU_GRADUATED_AXES 目盛付軸 - DSC_AMBIENT - 環境光のみの表示 + DSC_GRADUATED_AXES + 目盛付軸 MNU_AMBIENT アンビエント ライトを表示します。 - DSC_STYLE_SWITCH - 相互作用のスタイルを変更します。 + DSC_AMBIENT + 環境光のみの表示 MNU_STYLE_SWITCH 相互作用のスタイルを変更します。 - DSC_ZOOMING_STYLE_SWITCH - ズームのスタイルを変更します。 + DSC_STYLE_SWITCH + 相互作用のスタイルを変更します。 MNU_ZOOMING_STYLE_SWITCH ズームのスタイルを変更します。 - DSC_ENABLE_PRESELECTION - 予選の有効/無効にします。 + DSC_ZOOMING_STYLE_SWITCH + ズームのスタイルを変更します。 MNU_ENABLE_PRESELECTION 予選の有効/無効にします。 - DSC_ENABLE_SELECTION - 選択を有効/無効にします。 + DSC_ENABLE_PRESELECTION + 予選の有効/無効にします。 MNU_ENABLE_SELECTION 選択を有効/無効にします。 - OCC_IMAGE_FILES - イメージファイル (*.bmp *.png *.jpg *.jpeg *.eps *.ps) + DSC_ENABLE_SELECTION + 選択を有効/無効にします。 - OCC_TEXTURE_FILES - Update to new supported format (see OCCT Image_AlienPixMap documentation) - イメージファイル (*.bmp *.gif *.pix *.xwd *.rgb *.rs) + MNU_MAXIMIZE_VIEW + ビューの最大化 DSC_MAXIMIZE_VIEW ビューの最大化 + + MNU_MINIMIZE_VIEW + ビューの最小化 + DSC_MINIMIZE_VIEW ビューの最小化 + + MNU_RETURN_3D_VIEW + 3D に戻る + DSC_RETURN_3D_VIEW 3D view に戻る - MNU_MAXIMIZE_VIEW - ビューの最大化 + OCC_IMAGE_FILES + イメージファイル (*.bmp *.png *.jpg *.jpeg *.eps *.ps) - MNU_MINIMIZE_VIEW - ビューの最小化 + LBL_XYTOOLBAR_LABEL + XY ビューの操作 - MNU_RETURN_3D_VIEW - 3D に戻る + LBL_XZTOOLBAR_LABEL + XZ ビューの操作 + + + LBL_YZTOOLBAR_LABEL + YZ ビューの操作 + + + LBL_3DTOOLBAR_LABEL + 3D ビューの操作 diff --git a/src/Plot2d/Plot2d_ViewFrame.cxx b/src/Plot2d/Plot2d_ViewFrame.cxx index 9e7f037ab..1fd36d09b 100755 --- a/src/Plot2d/Plot2d_ViewFrame.cxx +++ b/src/Plot2d/Plot2d_ViewFrame.cxx @@ -2419,9 +2419,9 @@ void Plot2d_ViewFrame::setHorScaleMode( const int mode, bool update ) // non-positive X/Y coordinate if ( mode && !isXLogEnabled() ){ #ifndef NO_SUIT - SUIT_MessageBox::warning(this, tr("WARNING"), tr("WRN_XLOG_NOT_ALLOWED")); + SUIT_MessageBox::warning(this, tr("WRN_WARNING"), tr("WRN_XLOG_NOT_ALLOWED")); #else - QMessageBox::warning(this, tr("WARNING"), tr("WRN_XLOG_NOT_ALLOWED")); + QMessageBox::warning(this, tr("WRN_WARNING"), tr("WRN_XLOG_NOT_ALLOWED")); #endif return; } @@ -2462,9 +2462,9 @@ void Plot2d_ViewFrame::setVerScaleMode( const int mode, bool update ) // non-positive X/Y coordinate if ( mode && !isYLogEnabled() ){ #ifndef NO_SUIT - SUIT_MessageBox::warning(this, tr("WARNING"), tr("WRN_YLOG_NOT_ALLOWED")); + SUIT_MessageBox::warning(this, tr("WRN_WARNING"), tr("WRN_YLOG_NOT_ALLOWED")); #else - QMessageBox::warning(this, tr("WARNING"), tr("WRN_YLOG_NOT_ALLOWED")); + QMessageBox::warning(this, tr("WRN_WARNING"), tr("WRN_YLOG_NOT_ALLOWED")); #endif return; } diff --git a/src/Plot2d/Plot2d_ViewWindow.cxx b/src/Plot2d/Plot2d_ViewWindow.cxx index 98ce2d862..9b3629d50 100755 --- a/src/Plot2d/Plot2d_ViewWindow.cxx +++ b/src/Plot2d/Plot2d_ViewWindow.cxx @@ -475,7 +475,9 @@ void Plot2d_ViewWindow::createActions() void Plot2d_ViewWindow::createToolBar() { QtxActionToolMgr* mgr = toolMgr(); - myToolBar = mgr->createToolBar( tr( "LBL_TOOLBAR_LABEL" ), false ); + myToolBar = mgr->createToolBar( tr( "LBL_TOOLBAR_LABEL" ), // title (language-dependant) + QString( "Plot2dViewOperations" ), // name (language-independant) + false ); // disable floatable toolbar mgr->append( DumpId, myToolBar ); mgr->append( ScaleOpId, myToolBar ); mgr->append( MoveOpId, myToolBar ); diff --git a/src/Plot2d/resources/Plot2d_msg_en.ts b/src/Plot2d/resources/Plot2d_msg_en.ts index ff2920585..1edcb27b4 100644 --- a/src/Plot2d/resources/Plot2d_msg_en.ts +++ b/src/Plot2d/resources/Plot2d_msg_en.ts @@ -4,312 +4,352 @@ @default - PLOT2D_CURVE_TYPE_LBL - Curve type: + DASHDOT_LINE_LBL + DashDot - ERROR - Error + DASH_LINE_LBL + Dash - PLOT2D_SET_AS_DEFAULT_CHECK - Save settings as default + SOLID_LINE_LBL + Solid - TLT_SETUP_CURVE - Setup Curve + DOT_LINE_LBL + Dot - MNU_DUMP_VIEW - Dump view... + DAHSDOTDOT_LINE_LBL + DashDotDot - PLOT2D_SCALE_MODE_HOR - Horizontal axis: + NONE_LINE_LBL + None - PLOT2D_NORMALIZE_TLT - Normalization + DTRIANGLE_MARKER_LBL + Downward triangle - PLOT2D_NORMALIZE_MODE_MIN - Normalize to minimum + UTRIANGLE_MARKER_LBL + Upward triangle - PLOT2D_NORMALIZE_MODE_MAX - Normalize to maximum + LTRIANGLE_MARKER_LBL + Leftward triangle - PLOT2D_NORMALIZE_LEFT_AXIS - Left Y Axis: + RTRIANGLE_MARKER_LBL + Rightward triangle - PLOT2D_NORMALIZE_RIGHT_AXIS - Right Y Axis: + RECTANGLE_MARKER_LBL + Rectangle - PLOT2D_SCALE_MODE_VER - Vertical axis: + CROSS_MARKER_LBL + Cross - MNU_PAN_VIEW - Panning + XCROSS_MARKER_LBL + Diagonal cross - MNU_CLONE_VIEW - Clone View + DIAMOND_MARKER_LBL + Diamond - MNU_PRINT_VIEW - Print View + CIRCLE_MARKER_LBL + Circle - POSTSCRIPT_FILES - PostScript files (*.ps) + NONE_MARKER_LBL + None + + + Plot2d_FitDataDlg - ENCAPSULATED_POSTSCRIPT_FILES - Encapsulated PostScript files (*.eps) + FIT_DATA_TLT + Fit Data Range - PDF_FILES - PDF files (*.pdf) + FIT_HORIZONTAL + Fit horizontally - DSC_GLOBALPAN_VIEW - Selection of a new center of the view + MIN_VALUE_LAB + Min: - PRP_PLOT2D_MODE_LINEAR_VER - Switches view to linear scaling mode along vertical axis + VERTICAL_AXIS + Vertical axis - PRP_PLOT2D_MODE_LINEAR_HOR - Switches view to linear scaling mode along horizontal axis + MAX_VALUE_LAB + Max: - CURVE_LINE_WIDTH_LAB - Line width: + HORIZONTAL_AXIS + Horizontal axis - CURVE_TYPE_POPUP - Curve type + VERTICAL_LEFT_AXIS + Vertical left axis - NORMALIZATION_TYPE_POPUP - Normalization + FIT_ALL + Fit both - TOT_PLOT2D_MODE_LINEAR_VER - Vertical axis: linear + VERTICAL_RIGHT_AXIS + Vertical right axis - TOT_PLOT2D_MODE_LINEAR_HOR - Horizontal axis: linear + FIT_VERTICAL + Fit vertically + + + Plot2d_ViewManager - FIT_DATA_TLT - Fit Data Range + PLOT2D_VIEW_TITLE + Plot2d scene:%M - viewer:%V - MNU_ZOOM_VIEW - Zoom + PREF_GROUP_PLOT2DVIEWER + Plot2d Viewer - PLOT2D_GRID_TLT - Grid / Axes marks + PREF_SHOW_LEGEND + Show legend - DSC_PAN_VIEW - Panning the view + PREF_LEGEND_POSITION + Legend position: - DASHDOT_LINE_LBL - DashDot + PREF_LEFT + Left - PRP_PLOT2D_CURVES_SPLINES - Switches view to splines mode + PREF_RIGHT + Right - INF_AXES_X - Axis X + PREF_TOP + Top - PLOT2D_SCALE_TLT - Scale mode + PREF_BOTTOM + Bottom - DSC_FITALL - Fit all objects inside the view frame + PREF_CURVE_TYPE + Curve type: - MNU_FITALL - Fit All + PREF_POINTS + Points - TOT_PLOT2D_MODE_LOGARITHMIC_HOR - Horizontal axis: logarithmic + PREF_LINES + Lines - TOT_PLOT2D_MODE_LOGARITHMIC_VER - Vertical axis: logarithmic + PREF_SPLINE + Spline - MNU_GLOBALPAN_VIEW - Global Panning + PREF_MARKER_SIZE + Marker size: - INF_APP_DUMP_VIEW - Dump view + PREF_LINEAR + Linear - PLOT2D_LEGEND_POSITION_BOTTOM - Bottom + PREF_LOGARITHMIC + Logarithmic - INF_COORDINATES - Coordinates: X : %1, Y : %2 + PREF_HOR_AXIS_SCALE + Horizontal axis scale: - DSC_CLONE_VIEW - Create new OCC viewer for the active scene + PREF_VERT_AXIS_SCALE + Vertical axis scale: - DSC_PRINT_VIEW - Print active view + PREF_VIEWER_BACKGROUND + Background color + + + Plot2d_AnalyticalCurveDlg - DASH_LINE_LBL - Dash + ANALYTICAL_CURVE_TLT + Analytical curves properties - DTRIANGLE_MARKER_LBL - Downward triangle - + AC_CURVE_PARAMS + Curve parameters + - UTRIANGLE_MARKER_LBL - Upward triangle - + AC_CURVE_PROPS + Curve properties + - LTRIANGLE_MARKER_LBL - Leftward triangle - + AC_FORMULA + y(x) = + - RTRIANGLE_MARKER_LBL - Rightward triangle + AC_NB_INTERVALS + Nb. intervals - RECTANGLE_MARKER_LBL - Rectangle + AC_AUTO_ASSIGN + Auto assign - TLT_SETUP_PLOT2D_VIEW - Plot 2d View Settings + AC_MARKER_TYPE + Marker type - CURVE_LINE_TYPE_LAB - Line type: + AC_LINE_TYPE + Line type - CROSS_MARKER_LBL - Cross + AC_LINE_WIDTH + Line Width - XCROSS_MARKER_LBL - Diagonal cross + AC_CURVE_COLOR + Curve color - PLOT2D_ENABLE_VER_TITLE - Vertical axis title - + AC_ADD_BTN + Add curve + - PLOT2D_ENABLE_HOR_TITLE - Horizontal axis title + AC_REM_BTN + Remove curve + + + AC_OK_BTN + Ok + + + AC_APPLY_BTN + Apply + + + AC_CANT_CALCULATE + Can't calculate curve. +Please, check input parameters!!! - TOT_PLOT2D_SETTINGS - Settings + AC_CLOSE_BTN + &Close - TOT_PLOT2D_ANALYTICAL_CURVES - Analytical curves - + AC_HELP_BTN + Help + + + + Plot2d_SetupCurveScaleDlg - TOT_PLOT2D_NORMALIZE_MODE_LMAX - Left Y Axis: Normalize to global maximum - + TLT_SETUP_CURVE_SCALE + Curve(s) scale + - TOT_PLOT2D_NORMALIZE_MODE_LMIN - Left Y Axis: Normalize to global minimum - + CURVE_SCALE_FACTOR + Scale factor + + + + Plot2d_SetupViewDlg - TOT_PLOT2D_NORMALIZE_MODE_RMAX - Right Y Axis: Normalize to global maximum - + PLOT2D_CURVE_TYPE_LBL + Curve type: + - TOT_PLOT2D_NORMALIZE_MODE_RMIN - Right Y Axis: Normalize to global minimum - + PLOT2D_SET_AS_DEFAULT_CHECK + Save settings as default + - PLOT2D_CURVE_TYPE_LINES - Lines + PLOT2D_SCALE_MODE_HOR + Horizontal axis: - MEN_PLOT2D_CURVES_SPLINES - Draw Splines + PLOT2D_NORMALIZE_TLT + Normalization - PRP_PLOT2D_MODE_LOGARITHMIC_HOR - Switches view to logarithmic scaling mode along horizontal axis + PLOT2D_NORMALIZE_MODE_MIN + Normalize to minimum - PRP_PLOT2D_MODE_LOGARITHMIC_VER - Switches view to logarithmic scaling mode along vertical axis + PLOT2D_NORMALIZE_MODE_MAX + Normalize to maximum - PLOT2D_IMAGE_FILES - Images Files (*.bmp *.png *.jpg *.jpeg) + PLOT2D_NORMALIZE_LEFT_AXIS + Left Y Axis: - PLOT2D_MAX_INTERVALS - Max intervals + PLOT2D_NORMALIZE_RIGHT_AXIS + Right Y Axis: - INF_AXES_Y_LEFT - Axis Y Left + PLOT2D_SCALE_MODE_VER + Vertical axis: - CURVE_COLOR_LAB - Color: + PLOT2D_GRID_TLT + Grid / Axes marks - CURVE_PREVIEW_LAB - Preview: + INF_AXES_X + Axis X - DIAMOND_MARKER_LBL - Diamond + PLOT2D_SCALE_TLT + Scale mode - PLOT2D_LEGEND_POSITION_TOP - Top + PLOT2D_LEGEND_POSITION_BOTTOM + Bottom - TOT_PLOT2D_CHANGE_BACKGROUND - Change background + TLT_SETUP_PLOT2D_VIEW + Plot 2d View Settings - MEN_PLOT2D_CHANGE_BACKGROUND - Change Background... + PLOT2D_ENABLE_VER_TITLE + Vertical axis title - PRP_PLOT2D_CHANGE_BACKGROUND - Change background color + PLOT2D_ENABLE_HOR_TITLE + Horizontal axis title - SOLID_LINE_LBL - Solid + PLOT2D_CURVE_TYPE_LINES + Lines + + + PLOT2D_MAX_INTERVALS + Max intervals + + + INF_AXES_Y_LEFT + Axis Y Left + + + PLOT2D_LEGEND_POSITION_TOP + Top PLOT2D_GRID_ENABLE_VER_MAJOR @@ -323,10 +363,6 @@ PLOT2D_GRID_ENABLE_VER_MINOR Vertical minor - - TOT_PLOT2D_CURVES_POINTS - Draw points - PLOT2D_GRID_ENABLE_HOR_MINOR Horizontal minor @@ -355,40 +391,10 @@ PLOT2D_DEVIATION_CL_LBL Color - - WRN_XLOG_NOT_ALLOWED - Some points with non-positive abscissa values have been detected. -Logarithmic scale for abscissa axis is not allowed. - - - WRN_YLOG_NOT_ALLOWED - Some points with non-positive ordinate values have been detected. -Logarithmic scale for ordinate axis is not allowed. - - - DSC_FITRECT - Fit area within the view frame - PLOT2D_LEGEND_POSITION_LEFT Left - - MNU_FITRECT - Fit Area - - - DOT_LINE_LBL - Dot - - - MEN_PLOT2D_CURVES_POINTS - Draw Points - - - PRP_PLOT2D_CURVES_POINTS - Switches view to points mode - PLOT2D_SCALE_MODE_LOGARITHMIC Logarithmic @@ -397,14 +403,6 @@ Logarithmic scale for ordinate axis is not allowed. PLOT2D_LEGEND_POSITION_RIGHT Right - - DSC_DUMP_VIEW - Saves the active view in the image file - - - WARNING - Warning - PLOT2D_ENABLE_LEGEND Show legend @@ -414,397 +412,390 @@ Logarithmic scale for ordinate axis is not allowed. Legend font - DSC_ZOOM_VIEW - Zoom the view + PLOT2D_SCALE_MODE_LINEAR + Linear - PRP_PLOT2D_ANALYTICAL_CURVES - Setups analytical curves properties + PLOT2D_CURVE_TYPE_POINTS + Points - PRP_PLOT2D_NORMALIZE_MODE_LMAX - Switches view to maximum normalization mode by left Y axis + PLOT2D_CURVE_TYPE_SPLINE + Spline - PRP_PLOT2D_NORMALIZE_MODE_LMIN - Switches view to minimum normalization mode by left Y axis + INF_AXES_Y_RIGHT + Axis Y Right - PRP_PLOT2D_NORMALIZE_MODE_RMAX - Switches view to maximum normalization mode by right Y axis + PLOT2D_MARKER_SIZE_LBL + Marker size: - PRP_PLOT2D_NORMALIZE_MODE_RMIN - Switches view to minimum normalization mode by right Y axis + PLOT2D_ENABLE_MAIN_TITLE + Main title - PRP_PLOT2D_SETTINGS - Setups view properties - - - INF_COORDINATES_SOME_Y - Coordinates: X : %1, Y : %2 ( %3 ) + PLOT2D_LEGEND_GROUP + Legend - SCALING_POPUP - Scaling + PLOT2D_LEGEND_POSITION + Legend position: - PLOT2D_SCALE_MODE_LINEAR - Linear + PLOT2D_LEGEND_SYMBOL_TYPE + Symbol type: - TOT_PLOT2D_FITDATA - Fit range + PLOT2D_MARKER_ABOVE_LINE + Marker above line - PLOT2D_CURVE_TYPE_POINTS - Points + PLOT2D_MARKER_ON_LINE + Marker on line - PLOT2D_CURVE_TYPE_SPLINE - Spline + PLOT2D_LEGEND_FONT_COLOR + Legend font color: - MEN_PLOT2D_FITDATA - Fit &Range - + PLOT2D_SELECTED_LEGEND_FONT_COLOR + Highlighted legend font color: + + + + Plot2d_SetupCurveDlg - MEN_PLOT2D_MODE_LOGARITHMIC_HOR - Horizontal Axis: Logarithmic + TLT_SETUP_CURVE + Setup Curve - MEN_PLOT2D_MODE_LOGARITHMIC_VER - Vertical Axis: Logarithmic + CURVE_LINE_WIDTH_LAB + Line width: - MEN_PLOT2D_NORMALIZE_MODE_LMIN - Left Y Axis: Minimum + CURVE_LINE_TYPE_LAB + Line type: - MEN_PLOT2D_NORMALIZE_MODE_LMAX - Left Y Axis: Maximum + CURVE_COLOR_LAB + Color: - MEN_PLOT2D_NORMALIZE_MODE_RMIN - Right Y Axis: Minimum + CURVE_PREVIEW_LAB + Preview: - MEN_PLOT2D_NORMALIZE_MODE_RMAX - Right Y Axis: Maximum + CURVE_MARKER_TYPE_LAB + Marker type: + + + Plot2d_ViewWindow - PRP_PLOT2D_FITDATA - Fits view to the given data range + MNU_DUMP_VIEW + Dump view... - MEN_PLOT2D_MODE_LINEAR_VER - Vertical Axis: Linear + MNU_PAN_VIEW + Panning - MEN_PLOT2D_MODE_LINEAR_HOR - Horizontal Axis: Linear + MNU_CLONE_VIEW + Clone View - NONE_MARKER_LBL - None + MNU_PRINT_VIEW + Print View - ERR_DOC_CANT_SAVE_FILE - Cannot save file + POSTSCRIPT_FILES + PostScript files (*.ps) - MEN_PLOT2D_SHOW_LEGEND - Show &Legend + ENCAPSULATED_POSTSCRIPT_FILES + Encapsulated PostScript files (*.eps) - PRP_PLOT2D_SHOW_LEGEND - Enables/disables legend + PDF_FILES + PDF files (*.pdf) - TOT_PLOT2D_SHOW_LEGEND - Show Legend + DSC_GLOBALPAN_VIEW + Selection of a new center of the view - INF_AXES_Y_RIGHT - Axis Y Right + PRP_PLOT2D_MODE_LINEAR_VER + Switches view to linear scaling mode along vertical axis - DAHSDOTDOT_LINE_LBL - DashDotDot + PRP_PLOT2D_MODE_LINEAR_HOR + Switches view to linear scaling mode along horizontal axis - TOT_PLOT2D_CURVES_SPLINES - Draw splines + CURVE_TYPE_POPUP + Curve type - CURVE_MARKER_TYPE_LAB - Marker type: + NORMALIZATION_TYPE_POPUP + Normalization - MEN_PLOT2D_SETTINGS - &Settings + TOT_PLOT2D_MODE_LINEAR_VER + Vertical axis: linear - MEN_PLOT2D_ANALYTICAL_CURVES - Analytical curves + TOT_PLOT2D_MODE_LINEAR_HOR + Horizontal axis: linear - CIRCLE_MARKER_LBL - Circle + MNU_ZOOM_VIEW + Zoom - LBL_TOOLBAR_LABEL - View Operations + DSC_PAN_VIEW + Panning the view - NONE_LINE_LBL - None + PRP_PLOT2D_CURVES_SPLINES + Switches view to splines mode - PLOT2D_MARKER_SIZE_LBL - Marker size: + DSC_FITALL + Fit all objects inside the view frame - PLOT2D_ENABLE_MAIN_TITLE - Main title + MNU_FITALL + Fit All - PLOT2D_LEGEND_GROUP - Legend + TOT_PLOT2D_MODE_LOGARITHMIC_HOR + Horizontal axis: logarithmic - PLOT2D_LEGEND_POSITION - Legend position: + TOT_PLOT2D_MODE_LOGARITHMIC_VER + Vertical axis: logarithmic - PLOT2D_LEGEND_SYMBOL_TYPE - Symbol type: + MNU_GLOBALPAN_VIEW + Global Panning - PLOT2D_MARKER_ABOVE_LINE - Marker above line + DSC_CLONE_VIEW + Create new OCC viewer for the active scene - PLOT2D_MARKER_ON_LINE - Marker on line + DSC_PRINT_VIEW + Print active view - PLOT2D_LEGEND_FONT_COLOR - Legend font color: + TOT_PLOT2D_SETTINGS + Settings - PLOT2D_SELECTED_LEGEND_FONT_COLOR - Highlighted legend font color: - + TOT_PLOT2D_ANALYTICAL_CURVES + Analytical curves + - TOT_PLOT2D_CURVES_LINES - Draw lines - + TOT_PLOT2D_NORMALIZE_MODE_LMAX + Left Y Axis: Normalize to global maximum + - PRP_PLOT2D_CURVES_LINES - Switches view to lines mode - + TOT_PLOT2D_NORMALIZE_MODE_LMIN + Left Y Axis: Normalize to global minimum + - MEN_PLOT2D_CURVES_LINES - Draw Lines - - - - Plot2d_FitDataDlg + TOT_PLOT2D_NORMALIZE_MODE_RMAX + Right Y Axis: Normalize to global maximum + - FIT_HORIZONTAL - Fit horizontally - + TOT_PLOT2D_NORMALIZE_MODE_RMIN + Right Y Axis: Normalize to global minimum + - MIN_VALUE_LAB - Min: + MEN_PLOT2D_CURVES_SPLINES + Draw Splines - VERTICAL_AXIS - Vertical axis + PRP_PLOT2D_MODE_LOGARITHMIC_HOR + Switches view to logarithmic scaling mode along horizontal axis - MAX_VALUE_LAB - Max: + PRP_PLOT2D_MODE_LOGARITHMIC_VER + Switches view to logarithmic scaling mode along vertical axis - HORIZONTAL_AXIS - Horizontal axis + TOT_PLOT2D_CURVES_POINTS + Draw points - VERTICAL_LEFT_AXIS - Vertical left axis + DSC_FITRECT + Fit area within the view frame - FIT_ALL - Fit both + MNU_FITRECT + Fit Area - VERTICAL_RIGHT_AXIS - Vertical right axis + MEN_PLOT2D_CURVES_POINTS + Draw Points - FIT_VERTICAL - Fit vertically + PRP_PLOT2D_CURVES_POINTS + Switches view to points mode - - - Plot2d_ViewManager - PLOT2D_VIEW_TITLE - Plot2d scene:%M - viewer:%V + DSC_DUMP_VIEW + Saves the active view in the image file - PREF_GROUP_PLOT2DVIEWER - Plot2d Viewer + DSC_ZOOM_VIEW + Zoom the view - PREF_SHOW_LEGEND - Show legend + PRP_PLOT2D_ANALYTICAL_CURVES + Setups analytical curves properties - PREF_LEGEND_POSITION - Legend position: + PRP_PLOT2D_NORMALIZE_MODE_LMAX + Switches view to maximum normalization mode by left Y axis - PREF_LEFT - Left + PRP_PLOT2D_NORMALIZE_MODE_LMIN + Switches view to minimum normalization mode by left Y axis - PREF_RIGHT - Right + PRP_PLOT2D_NORMALIZE_MODE_RMAX + Switches view to maximum normalization mode by right Y axis - PREF_TOP - Top + PRP_PLOT2D_NORMALIZE_MODE_RMIN + Switches view to minimum normalization mode by right Y axis - PREF_BOTTOM - Bottom - + PRP_PLOT2D_SETTINGS + Setups view properties + - PREF_CURVE_TYPE - Curve type: + SCALING_POPUP + Scaling - PREF_POINTS - Points + TOT_PLOT2D_FITDATA + Fit range - PREF_LINES - Lines + MEN_PLOT2D_FITDATA + Fit &Range - PREF_SPLINE - Spline + PRP_PLOT2D_FITDATA + Fits view to the given data range - PREF_MARKER_SIZE - Marker size: + MEN_PLOT2D_MODE_LOGARITHMIC_HOR + Horizontal Axis: Logarithmic - PREF_LINEAR - Linear + MEN_PLOT2D_MODE_LOGARITHMIC_VER + Vertical Axis: Logarithmic - PREF_LOGARITHMIC - Logarithmic + MEN_PLOT2D_NORMALIZE_MODE_LMIN + Left Y Axis: Minimum - PREF_HOR_AXIS_SCALE - Horizontal axis scale: + MEN_PLOT2D_NORMALIZE_MODE_LMAX + Left Y Axis: Maximum - PREF_VERT_AXIS_SCALE - Vertical axis scale: + MEN_PLOT2D_NORMALIZE_MODE_RMIN + Right Y Axis: Minimum - PREF_VIEWER_BACKGROUND - Background color + MEN_PLOT2D_NORMALIZE_MODE_RMAX + Right Y Axis: Maximum - - - Plot2d_AnalyticalCurveDlg - ANALYTICAL_CURVE_TLT - Analytical curves properties + MEN_PLOT2D_MODE_LINEAR_VER + Vertical Axis: Linear - AC_CURVE_PARAMS - Curve parameters - - - AC_CURVE_PROPS - Curve properties - - - AC_FORMULA - y(x) = - - - AC_NB_INTERVALS - Nb. intervals + MEN_PLOT2D_MODE_LINEAR_HOR + Horizontal Axis: Linear - AC_AUTO_ASSIGN - Auto assign + MEN_PLOT2D_SHOW_LEGEND + Show &Legend - AC_MARKER_TYPE - Marker type + PRP_PLOT2D_SHOW_LEGEND + Enables/disables legend - AC_LINE_TYPE - Line type + TOT_PLOT2D_SHOW_LEGEND + Show Legend - AC_LINE_WIDTH - Line Width + TOT_PLOT2D_CURVES_SPLINES + Draw splines - AC_CURVE_COLOR - Curve color + MEN_PLOT2D_SETTINGS + &Settings - AC_ADD_BTN - Add curve - + MEN_PLOT2D_ANALYTICAL_CURVES + Analytical curves + - AC_REM_BTN - Remove curve - + LBL_TOOLBAR_LABEL + View Operations + - AC_OK_BTN - Ok - + TOT_PLOT2D_CURVES_LINES + Draw lines + - AC_APPLY_BTN - Apply - + PRP_PLOT2D_CURVES_LINES + Switches view to lines mode + - AC_CANT_CALCULATE - Can't calculate curve. -Please, check input parameters!!! + MEN_PLOT2D_CURVES_LINES + Draw Lines + + + Plot2d_Viewer - AC_CLOSE_BTN - &Close + MNU_DUMP_VIEW + Dump view... - AC_HELP_BTN - Help + MEN_PLOT2D_CHANGE_BACKGROUND + Change Background... - Plot2d_SetupCurveScaleDlg + Plot2d_ViewFrame - TLT_SETUP_CURVE_SCALE - Curve(s) scale + INF_COORDINATES + Coordinates: X : %1, Y : %2 - CURVE_SCALE_FACTOR - Scale factor + WRN_XLOG_NOT_ALLOWED + Some points with non-positive abscissa values have been detected. +Logarithmic scale for abscissa axis is not allowed. + + + WRN_YLOG_NOT_ALLOWED + Some points with non-positive ordinate values have been detected. +Logarithmic scale for ordinate axis is not allowed. + + + INF_COORDINATES_SOME_Y + Coordinates: X : %1, Y : %2 ( %3 ) diff --git a/src/Plot2d/resources/Plot2d_msg_fr.ts b/src/Plot2d/resources/Plot2d_msg_fr.ts index adf71c272..0a11be761 100755 --- a/src/Plot2d/resources/Plot2d_msg_fr.ts +++ b/src/Plot2d/resources/Plot2d_msg_fr.ts @@ -4,312 +4,352 @@ @default - PLOT2D_CURVE_TYPE_LBL - Type de courbe: + DASHDOT_LINE_LBL + TiretPoint - ERROR - Erreur + DASH_LINE_LBL + Tiret - PLOT2D_SET_AS_DEFAULT_CHECK - Enregistrer comme paramètres par défaut + SOLID_LINE_LBL + Solide - TLT_SETUP_CURVE - Initialiser une courbe + DOT_LINE_LBL + Point - MNU_DUMP_VIEW - Enregistrer la vue... + DAHSDOTDOT_LINE_LBL + TiretPointPoint - PLOT2D_SCALE_MODE_HOR - Axe horizontal: + NONE_LINE_LBL + Aucun - PLOT2D_NORMALIZE_TLT - Normalisation + DTRIANGLE_MARKER_LBL + Triangle orienté vers le bas - PLOT2D_NORMALIZE_MODE_MIN - Normaliser sur le minimum + UTRIANGLE_MARKER_LBL + Triangle orienté en haut - PLOT2D_NORMALIZE_MODE_MAX - Normaliser sur le maximum + LTRIANGLE_MARKER_LBL + Triangle orienté à gauche - PLOT2D_NORMALIZE_LEFT_AXIS - Axe Y gauche: + RTRIANGLE_MARKER_LBL + Triangle orienté à droite - PLOT2D_NORMALIZE_RIGHT_AXIS - Axe Y droite: + RECTANGLE_MARKER_LBL + Rectangle - PLOT2D_SCALE_MODE_VER - Axe vertical: + CROSS_MARKER_LBL + Croix - MNU_PAN_VIEW - Déplacement + XCROSS_MARKER_LBL + Croix diagonale - MNU_CLONE_VIEW - Dupliquer la vue + DIAMOND_MARKER_LBL + Diamant - MNU_PRINT_VIEW - Imprimer la vue + CIRCLE_MARKER_LBL + Cercle - POSTSCRIPT_FILES - Fichiers PostScript (*.ps) + NONE_MARKER_LBL + Aucun + + + Plot2d_FitDataDlg - ENCAPSULATED_POSTSCRIPT_FILES - Fichiers PostScript encapsulés (*.eps) + FIT_DATA_TLT + Ajuster à la plage de données - PDF_FILES - Fichiers PDF (*.pdf) + FIT_HORIZONTAL + Ajuster horizontalement - DSC_GLOBALPAN_VIEW - Sélection d'un nouveau centre de vue + MIN_VALUE_LAB + Min: - PRP_PLOT2D_MODE_LINEAR_VER - Changer la vue de l'axe vertical au mode d'échelle linéaire + VERTICAL_AXIS + Axe vertical - PRP_PLOT2D_MODE_LINEAR_HOR - Changer la vue de l'axe horizontal au mode d'échelle linéaire + MAX_VALUE_LAB + Max: - CURVE_LINE_WIDTH_LAB - Epaisseur du trait: + HORIZONTAL_AXIS + Axe horizontal - CURVE_TYPE_POPUP - Type de courbe + VERTICAL_LEFT_AXIS + Axe vertical gauche - NORMALIZATION_TYPE_POPUP - Normalisation + FIT_ALL + Tout ajuster - TOT_PLOT2D_MODE_LINEAR_VER - Axe vertical: linéaire + VERTICAL_RIGHT_AXIS + Axe vertical droite - TOT_PLOT2D_MODE_LINEAR_HOR - Axe horizontal: linéaire + FIT_VERTICAL + Ajuster verticalement + + + Plot2d_ViewManager - FIT_DATA_TLT - Ajuster à la plage de données + PLOT2D_VIEW_TITLE + Scène Plot2d:%M - visualiseur:%V - MNU_ZOOM_VIEW - Zoom + PREF_GROUP_PLOT2DVIEWER + Visualiseur Plot2d - PLOT2D_GRID_TLT - Marques de la grille et des axes + PREF_SHOW_LEGEND + Afficher la légende - DSC_PAN_VIEW - Déplacer la vue + PREF_LEGEND_POSITION + Position de la légende: - DASHDOT_LINE_LBL - TiretPoint + PREF_LEFT + Gauche - PRP_PLOT2D_CURVES_SPLINES - Changer la vue en mode splines + PREF_RIGHT + Droite - INF_AXES_X - Axe X + PREF_TOP + Haut - PLOT2D_SCALE_TLT - Mode d'échelle + PREF_BOTTOM + Bas - DSC_FITALL - Ajuster la scène pour afficher tous les objets + PREF_CURVE_TYPE + Type de courbe: - MNU_FITALL - Tout afficher + PREF_POINTS + Points - TOT_PLOT2D_MODE_LOGARITHMIC_HOR - Axe horizontal: logarithmique + PREF_LINES + Lignes - TOT_PLOT2D_MODE_LOGARITHMIC_VER - Axe vertical: logarithmique + PREF_SPLINE + Spline - MNU_GLOBALPAN_VIEW - Déplacement global + PREF_MARKER_SIZE + Taille du repère: - INF_APP_DUMP_VIEW - Enregistrer la vue + PREF_LINEAR + Linéaire - PLOT2D_LEGEND_POSITION_BOTTOM - Dessous + PREF_LOGARITHMIC + Logarithmique - INF_COORDINATES - Coordonnées: X : %1, Y : %2 + PREF_HOR_AXIS_SCALE + Echelle de l'axe horizontal: - DSC_CLONE_VIEW - Ouvrir un nouveau visualiseur OCC pour la scène actuelle + PREF_VERT_AXIS_SCALE + Echelle de l'axe vertical: - DSC_PRINT_VIEW - Imprimer la vue actuelle + PREF_VIEWER_BACKGROUND + Couleur du fond + + + Plot2d_AnalyticalCurveDlg - DASH_LINE_LBL - Tiret + ANALYTICAL_CURVE_TLT + Propriétés des courbes analytiques - DTRIANGLE_MARKER_LBL - Triangle orienté vers le bas + AC_CURVE_PARAMS + Paramètres de la courbe - UTRIANGLE_MARKER_LBL - Triangle orienté en haut + AC_CURVE_PROPS + Propriétés de la courbe - LTRIANGLE_MARKER_LBL - Triangle orienté à gauche + AC_FORMULA + y(x) = - RTRIANGLE_MARKER_LBL - Triangle orienté à droite + AC_NB_INTERVALS + Nb. intervalles - RECTANGLE_MARKER_LBL - Rectangle + AC_AUTO_ASSIGN + Affectation auto. - TLT_SETUP_PLOT2D_VIEW - Paramètres de visualisation Plot 2d + AC_MARKER_TYPE + Type de marqueur - CURVE_LINE_TYPE_LAB - Type de trait: + AC_LINE_TYPE + Type de ligne - CROSS_MARKER_LBL - Croix + AC_LINE_WIDTH + Epaisseur de ligne - XCROSS_MARKER_LBL - Croix diagonale + AC_CURVE_COLOR + Couleur de la courbe - PLOT2D_ENABLE_VER_TITLE - Titre de l'axe vertical + AC_ADD_BTN + Ajouter une courbe - PLOT2D_ENABLE_HOR_TITLE - Titre de l'axe horizontal + AC_REM_BTN + Supprimer une courbe - TOT_PLOT2D_SETTINGS - Paramètres + AC_OK_BTN + Ok - TOT_PLOT2D_ANALYTICAL_CURVES - Courbes analytiques + AC_APPLY_BTN + Appliquer - TOT_PLOT2D_NORMALIZE_MODE_LMAX - Axe Y gauche: Normaliser sur le maximum global + AC_CANT_CALCULATE + La courbe ne peut pas être calculée. +Merci de vérifier les paramètres d'entrée - TOT_PLOT2D_NORMALIZE_MODE_LMIN - Axe Y gauche: Normaliser sur le minimum global + AC_CLOSE_BTN + &Fermer - TOT_PLOT2D_NORMALIZE_MODE_RMAX - Axe Y droite: Normaliser sur le maximum global + AC_HELP_BTN + Aide + + + Plot2d_SetupCurveScaleDlg - TOT_PLOT2D_NORMALIZE_MODE_RMIN - Axe Y droite: Normaliser sur le minimum global - + TLT_SETUP_CURVE_SCALE + Mise à l'échelle de courbe(s) + - PLOT2D_CURVE_TYPE_LINES - Lignes + CURVE_SCALE_FACTOR + Facteur d'échelle + + + Plot2d_SetupViewDlg - MEN_PLOT2D_CURVES_SPLINES - Dessiner les splines + PLOT2D_CURVE_TYPE_LBL + Type de courbe: - PRP_PLOT2D_MODE_LOGARITHMIC_HOR - Changer la vue de l'axe horizontal au mode d'échelle logarithmique + PLOT2D_SET_AS_DEFAULT_CHECK + Enregistrer comme paramètres par défaut - PRP_PLOT2D_MODE_LOGARITHMIC_VER - Changer la vue de l'axe vertical au mode d'échelle logarithmique + PLOT2D_SCALE_MODE_HOR + Axe horizontal: - PLOT2D_IMAGE_FILES - Fichiers images (*.bmp *.png *.jpg *.jpeg) + PLOT2D_NORMALIZE_TLT + Normalisation - PLOT2D_MAX_INTERVALS - Intervalles max + PLOT2D_NORMALIZE_MODE_MIN + Normaliser sur le minimum - INF_AXES_Y_LEFT - Axe Y gauche + PLOT2D_NORMALIZE_MODE_MAX + Normaliser sur le maximum - CURVE_COLOR_LAB - Couleur: + PLOT2D_NORMALIZE_LEFT_AXIS + Axe Y gauche: - CURVE_PREVIEW_LAB - Prévisualiser + PLOT2D_NORMALIZE_RIGHT_AXIS + Axe Y droite: - DIAMOND_MARKER_LBL - Diamant + PLOT2D_SCALE_MODE_VER + Axe vertical: - PLOT2D_LEGEND_POSITION_TOP - Dessus + PLOT2D_GRID_TLT + Marques de la grille et des axes + + + INF_AXES_X + Axe X - TOT_PLOT2D_CHANGE_BACKGROUND - Changer l'arrière-plan + PLOT2D_SCALE_TLT + Mode d'échelle - MEN_PLOT2D_CHANGE_BACKGROUND - Changer l'arrière-plan... + PLOT2D_LEGEND_POSITION_BOTTOM + Dessous - PRP_PLOT2D_CHANGE_BACKGROUND - Changer la couleur d'arrière plan + TLT_SETUP_PLOT2D_VIEW + Paramètres de visualisation Plot 2d - SOLID_LINE_LBL - Solide + PLOT2D_ENABLE_VER_TITLE + Titre de l'axe vertical + + + PLOT2D_ENABLE_HOR_TITLE + Titre de l'axe horizontal + + + PLOT2D_CURVE_TYPE_LINES + Lignes + + + PLOT2D_MAX_INTERVALS + Intervalles max + + + INF_AXES_Y_LEFT + Axe Y gauche + + + PLOT2D_LEGEND_POSITION_TOP + Dessus PLOT2D_GRID_ENABLE_VER_MAJOR @@ -323,10 +363,6 @@ PLOT2D_GRID_ENABLE_VER_MINOR Verticale secondaire - - TOT_PLOT2D_CURVES_POINTS - Dessiner des points - PLOT2D_GRID_ENABLE_HOR_MINOR Horizontale secondaire @@ -355,40 +391,10 @@ PLOT2D_DEVIATION_CL_LBL Couleur - - WRN_XLOG_NOT_ALLOWED - On a détecté des points avec les valeurs non-positives sur l'abscisse. -L'échelle logarithmique de l'abscisse n'est pas permise. - - - WRN_YLOG_NOT_ALLOWED - On a détecté des points avec les valeurs non-positives sur l'ordonnée. -L'échelle logarithmique de l'ordonnée n'est pas permise. - - - DSC_FITRECT - Ajuster la scène à la zone choisie par l'encadré - PLOT2D_LEGEND_POSITION_LEFT Gauche - - MNU_FITRECT - Afficher la zone - - - DOT_LINE_LBL - Point - - - MEN_PLOT2D_CURVES_POINTS - Dessiner les points - - - PRP_PLOT2D_CURVES_POINTS - Changer la vue en mode points - PLOT2D_SCALE_MODE_LOGARITHMIC Logarithmique @@ -397,14 +403,6 @@ L'échelle logarithmique de l'ordonnée n'est pas permise.PLOT2D_LEGEND_POSITION_RIGHT Droite - - DSC_DUMP_VIEW - Sauvegarder la vue actuelle dans un fichier image - - - WARNING - Avertissement - PLOT2D_ENABLE_LEGEND Afficher la légende @@ -414,401 +412,390 @@ L'échelle logarithmique de l'ordonnée n'est pas permise.Police de la légende - DSC_ZOOM_VIEW - Zoomer la vue + PLOT2D_SCALE_MODE_LINEAR + Linéaire - PRP_PLOT2D_ANALYTICAL_CURVES - Réglage des propriétés des courbes analytiques + PLOT2D_CURVE_TYPE_POINTS + Points - PRP_PLOT2D_NORMALIZE_MODE_LMAX - Bascule la vue vers le mode de normalisation sur le maximum pour l'axe Y gauche + PLOT2D_CURVE_TYPE_SPLINE + Spline - PRP_PLOT2D_NORMALIZE_MODE_LMIN - Bascule la vue vers le mode de normalisation sur le minimum pour l'axe Y gauche + INF_AXES_Y_RIGHT + Axe Y droite - PRP_PLOT2D_NORMALIZE_MODE_RMAX - Bascule la vue vers le mode de normalisation sur le maximum pour l'axe Y droite + PLOT2D_MARKER_SIZE_LBL + Taille du marqueur: - PRP_PLOT2D_NORMALIZE_MODE_RMIN - Bascule la vue vers le mode de normalisation sur le minimum pour l'axe Y droite + PLOT2D_ENABLE_MAIN_TITLE + Titre principal - PRP_PLOT2D_SETTINGS - Définit les paramètres de visualisation + PLOT2D_LEGEND_GROUP + Légende - INF_COORDINATES_SOME_Y - Coordonnées: X : %1, Y : %2 ( %3 ) + PLOT2D_LEGEND_POSITION + Position de la Légende: - SCALING_POPUP - Echelle + PLOT2D_LEGEND_SYMBOL_TYPE + Type de symbole: - PLOT2D_SCALE_MODE_LINEAR - Linéaire + PLOT2D_MARKER_ABOVE_LINE + Marqueur dessus de la ligne - TOT_PLOT2D_FITDATA - Ajuster à l'intervalle + PLOT2D_MARKER_ON_LINE + Marqueur sur la ligne - PLOT2D_CURVE_TYPE_POINTS - Points + PLOT2D_LEGEND_FONT_COLOR + Couleur de police de la légende: - PLOT2D_CURVE_TYPE_SPLINE - Spline + PLOT2D_SELECTED_LEGEND_FONT_COLOR + Couleur de surlignement de la légende: + + + Plot2d_SetupCurveDlg - MEN_PLOT2D_FITDATA - &Ajuster à l'intervalle + TLT_SETUP_CURVE + Initialiser une courbe - MEN_PLOT2D_MODE_LOGARITHMIC_HOR - Axe horizontal: logarithmique + CURVE_LINE_WIDTH_LAB + Epaisseur du trait: - MEN_PLOT2D_MODE_LOGARITHMIC_VER - Axe vertical: logarithmique + CURVE_LINE_TYPE_LAB + Type de trait: - MEN_PLOT2D_NORMALIZE_MODE_LMIN - Axe Y gauche: Minimum + CURVE_COLOR_LAB + Couleur: - MEN_PLOT2D_NORMALIZE_MODE_LMAX - Axe Y gauche: Maximum + CURVE_PREVIEW_LAB + Prévisualiser - MEN_PLOT2D_NORMALIZE_MODE_RMIN - Axe Y droite: Minimum + CURVE_MARKER_TYPE_LAB + Type de marqueur: + + + Plot2d_ViewWindow - MEN_PLOT2D_NORMALIZE_MODE_RMAX - Axe Y droite: Maximum + MNU_DUMP_VIEW + Enregistrer la vue... - PRP_PLOT2D_FITDATA - Ajuster la vue à la plage de données indiquée + MNU_PAN_VIEW + Déplacement - MEN_PLOT2D_MODE_LINEAR_VER - Axe vertical: linéaire + MNU_CLONE_VIEW + Dupliquer la vue - MEN_PLOT2D_MODE_LINEAR_HOR - Axe horizontal: linéaire + MNU_PRINT_VIEW + Imprimer la vue - NONE_MARKER_LBL - Aucun + POSTSCRIPT_FILES + Fichiers PostScript (*.ps) - ERR_DOC_CANT_SAVE_FILE - Impossible de sauvegarder le fichier + ENCAPSULATED_POSTSCRIPT_FILES + Fichiers PostScript encapsulés (*.eps) - MEN_PLOT2D_SHOW_LEGEND - Afficher la &légende + PDF_FILES + Fichiers PDF (*.pdf) - PRP_PLOT2D_SHOW_LEGEND - Activer/désactiver la légende + DSC_GLOBALPAN_VIEW + Sélection d'un nouveau centre de vue - TOT_PLOT2D_SHOW_LEGEND - Afficher la légende + PRP_PLOT2D_MODE_LINEAR_VER + Changer la vue de l'axe vertical au mode d'échelle linéaire - INF_AXES_Y_RIGHT - Axe Y droite + PRP_PLOT2D_MODE_LINEAR_HOR + Changer la vue de l'axe horizontal au mode d'échelle linéaire - DAHSDOTDOT_LINE_LBL - TiretPointPoint + CURVE_TYPE_POPUP + Type de courbe - TOT_PLOT2D_CURVES_SPLINES - Dessiner des splines + NORMALIZATION_TYPE_POPUP + Normalisation - CURVE_MARKER_TYPE_LAB - Type de marqueur: + TOT_PLOT2D_MODE_LINEAR_VER + Axe vertical: linéaire - MEN_PLOT2D_SETTINGS - &Paramètres - - - MEN_PLOT2D_ANALYTICAL_CURVES - Courbes analytiques - - - CIRCLE_MARKER_LBL - Cercle - - - LBL_TOOLBAR_LABEL - Opérations de visualisation + TOT_PLOT2D_MODE_LINEAR_HOR + Axe horizontal: linéaire - NONE_LINE_LBL - Aucun + MNU_ZOOM_VIEW + Zoom - PLOT2D_MARKER_SIZE_LBL - Taille du marqueur: + DSC_PAN_VIEW + Déplacer la vue - PLOT2D_ENABLE_MAIN_TITLE - Titre principal + PRP_PLOT2D_CURVES_SPLINES + Changer la vue en mode splines - PLOT2D_LEGEND_GROUP - Légende + DSC_FITALL + Ajuster la scène pour afficher tous les objets - PLOT2D_LEGEND_POSITION - Position de la Légende: + MNU_FITALL + Tout afficher - PLOT2D_LEGEND_SYMBOL_TYPE - Type de symbole: + TOT_PLOT2D_MODE_LOGARITHMIC_HOR + Axe horizontal: logarithmique - PLOT2D_MARKER_ABOVE_LINE - Marqueur dessus de la ligne + TOT_PLOT2D_MODE_LOGARITHMIC_VER + Axe vertical: logarithmique - PLOT2D_MARKER_ON_LINE - Marqueur sur la ligne + MNU_GLOBALPAN_VIEW + Déplacement global - PLOT2D_LEGEND_FONT_COLOR - Couleur de police de la légende: + DSC_CLONE_VIEW + Ouvrir un nouveau visualiseur OCC pour la scène actuelle - PLOT2D_SELECTED_LEGEND_FONT_COLOR - Couleur de surlignement de la légende: + DSC_PRINT_VIEW + Imprimer la vue actuelle - TOT_PLOT2D_CURVES_LINES - Dessiner des lignes + TOT_PLOT2D_SETTINGS + Paramètres - PRP_PLOT2D_CURVES_LINES - Changer la vue en mode lignes + TOT_PLOT2D_ANALYTICAL_CURVES + Courbes analytiques - MEN_PLOT2D_CURVES_LINES - Dessiner les lignes + TOT_PLOT2D_NORMALIZE_MODE_LMAX + Axe Y gauche: Normaliser sur le maximum global - - - Plot2d_FitDataDlg - FIT_HORIZONTAL - Ajuster horizontalement + TOT_PLOT2D_NORMALIZE_MODE_LMIN + Axe Y gauche: Normaliser sur le minimum global - MIN_VALUE_LAB - Min: + TOT_PLOT2D_NORMALIZE_MODE_RMAX + Axe Y droite: Normaliser sur le maximum global - VERTICAL_AXIS - Axe vertical + TOT_PLOT2D_NORMALIZE_MODE_RMIN + Axe Y droite: Normaliser sur le minimum global - MAX_VALUE_LAB - Max: + MEN_PLOT2D_CURVES_SPLINES + Dessiner les splines - HORIZONTAL_AXIS - Axe horizontal + PRP_PLOT2D_MODE_LOGARITHMIC_HOR + Changer la vue de l'axe horizontal au mode d'échelle logarithmique - VERTICAL_LEFT_AXIS - Axe vertical gauche + PRP_PLOT2D_MODE_LOGARITHMIC_VER + Changer la vue de l'axe vertical au mode d'échelle logarithmique - FIT_ALL - Tout ajuster + TOT_PLOT2D_CURVES_POINTS + Dessiner des points - VERTICAL_RIGHT_AXIS - Axe vertical droite + DSC_FITRECT + Ajuster la scène à la zone choisie par l'encadré - FIT_VERTICAL - Ajuster verticalement + MNU_FITRECT + Afficher la zone - - - Plot2d_ViewManager - PLOT2D_VIEW_TITLE - Scène Plot2d:%M - visualiseur:%V + MEN_PLOT2D_CURVES_POINTS + Dessiner les points - PREF_GROUP_PLOT2DVIEWER - Visualiseur Plot2d + PRP_PLOT2D_CURVES_POINTS + Changer la vue en mode points - PREF_SHOW_LEGEND - Afficher la légende + DSC_DUMP_VIEW + Sauvegarder la vue actuelle dans un fichier image - PREF_LEGEND_POSITION - Position de la légende: + DSC_ZOOM_VIEW + Zoomer la vue - PREF_LEFT - Gauche + PRP_PLOT2D_ANALYTICAL_CURVES + Réglage des propriétés des courbes analytiques - PREF_RIGHT - Droite + PRP_PLOT2D_NORMALIZE_MODE_LMAX + Bascule la vue vers le mode de normalisation sur le maximum pour l'axe Y gauche - PREF_TOP - Haut + PRP_PLOT2D_NORMALIZE_MODE_LMIN + Bascule la vue vers le mode de normalisation sur le minimum pour l'axe Y gauche - PREF_BOTTOM - Bas + PRP_PLOT2D_NORMALIZE_MODE_RMAX + Bascule la vue vers le mode de normalisation sur le maximum pour l'axe Y droite - PREF_CURVE_TYPE - Type de courbe: + PRP_PLOT2D_NORMALIZE_MODE_RMIN + Bascule la vue vers le mode de normalisation sur le minimum pour l'axe Y droite - PREF_POINTS - Points + PRP_PLOT2D_SETTINGS + Définit les paramètres de visualisation - PREF_LINES - Lignes + SCALING_POPUP + Echelle - PREF_SPLINE - Spline + TOT_PLOT2D_FITDATA + Ajuster à l'intervalle - PREF_MARKER_SIZE - Taille du repère: + MEN_PLOT2D_FITDATA + &Ajuster à l'intervalle - PREF_LINEAR - Linéaire + PRP_PLOT2D_FITDATA + Ajuster la vue à la plage de données indiquée - PREF_LOGARITHMIC - Logarithmique + MEN_PLOT2D_MODE_LOGARITHMIC_HOR + Axe horizontal: logarithmique - PREF_HOR_AXIS_SCALE - Echelle de l'axe horizontal: + MEN_PLOT2D_MODE_LOGARITHMIC_VER + Axe vertical: logarithmique - PREF_VERT_AXIS_SCALE - Echelle de l'axe vertical: + MEN_PLOT2D_NORMALIZE_MODE_LMIN + Axe Y gauche: Minimum - PREF_VIEWER_BACKGROUND - Couleur du fond + MEN_PLOT2D_NORMALIZE_MODE_LMAX + Axe Y gauche: Maximum - - - Plot2d_AnalyticalCurveDlg - AC_OK_BTN - Ok + MEN_PLOT2D_NORMALIZE_MODE_RMIN + Axe Y droite: Minimum - ANALYTICAL_CURVE_TLT - Propriétés des courbes analytiques + MEN_PLOT2D_NORMALIZE_MODE_RMAX + Axe Y droite: Maximum - AC_CURVE_PARAMS - Paramètres de la courbe + MEN_PLOT2D_MODE_LINEAR_VER + Axe vertical: linéaire - AC_CURVE_PROPS - Propriétés de la courbe + MEN_PLOT2D_MODE_LINEAR_HOR + Axe horizontal: linéaire - AC_FORMULA - y(x) = + MEN_PLOT2D_SHOW_LEGEND + Afficher la &légende - AC_NB_INTERVALS - Nb. intervalles + PRP_PLOT2D_SHOW_LEGEND + Activer/désactiver la légende - AC_AUTO_ASSIGN - Affectation auto. + TOT_PLOT2D_SHOW_LEGEND + Afficher la légende - AC_MARKER_TYPE - Type de marqueur + TOT_PLOT2D_CURVES_SPLINES + Dessiner des splines - AC_LINE_TYPE - Type de ligne + MEN_PLOT2D_SETTINGS + &Paramètres - AC_LINE_WIDTH - Epaisseur de ligne + MEN_PLOT2D_ANALYTICAL_CURVES + Courbes analytiques - AC_CURVE_COLOR - Couleur de la courbe + LBL_TOOLBAR_LABEL + Opérations de visualisation - AC_ADD_BTN - Ajouter une courbe + TOT_PLOT2D_CURVES_LINES + Dessiner des lignes - AC_REM_BTN - Supprimer une courbe + PRP_PLOT2D_CURVES_LINES + Changer la vue en mode lignes - AC_UPD_BTN - Mettre à jour la courbe + MEN_PLOT2D_CURVES_LINES + Dessiner les lignes + + + Plot2d_Viewer - AC_APPLY_BTN - Appliquer + MNU_DUMP_VIEW + Enregistrer la vue... - AC_CANT_CALCULATE - La courbe ne peut pas être calculée. -Merci de vérifier les paramètres d'entrée + MEN_PLOT2D_CHANGE_BACKGROUND + Changer l'arrière-plan... + + + Plot2d_ViewFrame - AC_CLOSE_BTN - &Fermer + INF_COORDINATES + Coordonnées: X : %1, Y : %2 - AC_HELP_BTN - Aide + WRN_XLOG_NOT_ALLOWED + On a détecté des points avec les valeurs non-positives sur l'abscisse. +L'échelle logarithmique de l'abscisse n'est pas permise. - - - Plot2d_SetupCurveScaleDlg - TLT_SETUP_CURVE_SCALE - Mise à l'échelle de courbe(s) + WRN_YLOG_NOT_ALLOWED + On a détecté des points avec les valeurs non-positives sur l'ordonnée. +L'échelle logarithmique de l'ordonnée n'est pas permise. - CURVE_SCALE_FACTOR - Facteur d'échelle + INF_COORDINATES_SOME_Y + Coordonnées: X : %1, Y : %2 ( %3 ) diff --git a/src/Plot2d/resources/Plot2d_msg_ja.ts b/src/Plot2d/resources/Plot2d_msg_ja.ts index c9f34f528..859079985 100644 --- a/src/Plot2d/resources/Plot2d_msg_ja.ts +++ b/src/Plot2d/resources/Plot2d_msg_ja.ts @@ -4,312 +4,351 @@ @default - PLOT2D_CURVE_TYPE_LBL - 曲線の種類: + DASHDOT_LINE_LBL + TiretPoint - ERROR - エラー + DASH_LINE_LBL + インデントを設定します。 - PLOT2D_SET_AS_DEFAULT_CHECK - 既定の設定として保存します。 + SOLID_LINE_LBL + ソリッド - TLT_SETUP_CURVE - 曲線を初期化します。 + DOT_LINE_LBL + 基準点 - MNU_DUMP_VIEW - ビューを保存. + DAHSDOTDOT_LINE_LBL + TiretPointPoint - PLOT2D_SCALE_MODE_HOR - 水平軸: + NONE_LINE_LBL + [なし] - PLOT2D_NORMALIZE_TLT - 標準化 + DTRIANGLE_MARKER_LBL + 下向きの三角形 - PLOT2D_NORMALIZE_MODE_MIN - 最小を標準化します。 + UTRIANGLE_MARKER_LBL + 三角形のトップ指向 - PLOT2D_NORMALIZE_MODE_MAX - 最大値を標準化します。 + LTRIANGLE_MARKER_LBL + 左の三角形を指向 - PLOT2D_NORMALIZE_LEFT_AXIS - 左の Y 軸: + RTRIANGLE_MARKER_LBL + 右向き三角形を指向 - PLOT2D_NORMALIZE_RIGHT_AXIS - 右の Y 軸: + RECTANGLE_MARKER_LBL + 四角形の作成 - PLOT2D_SCALE_MODE_VER - 垂直軸: + CROSS_MARKER_LBL + クロス - MNU_PAN_VIEW - パンニング + XCROSS_MARKER_LBL + 斜め十字 - MNU_CLONE_VIEW - ビューの複製 + DIAMOND_MARKER_LBL + ダイヤモンド - MNU_PRINT_VIEW - 印刷ビュー + NONE_MARKER_LBL + [なし] - POSTSCRIPT_FILES - PostScript ファイル (* .ps) + CIRCLE_MARKER_LBL + 円 + + + Plot2d_FitDataDlg - ENCAPSULATED_POSTSCRIPT_FILES - カプセル化された PostScript (*.eps) ファイル + FIT_DATA_TLT + データの範囲を調整します。 - PDF_FILES - PDF files (*.pdf) + FIT_HORIZONTAL + 水平調整します。 - DSC_GLOBALPAN_VIEW - ビューの新しい中心地の選択 + MIN_VALUE_LAB + 最小: - PRP_PLOT2D_MODE_LINEAR_VER - 線形スケールのモードには、垂直軸の表示を変更します。 + VERTICAL_AXIS + 垂直軸 - PRP_PLOT2D_MODE_LINEAR_HOR - 線形スケールのモードに、ビューの水平方向の軸を変更します。 + MAX_VALUE_LAB + 最大: - CURVE_LINE_WIDTH_LAB - 線の太さ: + HORIZONTAL_AXIS + 水平軸 - CURVE_TYPE_POPUP - 曲線の種類 + VERTICAL_LEFT_AXIS + 左側の垂直軸 - NORMALIZATION_TYPE_POPUP - 標準化 + FIT_ALL + すべてを調整します。 - TOT_PLOT2D_MODE_LINEAR_VER - 垂直軸: 線形 + VERTICAL_RIGHT_AXIS + 右数値軸 - TOT_PLOT2D_MODE_LINEAR_HOR - 水平軸: 線形 + FIT_VERTICAL + 垂直方向に調整します。 + + + Plot2d_ViewManager - FIT_DATA_TLT - データの範囲を調整します。 + PLOT2D_VIEW_TITLE + シーン Plot2d: %M - ビューアー: %V - MNU_ZOOM_VIEW - ズーム + PREF_GROUP_PLOT2DVIEWER + Plot 2D Viewer - PLOT2D_GRID_TLT - グリッド、軸のマーク + PREF_SHOW_LEGEND + キャプションを表示します。 - DSC_PAN_VIEW - ビューを移動します。 + PREF_LEGEND_POSITION + 凡例の位置: - DASHDOT_LINE_LBL - TiretPoint + PREF_LEFT + 左 - PRP_PLOT2D_CURVES_SPLINES - 表示モードのスプラインを変更します。 + PREF_RIGHT + 右 - INF_AXES_X - X 軸 + PREF_TOP + ページのトップへ - PLOT2D_SCALE_TLT - スケール モード + PREF_BOTTOM + Bottom - DSC_FITALL - すべてのオブジェクトを表示するには、シーンを調整します。 + PREF_CURVE_TYPE + 曲線の種類: - MNU_FITALL - すべて表示 + PREF_POINTS + ポイント - TOT_PLOT2D_MODE_LOGARITHMIC_HOR - 水平軸: 対数 + PREF_LINES + ライン - TOT_PLOT2D_MODE_LOGARITHMIC_VER - 垂直軸: 対数 + PREF_SPLINE + スプライン - MNU_GLOBALPAN_VIEW - グローバルパンニング + PREF_MARKER_SIZE + 座標系のサイズ: - INF_APP_DUMP_VIEW - ビューを保存します。 + PREF_LINEAR + 線形 - PLOT2D_LEGEND_POSITION_BOTTOM - Bottom + PREF_LOGARITHMIC + 対数 - INF_COORDINATES - お問い合わせ: x: %1、y: %2 + PREF_HOR_AXIS_SCALE + 水平方向の軸のスケール: - DSC_CLONE_VIEW - 現在のステージの新しいビューアー OCC を開く + PREF_VERT_AXIS_SCALE + 垂直軸のスケール: - DSC_PRINT_VIEW - 現在のビューを印刷します。 + PREF_VIEWER_BACKGROUND + 背景色 + + + Plot2d_AnalyticalCurveDlg - DASH_LINE_LBL - インデントを設定します。 + ANALYTICAL_CURVE_TLT + 分析曲線のプロパティ - DTRIANGLE_MARKER_LBL - 下向きの三角形 + AC_CURVE_PARAMS + 曲線のパラメーター - UTRIANGLE_MARKER_LBL - 三角形のトップ指向 + AC_CURVE_PROPS + 曲線のプロパティ - LTRIANGLE_MARKER_LBL - 左の三角形を指向 + AC_FORMULA + y (x) = - RTRIANGLE_MARKER_LBL - 右向き三角形を指向 + AC_NB_INTERVALS + Nb に登録間隔 - RECTANGLE_MARKER_LBL - 四角形の作成 + AC_AUTO_ASSIGN + 自動割り当て。 - TLT_SETUP_PLOT2D_VIEW - 2次元可視化設定をプロットします。 + AC_MARKER_TYPE + マーカーの種類 - CURVE_LINE_TYPE_LAB - 回線の種類: + AC_LINE_TYPE + 行の種類 - CROSS_MARKER_LBL - クロス + AC_LINE_WIDTH + 線の太さ - XCROSS_MARKER_LBL - 斜め十字 + AC_CURVE_COLOR + 曲線の色 - PLOT2D_ENABLE_VER_TITLE - 垂直軸のタイトル + AC_ADD_BTN + カーブを追加します。 - PLOT2D_ENABLE_HOR_TITLE - 水平軸のタイトル + AC_REM_BTN + カーブを削除します。 - TOT_PLOT2D_SETTINGS - パラメーター + AC_OK_BTN + わかりました - TOT_PLOT2D_ANALYTICAL_CURVES - 分析曲線 + AC_APPLY_BTN + 適用 - TOT_PLOT2D_NORMALIZE_MODE_LMAX - 左の Y 軸: グローバルの最大値を標準化します。 + AC_CANT_CALCULATE + 曲線は計算できません。入力パラメーターを確認してください。 - TOT_PLOT2D_NORMALIZE_MODE_LMIN - 左の Y 軸: 世界最小の標準化 + AC_CLOSE_BTN + 閉じる(&C) - TOT_PLOT2D_NORMALIZE_MODE_RMAX - 右の Y 軸: グローバルの最大値を標準化します。 + AC_HELP_BTN + ヘルプ + + + Plot2d_SetupCurveScaleDlg - TOT_PLOT2D_NORMALIZE_MODE_RMIN - 右の Y 軸: 世界最小の標準化 + TLT_SETUP_CURVE_SCALE + スケールの曲線 (s) - PLOT2D_CURVE_TYPE_LINES - ライン + CURVE_SCALE_FACTOR + スケール ファクター + + + Plot2d_SetupViewDlg - MEN_PLOT2D_CURVES_SPLINES - スプラインを描画します。 + PLOT2D_CURVE_TYPE_LBL + 曲線の種類: - PRP_PLOT2D_MODE_LOGARITHMIC_HOR - 横軸に対数スケール モードの表示方法を変更 + PLOT2D_SET_AS_DEFAULT_CHECK + 既定の設定として保存します。 - PRP_PLOT2D_MODE_LOGARITHMIC_VER - 垂直軸を対数スケール モードの表示方法を変更 + PLOT2D_SCALE_MODE_HOR + 水平軸: - PLOT2D_IMAGE_FILES - イメージ (*.bmp *.png *.jpg *.jpeg) ファイル + PLOT2D_NORMALIZE_TLT + 標準化 - PLOT2D_MAX_INTERVALS - 最大間隔 + PLOT2D_NORMALIZE_MODE_MIN + 最小を標準化します。 - INF_AXES_Y_LEFT - 左の Y 軸 + PLOT2D_NORMALIZE_MODE_MAX + 最大値を標準化します。 - CURVE_COLOR_LAB - 色: + PLOT2D_NORMALIZE_LEFT_AXIS + 左の Y 軸: - CURVE_PREVIEW_LAB - プレビュー + PLOT2D_NORMALIZE_RIGHT_AXIS + 右の Y 軸: - DIAMOND_MARKER_LBL - ダイヤモンド + PLOT2D_SCALE_MODE_VER + 垂直軸: - PLOT2D_LEGEND_POSITION_TOP - トップ + PLOT2D_GRID_TLT + グリッド、軸のマーク - TOT_PLOT2D_CHANGE_BACKGROUND - 背景を変更 + INF_AXES_X + X 軸 - MEN_PLOT2D_CHANGE_BACKGROUND - 背景を変更する. + PLOT2D_SCALE_TLT + スケール モード - PRP_PLOT2D_CHANGE_BACKGROUND - 背景の色を変更します。 + PLOT2D_LEGEND_POSITION_BOTTOM + Bottom - SOLID_LINE_LBL - ソリッド + TLT_SETUP_PLOT2D_VIEW + 2次元可視化設定をプロットします。 + + + PLOT2D_ENABLE_VER_TITLE + 垂直軸のタイトル + + + PLOT2D_ENABLE_HOR_TITLE + 水平軸のタイトル + + + PLOT2D_CURVE_TYPE_LINES + ライン + + + PLOT2D_MAX_INTERVALS + 最大間隔 + + + INF_AXES_Y_LEFT + 左の Y 軸 + + + PLOT2D_LEGEND_POSITION_TOP + トップ PLOT2D_GRID_ENABLE_VER_MAJOR @@ -323,10 +362,6 @@ PLOT2D_GRID_ENABLE_VER_MINOR セカンダリ垂直 - - TOT_PLOT2D_CURVES_POINTS - ポイントを描画します。 - PLOT2D_GRID_ENABLE_HOR_MINOR セカンダリ水平 @@ -355,38 +390,10 @@ PLOT2D_DEVIATION_CL_LBL 色 - - WRN_XLOG_NOT_ALLOWED - X 軸上非陽性値を持つポイントが検出されました。カテゴリの対数目盛は許可されていません。 - - - WRN_YLOG_NOT_ALLOWED - Y 軸上非陽性値を持つポイントが検出されました。切片の対数目盛は許可されていません。 - - - DSC_FITRECT - シーンのボックスで選択した領域を調整します。 - PLOT2D_LEGEND_POSITION_LEFT 左 - - MNU_FITRECT - 表示エリア - - - DOT_LINE_LBL - 基準点 - - - MEN_PLOT2D_CURVES_POINTS - ポイントを描画します。 - - - PRP_PLOT2D_CURVES_POINTS - 表示モードのポイントを変更します。 - PLOT2D_SCALE_MODE_LOGARITHMIC 対数 @@ -395,14 +402,6 @@ PLOT2D_LEGEND_POSITION_RIGHT 右 - - DSC_DUMP_VIEW - 現在のビューをイメージ ファイルに保存します。 - - - WARNING - 警告 - PLOT2D_ENABLE_LEGEND キャプションを表示します。 @@ -412,396 +411,388 @@ 凡例のフォント - DSC_ZOOM_VIEW - ズーム - - - PRP_PLOT2D_ANALYTICAL_CURVES - 分析曲線のプロパティを設定します。 - - - PRP_PLOT2D_NORMALIZE_MODE_LMAX - 左側の Y 軸の最大の標準化の方法に、ビューを切り替える + PLOT2D_SCALE_MODE_LINEAR + 線形 - PRP_PLOT2D_NORMALIZE_MODE_LMIN - 左側の Y 軸の最小の標準化の方法に、ビューを切り替える + PLOT2D_CURVE_TYPE_POINTS + ポイント - PRP_PLOT2D_NORMALIZE_MODE_RMAX - 右側の Y 軸の最大の標準化の方法に、ビューを切り替える + PLOT2D_CURVE_TYPE_SPLINE + スプライン - PRP_PLOT2D_NORMALIZE_MODE_RMIN - 右側の Y 軸の最小の標準化の方法に、ビューを切り替える + INF_AXES_Y_RIGHT + 右の Y 軸 - PRP_PLOT2D_SETTINGS - 可視化を設定します。 + PLOT2D_MARKER_SIZE_LBL + マーカーのサイズ: - INF_COORDINATES_SOME_Y - お問い合わせ: x: %1、y: %2 ( %3 ) + PLOT2D_ENABLE_MAIN_TITLE + 主なタイトル - SCALING_POPUP - スケール + PLOT2D_LEGEND_GROUP + 凡例 - PLOT2D_SCALE_MODE_LINEAR - 線形 + PLOT2D_LEGEND_POSITION + 凡例の位置 - TOT_PLOT2D_FITDATA - 間隔を調整します。 + PLOT2D_LEGEND_SYMBOL_TYPE + シンボルタイプ: - PLOT2D_CURVE_TYPE_POINTS - ポイント + PLOT2D_MARKER_ABOVE_LINE + 線の上のマーカー - PLOT2D_CURVE_TYPE_SPLINE - スプライン + PLOT2D_MARKER_ON_LINE + 線上のマーカー - MEN_PLOT2D_FITDATA - 間隔を調整します。(&R) + PLOT2D_LEGEND_FONT_COLOR + 凡例フォントの色: - MEN_PLOT2D_MODE_LOGARITHMIC_HOR - 水平軸: 対数 + PLOT2D_SELECTED_LEGEND_FONT_COLOR + ハイライト凡例フォントの色: + + + Plot2d_SetupCurveDlg - MEN_PLOT2D_MODE_LOGARITHMIC_VER - 垂直軸: 対数 + TLT_SETUP_CURVE + 曲線を初期化します。 - MEN_PLOT2D_NORMALIZE_MODE_LMIN - 左の Y 軸: 最小 + CURVE_LINE_WIDTH_LAB + 線の太さ: - MEN_PLOT2D_NORMALIZE_MODE_LMAX - 左の Y 軸: 最大 + CURVE_LINE_TYPE_LAB + 回線の種類: - MEN_PLOT2D_NORMALIZE_MODE_RMIN - 右の Y 軸: 最小 + CURVE_COLOR_LAB + 色: - MEN_PLOT2D_NORMALIZE_MODE_RMAX - 右の Y 軸: 最大 + CURVE_PREVIEW_LAB + プレビュー - PRP_PLOT2D_FITDATA - 指定したデータ範囲を調整します。 + CURVE_MARKER_TYPE_LAB + マーカーの種類: + + + Plot2d_ViewWindow - MEN_PLOT2D_MODE_LINEAR_VER - 垂直軸: 線形 + MNU_DUMP_VIEW + ビューを保存. - MEN_PLOT2D_MODE_LINEAR_HOR - 水平軸: 線形 + MNU_PAN_VIEW + パンニング - NONE_MARKER_LBL - [なし] + MNU_CLONE_VIEW + ビューの複製 - ERR_DOC_CANT_SAVE_FILE - ファイルを保存できませんでした。 + MNU_PRINT_VIEW + 印刷ビュー - MEN_PLOT2D_SHOW_LEGEND - キャプションを表示します。(&L) + POSTSCRIPT_FILES + PostScript ファイル (* .ps) - PRP_PLOT2D_SHOW_LEGEND - 凡例を有効または無効 + ENCAPSULATED_POSTSCRIPT_FILES + カプセル化された PostScript (*.eps) ファイル - TOT_PLOT2D_SHOW_LEGEND - キャプションを表示します。 + PDF_FILES + PDF files (*.pdf) - INF_AXES_Y_RIGHT - 右の Y 軸 + DSC_GLOBALPAN_VIEW + ビューの新しい中心地の選択 - DAHSDOTDOT_LINE_LBL - TiretPointPoint + PRP_PLOT2D_MODE_LINEAR_VER + 線形スケールのモードには、垂直軸の表示を変更します。 - TOT_PLOT2D_CURVES_SPLINES - スプラインを描画します。 + PRP_PLOT2D_MODE_LINEAR_HOR + 線形スケールのモードに、ビューの水平方向の軸を変更します。 - CURVE_MARKER_TYPE_LAB - マーカーの種類: + CURVE_TYPE_POPUP + 曲線の種類 - MEN_PLOT2D_SETTINGS - パラメーター(&S) + NORMALIZATION_TYPE_POPUP + 標準化 - MEN_PLOT2D_ANALYTICAL_CURVES - 分析曲線 + TOT_PLOT2D_MODE_LINEAR_VER + 垂直軸: 線形 - CIRCLE_MARKER_LBL - 円 + TOT_PLOT2D_MODE_LINEAR_HOR + 水平軸: 線形 - LBL_TOOLBAR_LABEL - 表示操作 + MNU_ZOOM_VIEW + ズーム - NONE_LINE_LBL - [なし] + DSC_PAN_VIEW + ビューを移動します。 - PLOT2D_MARKER_SIZE_LBL - マーカーのサイズ: + PRP_PLOT2D_CURVES_SPLINES + 表示モードのスプラインを変更します。 - PLOT2D_ENABLE_MAIN_TITLE - 主なタイトル + DSC_FITALL + すべてのオブジェクトを表示するには、シーンを調整します。 - PLOT2D_LEGEND_GROUP - 凡例 + MNU_FITALL + すべて表示 - PLOT2D_LEGEND_POSITION - 凡例の位置 + TOT_PLOT2D_MODE_LOGARITHMIC_HOR + 水平軸: 対数 - PLOT2D_LEGEND_SYMBOL_TYPE - シンボルタイプ: + TOT_PLOT2D_MODE_LOGARITHMIC_VER + 垂直軸: 対数 - PLOT2D_MARKER_ABOVE_LINE - 線の上のマーカー + MNU_GLOBALPAN_VIEW + グローバルパンニング - PLOT2D_MARKER_ON_LINE - 線上のマーカー + DSC_CLONE_VIEW + 現在のステージの新しいビューアー OCC を開く - PLOT2D_LEGEND_FONT_COLOR - 凡例フォントの色: + DSC_PRINT_VIEW + 現在のビューを印刷します。 - PLOT2D_SELECTED_LEGEND_FONT_COLOR - ハイライト凡例フォントの色: + TOT_PLOT2D_SETTINGS + パラメーター - TOT_PLOT2D_CURVES_LINES - 線を描く + TOT_PLOT2D_ANALYTICAL_CURVES + 分析曲線 - PRP_PLOT2D_CURVES_LINES - 表示モードの行を変更します。 + TOT_PLOT2D_NORMALIZE_MODE_LMAX + 左の Y 軸: グローバルの最大値を標準化します。 - MEN_PLOT2D_CURVES_LINES - 線を描く + TOT_PLOT2D_NORMALIZE_MODE_LMIN + 左の Y 軸: 世界最小の標準化 - - - Plot2d_FitDataDlg - FIT_HORIZONTAL - 水平調整します。 + TOT_PLOT2D_NORMALIZE_MODE_RMAX + 右の Y 軸: グローバルの最大値を標準化します。 - MIN_VALUE_LAB - 最小: + TOT_PLOT2D_NORMALIZE_MODE_RMIN + 右の Y 軸: 世界最小の標準化 - VERTICAL_AXIS - 垂直軸 + MEN_PLOT2D_CURVES_SPLINES + スプラインを描画します。 - MAX_VALUE_LAB - 最大: + PRP_PLOT2D_MODE_LOGARITHMIC_HOR + 横軸に対数スケール モードの表示方法を変更 - HORIZONTAL_AXIS - 水平軸 + PRP_PLOT2D_MODE_LOGARITHMIC_VER + 垂直軸を対数スケール モードの表示方法を変更 - VERTICAL_LEFT_AXIS - 左側の垂直軸 + TOT_PLOT2D_CURVES_POINTS + ポイントを描画します。 - FIT_ALL - すべてを調整します。 + DSC_FITRECT + シーンのボックスで選択した領域を調整します。 - VERTICAL_RIGHT_AXIS - 右数値軸 + MNU_FITRECT + 表示エリア - FIT_VERTICAL - 垂直方向に調整します。 + MEN_PLOT2D_CURVES_POINTS + ポイントを描画します。 - - - Plot2d_ViewManager - PLOT2D_VIEW_TITLE - シーン Plot2d: %M - ビューアー: %V + PRP_PLOT2D_CURVES_POINTS + 表示モードのポイントを変更します。 - PREF_GROUP_PLOT2DVIEWER - Plot 2D Viewer + DSC_DUMP_VIEW + 現在のビューをイメージ ファイルに保存します。 - PREF_SHOW_LEGEND - キャプションを表示します。 + DSC_ZOOM_VIEW + ズーム - PREF_LEGEND_POSITION - 凡例の位置: + PRP_PLOT2D_ANALYTICAL_CURVES + 分析曲線のプロパティを設定します。 - PREF_LEFT - 左 + PRP_PLOT2D_NORMALIZE_MODE_LMAX + 左側の Y 軸の最大の標準化の方法に、ビューを切り替える - PREF_RIGHT - 右 + PRP_PLOT2D_NORMALIZE_MODE_LMIN + 左側の Y 軸の最小の標準化の方法に、ビューを切り替える - PREF_TOP - ページのトップへ + PRP_PLOT2D_NORMALIZE_MODE_RMAX + 右側の Y 軸の最大の標準化の方法に、ビューを切り替える - PREF_BOTTOM - BAS + PRP_PLOT2D_NORMALIZE_MODE_RMIN + 右側の Y 軸の最小の標準化の方法に、ビューを切り替える - PREF_CURVE_TYPE - 曲線の種類: + PRP_PLOT2D_SETTINGS + 可視化を設定します。 - PREF_POINTS - ポイント + SCALING_POPUP + スケール - PREF_LINES - ライン + TOT_PLOT2D_FITDATA + 間隔を調整します。 - PREF_SPLINE - スプライン + MEN_PLOT2D_FITDATA + 間隔を調整します。(&R) - PREF_MARKER_SIZE - 座標系のサイズ: + PRP_PLOT2D_FITDATA + 指定したデータ範囲を調整します。 - PREF_LINEAR - 線形 + MEN_PLOT2D_MODE_LOGARITHMIC_HOR + 水平軸: 対数 - PREF_LOGARITHMIC - 対数 + MEN_PLOT2D_MODE_LOGARITHMIC_VER + 垂直軸: 対数 - PREF_HOR_AXIS_SCALE - 水平方向の軸のスケール: + MEN_PLOT2D_NORMALIZE_MODE_LMIN + 左の Y 軸: 最小 - PREF_VERT_AXIS_SCALE - 垂直軸のスケール: + MEN_PLOT2D_NORMALIZE_MODE_LMAX + 左の Y 軸: 最大 - PREF_VIEWER_BACKGROUND - 背景色 + MEN_PLOT2D_NORMALIZE_MODE_RMIN + 右の Y 軸: 最小 - - - Plot2d_AnalyticalCurveDlg - ANALYTICAL_CURVE_TLT - 分析曲線のプロパティ + MEN_PLOT2D_NORMALIZE_MODE_RMAX + 右の Y 軸: 最大 - AC_CURVE_PARAMS - 曲線のパラメーター + MEN_PLOT2D_MODE_LINEAR_VER + 垂直軸: 線形 - AC_CURVE_PROPS - 曲線のプロパティ + MEN_PLOT2D_MODE_LINEAR_HOR + 水平軸: 線形 - AC_FORMULA - y (x) = + MEN_PLOT2D_SHOW_LEGEND + キャプションを表示します。(&L) - AC_NB_INTERVALS - Nb に登録間隔 + PRP_PLOT2D_SHOW_LEGEND + 凡例を有効または無効 - AC_AUTO_ASSIGN - 自動割り当て。 + TOT_PLOT2D_SHOW_LEGEND + キャプションを表示します。 - AC_MARKER_TYPE - マーカーの種類 + TOT_PLOT2D_CURVES_SPLINES + スプラインを描画します。 - AC_LINE_TYPE - 行の種類 + MEN_PLOT2D_SETTINGS + パラメーター(&S) - AC_LINE_WIDTH - 線の太さ + MEN_PLOT2D_ANALYTICAL_CURVES + 分析曲線 - AC_CURVE_COLOR - 曲線の色 + LBL_TOOLBAR_LABEL + 表示操作 - AC_ADD_BTN - カーブを追加します。 + TOT_PLOT2D_CURVES_LINES + 線を描く - AC_REM_BTN - カーブを削除します。 + PRP_PLOT2D_CURVES_LINES + 表示モードの行を変更します。 - AC_OK_BTN - わかりました + MEN_PLOT2D_CURVES_LINES + 線を描く + + + Plot2d_Viewer - AC_APPLY_BTN - 適用 + MNU_DUMP_VIEW + ビューを保存. - AC_CANT_CALCULATE - 曲線は計算できません。入力パラメーターを確認してください。 + MEN_PLOT2D_CHANGE_BACKGROUND + 背景を変更する. + + + Plot2d_ViewFrame - AC_CLOSE_BTN - 閉じる(&C) + INF_COORDINATES + お問い合わせ: x: %1、y: %2 - AC_HELP_BTN - ヘルプ + INF_COORDINATES_SOME_Y + お問い合わせ: x: %1、y: %2 ( %3 ) - - - Plot2d_SetupCurveScaleDlg - TLT_SETUP_CURVE_SCALE - スケールの曲線 (s) + WRN_XLOG_NOT_ALLOWED + X 軸上非陽性値を持つポイントが検出されました。カテゴリの対数目盛は許可されていません。 - CURVE_SCALE_FACTOR - スケール ファクター + WRN_YLOG_NOT_ALLOWED + Y 軸上非陽性値を持つポイントが検出されました。切片の対数目盛は許可されていません。 diff --git a/src/Qtx/QtxActionToolMgr.cxx b/src/Qtx/QtxActionToolMgr.cxx index d127286c8..8b890c177 100644 --- a/src/Qtx/QtxActionToolMgr.cxx +++ b/src/Qtx/QtxActionToolMgr.cxx @@ -113,7 +113,36 @@ int QtxActionToolMgr::createToolBar( const QString& title, const int tid, QMainW If \a tid is less than 0, the identifier is generated automatically. If toolbar with given \a tid is already registered, the toolbar will not be created. + The parameter \a name can be specified to give an unique string identifier to the toolbar. + This can be useful in the multi-language environment where identifier of the toolbar should + not be dependant on the language chosen (e.g. to store positions of toolbars of main menu + in the preferences). + \param title toolbar title + \param name toolbar name (identifier) + \param tid requested toolbar ID + \param mw parent main window; if it is null, the tool manager's main window is used + \param vis show toolbar visible immediately after creation (true by default) + \return id of created/found toolbar +*/ +int QtxActionToolMgr::createToolBar( const QString& title, const QString& name, const int tid, QMainWindow* mw, bool vis ) +{ + return createToolBar( title, name, true, Qt::AllToolBarAreas, tid, mw, vis ); +} + +/*! + \brief Create toolbar and assign \a id to it. + + If \a tid is less than 0, the identifier is generated automatically. + If toolbar with given \a tid is already registered, the toolbar will not be created. + + The parameter \a name can be specified to give an unique string identifier to the toolbar. + This can be useful in the multi-language environment where identifier of the toolbar should + not be dependant on the language chosen (e.g. to store positions of toolbars of main menu + in the preferences). + + \param title toolbar title + \param name toolbar name (identifier) \param floatable if \c true, new toolbar is made floatable \param dockAreas dock areas of the main window where the new toolbar can be situated \param tid requested toolbar ID @@ -121,7 +150,7 @@ int QtxActionToolMgr::createToolBar( const QString& title, const int tid, QMainW \param vis show toolbar visible immediately after creation (true by default) \return id of created/found toolbar */ -int QtxActionToolMgr::createToolBar( const QString& title, bool floatable, Qt::ToolBarAreas dockAreas, +int QtxActionToolMgr::createToolBar( const QString& title, const QString& name, bool floatable, Qt::ToolBarAreas dockAreas, int tid, QMainWindow* mw, bool vis ) { static int _toolBarId = -1; @@ -154,7 +183,7 @@ int QtxActionToolMgr::createToolBar( const QString& title, bool floatable, Qt::T tb->setMovable( dockAreas & Qt::AllToolBarAreas ); //mainWindow()->addToolBar( tb ); tb->setWindowTitle( title ); - tb->setObjectName( title ); + tb->setObjectName( name.isEmpty() ? title : name ); tb->setToolTip( title ); if ( !vis ) QApplication::postEvent( tb, new QHideEvent()); @@ -166,6 +195,26 @@ int QtxActionToolMgr::createToolBar( const QString& title, bool floatable, Qt::T return tbId; } +/*! + \brief Create toolbar and assign \a id to it. + + If \a tid is less than 0, the identifier is generated automatically. + If toolbar with given \a tid is already registered, the toolbar will not be created. + + \param title toolbar title + \param floatable if \c true, new toolbar is made floatable + \param dockAreas dock areas of the main window where the new toolbar can be situated + \param tid requested toolbar ID + \param mw parent main window; if it is null, the tool manager's main window is used + \param vis show toolbar visible immediately after creation (true by default) + \return id of created/found toolbar +*/ +int QtxActionToolMgr::createToolBar( const QString& title, bool floatable, Qt::ToolBarAreas dockAreas, + int tid, QMainWindow* mw, bool vis ) +{ + return createToolBar( title, QString(), floatable, dockAreas, tid, mw, vis ); +} + /*! \brief Search toolbar with given \a title owned by main window \mw. \param title toolbar title diff --git a/src/Qtx/QtxActionToolMgr.h b/src/Qtx/QtxActionToolMgr.h index 783fad4f3..5f2b6e136 100644 --- a/src/Qtx/QtxActionToolMgr.h +++ b/src/Qtx/QtxActionToolMgr.h @@ -66,8 +66,11 @@ public: QMainWindow* mainWindow() const; int createToolBar( const QString&, int = -1, QMainWindow* = 0, bool = true ); + int createToolBar( const QString&, const QString&, int = -1, QMainWindow* = 0, bool = true ); int createToolBar( const QString&, bool, Qt::ToolBarAreas = Qt::AllToolBarAreas, int = -1, QMainWindow* = 0, bool = true ); + int createToolBar( const QString&, const QString&, bool, Qt::ToolBarAreas = Qt::AllToolBarAreas, + int = -1, QMainWindow* = 0, bool = true ); void removeToolBar( const QString& ); void removeToolBar( const int ); diff --git a/src/QxScene/QxScene_ViewWindow.cxx b/src/QxScene/QxScene_ViewWindow.cxx index 47ab64cf2..8272a4d60 100644 --- a/src/QxScene/QxScene_ViewWindow.cxx +++ b/src/QxScene/QxScene_ViewWindow.cxx @@ -157,7 +157,9 @@ void QxScene_ViewWindow::createToolBar() { DEBTRACE("QxScene_ViewWindow::createToolBar"); QtxActionToolMgr* mgr = toolMgr(); - myToolBar = mgr->createToolBar( tr( "LBL_TOOLBAR_LABEL" ), false ); + myToolBar = mgr->createToolBar( tr( "LBL_TOOLBAR_LABEL" ), // title (language-dependant) + QString( "QxSceneViewOperations" ), // name (language-independant) + false ); // disable floatable toolbar mgr->append( ScaleOpId, myToolBar ); mgr->append( MoveOpId, myToolBar ); mgr->append( ResetId, myToolBar ); diff --git a/src/QxScene/resources/QxSceneViewer_msg_en.ts b/src/QxScene/resources/QxSceneViewer_msg_en.ts index fe62d243d..a8dc9c1ac 100644 --- a/src/QxScene/resources/QxSceneViewer_msg_en.ts +++ b/src/QxScene/resources/QxSceneViewer_msg_en.ts @@ -23,6 +23,9 @@ DSC_RESET_VIEW Reset View Point + + + QxScene_ViewWindow LBL_TOOLBAR_LABEL View Operations diff --git a/src/QxScene/resources/QxSceneViewer_msg_fr.ts b/src/QxScene/resources/QxSceneViewer_msg_fr.ts index e122d7078..6f431ef8a 100755 --- a/src/QxScene/resources/QxSceneViewer_msg_fr.ts +++ b/src/QxScene/resources/QxSceneViewer_msg_fr.ts @@ -23,6 +23,9 @@ DSC_RESET_VIEW Restaurer le point de vue + + + QxScene_ViewWindow LBL_TOOLBAR_LABEL Opérations de visualisation diff --git a/src/QxScene/resources/QxSceneViewer_msg_ja.ts b/src/QxScene/resources/QxSceneViewer_msg_ja.ts index 06eec21a4..eddd61232 100644 --- a/src/QxScene/resources/QxSceneViewer_msg_ja.ts +++ b/src/QxScene/resources/QxSceneViewer_msg_ja.ts @@ -23,6 +23,9 @@ DSC_RESET_VIEW ビューのポイントを復元します。 + + + QxScene_ViewWindow LBL_TOOLBAR_LABEL 表示操作 diff --git a/src/SALOME_PYQT/SALOME_PYQT_GUILight/SALOME_PYQT_PyModule.cxx b/src/SALOME_PYQT/SALOME_PYQT_GUILight/SALOME_PYQT_PyModule.cxx index 4a21a4085..d8c21b005 100644 --- a/src/SALOME_PYQT/SALOME_PYQT_GUILight/SALOME_PYQT_PyModule.cxx +++ b/src/SALOME_PYQT/SALOME_PYQT_GUILight/SALOME_PYQT_PyModule.cxx @@ -476,9 +476,10 @@ void PyModuleHelper::XmlHandler::createToolBar( QDomNode& parentNode ) QDomElement parentElement = parentNode.toElement(); if ( !parentElement.isNull() ) { QString aLabel = attribute( parentElement, "label-id" ); + QString aName = attribute( parentElement, "name-id" ); if ( !aLabel.isEmpty() ) { // create toolbar - int tbId = module()->createTool( aLabel ); + int tbId = module()->createTool( aLabel, aName ); QDomNode node = parentNode.firstChild(); while ( !node.isNull() ) { if ( node.isElement() ) { diff --git a/src/SALOME_PYQT/SalomePyQt/SalomePyQt.cxx b/src/SALOME_PYQT/SalomePyQt/SalomePyQt.cxx index e8ace541f..46cffcc0c 100644 --- a/src/SALOME_PYQT/SalomePyQt/SalomePyQt.cxx +++ b/src/SALOME_PYQT/SalomePyQt/SalomePyQt.cxx @@ -1549,37 +1549,38 @@ int SalomePyQt::defaultMenuGroup() class CrTool { public: - CrTool( const QString& tBar ) - : myCase( 0 ), myTbName( tBar ) {} + CrTool( const QString& tBar, const QString& nBar ) + : myCase( 0 ), myTbTitle( tBar ), myTbName( nBar) {} CrTool( const int id, const int tBar, const int idx ) : myCase( 1 ), myId( id ), myTbId( tBar ), myIndex( idx ) {} CrTool( const int id, const QString& tBar, const int idx ) - : myCase( 2 ), myId( id ), myTbName( tBar ), myIndex( idx ) {} + : myCase( 2 ), myId( id ), myTbTitle( tBar ), myIndex( idx ) {} CrTool( QAction* action, const int tbId, const int id, const int idx ) : myCase( 3 ), myAction( action ), myTbId( tbId ), myId( id ), myIndex( idx ) {} CrTool( QAction* action, const QString& tBar, const int id, const int idx ) - : myCase( 4 ), myAction( action ), myTbName( tBar ), myId( id ), myIndex( idx ) {} + : myCase( 4 ), myAction( action ), myTbTitle( tBar ), myId( id ), myIndex( idx ) {} int execute( LightApp_Module* module ) const { if ( module ) { switch ( myCase ) { case 0: - return module->createTool( myTbName ); + return module->createTool( myTbTitle, myTbName ); case 1: return module->createTool( myId, myTbId, myIndex ); case 2: - return module->createTool( myId, myTbName, myIndex ); + return module->createTool( myId, myTbTitle, myIndex ); case 3: return module->createTool( myAction, myTbId, myId, myIndex ); case 4: - return module->createTool( myAction, myTbName, myId, myIndex ); + return module->createTool( myAction, myTbTitle, myId, myIndex ); } } return -1; } private: int myCase; + QString myTbTitle; QString myTbName; int myTbId; QAction* myAction; @@ -1605,12 +1606,13 @@ public: /*! \brief Create toolbar with specified name. - \param tBar toolbar name + \param tBar toolbar title (language-dependent) + \param nBar toolbar name (language-independent) [optional] \return toolbar ID or -1 if toolbar creation is failed */ -int SalomePyQt::createTool( const QString& tBar ) +int SalomePyQt::createTool( const QString& tBar, const QString& nBar ) { - return ProcessEvent( new TCreateToolEvent( CrTool( tBar ) ) ); + return ProcessEvent( new TCreateToolEvent( CrTool( tBar, nBar ) ) ); } /*! diff --git a/src/SALOME_PYQT/SalomePyQt/SalomePyQt.h b/src/SALOME_PYQT/SalomePyQt/SalomePyQt.h index e9956afd4..2747c0f7c 100644 --- a/src/SALOME_PYQT/SalomePyQt/SalomePyQt.h +++ b/src/SALOME_PYQT/SalomePyQt/SalomePyQt.h @@ -208,7 +208,7 @@ public: static int defaultMenuGroup(); - static int createTool( const QString& ); + static int createTool( const QString&, const QString& = QString() ); static int createTool( const int, const int, const int = -1 ); static int createTool( const int, const QString&, const int = -1 ); static int createTool( QAction*, const int, const int = -1, const int = -1 ); diff --git a/src/SALOME_PYQT/SalomePyQt/SalomePyQt.sip b/src/SALOME_PYQT/SalomePyQt/SalomePyQt.sip index 2919a905d..4da473a0a 100644 --- a/src/SALOME_PYQT/SalomePyQt/SalomePyQt.sip +++ b/src/SALOME_PYQT/SalomePyQt/SalomePyQt.sip @@ -366,7 +366,7 @@ public: static int defaultMenuGroup() /ReleaseGIL/ ; - static int createTool( const QString& ) /ReleaseGIL/ ; + static int createTool( const QString&, const QString& = QString() ) /ReleaseGIL/ ; static int createTool( const int, const int, const int = -1 ) /ReleaseGIL/ ; static int createTool( const int, const QString&, const int = -1 ) /ReleaseGIL/ ; static int createTool( QAction*, const int, const int = -1, const int = -1 ) /ReleaseGIL/ ; diff --git a/src/STD/STD_Application.cxx b/src/STD/STD_Application.cxx index 9539d7ee3..032840bb5 100755 --- a/src/STD/STD_Application.cxx +++ b/src/STD/STD_Application.cxx @@ -253,7 +253,8 @@ void STD_Application::createActions() // Create tool bars - int stdTBar = createTool( tr( "INF_DESK_TOOLBAR_STANDARD" ) ); + int stdTBar = createTool( tr( "INF_DESK_TOOLBAR_STANDARD" ), // title (language-dependant) + QString( "SalomeStandard" ) ); // name (language-independant) // Create tool items diff --git a/src/SUIT/SUIT_Application.cxx b/src/SUIT/SUIT_Application.cxx index 61276cbaa..d169503cb 100755 --- a/src/SUIT/SUIT_Application.cxx +++ b/src/SUIT/SUIT_Application.cxx @@ -315,14 +315,15 @@ void SUIT_Application::setActiveStudy( SUIT_Study* study ) /*! Creates new toolbar \return identificator of new toolbar in tool manager - \param name - name of new toolbar + \param title - title of new toolbar + \param name - name (identifier) of new toolbar */ -int SUIT_Application::createTool( const QString& name ) +int SUIT_Application::createTool( const QString& title, const QString& name ) { if ( !desktop() || !desktop()->toolMgr() ) return -1; - return desktop()->toolMgr()->createToolBar( name ); + return desktop()->toolMgr()->createToolBar( title, name ); } /*! diff --git a/src/SUIT/SUIT_Application.h b/src/SUIT/SUIT_Application.h index 815063454..8b5d9d031 100755 --- a/src/SUIT/SUIT_Application.h +++ b/src/SUIT/SUIT_Application.h @@ -138,7 +138,7 @@ protected: virtual void setActiveStudy( SUIT_Study* ); /** @name Create tool functions*/ //@{ - int createTool( const QString& ); + int createTool( const QString&, const QString& = QString() ); int createTool( const int, const int, const int = -1 ); int createTool( const int, const QString&, const int = -1 ); int createTool( QAction*, const int, const int = -1, const int = -1 ); diff --git a/src/SVTK/SVTK_ViewWindow.cxx b/src/SVTK/SVTK_ViewWindow.cxx index d56dde955..bd64d9aa8 100755 --- a/src/SVTK/SVTK_ViewWindow.cxx +++ b/src/SVTK/SVTK_ViewWindow.cxx @@ -173,8 +173,13 @@ void SVTK_ViewWindow::Initialize(SVTK_ViewModelBase* theModel) aRenderer->Delete(); aSelector->Delete(); - myToolBar = toolMgr()->createToolBar( tr("LBL_TOOLBAR_LABEL"), false, Qt::AllToolBarAreas, -1, this ); - myRecordingToolBar = toolMgr()->createToolBar( tr("LBL_TOOLBAR_RECORD_LABEL"), false, Qt::AllToolBarAreas, -1, this ); + myToolBar = toolMgr()->createToolBar( tr("LBL_TOOLBAR_LABEL"), // title (language-dependant) + QString( "VTKViewerViewOperations" ), // name (language-independant) + false ); // disable floatable toolbar + + myRecordingToolBar = toolMgr()->createToolBar( tr("LBL_TOOLBAR_RECORD_LABEL"), // title (language-dependant) + QString( "VTKRecordingOperations" ), // name (language-independant) + false ); // disable floatable toolbar createActions( SUIT_Session::session()->resourceMgr() ); createToolBar(); diff --git a/src/SVTK/resources/SVTK_msg_en.ts b/src/SVTK/resources/SVTK_msg_en.ts index dd996207c..a21b2d92d 100644 --- a/src/SVTK/resources/SVTK_msg_en.ts +++ b/src/SVTK/resources/SVTK_msg_en.ts @@ -159,10 +159,6 @@ MNU_RIGHT_VIEW -OY - - LBL_TOOLBAR_LABEL - View Operations - DSC_BACK_VIEW +OX View @@ -317,6 +313,10 @@ MNU_SVTK_RECORDING_STOP Stop recording + + LBL_TOOLBAR_LABEL + View Operations + LBL_TOOLBAR_RECORD_LABEL Recording Operations diff --git a/src/SVTK/resources/SVTK_msg_fr.ts b/src/SVTK/resources/SVTK_msg_fr.ts index a6b8cdc5b..15f55eca9 100755 --- a/src/SVTK/resources/SVTK_msg_fr.ts +++ b/src/SVTK/resources/SVTK_msg_fr.ts @@ -159,10 +159,6 @@ MNU_RIGHT_VIEW -OY - - LBL_TOOLBAR_LABEL - Opérations de visualisation - DSC_BACK_VIEW Vue +OX @@ -317,6 +313,10 @@ MNU_SVTK_RECORDING_STOP Arrêter l'enregistrement + + LBL_TOOLBAR_LABEL + Opérations de visualisation + LBL_TOOLBAR_RECORD_LABEL Opérations d'enregistrement diff --git a/src/SVTK/resources/SVTK_msg_ja.ts b/src/SVTK/resources/SVTK_msg_ja.ts index 3fec5f98d..11d36a3ef 100644 --- a/src/SVTK/resources/SVTK_msg_ja.ts +++ b/src/SVTK/resources/SVTK_msg_ja.ts @@ -159,10 +159,6 @@ MNU_RIGHT_VIEW -OY - - LBL_TOOLBAR_LABEL - 表示操作 - DSC_BACK_VIEW +OX View @@ -317,6 +313,10 @@ MNU_SVTK_RECORDING_STOP 記録を停止します。 + + LBL_TOOLBAR_LABEL + 表示操作 + LBL_TOOLBAR_RECORD_LABEL 登録 diff --git a/src/VTKViewer/VTKViewer_ViewWindow.cxx b/src/VTKViewer/VTKViewer_ViewWindow.cxx index 721173c2a..b82a8a44f 100755 --- a/src/VTKViewer/VTKViewer_ViewWindow.cxx +++ b/src/VTKViewer/VTKViewer_ViewWindow.cxx @@ -92,6 +92,7 @@ VTKViewer_ViewWindow::VTKViewer_ViewWindow( SUIT_Desktop* theDesktop, setCentralWidget( myRenderWindow ); myToolBar = new QtxToolBar( true, tr("LBL_TOOLBAR_LABEL"), this ); + myToolBar->setObjectName( "VTKViewerViewOperations" ); myToolBar->setFloatable( false ); createActions(); diff --git a/src/VTKViewer/resources/VTKViewer_msg_en.ts b/src/VTKViewer/resources/VTKViewer_msg_en.ts index 1a7f41917..d06699e4d 100644 --- a/src/VTKViewer/resources/VTKViewer_msg_en.ts +++ b/src/VTKViewer/resources/VTKViewer_msg_en.ts @@ -151,15 +151,18 @@ MNU_RIGHT_VIEW Right - - LBL_TOOLBAR_LABEL - View Operations - DSC_BACK_VIEW Back View + + VTKViewer_ViewWindow + + LBL_TOOLBAR_LABEL + View Operations + + VTKViewer_MarkerDlg diff --git a/src/VTKViewer/resources/VTKViewer_msg_fr.ts b/src/VTKViewer/resources/VTKViewer_msg_fr.ts index 39c53eb83..2d2a9e45c 100755 --- a/src/VTKViewer/resources/VTKViewer_msg_fr.ts +++ b/src/VTKViewer/resources/VTKViewer_msg_fr.ts @@ -151,15 +151,18 @@ MNU_RIGHT_VIEW Droite - - LBL_TOOLBAR_LABEL - Opérations de visualisation - DSC_BACK_VIEW Vue de derrière + + VTKViewer_ViewWindow + + LBL_TOOLBAR_LABEL + Opérations de visualisation + + VTKViewer_MarkerDlg diff --git a/src/VTKViewer/resources/VTKViewer_msg_ja.ts b/src/VTKViewer/resources/VTKViewer_msg_ja.ts index af17027b7..0e4193619 100644 --- a/src/VTKViewer/resources/VTKViewer_msg_ja.ts +++ b/src/VTKViewer/resources/VTKViewer_msg_ja.ts @@ -151,15 +151,18 @@ MNU_RIGHT_VIEW 法律 - - LBL_TOOLBAR_LABEL - 表示操作 - DSC_BACK_VIEW 後側のビュー + + VTKViewer_ViewWindow + + LBL_TOOLBAR_LABEL + 表示操作 + + VTKViewer_MarkerDlg -- 2.39.2