Salome HOME
23582: [CEA] Rename MED module to FIELDS
authoreap <eap@opencascade.com>
Mon, 6 Aug 2018 12:04:04 +0000 (15:04 +0300)
committervsr <vsr@opencascade.com>
Tue, 16 Oct 2018 08:39:14 +0000 (11:39 +0300)
55 files changed:
CMakeLists.txt
FIELDS_version.h.in [new file with mode: 0644]
MED_version.h.in [deleted file]
SalomeFIELDSConfig.cmake.in [new file with mode: 0644]
SalomeMEDConfig.cmake.in [deleted file]
VERSION.in
doc/dev/sphinx/CMakeLists.txt
doc/dev/sphinx/conf.py.in
doc/dev/sphinx/fr/index.rst
doc/dev/sphinx/fr/medcalc-develguide.rst
doc/dev/sphinx/fr/medcalc-specifications.rst
doc/dev/sphinx/fr/medcalc-userguide-api.rst
doc/dev/sphinx/fr/medcalc-userguide-gui.rst
doc/dev/sphinx/index.rst
doc/dev/sphinx/medcalc-develguide.rst
doc/dev/sphinx/medcalc-specifications.rst
doc/dev/sphinx/medcalc-userguide-api.rst
doc/dev/sphinx/medcalc-userguide-gui.rst
resources/CMakeLists.txt
resources/FIELDSCatalog.xml.in [new file with mode: 0644]
resources/MEDCatalog.xml.in [deleted file]
resources/SalomeApp.xml.in
src/CMakeLists.txt
src/MEDCalc/CMakeLists.txt
src/MEDCalc/cmp/CMakeLists.txt
src/MEDCalc/cmp/MED.cxx
src/MEDCalc/cmp/MED.hxx
src/MEDCalc/cmp/test_medcalc_components.py
src/MEDCalc/gui/CMakeLists.txt
src/MEDCalc/gui/DatasourceController.cxx
src/MEDCalc/gui/FIELDS_images.ts [new file with mode: 0644]
src/MEDCalc/gui/FIELDS_msg_en.ts [new file with mode: 0644]
src/MEDCalc/gui/FIELDS_msg_fr.ts [new file with mode: 0644]
src/MEDCalc/gui/FIELDS_msg_ja.ts [new file with mode: 0644]
src/MEDCalc/gui/MEDModule.cxx
src/MEDCalc/gui/MED_images.ts [deleted file]
src/MEDCalc/gui/MED_msg_en.ts [deleted file]
src/MEDCalc/gui/MED_msg_fr.ts [deleted file]
src/MEDCalc/gui/MED_msg_ja.ts [deleted file]
src/MEDCalc/gui/dialogs/DlgImageToMed.cxx
src/MEDCalc/gui/factory.cxx
src/MEDCalc/res/CMakeLists.txt
src/MEDCalc/res/presentations/classic/CMakeLists.txt
src/MEDCalc/res/presentations/modern/CMakeLists.txt
src/MEDCalc/res/testfiles/CMakeLists.txt
src/MEDCalc/test/CMakeLists.txt
src/MEDCalc/test/gui/CMakeLists.txt
src/MEDCalc/test/medcalc_testutils.py.in
src/MEDCalc/test/tui/CMakeLists.txt
src/MEDCalc/tui/medcorba.py
src/MEDCalc/tui/medimages.py
src/MEDCalculator/CMakeLists.txt
src/MEDCalculator/Test/CMakeLists.txt
src/MEDGUI/CMakeLists.txt
src/MEDGUI/MEDGUIDataBaseDockWidget.cxx

index 119c07e55e499939ed018545aacb885eeb7b3fdc..787629c1475108bee4257908e69fdaee81ce3a98 100644 (file)
@@ -19,7 +19,7 @@
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8 FATAL_ERROR)
 INCLUDE(CMakeDependentOption)
-PROJECT(SalomeMED C CXX)
+PROJECT(SalomeFIELDS C CXX)
 
 # Ensure a proper linker behavior:
 CMAKE_POLICY(SET CMP0003 NEW)
@@ -77,13 +77,13 @@ FIND_PACKAGE(SalomeOmniORB REQUIRED)
 # User options
 # ============
 INCLUDE(CMakeDependentOption)
-OPTION(SALOME_MED_ENABLE_PYTHON "Build PYTHON bindings." ON)
-OPTION(SALOME_MED_WITH_FILE_EXAMPLES "Install examples of files containing meshes and fields of different formats." ON)
-OPTION(SALOME_MED_WITH_QTTESTING "Build MED with QtTesting support." OFF)
-OPTION(SALOME_USE_MPI "(Use MPI containers) - For MED this triggers the build of ParaMEDMEM." ${_default_MPI})
-OPTION(SALOME_BUILD_GUI "Build GUI of MED." ON)
-OPTION(SALOME_BUILD_TESTS "Build MED tests." ON)
-OPTION(SALOME_BUILD_DOC "Build MED doc." ON)
+OPTION(SALOME_FIELDS_ENABLE_PYTHON "Build PYTHON bindings." ON)
+OPTION(SALOME_FIELDS_WITH_FILE_EXAMPLES "Install examples of files containing meshes and fields of different formats." ON)
+OPTION(SALOME_FIELDS_WITH_QTTESTING "Build FIELDS with QtTesting support." OFF)
+OPTION(SALOME_USE_MPI "(Use MPI containers) - For FIELDS this triggers the build of ParaMEDMEM." ${_default_MPI})
+OPTION(SALOME_BUILD_GUI "Build GUI of FIELDS." ON)
+OPTION(SALOME_BUILD_TESTS "Build FIELDS tests." ON)
+OPTION(SALOME_BUILD_DOC "Build FIELDS doc." ON)
 
 # Find MEDCoupling (required)
 # ==========================
@@ -125,16 +125,16 @@ IF(SALOME_BUILD_GUI)
     ENDIF()
 ENDIF(SALOME_BUILD_GUI)
 
-IF(SALOME_MED_ENABLE_PYTHON)
+IF(SALOME_FIELDS_ENABLE_PYTHON)
   FIND_PACKAGE(SalomePythonInterp)
   FIND_PACKAGE(SalomePythonLibs)
   FIND_PACKAGE(SalomeNumPySciPy)
   FIND_PACKAGE(SalomeSWIG)
-  SALOME_LOG_OPTIONAL_PACKAGE(PythonInterp SALOME_MED_ENABLE_PYTHON)
-  SALOME_LOG_OPTIONAL_PACKAGE(PythonLibs SALOME_MED_ENABLE_PYTHON)
-  SALOME_LOG_OPTIONAL_PACKAGE(SWIG   SALOME_MED_ENABLE_PYTHON)
+  SALOME_LOG_OPTIONAL_PACKAGE(PythonInterp SALOME_FIELDS_ENABLE_PYTHON)
+  SALOME_LOG_OPTIONAL_PACKAGE(PythonLibs SALOME_FIELDS_ENABLE_PYTHON)
+  SALOME_LOG_OPTIONAL_PACKAGE(SWIG   SALOME_FIELDS_ENABLE_PYTHON)
   FIND_PACKAGE(SalomeOmniORBPy REQUIRED)
-ENDIF(SALOME_MED_ENABLE_PYTHON)
+ENDIF(SALOME_FIELDS_ENABLE_PYTHON)
 
 IF(SALOME_BUILD_TESTS)
   ENABLE_TESTING()
@@ -182,31 +182,31 @@ SET(SALOME_INSTALL_CMAKE salome_adm/cmake_files CACHE PATH "Install path: SALOME
 SET(SALOME_INSTALL_CMAKE_LOCAL adm_local/cmake_files CACHE PATH
    "Install path: local SALOME CMake files")
 
-IF(SALOME_MED_ENABLE_PYTHON)
+IF(SALOME_FIELDS_ENABLE_PYTHON)
   SET(_pydir lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages)
   SET(SALOME_INSTALL_PYTHON ${_pydir}/salome CACHE PATH "Install path: SALOME Python stuff")
   SET(SALOME_INSTALL_PYTHON_SHARED ${SALOME_INSTALL_PYTHON}/shared_modules CACHE PATH
     "Install path: SALOME Python shared modules")
-ENDIF(SALOME_MED_ENABLE_PYTHON)
+ENDIF(SALOME_FIELDS_ENABLE_PYTHON)
 
 SET(SALOME_INSTALL_RES share/salome/resources CACHE PATH "Install path: SALOME resources")
 SET(SALOME_INSTALL_DOC share/doc/salome CACHE PATH "Install path: SALOME documentation")
 
 # Med specific:
 
-SET(SALOME_MED_INSTALL_RES_DATA "${SALOME_INSTALL_RES}/med" CACHE PATH "Install path: SALOME MED specific data")
-SET(SALOME_MED_INSTALL_RES_SCRIPTS "${SALOME_INSTALL_RES}/med" CACHE PATH "Install path: SALOME MED specific scripts")
-SET(SALOME_MED_INSTALL_TEST ${SALOME_INSTALL_BINS}/test)
+SET(SALOME_FIELDS_INSTALL_RES_DATA "${SALOME_INSTALL_RES}/fields" CACHE PATH "Install path: SALOME MED specific data")
+SET(SALOME_FIELDS_INSTALL_RES_SCRIPTS "${SALOME_INSTALL_RES}/fields" CACHE PATH "Install path: SALOME MED specific scripts")
+SET(SALOME_FIELDS_INSTALL_TEST ${SALOME_INSTALL_BINS}/test)
 
 MARK_AS_ADVANCED(SALOME_INSTALL_BINS SALOME_INSTALL_LIBS SALOME_INSTALL_IDLS SALOME_INSTALL_HEADERS)
 MARK_AS_ADVANCED(SALOME_INSTALL_SCRIPT_SCRIPTS SALOME_INSTALL_SCRIPT_DATA SALOME_INSTALL_SCRIPT_PYTHON)
 MARK_AS_ADVANCED(SALOME_INSTALL_APPLISKEL_SCRIPTS  SALOME_INSTALL_APPLISKEL_PYTHON SALOME_INSTALL_CMAKE SALOME_INSTALL_CMAKE_LOCAL SALOME_INSTALL_RES)
-MARK_AS_ADVANCED(SALOME_INSTALL_PYTHON SALOME_INSTALL_PYTHON_SHARED SALOME_MED_INSTALL_RES_DATA SALOME_MED_INSTALL_RES_SCRIPTS SALOME_INSTALL_DOC)
+MARK_AS_ADVANCED(SALOME_INSTALL_PYTHON SALOME_INSTALL_PYTHON_SHARED SALOME_FIELDS_INSTALL_RES_DATA SALOME_FIELDS_INSTALL_RES_SCRIPTS SALOME_INSTALL_DOC)
 
 # Header configuration
 # ====================
 SALOME_XVERSION(${PROJECT_NAME})
-SALOME_CONFIGURE_FILE(MED_version.h.in MED_version.h INSTALL ${SALOME_INSTALL_HEADERS})
+SALOME_CONFIGURE_FILE(FIELDS_version.h.in FIELDS_version.h INSTALL ${SALOME_INSTALL_HEADERS})
 SALOME_CONFIGURE_FILE(VERSION.in VERSION INSTALL ${SALOME_INSTALL_BINS})
 
 # Accumulate environment variables for MED module
@@ -233,7 +233,7 @@ ADD_SUBDIRECTORY(resources)
 
 # Application tests
 # =================
-INSTALL(FILES CTestTestfileInstall.cmake DESTINATION ${SALOME_MED_INSTALL_TEST} RENAME CTestTestfile.cmake)
+INSTALL(FILES CTestTestfileInstall.cmake DESTINATION ${SALOME_FIELDS_INSTALL_TEST} RENAME CTestTestfile.cmake)
 
 # Configuration export
 # ====================
@@ -248,8 +248,8 @@ IF(SALOME_USE_MPI)
 ENDIF()
 
 LIST(APPEND _${PROJECT_NAME}_exposed_targets
-    medcouplingcorba medcouplingclient medcalculator MEDEngineCommon MEDFactoryEngine MEDEngine)
-IF(SALOME_MED_ENABLE_PYTHON)
+    medcouplingcorba medcouplingclient medcalculator MEDEngineCommon MEDFactoryEngine FIELDSEngine)
+IF(SALOME_FIELDS_ENABLE_PYTHON)
   LIST(APPEND _${PROJECT_NAME}_exposed_targets medcalculatorspython)
 ENDIF()
 
diff --git a/FIELDS_version.h.in b/FIELDS_version.h.in
new file mode 100644 (file)
index 0000000..06f8046
--- /dev/null
@@ -0,0 +1,48 @@
+// Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+//  File   : MED_version.h
+//  Author : Vadim SANDLER
+//  Module : SALOME
+//
+#if !defined(__FIELDS_VERSION_H__)
+#define __FIELDS_VERSION_H__
+
+/*!
+  Specify version of SALOME FIELDS module, as follows
+
+  SALOMEFIELDS_VERSION_MAJOR       : (integer) number identifying major version
+  SALOMEFIELDS_VERSION_MINOR       : (integer) number identifying minor version
+  SALOMEFIELDS_VERSION_MAINTENANCE : (integer) number identifying maintenance version
+  SALOMEFIELDS_VERSION_STR         : (string)  complete version number "major.minor.maintenance"
+  SALOMEFIELDS_VERSION             : (hex)     complete version number (major << 16) + (minor << 8) + maintenance
+  SALOMEFIELDS_DEVELOPMENT         : (integer) indicates development version when set to 1
+*/
+
+#define SALOMEFIELDS_VERSION_MAJOR       @SALOMEFIELDS_MAJOR_VERSION@
+#define SALOMEFIELDS_VERSION_MINOR       @SALOMEFIELDS_MINOR_VERSION@
+#define SALOMEFIELDS_VERSION_MAINTENANCE @SALOMEFIELDS_PATCH_VERSION@
+#define SALOMEFIELDS_VERSION_STR         "@SALOMEFIELDS_VERSION@"
+#define SALOMEFIELDS_VERSION             @SALOMEFIELDS_XVERSION@
+#define SALOMEFIELDS_DEVELOPMENT         @SALOMEFIELDS_VERSION_DEV@
+
+#endif // __FIELDS_VERSION_H__
diff --git a/MED_version.h.in b/MED_version.h.in
deleted file mode 100644 (file)
index 1a0d10e..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
-//
-// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
-//
-// This library is free software; you can redistribute it and/or
-// modify it under the terms of the GNU Lesser General Public
-// License as published by the Free Software Foundation; either
-// version 2.1 of the License, or (at your option) any later version.
-//
-// This library is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-// Lesser General Public License for more details.
-//
-// You should have received a copy of the GNU Lesser General Public
-// License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
-//
-// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
-//
-
-//  File   : MED_version.h
-//  Author : Vadim SANDLER
-//  Module : SALOME
-//
-#if !defined(__MED_VERSION_H__)
-#define __MED_VERSION_H__
-
-/*!
-  Specify version of SALOME MED module, as follows
-
-  SALOMEMED_VERSION_MAJOR       : (integer) number identifying major version
-  SALOMEMED_VERSION_MINOR       : (integer) number identifying minor version
-  SALOMEMED_VERSION_MAINTENANCE : (integer) number identifying maintenance version
-  SALOMEMED_VERSION_STR         : (string)  complete version number "major.minor.maintenance"
-  SALOMEMED_VERSION             : (hex)     complete version number (major << 16) + (minor << 8) + maintenance
-  SALOMEMED_DEVELOPMENT         : (integer) indicates development version when set to 1
-*/
-
-#define SALOMEMED_VERSION_MAJOR       @SALOMEMED_MAJOR_VERSION@
-#define SALOMEMED_VERSION_MINOR       @SALOMEMED_MINOR_VERSION@
-#define SALOMEMED_VERSION_MAINTENANCE @SALOMEMED_PATCH_VERSION@
-#define SALOMEMED_VERSION_STR         "@SALOMEMED_VERSION@"
-#define SALOMEMED_VERSION             @SALOMEMED_XVERSION@
-#define SALOMEMED_DEVELOPMENT         @SALOMEMED_VERSION_DEV@
-
-#endif // __MED_VERSION_H__
diff --git a/SalomeFIELDSConfig.cmake.in b/SalomeFIELDSConfig.cmake.in
new file mode 100644 (file)
index 0000000..3fd0f60
--- /dev/null
@@ -0,0 +1,140 @@
+# - Config file for the @PROJECT_NAME@ package
+# It defines the following variables.
+# Specific to the package @PROJECT_NAME@ itself:
+#  @PROJECT_NAME_UC@_ROOT_DIR_EXP - the root path of the installation providing this CMake file
+#
+
+###############################################################
+# Copyright (C) 2013-2016  CEA/DEN, EDF R&D, OPEN CASCADE
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+
+### Initialisation performed by CONFIGURE_PACKAGE_CONFIG_FILE:
+@PACKAGE_INIT@
+
+# Load the dependencies for the libraries of @PROJECT_NAME@
+# (contains definitions for IMPORTED targets). This is only
+# imported if we are not built as a subproject (in this case targets are already there)
+IF(NOT TARGET MEDFactoryEngine AND NOT @PROJECT_NAME@_BINARY_DIR)
+  INCLUDE("@PACKAGE_SALOME_INSTALL_CMAKE_LOCAL@/@PROJECT_NAME@Targets.cmake")
+ENDIF()
+
+# Package root dir:
+SET_AND_CHECK(FIELDS_ROOT_DIR_EXP "@PACKAGE_CMAKE_INSTALL_PREFIX@")
+
+# Include directories and definitions
+SET_AND_CHECK(FIELDS_INCLUDE_DIRS "${FIELDS_ROOT_DIR_EXP}/@SALOME_INSTALL_HEADERS@")
+SET(FIELDS_INCLUDE_DIRS "${FIELDS_INCLUDE_DIRS};@_SalomeFIELDS_EXTRA_HEADERS@")
+SET(FIELDS_DEFINITIONS)
+
+# Package specific environment variables
+@_SalomeFIELDS_EXTRA_ENV_FULL@
+
+#### Now the specificities
+
+# Options exported by the package:
+SET(SALOME_FIELDS_ENABLE_PYTHON  @SALOME_FIELDS_ENABLE_PYTHON@)
+SET(SALOME_USE_MPI            @SALOME_USE_MPI@)
+SET(SALOME_FIELDS_BUILD_DOC      @SALOME_BUILD_DOC@)
+SET(SALOME_FIELDS_BUILD_TESTS    @SALOME_BUILD_TESTS@)
+SET(SALOME_FIELDS_BUILD_GUI      @SALOME_BUILD_GUI@)
+
+# Advanced options
+
+# Level 1 prerequisites:
+
+# Optional level 1 prerequisites:
+SET_AND_CHECK(KERNEL_ROOT_DIR_EXP "@PACKAGE_KERNEL_ROOT_DIR@")
+LIST(APPEND FIELDS_DEFINITIONS "@KERNEL_DEFINITIONS@")
+IF(SALOME_FIELDS_BUILD_GUI)
+  SET_AND_CHECK(GUI_ROOT_DIR_EXP "@PACKAGE_GUI_ROOT_DIR@")
+  LIST(APPEND FIELDS_DEFINITIONS "@GUI_DEFINITIONS@")
+ENDIF(SALOME_FIELDS_BUILD_GUI)
+
+# For all prerequisites, load the corresponding targets if the package was used
+# in CONFIG mode. This ensures dependent projects link correctly
+# without having to set LD_LIBRARY_PATH:
+SET(_PREREQ_@PROJECT_NAME@ @_PREREQ_LIST@)
+SET(_PREREQ_@PROJECT_NAME@_CONFIG_DIR @_PREREQ_DIR_LIST@)
+SET(_PREREQ_@PROJECT_NAME@_COMPONENTS "@_PREREQ_COMPO_LIST@")
+LIST(LENGTH _PREREQ_@PROJECT_NAME@_CONFIG_DIR _list_len_@PROJECT_NAME@)
+IF(NOT _list_len_@PROJECT_NAME@ EQUAL 0)
+  # Another CMake stupidity - FOREACH(... RANGE r) generates r+1 numbers ...
+  MATH(EXPR _range_@PROJECT_NAME@ "${_list_len_@PROJECT_NAME@}-1")
+  FOREACH(_p_@PROJECT_NAME@ RANGE ${_range_@PROJECT_NAME@})
+    LIST(GET _PREREQ_@PROJECT_NAME@            ${_p_@PROJECT_NAME@} _pkg_@PROJECT_NAME@    )
+    LIST(GET _PREREQ_@PROJECT_NAME@_CONFIG_DIR ${_p_@PROJECT_NAME@} _pkg_dir_@PROJECT_NAME@)
+    LIST(GET _PREREQ_@PROJECT_NAME@_COMPONENTS ${_p_@PROJECT_NAME@} _pkg_compo_@PROJECT_NAME@)
+    IF(NOT OMIT_DETECT_PACKAGE_${_pkg_@PROJECT_NAME@})
+      MESSAGE(STATUS "===> Reloading targets from ${_pkg_@PROJECT_NAME@} ...")
+      IF(NOT _pkg_compo_@PROJECT_NAME@)
+        FIND_PACKAGE(${_pkg_@PROJECT_NAME@} REQUIRED NO_MODULE
+            PATHS "${_pkg_dir_@PROJECT_NAME@}"
+            NO_DEFAULT_PATH)
+      ELSE()
+        STRING(REPLACE "," ";" _compo_lst_@PROJECT_NAME@ "${_pkg_compo_@PROJECT_NAME@}")
+        MESSAGE(STATUS "===> (components: ${_pkg_compo_@PROJECT_NAME@})")
+        FIND_PACKAGE(${_pkg_@PROJECT_NAME@} REQUIRED NO_MODULE
+            COMPONENTS ${_compo_lst_@PROJECT_NAME@}
+            PATHS "${_pkg_dir_@PROJECT_NAME@}"
+            NO_DEFAULT_PATH)
+      ENDIF()
+    ENDIF()
+  ENDFOREACH()
+ENDIF()
+
+# Installation directories
+SET(SALOME_INSTALL_BINS "@SALOME_INSTALL_BINS@")
+SET(SALOME_INSTALL_LIBS "@SALOME_INSTALL_LIBS@")
+SET(SALOME_INSTALL_IDLS "@SALOME_INSTALL_IDLS@")
+SET(SALOME_INSTALL_HEADERS "@SALOME_INSTALL_HEADERS@")
+SET(SALOME_INSTALL_SCRIPT_SCRIPTS "@SALOME_INSTALL_SCRIPT_SCRIPTS@")
+SET(SALOME_INSTALL_SCRIPT_DATA "@SALOME_INSTALL_SCRIPT_DATA@")
+SET(SALOME_INSTALL_SCRIPT_PYTHON "@SALOME_INSTALL_SCRIPT_PYTHON@")
+SET(SALOME_INSTALL_APPLISKEL_SCRIPTS "@SALOME_INSTALL_APPLISKEL_SCRIPTS@")
+SET(SALOME_INSTALL_APPLISKEL_PYTHON "@SALOME_INSTALL_APPLISKEL_PYTHON@")
+SET(SALOME_INSTALL_CMAKE "@SALOME_INSTALL_CMAKE@")
+SET(SALOME_INSTALL_CMAKE_LOCAL "@SALOME_INSTALL_CMAKE_LOCAL@")
+SET(SALOME_INSTALL_PYTHON "@SALOME_INSTALL_PYTHON@")
+SET(SALOME_INSTALL_PYTHON_SHARED "@SALOME_INSTALL_PYTHON_SHARED@")
+SET(SALOME_INSTALL_RES "@SALOME_INSTALL_RES@")
+
+IF(SALOME_FIELDS_BUILD_GUI)
+  # Include GUI targets if they were not already loaded:
+  INCLUDE("${GUI_ROOT_DIR_EXP}/${SALOME_INSTALL_CMAKE_LOCAL}/SalomeGUITargets.cmake")
+ELSE(SALOME_FIELDS_BUILD_GUI)
+  # Include KERNEL targets if they were not already loaded:
+  IF(NOT (TARGET SALOMEBasics))
+    INCLUDE("${KERNEL_ROOT_DIR_EXP}/${SALOME_INSTALL_CMAKE}/SalomeKERNELTargets.cmake")
+  ENDIF()
+ENDIF(SALOME_FIELDS_BUILD_GUI)
+
+# Exposed FIELDS targets:
+SET(FIELDS_paramedcouplingcorba paramedcouplingcorba)
+SET(FIELDS_paramedmemcompo paramedmemcompo)
+SET(FIELDS_SalomeIDLMED SalomeIDLMED)
+SET(FIELDS_SalomeIDLMEDTests SalomeIDLMEDTests)
+SET(FIELDS_medcouplingcorba medcouplingcorba)
+SET(FIELDS_medcouplingclient medcouplingclient)
+SET(FIELDS_medcalculator medcalculator)
+SET(FIELDS_medcalculatorspython medcalculatorspython)
+SET(FIELDS_MEDEngineCommon MEDEngineCommon)
+SET(FIELDS_MEDFactoryEngine MEDFactoryEngine)
+SET(FIELDS_FIELDSEngine FIELDSEngine)
+SET(FIELDS_MEDCALCGUI_dialogs MEDCALCGUI_dialogs)
+SET(FIELDS_MEDCALCGUI MEDCALCGUI)
diff --git a/SalomeMEDConfig.cmake.in b/SalomeMEDConfig.cmake.in
deleted file mode 100644 (file)
index 400c014..0000000
+++ /dev/null
@@ -1,140 +0,0 @@
-# - Config file for the @PROJECT_NAME@ package
-# It defines the following variables.
-# Specific to the package @PROJECT_NAME@ itself:
-#  @PROJECT_NAME_UC@_ROOT_DIR_EXP - the root path of the installation providing this CMake file
-#
-
-###############################################################
-# Copyright (C) 2013-2016  CEA/DEN, EDF R&D, OPEN CASCADE
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
-#
-# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
-#
-
-### Initialisation performed by CONFIGURE_PACKAGE_CONFIG_FILE:
-@PACKAGE_INIT@
-
-# Load the dependencies for the libraries of @PROJECT_NAME@
-# (contains definitions for IMPORTED targets). This is only
-# imported if we are not built as a subproject (in this case targets are already there)
-IF(NOT TARGET MEDFactoryEngine AND NOT @PROJECT_NAME@_BINARY_DIR)
-  INCLUDE("@PACKAGE_SALOME_INSTALL_CMAKE_LOCAL@/@PROJECT_NAME@Targets.cmake")
-ENDIF()
-
-# Package root dir:
-SET_AND_CHECK(MED_ROOT_DIR_EXP "@PACKAGE_CMAKE_INSTALL_PREFIX@")
-
-# Include directories and definitions
-SET_AND_CHECK(MED_INCLUDE_DIRS "${MED_ROOT_DIR_EXP}/@SALOME_INSTALL_HEADERS@")
-SET(MED_INCLUDE_DIRS "${MED_INCLUDE_DIRS};@_SalomeMED_EXTRA_HEADERS@")
-SET(MED_DEFINITIONS)
-
-# Package specific environment variables
-@_SalomeMED_EXTRA_ENV_FULL@
-
-#### Now the specificities
-
-# Options exported by the package:
-SET(SALOME_MED_ENABLE_PYTHON  @SALOME_MED_ENABLE_PYTHON@)
-SET(SALOME_USE_MPI            @SALOME_USE_MPI@)
-SET(SALOME_MED_BUILD_DOC      @SALOME_BUILD_DOC@)
-SET(SALOME_MED_BUILD_TESTS    @SALOME_BUILD_TESTS@)
-SET(SALOME_MED_BUILD_GUI      @SALOME_BUILD_GUI@)
-
-# Advanced options
-
-# Level 1 prerequisites:
-
-# Optional level 1 prerequisites:
-SET_AND_CHECK(KERNEL_ROOT_DIR_EXP "@PACKAGE_KERNEL_ROOT_DIR@")
-LIST(APPEND MED_DEFINITIONS "@KERNEL_DEFINITIONS@")
-IF(SALOME_MED_BUILD_GUI)
-  SET_AND_CHECK(GUI_ROOT_DIR_EXP "@PACKAGE_GUI_ROOT_DIR@")
-  LIST(APPEND MED_DEFINITIONS "@GUI_DEFINITIONS@")
-ENDIF(SALOME_MED_BUILD_GUI)
-
-# For all prerequisites, load the corresponding targets if the package was used
-# in CONFIG mode. This ensures dependent projects link correctly
-# without having to set LD_LIBRARY_PATH:
-SET(_PREREQ_@PROJECT_NAME@ @_PREREQ_LIST@)
-SET(_PREREQ_@PROJECT_NAME@_CONFIG_DIR @_PREREQ_DIR_LIST@)
-SET(_PREREQ_@PROJECT_NAME@_COMPONENTS "@_PREREQ_COMPO_LIST@")
-LIST(LENGTH _PREREQ_@PROJECT_NAME@_CONFIG_DIR _list_len_@PROJECT_NAME@)
-IF(NOT _list_len_@PROJECT_NAME@ EQUAL 0)
-  # Another CMake stupidity - FOREACH(... RANGE r) generates r+1 numbers ...
-  MATH(EXPR _range_@PROJECT_NAME@ "${_list_len_@PROJECT_NAME@}-1")
-  FOREACH(_p_@PROJECT_NAME@ RANGE ${_range_@PROJECT_NAME@})
-    LIST(GET _PREREQ_@PROJECT_NAME@            ${_p_@PROJECT_NAME@} _pkg_@PROJECT_NAME@    )
-    LIST(GET _PREREQ_@PROJECT_NAME@_CONFIG_DIR ${_p_@PROJECT_NAME@} _pkg_dir_@PROJECT_NAME@)
-    LIST(GET _PREREQ_@PROJECT_NAME@_COMPONENTS ${_p_@PROJECT_NAME@} _pkg_compo_@PROJECT_NAME@)
-    IF(NOT OMIT_DETECT_PACKAGE_${_pkg_@PROJECT_NAME@})
-      MESSAGE(STATUS "===> Reloading targets from ${_pkg_@PROJECT_NAME@} ...")
-      IF(NOT _pkg_compo_@PROJECT_NAME@)
-        FIND_PACKAGE(${_pkg_@PROJECT_NAME@} REQUIRED NO_MODULE
-            PATHS "${_pkg_dir_@PROJECT_NAME@}"
-            NO_DEFAULT_PATH)
-      ELSE()
-        STRING(REPLACE "," ";" _compo_lst_@PROJECT_NAME@ "${_pkg_compo_@PROJECT_NAME@}")
-        MESSAGE(STATUS "===> (components: ${_pkg_compo_@PROJECT_NAME@})")
-        FIND_PACKAGE(${_pkg_@PROJECT_NAME@} REQUIRED NO_MODULE
-            COMPONENTS ${_compo_lst_@PROJECT_NAME@}
-            PATHS "${_pkg_dir_@PROJECT_NAME@}"
-            NO_DEFAULT_PATH)
-      ENDIF()
-    ENDIF()
-  ENDFOREACH()
-ENDIF()
-
-# Installation directories
-SET(SALOME_INSTALL_BINS "@SALOME_INSTALL_BINS@")
-SET(SALOME_INSTALL_LIBS "@SALOME_INSTALL_LIBS@")
-SET(SALOME_INSTALL_IDLS "@SALOME_INSTALL_IDLS@")
-SET(SALOME_INSTALL_HEADERS "@SALOME_INSTALL_HEADERS@")
-SET(SALOME_INSTALL_SCRIPT_SCRIPTS "@SALOME_INSTALL_SCRIPT_SCRIPTS@")
-SET(SALOME_INSTALL_SCRIPT_DATA "@SALOME_INSTALL_SCRIPT_DATA@")
-SET(SALOME_INSTALL_SCRIPT_PYTHON "@SALOME_INSTALL_SCRIPT_PYTHON@")
-SET(SALOME_INSTALL_APPLISKEL_SCRIPTS "@SALOME_INSTALL_APPLISKEL_SCRIPTS@")
-SET(SALOME_INSTALL_APPLISKEL_PYTHON "@SALOME_INSTALL_APPLISKEL_PYTHON@")
-SET(SALOME_INSTALL_CMAKE "@SALOME_INSTALL_CMAKE@")
-SET(SALOME_INSTALL_CMAKE_LOCAL "@SALOME_INSTALL_CMAKE_LOCAL@")
-SET(SALOME_INSTALL_PYTHON "@SALOME_INSTALL_PYTHON@")
-SET(SALOME_INSTALL_PYTHON_SHARED "@SALOME_INSTALL_PYTHON_SHARED@")
-SET(SALOME_INSTALL_RES "@SALOME_INSTALL_RES@")
-
-IF(SALOME_MED_BUILD_GUI)
-  # Include GUI targets if they were not already loaded:
-  INCLUDE("${GUI_ROOT_DIR_EXP}/${SALOME_INSTALL_CMAKE_LOCAL}/SalomeGUITargets.cmake")
-ELSE(SALOME_MED_BUILD_GUI)
-  # Include KERNEL targets if they were not already loaded:
-  IF(NOT (TARGET SALOMEBasics))
-    INCLUDE("${KERNEL_ROOT_DIR_EXP}/${SALOME_INSTALL_CMAKE}/SalomeKERNELTargets.cmake")
-  ENDIF()
-ENDIF(SALOME_MED_BUILD_GUI)
-
-# Exposed MED targets:
-SET(MED_paramedcouplingcorba paramedcouplingcorba)
-SET(MED_paramedmemcompo paramedmemcompo)
-SET(MED_SalomeIDLMED SalomeIDLMED)
-SET(MED_SalomeIDLMEDTests SalomeIDLMEDTests)
-SET(MED_medcouplingcorba medcouplingcorba)
-SET(MED_medcouplingclient medcouplingclient)
-SET(MED_medcalculator medcalculator)
-SET(MED_medcalculatorspython medcalculatorspython)
-SET(MED_MEDEngineCommon MEDEngineCommon)
-SET(MED_MEDFactoryEngine MEDFactoryEngine)
-SET(MED_MEDEngine MEDEngine)
-SET(MED_MEDCALCGUI_dialogs MEDCALCGUI_dialogs)
-SET(MED_MEDCALCGUI MEDCALCGUI)
index 2d9a4e3fabf4972bfda6546c5db668db7792181e..5a844624771d47a8025f043d10542666407237a1 100755 (executable)
@@ -1,3 +1,3 @@
-[SALOME MED]  : @SALOMEMED_VERSION@
-[DEVELOPMENT] : @SALOMEMED_VERSION_DEV@
-[DESCRIPTION] : SALOME Med module
+[SALOME FIELDS] : @SALOMEFIELDS_VERSION@
+[DEVELOPMENT]   : @SALOMEFIELDS_VERSION_DEV@
+[DESCRIPTION]   : SALOME FIELDS module
index 6dded64fdde320c5d1c82c93b6b1ec273af404b0..65c418da7fc56bbb70649cc993013a1862622f78 100644 (file)
@@ -25,7 +25,7 @@ SALOME_GENERATE_ENVIRONMENT_SCRIPT(_cmd env_script "${SPHINX_EXECUTABLE}" "${_cm
 ADD_CUSTOM_TARGET(dev_docs ALL COMMAND ${_cmd})
 
 #INSTALL(CODE "EXECUTE_PROCESS(COMMAND \"${CMAKE_COMMAND}\" --build ${PROJECT_BINARY_DIR} --target dev_docs)")
-INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/ DESTINATION ${SALOME_INSTALL_DOC}/dev/MED)
+INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/ DESTINATION ${SALOME_INSTALL_DOC}/dev/FIELDS)
 
 SET(make_clean_files html doctrees)
 SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${make_clean_files}")
index acbf1ff2d3f314043d51f2c3eabd6ce64f2ae3a0..ae9b6d7e0b8b05dc16bc57e98b9d2f442136f0a0 100644 (file)
@@ -47,7 +47,7 @@ source_encoding = 'utf-8'
 master_doc = 'index'
 
 # General information about the project.
-project = 'MED, Manipulation de champs dans SALOME'
+project = 'FIELDS, Manipulation de champs dans SALOME'
 copyright = '2010-2017 CEA/DEN, EDF R&D, OPEN CASCADE, G. Boulant, A. Geay'
 
 # The version info for the project you're documenting, acts as replacement for
@@ -55,9 +55,9 @@ copyright = '2010-2017 CEA/DEN, EDF R&D, OPEN CASCADE, G. Boulant, A. Geay'
 # built documents.
 #
 # The short X.Y version.
-version = '@SALOMEMED_VERSION@'
+version = '@SALOMEFIELDS_VERSION@'
 # The full version, including alpha/beta/rc tags.
-release = '@SALOMEMED_VERSION@'
+release = '@SALOMEFIELDS_VERSION@'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
@@ -194,10 +194,10 @@ latex_elements = {
 # Grouping the document tree into LaTeX files. List of tuples
 # (source start file, target name, title, author, document class [howto/manual]).
 latex_documents = [
-  ('index', 'medcalc-alldoc.tex', 'Documentation du module MED', 'G. Boulant', 'manual'),
-  ('medcalc-specifications', 'medcalc-specifications.tex', 'Module MED - Specifications', 'G. Boulant', 'manual'),
-  ('medcalc-develguide', 'medcalc-develguide.tex', 'Module MED - Guide de developpement', 'G. Boulant', 'manual'),
-  ('medcalc-userguide-gui', 'medcalc-userguide-gui.tex', 'Module MED - Guide d\'utilisation de l\'interface graphique', 'G. Boulant', 'howto'),
+  ('index', 'medcalc-alldoc.tex', 'Documentation du module FIELDS', 'G. Boulant', 'manual'),
+  ('medcalc-specifications', 'medcalc-specifications.tex', 'Module FIELDS - Specifications', 'G. Boulant', 'manual'),
+  ('medcalc-develguide', 'medcalc-develguide.tex', 'Module FIELDS - Guide de developpement', 'G. Boulant', 'manual'),
+  ('medcalc-userguide-gui', 'medcalc-userguide-gui.tex', 'Module FIELDS - Guide d\'utilisation de l\'interface graphique', 'G. Boulant', 'howto'),
   ('medcalc-userguide-api', 'medcalc-userguide-api.tex', 'MEDMEM library - Starter guide for users', 'G. Boulant', 'howto')
 ]
 
index 8d2939d2e49eee7b325f7c515abf93defaaf7e13..4f4ef14f12758c34e4cc264a7b34d7535a399c52 100644 (file)
@@ -1,9 +1,9 @@
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%
- Documentation du module MED
+ Documentation du module FIELDS
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
-Le module SALOME MED (pour Modèle d'Echange de Données) fournit la
+Le module SALOME FIELDS (pour Modèle d'Echange de Données) fournit la
 bibliothèque MEDCoupling (bibliothèque C++ dédiée à la manipulation de
 maillages et de champs conformes au modèle MED), ainsi qu'une
 interface graphique pour la réalisation des opérations de manipulation
index 42289dc84d5bbf7e6e40684312c630808b796d95..dc1019cd6135fc22d56c0db31382db6b7656a0ae 100644 (file)
@@ -5,14 +5,14 @@
 .. include:: medcalc-definitions.rst
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Module MED: Guide de développement du composant MEDCalc
+Module FIELDS: Guide de développement du composant MEDCalc
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
-Le composant logiciel MEDCalc est un élément du module MED. Il fournit
+Le composant logiciel MEDCalc est un élément du module FIELDS. Il fournit
 une interface utilisateur pour la manipulation de maillages et de
 champs, composée d'une interface texte (TUI) et d'une interface
 graphique (GUI). L'interface graphique constitue l'interface graphique
-du module MED.
+du module FIELDS.
 
 Ce document est la documentation technique du composant MEDCalc. Il
 fournit les instructions à suivre pour installer le composant en vue
@@ -28,10 +28,10 @@ Mise en place de l'espace de développement
 Gestion de configuration du composant MEDCalc
 ---------------------------------------------
 
-Le composant logiciel MEDCalc est un package du module SALOME MED,
+Le composant logiciel MEDCalc est un package du module SALOME FIELDS,
 hébergé dans l'espace source au niveau du sous-répertoire
 `src/MEDCalc`. La gestion des fichiers sources est donc intégrée dans le
-module SALOME MED.
+module SALOME FIELDS.
 
 Organisation des sources du composant MEDCalc
 ---------------------------------------------
@@ -42,7 +42,7 @@ suivants:
 * cmp: package containing the SALOME components
 * tui: package containing the python user interface
 * gui: package containing the graphical user interface (the GUI part
-  of the MED module)
+  of the FIELDS module)
 * res: resources files associated to the MEDCalc package (icons, config
   files, data files, ...)
 * exe: additional executable programs that can be launched from the
@@ -51,7 +51,7 @@ suivants:
 Construction du composant MEDCalc
 ---------------------------------
 
-Intégré à la construction du module MED. Le composant MEDCalc dépend de
+Intégré à la construction du module FIELDS. Le composant MEDCalc dépend de
 MEDCoupling et MEDLoader uniquement.
 
 Exécution des tests unitaires du composant MEDCalc
@@ -61,7 +61,7 @@ Les tests unitaires peuvent être exécutés au moyen de scripts python
 lancés depuis une session shell SALOME. Dans un nouveau shell, taper::
 
  $ ./appli/runSession
- [NS=mars:2810]$ python appli/bin/salome/med/test_medcalc_components.py
+ [NS=mars:2810]$ python appli/bin/salome/fields/test_medcalc_components.py
 
 L'exécution imprime un rapport détaillant le résultat pour chaque
 fonction de test::
@@ -80,21 +80,21 @@ fonction de test::
  test_saveFields (__main__.MyTestSuite) ... ok
  test_updateFieldMetadata (__main__.MyTestSuite) ... ok
 
-Les scripts de test sont installés dans le répertoire ``bin/med``. On trouve:
+Les scripts de test sont installés dans le répertoire ``bin/fields``. On trouve:
 
 * ``test_medcalc_components.py``: test les composants SALOME développés pour
   la manipulation de champs (``MEDDataManager`` et ``MEDCalculator``).
 * ``test_xmed_fieldOperations.py``: test des operations de champs telles
   qu'elles sont mises en oeuvre depuis l'interface textuelle.
 * ``test_xmed_uiEventListener.py``: test du système de notification
-  d'évènements des composants vers la partie gui du module MED.
+  d'évènements des composants vers la partie gui du module FIELDS.
 * ``test_xmed_visualisation.py``: test du système de visualisation
-  des champs tel que piloté depuis le module MED.
+  des champs tel que piloté depuis le module FIELDS.
 
 Architecture du module XMED
 ===========================
 
-Le module MED pour la manipulation de champs est composé de:
+Le module FIELDS pour la manipulation de champs est composé de:
 
 * une bibliothèque de fonctions pour le traitement de données sur des
   maillages et des champs conformes au modèle MED (package
@@ -212,7 +212,7 @@ ANNEXE B: Traçabilité avec le module XMED
 =========================================
 
 Le module SALOME de nom XMED est l'espace de développement initial du
-composant logiciel MEDCalc, intégré aujourd'hui au module MED. Cette
+composant logiciel MEDCalc, intégré aujourd'hui au module FIELDS. Cette
 annexe est la notice technique de ce module, qui reste disponible mais
 qui n'est plus maintenu.
 
index 2823a965f08ec08b88e02ad78bde60ac6cf45804..656fd9b17905f970824a9f4969d72beb8285a44a 100644 (file)
@@ -5,7 +5,7 @@
 .. include:: medcalc-definitions.rst
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Module MED: Spécifications fonctionnelles et techniques
+Module FIELDS: Spécifications fonctionnelles et techniques
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
 Ce texte présente les spécifications informatiques pour le
@@ -278,7 +278,7 @@ informatiques correspondant aux maillages sont différents (chargés de
 deux fichiers différents). En l'état, il est donc impossible par
 exemple de faire la comparaison de champs résultats d'une étude
 paramétriques. MEDCoupling fournit une solution qu'il faudra mettre en
-oeuvre de manière ergonomique au niveau du module MED. Il est possible
+oeuvre de manière ergonomique au niveau du module FIELDS. Il est possible
 de changer le maillage support M1 d'un champs par un maillage M2 à
 partir du moment où les maillages M1 et M2 sont identiques
 géométriquement à une erreur près qu'il est possible de spécifier.
@@ -756,7 +756,7 @@ Sur cette base, on peut envisager une grande variété de cas d'utilisation:
 Spécification des fonctions de visualisation
 ============================================
 
-Dans le cadre du module MED, on appelle *fonction de visualisation*
+Dans le cadre du module FIELDS, on appelle *fonction de visualisation*
 une fonction qui permet d'avoir un aperçu graphique d'un champ, par
 exemple au moyen d'une carte de champ construite sur une de ses
 composante. Il s'agit là de vue de contrôle pour avoir une idée rapide
@@ -765,9 +765,9 @@ préférera passer par les fonctions d'export vers le module PARAVIS.
 
 Les modules VISU et PARAVIS offre des interface de programmation C++
 et python qui permettent le pilotage depuis un module tiers comme le
-module MED. On peut donc envisager une fonction de visualisation
+module FIELDS. On peut donc envisager une fonction de visualisation
 intégrée au module de manipulation de champs, c'est-à-dire que l'on
-déclenche sans sortir du module MED, et qui exploite les fonctions de
+déclenche sans sortir du module FIELDS, et qui exploite les fonctions de
 visualisation des modules VISU et/ou PARAVIS.
 
 Les captures d'écran ci-dessous illustrent la mise en oeuvre de la
@@ -812,7 +812,7 @@ On adopte le principe de fonctionnement suivant:
   c’est-à-dire qu’il ne permet pas la sauvegarde du travail dans une
   étude au format hdf, ni le dump sous la forme de script python
   SALOME. Le besoin n'est pas avéré et on peut même dire que ça n'a
-  pas de sens compte-tenu de l'usage envisagé pour le module MED.
+  pas de sens compte-tenu de l'usage envisagé pour le module FIELDS.
 * Par contre, le module fournit des fonctions de sauvegarde du travail
   sous forme de fichiers med, l’export vers les modules VISU et
   PARAVIZ, ou même la sauvegarde de l’historique de l’interface de
@@ -831,7 +831,7 @@ Plusieurs export peuvent être proposés:
 
 * Export des champs vers le module PARAVIZ, dans l'objectif par
   exemple d'en faire une analyse visuelle plus poussée qu'avec les
-  cartes de champs disponibles par défaut dans le module MED
+  cartes de champs disponibles par défaut dans le module FIELDS
 * Export des données sous forme de tableau numpy, par exemple pour
   permettre un travail algorithmique sur les valeurs des champs.
 
@@ -839,12 +839,12 @@ Spécifications techniques
 =========================
 
 Il s'agit d'exprimer ici les contraintes techniques applicables à la
-conception et au développement du nouveau module MED.
+conception et au développement du nouveau module FIELDS.
 
 Implantation technique du module
 --------------------------------
 
-Il est convenu que le module MED existant dans la plate-forme SALOME
+Il est convenu que le module FIELDS existant dans la plate-forme SALOME
 incarne le module de manipulation de champ. Dans la pratique, il
 s'agit d'identifier clairement les parties à conserver, d'une part,
 puis les parties à re-écrire, d'autre part. On peut partir sur les
@@ -854,7 +854,7 @@ hypothèses techniques suivantes:
   champs proprement dites est construit sur la base des paquets
   logiciels MEDCoupling (lui-même basé sur le INTERP_KERNEL) et
   MEDLoader.
-* L'interface graphique du module MED est complétement re-écrite et
+* L'interface graphique du module FIELDS est complétement re-écrite et
   remplacée par une interface adaptée spécialement à la manipulation
   des champs et la gestion des données associées
 * Le contrôle visuel pourra être déclenché dans les visualisateurs
@@ -874,12 +874,12 @@ figure ci-dessous:
    :align: center
 
 Le schéma représente les packages logiciels qui composent le module
-MED (cf. |REF_CEA_VBE_MEDMEM|_):
+FIELDS (cf. |REF_CEA_VBE_MEDMEM|_):
 
 * La partie MEDMEM, représentées en blanc. Cette partie est conservée
   pour compatibilité ascendante au niveau des applications métier qui
   ont fait le choix historique de s'appuyer sur MEDMEM. Cette partie
-  du module MED aura tendance à disparaitre dans le futur au bénéfice
+  du module FIELDS aura tendance à disparaitre dans le futur au bénéfice
   de MEDCoupling et MEDLoader.
 * La partie MEDCoupling, représentée en orange et qui founrnit le
   modèle MED mémoire de référence (composé de maillage et de champs)
index 8aaa7b6144049adf6542af289ad4ff8f7441ed0d..45ddab2483c8f2e73cf213b93365e7b10b1aae27 100644 (file)
@@ -37,11 +37,11 @@ example to perform field projections from a mesh to another.
 Installation of the MEDMEM library
 ----------------------------------
 
-The MEDMEM library is part of the SALOME MED module and then is
+The MEDMEM library is part of the SALOME FIELDS module and then is
 installed together with this module by the installation process of
 SALOME. Nevertheless, it is possible for low-weight deployment to
 install only the MEDMEM library from the source files embedded in the
-SALOME MED module. Keep in mind that the MEDMEM library is designed to
+SALOME FIELDS module. Keep in mind that the MEDMEM library is designed to
 be a self-consistent library with very few third party softwares (only
 med-file, glibc and mpi typically). In particular, it is strictly
 independent from the SALOME framework even if it distributed with
@@ -117,7 +117,7 @@ Preparing the shell environment
 -------------------------------
 
 We make the hypothesis here that the MEDMEM library is installed using
-the SALOME procedure and then is located in the MED module
+the SALOME procedure and then is located in the FIELDS module
 installation directory. In addition to the MED library, the third
 party software required for executing the examples are: python, hdf5
 and med-fichier. Then, you should prepare your shell environment
@@ -142,11 +142,11 @@ with a set of instructions that looks like::
  export LD_LIBRARY_PATH=${MED2HOME}/lib:${LD_LIBRARY_PATH}
 
  #------ medmem ---
MED_ROOT_DIR=<path/to/salome_med_module>
- export LD_LIBRARY_PATH=${MED_ROOT_DIR}/lib/salome:${LD_LIBRARY_PATH}
- PYTHONPATH=${MED_ROOT_DIR}/lib/python2.6/site-packages/salome:${PYTHONPATH}
- PYTHONPATH=${MED_ROOT_DIR}/bin/salome:${PYTHONPATH}
- PYTHONPATH=${MED_ROOT_DIR}/lib/salome:${PYTHONPATH}
FIELDS_ROOT_DIR=<path/to/salome_fields_module>
+ export LD_LIBRARY_PATH=${FIELDS_ROOT_DIR}/lib/salome:${LD_LIBRARY_PATH}
+ PYTHONPATH=${FIELDS_ROOT_DIR}/lib/python2.6/site-packages/salome:${PYTHONPATH}
+ PYTHONPATH=${FIELDS_ROOT_DIR}/bin/salome:${PYTHONPATH}
+ PYTHONPATH=${FIELDS_ROOT_DIR}/lib/salome:${PYTHONPATH}
  export PYTHONPATH
 
 Example 01: Explore a med file to get information concerning meshes and fields
index dcf1cbed81e1905d1ab2509734e570a1daffe7e9..41d4db0a739bf7608ac5d8f06b1a3292d7b2a6c4 100644 (file)
@@ -5,11 +5,11 @@
 .. include:: medcalc-definitions.rst
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Module MED: Guide d'utilisation de l'interface graphique
+Module FIELDS: Guide d'utilisation de l'interface graphique
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
 Ce document est un guide rapide pour l'utilisation de l'interface
-graphique du module MED. Il montre comment utiliser le module sur la
+graphique du module FIELDS. Il montre comment utiliser le module sur la
 base de quelques exemples de référence, inspirés des cas d'utilisation
 identifiés lors de l'analyse des besoins en matière de manipulation de
 champs.
@@ -23,7 +23,7 @@ champs.
    :local:
    :backlinks: none
 
-Présentation générale du module MED
+Présentation générale du module FIELDS
 ===================================
 
 L'ergonomie générale d'utilisation du module de manipulation de champs
@@ -70,7 +70,7 @@ processus de la forme suivante:
 5. Enregistrement d'une partie des champs produits dans un fichier med
 
 
-Tour rapide des fonctions du module MED
+Tour rapide des fonctions du module FIELDS
 =======================================
 
 Cette section présente des exemples d'utilisation du module XMED sous
@@ -623,7 +623,7 @@ Exemple 8: Continuer l'analyse dans PARAVIS
    * Export de champs vers le module PARAVIS.
 
 Les possibilités de représentation graphique des champs fournies par
-le module MED ont pour seul objectif le contrôle visuel rapide. Par
+le module FIELDS ont pour seul objectif le contrôle visuel rapide. Par
 défaut, le viewer de VISU est employé.
 
 Pour une analyse plus détaillées des champs, il est nécessaire de
@@ -655,7 +655,7 @@ carte de champ:
 
 .. _xmed.userguide.tui-fr:
 
-Utilisation de l'interface textuelle du module MED (TUI)
+Utilisation de l'interface textuelle du module FIELDS (TUI)
 ========================================================
 
 Toutes les opérations menées au moyen de l'interface graphique peuvent
index 6560ec984c11b92e044292f93e27e7e4021cd7e8..275ad05f38c9f9547ad660180ed5866cd517f3a1 100644 (file)
@@ -1,9 +1,9 @@
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%
-Documentation of MED module
+Documentation of FIELDS module
 %%%%%%%%%%%%%%%%%%%%%%%%%%%
 
-The SALOME MED module provides MEDCoupling library (a C++ library dedicated of
+The SALOME FIELDS module provides MEDCoupling library (a C++ library dedicated of
 mesh and field manipulation consistent with MED model), as well as a Graphical
 User Interface to access some usual operations.
 
index 0d378d2f9ab01659a74d0a29656dcc9f95b37fd7..8433f52f1427be0433af78a07c2dadbaaf01d9be 100644 (file)
@@ -5,14 +5,14 @@
 .. include:: medcalc-definitions.rst
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Module MED: Guide de développement du composant MEDCalc
+Module FIELDS: Guide de développement du composant MEDCalc
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
-Le composant logiciel MEDCalc est un élément du module MED. Il fournit
+Le composant logiciel MEDCalc est un élément du module FIELDS. Il fournit
 une interface utilisateur pour la manipulation de maillages et de
 champs, composée d'une interface texte (TUI) et d'une interface
 graphique (GUI). L'interface graphique constitue l'interface graphique
-du module MED.
+du module FIELDS.
 
 Ce document est la documentation technique du composant MEDCalc. Il
 fournit les instructions à suivre pour installer le composant en vue
@@ -28,10 +28,10 @@ Mise en place de l'espace de développement
 Gestion de configuration du composant MEDCalc
 ---------------------------------------------
 
-Le composant logiciel MEDCalc est un package du module SALOME MED,
+Le composant logiciel MEDCalc est un package du module SALOME FIELDS,
 hébergé dans l'espace source au niveau du sous-répertoire
 `src/MEDCalc`. La gestion des fichiers sources est donc intégrée dans le
-module SALOME MED.
+module SALOME FIELDS.
 
 Organisation des sources du composant MEDCalc
 ---------------------------------------------
@@ -42,7 +42,7 @@ suivants:
 * cmp: package containing the SALOME components
 * tui: package containing the python user interface
 * gui: package containing the graphical user interface (the GUI part
-  of the MED module)
+  of the FIELDS module)
 * res: resources files associated to the MEDCalc package (icons, config
   files, data files, ...)
 * exe: additional executable programs that can be launched from the
@@ -51,7 +51,7 @@ suivants:
 Construction du composant MEDCalc
 ---------------------------------
 
-Intégré à la construction du module MED. Le composant MEDCalc dépend de
+Intégré à la construction du module FIELDS. Le composant MEDCalc dépend de
 MEDCoupling et MEDLoader uniquement.
 
 Exécution des tests unitaires du composant MEDCalc
@@ -61,7 +61,7 @@ Les tests unitaires peuvent être exécutés au moyen de scripts python
 lancés depuis une session shell SALOME. Dans un nouveau shell, taper::
 
  $ ./appli/runSession
- [NS=mars:2810]$ python appli/bin/salome/med/test_medcalc_components.py
+ [NS=mars:2810]$ python appli/bin/salome/fields/test_medcalc_components.py
 
 L'exécution imprime un rapport détaillant le résultat pour chaque
 fonction de test::
@@ -80,21 +80,21 @@ fonction de test::
  test_saveFields (__main__.MyTestSuite) ... ok
  test_updateFieldMetadata (__main__.MyTestSuite) ... ok
 
-Les scripts de test sont installés dans le répertoire ``bin/med``. On trouve:
+Les scripts de test sont installés dans le répertoire ``bin/fields``. On trouve:
 
 * ``test_medcalc_components.py``: test les composants SALOME développés pour
   la manipulation de champs (``MEDDataManager`` et ``MEDCalculator``).
 * ``test_xmed_fieldOperations.py``: test des operations de champs telles
   qu'elles sont mises en oeuvre depuis l'interface textuelle.
 * ``test_xmed_uiEventListener.py``: test du système de notification
-  d'évènements des composants vers la partie gui du module MED.
+  d'évènements des composants vers la partie gui du module FIELDS.
 * ``test_xmed_visualisation.py``: test du système de visualisation
-  des champs tel que piloté depuis le module MED.
+  des champs tel que piloté depuis le module FIELDS.
 
 Architecture du module XMED
 ===========================
 
-Le module MED pour la manipulation de champs est composé de:
+Le module FIELDS pour la manipulation de champs est composé de:
 
 * une bibliothèque de fonctions pour le traitement de données sur des
   maillages et des champs conformes au modèle MED (package
@@ -212,7 +212,7 @@ ANNEXE B: Traçabilité avec le module XMED
 =========================================
 
 Le module SALOME de nom XMED est l'espace de développement initial du
-composant logiciel MEDCalc, intégré aujourd'hui au module MED. Cette
+composant logiciel MEDCalc, intégré aujourd'hui au module FIELDS. Cette
 annexe est la notice technique de ce module, qui reste disponible mais
 qui n'est plus maintenu.
 
index ae152232ec01bc6e89bb115efa9258ed2935e22e..bd98f6ffb549a4ced2c53f24f4065cdda6d20260 100644 (file)
@@ -5,7 +5,7 @@
 .. include:: medcalc-definitions.rst
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Module MED: Spécifications fonctionnelles et techniques
+Module FIELDS: Spécifications fonctionnelles et techniques
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
 Ce texte présente les spécifications informatiques pour le
@@ -278,7 +278,7 @@ informatiques correspondant aux maillages sont différents (chargés de
 deux fichiers différents). En l'état, il est donc impossible par
 exemple de faire la comparaison de champs résultats d'une étude
 paramétriques. MEDCoupling fournit une solution qu'il faudra mettre en
-oeuvre de manière ergonomique au niveau du module MED. Il est possible
+oeuvre de manière ergonomique au niveau du module FIELDS. Il est possible
 de changer le maillage support M1 d'un champs par un maillage M2 à
 partir du moment où les maillages M1 et M2 sont identiques
 géométriquement à une erreur près qu'il est possible de spécifier.
@@ -756,7 +756,7 @@ Sur cette base, on peut envisager une grande variété de cas d'utilisation:
 Spécification des fonctions de visualisation
 ============================================
 
-Dans le cadre du module MED, on appelle *fonction de visualisation*
+Dans le cadre du module FIELDS, on appelle *fonction de visualisation*
 une fonction qui permet d'avoir un aperçu graphique d'un champ, par
 exemple au moyen d'une carte de champ construite sur une de ses
 composante. Il s'agit là de vue de contrôle pour avoir une idée rapide
@@ -765,9 +765,9 @@ préférera passer par les fonctions d'export vers le module PARAVIS.
 
 Les modules VISU et PARAVIS offre des interface de programmation C++
 et python qui permettent le pilotage depuis un module tiers comme le
-module MED. On peut donc envisager une fonction de visualisation
+module FIELDS. On peut donc envisager une fonction de visualisation
 intégrée au module de manipulation de champs, c'est-à-dire que l'on
-déclenche sans sortir du module MED, et qui exploite les fonctions de
+déclenche sans sortir du module FIELDS, et qui exploite les fonctions de
 visualisation des modules VISU et/ou PARAVIS.
 
 Les captures d'écran ci-dessous illustrent la mise en oeuvre de la
@@ -812,7 +812,7 @@ On adopte le principe de fonctionnement suivant:
   c’est-à-dire qu’il ne permet pas la sauvegarde du travail dans une
   étude au format hdf, ni le dump sous la forme de script python
   SALOME. Le besoin n'est pas avéré et on peut même dire que ça n'a
-  pas de sens compte-tenu de l'usage envisagé pour le module MED.
+  pas de sens compte-tenu de l'usage envisagé pour le module FIELDS.
 * Par contre, le module fournit des fonctions de sauvegarde du travail
   sous forme de fichiers med, l’export vers les modules VISU et
   PARAVIZ, ou même la sauvegarde de l’historique de l’interface de
@@ -831,7 +831,7 @@ Plusieurs export peuvent être proposés:
 
 * Export des champs vers le module PARAVIZ, dans l'objectif par
   exemple d'en faire une analyse visuelle plus poussée qu'avec les
-  cartes de champs disponibles par défaut dans le module MED
+  cartes de champs disponibles par défaut dans le module FIELDS
 * Export des données sous forme de tableau numpy, par exemple pour
   permettre un travail algorithmique sur les valeurs des champs.
 
@@ -839,12 +839,12 @@ Spécifications techniques
 =========================
 
 Il s'agit d'exprimer ici les contraintes techniques applicables à la
-conception et au développement du nouveau module MED.
+conception et au développement du nouveau module FIELDS.
 
 Implantation technique du module
 --------------------------------
 
-Il est convenu que le module MED existant dans la plate-forme SALOME
+Il est convenu que le module FIELDS existant dans la plate-forme SALOME
 incarne le module de manipulation de champ. Dans la pratique, il
 s'agit d'identifier clairement les parties à conserver, d'une part,
 puis les parties à re-écrire, d'autre part. On peut partir sur les
@@ -854,7 +854,7 @@ hypothèses techniques suivantes:
   champs proprement dites est construit sur la base des paquets
   logiciels MEDCoupling (lui-même basé sur le INTERP_KERNEL) et
   MEDLoader.
-* L'interface graphique du module MED est complétement re-écrite et
+* L'interface graphique du module FIELDS est complétement re-écrite et
   remplacée par une interface adaptée spécialement à la manipulation
   des champs et la gestion des données associées
 * Le contrôle visuel pourra être déclenché dans les visualisateurs
@@ -874,12 +874,12 @@ figure ci-dessous:
    :align: center
 
 Le schéma représente les packages logiciels qui composent le module
-MED (cf. |REF_CEA_VBE_MEDMEM|_):
+FIELDS (cf. |REF_CEA_VBE_MEDMEM|_):
 
 * La partie MEDMEM, représentées en blanc. Cette partie est conservée
   pour compatibilité ascendante au niveau des applications métier qui
   ont fait le choix historique de s'appuyer sur MEDMEM. Cette partie
-  du module MED aura tendance à disparaitre dans le futur au bénéfice
+  du module FIELDS aura tendance à disparaitre dans le futur au bénéfice
   de MEDCoupling et MEDLoader.
 * La partie MEDCoupling, représentée en orange et qui founrnit le
   modèle MED mémoire de référence (composé de maillage et de champs)
index 42c345ade637e1b34be7a4b8c1301464e5800b92..7a3e580b5da9080805d5453a7e79218dfd3bbe46 100644 (file)
@@ -37,11 +37,11 @@ example to perform field projections from a mesh to another.
 Installation of the MEDMEM library
 ----------------------------------
 
-The MEDMEM library is part of the SALOME MED module and then is
+The MEDMEM library is part of the SALOME FIELDS module and then is
 installed together with this module by the installation process of
 SALOME. Nevertheless, it is possible for low-weight deployment to
 install only the MEDMEM library from the source files embedded in the
-SALOME MED module. Keep in mind that the MEDMEM library is designed to
+SALOME FIELDS module. Keep in mind that the MEDMEM library is designed to
 be a self-consistent library with very few third party software (only
 med-file, glibc and mpi typically). In particular, it is strictly
 independent from the SALOME framework even if it distributed with
@@ -117,7 +117,7 @@ Preparing the shell environment
 -------------------------------
 
 We make the hypothesis here that the MEDMEM library is installed using
-the SALOME procedure and then is located in the MED module
+the SALOME procedure and then is located in the FIELDS module
 installation directory. In addition to the MED library, the third
 party software required for executing the examples are: python, hdf5
 and med-fichier. Then, you should prepare your shell environment
@@ -142,11 +142,11 @@ with a set of instructions that looks like::
  export LD_LIBRARY_PATH=${MED2HOME}/lib:${LD_LIBRARY_PATH}
 
  #------ medmem ---
MED_ROOT_DIR=<path/to/salome_med_module>
- export LD_LIBRARY_PATH=${MED_ROOT_DIR}/lib/salome:${LD_LIBRARY_PATH}
- PYTHONPATH=${MED_ROOT_DIR}/lib/python2.6/site-packages/salome:${PYTHONPATH}
- PYTHONPATH=${MED_ROOT_DIR}/bin/salome:${PYTHONPATH}
- PYTHONPATH=${MED_ROOT_DIR}/lib/salome:${PYTHONPATH}
FIELDS_ROOT_DIR=<path/to/salome_fields_module>
+ export LD_LIBRARY_PATH=${FIELDS_ROOT_DIR}/lib/salome:${LD_LIBRARY_PATH}
+ PYTHONPATH=${FIELDS_ROOT_DIR}/lib/python2.6/site-packages/salome:${PYTHONPATH}
+ PYTHONPATH=${FIELDS_ROOT_DIR}/bin/salome:${PYTHONPATH}
+ PYTHONPATH=${FIELDS_ROOT_DIR}/lib/salome:${PYTHONPATH}
  export PYTHONPATH
 
 Example 01: Explore a med file to get information concerning meshes and fields
index dc52d29efa25a6508d712184ca23b73f64ec67ea..700d24dc6d1eca2eed566d50a3b43a010dfbbb0a 100644 (file)
@@ -5,10 +5,10 @@
 .. include:: medcalc-definitions.rst
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-MED module: User guide for graphical interface
+FIELDS module: User guide for graphical interface
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
-This document is a quick guide for Graphical User Interface of MED module. It
+This document is a quick guide for Graphical User Interface of FIELDS module. It
 shows how to use this module on the basis of a few reference examples, built
 from use cases identified during requirement analysis stage.
 
@@ -25,10 +25,10 @@ from use cases identified during requirement analysis stage.
              7, VISU module has been replaced by PARAVIS module. The
              look-and-feel may thus be slightly different.
 
-General presentation of MED module
+General presentation of FIELDS module
 ==================================
 
-The overall ergonomics of MED module for field manipulation is inspired by
+The overall ergonomics of FIELDS module for field manipulation is inspired by
 software such as octave or scilab. It combines a graphical interface (GUI) to
 select and prepare data, with a textual interface (the python console, TUI)
 for actual work on data.
@@ -61,10 +61,10 @@ A typical use of field manipulation functions is:
 5. Save (parts of) produced fields to a med file.
 
 
-Quick tour on functions available in MED module
+Quick tour on functions available in FIELDS module
 ===============================================
 
-This section presents some use examples of MED module like a "storyboard",
+This section presents some use examples of FIELDS module like a "storyboard",
 illustrating the functions proposed by the module.
 
 .. warning:: This section is under construction. Please consider that its
@@ -189,7 +189,7 @@ file name:
    :align: center
    :width: 800px
 
-The file ``result.med`` can then be reloaded in MED module (or PARAVIS module)
+The file ``result.med`` can then be reloaded in FIELDS module (or PARAVIS module)
 to check the presence of saved fields.
 
 .. BUG: plantage à l'utilsation dans XMED d'un fichier rechargé
@@ -540,7 +540,7 @@ Example 8: Continue analysis in PARAVIS
 
    * Export fields to PARAVIS module
 
-The solutions for field representation in MED module aims at proposing a quick
+The solutions for field representation in FIELDS module aims at proposing a quick
 visual control.
 
 For a detailed analysis of fields, user shall switch to PARAVIS. The field
index e49165e5281ddd4e7d336a62950bdc0a6739beb1..808942e3c3e1791d60c23f9613c4104c829f9356 100644 (file)
@@ -225,13 +225,13 @@ IF(MED_ENABLE_GUI)
     )
 ENDIF(MED_ENABLE_GUI)
 
-IF(SALOME_MED_WITH_FILE_EXAMPLES)
-  INSTALL(FILES ${MED_RESOURCES_FILES} DESTINATION ${SALOME_MED_INSTALL_RES_DATA})
-ENDIF(SALOME_MED_WITH_FILE_EXAMPLES)
+IF(SALOME_FIELDS_WITH_FILE_EXAMPLES)
+  INSTALL(FILES ${MED_RESOURCES_FILES} DESTINATION ${SALOME_FIELDS_INSTALL_RES_DATA})
+ENDIF(SALOME_FIELDS_WITH_FILE_EXAMPLES)
 
-MESSAGE(STATUS "Creation of ${CMAKE_CURRENT_BINARY_DIR}/MEDCatalog.xml")
-CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/MEDCatalog.xml.in ${CMAKE_CURRENT_BINARY_DIR}/MEDCatalog.xml @ONLY)
+MESSAGE(STATUS "Creation of ${CMAKE_CURRENT_BINARY_DIR}/FIELDSCatalog.xml")
+CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/FIELDSCatalog.xml.in ${CMAKE_CURRENT_BINARY_DIR}/FIELDSCatalog.xml @ONLY)
 MESSAGE(STATUS "Creation of ${CMAKE_CURRENT_BINARY_DIR}/SalomeApp.xml")
 CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/SalomeApp.xml.in ${CMAKE_CURRENT_BINARY_DIR}/SalomeApp.xml @ONLY)
 
-INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/MEDCatalog.xml ${CMAKE_CURRENT_BINARY_DIR}/SalomeApp.xml DESTINATION ${SALOME_MED_INSTALL_RES_DATA})
+INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/FIELDSCatalog.xml ${CMAKE_CURRENT_BINARY_DIR}/SalomeApp.xml DESTINATION ${SALOME_FIELDS_INSTALL_RES_DATA})
diff --git a/resources/FIELDSCatalog.xml.in b/resources/FIELDSCatalog.xml.in
new file mode 100644 (file)
index 0000000..efd6420
--- /dev/null
@@ -0,0 +1,93 @@
+<?xml version='1.0' encoding='us-ascii' ?>
+<!--
+  Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
+
+  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+
+  This library is free software; you can redistribute it and/or
+  modify it under the terms of the GNU Lesser General Public
+  License as published by the Free Software Foundation; either
+  version 2.1 of the License, or (at your option) any later version.
+
+  This library is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+  Lesser General Public License for more details.
+
+  You should have received a copy of the GNU Lesser General Public
+  License along with this library; if not, write to the Free Software
+  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+
+  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+
+-->
+
+<!-- XML component catalog -->
+<begin-catalog>
+
+<!-- Path prefix information -->
+
+<path-prefix-list>
+</path-prefix-list>
+
+<type-list>
+  <objref name="SALOME_MED/DataArrayCorbaInterface" id="IDL:SALOME_MED/DataArrayCorbaInterface:1.0"/>
+  <objref name="SALOME_MED/MEDCouplingFieldDoubleCorbaInterface" id="IDL:SALOME_MED/MEDCouplingFieldDoubleCorbaInterface:1.0"/>
+  <objref name="SALOME_MED/MEDCouplingFieldTemplateCorbaInterface" id="IDL:SALOME_MED/MEDCouplingFieldTemplateCorbaInterface:1.0"/>
+  <objref name="SALOME_MED/MEDCouplingMeshCorbaInterface" id="IDL:SALOME_MED/MEDCouplingMeshCorbaInterface:1.0"/>
+  <objref name="SALOME_MED/DataArrayIntCorbaInterface" id="IDL:SALOME_MED/DataArrayIntCorbaInterface:1.0">
+      <base>SALOME_MED/DataArrayCorbaInterface</base>
+  </objref>
+  <objref name="SALOME_MED/DataArrayDoubleCorbaInterface" id="IDL:SALOME_MED/DataArrayDoubleCorbaInterface:1.0">
+      <base>SALOME_MED/DataArrayCorbaInterface</base>
+  </objref>
+  <objref name="SALOME_MED/MEDCouplingUMeshCorbaInterface" id="IDL:SALOME_MED/MEDCouplingUMeshCorbaInterface:1.0">
+      <base>SALOME_MED/MEDCouplingMeshCorbaInterface</base>
+  </objref>
+  <objref name="SALOME_MED/MEDCouplingExtrudedMeshCorbaInterface" id="IDL:SALOME_MED/MEDCouplingExtrudedMeshCorbaInterface:1.0">
+      <base>SALOME_MED/MEDCouplingMeshCorbaInterface</base>
+  </objref>
+  <objref name="SALOME_MED/MEDCouplingCMeshCorbaInterface" id="IDL:SALOME_MED/MEDCouplingCMeshCorbaInterface:1.0">
+      <base>SALOME_MED/MEDCouplingMeshCorbaInterface</base>
+  </objref>
+  <objref name="SALOME_MED/MEDCouplingCurveLinearMeshCorbaInterface" id="IDL:SALOME_MED/MEDCouplingCurveLinearMeshCorbaInterface:1.0">
+      <base>SALOME_MED/MEDCouplingMeshCorbaInterface</base>
+  </objref>
+  <objref name="SALOME_MED/ParaMEDCouplingFieldDoubleCorbaInterface" id="IDL:SALOME_MED/ParaMEDCouplingFieldDoubleCorbaInterface:1.0">
+      <base>SALOME_MED/MEDCouplingFieldDoubleCorbaInterface</base>
+  </objref>
+  <objref name="SALOME_MED/ParaMEDCouplingUMeshCorbaInterface" id="IDL:SALOME_MED/ParaMEDCouplingUMeshCorbaInterface:1.0">
+      <base>SALOME_MED/MEDCouplingUMeshCorbaInterface</base>
+  </objref>
+  <objref name="SALOME_MED/MPIMEDCouplingFieldDoubleCorbaInterface" id="IDL:SALOME_MED/MPIMEDCouplingFieldDoubleCorbaInterface:1.0">
+      <base>SALOME_MED/ParaMEDCouplingFieldDoubleCorbaInterface</base>
+  </objref>
+  <objref name="SALOME_MED/MEDCouplingMultiFieldsCorbaInterface" id="IDL:SALOME_MED/MEDCouplingMultiFieldsCorbaInterface:1.0"/>
+  <objref name="SALOME_MED/MEDCouplingFieldOverTimeCorbaInterface" id="IDL:SALOME_MED/MEDCouplingFieldOverTimeCorbaInterface:1.0">
+      <base>SALOME_MED/MEDCouplingMultiFieldsCorbaInterface</base>
+  </objref>
+</type-list>
+
+<!-- Component list -->
+<component-list>
+
+        <component>
+                <component-name>MEDFactory</component-name>
+                <component-username>MEDCalc Factory</component-username>
+                <component-type>FIELDS</component-type>
+                <component-author>Guillaume Boulant</component-author>
+                <component-version>@SALOMEFIELDS_VERSION@</component-version>
+                <component-comment>Factory of SALOME components for MED Field operations</component-comment>
+        </component>
+
+        <component>
+            <component-name>FIELDS</component-name>
+            <component-username>Fields</component-username>
+            <component-type>FIELDS</component-type>
+            <component-version>@SALOMEFIELDS_VERSION@</component-version>
+            <component-comment>FIELDS component engine</component-comment>
+        </component>
+
+</component-list>
+</begin-catalog>
diff --git a/resources/MEDCatalog.xml.in b/resources/MEDCatalog.xml.in
deleted file mode 100644 (file)
index e7bab56..0000000
+++ /dev/null
@@ -1,93 +0,0 @@
-<?xml version='1.0' encoding='us-ascii' ?>
-<!--
-  Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
-
-  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
-
-  This library is free software; you can redistribute it and/or
-  modify it under the terms of the GNU Lesser General Public
-  License as published by the Free Software Foundation; either
-  version 2.1 of the License, or (at your option) any later version.
-
-  This library is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-  Lesser General Public License for more details.
-
-  You should have received a copy of the GNU Lesser General Public
-  License along with this library; if not, write to the Free Software
-  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
-
-  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
-
--->
-
-<!-- XML component catalog -->
-<begin-catalog>
-
-<!-- Path prefix information -->
-
-<path-prefix-list>
-</path-prefix-list>
-
-<type-list>
-  <objref name="SALOME_MED/DataArrayCorbaInterface" id="IDL:SALOME_MED/DataArrayCorbaInterface:1.0"/>
-  <objref name="SALOME_MED/MEDCouplingFieldDoubleCorbaInterface" id="IDL:SALOME_MED/MEDCouplingFieldDoubleCorbaInterface:1.0"/>
-  <objref name="SALOME_MED/MEDCouplingFieldTemplateCorbaInterface" id="IDL:SALOME_MED/MEDCouplingFieldTemplateCorbaInterface:1.0"/>
-  <objref name="SALOME_MED/MEDCouplingMeshCorbaInterface" id="IDL:SALOME_MED/MEDCouplingMeshCorbaInterface:1.0"/>
-  <objref name="SALOME_MED/DataArrayIntCorbaInterface" id="IDL:SALOME_MED/DataArrayIntCorbaInterface:1.0">
-      <base>SALOME_MED/DataArrayCorbaInterface</base>
-  </objref>
-  <objref name="SALOME_MED/DataArrayDoubleCorbaInterface" id="IDL:SALOME_MED/DataArrayDoubleCorbaInterface:1.0">
-      <base>SALOME_MED/DataArrayCorbaInterface</base>
-  </objref>
-  <objref name="SALOME_MED/MEDCouplingUMeshCorbaInterface" id="IDL:SALOME_MED/MEDCouplingUMeshCorbaInterface:1.0">
-      <base>SALOME_MED/MEDCouplingMeshCorbaInterface</base>
-  </objref>
-  <objref name="SALOME_MED/MEDCouplingExtrudedMeshCorbaInterface" id="IDL:SALOME_MED/MEDCouplingExtrudedMeshCorbaInterface:1.0">
-      <base>SALOME_MED/MEDCouplingMeshCorbaInterface</base>
-  </objref>
-  <objref name="SALOME_MED/MEDCouplingCMeshCorbaInterface" id="IDL:SALOME_MED/MEDCouplingCMeshCorbaInterface:1.0">
-      <base>SALOME_MED/MEDCouplingMeshCorbaInterface</base>
-  </objref>
-  <objref name="SALOME_MED/MEDCouplingCurveLinearMeshCorbaInterface" id="IDL:SALOME_MED/MEDCouplingCurveLinearMeshCorbaInterface:1.0">
-      <base>SALOME_MED/MEDCouplingMeshCorbaInterface</base>
-  </objref>
-  <objref name="SALOME_MED/ParaMEDCouplingFieldDoubleCorbaInterface" id="IDL:SALOME_MED/ParaMEDCouplingFieldDoubleCorbaInterface:1.0">
-      <base>SALOME_MED/MEDCouplingFieldDoubleCorbaInterface</base>
-  </objref>
-  <objref name="SALOME_MED/ParaMEDCouplingUMeshCorbaInterface" id="IDL:SALOME_MED/ParaMEDCouplingUMeshCorbaInterface:1.0">
-      <base>SALOME_MED/MEDCouplingUMeshCorbaInterface</base>
-  </objref>
-  <objref name="SALOME_MED/MPIMEDCouplingFieldDoubleCorbaInterface" id="IDL:SALOME_MED/MPIMEDCouplingFieldDoubleCorbaInterface:1.0">
-      <base>SALOME_MED/ParaMEDCouplingFieldDoubleCorbaInterface</base>
-  </objref>
-  <objref name="SALOME_MED/MEDCouplingMultiFieldsCorbaInterface" id="IDL:SALOME_MED/MEDCouplingMultiFieldsCorbaInterface:1.0"/>
-  <objref name="SALOME_MED/MEDCouplingFieldOverTimeCorbaInterface" id="IDL:SALOME_MED/MEDCouplingFieldOverTimeCorbaInterface:1.0">
-      <base>SALOME_MED/MEDCouplingMultiFieldsCorbaInterface</base>
-  </objref>
-</type-list>
-
-<!-- Component list -->
-<component-list>
-
-        <component>
-                <component-name>MEDFactory</component-name>
-                <component-username>MEDCalc Factory</component-username>
-                <component-type>MED</component-type>
-                <component-author>Guillaume Boulant</component-author>
-                <component-version>@SALOMEMED_VERSION@</component-version>
-                <component-comment>Factory of SALOME components for MED Field operations</component-comment>
-        </component>
-
-        <component>
-            <component-name>MED</component-name>
-            <component-username>Med</component-username>
-            <component-type>MED</component-type>
-            <component-version>@SALOMEMED_VERSION@</component-version>
-            <component-comment>MED component engine</component-comment>
-        </component>
-
-</component-list>
-</begin-catalog>
index 3279a87394d7830f9bce972b456b8907aaf66679..99268cc6ed706bcc3f84c23f4872abc45f7506cc 100644 (file)
 
 -->
 <document>
-  <section name="MED">
+  <section name="FIELDS">
     <!-- Major module parameters -->
-    <parameter name="name" value="MED"/>
+    <parameter name="name" value="Fields"/>
     <parameter name="icon" value="MEDCalc.png"/>
     <parameter name="documentation" value="med_help"/>
     <parameter name="library"       value="MEDCALCGUI"/>
-    <parameter name="version"       value="@SALOMEMED_VERSION@"/>
+    <parameter name="version"       value="@SALOMEFIELDS_VERSION@"/>
   </section>
   <section name="med_help" >
-    <parameter name="User's Guide/MED module/User's Guide"      value="%MED_ROOT_DIR%/share/doc/salome/dev/MED/index.html"/>    
-    <parameter name="User's Guide/MED module/MEDCoupling/User's Guide" value="%MEDCOUPLING_ROOT_DIR%/share/doc/index.html"/>
-    <parameter name="User's Guide/MED module/MEDCoupling/Tutorial" value="%MEDCOUPLING_ROOT_DIR%/share/doc/tutorial/index.html"/>
-    <parameter name="User's Guide/MED module/MEDFile/User Manual" value="%MEDFILE_ROOT_DIR%/share/doc/html.dox/index.html"/>
+    <parameter name="User's Guide/FIELDS module/User's Guide"      value="%FIELDS_ROOT_DIR%/share/doc/salome/dev/FIELDS/index.html"/>    
+    <parameter name="User's Guide/FIELDS module/MEDCoupling/User's Guide" value="%MEDCOUPLING_ROOT_DIR%/share/doc/index.html"/>
+    <parameter name="User's Guide/FIELDS module/MEDCoupling/Tutorial" value="%MEDCOUPLING_ROOT_DIR%/share/doc/tutorial/index.html"/>
+    <parameter name="User's Guide/FIELDS module/MEDFile/User Manual" value="%MEDFILE_ROOT_DIR%/share/doc/html.dox/index.html"/>
   </section>
   <section name="resources">
     <!-- Module resources -->
-    <parameter name="MED"  value="%MED_ROOT_DIR%/share/salome/resources/med"/>
+    <parameter name="FIELDS"  value="%FIELDS_ROOT_DIR%/share/salome/resources/fields"/>
   </section>
  <section name="windows_geometry">
-  <parameter name="MED" value="@ByteArray[#00 #00 #00 #FF #00 #00 #00 #00 #FD #00 #00 #00 #02 #00 #00 #00 #00 #00 #00 #01 #2C #00 #00 #02 #DD #FC #02 #00 #00 #00 #03 #FB #00 #00 #00 #22 #00 #6F #00 #62 #00 #6A #00 #65 #00 #63 #00 #74 #00 #42 #00 #72 #00 #6F #00 #77 #00 #73 #00 #65 #00 #72 #00 #44 #00 #6F #00 #63 #00 #6B #01 #00 #00 #00 #5B #00 #00 #00 #FE #00 #00 #00 #53 #00 #FF #FF #FF #FB #00 #00 #00 #20 #00 #6D #00 #65 #00 #64 #00 #57 #00 #6F #00 #72 #00 #6B #00 #73 #00 #70 #00 #61 #00 #63 #00 #65 #00 #44 #00 #6F #00 #63 #00 #6B #01 #00 #00 #01 #61 #00 #00 #00 #F1 #00 #00 #00 #DE #00 #FF #FF #FF #FB #00 #00 #00 #2E #00 #50 #00 #72 #00 #65 #00 #73 #00 #65 #00 #6E #00 #74 #00 #61 #00 #74 #00 #69 #00 #6F #00 #6E #00 #20 #00 #70 #00 #61 #00 #72 #00 #61 #00 #6D #00 #65 #00 #74 #00 #65 #00 #72 #00 #73 #01 #00 #00 #02 #5A #00 #00 #00 #DE #00 #00 #00 #DE #00 #FF #FF #FF #00 #00 #00 #03 #00 #00 #04 #CC #00 #00 #00 #53 #FC #01 #00 #00 #00 #01 #FB #00 #00 #00 #22 #00 #70 #00 #79 #00 #74 #00 #68 #00 #6F #00 #6E #00 #43 #00 #6F #00 #6E #00 #73 #00 #6F #00 #6C #00 #65 #00 #44 #00 #6F #00 #63 #00 #6B #01 #00 #00 #01 #34 #00 #00 #04 #CC #00 #00 #00 #46 #00 #FF #FF #FF #00 #00 #04 #CC #00 #00 #02 #82 #00 #00 #00 #04 #00 #00 #00 #04 #00 #00 #00 #01 #00 #00 #00 #02 #FC #00 #00 #00 #02 #00 #00 #00 #02 #00 #00 #00 #02 #00 #00 #00 #1C #00 #53 #00 #61 #00 #6C #00 #6F #00 #6D #00 #65 #00 #53 #00 #74 #00 #61 #00 #6E #00 #64 #00 #61 #00 #72 #00 #64 #01 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #1A #00 #53 #00 #61 #00 #6C #00 #6F #00 #6D #00 #65 #00 #4D #00 #6F #00 #64 #00 #75 #00 #6C #00 #65 #00 #73 #01 #00 #00 #00 #CE #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #02 #00 #00 #00 #0F #00 #00 #00 #26 #00 #4D #00 #61 #00 #69 #00 #6E #00 #43 #00 #6F #00 #6E #00 #74 #00 #72 #00 #6F #00 #6C #00 #73 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #1E #00 #76 #00 #61 #00 #72 #00 #69 #00 #61 #00 #62 #00 #6C #00 #65 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #2A #00 #72 #00 #65 #00 #70 #00 #72 #00 #65 #00 #73 #00 #65 #00 #6E #00 #74 #00 #61 #00 #74 #00 #69 #00 #6F #00 #6E #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #1A #00 #63 #00 #61 #00 #6D #00 #65 #00 #72 #00 #61 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #16 #00 #61 #00 #78 #00 #65 #00 #73 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #1A #00 #4D #00 #61 #00 #63 #00 #72 #00 #6F #00 #73 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #0C #00 #43 #00 #6F #00 #6D #00 #6D #00 #6F #00 #6E #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #18 #00 #44 #00 #61 #00 #74 #00 #61 #00 #41 #00 #6E #00 #61 #00 #6C #00 #79 #00 #73 #00 #69 #00 #73 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #22 #00 #44 #00 #61 #00 #74 #00 #61 #00 #73 #00 #6F #00 #75 #00 #72 #00 #63 #00 #65 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #20 #00 #57 #00 #6F #00 #72 #00 #6B #00 #73 #00 #70 #00 #61 #00 #63 #00 #65 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #00 #4C #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #1E #00 #56 #00 #69 #00 #65 #00 #77 #00 #4D #00 #6F #00 #64 #00 #65 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #00 #98 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #26 #00 #50 #00 #72 #00 #65 #00 #73 #00 #65 #00 #6E #00 #74 #00 #61 #00 #74 #00 #69 #00 #6F #00 #6E #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #00 #F4 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #22 #00 #50 #00 #72 #00 #6F #00 #63 #00 #65 #00 #73 #00 #73 #00 #69 #00 #6E #00 #67 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #01 #DB #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #14 #00 #56 #00 #43 #00 #52 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #02 #27 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #24 #00 #63 #00 #75 #00 #72 #00 #72 #00 #65 #00 #6E #00 #74 #00 #54 #00 #69 #00 #6D #00 #65 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #02 #EF #00 #00 #03 #11 #00 #00 #00 #00 #00 #00 #00 #00]"/>
+  <parameter name="FIELDS" value="@ByteArray[#00 #00 #00 #FF #00 #00 #00 #00 #FD #00 #00 #00 #02 #00 #00 #00 #00 #00 #00 #01 #2C #00 #00 #02 #DD #FC #02 #00 #00 #00 #03 #FB #00 #00 #00 #22 #00 #6F #00 #62 #00 #6A #00 #65 #00 #63 #00 #74 #00 #42 #00 #72 #00 #6F #00 #77 #00 #73 #00 #65 #00 #72 #00 #44 #00 #6F #00 #63 #00 #6B #01 #00 #00 #00 #5B #00 #00 #00 #FE #00 #00 #00 #53 #00 #FF #FF #FF #FB #00 #00 #00 #20 #00 #6D #00 #65 #00 #64 #00 #57 #00 #6F #00 #72 #00 #6B #00 #73 #00 #70 #00 #61 #00 #63 #00 #65 #00 #44 #00 #6F #00 #63 #00 #6B #01 #00 #00 #01 #61 #00 #00 #00 #F1 #00 #00 #00 #DE #00 #FF #FF #FF #FB #00 #00 #00 #2E #00 #50 #00 #72 #00 #65 #00 #73 #00 #65 #00 #6E #00 #74 #00 #61 #00 #74 #00 #69 #00 #6F #00 #6E #00 #20 #00 #70 #00 #61 #00 #72 #00 #61 #00 #6D #00 #65 #00 #74 #00 #65 #00 #72 #00 #73 #01 #00 #00 #02 #5A #00 #00 #00 #DE #00 #00 #00 #DE #00 #FF #FF #FF #00 #00 #00 #03 #00 #00 #04 #CC #00 #00 #00 #53 #FC #01 #00 #00 #00 #01 #FB #00 #00 #00 #22 #00 #70 #00 #79 #00 #74 #00 #68 #00 #6F #00 #6E #00 #43 #00 #6F #00 #6E #00 #73 #00 #6F #00 #6C #00 #65 #00 #44 #00 #6F #00 #63 #00 #6B #01 #00 #00 #01 #34 #00 #00 #04 #CC #00 #00 #00 #46 #00 #FF #FF #FF #00 #00 #04 #CC #00 #00 #02 #82 #00 #00 #00 #04 #00 #00 #00 #04 #00 #00 #00 #01 #00 #00 #00 #02 #FC #00 #00 #00 #02 #00 #00 #00 #02 #00 #00 #00 #02 #00 #00 #00 #1C #00 #53 #00 #61 #00 #6C #00 #6F #00 #6D #00 #65 #00 #53 #00 #74 #00 #61 #00 #6E #00 #64 #00 #61 #00 #72 #00 #64 #01 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #1A #00 #53 #00 #61 #00 #6C #00 #6F #00 #6D #00 #65 #00 #4D #00 #6F #00 #64 #00 #75 #00 #6C #00 #65 #00 #73 #01 #00 #00 #00 #CE #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #02 #00 #00 #00 #0F #00 #00 #00 #26 #00 #4D #00 #61 #00 #69 #00 #6E #00 #43 #00 #6F #00 #6E #00 #74 #00 #72 #00 #6F #00 #6C #00 #73 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #1E #00 #76 #00 #61 #00 #72 #00 #69 #00 #61 #00 #62 #00 #6C #00 #65 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #2A #00 #72 #00 #65 #00 #70 #00 #72 #00 #65 #00 #73 #00 #65 #00 #6E #00 #74 #00 #61 #00 #74 #00 #69 #00 #6F #00 #6E #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #1A #00 #63 #00 #61 #00 #6D #00 #65 #00 #72 #00 #61 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #16 #00 #61 #00 #78 #00 #65 #00 #73 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #1A #00 #4D #00 #61 #00 #63 #00 #72 #00 #6F #00 #73 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #0C #00 #43 #00 #6F #00 #6D #00 #6D #00 #6F #00 #6E #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #18 #00 #44 #00 #61 #00 #74 #00 #61 #00 #41 #00 #6E #00 #61 #00 #6C #00 #79 #00 #73 #00 #69 #00 #73 #00 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #22 #00 #44 #00 #61 #00 #74 #00 #61 #00 #73 #00 #6F #00 #75 #00 #72 #00 #63 #00 #65 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #00 #00 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #20 #00 #57 #00 #6F #00 #72 #00 #6B #00 #73 #00 #70 #00 #61 #00 #63 #00 #65 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #00 #4C #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #1E #00 #56 #00 #69 #00 #65 #00 #77 #00 #4D #00 #6F #00 #64 #00 #65 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #00 #98 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #26 #00 #50 #00 #72 #00 #65 #00 #73 #00 #65 #00 #6E #00 #74 #00 #61 #00 #74 #00 #69 #00 #6F #00 #6E #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #00 #F4 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #22 #00 #50 #00 #72 #00 #6F #00 #63 #00 #65 #00 #73 #00 #73 #00 #69 #00 #6E #00 #67 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #01 #DB #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #14 #00 #56 #00 #43 #00 #52 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #02 #27 #FF #FF #FF #FF #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #00 #24 #00 #63 #00 #75 #00 #72 #00 #72 #00 #65 #00 #6E #00 #74 #00 #54 #00 #69 #00 #6D #00 #65 #00 #54 #00 #6F #00 #6F #00 #6C #00 #62 #00 #61 #00 #72 #01 #00 #00 #02 #EF #00 #00 #03 #11 #00 #00 #00 #00 #00 #00 #00 #00]"/>
  </section>
  <section name="windows_visibility">
-  <parameter name="MED" value="#00 #00 #00 #00 #05 #00 #00 #00 #06 #00 #4D #00 #45 #00 #44 #01 #00 #00 #00 #0E #00 #4D #00 #6F #00 #64 #00 #75 #00 #6C #00 #65 #00 #73 #01 #00 #00 #00 #1A #00 #53 #00 #61 #00 #6C #00 #6F #00 #6D #00 #65 #00 #4D #00 #6F #00 #64 #00 #75 #00 #6C #00 #65 #00 #73 #01 #00 #00 #00 #1C #00 #53 #00 #61 #00 #6C #00 #6F #00 #6D #00 #65 #00 #53 #00 #74 #00 #61 #00 #6E #00 #64 #00 #61 #00 #72 #00 #64 #01 #00 #00 #00 #10 #00 #53 #00 #74 #00 #61 #00 #6E #00 #64 #00 #61 #00 #72 #00 #64 #01 #01 #00 #00 #00 #03 #00 #00 #00 #20 #00 #6D #00 #65 #00 #64 #00 #57 #00 #6F #00 #72 #00 #6B #00 #73 #00 #70 #00 #61 #00 #63 #00 #65 #00 #44 #00 #6F #00 #63 #00 #6B #01 #00 #00 #00 #22 #00 #6F #00 #62 #00 #6A #00 #65 #00 #63 #00 #74 #00 #42 #00 #72 #00 #6F #00 #77 #00 #73 #00 #65 #00 #72 #00 #44 #00 #6F #00 #63 #00 #6B #01 #00 #00 #00 #22 #00 #70 #00 #79 #00 #74 #00 #68 #00 #6F #00 #6E #00 #43 #00 #6F #00 #6E #00 #73 #00 #6F #00 #6C #00 #65 #00 #44 #00 #6F #00 #63 #00 #6B #01"/>
+  <parameter name="FIELDS" value="#00 #00 #00 #00 #05 #00 #00 #00 #06 #00 #4D #00 #45 #00 #44 #01 #00 #00 #00 #0E #00 #4D #00 #6F #00 #64 #00 #75 #00 #6C #00 #65 #00 #73 #01 #00 #00 #00 #1A #00 #53 #00 #61 #00 #6C #00 #6F #00 #6D #00 #65 #00 #4D #00 #6F #00 #64 #00 #75 #00 #6C #00 #65 #00 #73 #01 #00 #00 #00 #1C #00 #53 #00 #61 #00 #6C #00 #6F #00 #6D #00 #65 #00 #53 #00 #74 #00 #61 #00 #6E #00 #64 #00 #61 #00 #72 #00 #64 #01 #00 #00 #00 #10 #00 #53 #00 #74 #00 #61 #00 #6E #00 #64 #00 #61 #00 #72 #00 #64 #01 #01 #00 #00 #00 #03 #00 #00 #00 #20 #00 #6D #00 #65 #00 #64 #00 #57 #00 #6F #00 #72 #00 #6B #00 #73 #00 #70 #00 #61 #00 #63 #00 #65 #00 #44 #00 #6F #00 #63 #00 #6B #01 #00 #00 #00 #22 #00 #6F #00 #62 #00 #6A #00 #65 #00 #63 #00 #74 #00 #42 #00 #72 #00 #6F #00 #77 #00 #73 #00 #65 #00 #72 #00 #44 #00 #6F #00 #63 #00 #6B #01 #00 #00 #00 #22 #00 #70 #00 #79 #00 #74 #00 #68 #00 #6F #00 #6E #00 #43 #00 #6F #00 #6E #00 #73 #00 #6F #00 #6C #00 #65 #00 #44 #00 #6F #00 #63 #00 #6B #01"/>
  </section>
 </document>
index 9b6d5c14b6944bc89c04163da1dac0adc2744a8f..75571cef27def02138e7f42f3d469b2a2eee64d1 100644 (file)
@@ -25,12 +25,12 @@ ENDIF(SALOME_USE_MPI)
 ADD_SUBDIRECTORY(MEDCouplingCorba)
 ADD_SUBDIRECTORY(MEDCalculator)
 ADD_SUBDIRECTORY(MEDCalc)
-IF(SALOME_MED_ENABLE_PYTHON)
+IF(SALOME_FIELDS_ENABLE_PYTHON)
   ADD_SUBDIRECTORY(MEDCouplingCorba_Swig)
-ENDIF(SALOME_MED_ENABLE_PYTHON)
+ENDIF(SALOME_FIELDS_ENABLE_PYTHON)
 
 IF(SALOME_BUILD_GUI)
-  IF(SALOME_MED_ENABLE_PYTHON)
+  IF(SALOME_FIELDS_ENABLE_PYTHON)
     #ADD_SUBDIRECTORY(MEDGUI)
-  ENDIF(SALOME_MED_ENABLE_PYTHON)
+  ENDIF(SALOME_FIELDS_ENABLE_PYTHON)
 ENDIF(SALOME_BUILD_GUI)
index 2db954b42cb8314724f39601fd4921b6fa248d56..be90548a10d6c31ec3d0e63b46f68afbc82703f3 100644 (file)
@@ -26,7 +26,7 @@ ENDIF()
 
 ADD_SUBDIRECTORY(test)
 
-IF(SALOME_MED_ENABLE_PYTHON)
+IF(SALOME_FIELDS_ENABLE_PYTHON)
   ADD_SUBDIRECTORY(tui)
   ADD_SUBDIRECTORY(exe)
 ENDIF()
index 04baec0b760ef5616cf6907bc60cd9b8d6bad974..a2a6ca61daab9d4d7d8ee054a7cfc4470230a14b 100644 (file)
@@ -86,14 +86,14 @@ ADD_LIBRARY(MEDFactoryEngine SHARED ${MEDFactoryEngine_SOURCES})
 SET_TARGET_PROPERTIES(MEDFactoryEngine PROPERTIES COMPILE_FLAGS "${COMMON_FLAGS}")
 TARGET_LINK_LIBRARIES(MEDFactoryEngine ${COMMON_LIBS} MEDEngineCommon)
 
-ADD_LIBRARY(MEDEngine SHARED ${MEDEngine_SOURCES})
-SET_TARGET_PROPERTIES(MEDEngine PROPERTIES COMPILE_FLAGS "${COMMON_FLAGS}")
-TARGET_LINK_LIBRARIES(MEDEngine ${COMMON_LIBS} MEDEngineCommon)
+ADD_LIBRARY(FIELDSEngine SHARED ${MEDEngine_SOURCES})
+SET_TARGET_PROPERTIES(FIELDSEngine PROPERTIES COMPILE_FLAGS "${COMMON_FLAGS}")
+TARGET_LINK_LIBRARIES(FIELDSEngine ${COMMON_LIBS} MEDEngineCommon)
 
 #INSTALL(TARGETS MEDFactoryEngine DESTINATION ${SALOME_INSTALL_LIBS})
 INSTALL(TARGETS MEDEngineCommon EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
 INSTALL(TARGETS MEDFactoryEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
-INSTALL(TARGETS MEDEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
+INSTALL(TARGETS FIELDSEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
 
 FILE(GLOB MEDCALC_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
 INSTALL(FILES ${MEDCALC_HEADERS_HXX} DESTINATION ${SALOME_INSTALL_HEADERS})
index 65fe2b326f0c17325028baaf35ba623c54e5c1f4..d938c31ab5af637416e3f7a56e4db5c5416ee7ab 100644 (file)
@@ -84,12 +84,12 @@ MED::addDatasourceToStudy(const MEDCALC::DatasourceHandler& datasourceHandler)
       SALOMEDS::UseCaseBuilder_var useCaseBuilder = aStudy->GetUseCaseBuilder();
 
       // find MED component; create it if not found
-      SALOMEDS::SComponent_var father = aStudy->FindComponent("MED");
+      SALOMEDS::SComponent_var father = aStudy->FindComponent("FIELDS");
       if (CORBA::is_nil(father)) {
         // create component
-        father = studyBuilder->NewComponent("MED");
+        father = studyBuilder->NewComponent("FIELDS");
         // set name attribute
-        father->SetAttrString("AttributeName", "MEDCalc");
+        father->SetAttrString("AttributeName", "FIELDS");
         // set icon attribute
         father->SetAttrString("AttributePixMap", "ICO_MED");
         // register component in the study
@@ -272,7 +272,7 @@ MED::unregisterPresentation(CORBA::Long presentationId)
   SALOMEDS::UseCaseBuilder_var useCaseBuilder = aStudy->GetUseCaseBuilder();
 
   SALOMEDS::GenericAttribute_var anAttribute;
-  SALOMEDS::SComponent_var father = aStudy->FindComponent("MED");
+  SALOMEDS::SComponent_var father = aStudy->FindComponent("FIELDS");
   SALOMEDS::ChildIterator_var it = aStudy->NewChildIterator(father);
   for (it->InitEx(true); it->More(); it->Next()) {
     SALOMEDS::SObject_var child(it->Value());
@@ -307,7 +307,7 @@ MED::getStudyPresentations()
   SALOMEDS::UseCaseBuilder_var useCaseBuilder = aStudy->GetUseCaseBuilder();
 
   SALOMEDS::GenericAttribute_var anAttribute;
-  SALOMEDS::SComponent_var father = aStudy->FindComponent("MED");
+  SALOMEDS::SComponent_var father = aStudy->FindComponent("FIELDS");
   SALOMEDS::ChildIterator_var it = aStudy->NewChildIterator(father);
   for (it->InitEx(true); it->More(); it->Next())
     {
@@ -339,7 +339,7 @@ MED::getStudyPresentationEntry(CORBA::Long presentationId)
   SALOMEDS::UseCaseBuilder_var useCaseBuilder = aStudy->GetUseCaseBuilder();
 
   SALOMEDS::GenericAttribute_var anAttribute;
-  SALOMEDS::SComponent_var father = aStudy->FindComponent("MED");
+  SALOMEDS::SComponent_var father = aStudy->FindComponent("FIELDS");
   SALOMEDS::ChildIterator_var it = aStudy->NewChildIterator(father);
   for (it->InitEx(true); it->More(); it->Next())
     {
@@ -363,7 +363,7 @@ MED::DumpPython(CORBA::Boolean isPublished,
                 CORBA::Boolean isMultiFile,
                 CORBA::Boolean& isValidScript)
 {
-  SALOMEDS::SObject_var aSO = KERNEL::getStudyServant()->FindComponent("MED");
+  SALOMEDS::SObject_var aSO = KERNEL::getStudyServant()->FindComponent("FIELDS");
   if(CORBA::is_nil(aSO)) {
     std::cerr << "Error: Cannot find component MED\n";
     return new Engines::TMPFile(0);
@@ -475,7 +475,7 @@ extern "C"
     \param interfaceName SALOME component interface name
     \return CORBA object identifier of the registered servant
   */
-  PortableServer::ObjectId* MEDEngine_factory(CORBA::ORB_ptr orb,
+  PortableServer::ObjectId* FIELDSEngine_factory(CORBA::ORB_ptr orb,
                                               PortableServer::POA_ptr poa,
                                               PortableServer::ObjectId* contId,
                                               const char* instanceName,
index a3436164bc8f571a56b6bdfacc826627bd7971b3..bd3246683265e3921cdb0845fae6cc11e1e90876 100644 (file)
@@ -85,10 +85,10 @@ public:
 
 extern "C"
 MEDCALC_EXPORT
-PortableServer::ObjectId* MEDEngine_factory( CORBA::ORB_ptr orb,
-                                             PortableServer::POA_ptr poa,
-                                             PortableServer::ObjectId* contId,
-                                             const char* instanceName,
-                                             const char* interfaceName );
+PortableServer::ObjectId* FIELDSEngine_factory( CORBA::ORB_ptr orb,
+                                               PortableServer::POA_ptr poa,
+                                               PortableServer::ObjectId* contId,
+                                               const char* instanceName,
+                                               const char* interfaceName );
 
 #endif
index a4c211d33fa574ee8e121fc447cbc768d3d18660..99687da24289acbfbd8283623c91ec9a56dfeded 100644 (file)
@@ -59,7 +59,7 @@ if salome.lcc is None:
     salome.salome_init()
 __import__(corbaModule)
 factory=salome.lcc.FindOrLoadComponent(containerType,componentName)
-# This is not the main CORBA component of the SALOME module MED
+# This is not the main CORBA component of the SALOME module FIELDS
 # (i.e. the engine associated to the study), but the CORBA
 # entry point for MED fields operations (i.e. a CORBA component
 # reachable throughout the LifeCycleCORBA). This entry point is used to
@@ -74,11 +74,11 @@ factory=salome.lcc.FindOrLoadComponent(containerType,componentName)
 import os
 
 try:
-    MED_ROOT_DIR=os.environ["MED_ROOT_DIR"]
+    FIELDS_ROOT_DIR=os.environ["FIELDS_ROOT_DIR"]
 except KeyError as e:
-    raise RuntimeError("MED_ROOT_DIR should be defined to load the test data")
+    raise RuntimeError("FIELDS_ROOT_DIR should be defined to load the test data")
 
-RESDIR=os.path.join(MED_ROOT_DIR,"share","salome","resources","med","medcalc_testfiles")
+RESDIR=os.path.join(FIELDS_ROOT_DIR,"share","salome","resources","fields","medcalc_testfiles")
 
 def getFilePath(filename):
     """
index 1fcf79de22bde3f7653c8b08c53ae4a73670a0ed..675a3895c609806d3bc377ca2fe71e08a5c9e0c6 100644 (file)
@@ -17,7 +17,7 @@
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
-IF(SALOME_MED_WITH_QTTESTING)
+IF(SALOME_FIELDS_WITH_QTTESTING)
   ADD_DEFINITIONS(-DMED_HAS_QTTESTING)
 ENDIF()
 
@@ -48,7 +48,7 @@ SET(MEDCALCGUI_SOURCES
     MEDWidgetHelperSlices.cxx
 )
 
-IF(SALOME_MED_WITH_QTTESTING)
+IF(SALOME_FIELDS_WITH_QTTESTING)
   LIST(APPEND MEDCALCGUI_SOURCES TestController.cxx)
 ENDIF()
 
@@ -70,7 +70,7 @@ SET(MEDCALCGUI_HEADERS
   MEDWidgetHelperDeflectionShape.hxx
   )
  
-IF(SALOME_MED_WITH_QTTESTING)
+IF(SALOME_FIELDS_WITH_QTTESTING)
   LIST(APPEND MEDCALCGUI_HEADERS TestController.hxx)
 ENDIF()
 
@@ -93,10 +93,10 @@ INCLUDE_DIRECTORIES(
 )
 
 SET(MEDCALCGUITS_SOURCES
-  MED_images.ts
-  MED_msg_en.ts
-  MED_msg_fr.ts
-  MED_msg_ja.ts
+  FIELDS_images.ts
+  FIELDS_msg_en.ts
+  FIELDS_msg_fr.ts
+  FIELDS_msg_ja.ts
   MEDCALC_msg_en.ts
   MEDCALC_msg_fr.ts
   MEDCALC_msg_ja.ts
@@ -127,7 +127,7 @@ SET(link_libraries
   ${MEDCoupling_medcouplingremapper}
 )
 
-IF(SALOME_MED_WITH_QTTESTING)
+IF(SALOME_FIELDS_WITH_QTTESTING)
   LIST(APPEND link_libraries QtTesting)  # from ParaView
 ENDIF()
 
@@ -138,7 +138,7 @@ ENDIF(WITH_MEDMEMGUI)
 TARGET_LINK_LIBRARIES(MEDCALCGUI ${link_libraries})
 
 INSTALL(TARGETS MEDCALCGUI DESTINATION ${SALOME_INSTALL_LIBS})
-QT_INSTALL_TS_RESOURCES("${MEDCALCGUITS_SOURCES}" "${SALOME_MED_INSTALL_RES_DATA}")
+QT_INSTALL_TS_RESOURCES("${MEDCALCGUITS_SOURCES}" "${SALOME_FIELDS_INSTALL_RES_DATA}")
 
 FILE(GLOB COMMON_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
 INSTALL(FILES ${COMMON_HEADERS_HXX} DESTINATION ${SALOME_INSTALL_HEADERS})
index 2ffac2d8df099839e3ea90cc824b162ec1150215..02b2e8e8e2b82ca973c0351cec3b8db2ba3ab18f 100644 (file)
@@ -194,8 +194,8 @@ void DatasourceController::OnAddImagesource()
   QString medFilename   = dialog.getMedFilepath();
   bool autoLoad         = dialog.isAutoLoaded();
 
-  std::string ROOT_DIR(getenv("MED_ROOT_DIR"));
-  std::string command(ROOT_DIR+"/bin/salome/med/image2med.py");
+  std::string ROOT_DIR(getenv("FIELDS_ROOT_DIR"));
+  std::string command(ROOT_DIR+"/bin/salome/fields/image2med.py");
   command += " -i "+QS2S(imageFilename);
   command += " -m "+QS2S(medFilename);
   int error = system(command.c_str());
diff --git a/src/MEDCalc/gui/FIELDS_images.ts b/src/MEDCalc/gui/FIELDS_images.ts
new file mode 100644 (file)
index 0000000..bc019e4
--- /dev/null
@@ -0,0 +1,249 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.0" language="en_US">
+  <context>
+    <name>@default</name>
+    <message>
+      <source>ICO_IMPORT_MED</source>
+      <translation>datasource_add.png</translation>
+    </message>
+    <message>
+      <source>ICO_DATASOURCE</source>
+      <translation>datasource.png</translation>
+    </message>
+    <message>
+      <source>ICO_DATASOURCE_ADD</source>
+      <translation>datasource_add.png</translation>
+    </message>
+    <message>
+      <source>ICO_PROCESSING_CHANGE_MESH</source>
+      <translation>processing_changeUnderlyingMesh.png</translation>
+    </message>
+    <message>
+      <source>ICO_PROCESSING_INTERPOLATE_FIELD</source>
+      <translation>processing_interpolateField.png</translation>
+    </message>
+    <message>
+      <source>ICO_DATASOURCE_EXPAND_FIELD</source>
+      <translation>datasource_expandfield.png</translation>
+    </message>
+    <message>
+      <source>ICO_DATASOURCE_FIELD</source>
+      <translation>datasource_field.png</translation>
+    </message>
+    <message>
+      <source>ICO_DATASOURCE_MESH</source>
+      <translation>datasource_mesh.png</translation>
+    </message>
+    <message>
+      <source>ICO_DATASOURCE_USE</source>
+      <translation>datasource_use.png</translation>
+    </message>
+    <message>
+      <source>ICO_FOLDER</source>
+      <translation>folder.png</translation>
+    </message>
+    <message>
+      <source>ICO_IMAGE_ADD</source>
+      <translation>image_add.png</translation>
+    </message>
+    <message>
+      <source>ICO_MED</source>
+      <translation>MEDCalc.png</translation>
+    </message>
+    <message>
+      <source>ICO_MED_SMALL</source>
+      <translation>MEDCalc_small.png</translation>
+    </message>
+    <message>
+      <source>ICO_WORKSPACE_CLEAN</source>
+      <translation>workspace_clean.png</translation>
+    </message>
+    <message>
+      <source>ICO_WORKSPACE_SAVE</source>
+      <translation>workspace_save.png</translation>
+    </message>
+    <message>
+      <source>ICO_ICO_DELETE_PRESENTATION</source>
+      <translation>delete.png</translation>
+    </message>
+    <!-- Presentation toolbar icons (default theme)-->
+    <message>
+      <source>ICO_PRESENTATION_MESH_VIEW_DEFAULT</source>
+      <translation>mesh24.png</translation>
+    </message>    
+    <message>
+      <source>ICO_PRESENTATION_SCALAR_MAP_DEFAULT</source>
+      <translation>scalarmap24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_CONTOUR_DEFAULT</source>
+      <translation>pqIsosurface24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_VECTOR_FIELD_DEFAULT</source>
+      <translation>pqGlyph24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_SLICES_DEFAULT</source>
+      <translation>pqSlice24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_DEFLECTION_SHAPE_DEFAULT</source>
+      <translation>pqWarp24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_POINT_SPRITE_DEFAULT</source>
+      <translation>pqNodeMapData24.png</translation>
+    </message>
+    <!-- Presentation tree icons (default theme)-->
+    <message>
+      <source>ICO_MEDPresentationMeshView_DEFAULT</source>
+      <translation>mesh16.png</translation>
+    </message>    
+    <message>
+      <source>ICO_MEDPresentationScalarMap_DEFAULT</source>
+      <translation>scalarmap16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationContour_DEFAULT</source>
+      <translation>pqIsosurface16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationVectorField_DEFAULT</source>
+      <translation>pqGlyph16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationSlices_DEFAULT</source>
+      <translation>pqSlice16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationDeflectionShape_DEFAULT</source>
+      <translation>pqWarp16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationPointSprite_DEFAULT</source>
+      <translation>pqNodeMapData16.png</translation>
+    </message>
+    <!-- Presentation toolbar icons (modern theme)-->
+    <message>
+      <source>ICO_PRESENTATION_MESH_VIEW_MODERN</source>
+      <translation>mesh24.png</translation>
+    </message>    
+    <message>
+      <source>ICO_PRESENTATION_SCALAR_MAP_MODERN</source>
+      <translation>scalarmap24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_CONTOUR_MODERN</source>
+      <translation>pqIsosurface24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_VECTOR_FIELD_MODERN</source>
+      <translation>pqGlyph24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_SLICES_MODERN</source>
+      <translation>pqSlice24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_DEFLECTION_SHAPE_MODERN</source>
+      <translation>pqWarp24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_POINT_SPRITE_MODERN</source>
+      <translation>pqNodeMapData24.png</translation>
+    </message>
+    <!-- Presentation tree icons (modern theme)-->
+    <message>
+      <source>ICO_MEDPresentationMeshView_MODERN</source>
+      <translation>mesh16.png</translation>
+    </message>    
+    <message>
+      <source>ICO_MEDPresentationScalarMap_MODERN</source>
+      <translation>scalarmap16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationContour_MODERN</source>
+      <translation>pqIsosurface16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationVectorField_MODERN</source>
+      <translation>pqGlyph16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationSlices_MODERN</source>
+      <translation>pqSlice16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationDeflectionShape_MODERN</source>
+      <translation>pqWarp16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationPointSprite_MODERN</source>
+      <translation>pqNodeMapData16.png</translation>
+    </message>
+    <!-- Presentation toolbar icons (classic theme)-->
+    <message>
+      <source>ICO_PRESENTATION_MESH_VIEW_CLASSIC</source>
+      <translation>visu_mesh24.png</translation>
+    </message>    
+    <message>
+      <source>ICO_PRESENTATION_SCALAR_MAP_CLASSIC</source>
+      <translation>visu_scalars24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_CONTOUR_CLASSIC</source>
+      <translation>visu_isosurfaces24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_VECTOR_FIELD_CLASSIC</source>
+      <translation>visu_vectors24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_SLICES_CLASSIC</source>
+      <translation>visu_cutplanes24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_DEFLECTION_SHAPE_CLASSIC</source>
+      <translation>visu_deformed24.png</translation>
+    </message>
+    <message>
+      <source>ICO_PRESENTATION_POINT_SPRITE_CLASSIC</source>
+      <translation>visu_points24.png</translation>
+    </message>
+    <!-- Presentation tree icons (classic theme)-->
+    <message>
+      <source>ICO_MEDPresentationMeshView_CLASSIC</source>
+      <translation>visu_mesh16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationScalarMap_CLASSIC</source>
+      <translation>visu_scalars16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationContour_CLASSIC</source>
+      <translation>visu_isosurfaces16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationVectorField_CLASSIC</source>
+      <translation>visu_vectors16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationSlices_CLASSIC</source>
+      <translation>visu_cutplanes16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationDeflectionShape_CLASSIC</source>
+      <translation>visu_deformed16.png</translation>
+    </message>
+    <message>
+      <source>ICO_MEDPresentationPointSprite_CLASSIC</source>
+      <translation>visu_points16.png</translation>
+    </message>
+    <message>
+      <source>ICO_DELETE_PRESENTATION</source>
+      <translation>close.png</translation>
+    </message>
+  </context>
+</TS>
diff --git a/src/MEDCalc/gui/FIELDS_msg_en.ts b/src/MEDCalc/gui/FIELDS_msg_en.ts
new file mode 100644 (file)
index 0000000..69f0b81
--- /dev/null
@@ -0,0 +1,625 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.0" language="en_GB">
+<context>
+    <name>PresentationController</name>
+    <message>
+        <source>TITLE_PRESENTATION_PARAMETERS</source>
+        <translation>Presentation parameters</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_MESH_VIEW</source>
+        <translation>Mesh</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_MESH_VIEW</source>
+        <translation>Mesh</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_SCALAR_MAP</source>
+        <translation>Scalar map</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_SCALAR_MAP</source>
+        <translation>Scalar map</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_CONTOUR</source>
+        <translation>Contour</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_CONTOUR</source>
+        <translation>Contour</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_VECTOR_FIELD</source>
+        <translation>Vector field</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_VECTOR_FIELD</source>
+        <translation>Vector field</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_SLICES</source>
+        <translation>Slices</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_SLICES</source>
+        <translation>Slices</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_DEFLECTION_SHAPE</source>
+        <translation>Deflection shape</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_DEFLECTION_SHAPE</source>
+        <translation>Deflection shape</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_POINT_SPRITE</source>
+        <translation>Point sprite</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_POINT_SPRITE</source>
+        <translation>Point sprite</translation>
+    </message>
+    <message>
+        <source>LAB_DELETE_PRESENTATION</source>
+        <translation>Delete presentation</translation>
+    </message>
+    <message>
+        <source>TIP_DELETE_PRESENTATION</source>
+        <translation>Delete selected presentation</translation>
+    </message>
+    <message>
+        <source>LAB_PARAVIS_DUMP</source>
+        <translation>Dump pipeline</translation>
+    </message>
+    <message>
+        <source>TIP_PARAVIS_DUMP</source>
+        <translation>Dump the low level Python commands of the presentation</translation>
+    </message>
+    <message>
+        <source>MENU_PRESENTATIONS</source>
+        <translation>Presentations</translation>
+    </message>
+    <message>
+        <source>MEDPresentationMeshView</source>
+        <translation>Mesh view</translation>
+    </message>
+    <message>
+        <source>MEDPresentationScalarMap</source>
+        <translation>Scalar map</translation>
+    </message>
+    <message>
+        <source>MEDPresentationContour</source>
+        <translation>Contour</translation>
+    </message>
+    <message>
+        <source>MEDPresentationVectorField</source>
+        <translation>Vector field</translation>
+    </message>
+    <message>
+        <source>MEDPresentationSlices</source>
+        <translation>Slices</translation>
+    </message>
+    <message>
+        <source>MEDPresentationDeflectionShape</source>
+        <translation>Deflection shape</translation>
+    </message>
+    <message>
+        <source>MEDPresentationPointSprite</source>
+        <translation>Point sprite</translation>
+    </message>
+</context>
+<context>
+    <name>ProcessingController</name>
+    <message>
+        <source>MENU_PROCESSING</source>
+        <translation>Processing</translation>
+    </message>
+    <message>
+        <source>LAB_PROCESSING_CHANGE_MESH</source>
+        <translation>Change underlying mesh</translation>
+    </message>
+    <message>
+        <source>LAB_PROCESSING_INTERPOLATE_FIELD</source>
+        <translation>Interpolate field</translation>
+    </message>
+</context>
+<context>
+    <name>DatasourceController</name>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="45"/>
+        <source>LAB_ADD_DATA_SOURCE</source>
+        <translation>Add Data Source</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="46"/>
+        <source>TIP_ADD_DATA_SOURCE</source>
+        <translation>Add a file data source (file providing med data)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="52"/>
+        <source>LAB_ADD_IMAGE_SOURCE</source>
+        <translation>Add Image Source</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="53"/>
+        <source>TIP_ADD_IMAGE_SOURCE</source>
+        <translation>Create a Data Source from an image file</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="62"/>
+        <source>LAB_EXPAND_FIELD</source>
+        <translation>Expand field timeseries</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="75"/>
+        <source>LAB_USE_IN_WORKSPACE</source>
+        <translation>Use in workspace</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="157"/>
+        <source>IMPORT_MED_FIELDS</source>
+        <translation>Import MED fields</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="191"/>
+        <source>OPERATION_FAILED</source>
+        <translation>Operation failed</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="192"/>
+        <source>CREATION_FAILED</source>
+        <translation>The creation of med data from the image file failed</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="283"/>
+        <source>OPERATION_NOT_ALLOWED</source>
+        <translation>Operation not allowed</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="284"/>
+        <source>FIELD_ALREADY_DEFINED</source>
+        <translation>This field is already defined in the workspace</translation>
+    </message>
+</context>
+<context>
+    <name>WidgetPresentationParameters</name>
+    <message>
+        <source>LAB_DEFAULT_DYN_TITLE</source>
+        <translation>Default parameters</translation>
+    </message>
+    <message>
+        <source>LAB_DISP_COMP</source>
+        <translation>Displayed component:</translation>
+    </message>
+    <message>
+        <source>LAB_EUCLIDEAN_NORM</source>
+        <translation>Euclidean norm</translation>
+    </message>
+    <message>
+        <source>LAB_SCALARBAR</source>
+        <translation>Scalar bar:</translation>
+    </message>
+    <message>
+        <source>LAB_RANGE</source>
+        <translation>Range:</translation>
+    </message>
+    <message>
+        <source>LAB_ALL_TIMESTEPS</source>
+        <translation>All timesteps</translation>
+    </message>
+    <message>
+        <source>LAB_CURRENT_TIMESTEP</source>
+        <translation>Current timestep</translation>
+    </message>
+    <message>
+        <source>LAB_USER_RANGE</source>
+        <translation>User-specified</translation>
+    </message>
+    <message>
+        <source>LAB_TIMESTEP</source>
+        <translation>Timestep:</translation>
+    </message>
+    <message>
+        <source>LAB_MIN_VALUE</source>
+        <translation>Min value:</translation>
+    </message>
+    <message>
+        <source>LAB_MAX_VALUE</source>
+        <translation>Max value:</translation>
+    </message>
+    <message>
+        <source>LAB_COLOR_MAP</source>
+        <translation>Color map:</translation>
+    </message>
+    <message>
+        <source>LAB_MESH_WIREFRAME</source>
+        <translation>Wireframe</translation>
+    </message>
+    <message>
+        <source>LAB_MESH_SURFACE</source>
+        <translation>Surface</translation>
+    </message>
+    <message>
+        <source>LAB_MESH_SURF_EDGES</source>
+        <translation>Surface With Edges</translation>
+    </message>
+    <message>
+        <source>LAB_DISP_MESH_MODE</source>
+        <translation>Mesh display:</translation>
+    </message>
+    <message>
+        <source>LAB_NB_CONTOURS</source>
+        <translation>Number of contours (max. %1):</translation>
+    </message>
+    <message>
+        <source>LAB_NB_SLICES</source>
+        <translation>Number of slices (max. %1):</translation>
+    </message>
+    <message>
+        <source>LAB_SPINBOX_TOOLTIP</source>
+        <translation>Hit &apos;Enter&apos; to apply</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_ORIENT</source>
+        <translation>Slice orientation:</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_X</source>
+        <translation>Normal to X</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_Y</source>
+        <translation>Normal to Y</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_Z</source>
+        <translation>Normal to Z</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_XY</source>
+        <translation>Normal to XY</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_XZ</source>
+        <translation>Normal to XZ</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_YZ</source>
+        <translation>Normal to YZ</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_XYZ</source>
+        <translation>Normal to XYZ</translation>
+    </message>
+    <message>
+        <source>LAB_BLUE_TO_RED</source>
+        <translation>Blue to red rainbow</translation>
+    </message>
+    <message>
+        <source>LAB_COOL_TO_WARM</source>
+        <translation>Cool to warm</translation>
+    </message>
+</context>
+<context>
+    <name>DlgAlias</name>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="14"/>
+        <source>SELECT_AN_ALIAS_FOR_THE_FIELD</source>
+        <translation>Select an alias for the field</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="401"/>
+        <source>DEFINE_AN_ALIAS</source>
+        <translation>You can define an alias to manipulate the field in console:</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="419"/>
+        <source>ALIAS</source>
+        <translation>Alias</translation>
+    </message>
+    <message utf8="true">
+        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="436"/>
+        <source>MSG_OPERATION_DEFINES_VARIABLE</source>
+        <translation>(this operation defines a variable named &lt;alias&gt; in TUI console. Enter &quot;&lt;alias&gt;.help()&quot; to see available functions, or simply &quot;doc&quot;)</translation>
+    </message>
+</context>
+<context>
+    <name>DlgChangeUnderlyingMesh</name>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="14"/>
+        <source>FORM</source>
+        <translation>Form</translation>
+    </message>
+    <message utf8="true">
+        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="403"/>
+        <source>MESH_GT</source>
+        <translation>Mesh -&gt;</translation>
+    </message>
+    <message utf8="true">
+        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="420"/>
+        <source>MSG_EXPLORER</source>
+        <translation>(Explorer provides a view on MED data sources (mesh and fields) referenced in data space)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.cxx" line="35"/>
+        <source>DATA_VERIFICATION</source>
+        <translation>Data verification</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.cxx" line="36"/>
+        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="391"/>
+        <source>SELECT_MESH</source>
+        <translation>You must select a mesh in the explorer and clic the button Mesh</translation>
+    </message>
+</context>
+<context>
+    <name>DlgInterpolateField</name>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="391"/>
+        <source>SELECT_MESH</source>
+        <translation>You must select a mesh in the explorer and clic the button Mesh</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="406"/>
+        <source>TARGET_MESH_GT</source>
+        <translation>Target mesh -&gt;</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="423"/>
+        <source>MSG_EXPLORER</source>
+        <translation>(Explorer provides a view on MED data sources (mesh and fields) referenced in data space)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="450"/>
+        <source>LABEL_PRECISION</source>
+        <translation>Interpolator precision</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="493"/>
+        <source>LABEL_INTERSECTION_TYPE</source>
+        <translation>Intersection type</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="520"/>
+        <source>LABEL_METHOD</source>
+        <translation>Interpolation method</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="547"/>
+        <source>LABEL_DEFAULT_VALUE</source>
+        <translation>Default value of resulting field</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="581"/>
+        <source>LABEL_REVERSE</source>
+        <translation>Reverse interpolation ?</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="612"/>
+        <source>LABEL_NATURE</source>
+        <translation>Field nature</translation>
+    </message>
+</context>
+<context>
+    <name>DlgImageToMed</name>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="14"/>
+        <source>FORM</source>
+        <translation>Form</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="28"/>
+        <source>IMAGE_FILE</source>
+        <translation>Image file:</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="35"/>
+        <source>MED_FILE</source>
+        <translation>MED file:</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="64"/>
+        <source>SELECT_IMAGE_FILE</source>
+        <translation>Select image file</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="79"/>
+        <source>SPECIFY_MED_FILE</source>
+        <translation>Specify a MED file</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="82"/>
+        <source>LOAD_AUTOMATICALLY</source>
+        <translation>Load automatically</translation>
+    </message>
+</context>
+<context>
+    <name>DlgUseInWorkspace</name>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="13"/>
+        <source>FORM</source>
+        <translation>Form</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="49"/>
+        <source>PRESSURE</source>
+        <translation>Pressure:</translation>
+    </message>
+    <message utf8="true">
+        <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="56"/>
+        <source>TEMPERATURE</source>
+        <translation>Temperature:</translation>
+    </message>
+</context>
+<context>
+    <name>GenericDialog</name>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/GenericDialog.ui" line="13"/>
+        <source>DIALOG</source>
+        <translation>Dialog</translation>
+    </message>
+</context>
+<context>
+    <name>MEDModule</name>
+    <message>
+        <location filename="MEDCALC/gui/MEDModule.cxx" line="68"/>
+        <location filename="MEDCALC/gui/MEDModule.cxx" line="157"/>
+        <source>IMPORT_FROM_FILE</source>
+        <translation>Import from File</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/MEDModule.cxx" line="69"/>
+        <source>IMPORT_MED_FILE</source>
+        <translation>Import MED file</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/MEDModule.cxx" line="72"/>
+        <source>MEN_FILE</source>
+        <translation>&amp;File</translation>
+    </message>
+    <message>
+        <source>PREF_TAB_GENERAL</source>
+        <translation>General</translation>
+    </message>
+    <message>
+        <source>PREF_THEME_GROUP</source>
+        <translation>Theme</translation>
+    </message>
+    <message>
+        <source>PREF_ICONS</source>
+        <translation>Icons</translation>
+    </message>
+    <message>
+        <source>PREF_ICON_THEME_MODERN</source>
+        <translation>Modern</translation>
+    </message>
+    <message>
+        <source>PREF_ICON_THEME_CLASSIC</source>
+        <translation>Classic</translation>
+    </message>
+</context>
+<context>
+    <name>WorkspaceController</name>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="66"/>
+        <source>VISUALIZE_SCALAR_MAP</source>
+        <translation>Visualize (scalar map)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="67"/>
+        <source>USE_IN_CONSOLE</source>
+        <translation>Use (in console)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="68"/>
+        <source>EXPORT_TO_PARAVIS</source>
+        <translation>Export (to PARAVIS)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="69"/>
+        <source>SAVE_AS_MED</source>
+        <translation>Save (as MED file)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="70"/>
+        <source>REMOVE_FROM_WORKSPACE</source>
+        <translation>Remove (from workspace)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="91"/>
+        <source>LAB_SAVE_WORKSPACE</source>
+        <translation>Save workspace</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="92"/>
+        <source>TIP_SAVE_WORKSPACE</source>
+        <translation>Save the workspace (fields and meshes) in a MED file</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="97"/>
+        <source>LAB_CLEAN_WORKSPACE</source>
+        <translation>Clean workspace</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="98"/>
+        <source>TIP_CLEAN_WORKSPACE</source>
+        <translation>Clean all data in the workspace</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="271"/>
+        <source>SAVE_SELECTED_FIELDS</source>
+        <translation>Save selected fields</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="425"/>
+        <source>SAVE_WORKSPACE_DATA</source>
+        <translation>Save workspace data</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="439"/>
+        <source>NOT_IMPLEMENTED_YET</source>
+        <translation>Not implemented yet</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="440"/>
+        <source>FUNCTION_NOT_IMPLEMENTED</source>
+        <translation>This function is not implemented yet</translation>
+    </message>
+</context>
+<context>
+    <name>@default</name>
+    <message>
+        <location filename="MEDCALC/gui/MEDModule.cxx" line="151"/>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="152"/>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="75"/>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="267"/>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="420"/>
+        <source>FILE_FILTER_MED</source>
+        <translation>MED files (*.med)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="57"/>
+        <source>FILE_FILTER_PNG</source>
+        <translation>PNG image (*.png)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="58"/>
+        <source>FILE_FILTER_JPG</source>
+        <translation>JPG image (*.jpg)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="59"/>
+        <source>FILE_FILTER_PGM</source>
+        <translation>PGM image (*.jpg)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="60"/>
+        <source>FILE_FILTER_ALL</source>
+        <translation>All files (*.*)</translation>
+    </message>
+    <message>
+        <source>LAB_VIEW_MODE</source>
+        <translation>View mode:</translation>
+    </message>
+    <message>
+        <source>LAB_VIEW_MODE_REPLACE</source>
+        <translation>Replace</translation>
+    </message>
+    <message>
+        <source>LAB_VIEW_MODE_OVERLAP</source>
+        <translation>Overlap</translation>
+    </message>
+    <message>
+        <source>LAB_VIEW_MODE_NEW_LAYOUT</source>
+        <translation>New layout</translation>
+    </message>
+    <message>
+        <source>LAB_VIEW_MODE_SPLIT_VIEW</source>
+        <translation>Split</translation>
+    </message>
+</context>
+</TS>
diff --git a/src/MEDCalc/gui/FIELDS_msg_fr.ts b/src/MEDCalc/gui/FIELDS_msg_fr.ts
new file mode 100644 (file)
index 0000000..8b92efa
--- /dev/null
@@ -0,0 +1,625 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.0" language="fr">
+<context>
+    <name>PresentationController</name>
+    <message>
+        <source>TITLE_PRESENTATION_PARAMETERS</source>
+        <translation>Paramètres de presentation</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_MESH_VIEW</source>
+        <translation>Maillage</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_MESH_VIEW</source>
+        <translation>Maillage</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_SCALAR_MAP</source>
+        <translation>Carte scalaire</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_SCALAR_MAP</source>
+        <translation>Carte scalaire</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_CONTOUR</source>
+        <translation>Contour</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_CONTOUR</source>
+        <translation>Contour</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_VECTOR_FIELD</source>
+        <translation>Champ de vecteurs</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_VECTOR_FIELD</source>
+        <translation>Champ de vecteurs</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_SLICES</source>
+        <translation>Coupes</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_SLICES</source>
+        <translation>Coupes</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_DEFLECTION_SHAPE</source>
+        <translation>Déformée</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_DEFLECTION_SHAPE</source>
+        <translation>Déformée</translation>
+    </message>
+    <message>
+        <source>LAB_PRESENTATION_POINT_SPRITE</source>
+        <translation>Point sprite</translation>
+    </message>
+    <message>
+        <source>TIP_PRESENTATION_POINT_SPRITE</source>
+        <translation>Point sprite</translation>
+    </message>
+    <message>
+        <source>LAB_DELETE_PRESENTATION</source>
+        <translation>Supprimer</translation>
+    </message>
+    <message>
+        <source>TIP_DELETE_PRESENTATION</source>
+        <translation>Supprime la présentation sélectionnée</translation>
+    </message>
+    <message>
+        <source>LAB_PARAVIS_DUMP</source>
+        <translation>Trace du pipeline</translation>
+    </message>
+    <message>
+        <source>TIP_PARAVIS_DUMP</source>
+        <translation>Affiche les commandes Python bas niveau de la présentation</translation>
+    </message>
+    <message>
+        <source>MENU_PRESENTATIONS</source>
+        <translation>Présentations</translation>
+    </message>
+    <message>
+        <source>MEDPresentationMeshView</source>
+        <translation>Maillage</translation>
+    </message>
+    <message>
+        <source>MEDPresentationScalarMap</source>
+        <translation>Carte scalaire</translation>
+    </message>
+    <message>
+        <source>MEDPresentationContour</source>
+        <translation>Contour</translation>
+    </message>
+    <message>
+        <source>MEDPresentationVectorField</source>
+        <translation>Champ de vecteurs</translation>
+    </message>
+    <message>
+        <source>MEDPresentationSlices</source>
+        <translation>Coupes</translation>
+    </message>
+    <message>
+        <source>MEDPresentationDeflectionShape</source>
+        <translation>Déformée</translation>
+    </message>
+    <message>
+        <source>MEDPresentationPointSprite</source>
+        <translation>Point sprite</translation>
+    </message>
+</context>
+<context>
+    <name>ProcessingController</name>
+    <message>
+        <source>MENU_PROCESSING</source>
+        <translation>Traitement</translation>
+    </message>
+    <message>
+        <source>LAB_PROCESSING_CHANGE_MESH</source>
+        <translation>Changer le maillage sous-jacent</translation>
+    </message>
+    <message>
+        <source>LAB_PROCESSING_INTERPOLATE_FIELD</source>
+        <translation>Interpoler le champ</translation>
+    </message>
+</context>
+<context>
+    <name>DatasourceController</name>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="45"/>
+        <source>LAB_ADD_DATA_SOURCE</source>
+        <translation>Importer des données MED</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="46"/>
+        <source>TIP_ADD_DATA_SOURCE</source>
+        <translation>Ajouter des données par import de fichiers MED</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="52"/>
+        <source>LAB_ADD_IMAGE_SOURCE</source>
+        <translation>Ajouter une image</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="53"/>
+        <source>TIP_ADD_IMAGE_SOURCE</source>
+        <translation>Ajouter des données par import d&apos;un fichier image</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="62"/>
+        <source>LAB_EXPAND_FIELD</source>
+        <translation>Étendre les series temporelles du champ</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="75"/>
+        <source>LAB_USE_IN_WORKSPACE</source>
+        <translation>Utiliser dans l&apos;espace de travail</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="157"/>
+        <source>IMPORT_MED_FIELDS</source>
+        <translation>Importer des champs (format MED)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="191"/>
+        <source>OPERATION_FAILED</source>
+        <translation>L&apos;opération a échoué</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="192"/>
+        <source>CREATION_FAILED</source>
+        <translation>La création des données MED à partir d&apos;un fichier image a échoué</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="283"/>
+        <source>OPERATION_NOT_ALLOWED</source>
+        <translation>Opération non autorisée</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="284"/>
+        <source>FIELD_ALREADY_DEFINED</source>
+        <translation>Ce champ est déjà défini dans l&apos;espace de travail</translation>
+    </message>
+</context>
+<context>
+    <name>WidgetPresentationParameters</name>
+    <message>
+        <source>LAB_DEFAULT_DYN_TITLE</source>
+        <translation>Paramètres par défaut</translation>
+    </message>    
+    <message>
+        <source>LAB_DISP_COMP</source>
+        <translation>Composante affichée :</translation>
+    </message>
+    <message>
+        <source>LAB_EUCLIDEAN_NORM</source>
+        <translation>Norme euclidienne</translation>
+    </message>
+    <message>
+        <source>LAB_SCALARBAR</source>
+        <translation>Echelle de valeurs :</translation>
+    </message>
+    <message>
+        <source>LAB_RANGE</source>
+        <translation>Intervalle :</translation>
+    </message>
+    <message>
+        <source>LAB_ALL_TIMESTEPS</source>
+        <translation>Tous les pas de temps</translation>
+    </message>
+    <message>
+        <source>LAB_CURRENT_TIMESTEP</source>
+        <translation>Pas de temps courant</translation>
+    </message>
+    <message>
+        <source>LAB_USER_RANGE</source>
+        <translation>Personnalisé :</translation>
+    </message>
+    <message>
+        <source>LAB_TIMESTEP</source>
+        <translation>Pas de temps :</translation>
+    </message>
+    <message>
+        <source>LAB_MIN_VALUE</source>
+        <translation>Valeur min :</translation>
+    </message>
+    <message>
+        <source>LAB_MAX_VALUE</source>
+        <translation>Valeur max :</translation>
+    </message>
+    <message>
+        <source>LAB_COLOR_MAP</source>
+        <translation>Table de couleurs :</translation>
+    </message>
+    <message>
+        <source>LAB_MESH_WIREFRAME</source>
+        <translation>Fil de fer</translation>
+    </message>
+    <message>
+        <source>LAB_MESH_SURFACE</source>
+        <translation>Surface</translation>
+    </message>
+    <message>
+        <source>LAB_MESH_SURF_EDGES</source>
+        <translation>Surface Avec Arrêtes</translation>
+    </message>
+    <message>
+        <source>LAB_DISP_MESH_MODE</source>
+        <translation>Affichage du maillage:</translation>
+    </message>
+    <message>
+        <source>LAB_NB_CONTOURS</source>
+        <translation>Nombre de contours (max. %1) :</translation>
+    </message>
+    <message>
+        <source>LAB_NB_SLICES</source>
+        <translation>Nombres de coupes (max. %1) :</translation>
+    </message>
+    <message>
+        <source>LAB_SPINBOX_TOOLTIP</source>
+        <translation>Taper &apos;Entrée&apos; pour appliquer</translation>
+    </message>    
+    <message>
+        <source>LAB_SLICE_ORIENT</source>
+        <translation>Orientation des coupes:</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_X</source>
+        <translation>Normale à X</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_Y</source>
+        <translation>Normale à Y</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_Z</source>
+        <translation>Normale à Z</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_XY</source>
+        <translation>Normale à XY</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_XZ</source>
+        <translation>Normale à XZ</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_YZ</source>
+        <translation>Normale à YZ</translation>
+    </message>
+    <message>
+        <source>LAB_SLICE_NORMAL_TO_XYZ</source>
+        <translation>Normale à XYZ</translation>
+    </message>    
+    <message>
+        <source>LAB_BLUE_TO_RED</source>
+        <translation>Arc-en-ciel bleu vers rouge</translation>
+    </message>
+    <message>
+        <source>LAB_COOL_TO_WARM</source>
+        <translation>Froid vers chaud</translation>
+    </message>
+</context>
+<context>
+    <name>DlgAlias</name>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="14"/>
+        <source>SELECT_AN_ALIAS_FOR_THE_FIELD</source>
+        <translation>Selectionner un alias pour ce champ</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="401"/>
+        <source>DEFINE_AN_ALIAS</source>
+        <translation>Vous pouvez définir un alias pour manipuler le champs dans la console:</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="419"/>
+        <source>ALIAS</source>
+        <translation>Alias</translation>
+    </message>
+    <message utf8="true">
+        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="436"/>
+        <source>MSG_OPERATION_DEFINES_VARIABLE</source>
+        <translation>(cette opération définit une variable nommée &lt;alias&gt; dans la console texte. Tapez &quot;&lt;alias&gt;.help()&quot; pour voir les fonctions disponibles, ou simplement &quot;doc&quot;)</translation>
+    </message>
+</context>
+<context>
+    <name>DlgChangeUnderlyingMesh</name>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="14"/>
+        <source>FORM</source>
+        <translation>Formulaire</translation>
+    </message>
+    <message utf8="true">
+        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="403"/>
+        <source>MESH_GT</source>
+        <translation>Maillage -&gt;</translation>
+    </message>
+    <message utf8="true">
+        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="420"/>
+        <source>MSG_EXPLORER</source>
+        <translation>(L&apos;explorateur fournit une vue des données MED (maillage et champs) référencées dans l&apos;espace des données)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.cxx" line="35"/>
+        <source>DATA_VERIFICATION</source>
+        <translation>Vérification des données</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.cxx" line="36"/>
+        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="391"/>
+        <source>SELECT_MESH</source>
+        <translation>Vous devez sélectionner un maillage dans l&apos;explorateur et cliquer sur le bouton Maillage</translation>
+    </message>
+</context>
+<context>
+    <name>DlgInterpolateField</name>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="391"/>
+        <source>SELECT_MESH</source>
+        <translation>Vous devez sélectionner un maillage dans l&apos;explorateur et cliquer sur le bouton Maillage</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="406"/>
+        <source>TARGET_MESH_GT</source>
+        <translation>Maillage cible -&gt;</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="423"/>
+        <source>MSG_EXPLORER</source>
+        <translation>(L&apos;explorateur fournit une vue des données MED (maillage et champs) référencées dans l&apos;espace des données)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="450"/>
+        <source>LABEL_PRECISION</source>
+        <translation>Précision de l&apos;interpolateur</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="493"/>
+        <source>LABEL_INTERSECTION_TYPE</source>
+        <translation>Type d&apos;intersection</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="520"/>
+        <source>LABEL_METHOD</source>
+        <translation>Méthode d&apos;interpolation</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="547"/>
+        <source>LABEL_DEFAULT_VALUE</source>
+        <translation>Valeur par défaut du champ résultant</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="581"/>
+        <source>LABEL_REVERSE</source>
+        <translation>Interpolation inverse ?</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="612"/>
+        <source>LABEL_NATURE</source>
+        <translation>Nature du champ</translation>
+    </message>
+</context>
+<context>
+    <name>DlgImageToMed</name>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="14"/>
+        <source>FORM</source>
+        <translation>Formulaire</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="28"/>
+        <source>IMAGE_FILE</source>
+        <translation>Fichier image :</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="35"/>
+        <source>MED_FILE</source>
+        <translation>Fichier MED :</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="64"/>
+        <source>SELECT_IMAGE_FILE</source>
+        <translation>Selectionner un fichier image</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="79"/>
+        <source>SPECIFY_MED_FILE</source>
+        <translation>Spécifier un fichier MED</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="82"/>
+        <source>LOAD_AUTOMATICALLY</source>
+        <translation>Charger automatiquement</translation>
+    </message>
+</context>
+<context>
+    <name>DlgUseInWorkspace</name>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="13"/>
+        <source>FORM</source>
+        <translation>Formulaire</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="49"/>
+        <source>PRESSURE</source>
+        <translation>Pression :</translation>
+    </message>
+    <message utf8="true">
+        <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="56"/>
+        <source>TEMPERATURE</source>
+        <translation>Température :</translation>
+    </message>
+</context>
+<context>
+    <name>GenericDialog</name>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/GenericDialog.ui" line="13"/>
+        <source>DIALOG</source>
+        <translation>Dialogue</translation>
+    </message>
+</context>
+<context>
+    <name>MEDModule</name>
+    <message>
+        <location filename="MEDCALC/gui/MEDModule.cxx" line="68"/>
+        <location filename="MEDCALC/gui/MEDModule.cxx" line="157"/>
+        <source>IMPORT_FROM_FILE</source>
+        <translation>Importer depuis un fichier</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/MEDModule.cxx" line="69"/>
+        <source>IMPORT_MED_FILE</source>
+        <translation>Importer un fichier MED</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/MEDModule.cxx" line="72"/>
+        <source>MEN_FILE</source>
+        <translation>&amp;Fichier</translation>
+    </message>
+    <message>
+        <source>PREF_TAB_GENERAL</source>
+        <translation>Général</translation>
+    </message>
+    <message>
+        <source>PREF_THEME_GROUP</source>
+        <translation>Thème</translation>
+    </message>
+    <message>
+        <source>PREF_ICONS</source>
+        <translation>Icones</translation>
+    </message>
+    <message>
+        <source>PREF_ICON_THEME_MODERN</source>
+        <translation>Moderne</translation>
+    </message>
+    <message>
+        <source>PREF_ICON_THEME_CLASSIC</source>
+        <translation>Classique</translation>
+    </message>
+</context>
+<context>
+    <name>WorkspaceController</name>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="66"/>
+        <source>VISUALIZE_SCALAR_MAP</source>
+        <translation>Visualiser (carte scalaire)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="67"/>
+        <source>USE_IN_CONSOLE</source>
+        <translation>Utiliser (dans la console)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="68"/>
+        <source>EXPORT_TO_PARAVIS</source>
+        <translation>Exporter (vers PARAVIS)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="69"/>
+        <source>SAVE_AS_MED</source>
+        <translation>Sauvegarder (dans un fichier MED)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="70"/>
+        <source>REMOVE_FROM_WORKSPACE</source>
+        <translation>Supprimer (de l&apos;espace de travail)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="91"/>
+        <source>LAB_SAVE_WORKSPACE</source>
+        <translation>Sauvegarder l&apos;espace de travail</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="92"/>
+        <source>TIP_SAVE_WORKSPACE</source>
+        <translation>Sauvegarder l&apos;espace de travail (champs et maillages) dans un fichier MED</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="97"/>
+        <source>LAB_CLEAN_WORKSPACE</source>
+        <translation>Nettoyer l&apos;espace de travail</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="98"/>
+        <source>TIP_CLEAN_WORKSPACE</source>
+        <translation>Effacer toute les données de l&apos;espace de travail</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="271"/>
+        <source>SAVE_SELECTED_FIELDS</source>
+        <translation>Sauvegarder les champs sélectionnés</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="425"/>
+        <source>SAVE_WORKSPACE_DATA</source>
+        <translation>Sauvegarder les données de l&apos;espace de travail</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="439"/>
+        <source>NOT_IMPLEMENTED_YET</source>
+        <translation>Non implémenté</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="440"/>
+        <source>FUNCTION_NOT_IMPLEMENTED</source>
+        <translation>Cette function n&apos;est pas encore implémentée</translation>
+    </message>
+</context>
+<context>
+    <name>@default</name>
+    <message>
+        <location filename="MEDCALC/gui/MEDModule.cxx" line="151"/>
+        <location filename="MEDCALC/gui/DatasourceController.cxx" line="152"/>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="75"/>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="267"/>
+        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="420"/>
+        <source>FILE_FILTER_MED</source>
+        <translation>Fichiers MED (*.med)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="57"/>
+        <source>FILE_FILTER_PNG</source>
+        <translation>Image PNG (*.png)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="58"/>
+        <source>FILE_FILTER_JPG</source>
+        <translation>Image JPG (*.jpg)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="59"/>
+        <source>FILE_FILTER_PGM</source>
+        <translation>Image PGM (*.jpg)</translation>
+    </message>
+    <message>
+        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="60"/>
+        <source>FILE_FILTER_ALL</source>
+        <translation>Tous les fichiers (*.*)</translation>
+    </message>
+    <message>
+        <source>LAB_VIEW_MODE</source>
+        <translation>Mode de rendu :</translation>
+    </message>
+    <message>
+        <source>LAB_VIEW_MODE_REPLACE</source>
+        <translation>Remplacer</translation>
+    </message>
+    <message>
+        <source>LAB_VIEW_MODE_OVERLAP</source>
+        <translation>Superposer</translation>
+    </message>
+    <message>
+        <source>LAB_VIEW_MODE_NEW_LAYOUT</source>
+        <translation>Nouvel onglet</translation>
+    </message>
+    <message>
+        <source>LAB_VIEW_MODE_SPLIT_VIEW</source>
+        <translation>Scinder</translation>
+    </message>
+</context>
+</TS>
diff --git a/src/MEDCalc/gui/FIELDS_msg_ja.ts b/src/MEDCalc/gui/FIELDS_msg_ja.ts
new file mode 100644 (file)
index 0000000..59f48fb
--- /dev/null
@@ -0,0 +1,625 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.0" language="ja" sourcelanguage="en">
+  <context>
+    <name>PresentationController</name>
+    <message>
+      <source>TITLE_PRESENTATION_PARAMETERS</source>
+      <translation>表現パラメータ</translation>
+    </message>
+    <message>
+      <source>LAB_PRESENTATION_MESH_VIEW</source>
+      <translation>メッシュ</translation>
+    </message>
+    <message>
+      <source>TIP_PRESENTATION_MESH_VIEW</source>
+      <translation>メッシュ</translation>
+    </message>
+    <message>
+      <source>LAB_PRESENTATION_SCALAR_MAP</source>
+      <translation>スカラーマップ</translation>
+    </message>
+    <message>
+      <source>TIP_PRESENTATION_SCALAR_MAP</source>
+      <translation>スカラーマップ</translation>
+    </message>
+    <message>
+      <source>LAB_PRESENTATION_CONTOUR</source>
+      <translation>コンター</translation>
+    </message>
+    <message>
+      <source>TIP_PRESENTATION_CONTOUR</source>
+      <translation>コンター</translation>
+    </message>
+    <message>
+      <source>LAB_PRESENTATION_VECTOR_FIELD</source>
+      <translation>ベクトル場</translation>
+    </message>
+    <message>
+      <source>TIP_PRESENTATION_VECTOR_FIELD</source>
+      <translation>ベクトル場</translation>
+    </message>
+    <message>
+      <source>LAB_PRESENTATION_SLICES</source>
+      <translation>スライス</translation>
+    </message>
+    <message>
+      <source>TIP_PRESENTATION_SLICES</source>
+      <translation>スライス</translation>
+    </message>
+    <message>
+      <source>LAB_PRESENTATION_DEFLECTION_SHAPE</source>
+      <translation>偏差形状</translation>
+    </message>
+    <message>
+      <source>TIP_PRESENTATION_DEFLECTION_SHAPE</source>
+      <translation>偏差形状</translation>
+    </message>
+    <message>
+      <source>LAB_PRESENTATION_POINT_SPRITE</source>
+      <translation>点スプライト描画</translation>
+    </message>
+    <message>
+      <source>TIP_PRESENTATION_POINT_SPRITE</source>
+      <translation>点スプライト</translation>
+    </message>
+    <message>
+      <source>LAB_DELETE_PRESENTATION</source>
+      <translation>プレゼンテーションの削除</translation>
+    </message>
+    <message>
+      <source>TIP_DELETE_PRESENTATION</source>
+      <translation>選択されたプレゼンテーションの削除</translation>
+    </message>
+    <message>
+      <source>LAB_PARAVIS_DUMP</source>
+      <translation>パイプラインの保存</translation>
+    </message>
+    <message>
+      <source>TIP_PARAVIS_DUMP</source>
+      <translation>プレゼンテーションの低レベルPythonコマンドをダンプ</translation>
+    </message>
+    <message>
+      <source>MENU_PRESENTATIONS</source>
+      <translation>プレゼンテーション</translation>
+    </message>
+    <message>
+      <source>MEDPresentationMeshView</source>
+      <translation>メッシュビュー</translation>
+    </message>
+    <message>
+      <source>MEDPresentationScalarMap</source>
+      <translation>スカラーマップ</translation>
+    </message>
+    <message>
+      <source>MEDPresentationContour</source>
+      <translation>コンター</translation>
+    </message>
+    <message>
+      <source>MEDPresentationVectorField</source>
+      <translation>ベクトル場</translation>
+    </message>
+    <message>
+      <source>MEDPresentationSlices</source>
+      <translation>スライス</translation>
+    </message>
+    <message>
+      <source>MEDPresentationDeflectionShape</source>
+      <translation>偏差形状</translation>
+    </message>
+    <message>
+      <source>MEDPresentationPointSprite</source>
+      <translation>点スプライト描画</translation>
+    </message>
+  </context>
+  <context>
+    <name>ProcessingController</name>
+    <message>
+      <source>MENU_PROCESSING</source>
+      <translation>処理中</translation>
+    </message>
+    <message>
+      <source>LAB_PROCESSING_CHANGE_MESH</source>
+      <translation>基本要素の変更</translation>
+    </message>
+    <message>
+      <source>LAB_PROCESSING_INTERPOLATE_FIELD</source>
+      <translation>場の補間</translation>
+    </message>
+  </context>
+  <context>
+    <name>DatasourceController</name>
+    <message>
+      <location filename="MEDCALC/gui/DatasourceController.cxx" line="45"/>
+      <source>LAB_ADD_DATA_SOURCE</source>
+      <translation>データソースの追加</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/DatasourceController.cxx" line="46"/>
+      <source>TIP_ADD_DATA_SOURCE</source>
+      <translation>(medデータを供給する)ファイルデータソースの追加</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/DatasourceController.cxx" line="52"/>
+      <source>LAB_ADD_IMAGE_SOURCE</source>
+      <translation>イメージソースの追加</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/DatasourceController.cxx" line="53"/>
+      <source>TIP_ADD_IMAGE_SOURCE</source>
+      <translation>イメージファイルからデータソースの作成</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/DatasourceController.cxx" line="62"/>
+      <source>LAB_EXPAND_FIELD</source>
+      <translation>場の時系列を拡張</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/DatasourceController.cxx" line="75"/>
+      <source>LAB_USE_IN_WORKSPACE</source>
+      <translation>ワークスペースの使用</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/DatasourceController.cxx" line="157"/>
+      <source>IMPORT_MED_FIELDS</source>
+      <translation>MEDフィールドのインポート</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/DatasourceController.cxx" line="191"/>
+      <source>OPERATION_FAILED</source>
+      <translation>操作に失敗しました。</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/DatasourceController.cxx" line="192"/>
+      <source>CREATION_FAILED</source>
+      <translation>イメージファイルからMEDデータの作成に失敗しました。</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/DatasourceController.cxx" line="283"/>
+      <source>OPERATION_NOT_ALLOWED</source>
+      <translation>許可されていない操作です。</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/DatasourceController.cxx" line="284"/>
+      <source>FIELD_ALREADY_DEFINED</source>
+      <translation>この場はワークスペース内で既に定義されています。</translation>
+    </message>
+  </context>
+  <context>
+    <name>WidgetPresentationParameters</name>
+    <message>
+      <source>LAB_DEFAULT_DYN_TITLE</source>
+      <translation>デフォルトパラメータ</translation>
+    </message>
+    <message>
+      <source>LAB_DISP_COMP</source>
+      <translation>表示されたコンポーネント:</translation>
+    </message>
+    <message>
+      <source>LAB_EUCLIDEAN_NORM</source>
+      <translation>ユークリッド幾何学基準</translation>
+    </message>
+    <message>
+      <source>LAB_SCALARBAR</source>
+      <translation>スカラバー:</translation>
+    </message>
+    <message>
+      <source>LAB_RANGE</source>
+      <translation>範囲:</translation>
+    </message>
+    <message>
+      <source>LAB_ALL_TIMESTEPS</source>
+      <translation>すべてのタイムステップ</translation>
+    </message>
+    <message>
+      <source>LAB_CURRENT_TIMESTEP</source>
+      <translation>現在のタイムステップ</translation>
+    </message>
+    <message>
+      <source>LAB_USER_RANGE</source>
+      <translation>ユーザ指定</translation>
+    </message>
+    <message>
+      <source>LAB_TIMESTEP</source>
+      <translation>タイムステップ:</translation>
+    </message>
+    <message>
+      <source>LAB_MIN_VALUE</source>
+      <translation>最小値:</translation>
+    </message>
+    <message>
+      <source>LAB_MAX_VALUE</source>
+      <translation>最大値:</translation>
+    </message>
+    <message>
+      <source>LAB_COLOR_MAP</source>
+      <translation>カラーマップ:</translation>
+    </message>
+    <message>
+      <source>LAB_MESH_WIREFRAME</source>
+      <translation>ワイヤフレーム</translation>
+    </message>
+    <message>
+      <source>LAB_MESH_SURFACE</source>
+      <translation>表面</translation>
+    </message>
+    <message>
+      <source>LAB_MESH_SURF_EDGES</source>
+      <translation>エッジを持った表面</translation>
+    </message>
+    <message>
+      <source>LAB_DISP_MESH_MODE</source>
+      <translation>メッシュ表示:</translation>
+    </message>
+    <message>
+      <source>LAB_NB_CONTOURS</source>
+      <translation>コンタ数 (max. %1):</translation>
+    </message>
+    <message>
+      <source>LAB_NB_SLICES</source>
+      <translation>スライス数 (max. %1):</translation>
+    </message>
+    <message>
+      <source>LAB_SPINBOX_TOOLTIP</source>
+      <translation>Enterキーを押して適用</translation>
+    </message>
+    <message>
+      <source>LAB_SLICE_ORIENT</source>
+      <translation>スライス方向:</translation>
+    </message>
+    <message>
+      <source>LAB_SLICE_NORMAL_TO_X</source>
+      <translation>Xと垂直</translation>
+    </message>
+    <message>
+      <source>LAB_SLICE_NORMAL_TO_Y</source>
+      <translation>Yと垂直</translation>
+    </message>
+    <message>
+      <source>LAB_SLICE_NORMAL_TO_Z</source>
+      <translation>Zと垂直</translation>
+    </message>
+    <message>
+      <source>LAB_SLICE_NORMAL_TO_XY</source>
+      <translation>XYと垂直</translation>
+    </message>
+    <message>
+      <source>LAB_SLICE_NORMAL_TO_XZ</source>
+      <translation>XZと垂直</translation>
+    </message>
+    <message>
+      <source>LAB_SLICE_NORMAL_TO_YZ</source>
+      <translation>YZと垂直</translation>
+    </message>
+    <message>
+      <source>LAB_SLICE_NORMAL_TO_XYZ</source>
+      <translation>XYZと垂直</translation>
+    </message>
+    <message>
+      <source>LAB_BLUE_TO_RED</source>
+      <translation>青-赤 グラデーション</translation>
+    </message>
+    <message>
+      <source>LAB_COOL_TO_WARM</source>
+      <translation>冷却から温め</translation>
+    </message>
+  </context>
+  <context>
+    <name>DlgAlias</name>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="14"/>
+      <source>SELECT_AN_ALIAS_FOR_THE_FIELD</source>
+      <translation>場のエイリアスを選択</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="401"/>
+      <source>DEFINE_AN_ALIAS</source>
+      <translation>コンソールでの場の操作に対するエイリアスを定義することができる:</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="419"/>
+      <source>ALIAS</source>
+      <translation>エイリアス</translation>
+    </message>
+    <message utf8="true">
+      <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="436"/>
+      <source>MSG_OPERATION_DEFINES_VARIABLE</source>
+      <translation>(この操作はテキスト コンソールに&lt;alias&gt;という名前の変数を定義します。 "&lt;alias&gt;. help()"と入力すると機能、または単純な「doc」を見ることがきます)</translation>
+    </message>
+  </context>
+  <context>
+    <name>DlgChangeUnderlyingMesh</name>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="14"/>
+      <source>FORM</source>
+      <translation>フォーム</translation>
+    </message>
+    <message utf8="true">
+      <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="403"/>
+      <source>MESH_GT</source>
+      <translation>メッシュ -&gt;</translation>
+    </message>
+    <message utf8="true">
+      <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="420"/>
+      <source>MSG_EXPLORER</source>
+      <translation>エクスプローラによってデータスペース内で参照されたMEDデータソース(メッシュおよび場)上に表示します。</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.cxx" line="35"/>
+      <source>DATA_VERIFICATION</source>
+      <translation>データの検証</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.cxx" line="36"/>
+      <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="391"/>
+      <source>SELECT_MESH</source>
+      <translation>エクスプローラ内のメッシュを選択し、メッシュボタンをクリックする必要があります。</translation>
+    </message>
+  </context>
+  <context>
+    <name>DlgInterpolateField</name>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="391"/>
+      <source>SELECT_MESH</source>
+      <translation>エクスプローラ内のメッシュを選択し、メッシュボタンをクリックする必要があります。</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="406"/>
+      <source>TARGET_MESH_GT</source>
+      <translation>ターゲットのメッシュ -&gt;</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="423"/>
+      <source>MSG_EXPLORER</source>
+      <translation>エクスプローラによってデータスペース内で参照されたMEDデータソース(メッシュおよび場)上に表示します。</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="450"/>
+      <source>LABEL_PRECISION</source>
+      <translation>挿入精度</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="493"/>
+      <source>LABEL_INTERSECTION_TYPE</source>
+      <translation>交点タイプ</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="520"/>
+      <source>LABEL_METHOD</source>
+      <translation>挿入方法</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="547"/>
+      <source>LABEL_DEFAULT_VALUE</source>
+      <translation>結果フィールドのデフォルト値</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="581"/>
+      <source>LABEL_REVERSE</source>
+      <translation>挿入を反転しますか?</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="612"/>
+      <source>LABEL_NATURE</source>
+      <translation>フィールド性質</translation>
+    </message>
+  </context>
+  <context>
+    <name>DlgImageToMed</name>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="14"/>
+      <source>FORM</source>
+      <translation>フォーム</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="28"/>
+      <source>IMAGE_FILE</source>
+      <translation>画像ファイル:</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="35"/>
+      <source>MED_FILE</source>
+      <translation>MED ファイル:</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="64"/>
+      <source>SELECT_IMAGE_FILE</source>
+      <translation>イメージ ファイルの選択</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="79"/>
+      <source>SPECIFY_MED_FILE</source>
+      <translation>MED ファイルの指定</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="82"/>
+      <source>LOAD_AUTOMATICALLY</source>
+      <translation>自動読み込み</translation>
+    </message>
+  </context>
+  <context>
+    <name>DlgUseInWorkspace</name>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="13"/>
+      <source>FORM</source>
+      <translation>フォーム</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="49"/>
+      <source>PRESSURE</source>
+      <translation>圧力:</translation>
+    </message>
+    <message utf8="true">
+      <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="56"/>
+      <source>TEMPERATURE</source>
+      <translation>温度:</translation>
+    </message>
+  </context>
+  <context>
+    <name>GenericDialog</name>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/GenericDialog.ui" line="13"/>
+      <source>DIALOG</source>
+      <translation>ダイアログ</translation>
+    </message>
+  </context>
+  <context>
+    <name>MEDModule</name>
+    <message>
+      <location filename="MEDCALC/gui/MEDModule.cxx" line="68"/>
+      <location filename="MEDCALC/gui/MEDModule.cxx" line="157"/>
+      <source>IMPORT_FROM_FILE</source>
+      <translation>ファイルからのインポート</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/MEDModule.cxx" line="69"/>
+      <source>IMPORT_MED_FILE</source>
+      <translation>MEDファイルをインポート</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/MEDModule.cxx" line="72"/>
+      <source>MEN_FILE</source>
+      <translation>ファイル(&amp;F)</translation>
+    </message>
+    <message>
+      <source>PREF_TAB_GENERAL</source>
+      <translation>一般的な</translation>
+    </message>
+    <message>
+      <source>PREF_THEME_GROUP</source>
+      <translation>テーマ</translation>
+    </message>
+    <message>
+      <source>PREF_ICONS</source>
+      <translation>アイコン</translation>
+    </message>
+    <message>
+      <source>PREF_ICON_THEME_MODERN</source>
+      <translation>モダン</translation>
+    </message>
+    <message>
+      <source>PREF_ICON_THEME_CLASSIC</source>
+      <translation>クラシック</translation>
+    </message>
+  </context>
+  <context>
+    <name>WorkspaceController</name>
+    <message>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="66"/>
+      <source>VISUALIZE_SCALAR_MAP</source>
+      <translation>視覚化 (スカラーマップ)</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="67"/>
+      <source>USE_IN_CONSOLE</source>
+      <translation>使用 (コンソルにおいて)</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="68"/>
+      <source>EXPORT_TO_PARAVIS</source>
+      <translation>書き出し (PARAVISへ)</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="69"/>
+      <source>SAVE_AS_MED</source>
+      <translation>保存 (MED ファイルとして)</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="70"/>
+      <source>REMOVE_FROM_WORKSPACE</source>
+      <translation>削除 (ワークスペースから)</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="91"/>
+      <source>LAB_SAVE_WORKSPACE</source>
+      <translation>ワークスペースの表示</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="92"/>
+      <source>TIP_SAVE_WORKSPACE</source>
+      <translation>ワークスペースの保存 (メッシュと場) MED ファイル内</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="97"/>
+      <source>LAB_CLEAN_WORKSPACE</source>
+      <translation>ワークスペースのクリーニグ</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="98"/>
+      <source>TIP_CLEAN_WORKSPACE</source>
+      <translation>ワークスペース内の全データのクリーニング</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="271"/>
+      <source>SAVE_SELECTED_FIELDS</source>
+      <translation>選択場の保存</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="425"/>
+      <source>SAVE_WORKSPACE_DATA</source>
+      <translation>ワークスペースデータの保存</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="439"/>
+      <source>NOT_IMPLEMENTED_YET</source>
+      <translation>未実装</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="440"/>
+      <source>FUNCTION_NOT_IMPLEMENTED</source>
+      <translation>この機能はまだ実装されていません</translation>
+    </message>
+  </context>
+  <context>
+    <name>@default</name>
+    <message>
+      <location filename="MEDCALC/gui/MEDModule.cxx" line="151"/>
+      <location filename="MEDCALC/gui/DatasourceController.cxx" line="152"/>
+      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="75"/>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="267"/>
+      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="420"/>
+      <source>FILE_FILTER_MED</source>
+      <translation>MED ファイル (*.med)</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="57"/>
+      <source>FILE_FILTER_PNG</source>
+      <translation>PNG 画像 (*.png)</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="58"/>
+      <source>FILE_FILTER_JPG</source>
+      <translation>JPG 画像 (*.jpg)</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="59"/>
+      <source>FILE_FILTER_PGM</source>
+      <translation>PGM 画像 (*.jpg)</translation>
+    </message>
+    <message>
+      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="60"/>
+      <source>FILE_FILTER_ALL</source>
+      <translation>全ファイル (*.*)</translation>
+    </message>
+    <message>
+      <source>LAB_VIEW_MODE</source>
+      <translation>ビューモード:</translation>
+    </message>
+    <message>
+      <source>LAB_VIEW_MODE_REPLACE</source>
+      <translation>置き換え</translation>
+    </message>
+    <message>
+      <source>LAB_VIEW_MODE_OVERLAP</source>
+      <translation>オーバーラップ</translation>
+    </message>
+    <message>
+      <source>LAB_VIEW_MODE_NEW_LAYOUT</source>
+      <translation>新レイアウト</translation>
+    </message>
+    <message>
+      <source>LAB_VIEW_MODE_SPLIT_VIEW</source>
+      <translation>分割</translation>
+    </message>
+  </context>
+</TS>
index 9e59a5979ef3e8e29a8b105658f5f7e5252e9b28..6bbe782c5b5df60121ba866251f5b212c451e458 100644 (file)
@@ -58,7 +58,7 @@
 MED_ORB::MED_Gen_var MEDModule::_MED_engine;
 
 MEDModule::MEDModule() :
-  SalomeApp_Module("MED"), _studyEditor(0),
+  SalomeApp_Module("FIELDS"), _studyEditor(0),
   _datasourceController(0), _workspaceController(0), _presentationController(0),
   _processingController(0), _pvGuiElements(0)
 {
@@ -99,15 +99,15 @@ MEDModule::engine()
 void
 MEDModule::init()
 {
-  // initialize MED module engine (load, if necessary)
+  // initialize FIELDS module engine (load, if necessary)
   if ( CORBA::is_nil( _MED_engine ) ) {
     Engines::EngineComponent_var comp =
-      SalomeApp_Application::lcc()->FindOrLoad_Component( "FactoryServer", "MED" );
+      SalomeApp_Application::lcc()->FindOrLoad_Component( "FactoryServer", "FIELDS" );
     if (CORBA::is_nil( comp ))
-        STDLOG("Could not FindOrLoad_Component MED");
+        STDLOG("Could not FindOrLoad_Component FIELDS");
     _MED_engine = MED_ORB::MED_Gen::_narrow( comp );
     if (CORBA::is_nil( _MED_engine ))
-        STDLOG("Could not narrow MED engine");
+        STDLOG("Could not narrow FIELDS engine");
   }
 }
 
@@ -345,7 +345,7 @@ MEDModule::createStandardAction(const QString& label,
   if (iconName.isEmpty())
     ico = QIcon();
   else
-    ico = QIcon(resMgr->loadPixmap("MED", iconName));
+    ico = QIcon(resMgr->loadPixmap("FIELDS", iconName));
 
   QAction* action = createAction(-1,
                                  label,
@@ -413,7 +413,7 @@ MEDModule::itemClickGeneric(std::string & name, std::string & type, int & presId
   if (!model)
     return false;
 
-  if (item->componentDataType().toStdString() != "MED")
+  if (item->componentDataType().toStdString() != "FIELDS")
     return false;
   _PTR(SObject) obj = item->object();
   _PTR(GenericAttribute) anAttribute;
diff --git a/src/MEDCalc/gui/MED_images.ts b/src/MEDCalc/gui/MED_images.ts
deleted file mode 100644 (file)
index bc019e4..0000000
+++ /dev/null
@@ -1,249 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.0" language="en_US">
-  <context>
-    <name>@default</name>
-    <message>
-      <source>ICO_IMPORT_MED</source>
-      <translation>datasource_add.png</translation>
-    </message>
-    <message>
-      <source>ICO_DATASOURCE</source>
-      <translation>datasource.png</translation>
-    </message>
-    <message>
-      <source>ICO_DATASOURCE_ADD</source>
-      <translation>datasource_add.png</translation>
-    </message>
-    <message>
-      <source>ICO_PROCESSING_CHANGE_MESH</source>
-      <translation>processing_changeUnderlyingMesh.png</translation>
-    </message>
-    <message>
-      <source>ICO_PROCESSING_INTERPOLATE_FIELD</source>
-      <translation>processing_interpolateField.png</translation>
-    </message>
-    <message>
-      <source>ICO_DATASOURCE_EXPAND_FIELD</source>
-      <translation>datasource_expandfield.png</translation>
-    </message>
-    <message>
-      <source>ICO_DATASOURCE_FIELD</source>
-      <translation>datasource_field.png</translation>
-    </message>
-    <message>
-      <source>ICO_DATASOURCE_MESH</source>
-      <translation>datasource_mesh.png</translation>
-    </message>
-    <message>
-      <source>ICO_DATASOURCE_USE</source>
-      <translation>datasource_use.png</translation>
-    </message>
-    <message>
-      <source>ICO_FOLDER</source>
-      <translation>folder.png</translation>
-    </message>
-    <message>
-      <source>ICO_IMAGE_ADD</source>
-      <translation>image_add.png</translation>
-    </message>
-    <message>
-      <source>ICO_MED</source>
-      <translation>MEDCalc.png</translation>
-    </message>
-    <message>
-      <source>ICO_MED_SMALL</source>
-      <translation>MEDCalc_small.png</translation>
-    </message>
-    <message>
-      <source>ICO_WORKSPACE_CLEAN</source>
-      <translation>workspace_clean.png</translation>
-    </message>
-    <message>
-      <source>ICO_WORKSPACE_SAVE</source>
-      <translation>workspace_save.png</translation>
-    </message>
-    <message>
-      <source>ICO_ICO_DELETE_PRESENTATION</source>
-      <translation>delete.png</translation>
-    </message>
-    <!-- Presentation toolbar icons (default theme)-->
-    <message>
-      <source>ICO_PRESENTATION_MESH_VIEW_DEFAULT</source>
-      <translation>mesh24.png</translation>
-    </message>    
-    <message>
-      <source>ICO_PRESENTATION_SCALAR_MAP_DEFAULT</source>
-      <translation>scalarmap24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_CONTOUR_DEFAULT</source>
-      <translation>pqIsosurface24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_VECTOR_FIELD_DEFAULT</source>
-      <translation>pqGlyph24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_SLICES_DEFAULT</source>
-      <translation>pqSlice24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_DEFLECTION_SHAPE_DEFAULT</source>
-      <translation>pqWarp24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_POINT_SPRITE_DEFAULT</source>
-      <translation>pqNodeMapData24.png</translation>
-    </message>
-    <!-- Presentation tree icons (default theme)-->
-    <message>
-      <source>ICO_MEDPresentationMeshView_DEFAULT</source>
-      <translation>mesh16.png</translation>
-    </message>    
-    <message>
-      <source>ICO_MEDPresentationScalarMap_DEFAULT</source>
-      <translation>scalarmap16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationContour_DEFAULT</source>
-      <translation>pqIsosurface16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationVectorField_DEFAULT</source>
-      <translation>pqGlyph16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationSlices_DEFAULT</source>
-      <translation>pqSlice16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationDeflectionShape_DEFAULT</source>
-      <translation>pqWarp16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationPointSprite_DEFAULT</source>
-      <translation>pqNodeMapData16.png</translation>
-    </message>
-    <!-- Presentation toolbar icons (modern theme)-->
-    <message>
-      <source>ICO_PRESENTATION_MESH_VIEW_MODERN</source>
-      <translation>mesh24.png</translation>
-    </message>    
-    <message>
-      <source>ICO_PRESENTATION_SCALAR_MAP_MODERN</source>
-      <translation>scalarmap24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_CONTOUR_MODERN</source>
-      <translation>pqIsosurface24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_VECTOR_FIELD_MODERN</source>
-      <translation>pqGlyph24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_SLICES_MODERN</source>
-      <translation>pqSlice24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_DEFLECTION_SHAPE_MODERN</source>
-      <translation>pqWarp24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_POINT_SPRITE_MODERN</source>
-      <translation>pqNodeMapData24.png</translation>
-    </message>
-    <!-- Presentation tree icons (modern theme)-->
-    <message>
-      <source>ICO_MEDPresentationMeshView_MODERN</source>
-      <translation>mesh16.png</translation>
-    </message>    
-    <message>
-      <source>ICO_MEDPresentationScalarMap_MODERN</source>
-      <translation>scalarmap16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationContour_MODERN</source>
-      <translation>pqIsosurface16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationVectorField_MODERN</source>
-      <translation>pqGlyph16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationSlices_MODERN</source>
-      <translation>pqSlice16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationDeflectionShape_MODERN</source>
-      <translation>pqWarp16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationPointSprite_MODERN</source>
-      <translation>pqNodeMapData16.png</translation>
-    </message>
-    <!-- Presentation toolbar icons (classic theme)-->
-    <message>
-      <source>ICO_PRESENTATION_MESH_VIEW_CLASSIC</source>
-      <translation>visu_mesh24.png</translation>
-    </message>    
-    <message>
-      <source>ICO_PRESENTATION_SCALAR_MAP_CLASSIC</source>
-      <translation>visu_scalars24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_CONTOUR_CLASSIC</source>
-      <translation>visu_isosurfaces24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_VECTOR_FIELD_CLASSIC</source>
-      <translation>visu_vectors24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_SLICES_CLASSIC</source>
-      <translation>visu_cutplanes24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_DEFLECTION_SHAPE_CLASSIC</source>
-      <translation>visu_deformed24.png</translation>
-    </message>
-    <message>
-      <source>ICO_PRESENTATION_POINT_SPRITE_CLASSIC</source>
-      <translation>visu_points24.png</translation>
-    </message>
-    <!-- Presentation tree icons (classic theme)-->
-    <message>
-      <source>ICO_MEDPresentationMeshView_CLASSIC</source>
-      <translation>visu_mesh16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationScalarMap_CLASSIC</source>
-      <translation>visu_scalars16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationContour_CLASSIC</source>
-      <translation>visu_isosurfaces16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationVectorField_CLASSIC</source>
-      <translation>visu_vectors16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationSlices_CLASSIC</source>
-      <translation>visu_cutplanes16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationDeflectionShape_CLASSIC</source>
-      <translation>visu_deformed16.png</translation>
-    </message>
-    <message>
-      <source>ICO_MEDPresentationPointSprite_CLASSIC</source>
-      <translation>visu_points16.png</translation>
-    </message>
-    <message>
-      <source>ICO_DELETE_PRESENTATION</source>
-      <translation>close.png</translation>
-    </message>
-  </context>
-</TS>
diff --git a/src/MEDCalc/gui/MED_msg_en.ts b/src/MEDCalc/gui/MED_msg_en.ts
deleted file mode 100644 (file)
index 69f0b81..0000000
+++ /dev/null
@@ -1,625 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.0" language="en_GB">
-<context>
-    <name>PresentationController</name>
-    <message>
-        <source>TITLE_PRESENTATION_PARAMETERS</source>
-        <translation>Presentation parameters</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_MESH_VIEW</source>
-        <translation>Mesh</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_MESH_VIEW</source>
-        <translation>Mesh</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_SCALAR_MAP</source>
-        <translation>Scalar map</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_SCALAR_MAP</source>
-        <translation>Scalar map</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_CONTOUR</source>
-        <translation>Contour</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_CONTOUR</source>
-        <translation>Contour</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_VECTOR_FIELD</source>
-        <translation>Vector field</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_VECTOR_FIELD</source>
-        <translation>Vector field</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_SLICES</source>
-        <translation>Slices</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_SLICES</source>
-        <translation>Slices</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_DEFLECTION_SHAPE</source>
-        <translation>Deflection shape</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_DEFLECTION_SHAPE</source>
-        <translation>Deflection shape</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_POINT_SPRITE</source>
-        <translation>Point sprite</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_POINT_SPRITE</source>
-        <translation>Point sprite</translation>
-    </message>
-    <message>
-        <source>LAB_DELETE_PRESENTATION</source>
-        <translation>Delete presentation</translation>
-    </message>
-    <message>
-        <source>TIP_DELETE_PRESENTATION</source>
-        <translation>Delete selected presentation</translation>
-    </message>
-    <message>
-        <source>LAB_PARAVIS_DUMP</source>
-        <translation>Dump pipeline</translation>
-    </message>
-    <message>
-        <source>TIP_PARAVIS_DUMP</source>
-        <translation>Dump the low level Python commands of the presentation</translation>
-    </message>
-    <message>
-        <source>MENU_PRESENTATIONS</source>
-        <translation>Presentations</translation>
-    </message>
-    <message>
-        <source>MEDPresentationMeshView</source>
-        <translation>Mesh view</translation>
-    </message>
-    <message>
-        <source>MEDPresentationScalarMap</source>
-        <translation>Scalar map</translation>
-    </message>
-    <message>
-        <source>MEDPresentationContour</source>
-        <translation>Contour</translation>
-    </message>
-    <message>
-        <source>MEDPresentationVectorField</source>
-        <translation>Vector field</translation>
-    </message>
-    <message>
-        <source>MEDPresentationSlices</source>
-        <translation>Slices</translation>
-    </message>
-    <message>
-        <source>MEDPresentationDeflectionShape</source>
-        <translation>Deflection shape</translation>
-    </message>
-    <message>
-        <source>MEDPresentationPointSprite</source>
-        <translation>Point sprite</translation>
-    </message>
-</context>
-<context>
-    <name>ProcessingController</name>
-    <message>
-        <source>MENU_PROCESSING</source>
-        <translation>Processing</translation>
-    </message>
-    <message>
-        <source>LAB_PROCESSING_CHANGE_MESH</source>
-        <translation>Change underlying mesh</translation>
-    </message>
-    <message>
-        <source>LAB_PROCESSING_INTERPOLATE_FIELD</source>
-        <translation>Interpolate field</translation>
-    </message>
-</context>
-<context>
-    <name>DatasourceController</name>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="45"/>
-        <source>LAB_ADD_DATA_SOURCE</source>
-        <translation>Add Data Source</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="46"/>
-        <source>TIP_ADD_DATA_SOURCE</source>
-        <translation>Add a file data source (file providing med data)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="52"/>
-        <source>LAB_ADD_IMAGE_SOURCE</source>
-        <translation>Add Image Source</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="53"/>
-        <source>TIP_ADD_IMAGE_SOURCE</source>
-        <translation>Create a Data Source from an image file</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="62"/>
-        <source>LAB_EXPAND_FIELD</source>
-        <translation>Expand field timeseries</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="75"/>
-        <source>LAB_USE_IN_WORKSPACE</source>
-        <translation>Use in workspace</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="157"/>
-        <source>IMPORT_MED_FIELDS</source>
-        <translation>Import MED fields</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="191"/>
-        <source>OPERATION_FAILED</source>
-        <translation>Operation failed</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="192"/>
-        <source>CREATION_FAILED</source>
-        <translation>The creation of med data from the image file failed</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="283"/>
-        <source>OPERATION_NOT_ALLOWED</source>
-        <translation>Operation not allowed</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="284"/>
-        <source>FIELD_ALREADY_DEFINED</source>
-        <translation>This field is already defined in the workspace</translation>
-    </message>
-</context>
-<context>
-    <name>WidgetPresentationParameters</name>
-    <message>
-        <source>LAB_DEFAULT_DYN_TITLE</source>
-        <translation>Default parameters</translation>
-    </message>
-    <message>
-        <source>LAB_DISP_COMP</source>
-        <translation>Displayed component:</translation>
-    </message>
-    <message>
-        <source>LAB_EUCLIDEAN_NORM</source>
-        <translation>Euclidean norm</translation>
-    </message>
-    <message>
-        <source>LAB_SCALARBAR</source>
-        <translation>Scalar bar:</translation>
-    </message>
-    <message>
-        <source>LAB_RANGE</source>
-        <translation>Range:</translation>
-    </message>
-    <message>
-        <source>LAB_ALL_TIMESTEPS</source>
-        <translation>All timesteps</translation>
-    </message>
-    <message>
-        <source>LAB_CURRENT_TIMESTEP</source>
-        <translation>Current timestep</translation>
-    </message>
-    <message>
-        <source>LAB_USER_RANGE</source>
-        <translation>User-specified</translation>
-    </message>
-    <message>
-        <source>LAB_TIMESTEP</source>
-        <translation>Timestep:</translation>
-    </message>
-    <message>
-        <source>LAB_MIN_VALUE</source>
-        <translation>Min value:</translation>
-    </message>
-    <message>
-        <source>LAB_MAX_VALUE</source>
-        <translation>Max value:</translation>
-    </message>
-    <message>
-        <source>LAB_COLOR_MAP</source>
-        <translation>Color map:</translation>
-    </message>
-    <message>
-        <source>LAB_MESH_WIREFRAME</source>
-        <translation>Wireframe</translation>
-    </message>
-    <message>
-        <source>LAB_MESH_SURFACE</source>
-        <translation>Surface</translation>
-    </message>
-    <message>
-        <source>LAB_MESH_SURF_EDGES</source>
-        <translation>Surface With Edges</translation>
-    </message>
-    <message>
-        <source>LAB_DISP_MESH_MODE</source>
-        <translation>Mesh display:</translation>
-    </message>
-    <message>
-        <source>LAB_NB_CONTOURS</source>
-        <translation>Number of contours (max. %1):</translation>
-    </message>
-    <message>
-        <source>LAB_NB_SLICES</source>
-        <translation>Number of slices (max. %1):</translation>
-    </message>
-    <message>
-        <source>LAB_SPINBOX_TOOLTIP</source>
-        <translation>Hit &apos;Enter&apos; to apply</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_ORIENT</source>
-        <translation>Slice orientation:</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_X</source>
-        <translation>Normal to X</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_Y</source>
-        <translation>Normal to Y</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_Z</source>
-        <translation>Normal to Z</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_XY</source>
-        <translation>Normal to XY</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_XZ</source>
-        <translation>Normal to XZ</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_YZ</source>
-        <translation>Normal to YZ</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_XYZ</source>
-        <translation>Normal to XYZ</translation>
-    </message>
-    <message>
-        <source>LAB_BLUE_TO_RED</source>
-        <translation>Blue to red rainbow</translation>
-    </message>
-    <message>
-        <source>LAB_COOL_TO_WARM</source>
-        <translation>Cool to warm</translation>
-    </message>
-</context>
-<context>
-    <name>DlgAlias</name>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="14"/>
-        <source>SELECT_AN_ALIAS_FOR_THE_FIELD</source>
-        <translation>Select an alias for the field</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="401"/>
-        <source>DEFINE_AN_ALIAS</source>
-        <translation>You can define an alias to manipulate the field in console:</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="419"/>
-        <source>ALIAS</source>
-        <translation>Alias</translation>
-    </message>
-    <message utf8="true">
-        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="436"/>
-        <source>MSG_OPERATION_DEFINES_VARIABLE</source>
-        <translation>(this operation defines a variable named &lt;alias&gt; in TUI console. Enter &quot;&lt;alias&gt;.help()&quot; to see available functions, or simply &quot;doc&quot;)</translation>
-    </message>
-</context>
-<context>
-    <name>DlgChangeUnderlyingMesh</name>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="14"/>
-        <source>FORM</source>
-        <translation>Form</translation>
-    </message>
-    <message utf8="true">
-        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="403"/>
-        <source>MESH_GT</source>
-        <translation>Mesh -&gt;</translation>
-    </message>
-    <message utf8="true">
-        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="420"/>
-        <source>MSG_EXPLORER</source>
-        <translation>(Explorer provides a view on MED data sources (mesh and fields) referenced in data space)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.cxx" line="35"/>
-        <source>DATA_VERIFICATION</source>
-        <translation>Data verification</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.cxx" line="36"/>
-        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="391"/>
-        <source>SELECT_MESH</source>
-        <translation>You must select a mesh in the explorer and clic the button Mesh</translation>
-    </message>
-</context>
-<context>
-    <name>DlgInterpolateField</name>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="391"/>
-        <source>SELECT_MESH</source>
-        <translation>You must select a mesh in the explorer and clic the button Mesh</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="406"/>
-        <source>TARGET_MESH_GT</source>
-        <translation>Target mesh -&gt;</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="423"/>
-        <source>MSG_EXPLORER</source>
-        <translation>(Explorer provides a view on MED data sources (mesh and fields) referenced in data space)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="450"/>
-        <source>LABEL_PRECISION</source>
-        <translation>Interpolator precision</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="493"/>
-        <source>LABEL_INTERSECTION_TYPE</source>
-        <translation>Intersection type</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="520"/>
-        <source>LABEL_METHOD</source>
-        <translation>Interpolation method</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="547"/>
-        <source>LABEL_DEFAULT_VALUE</source>
-        <translation>Default value of resulting field</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="581"/>
-        <source>LABEL_REVERSE</source>
-        <translation>Reverse interpolation ?</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="612"/>
-        <source>LABEL_NATURE</source>
-        <translation>Field nature</translation>
-    </message>
-</context>
-<context>
-    <name>DlgImageToMed</name>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="14"/>
-        <source>FORM</source>
-        <translation>Form</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="28"/>
-        <source>IMAGE_FILE</source>
-        <translation>Image file:</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="35"/>
-        <source>MED_FILE</source>
-        <translation>MED file:</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="64"/>
-        <source>SELECT_IMAGE_FILE</source>
-        <translation>Select image file</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="79"/>
-        <source>SPECIFY_MED_FILE</source>
-        <translation>Specify a MED file</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="82"/>
-        <source>LOAD_AUTOMATICALLY</source>
-        <translation>Load automatically</translation>
-    </message>
-</context>
-<context>
-    <name>DlgUseInWorkspace</name>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="13"/>
-        <source>FORM</source>
-        <translation>Form</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="49"/>
-        <source>PRESSURE</source>
-        <translation>Pressure:</translation>
-    </message>
-    <message utf8="true">
-        <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="56"/>
-        <source>TEMPERATURE</source>
-        <translation>Temperature:</translation>
-    </message>
-</context>
-<context>
-    <name>GenericDialog</name>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/GenericDialog.ui" line="13"/>
-        <source>DIALOG</source>
-        <translation>Dialog</translation>
-    </message>
-</context>
-<context>
-    <name>MEDModule</name>
-    <message>
-        <location filename="MEDCALC/gui/MEDModule.cxx" line="68"/>
-        <location filename="MEDCALC/gui/MEDModule.cxx" line="157"/>
-        <source>IMPORT_FROM_FILE</source>
-        <translation>Import from File</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/MEDModule.cxx" line="69"/>
-        <source>IMPORT_MED_FILE</source>
-        <translation>Import MED file</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/MEDModule.cxx" line="72"/>
-        <source>MEN_FILE</source>
-        <translation>&amp;File</translation>
-    </message>
-    <message>
-        <source>PREF_TAB_GENERAL</source>
-        <translation>General</translation>
-    </message>
-    <message>
-        <source>PREF_THEME_GROUP</source>
-        <translation>Theme</translation>
-    </message>
-    <message>
-        <source>PREF_ICONS</source>
-        <translation>Icons</translation>
-    </message>
-    <message>
-        <source>PREF_ICON_THEME_MODERN</source>
-        <translation>Modern</translation>
-    </message>
-    <message>
-        <source>PREF_ICON_THEME_CLASSIC</source>
-        <translation>Classic</translation>
-    </message>
-</context>
-<context>
-    <name>WorkspaceController</name>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="66"/>
-        <source>VISUALIZE_SCALAR_MAP</source>
-        <translation>Visualize (scalar map)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="67"/>
-        <source>USE_IN_CONSOLE</source>
-        <translation>Use (in console)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="68"/>
-        <source>EXPORT_TO_PARAVIS</source>
-        <translation>Export (to PARAVIS)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="69"/>
-        <source>SAVE_AS_MED</source>
-        <translation>Save (as MED file)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="70"/>
-        <source>REMOVE_FROM_WORKSPACE</source>
-        <translation>Remove (from workspace)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="91"/>
-        <source>LAB_SAVE_WORKSPACE</source>
-        <translation>Save workspace</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="92"/>
-        <source>TIP_SAVE_WORKSPACE</source>
-        <translation>Save the workspace (fields and meshes) in a MED file</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="97"/>
-        <source>LAB_CLEAN_WORKSPACE</source>
-        <translation>Clean workspace</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="98"/>
-        <source>TIP_CLEAN_WORKSPACE</source>
-        <translation>Clean all data in the workspace</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="271"/>
-        <source>SAVE_SELECTED_FIELDS</source>
-        <translation>Save selected fields</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="425"/>
-        <source>SAVE_WORKSPACE_DATA</source>
-        <translation>Save workspace data</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="439"/>
-        <source>NOT_IMPLEMENTED_YET</source>
-        <translation>Not implemented yet</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="440"/>
-        <source>FUNCTION_NOT_IMPLEMENTED</source>
-        <translation>This function is not implemented yet</translation>
-    </message>
-</context>
-<context>
-    <name>@default</name>
-    <message>
-        <location filename="MEDCALC/gui/MEDModule.cxx" line="151"/>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="152"/>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="75"/>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="267"/>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="420"/>
-        <source>FILE_FILTER_MED</source>
-        <translation>MED files (*.med)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="57"/>
-        <source>FILE_FILTER_PNG</source>
-        <translation>PNG image (*.png)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="58"/>
-        <source>FILE_FILTER_JPG</source>
-        <translation>JPG image (*.jpg)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="59"/>
-        <source>FILE_FILTER_PGM</source>
-        <translation>PGM image (*.jpg)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="60"/>
-        <source>FILE_FILTER_ALL</source>
-        <translation>All files (*.*)</translation>
-    </message>
-    <message>
-        <source>LAB_VIEW_MODE</source>
-        <translation>View mode:</translation>
-    </message>
-    <message>
-        <source>LAB_VIEW_MODE_REPLACE</source>
-        <translation>Replace</translation>
-    </message>
-    <message>
-        <source>LAB_VIEW_MODE_OVERLAP</source>
-        <translation>Overlap</translation>
-    </message>
-    <message>
-        <source>LAB_VIEW_MODE_NEW_LAYOUT</source>
-        <translation>New layout</translation>
-    </message>
-    <message>
-        <source>LAB_VIEW_MODE_SPLIT_VIEW</source>
-        <translation>Split</translation>
-    </message>
-</context>
-</TS>
diff --git a/src/MEDCalc/gui/MED_msg_fr.ts b/src/MEDCalc/gui/MED_msg_fr.ts
deleted file mode 100644 (file)
index 8b92efa..0000000
+++ /dev/null
@@ -1,625 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.0" language="fr">
-<context>
-    <name>PresentationController</name>
-    <message>
-        <source>TITLE_PRESENTATION_PARAMETERS</source>
-        <translation>Paramètres de presentation</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_MESH_VIEW</source>
-        <translation>Maillage</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_MESH_VIEW</source>
-        <translation>Maillage</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_SCALAR_MAP</source>
-        <translation>Carte scalaire</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_SCALAR_MAP</source>
-        <translation>Carte scalaire</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_CONTOUR</source>
-        <translation>Contour</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_CONTOUR</source>
-        <translation>Contour</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_VECTOR_FIELD</source>
-        <translation>Champ de vecteurs</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_VECTOR_FIELD</source>
-        <translation>Champ de vecteurs</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_SLICES</source>
-        <translation>Coupes</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_SLICES</source>
-        <translation>Coupes</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_DEFLECTION_SHAPE</source>
-        <translation>Déformée</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_DEFLECTION_SHAPE</source>
-        <translation>Déformée</translation>
-    </message>
-    <message>
-        <source>LAB_PRESENTATION_POINT_SPRITE</source>
-        <translation>Point sprite</translation>
-    </message>
-    <message>
-        <source>TIP_PRESENTATION_POINT_SPRITE</source>
-        <translation>Point sprite</translation>
-    </message>
-    <message>
-        <source>LAB_DELETE_PRESENTATION</source>
-        <translation>Supprimer</translation>
-    </message>
-    <message>
-        <source>TIP_DELETE_PRESENTATION</source>
-        <translation>Supprime la présentation sélectionnée</translation>
-    </message>
-    <message>
-        <source>LAB_PARAVIS_DUMP</source>
-        <translation>Trace du pipeline</translation>
-    </message>
-    <message>
-        <source>TIP_PARAVIS_DUMP</source>
-        <translation>Affiche les commandes Python bas niveau de la présentation</translation>
-    </message>
-    <message>
-        <source>MENU_PRESENTATIONS</source>
-        <translation>Présentations</translation>
-    </message>
-    <message>
-        <source>MEDPresentationMeshView</source>
-        <translation>Maillage</translation>
-    </message>
-    <message>
-        <source>MEDPresentationScalarMap</source>
-        <translation>Carte scalaire</translation>
-    </message>
-    <message>
-        <source>MEDPresentationContour</source>
-        <translation>Contour</translation>
-    </message>
-    <message>
-        <source>MEDPresentationVectorField</source>
-        <translation>Champ de vecteurs</translation>
-    </message>
-    <message>
-        <source>MEDPresentationSlices</source>
-        <translation>Coupes</translation>
-    </message>
-    <message>
-        <source>MEDPresentationDeflectionShape</source>
-        <translation>Déformée</translation>
-    </message>
-    <message>
-        <source>MEDPresentationPointSprite</source>
-        <translation>Point sprite</translation>
-    </message>
-</context>
-<context>
-    <name>ProcessingController</name>
-    <message>
-        <source>MENU_PROCESSING</source>
-        <translation>Traitement</translation>
-    </message>
-    <message>
-        <source>LAB_PROCESSING_CHANGE_MESH</source>
-        <translation>Changer le maillage sous-jacent</translation>
-    </message>
-    <message>
-        <source>LAB_PROCESSING_INTERPOLATE_FIELD</source>
-        <translation>Interpoler le champ</translation>
-    </message>
-</context>
-<context>
-    <name>DatasourceController</name>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="45"/>
-        <source>LAB_ADD_DATA_SOURCE</source>
-        <translation>Importer des données MED</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="46"/>
-        <source>TIP_ADD_DATA_SOURCE</source>
-        <translation>Ajouter des données par import de fichiers MED</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="52"/>
-        <source>LAB_ADD_IMAGE_SOURCE</source>
-        <translation>Ajouter une image</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="53"/>
-        <source>TIP_ADD_IMAGE_SOURCE</source>
-        <translation>Ajouter des données par import d&apos;un fichier image</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="62"/>
-        <source>LAB_EXPAND_FIELD</source>
-        <translation>Étendre les series temporelles du champ</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="75"/>
-        <source>LAB_USE_IN_WORKSPACE</source>
-        <translation>Utiliser dans l&apos;espace de travail</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="157"/>
-        <source>IMPORT_MED_FIELDS</source>
-        <translation>Importer des champs (format MED)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="191"/>
-        <source>OPERATION_FAILED</source>
-        <translation>L&apos;opération a échoué</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="192"/>
-        <source>CREATION_FAILED</source>
-        <translation>La création des données MED à partir d&apos;un fichier image a échoué</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="283"/>
-        <source>OPERATION_NOT_ALLOWED</source>
-        <translation>Opération non autorisée</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="284"/>
-        <source>FIELD_ALREADY_DEFINED</source>
-        <translation>Ce champ est déjà défini dans l&apos;espace de travail</translation>
-    </message>
-</context>
-<context>
-    <name>WidgetPresentationParameters</name>
-    <message>
-        <source>LAB_DEFAULT_DYN_TITLE</source>
-        <translation>Paramètres par défaut</translation>
-    </message>    
-    <message>
-        <source>LAB_DISP_COMP</source>
-        <translation>Composante affichée :</translation>
-    </message>
-    <message>
-        <source>LAB_EUCLIDEAN_NORM</source>
-        <translation>Norme euclidienne</translation>
-    </message>
-    <message>
-        <source>LAB_SCALARBAR</source>
-        <translation>Echelle de valeurs :</translation>
-    </message>
-    <message>
-        <source>LAB_RANGE</source>
-        <translation>Intervalle :</translation>
-    </message>
-    <message>
-        <source>LAB_ALL_TIMESTEPS</source>
-        <translation>Tous les pas de temps</translation>
-    </message>
-    <message>
-        <source>LAB_CURRENT_TIMESTEP</source>
-        <translation>Pas de temps courant</translation>
-    </message>
-    <message>
-        <source>LAB_USER_RANGE</source>
-        <translation>Personnalisé :</translation>
-    </message>
-    <message>
-        <source>LAB_TIMESTEP</source>
-        <translation>Pas de temps :</translation>
-    </message>
-    <message>
-        <source>LAB_MIN_VALUE</source>
-        <translation>Valeur min :</translation>
-    </message>
-    <message>
-        <source>LAB_MAX_VALUE</source>
-        <translation>Valeur max :</translation>
-    </message>
-    <message>
-        <source>LAB_COLOR_MAP</source>
-        <translation>Table de couleurs :</translation>
-    </message>
-    <message>
-        <source>LAB_MESH_WIREFRAME</source>
-        <translation>Fil de fer</translation>
-    </message>
-    <message>
-        <source>LAB_MESH_SURFACE</source>
-        <translation>Surface</translation>
-    </message>
-    <message>
-        <source>LAB_MESH_SURF_EDGES</source>
-        <translation>Surface Avec Arrêtes</translation>
-    </message>
-    <message>
-        <source>LAB_DISP_MESH_MODE</source>
-        <translation>Affichage du maillage:</translation>
-    </message>
-    <message>
-        <source>LAB_NB_CONTOURS</source>
-        <translation>Nombre de contours (max. %1) :</translation>
-    </message>
-    <message>
-        <source>LAB_NB_SLICES</source>
-        <translation>Nombres de coupes (max. %1) :</translation>
-    </message>
-    <message>
-        <source>LAB_SPINBOX_TOOLTIP</source>
-        <translation>Taper &apos;Entrée&apos; pour appliquer</translation>
-    </message>    
-    <message>
-        <source>LAB_SLICE_ORIENT</source>
-        <translation>Orientation des coupes:</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_X</source>
-        <translation>Normale à X</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_Y</source>
-        <translation>Normale à Y</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_Z</source>
-        <translation>Normale à Z</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_XY</source>
-        <translation>Normale à XY</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_XZ</source>
-        <translation>Normale à XZ</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_YZ</source>
-        <translation>Normale à YZ</translation>
-    </message>
-    <message>
-        <source>LAB_SLICE_NORMAL_TO_XYZ</source>
-        <translation>Normale à XYZ</translation>
-    </message>    
-    <message>
-        <source>LAB_BLUE_TO_RED</source>
-        <translation>Arc-en-ciel bleu vers rouge</translation>
-    </message>
-    <message>
-        <source>LAB_COOL_TO_WARM</source>
-        <translation>Froid vers chaud</translation>
-    </message>
-</context>
-<context>
-    <name>DlgAlias</name>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="14"/>
-        <source>SELECT_AN_ALIAS_FOR_THE_FIELD</source>
-        <translation>Selectionner un alias pour ce champ</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="401"/>
-        <source>DEFINE_AN_ALIAS</source>
-        <translation>Vous pouvez définir un alias pour manipuler le champs dans la console:</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="419"/>
-        <source>ALIAS</source>
-        <translation>Alias</translation>
-    </message>
-    <message utf8="true">
-        <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="436"/>
-        <source>MSG_OPERATION_DEFINES_VARIABLE</source>
-        <translation>(cette opération définit une variable nommée &lt;alias&gt; dans la console texte. Tapez &quot;&lt;alias&gt;.help()&quot; pour voir les fonctions disponibles, ou simplement &quot;doc&quot;)</translation>
-    </message>
-</context>
-<context>
-    <name>DlgChangeUnderlyingMesh</name>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="14"/>
-        <source>FORM</source>
-        <translation>Formulaire</translation>
-    </message>
-    <message utf8="true">
-        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="403"/>
-        <source>MESH_GT</source>
-        <translation>Maillage -&gt;</translation>
-    </message>
-    <message utf8="true">
-        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="420"/>
-        <source>MSG_EXPLORER</source>
-        <translation>(L&apos;explorateur fournit une vue des données MED (maillage et champs) référencées dans l&apos;espace des données)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.cxx" line="35"/>
-        <source>DATA_VERIFICATION</source>
-        <translation>Vérification des données</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.cxx" line="36"/>
-        <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="391"/>
-        <source>SELECT_MESH</source>
-        <translation>Vous devez sélectionner un maillage dans l&apos;explorateur et cliquer sur le bouton Maillage</translation>
-    </message>
-</context>
-<context>
-    <name>DlgInterpolateField</name>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="391"/>
-        <source>SELECT_MESH</source>
-        <translation>Vous devez sélectionner un maillage dans l&apos;explorateur et cliquer sur le bouton Maillage</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="406"/>
-        <source>TARGET_MESH_GT</source>
-        <translation>Maillage cible -&gt;</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="423"/>
-        <source>MSG_EXPLORER</source>
-        <translation>(L&apos;explorateur fournit une vue des données MED (maillage et champs) référencées dans l&apos;espace des données)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="450"/>
-        <source>LABEL_PRECISION</source>
-        <translation>Précision de l&apos;interpolateur</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="493"/>
-        <source>LABEL_INTERSECTION_TYPE</source>
-        <translation>Type d&apos;intersection</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="520"/>
-        <source>LABEL_METHOD</source>
-        <translation>Méthode d&apos;interpolation</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="547"/>
-        <source>LABEL_DEFAULT_VALUE</source>
-        <translation>Valeur par défaut du champ résultant</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="581"/>
-        <source>LABEL_REVERSE</source>
-        <translation>Interpolation inverse ?</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="612"/>
-        <source>LABEL_NATURE</source>
-        <translation>Nature du champ</translation>
-    </message>
-</context>
-<context>
-    <name>DlgImageToMed</name>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="14"/>
-        <source>FORM</source>
-        <translation>Formulaire</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="28"/>
-        <source>IMAGE_FILE</source>
-        <translation>Fichier image :</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="35"/>
-        <source>MED_FILE</source>
-        <translation>Fichier MED :</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="64"/>
-        <source>SELECT_IMAGE_FILE</source>
-        <translation>Selectionner un fichier image</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="79"/>
-        <source>SPECIFY_MED_FILE</source>
-        <translation>Spécifier un fichier MED</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="82"/>
-        <source>LOAD_AUTOMATICALLY</source>
-        <translation>Charger automatiquement</translation>
-    </message>
-</context>
-<context>
-    <name>DlgUseInWorkspace</name>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="13"/>
-        <source>FORM</source>
-        <translation>Formulaire</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="49"/>
-        <source>PRESSURE</source>
-        <translation>Pression :</translation>
-    </message>
-    <message utf8="true">
-        <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="56"/>
-        <source>TEMPERATURE</source>
-        <translation>Température :</translation>
-    </message>
-</context>
-<context>
-    <name>GenericDialog</name>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/GenericDialog.ui" line="13"/>
-        <source>DIALOG</source>
-        <translation>Dialogue</translation>
-    </message>
-</context>
-<context>
-    <name>MEDModule</name>
-    <message>
-        <location filename="MEDCALC/gui/MEDModule.cxx" line="68"/>
-        <location filename="MEDCALC/gui/MEDModule.cxx" line="157"/>
-        <source>IMPORT_FROM_FILE</source>
-        <translation>Importer depuis un fichier</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/MEDModule.cxx" line="69"/>
-        <source>IMPORT_MED_FILE</source>
-        <translation>Importer un fichier MED</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/MEDModule.cxx" line="72"/>
-        <source>MEN_FILE</source>
-        <translation>&amp;Fichier</translation>
-    </message>
-    <message>
-        <source>PREF_TAB_GENERAL</source>
-        <translation>Général</translation>
-    </message>
-    <message>
-        <source>PREF_THEME_GROUP</source>
-        <translation>Thème</translation>
-    </message>
-    <message>
-        <source>PREF_ICONS</source>
-        <translation>Icones</translation>
-    </message>
-    <message>
-        <source>PREF_ICON_THEME_MODERN</source>
-        <translation>Moderne</translation>
-    </message>
-    <message>
-        <source>PREF_ICON_THEME_CLASSIC</source>
-        <translation>Classique</translation>
-    </message>
-</context>
-<context>
-    <name>WorkspaceController</name>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="66"/>
-        <source>VISUALIZE_SCALAR_MAP</source>
-        <translation>Visualiser (carte scalaire)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="67"/>
-        <source>USE_IN_CONSOLE</source>
-        <translation>Utiliser (dans la console)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="68"/>
-        <source>EXPORT_TO_PARAVIS</source>
-        <translation>Exporter (vers PARAVIS)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="69"/>
-        <source>SAVE_AS_MED</source>
-        <translation>Sauvegarder (dans un fichier MED)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="70"/>
-        <source>REMOVE_FROM_WORKSPACE</source>
-        <translation>Supprimer (de l&apos;espace de travail)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="91"/>
-        <source>LAB_SAVE_WORKSPACE</source>
-        <translation>Sauvegarder l&apos;espace de travail</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="92"/>
-        <source>TIP_SAVE_WORKSPACE</source>
-        <translation>Sauvegarder l&apos;espace de travail (champs et maillages) dans un fichier MED</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="97"/>
-        <source>LAB_CLEAN_WORKSPACE</source>
-        <translation>Nettoyer l&apos;espace de travail</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="98"/>
-        <source>TIP_CLEAN_WORKSPACE</source>
-        <translation>Effacer toute les données de l&apos;espace de travail</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="271"/>
-        <source>SAVE_SELECTED_FIELDS</source>
-        <translation>Sauvegarder les champs sélectionnés</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="425"/>
-        <source>SAVE_WORKSPACE_DATA</source>
-        <translation>Sauvegarder les données de l&apos;espace de travail</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="439"/>
-        <source>NOT_IMPLEMENTED_YET</source>
-        <translation>Non implémenté</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="440"/>
-        <source>FUNCTION_NOT_IMPLEMENTED</source>
-        <translation>Cette function n&apos;est pas encore implémentée</translation>
-    </message>
-</context>
-<context>
-    <name>@default</name>
-    <message>
-        <location filename="MEDCALC/gui/MEDModule.cxx" line="151"/>
-        <location filename="MEDCALC/gui/DatasourceController.cxx" line="152"/>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="75"/>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="267"/>
-        <location filename="MEDCALC/gui/WorkspaceController.cxx" line="420"/>
-        <source>FILE_FILTER_MED</source>
-        <translation>Fichiers MED (*.med)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="57"/>
-        <source>FILE_FILTER_PNG</source>
-        <translation>Image PNG (*.png)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="58"/>
-        <source>FILE_FILTER_JPG</source>
-        <translation>Image JPG (*.jpg)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="59"/>
-        <source>FILE_FILTER_PGM</source>
-        <translation>Image PGM (*.jpg)</translation>
-    </message>
-    <message>
-        <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="60"/>
-        <source>FILE_FILTER_ALL</source>
-        <translation>Tous les fichiers (*.*)</translation>
-    </message>
-    <message>
-        <source>LAB_VIEW_MODE</source>
-        <translation>Mode de rendu :</translation>
-    </message>
-    <message>
-        <source>LAB_VIEW_MODE_REPLACE</source>
-        <translation>Remplacer</translation>
-    </message>
-    <message>
-        <source>LAB_VIEW_MODE_OVERLAP</source>
-        <translation>Superposer</translation>
-    </message>
-    <message>
-        <source>LAB_VIEW_MODE_NEW_LAYOUT</source>
-        <translation>Nouvel onglet</translation>
-    </message>
-    <message>
-        <source>LAB_VIEW_MODE_SPLIT_VIEW</source>
-        <translation>Scinder</translation>
-    </message>
-</context>
-</TS>
diff --git a/src/MEDCalc/gui/MED_msg_ja.ts b/src/MEDCalc/gui/MED_msg_ja.ts
deleted file mode 100644 (file)
index 59f48fb..0000000
+++ /dev/null
@@ -1,625 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.0" language="ja" sourcelanguage="en">
-  <context>
-    <name>PresentationController</name>
-    <message>
-      <source>TITLE_PRESENTATION_PARAMETERS</source>
-      <translation>表現パラメータ</translation>
-    </message>
-    <message>
-      <source>LAB_PRESENTATION_MESH_VIEW</source>
-      <translation>メッシュ</translation>
-    </message>
-    <message>
-      <source>TIP_PRESENTATION_MESH_VIEW</source>
-      <translation>メッシュ</translation>
-    </message>
-    <message>
-      <source>LAB_PRESENTATION_SCALAR_MAP</source>
-      <translation>スカラーマップ</translation>
-    </message>
-    <message>
-      <source>TIP_PRESENTATION_SCALAR_MAP</source>
-      <translation>スカラーマップ</translation>
-    </message>
-    <message>
-      <source>LAB_PRESENTATION_CONTOUR</source>
-      <translation>コンター</translation>
-    </message>
-    <message>
-      <source>TIP_PRESENTATION_CONTOUR</source>
-      <translation>コンター</translation>
-    </message>
-    <message>
-      <source>LAB_PRESENTATION_VECTOR_FIELD</source>
-      <translation>ベクトル場</translation>
-    </message>
-    <message>
-      <source>TIP_PRESENTATION_VECTOR_FIELD</source>
-      <translation>ベクトル場</translation>
-    </message>
-    <message>
-      <source>LAB_PRESENTATION_SLICES</source>
-      <translation>スライス</translation>
-    </message>
-    <message>
-      <source>TIP_PRESENTATION_SLICES</source>
-      <translation>スライス</translation>
-    </message>
-    <message>
-      <source>LAB_PRESENTATION_DEFLECTION_SHAPE</source>
-      <translation>偏差形状</translation>
-    </message>
-    <message>
-      <source>TIP_PRESENTATION_DEFLECTION_SHAPE</source>
-      <translation>偏差形状</translation>
-    </message>
-    <message>
-      <source>LAB_PRESENTATION_POINT_SPRITE</source>
-      <translation>点スプライト描画</translation>
-    </message>
-    <message>
-      <source>TIP_PRESENTATION_POINT_SPRITE</source>
-      <translation>点スプライト</translation>
-    </message>
-    <message>
-      <source>LAB_DELETE_PRESENTATION</source>
-      <translation>プレゼンテーションの削除</translation>
-    </message>
-    <message>
-      <source>TIP_DELETE_PRESENTATION</source>
-      <translation>選択されたプレゼンテーションの削除</translation>
-    </message>
-    <message>
-      <source>LAB_PARAVIS_DUMP</source>
-      <translation>パイプラインの保存</translation>
-    </message>
-    <message>
-      <source>TIP_PARAVIS_DUMP</source>
-      <translation>プレゼンテーションの低レベルPythonコマンドをダンプ</translation>
-    </message>
-    <message>
-      <source>MENU_PRESENTATIONS</source>
-      <translation>プレゼンテーション</translation>
-    </message>
-    <message>
-      <source>MEDPresentationMeshView</source>
-      <translation>メッシュビュー</translation>
-    </message>
-    <message>
-      <source>MEDPresentationScalarMap</source>
-      <translation>スカラーマップ</translation>
-    </message>
-    <message>
-      <source>MEDPresentationContour</source>
-      <translation>コンター</translation>
-    </message>
-    <message>
-      <source>MEDPresentationVectorField</source>
-      <translation>ベクトル場</translation>
-    </message>
-    <message>
-      <source>MEDPresentationSlices</source>
-      <translation>スライス</translation>
-    </message>
-    <message>
-      <source>MEDPresentationDeflectionShape</source>
-      <translation>偏差形状</translation>
-    </message>
-    <message>
-      <source>MEDPresentationPointSprite</source>
-      <translation>点スプライト描画</translation>
-    </message>
-  </context>
-  <context>
-    <name>ProcessingController</name>
-    <message>
-      <source>MENU_PROCESSING</source>
-      <translation>処理中</translation>
-    </message>
-    <message>
-      <source>LAB_PROCESSING_CHANGE_MESH</source>
-      <translation>基本要素の変更</translation>
-    </message>
-    <message>
-      <source>LAB_PROCESSING_INTERPOLATE_FIELD</source>
-      <translation>場の補間</translation>
-    </message>
-  </context>
-  <context>
-    <name>DatasourceController</name>
-    <message>
-      <location filename="MEDCALC/gui/DatasourceController.cxx" line="45"/>
-      <source>LAB_ADD_DATA_SOURCE</source>
-      <translation>データソースの追加</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/DatasourceController.cxx" line="46"/>
-      <source>TIP_ADD_DATA_SOURCE</source>
-      <translation>(medデータを供給する)ファイルデータソースの追加</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/DatasourceController.cxx" line="52"/>
-      <source>LAB_ADD_IMAGE_SOURCE</source>
-      <translation>イメージソースの追加</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/DatasourceController.cxx" line="53"/>
-      <source>TIP_ADD_IMAGE_SOURCE</source>
-      <translation>イメージファイルからデータソースの作成</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/DatasourceController.cxx" line="62"/>
-      <source>LAB_EXPAND_FIELD</source>
-      <translation>場の時系列を拡張</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/DatasourceController.cxx" line="75"/>
-      <source>LAB_USE_IN_WORKSPACE</source>
-      <translation>ワークスペースの使用</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/DatasourceController.cxx" line="157"/>
-      <source>IMPORT_MED_FIELDS</source>
-      <translation>MEDフィールドのインポート</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/DatasourceController.cxx" line="191"/>
-      <source>OPERATION_FAILED</source>
-      <translation>操作に失敗しました。</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/DatasourceController.cxx" line="192"/>
-      <source>CREATION_FAILED</source>
-      <translation>イメージファイルからMEDデータの作成に失敗しました。</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/DatasourceController.cxx" line="283"/>
-      <source>OPERATION_NOT_ALLOWED</source>
-      <translation>許可されていない操作です。</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/DatasourceController.cxx" line="284"/>
-      <source>FIELD_ALREADY_DEFINED</source>
-      <translation>この場はワークスペース内で既に定義されています。</translation>
-    </message>
-  </context>
-  <context>
-    <name>WidgetPresentationParameters</name>
-    <message>
-      <source>LAB_DEFAULT_DYN_TITLE</source>
-      <translation>デフォルトパラメータ</translation>
-    </message>
-    <message>
-      <source>LAB_DISP_COMP</source>
-      <translation>表示されたコンポーネント:</translation>
-    </message>
-    <message>
-      <source>LAB_EUCLIDEAN_NORM</source>
-      <translation>ユークリッド幾何学基準</translation>
-    </message>
-    <message>
-      <source>LAB_SCALARBAR</source>
-      <translation>スカラバー:</translation>
-    </message>
-    <message>
-      <source>LAB_RANGE</source>
-      <translation>範囲:</translation>
-    </message>
-    <message>
-      <source>LAB_ALL_TIMESTEPS</source>
-      <translation>すべてのタイムステップ</translation>
-    </message>
-    <message>
-      <source>LAB_CURRENT_TIMESTEP</source>
-      <translation>現在のタイムステップ</translation>
-    </message>
-    <message>
-      <source>LAB_USER_RANGE</source>
-      <translation>ユーザ指定</translation>
-    </message>
-    <message>
-      <source>LAB_TIMESTEP</source>
-      <translation>タイムステップ:</translation>
-    </message>
-    <message>
-      <source>LAB_MIN_VALUE</source>
-      <translation>最小値:</translation>
-    </message>
-    <message>
-      <source>LAB_MAX_VALUE</source>
-      <translation>最大値:</translation>
-    </message>
-    <message>
-      <source>LAB_COLOR_MAP</source>
-      <translation>カラーマップ:</translation>
-    </message>
-    <message>
-      <source>LAB_MESH_WIREFRAME</source>
-      <translation>ワイヤフレーム</translation>
-    </message>
-    <message>
-      <source>LAB_MESH_SURFACE</source>
-      <translation>表面</translation>
-    </message>
-    <message>
-      <source>LAB_MESH_SURF_EDGES</source>
-      <translation>エッジを持った表面</translation>
-    </message>
-    <message>
-      <source>LAB_DISP_MESH_MODE</source>
-      <translation>メッシュ表示:</translation>
-    </message>
-    <message>
-      <source>LAB_NB_CONTOURS</source>
-      <translation>コンタ数 (max. %1):</translation>
-    </message>
-    <message>
-      <source>LAB_NB_SLICES</source>
-      <translation>スライス数 (max. %1):</translation>
-    </message>
-    <message>
-      <source>LAB_SPINBOX_TOOLTIP</source>
-      <translation>Enterキーを押して適用</translation>
-    </message>
-    <message>
-      <source>LAB_SLICE_ORIENT</source>
-      <translation>スライス方向:</translation>
-    </message>
-    <message>
-      <source>LAB_SLICE_NORMAL_TO_X</source>
-      <translation>Xと垂直</translation>
-    </message>
-    <message>
-      <source>LAB_SLICE_NORMAL_TO_Y</source>
-      <translation>Yと垂直</translation>
-    </message>
-    <message>
-      <source>LAB_SLICE_NORMAL_TO_Z</source>
-      <translation>Zと垂直</translation>
-    </message>
-    <message>
-      <source>LAB_SLICE_NORMAL_TO_XY</source>
-      <translation>XYと垂直</translation>
-    </message>
-    <message>
-      <source>LAB_SLICE_NORMAL_TO_XZ</source>
-      <translation>XZと垂直</translation>
-    </message>
-    <message>
-      <source>LAB_SLICE_NORMAL_TO_YZ</source>
-      <translation>YZと垂直</translation>
-    </message>
-    <message>
-      <source>LAB_SLICE_NORMAL_TO_XYZ</source>
-      <translation>XYZと垂直</translation>
-    </message>
-    <message>
-      <source>LAB_BLUE_TO_RED</source>
-      <translation>青-赤 グラデーション</translation>
-    </message>
-    <message>
-      <source>LAB_COOL_TO_WARM</source>
-      <translation>冷却から温め</translation>
-    </message>
-  </context>
-  <context>
-    <name>DlgAlias</name>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="14"/>
-      <source>SELECT_AN_ALIAS_FOR_THE_FIELD</source>
-      <translation>場のエイリアスを選択</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="401"/>
-      <source>DEFINE_AN_ALIAS</source>
-      <translation>コンソールでの場の操作に対するエイリアスを定義することができる:</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="419"/>
-      <source>ALIAS</source>
-      <translation>エイリアス</translation>
-    </message>
-    <message utf8="true">
-      <location filename="MEDCALC/gui/dialogs/DlgAlias.ui" line="436"/>
-      <source>MSG_OPERATION_DEFINES_VARIABLE</source>
-      <translation>(この操作はテキスト コンソールに&lt;alias&gt;という名前の変数を定義します。 "&lt;alias&gt;. help()"と入力すると機能、または単純な「doc」を見ることがきます)</translation>
-    </message>
-  </context>
-  <context>
-    <name>DlgChangeUnderlyingMesh</name>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="14"/>
-      <source>FORM</source>
-      <translation>フォーム</translation>
-    </message>
-    <message utf8="true">
-      <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="403"/>
-      <source>MESH_GT</source>
-      <translation>メッシュ -&gt;</translation>
-    </message>
-    <message utf8="true">
-      <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="420"/>
-      <source>MSG_EXPLORER</source>
-      <translation>エクスプローラによってデータスペース内で参照されたMEDデータソース(メッシュおよび場)上に表示します。</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.cxx" line="35"/>
-      <source>DATA_VERIFICATION</source>
-      <translation>データの検証</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.cxx" line="36"/>
-      <location filename="MEDCALC/gui/dialogs/DlgChangeUnderlyingMesh.ui" line="391"/>
-      <source>SELECT_MESH</source>
-      <translation>エクスプローラ内のメッシュを選択し、メッシュボタンをクリックする必要があります。</translation>
-    </message>
-  </context>
-  <context>
-    <name>DlgInterpolateField</name>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="391"/>
-      <source>SELECT_MESH</source>
-      <translation>エクスプローラ内のメッシュを選択し、メッシュボタンをクリックする必要があります。</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="406"/>
-      <source>TARGET_MESH_GT</source>
-      <translation>ターゲットのメッシュ -&gt;</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="423"/>
-      <source>MSG_EXPLORER</source>
-      <translation>エクスプローラによってデータスペース内で参照されたMEDデータソース(メッシュおよび場)上に表示します。</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="450"/>
-      <source>LABEL_PRECISION</source>
-      <translation>挿入精度</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="493"/>
-      <source>LABEL_INTERSECTION_TYPE</source>
-      <translation>交点タイプ</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="520"/>
-      <source>LABEL_METHOD</source>
-      <translation>挿入方法</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="547"/>
-      <source>LABEL_DEFAULT_VALUE</source>
-      <translation>結果フィールドのデフォルト値</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="581"/>
-      <source>LABEL_REVERSE</source>
-      <translation>挿入を反転しますか?</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgInterpolateField.ui" line="612"/>
-      <source>LABEL_NATURE</source>
-      <translation>フィールド性質</translation>
-    </message>
-  </context>
-  <context>
-    <name>DlgImageToMed</name>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="14"/>
-      <source>FORM</source>
-      <translation>フォーム</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="28"/>
-      <source>IMAGE_FILE</source>
-      <translation>画像ファイル:</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="35"/>
-      <source>MED_FILE</source>
-      <translation>MED ファイル:</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="64"/>
-      <source>SELECT_IMAGE_FILE</source>
-      <translation>イメージ ファイルの選択</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="79"/>
-      <source>SPECIFY_MED_FILE</source>
-      <translation>MED ファイルの指定</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.ui" line="82"/>
-      <source>LOAD_AUTOMATICALLY</source>
-      <translation>自動読み込み</translation>
-    </message>
-  </context>
-  <context>
-    <name>DlgUseInWorkspace</name>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="13"/>
-      <source>FORM</source>
-      <translation>フォーム</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="49"/>
-      <source>PRESSURE</source>
-      <translation>圧力:</translation>
-    </message>
-    <message utf8="true">
-      <location filename="MEDCALC/gui/dialogs/DlgUseInWorkspace.ui" line="56"/>
-      <source>TEMPERATURE</source>
-      <translation>温度:</translation>
-    </message>
-  </context>
-  <context>
-    <name>GenericDialog</name>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/GenericDialog.ui" line="13"/>
-      <source>DIALOG</source>
-      <translation>ダイアログ</translation>
-    </message>
-  </context>
-  <context>
-    <name>MEDModule</name>
-    <message>
-      <location filename="MEDCALC/gui/MEDModule.cxx" line="68"/>
-      <location filename="MEDCALC/gui/MEDModule.cxx" line="157"/>
-      <source>IMPORT_FROM_FILE</source>
-      <translation>ファイルからのインポート</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/MEDModule.cxx" line="69"/>
-      <source>IMPORT_MED_FILE</source>
-      <translation>MEDファイルをインポート</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/MEDModule.cxx" line="72"/>
-      <source>MEN_FILE</source>
-      <translation>ファイル(&amp;F)</translation>
-    </message>
-    <message>
-      <source>PREF_TAB_GENERAL</source>
-      <translation>一般的な</translation>
-    </message>
-    <message>
-      <source>PREF_THEME_GROUP</source>
-      <translation>テーマ</translation>
-    </message>
-    <message>
-      <source>PREF_ICONS</source>
-      <translation>アイコン</translation>
-    </message>
-    <message>
-      <source>PREF_ICON_THEME_MODERN</source>
-      <translation>モダン</translation>
-    </message>
-    <message>
-      <source>PREF_ICON_THEME_CLASSIC</source>
-      <translation>クラシック</translation>
-    </message>
-  </context>
-  <context>
-    <name>WorkspaceController</name>
-    <message>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="66"/>
-      <source>VISUALIZE_SCALAR_MAP</source>
-      <translation>視覚化 (スカラーマップ)</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="67"/>
-      <source>USE_IN_CONSOLE</source>
-      <translation>使用 (コンソルにおいて)</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="68"/>
-      <source>EXPORT_TO_PARAVIS</source>
-      <translation>書き出し (PARAVISへ)</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="69"/>
-      <source>SAVE_AS_MED</source>
-      <translation>保存 (MED ファイルとして)</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="70"/>
-      <source>REMOVE_FROM_WORKSPACE</source>
-      <translation>削除 (ワークスペースから)</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="91"/>
-      <source>LAB_SAVE_WORKSPACE</source>
-      <translation>ワークスペースの表示</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="92"/>
-      <source>TIP_SAVE_WORKSPACE</source>
-      <translation>ワークスペースの保存 (メッシュと場) MED ファイル内</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="97"/>
-      <source>LAB_CLEAN_WORKSPACE</source>
-      <translation>ワークスペースのクリーニグ</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="98"/>
-      <source>TIP_CLEAN_WORKSPACE</source>
-      <translation>ワークスペース内の全データのクリーニング</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="271"/>
-      <source>SAVE_SELECTED_FIELDS</source>
-      <translation>選択場の保存</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="425"/>
-      <source>SAVE_WORKSPACE_DATA</source>
-      <translation>ワークスペースデータの保存</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="439"/>
-      <source>NOT_IMPLEMENTED_YET</source>
-      <translation>未実装</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="440"/>
-      <source>FUNCTION_NOT_IMPLEMENTED</source>
-      <translation>この機能はまだ実装されていません</translation>
-    </message>
-  </context>
-  <context>
-    <name>@default</name>
-    <message>
-      <location filename="MEDCALC/gui/MEDModule.cxx" line="151"/>
-      <location filename="MEDCALC/gui/DatasourceController.cxx" line="152"/>
-      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="75"/>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="267"/>
-      <location filename="MEDCALC/gui/WorkspaceController.cxx" line="420"/>
-      <source>FILE_FILTER_MED</source>
-      <translation>MED ファイル (*.med)</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="57"/>
-      <source>FILE_FILTER_PNG</source>
-      <translation>PNG 画像 (*.png)</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="58"/>
-      <source>FILE_FILTER_JPG</source>
-      <translation>JPG 画像 (*.jpg)</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="59"/>
-      <source>FILE_FILTER_PGM</source>
-      <translation>PGM 画像 (*.jpg)</translation>
-    </message>
-    <message>
-      <location filename="MEDCALC/gui/dialogs/DlgImageToMed.cxx" line="60"/>
-      <source>FILE_FILTER_ALL</source>
-      <translation>全ファイル (*.*)</translation>
-    </message>
-    <message>
-      <source>LAB_VIEW_MODE</source>
-      <translation>ビューモード:</translation>
-    </message>
-    <message>
-      <source>LAB_VIEW_MODE_REPLACE</source>
-      <translation>置き換え</translation>
-    </message>
-    <message>
-      <source>LAB_VIEW_MODE_OVERLAP</source>
-      <translation>オーバーラップ</translation>
-    </message>
-    <message>
-      <source>LAB_VIEW_MODE_NEW_LAYOUT</source>
-      <translation>新レイアウト</translation>
-    </message>
-    <message>
-      <source>LAB_VIEW_MODE_SPLIT_VIEW</source>
-      <translation>分割</translation>
-    </message>
-  </context>
-</TS>
index 6a5d05b3bacb67fdb4319dc0e03ceb3ff9251005..21f8abd53fb19c56ad58342aad6fcc39793e42ef 100644 (file)
@@ -32,7 +32,7 @@ DlgImageToMed::DlgImageToMed(QDialog *parent) : GenericDialog(parent)
 {
   ui.setupUi(this->getPanel());
 
-  QString moduleName = "MED";
+  QString moduleName = "FIELDS";
   QPixmap aPixmap = GUI::getResourcesManager()->loadPixmap( moduleName, tr("ICO_FOLDER") );
   QIcon icon(aPixmap);
   ui.btnImageFileChooser->setIcon(icon);
index 215c32553e636a19dfb4e21f1460c64e1b6a3ba6..30854142bbc0353f6d4ed0da3e4f414b455f2545 100644 (file)
@@ -33,7 +33,7 @@
  * configuration below is MEDModule.
  */
 
-#include <MED_version.h>
+#include <FIELDS_version.h>
 #include "MEDModule.hxx"
 #include "MEDCALCGUI.hxx"
 
@@ -59,7 +59,7 @@ extern "C" {
 
   /*! This function specifies the version of the module to be displayed in the about dialog box */
   MEDCALCGUI_EXPORT char* getModuleVersion() {
-    return (char*)SALOMEMED_VERSION_STR;
+    return (char*)SALOMEFIELDS_VERSION_STR;
   }
 
 }
index a69b6db66e6e08679d70a415663f7045440d35cb..154fec1a8e9b77c26ef5e8d2a872b3c6b4447dd5 100644 (file)
@@ -22,4 +22,4 @@ ADD_SUBDIRECTORY(presentations)
 
 FILE(GLOB MED_RESOURCES_FILES RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/*.png")
 
-INSTALL(FILES ${MED_RESOURCES_FILES} DESTINATION ${SALOME_MED_INSTALL_RES_DATA})
+INSTALL(FILES ${MED_RESOURCES_FILES} DESTINATION ${SALOME_FIELDS_INSTALL_RES_DATA})
index d574ae3241de176e16785e847165ebcd6f443fb2..2d8b072af73de8963332ee8f3567c823ad89dd67 100644 (file)
@@ -19,4 +19,4 @@
 
 FILE(GLOB MED_RESOURCES_FILES RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/*.png")
 
-INSTALL(FILES ${MED_RESOURCES_FILES} DESTINATION ${SALOME_MED_INSTALL_RES_DATA})
+INSTALL(FILES ${MED_RESOURCES_FILES} DESTINATION ${SALOME_FIELDS_INSTALL_RES_DATA})
index d574ae3241de176e16785e847165ebcd6f443fb2..2d8b072af73de8963332ee8f3567c823ad89dd67 100644 (file)
@@ -19,4 +19,4 @@
 
 FILE(GLOB MED_RESOURCES_FILES RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/*.png")
 
-INSTALL(FILES ${MED_RESOURCES_FILES} DESTINATION ${SALOME_MED_INSTALL_RES_DATA})
+INSTALL(FILES ${MED_RESOURCES_FILES} DESTINATION ${SALOME_FIELDS_INSTALL_RES_DATA})
index 24567b8f57d2f88a1497e29c2efda6bad1bd0497..87b89265e1f0ef84e44ecdf04539f73353984ae2 100644 (file)
@@ -32,7 +32,7 @@ SET(MED_FILES
   padderoutput.med
   )
 
-INSTALL(FILES ${MED_FILES} DESTINATION ${SALOME_MED_INSTALL_RES_DATA}/medcalc_testfiles)
+INSTALL(FILES ${MED_FILES} DESTINATION ${SALOME_FIELDS_INSTALL_RES_DATA}/medcalc_testfiles)
 
 SET(MED_IMG_FILES
   irm_test1.png
@@ -42,4 +42,4 @@ SET(MED_IMG_FILES
   champ_altitude_MAP.pgm
   )
 
-INSTALL(FILES ${MED_IMG_FILES} DESTINATION ${SALOME_MED_INSTALL_RES_DATA}/medcalc_testfiles)
+INSTALL(FILES ${MED_IMG_FILES} DESTINATION ${SALOME_FIELDS_INSTALL_RES_DATA}/medcalc_testfiles)
index 964172e0503c5573ab7599ca032459bfbc0f8170..dcc6fc662ce262dc84ccb5648fe8d4df25d55b5a 100644 (file)
 SALOME_CONFIGURE_FILE(medcalc_testutils.py.in ${CMAKE_CURRENT_BINARY_DIR}/medcalc_testutils.py)
 
 IF(SALOME_BUILD_GUI)
-  IF(SALOME_MED_WITH_QTTESTING)
+  IF(SALOME_FIELDS_WITH_QTTESTING)
     ADD_SUBDIRECTORY(gui)
   ENDIF()
 ENDIF()
 
-IF(SALOME_MED_ENABLE_PYTHON)
+IF(SALOME_FIELDS_ENABLE_PYTHON)
   ADD_SUBDIRECTORY(tui)
 ENDIF()
 
-SET(TEST_INSTALL_DIRECTORY ${SALOME_MED_INSTALL_TEST}/MEDCalc)
+SET(TEST_INSTALL_DIRECTORY ${SALOME_FIELDS_INSTALL_TEST}/MEDCalc)
 SALOME_INSTALL_SCRIPTS(${CMAKE_CURRENT_BINARY_DIR}/medcalc_testutils.py ${SALOME_INSTALL_SCRIPT_SCRIPTS})
 INSTALL(FILES CTestTestfileInstall.cmake
   DESTINATION ${TEST_INSTALL_DIRECTORY}
index dd43e6e7cb0767e535eb233b2e238938e20f32ec..c29d55ff6c7bc381f98d55d9d29afdf52ee2d2f2 100644 (file)
@@ -34,15 +34,15 @@ SET(_test_files
 )
 
 # Install rules
-SET(TEST_INSTALL_DIRECTORY ${SALOME_MED_INSTALL_TEST}/MEDCalc/gui)
+SET(TEST_INSTALL_DIRECTORY ${SALOME_FIELDS_INSTALL_TEST}/MEDCalc/gui)
 
 SALOME_INSTALL_SCRIPTS(test_qttesting.py ${TEST_INSTALL_DIRECTORY})
 
 SALOME_INSTALL_SCRIPTS("${_test_scripts}" ${SALOME_INSTALL_PYTHON}/tests/gui)
 
-INSTALL(FILES ${_test_scenarii} DESTINATION ${SALOME_MED_INSTALL_RES_DATA}/tests/gui/scenarios)
-INSTALL(FILES ${_test_baselines} DESTINATION ${SALOME_MED_INSTALL_RES_DATA}/tests/gui/baselines)
-INSTALL(FILES ${_test_files} DESTINATION ${SALOME_MED_INSTALL_RES_DATA}/tests/gui/medfiles)
+INSTALL(FILES ${_test_scenarii} DESTINATION ${SALOME_FIELDS_INSTALL_RES_DATA}/tests/gui/scenarios)
+INSTALL(FILES ${_test_baselines} DESTINATION ${SALOME_FIELDS_INSTALL_RES_DATA}/tests/gui/baselines)
+INSTALL(FILES ${_test_files} DESTINATION ${SALOME_FIELDS_INSTALL_RES_DATA}/tests/gui/medfiles)
 
 INSTALL(FILES CTestTestfileInstall.cmake
   DESTINATION ${TEST_INSTALL_DIRECTORY}
index 77e82551586642a06a9a1fabd21c5efa6f27a3b9..d73d4c3f1af9ddc404cead5bb99c98dbf8abea55 100644 (file)
@@ -20,7 +20,7 @@
 import os
 
 def __getRootDir():
-  rootDir = os.environ.get("MED_ROOT_DIR", "")
+  rootDir = os.environ.get("FIELDS_ROOT_DIR", "")
   return rootDir
 
 # === GUI ===
index 8a6cc20e48d20b30a4099fc99822dd19b1d51a6e..cff341c85769a4423f16dee19da571b6a017c57b 100644 (file)
@@ -25,7 +25,7 @@ SET(_test_files
     medfiles/deplacements.med
 )
 
-SET(TEST_INSTALL_DIRECTORY ${SALOME_MED_INSTALL_TEST}/MEDCalc/tui)
+SET(TEST_INSTALL_DIRECTORY ${SALOME_FIELDS_INSTALL_TEST}/MEDCalc/tui)
 
 FOREACH(tfile ${TEST_NAMES})
   INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${tfile}.py
@@ -38,4 +38,4 @@ INSTALL(FILES CTestTestfileInstall.cmake
 
 INSTALL(FILES tests.set DESTINATION ${TEST_INSTALL_DIRECTORY})
 
-INSTALL(FILES ${_test_files} DESTINATION ${SALOME_MED_INSTALL_RES_DATA}/tests/tui/medfiles)
+INSTALL(FILES ${_test_files} DESTINATION ${SALOME_FIELDS_INSTALL_RES_DATA}/tests/tui/medfiles)
index fa828c6acfcd118dda73beab3a6243d5d2fb5eaa..16552468de5c3d4632aef1881622d567a7c7330e 100644 (file)
@@ -32,7 +32,7 @@
 # containerType = Name of the container factory
 #
 factoryComponentName = "MEDFactory"
-medComponentName = "MED"
+medComponentName = "FIELDS"
 #corbaModule   = "MEDCALC"
 containerType = "FactoryServer"
 
@@ -44,7 +44,7 @@ if salome.lcc is None:
 import MEDCALC   # corbaModule
 med_engine = salome.lcc.FindOrLoadComponent(containerType,medComponentName)
 factory = salome.lcc.FindOrLoadComponent(containerType,factoryComponentName)
-# The factory is not the main CORBA component of the SALOME module MED
+# The factory is not the main CORBA component of the SALOME module FIELDS
 # (i.e. the engine associated to the study), but the CORBA
 # entry point for MED fields operations (i.e. a CORBA component
 # reachable through the LifeCycleCORBA). This entry point is used to
index 6493341039f053f0a19374d4ae321e23f981a8c3..e36ad86b4aedb2df140e9092cded02ced49277e8 100644 (file)
@@ -130,8 +130,8 @@ class FieldBuilder:
 
 def getTestImagePath():
     import os
-    MED_ROOT_DIR=os.environ["MED_ROOT_DIR"]
-    RESDIR=os.path.join(MED_ROOT_DIR, "share", "salome", "resources", "med", "medcalc_testfiles")
+    FIELDS_ROOT_DIR=os.environ["FIELDS_ROOT_DIR"]
+    RESDIR=os.path.join(FIELDS_ROOT_DIR, "share", "salome", "resources", "fields", "medcalc_testfiles")
     imgFileName="irm_test1.png"
     imgFilePath=os.path.join(RESDIR,imgFileName)
     return imgFilePath
index 797b01a612589e885665f95e0b14e926c98118fd..906524e8369c50d5083fa74626fef5cf57e8241a 100644 (file)
 
 ADD_DEFINITIONS(${HDF5_DEFINITIONS} ${MEDFILE_DEFINITIONS} ${OMNIORB_DEFINITIONS})
 
-IF(SALOME_MED_ENABLE_PYTHON)
+IF(SALOME_FIELDS_ENABLE_PYTHON)
   ADD_SUBDIRECTORY(Swig)
   IF(SALOME_BUILD_TESTS)
     ADD_SUBDIRECTORY(Test)
   ENDIF(SALOME_BUILD_TESTS)
-ENDIF(SALOME_MED_ENABLE_PYTHON)
+ENDIF(SALOME_FIELDS_ENABLE_PYTHON)
 
 INCLUDE_DIRECTORIES(
   ${MEDFILE_INCLUDE_DIRS}
index 8dbaa37748ba12f6614b9e920ca4a8df7621bbc8..184c8dc51a793c3c0beac7d4631bbaf6ac5bfdb5 100644 (file)
@@ -45,7 +45,7 @@ INSTALL(TARGETS TestMEDCalculator DESTINATION ${SALOME_INSTALL_BINS})
 
 # Application tests
 
-SET(TEST_INSTALL_DIRECTORY ${SALOME_MED_INSTALL_TEST}/MEDCalculator)
+SET(TEST_INSTALL_DIRECTORY ${SALOME_FIELDS_INSTALL_TEST}/MEDCalculator)
 INSTALL(TARGETS TestMEDCalculator DESTINATION ${TEST_INSTALL_DIRECTORY})
 
 INSTALL(FILES CTestTestfileInstall.cmake
index cbb8ddbc10a0b8282d1ddabd037d495e7127ae15..125ad435a1b538d77d1a72de7bc35c889732b264 100644 (file)
@@ -57,4 +57,4 @@ SET(MEDGUITS_SOURCES
 ADD_LIBRARY(MEDGUI SHARED ${MEDGUI_SOURCES} ${MEDGUI_HEADERS_MOC} ${MEDGUI_FORMS_HEADERS})
 TARGET_LINK_LIBRARIES(MEDGUI medcalculator ${QT_MT_LIBS} ${BOOST_LIBRARIES} ${GUI_LDFLAGS} ${SalomeApp} ${CAM} ${LightApp} ${qtx} ${suit} ${SalomeObject} ${PLATFORM_LIBS} ${SalomeLifeCycleCORBA})
 INSTALL(TARGETS MEDGUI DESTINATION ${SALOME_INSTALL_LIBS})
-QT_INSTALL_TS_RESOURCES("${MEDGUITS_SOURCES}" "${SALOME_MED_INSTALL_RES_DATA}")
+QT_INSTALL_TS_RESOURCES("${MEDGUITS_SOURCES}" "${SALOME_FIELDS_INSTALL_RES_DATA}")
index 9fe6cd703b8b5a0a70c655c5c7526e900f0fc17d..7732dc8f699f7683be4064e03832336852cc8f61 100644 (file)
@@ -49,11 +49,11 @@ MEDGUIDataBaseDockWidget::MEDGUIDataBaseDockWidget(CAM_Application *app, QWidget
   //
   QPixmap pixmap;
   SUIT_ResourceMgr* mgr=_app->resourceMgr();
-  pixmap=mgr->loadPixmap("MED","med_field.png");
+  pixmap=mgr->loadPixmap("FIELDS","med_field.png");
   _fields=new QTreeWidgetItem((QTreeWidget*)0,QStringList(QString("Fields")));
   _fields->setIcon(0,QIcon(pixmap));
   _tree_widget->addTopLevelItem(_fields);
-  pixmap=mgr->loadPixmap("MED","med_mesh.png");
+  pixmap=mgr->loadPixmap("FIELDS","med_mesh.png");
   _meshes=new QTreeWidgetItem((QTreeWidget*)0,QStringList(QString("Meshes")));
   _meshes->setIcon(0,QIcon(pixmap));
   _tree_widget->addTopLevelItem(_meshes);