From: admin Date: Fri, 16 May 2003 13:03:52 +0000 (+0000) Subject: This commit was generated by cvs2git to create branch 'IMPORT'. X-Git-Tag: V1_2~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=a5bef0e1857c5dec664792617c89e20b5e00eed9;p=modules%2Fsuperv.git This commit was generated by cvs2git to create branch 'IMPORT'. Sprout from master 2003-05-16 13:02:22 UTC nri 'NRI : First integration.' Cherrypick from master 2003-05-16 13:03:51 UTC nri 'NRI : Correction factory name.': src/Makefile.in Delete: Makefile.in build_configure configure.in.base src/SUPERVGUI/SUPERVGUI_icons.po src/SUPERVGUI/SUPERVGUI_msg_en.po src/SUPERVGUI/SUPERVGUI_msg_fr.po --- diff --git a/Makefile.in b/Makefile.in deleted file mode 100644 index 61816d1..0000000 --- a/Makefile.in +++ /dev/null @@ -1,97 +0,0 @@ -# -* Makefile *- -# -# Author : Patrick GOLDBRONN (CEA) -# Date : 28/06/2001 -# $Header$ -# - -# source path -top_srcdir=@top_srcdir@ -top_builddir=. -srcdir=@srcdir@ -VPATH=.:@srcdir@:@top_srcdir@/bin:@top_srcdir@/resources:./bin:@top_srcdir@/idl - - -@COMMENCE@ - -SUBDIRS = idl src - -RESOURCES_FILES = \ -components.png \ -edit.png \ -export.gif \ -import.gif \ -kill.png \ -modify.png \ -ModuleSupervision.png \ -reload.png \ -resources.png \ -run.png \ -steps.png \ -SUPERV_en.xml \ -SUPERV_fr.xml \ -suspend-resume.gif \ -Superv_tree_superv.png - -# copy header files in common directory -ifeq ($(HAVE_SSTREAM),yes) - include_list=include/salome/SALOMEconfig.h -else - include_list=include/salome/SALOMEconfig.h include/salome/sstream -endif - -inc: idl $(include_list) - -include/salome/SALOMEconfig.h: salome_adm/unix/SALOMEconfig.h - -$(RM) $@ - $(LN_S) ../../$< $@ - -include/salome/sstream: salome_adm/unix/sstream - -$(RM) $@ - $(LN_S) ../../$< $@ - -depend: depend_idl - -depend_idl: - (cd idl ; $(MAKE) $@) || exit 1 - -# doc is already build : if you want to had documents, go manually to doc and run 'make doc' -#doc: -# (cd doc && $(MAKE) $@) || exit 1 - -install-end: -# finish libtool install -# @$(LT) --mode=finish $(libdir) - -install-include: $(include_list) - $(INSTALL) -d $(includedir) - @for f in X $(include_list); do \ - if test $$f != X; then \ - ($(INSTALL_DATA) $$f $(includedir)/. || exit 1); \ - fi; \ - done - -# install script in $(bindir) : -install-bin: $(BIN_SCRIPT) - $(INSTALL) -d $(bindir) - if test $(BIN_SCRIPT)X != X; then \ - $(INSTALL_PROGRAM) $^ $(bindir); \ - fi - -uninstall: uninstall-idl - -uninstall-idl: - $(RM) $(idldir)/*.idl - -distclean: distclean-other - -distclean-other: - -$(RM) salome_adm/unix/*~ salome_adm/unix/*% salome_adm/unix/*.bak salome_adm/unix/*.new salome_adm/unix/*.old - -$(RM) salome_adm/unix/make_* - -$(RM) salome_adm/unix/depend salome_adm/unix/SALOMEconfig.h - -$(RM) config.cache config.log config.status - -@MODULE@ - -install: install-bin install-include install-end - diff --git a/build_configure b/build_configure deleted file mode 100755 index 4edf6f4..0000000 --- a/build_configure +++ /dev/null @@ -1,206 +0,0 @@ -#!/bin/bash - -# -# Tool for updating list of .in file for the SALOME project -# and regenerating configure script -# -# Author : Marc Tajchman - CEA -# Date : 10/10/2002 -# $Header$ -# - -ORIG_DIR=`pwd` -CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"` - -######################################################################## -# Test if the KERNEL_ROOT_DIR is set correctly - -if test ! -d "${KERNEL_ROOT_DIR}"; then - echo "failed : KERNEL_ROOT_DIR variable is not correct !" - exit -fi - -# Test if the KERNEL_SRC is set correctly - -#if test ! -d "${KERNEL_SRC}"; then -# echo "failed : KERNEL_SRC variable is not correct !" -# exit -#fi -######################################################################## -# find_in - utility function -# -# usage : -# find_in directory filename -# -# Finds files following the *.in pattern, recursively in the -# directory (first argument). -# Results are appended into the file (second argument) -# -# Difference from the standard unix find is that files are tested -# before directories -# - -find_in() -{ - local i - local f=$2 - -# if the first argument is not a directory, returns - - if [ ! -d "$1" ] ; then - return - fi - -# dont look in the CVS directories - - case $1 in - */CVS) return ;; - *) ;; - esac - -# for each regular file contained in the directory -# test if it's a .in file - - for i in "$1"/* - do - if [ -f "$i" ] ; then - case $i in - *.in) echo " "$i" \\" >> $f;; - *) ;; - esac - fi - done - -# for each subdirectory of the first argument, proceeds recursively - - for i in "$1"/* - do - if [ -d "$i" ] ; then - find_in "$i" "$f" - fi - done -} - - -####################################################################### -# Generate list of .in files (Makefile.in, config.h.in, etc) -# appending it in file configure.in - -cd ${CONF_DIR} -ABS_CONF_DIR=`pwd` - -# -# Common part of the configure.in file -# -chmod u+w configure.in.base -if ! \cp -f configure.in.base configure.in_tmp1 -then - echo - echo "error : can't create files in" ${CONF_DIR} - echo "aborting ..." - chmod u-w configure.in.base - exit -fi -chmod u-w configure.in.base - -# make a link allowing AC_OUTPUT to find the salome_adm/.../*.in files -echo "" >> configure.in_tmp1 -echo 'ln -fs ${KERNEL_ROOT_DIR}/salome_adm ${ROOT_SRCDIR}/salome_adm' >> configure.in_tmp1 - -echo "" >> configure.in_tmp1 -echo "AC_OUTPUT([ \\" >> configure.in_tmp1 - -# -# List of .in files in the adm/unix directory -# These files MUST be on top of AC_OUTPUT list so we -# put them "manually" -# - -echo " ./salome_adm/unix/SALOMEconfig.h \\" >> configure.in_tmp1 -echo " ./salome_adm/unix/F77config.h \\" >> configure.in_tmp1 -echo " ./salome_adm/unix/sstream \\" >> configure.in_tmp1 -echo " ./salome_adm/unix/depend \\" >> configure.in_tmp1 -echo " ./salome_adm/unix/make_omniorb \\" >> configure.in_tmp1 -echo " ./salome_adm/unix/envScript \\" >> configure.in_tmp1 -echo " ./salome_adm/unix/make_commence \\" >> configure.in_tmp1 -echo " ./salome_adm/unix/make_conclude \\" >> configure.in_tmp1 -echo " ./salome_adm/unix/make_module \\" >> configure.in_tmp1 - -\rm -f configure.in_tmp2 configure.in_tmp3 -touch configure.in_tmp2 -find_in . configure.in_tmp2 -sed '/^.*salome_adm/d' configure.in_tmp2 > configure.in_tmp3 -sed '/configure.in/d' configure.in_tmp3 > configure.in_tmp2 -sed 's/.in / /' configure.in_tmp2 >> configure.in_tmp1 - -echo "])" >> configure.in_tmp1 - -# delete the link created for AC_OUTPUT -#echo "" >> configure.in_tmp1 -#echo 'rm -f ${ROOT_SRCDIR}/salome_adm' >> configure.in_tmp1 -\mv configure.in_tmp1 configure.in_new -\rm -f configure.in_tmp2 configure.in_tmp3 - - -######################################################################## -# Create new (or replace old) configure.in file -# Print a message if the file is write protected -# - -echo -if test ! -f configure.in -then - echo -n "Creating new file 'configure.in' ... " - if \mv configure.in_new configure.in >& /dev/null - then - echo "done" - else - echo "error, check your file permissions" - fi -else - echo -n "Updating 'configure.in' file ... " - if ! \cp configure.in configure.in_old >& /dev/null - then - echo - echo - echo "Can't backup previous configure.in" - echo -n "Continue (you will not be able to revert) - (Y/N) ? " - read R - case "x$R" in - xn*) exit;; - xN*) exit;; - esac - echo - echo -n " " - fi - if \cp configure.in_new configure.in >& /dev/null - then - echo "done" - else - echo - echo "error, can't update previous configure.in" - fi -fi - -######################################################################## -# Use autoconf to rebuild the configure script -# - -if test -f configure -then - echo -n "Updating 'configure' script ... " -else - echo -n "Creating 'configure' script ... " -fi - -aclocal --acdir=${KERNEL_ROOT_DIR}/salome_adm/unix/config_files -if autoconf -then - echo "done" -else - echo "failed (check file permissions and/or user quotas ...)" -fi - -cd ${ORIG_DIR} - -echo diff --git a/configure.in.base b/configure.in.base deleted file mode 100644 index a688b33..0000000 --- a/configure.in.base +++ /dev/null @@ -1,358 +0,0 @@ -# -# PLEASE DO NOT MODIFY configure.in FILE -# -# ALL CHANGES WILL BE DISCARDED BY THE NEXT -# build_configure COMMAND -# -# CHANGES MUST BE MADE IN configure.in.base FILE -# -# -# Author : Marc Tajchman (CEA) -# Date : 28/06/2001 -# Modified by : Patrick GOLDBRONN (CEA) -# Modified by : Marc Tajchman (CEA) -# -# Created from configure.in.base -# - -AC_INIT(src) -AC_CONFIG_AUX_DIR(${KERNEL_ROOT_DIR}/salome_adm/unix/config_files) -AC_CANONICAL_HOST - -PACKAGE=salome -AC_SUBST(PACKAGE) - -VERSION=0.0.1 -AC_SUBST(VERSION) - -dnl -dnl Initialize source and build root directories -dnl - -ROOT_BUILDDIR=`pwd` -ROOT_SRCDIR=`echo $0 | sed -e "s,[[^/]]*$,,;s,/$,,;s,^$,.,"` -cd $ROOT_SRCDIR -ROOT_SRCDIR=`pwd` -cd $ROOT_BUILDDIR - -AC_SUBST(ROOT_SRCDIR) -AC_SUBST(ROOT_BUILDDIR) - -echo -echo Source root directory : $ROOT_SRCDIR -echo Build root directory : $ROOT_BUILDDIR -echo -echo - -if test -z "$AR"; then - AC_CHECK_PROGS(AR,ar xar,:,$PATH) -fi -AC_SUBST(AR) - -dnl Export the AR macro so that it will be placed in the libtool file -dnl correctly. -export AR - -echo -echo --------------------------------------------- -echo testing make -echo --------------------------------------------- -echo - -AC_PROG_MAKE_SET -AC_PROG_INSTALL -dnl -dnl libtool macro check for CC, LD, NM, LN_S, RANLIB, STRIP + pour les librairies dynamiques ! - -AC_ENABLE_DEBUG(yes) -AC_DISABLE_PRODUCTION - -echo --------------------------------------------- -echo testing libtool -echo --------------------------------------------- - -dnl first, we set static to no! -dnl if we want it, use --enable-static -AC_ENABLE_STATIC(no) - -AC_LIBTOOL_DLOPEN -AC_PROG_LIBTOOL - -dnl Fix up the INSTALL macro if it s a relative path. We want the -dnl full-path to the binary instead. -case "$INSTALL" in - *install-sh*) - INSTALL='\${KERNEL_ROOT_DIR}'/salome_adm/unix/config_files/install-sh - ;; -esac - -echo -echo --------------------------------------------- -echo testing C/C++ -echo --------------------------------------------- -echo - -cc_ok=no -dnl inutil car libtool -dnl AC_PROG_CC -AC_PROG_CXX -AC_DEPEND_FLAG -# AC_CC_WARNINGS([ansi]) -cc_ok=yes - -dnl Library libdl : -AC_CHECK_LIB(dl,dlopen) - -dnl add library libm : -AC_CHECK_LIB(m,ceil) - -dnl -dnl Well we use sstream which is not in gcc pre-2.95.3 -dnl We must test if it exists. If not, add it in include ! -dnl - -AC_CXX_HAVE_SSTREAM - -dnl -dnl --------------------------------------------- -dnl testing MPICH -dnl --------------------------------------------- -dnl - -CHECK_MPICH - -echo -echo --------------------------------------------- -echo testing LEX \& YACC -echo --------------------------------------------- -echo - -lex_yacc_ok=no -AC_PROG_YACC -AC_PROG_LEX -lex_yacc_ok=yes - -echo -echo --------------------------------------------- -echo testing python -echo --------------------------------------------- -echo - -CHECK_PYTHON - -echo -echo --------------------------------------------- -echo testing java -echo --------------------------------------------- -echo - -CHECK_JAVA - -echo -echo --------------------------------------------- -echo testing swig -echo --------------------------------------------- -echo - -CHECK_SWIG - -echo -echo --------------------------------------------- -echo testing threads -echo --------------------------------------------- -echo - -ENABLE_PTHREADS - -echo -echo --------------------------------------------- -echo testing omniORB -echo --------------------------------------------- -echo - -CHECK_OMNIORB - -echo -echo --------------------------------------------- -echo testing mico -echo --------------------------------------------- -echo - -CHECK_MICO - -echo -echo --------------------------------------------- -echo default ORB : omniORB -echo --------------------------------------------- -echo - -DEFAULT_ORB=omniORB -CHECK_CORBA - -AC_SUBST_FILE(CORBA) -corba=make_$ORB -CORBA=salome_adm/unix/$corba - -echo -echo --------------------------------------------- -echo testing openGL -echo --------------------------------------------- -echo - -CHECK_OPENGL - -echo -echo --------------------------------------------- -echo testing QT -echo --------------------------------------------- -echo - -CHECK_QT - -echo -echo --------------------------------------------- -echo testing VTK -echo --------------------------------------------- -echo - -CHECK_VTK - -echo -echo --------------------------------------------- -echo testing HDF5 -echo --------------------------------------------- -echo - -CHECK_HDF5 - -echo -echo --------------------------------------------- -echo testing MED2 -echo --------------------------------------------- -echo - -CHECK_MED2 - -echo -echo --------------------------------------------- -echo Testing OpenCascade -echo --------------------------------------------- -echo - -CHECK_CAS - -echo -echo --------------------------------------------- -echo Testing Kernel -echo --------------------------------------------- -echo - -CHECK_KERNEL - -echo -echo --------------------------------------------- -echo Summary -echo --------------------------------------------- -echo - -echo Configure -variables="cc_ok lex_yacc_ok python_ok java_ok swig_ok threads_ok OpenGL_ok qt_ok vtk_ok hdf5_ok med2_ok omniORB_ok mico_ok occ_ok Kernel_ok" - -for var in $variables -do - printf " %10s : " `echo \$var | sed -e "s,_ok,,"` - eval echo \$$var -done - -echo -echo "Default ORB : $DEFAULT_ORB" -echo - -dnl generals files which could be included in every makefile - -AC_SUBST_FILE(COMMENCE) COMMENCE=salome_adm/unix/make_commence -AC_SUBST_FILE(CONCLUDE) CONCLUDE=salome_adm/unix/make_conclude -AC_SUBST_FILE(MODULE) MODULE=salome_adm/unix/make_module - -dnl les dependences -AC_SUBST_FILE(DEPEND) DEPEND=salome_adm/unix/depend - -dnl We don t need to say when we re entering directories if we re using -dnl GNU make becuase make does it for us. -if test "X$GMAKE" = "Xyes"; then - AC_SUBST(SETX) SETX=":" -else - AC_SUBST(SETX) SETX="set -x" -fi - -# make other build directories -for rep in salome_adm adm_local doc bin/salome include/salome lib/salome share/salome/resources share/salome/doc idl -do -# if test ! -d $rep ; then -# eval mkdir $rep -# fi - $INSTALL -d $rep -done - -echo -echo --------------------------------------------- -echo copying resource files, shell scripts, and -echo xml files -echo --------------------------------------------- -echo - - -dnl copy resources directories - -#for i in `find $ROOT_SRCDIR -name 'resources' -print` -#do -# local_res=`echo $i | sed -e "s,$ROOT_SRCDIR,.,"` -# local_res_dir=`echo $local_res | sed -e "s,[[^/]]*$,,;s,/$,,;s,^$,.,"` -# mkdir -p $local_res_dir -# cd $local_res_dir -# ln -fs $i -# echo $local_res -# cd $ROOT_BUILDDIR -#done - -dnl copy shells and utilities contained in the bin directory -dnl excluding .in files (treated in AC-OUTPUT below) and CVS -dnl directory - -cd bin -for i in $ROOT_SRCDIR/bin/* -do - local_bin=`echo $i | sed -e "s,$ROOT_SRCDIR,.,"` - case "$local_bin" in - *.in | *~) ;; - ./bin/CVS) ;; - *) ln -fs $i; echo $local_bin ;; - esac -done -cd $ROOT_BUILDDIR - -AC_SUBST_FILE(ENVSCRIPT) ENVSCRIPT=salome_adm/unix/envScript - -dnl copy xml files to the build tree (lib directory) -dnl pourquoi ???? - -#cd lib -#for i in `find $ROOT_SRCDIR -name "*.xml" -print` -#do -# ln -fs $i -# echo `echo $i | sed -e "s,$ROOT_SRCDIR,.,"` -#done -#cd $ROOT_BUILDDIR - - -echo -echo --------------------------------------------- -echo generating Makefiles and configure files -echo --------------------------------------------- -echo - -AC_OUTPUT_COMMANDS([ \ - chmod +x ./bin/* \ -]) - -## do not delete this line diff --git a/src/Makefile.in b/src/Makefile.in new file mode 100644 index 0000000..3e85fc2 --- /dev/null +++ b/src/Makefile.in @@ -0,0 +1,20 @@ +#============================================================================== +# File : Makefile.in +# Created : ven déc 7 13:32:20 CET 2001 +# Author : Paul RASCLE, EDF +# Project : SALOME +# Copyright : EDF 2001 +# $Header$ +#============================================================================== + +# source path +top_srcdir=@top_srcdir@ +top_builddir=.. +srcdir=@srcdir@ +VPATH=.:@srcdir@ + +@COMMENCE@ + +SUBDIRS = GraphBase GraphExecutor GraphEditor Supervision SUPERVGUI + +@MODULE@ diff --git a/src/SUPERVGUI/SUPERVGUI_icons.po b/src/SUPERVGUI/SUPERVGUI_icons.po deleted file mode 100644 index 3a7e789..0000000 --- a/src/SUPERVGUI/SUPERVGUI_icons.po +++ /dev/null @@ -1,14 +0,0 @@ -# This is a Qt message file in .po format. Each msgid starts with -# a scope. This scope should *NOT* be translated - eg. "Foo::Bar" -# would be translated to "Pub", not "Foo::Pub". -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2001-09-11 12:08:44 PM CEST\n" -"PO-Revision-Date: YYYY-MM-DD\n" -"Last-Translator: FULLNAME \n" -"Content-Type: text/plain; charset=iso-8859-1\n" - -#: QAD_ObjectBrowser.cxx:140 -msgid "ICON_OBJBROWSER_Supervision" -msgstr "Superv_tree_superv.png" \ No newline at end of file diff --git a/src/SUPERVGUI/SUPERVGUI_msg_en.po b/src/SUPERVGUI/SUPERVGUI_msg_en.po deleted file mode 100644 index 87feedc..0000000 --- a/src/SUPERVGUI/SUPERVGUI_msg_en.po +++ /dev/null @@ -1,578 +0,0 @@ -# This is a Qt message file in .po format. Each msgid starts with -# a scope. This scope should *NOT* be translated - eg. "Foo::Bar" -# would be translated to "Pub", not "Foo::Pub". -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2001-09-11 12:08:44 PM CEST\n" -"PO-Revision-Date: YYYY-MM-DD\n" -"Last-Translator: FULLNAME \n" -"Content-Type: text/plain; charset=iso-8859-1\n" - -#Title of error messages -msgid "ERROR" -msgstr "Error" - -#:SUPERVGUI_Main.cxx:246 -msgid "MSG_FILE_EXIST" -msgstr "File '%1' exists.\nReplace?" - -#:SUPERVGUI_Main.cxx:252 -msgid "MSG_BAD_WRITING" -msgstr "Bad Writing File" - -#:SUPERVGUI_Main.cxx:242 -msgid "TTL_EXPORT_DATAFLOW" -msgstr "Export Dataflow As..." - -#:SUPERVGUI_Main.cxx:41 -msgid "MSG_ACCESS_BAD_IOR" -msgstr "Can't Access Dataflow: bad IOR" - -#:SUPERVGUI_Main.cxx:47 -msgid "MSG_NOACCESS_BY_IOR" -msgstr "Can't Access Dataflow by IOR" - -#:SUPERVGUI_Main.cxx:53 -msgid "MSG_CANT_CREATE_DF" -msgstr "Can't Create a New Dataflow" - -#:SUPERVGUI_Main.cxx:72 -msgid "MSG_BAD_FILE" -msgstr "Bad File: %1" - -#:SUPERVGUI_Main.cxx:86 -msgid "MSG_CANT_COPY" -msgstr "Can't Copy Dataflow" - -#:SUPERVGUI_Main.cxx:102 -msgid "MSG_DEL_LAST_PNT" -msgstr "Delete Last Point" - -#:SUPERVGUI_Main.cxx:103 -msgid "MSG_DEL_LINK" -msgstr "Delete Link" - -#:SUPERVGUI_Main.cxx:104 -msgid "MSG_ORTHO_LINE" -msgstr "Ortho Mode" - -#:SUPERVGUI_Main.cxx:146 -msgid "WARNING" -msgstr "Supervision Warning" - -#:SUPERVGUI_Main.cxx:147 -msgid "MSG_DF_RUNNING" -msgstr "Dataflow Is Currently Running" - -#:SUPERVGUI_Main.cxx:148 -msgid "MSG_DF_EXECUTION" -msgstr "Background Execution" - -#:SUPERVGUI_Main.cxx:149 -msgid "MSG_DF_KILL" -msgstr "Kill Execution" - -#:SUPERVGUI_Main.cxx:185 -msgid "GRAPH_TITLE" -msgstr "Supervision: " - -#:SUPERVGUI_Main.cxx:195 -msgid "MSG_GRAPH_STARTED" -msgstr "===> Dataflow Execution is started" - -#:SUPERVGUI_Main.cxx:191 -msgid "MSG_GRAPH_READONLY" -msgstr "===> Dataflow is Read Only" - -#:SUPERVGUI_Main.cxx:191 -msgid "MSG_GRAPH_EDITING" -msgstr "===> Dataflow is Modifiable" - -#:SUPERVGUI_Main.cxx:200 -msgid "MSG_GRAPH_SUSPENDED" -msgstr "===> Dataflow Execution is Suspended" - -#:SUPERVGUI_Main.cxx:204 -msgid "MSG_GRAPH_FINISHED" -msgstr "===> Dataflow Execution is Finished" - -#:SUPERVGUI_Main.cxx:208 -msgid "MSG_GRAPH_ABORTED" -msgstr "===> Dataflow Execution is Aborted" - -#:SUPERVGUI_Main.cxx:212 -msgid "MSG_GRAPH_KILLED" -msgstr "===> Dataflow Execution is Killed" - -#:SUPERVGUI_Main.cxx:265 -msgid "MSG_GRAPH_INSERT" -msgstr "Insert a Dataflow" - -#:SUPERVGUI_Main.cxx:285 -msgid "MSG_DF_NOTVALID" -msgstr "Dataflow Not Valid" - -#:SUPERVGUI_Main.cxx:287 -msgid "MSG_DF_NOTEXECUTABLE" -msgstr "Dataflow Not Executable" - -#:SUPERVGUI_Main.cxx:289 -msgid "MSG_DF_BADEXECUTE" -msgstr "Dataflow Bad Execute" - -#:SUPERVGUI_Main.cxx:301 -msgid "MSG_DF_NOTRUNNING" -msgstr "Dataflow Is Not Running" - -#:SUPERVGUI_Main.cxx:305 -msgid "MSG_CANTKILL_DF" -msgstr "Can't Kill Dataflow" - -#:SUPERVGUI_Main.cxx:315 -msgid "MSG_DF_RESUMED" -msgstr "===> Dataflow Execution is Resumed" - -#:SUPERVGUI_Main.cxx:318 -msgid "MSG_CANT_RESUME" -msgstr "Can't Resume Dataflow" - -#:SUPERVGUI_Main.cxx:324 -msgid "MSG_CANT_SUSPEND" -msgstr "Can't Suspend Dataflow" - -#:SUPERVGUI_Main.cxx:335 -msgid "MSG_DF_RESTARTED" -msgstr "===> Dataflow Execution is Restarted" - -#:SUPERVGUI_Main.cxx:338 -msgid "MSG_CANT_RESTART" -msgstr "Can't Restart Dataflow" - -#:SUPERVGUI_Main.cxx:344 -msgid "MSG_CANT_STOP" -msgstr "Can't Stop Dataflow" - -#:SUPERVGUI_Main.cxx:477 -msgid "MSG_CHOOSE_OUTPUT" -msgstr "Choose an Output Port" - -#:SUPERVGUI_Main.cxx:477 -msgid "MSG_CHOOSE_INPUT" -msgstr "Choose an Input Port" - -#:SUPERVGUI_Main.cxx:486 -msgid "MSG_CANT_CREATE_LINK" -msgstr "Can't Create This Link" - -#:SUPERVGUI_Main.cxx:508 -msgid "MSG_CANT_CREATE_POINT" -msgstr "Can't Create Point(s) For This Link" - -#:SUPERVGUI_Main.cxx:541 -msgid "MSG_RIGHTLINE" -msgstr "Right Line" - -#:SUPERVGUI_Main.cxx:541 -msgid "MSG_FREEPOINT" -msgstr "Free Point" - -#:SUPERVGUI_Main.cxx:627 -msgid "MSG_CHOOSE_DATA" -msgstr "Choose a Data in Study" - -#:SUPERVGUI_Main.cxx:170 -msgid "MSG_GRAPH_DISPLAYED" -msgstr "The DataFlow %1 \nis already displayed. Open again?" - -#:SUPERVGUI_Main.cxx:627 -msgid "MSG_NOTHING_COPY" -msgstr "Nothing to copy." - -msgid "MSG_CANT_CHANGELINK" -msgstr "Can't Change Point Coordinates For a Link" - -msgid "MSG_CANT_CHANGE_COORDLINK" -msgstr "Can't Change Coordinates For a Link" - -msgid "MSG_CANT_DEL_POINT" -msgstr "Can't Delete this Point" - -msgid "MSG_CANT_ADD_POINT" -msgstr "Can't Add this Point" - -msgid "MSG_CANT_GET_LNKCOORD" -msgstr "Can't Get Coordinates From a Link" - -msgid "MSG_NOT_IMPLEMENTED" -msgstr "Not Yet Implemented" - -msgid "MSG_CANT_STOPNODE" -msgstr "Can't Stop Node" - -msgid "MSG_CANT_RESTARTNODE" -msgstr "Can't Restart Node" - -msgid "MSG_CANT_KILLNODE" -msgstr "Can't Kill Node" - -msgid "MSG_CANT_SUSPENDNODE" -msgstr "Can't Suspend Node" - -msgid "MSG_CANT_RESUMENODE" -msgstr "Can't Resume Node" - -msgid "MSG_CANT_RENAMENODE" -msgstr "Can't Rename this Node" - -msgid "MSG_CHANGE_NODENAME" -msgstr "Change the Name of a Node" - -msgid "MSG_ENTER_NODENAME" -msgstr "Please, Enter a Node Name" - -msgid "MSG_STOP" -msgstr "Stop" - -msgid "MSG_RESTART" -msgstr "Restart" - -msgid "MSG_SUSPEND" -msgstr "Suspend" - -msgid "MSG_RESUME" -msgstr "Resume" - -msgid "MSG_KILL" -msgstr "Kill" - -msgid "MSG_DELETE" -msgstr "Delete" - -msgid "MSG_RENAME" -msgstr "Rename" - -msgid "MSG_CONFIGURE" -msgstr "Configure" - -msgid "MSG_CHANGE_INFO" -msgstr "Change Informations" - -msgid "MSG_SHOW_PYTHON" -msgstr "Show Python" - -msgid "MSG_ADD_BEFORE" -msgstr "Add Before" - -msgid "MSG_ADD_AFTER" -msgstr "Add After" - -msgid "MSG_DEL_POINT" -msgstr "Delete Point" - -msgid "MSG_NONODE_TOADD" -msgstr "No Node to Add in Dataflow" - -msgid "MSG_CANT_CHOOSE_SERVICE" -msgstr "Can't Choose a Service in a Component" - -msgid "MSG_NO_SUPERVISION_WINDOW" -msgstr "No Supervision Window Selected to Add Nodes in a Dataflow" - -msgid "MSG_SKETCH_LINK" -msgstr "Sketch Link" - -msgid "MSG_FROMSTUDY" -msgstr "Set From Study" - -msgid "MSG_SETVALUE" -msgstr "Set Value" - -msgid "MSG_BROWSE" -msgstr "Browse" - -msgid "MSG_DELLINK" -msgstr "Delete Link" - -msgid "MSG_CANT_SETVAL" -msgstr "Can't Set Input Value" - -msgid "TIT_INPUT_PORT" -msgstr "Constant for Input Port" - -msgid "MSG_ENTER_VALUE" -msgstr "Please, Enter a Value" - -msgid "MSG_IPORT_VAL" -msgstr "Input Port Value : " - -msgid "MSG_OPORT_VAL" -msgstr "Output Port Value : " - -msgid "MSG_INFO" -msgstr "Information" - -msgid "MSG_TERMINATE" -msgstr "Terminate" - -msgid "MSG_SHOWDATA" -msgstr "Show Data" - -msgid "MSG_CALL_DATASHOW" -msgstr "Call data show as soon ..." - -msgid "MSG_PUT_INSTUDY" -msgstr "Put in Study" - -msgid "MSG_NOT_INSTUDY" -msgstr "Not in Study" - -msgid "MSG_GRAPH_ISRUN" -msgstr "Dataflow is still executing. Kill it?" - -msgid "MSG_NOWINDOW_TO_SUSPEND" -msgstr "No Supervision Window Selected to Suspend or Resume a Dataflow" - -msgid "MSG_NOWINDOW_TO_ADD" -msgstr "No Supervision Window Selected to add new components" - -msgid "MSG_NOWINDOW_TO_EXPORT" -msgstr "No Supervision Window Selected to Export a Dataflow" - -msgid "MSG_CANT_LOAD_SUPERV" -msgstr "Cannot Find or Load Supervision Component" - -msgid "MSG_CANT_NARROW_SUPERV" -msgstr "Cannot _narrow Supervision Component" - -msgid "MSG_NOWINDOW_TO_RELOAD" -msgstr "No Supervision Window Selected to Reload a Dataflow" - -msgid "MSG_NOWINDOW_TO_RUN" -msgstr "No Supervision Window Selected to Run a Dataflow" - -msgid "MSG_NOWINDOW_TO_KILL" -msgstr "No Supervision Window Selected to Kill a Dataflow" - -msgid "MSG_IMPORT" -msgstr "Import Dataflow" - -msgid "MSG_NOTEDITABLE" -msgstr "Current Dataflow is not editable" - -msgid "MSG_ADD_STUDY" -msgstr "Add in Study" - -msgid "MSG_NO_DELLINK" -msgstr "No Link to Delete" - -msgid "MSG_NO_LINK_ADDPNT" -msgstr "No Link to Add a Point" - -msgid "MSG_ADD_NODE" -msgstr "Add Node" - -msgid "MSG_ADD_POINT" -msgstr "Add Point" - -msgid "MSG_INS_FILE" -msgstr "Insert File" - -msgid "MSG_COPY_DATAFLOW" -msgstr "Copy Dataflow" - -msgid "MSG_SWITCH_ARRAY" -msgstr "Switch Array" - -msgid "MSG_FILTER_NOTIFY" -msgstr "Filter Notification" - -msgid "MSG_SWITCH_GRAPH" -msgstr "Switch Graph" - -msgid "MSG_COPY_PREFIX" -msgstr "Copy%1_Of" - -msgid "TIT_RENAME" -msgstr "Rename Dataflow" - -msgid "TLT_INFORMATIONS" -msgstr "Informations" - -msgid "NAME_LBL" -msgstr "Name:" - -msgid "AUTHOR_LBL" -msgstr "Author:" - -msgid "CONTAINER_LBL" -msgstr "Container:" - -msgid "DATE_CREATION_LBL" -msgstr "Created:" - -msgid "DATE_MODIFICATION_LBL" -msgstr "Updated:" - -msgid "COMMENT_LBL" -msgstr "Comment:" - -msgid "BUT_OK" -msgstr "&OK" - -msgid "BUT_CANCEL" -msgstr "&Cancel" - -msgid "MSG_CANT_CHANGE_INFO" -msgstr "Can't Change Informations" - -msgid "MSG_ASK_DELETE" -msgstr "Selected object and its subobjects will be deleted.\nContinue?" - -msgid "POP_VIEW" -msgstr "View" - -msgid "POP_FULLVIEW" -msgstr "Full" - -msgid "POP_CONTROLVIEW" -msgstr "Control" - -msgid "POP_TABLEVIEW" -msgstr "Table" - -msgid "POP_SHOW" -msgstr "Show" - -msgid "POP_SHOWTITLES" -msgstr "Comment" - -msgid "POP_SHOWPORTS" -msgstr "Ports" - -msgid "TIT_BROWSENODE" -msgstr "Browse Node " - -msgid "BUT_APPLY" -msgstr "Ok" - -msgid "BUT_CLOSE" -msgstr "Close" - -msgid "TIT_SETVALUE_PORT" -msgstr "Set Value" - -msgid "ENTER_OR_SELECT_LBL" -msgstr "Enter value or select any object from the study" - -msgid "TIT_SERVICES" -msgstr "Add Node" - -msgid "TLT_FILTER_NOTIFY" -msgstr "Filter Notification" - -msgid "COL_COMPONENTS" -msgstr "Components and services" - -msgid "NOTIFICATION_LOGGING_LBL" -msgstr "Notification Logging" - -msgid "SAVE_LOG_LBL" -msgstr "Save in File" - -msgid "FILTER_LOG_LBL" -msgstr "Filtered File" - -msgid "BUT_BROWSE" -msgstr "Browse" - -msgid "ALL_FILES" -msgstr "All files (*.*)" - -msgid "CHOOSE_LOG_FILES_TLT" -msgstr "Select log file" - -msgid "ERR_CANT_OPEN_LOG_FILE" -msgstr "Can't Open Log file" - -msgid "COL_PORTTYPE" -msgstr "Port type" - -msgid "COL_PORTWAY" -msgstr "Port way" - -msgid "TIT_ADDNODE" -msgstr "Add Node" - -msgid "TIT_ADDCNODE" -msgstr "Add Compute Node" - -msgid "TIT_ADDFNODE" -msgstr "Add Factory Node" - -msgid "BTN_FACTORYNODE" -msgstr "Factory" - -msgid "BTN_SWITCHNODE" -msgstr "Switch" - -msgid "BTN_LOOPNODE" -msgstr "Loop" - -msgid "MODULES_PANE" -msgstr "Factory" - -msgid "INLINE_PANE" -msgstr "Inline" - -msgid "ENDNODE_PREFIX" -msgstr "EndOf" - -msgid "BUT_LOAD" -msgstr "Load from file..." - -msgid "BUT_NEXT" -msgstr "Next Function" - -msgid "TIT_LOADSCRIPT" -msgstr "Load Script" - -msgid "MSG_CANT_LOADSCRIPT" -msgstr "Can't open file" - -msgid "MSG_EMTY_FILE" -msgstr "File is empty" - -msgid "MSG_NOMORE_FUNCTIONS" -msgstr "No more functions in this file" - -msgid "MSG_SCRIPTTIP" -msgstr "Define Name, Input and Output parameters, and body of function\nin fields below accordingly" - -msgid "POP_HIDEPORTS" -msgstr "Hide Ports" - -msgid "COMMENT_FROM" -msgstr " from " - -msgid "COMMENT_PYTHON" -msgstr "Python function" - -msgid "COMMENT_CNODE" -msgstr "Compute Node" - -msgid "TIT_FUNC_PYTHON" -msgstr "Edit function" - -msgid "LBL_NODETYPE" -msgstr "Node type" - -msgid "ITM_DEL_PORT" -msgstr "Delete" - -msgid "MSG_CANT_CREATE_NODE" -msgstr "Can't create node" - -msgid "MSG_PORT_EXIST" -msgstr "Port with such name already exists" - diff --git a/src/SUPERVGUI/SUPERVGUI_msg_fr.po b/src/SUPERVGUI/SUPERVGUI_msg_fr.po deleted file mode 100644 index 9489845..0000000 --- a/src/SUPERVGUI/SUPERVGUI_msg_fr.po +++ /dev/null @@ -1,421 +0,0 @@ -# This is a Qt message file in .po format. Each msgid starts with -# a scope. This scope should *NOT* be translated - eg. "Foo::Bar" -# would be translated to "Pub", not "Foo::Pub". -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2001-09-11 12:08:44 PM CEST\n" -"PO-Revision-Date: YYYY-MM-DD\n" -"Last-Translator: FULLNAME \n" -"Content-Type: text/plain; charset=iso-8859-1\n" - -#Title of error messages -msgid "ERROR" -msgstr "Supervision Error" - -#:SUPERVGUI_Main.cxx:246 -msgid "MSG_FILE_EXIST" -msgstr "File '%1' exists.\nReplace?" - -#:SUPERVGUI_Main.cxx:252 -msgid "MSG_BAD_WRITING" -msgstr "Bad Writing File" - -#:SUPERVGUI_Main.cxx:242 -msgid "TTL_EXPORT_DATAFLOW" -msgstr "Export Dataflow As..." - -#:SUPERVGUI_Main.cxx:41 -msgid "MSG_ACCESS_BAD_IOR" -msgstr "Can't Access Dataflow: bad IOR" - -#:SUPERVGUI_Main.cxx:47 -msgid "MSG_NOACCESS_BY_IOR" -msgstr "Can't Access Dataflow by IOR" - -#:SUPERVGUI_Main.cxx:53 -msgid "MSG_CANT_CREATE_DF" -msgstr "Can't Create a New Dataflow" - -#:SUPERVGUI_Main.cxx:72 -msgid "MSG_BAD_FILE" -msgstr "Bad File" - -#:SUPERVGUI_Main.cxx:86 -msgid "MSG_CANT_COPY" -msgstr "Can't Copy Dataflow" - -#:SUPERVGUI_Main.cxx:102 -msgid "MSG_DEL_LAST_PNT" -msgstr "Delete Last Point" - -#:SUPERVGUI_Main.cxx:103 -msgid "MSG_DEL_LINK" -msgstr "Delete Link" - -#:SUPERVGUI_Main.cxx:104 -msgid "MSG_ORTHO_LINE" -msgstr "Ortho Mode" - -#:SUPERVGUI_Main.cxx:146 -msgid "WARNING" -msgstr "Supervision Warning" - -#:SUPERVGUI_Main.cxx:147 -msgid "MSG_DF_RUNNING" -msgstr "Dataflow Is Currently Running" - -#:SUPERVGUI_Main.cxx:148 -msgid "MSG_DF_EXECUTION" -msgstr "Background Execution" - -#:SUPERVGUI_Main.cxx:149 -msgid "MSG_DF_KILL" -msgstr "Kill Execution" - -#:SUPERVGUI_Main.cxx:185 -msgid "GRAPH_TITLE" -msgstr "Supervision: " - -#:SUPERVGUI_Main.cxx:195 -msgid "MSG_GRAPH_STARTED" -msgstr "===> Dataflow Execution is started" - -#:SUPERVGUI_Main.cxx:191 -msgid "MSG_GRAPH_READONLY" -msgstr "===> Dataflow is Read Only" - -#:SUPERVGUI_Main.cxx:191 -msgid "MSG_GRAPH_EDITING" -msgstr "===> Dataflow is Modifiable" - -#:SUPERVGUI_Main.cxx:200 -msgid "MSG_GRAPH_SUSPENDED" -msgstr "===> Dataflow Execution is Suspended" - -#:SUPERVGUI_Main.cxx:204 -msgid "MSG_GRAPH_FINISHED" -msgstr "===> Dataflow Execution is Finished" - -#:SUPERVGUI_Main.cxx:208 -msgid "MSG_GRAPH_ABORTED" -msgstr "===> Dataflow Execution is Aborted" - -#:SUPERVGUI_Main.cxx:212 -msgid "MSG_GRAPH_KILLED" -msgstr "===> Dataflow Execution is Killed" - -#:SUPERVGUI_Main.cxx:265 -msgid "MSG_GRAPH_INSERT" -msgstr "Insert a Dataflow" - -#:SUPERVGUI_Main.cxx:285 -msgid "MSG_DF_NOTVALID" -msgstr "Dataflow Not Valid" - -#:SUPERVGUI_Main.cxx:287 -msgid "MSG_DF_NOTEXECUTABLE" -msgstr "Dataflow Not Executable" - -#:SUPERVGUI_Main.cxx:289 -msgid "MSG_DF_BADEXECUTE" -msgstr "Dataflow Bad Execute" - -#:SUPERVGUI_Main.cxx:301 -msgid "MSG_DF_NOTRUNNING" -msgstr "Dataflow Is Not Running" - -#:SUPERVGUI_Main.cxx:305 -msgid "MSG_CANTKILL_DF" -msgstr "Can't Kill Dataflow" - -#:SUPERVGUI_Main.cxx:315 -msgid "MSG_DF_RESUMED" -msgstr "===> Dataflow Execution is Resumed" - -#:SUPERVGUI_Main.cxx:318 -msgid "MSG_CANT_RESUME" -msgstr "Can't Resume Dataflow" - -#:SUPERVGUI_Main.cxx:324 -msgid "MSG_CANT_SUSPEND" -msgstr "Can't Suspend Dataflow" - -#:SUPERVGUI_Main.cxx:335 -msgid "MSG_DF_RESTARTED" -msgstr "===> Dataflow Execution is Restarted" - -#:SUPERVGUI_Main.cxx:338 -msgid "MSG_CANT_RESTART" -msgstr "Can't Restart Dataflow" - -#:SUPERVGUI_Main.cxx:344 -msgid "MSG_CANT_STOP" -msgstr "Can't Stop Dataflow" - -#:SUPERVGUI_Main.cxx:477 -msgid "MSG_CHOOSE_OUTPUT" -msgstr "Choose an Output Port" - -#:SUPERVGUI_Main.cxx:477 -msgid "MSG_CHOOSE_INPUT" -msgstr "Choose an Input Port" - -#:SUPERVGUI_Main.cxx:486 -msgid "MSG_CANT_CREATE_LINK" -msgstr "Can't Create This Link" - -#:SUPERVGUI_Main.cxx:508 -msgid "MSG_CANT_CREATE_POINT" -msgstr "Can't Create Point(s) For This Link" - -#:SUPERVGUI_Main.cxx:541 -msgid "MSG_RIGHTLINE" -msgstr "Right Line" - -#:SUPERVGUI_Main.cxx:541 -msgid "MSG_FREEPOINT" -msgstr "Free Point" - -#:SUPERVGUI_Main.cxx:627 -msgid "MSG_CHOOSE_DATA" -msgstr "Choose a Data in Study" - -#:SUPERVGUI_Main.cxx:170 -msgid "MSG_GRAPH_DISPLAYED" -msgstr "The DataFlow %1 \nis already displayed. Open again?" - -#:SUPERVGUI_Main.cxx:627 -msgid "MSG_NOTHING_COPY" -msgstr "Nothing to copy." - -msgid "MSG_CANT_CHANGELINK" -msgstr "Can't Change Point Coordinates For a Link" - -msgid "MSG_CANT_CHANGE_COORDLINK" -msgstr "Can't Change Coordinates For a Link" - -msgid "MSG_CANT_DEL_POINT" -msgstr "Can't Delete this Point" - -msgid "MSG_CANT_ADD_POINT" -msgstr "Can't Add this Point" - -msgid "MSG_CANT_GET_LNKCOORD" -msgstr "Can't Get Coordinates From a Link" - -msgid "MSG_NOT_IMPLEMENTED" -msgstr "Not Yet Implemented" - -msgid "MSG_CANT_STOPNODE" -msgstr "Can't Stop Node" - -msgid "MSG_CANT_RESTARTNODE" -msgstr "Can't Restart Node" - -msgid "MSG_CANT_KILLNODE" -msgstr "Can't Kill Node" - -msgid "MSG_CANT_SUSPENDNODE" -msgstr "Can't Suspend Node" - -msgid "MSG_CANT_RESUMENODE" -msgstr "Can't Resume Node" - -msgid "MSG_CANT_RENAMENODE" -msgstr "Can't Rename this Node" - -msgid "MSG_CHANGE_NODENAME" -msgstr "Change the Name of a Node" - -msgid "MSG_ENTER_NODENAME" -msgstr "Please, Enter a Node Name" - -msgid "MSG_STOP" -msgstr "Stop" - -msgid "MSG_RESTART" -msgstr "Restart" - -msgid "MSG_SUSPEND" -msgstr "Suspend" - -msgid "MSG_RESUME" -msgstr "Resume" - -msgid "MSG_KILL" -msgstr "Kill" - -msgid "MSG_DELETE" -msgstr "Delete" - -msgid "MSG_RENAME" -msgstr "Rename" - -msgid "MSG_CONFIGURE" -msgstr "Configure" - -msgid "MSG_CHANGE_INFO" -msgstr "Change Informations" - -msgid "MSG_SHOW_PYTHON" -msgstr "Show Python" - -msgid "MSG_ADD_BEFORE" -msgstr "Add Before" - -msgid "MSG_ADD_AFTER" -msgstr "Add After" - -msgid "MSG_DEL_POINT" -msgstr "Delete Point" - -msgid "MSG_NONODE_TOADD" -msgstr "No Node to Add in Dataflow" - -msgid "MSG_CANT_CHOOSE_SERVICE" -msgstr "Can't Choose a Service in a Component" - -msgid "MSG_NO_SUPERVISION_WINDOW" -msgstr "No Supervision Window Selected to Add Nodes in a Dataflow" - -msgid "MSG_SKETCH_LINK" -msgstr "Sketch Link" - -msgid "MSG_FROMSTUDY" -msgstr "Set From Study" - -msgid "MSG_SETVALUE" -msgstr "Set Value" - -msgid "MSG_BROWSE" -msgstr "Browse" - -msgid "MSG_DELLINK" -msgstr "Delete Link" - -msgid "MSG_CANT_SETVAL" -msgstr "Can't Set Input Value" - -msgid "TIT_INPUT_PORT" -msgstr "Constant for Input Port" - -msgid "MSG_ENTER_VALUE" -msgstr "Please, Enter a Value" - -msgid "MSG_IPORT_VAL" -msgstr "Input Port Value : " - -msgid "MSG_OPORT_VAL" -msgstr "Output Port Value : " - -msgid "MSG_INFO" -msgstr "Supervision Information" - -msgid "MSG_TERMINATE" -msgstr "Terminate" - -msgid "MSG_SHOWDATA" -msgstr "Show Data" - -msgid "MSG_CALL_DATASHOW" -msgstr "Call data show as soon ..." - -msgid "MSG_PUT_INSTUDY" -msgstr "Put in Study" - -msgid "MSG_NOT_INSTUDY" -msgstr "Not in Study" - -msgid "MSG_GRAPH_ISRUN" -msgstr "Dataflow is still executing. Kill it?" - -msgid "MSG_NOWINDOW_TO_SUSPEND" -msgstr "No Supervision Window Selected to Suspend or Resume a Dataflow" - -msgid "MSG_NOWINDOW_TO_ADD" -msgstr "No Supervision Window Selected to add new components" - -msgid "MSG_NOWINDOW_TO_EXPORT" -msgstr "No Supervision Window Selected to Export a Dataflow" - -msgid "MSG_CANT_LOAD_SUPERV" -msgstr "Cannot Find or Load Supervision Component" - -msgid "MSG_CANT_NARROW_SUPERV" -msgstr "Cannot _narrow Supervision Component" - -msgid "MSG_NOWINDOW_TO_RELOAD" -msgstr "No Supervision Window Selected to Reload a Dataflow" - -msgid "MSG_NOWINDOW_TO_RUN" -msgstr "No Supervision Window Selected to Run a Dataflow" - -msgid "MSG_NOWINDOW_TO_KILL" -msgstr "No Supervision Window Selected to Kill a Dataflow" - -msgid "MSG_IMPORT" -msgstr "Import Dataflow" - -msgid "MSG_NOTEDITABLE" -msgstr "Current Dataflow is not editable" - -msgid "MSG_ADD_STUDY" -msgstr "Add in Study" - -msgid "MSG_NO_DELLINK" -msgstr "No Link to Delete" - -msgid "MSG_NO_LINK_ADDPNT" -msgstr "No Link to Add a Point" - -msgid "MSG_ADD_NODE" -msgstr "Add Node" - -msgid "MSG_ADD_POINT" -msgstr "Add Point" - -msgid "MSG_INS_FILE" -msgstr "Insert File" - -msgid "MSG_COPY_DATAFLOW" -msgstr "Copy Dataflow" - -msgid "MSG_SWITCH_ARRAY" -msgstr "Switch Array" - -msgid "MSG_FILTER_NOTIFY" -msgstr "Filter Notification" - -msgid "MSG_SWITCH_GRAPH" -msgstr "Switch Graph" - -msgid "MSG_COPY_PREFIX" -msgstr "Copy%1_Of" - -msgid "TIT_RENAME" -msgstr "Rename Dataflow" - -msgid "MSG_ASK_DELETE" -msgstr "Selected object and its subobjects will be deleted.\nContinue?" - -msgid "POP_VIEW" -msgstr "View" - -msgid "POP_FULLVIEW" -msgstr "Full" - -msgid "POP_CONTROLVIEW" -msgstr "Control" - -msgid "POP_TABLEVIEW" -msgstr "Table" - -msgid "POP_SHOW" -msgstr "Show" - -msgid "POP_SHOWTITLES" -msgstr "Titles" - -msgid "POP_SHOWPORTS" -msgstr "Ports"